diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..ef3f07d --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,19 @@ +# Project rules for Claude + +## Before opening a PR + +Run the CI checks locally and fix every failure before pushing or opening +a pull request. Do not push or open a PR if any of these fail: + +```bash +hatch fmt --linter --check # ruff lint (CI: `lint` job, step "Lint") +hatch run mypy:check # mypy (CI: `lint` job, step "Type Check") +hatch build # sdist + wheel build (CI: step "Check Buildable") +hatch test # pytest suite (CI: `tests` matrix) +``` + +When the user reports a CI failure, fix it locally and re-verify all four +before re-pushing. Do not bypass formatting/lint rules with broad `# noqa` +suppressions unless the failure is a deliberate, narrow exception (e.g. an +intentionally-ambiguous Unicode literal), and always pair the suppression +with a comment explaining why. diff --git a/extensions/wikidata-lexemes/README.md b/extensions/wikidata-lexemes/README.md index 29fadd1..2beea10 100644 --- a/extensions/wikidata-lexemes/README.md +++ b/extensions/wikidata-lexemes/README.md @@ -29,7 +29,19 @@ python create_extensions.py This will: 1. Filter lexemes to exclude nouns, verbs, adjectives, adverbs, and phrases 2. Build an interlingual index (ILI) linking senses across languages via English -3. Generate XML extension files in `extensions/` for each language +3. For lexemes with no Wikidata senses, fall back to the English Wiktionary REST API (filters out reference-only definitions, onomatopoeia, dialectal/archaic terms not covered by omw-en) +4. Generate XML extension files in `output/` for each language + +Set `LANG_FILTER=en` to restrict generation to a single language while iterating. + +### Caching + +Web requests are cached on disk under `extras/` (gitignored): +- `extras/wikidata/` — POS/language Q-code metadata +- `extras/wiktionary/` — Wiktionary REST `definition` responses +- `extras/wiktionary-cats/` — Wiktionary page categories (action API) + +To force a refresh of a cached entry, delete the corresponding file. ## Output diff --git a/extensions/wikidata-lexemes/_omw_en.py b/extensions/wikidata-lexemes/_omw_en.py new file mode 100644 index 0000000..3ba7918 --- /dev/null +++ b/extensions/wikidata-lexemes/_omw_en.py @@ -0,0 +1,17 @@ +"""Cached omw-en lemma → POS coverage.""" +from functools import cache + + +@cache +def omw_en_pos() -> dict[str, frozenset[str]]: + """Return {lemma_lower: frozenset of WN POSes}. Empty if omw-en unavailable.""" + try: + import wn + en = wn.Wordnet(lexicon="omw-en") + except Exception: + return {} + by_lemma: dict[str, set[str]] = {} + for word in en.words(): + for form in (word.lemma(), *word.forms()): + by_lemma.setdefault(form.lower(), set()).add(word.pos) + return {lemma: frozenset(pos) for lemma, pos in by_lemma.items()} diff --git a/extensions/wikidata-lexemes/_pos_map.py b/extensions/wikidata-lexemes/_pos_map.py index 4bede9c..03c93d5 100644 --- a/extensions/wikidata-lexemes/_pos_map.py +++ b/extensions/wikidata-lexemes/_pos_map.py @@ -16,6 +16,11 @@ VERB, ) +# Content POS codes: those that omw-en covers natively. Used to decide +# whether a SKIP_POS-classified Wikidata lemma should still be included +# because omw-en doesn't have it under that POS. +CONTENT_TARGETS = frozenset({NOUN, VERB, ADJ, ADV}) + POS_MAP: dict[str, str] = { # --- Pronoun (h) --- "pronoun": PRON, @@ -50,12 +55,15 @@ "quantifier": DET, "partitive": DET, # --- Noun (n) --- + "noun": NOUN, + "proper noun": NOUN, "common noun": NOUN, "abstract noun": NOUN, "compound noun": NOUN, "count noun": NOUN, "mass noun": NOUN, "personal noun": NOUN, + "agent noun": NOUN, "locative noun": NOUN, "indeclinable noun": NOUN, "verbal noun": NOUN, @@ -68,6 +76,9 @@ "location": NOUN, "jukugo": NOUN, # Japanese kanji compound noun # --- Verb (v) --- + "verb": VERB, + "proper verb": VERB, + "phrasal verb": VERB, "auxiliary verb": VERB, "japanese auxiliary verb": VERB, "passive verb": VERB, @@ -84,6 +95,9 @@ "imperative form": VERB, "infinitive": VERB, # --- Adjective (a) --- + "adjective": ADJ, + "satellite adjective": ADJ, + "proper adjective": ADJ, "prenominal adjective": ADJ, "adnominal adjective": ADJ, "na-adjective": ADJ, @@ -100,6 +114,7 @@ "predicative": ADJ, "nominal modifier": ADJ, # --- Adverb (r) --- + "adverb": ADV, "adverbial phrase": ADV, "adverbial locution": ADV, "adverbial particle": ADV, @@ -188,3 +203,7 @@ "acronym": OTHER, "abbreviation": OTHER, } + +CONTENT_POS_MAP: dict[str, str] = { + label: code for label, code in POS_MAP.items() if code in CONTENT_TARGETS +} diff --git a/extensions/wikidata-lexemes/_wikidata.py b/extensions/wikidata-lexemes/_wikidata.py new file mode 100644 index 0000000..7c3dca9 --- /dev/null +++ b/extensions/wikidata-lexemes/_wikidata.py @@ -0,0 +1,68 @@ +"""Cached Wikidata entity fetcher (used to resolve POS/language Q-codes).""" +import json +import re +from collections.abc import Callable +from functools import cache +from pathlib import Path + +import requests + +EXTRAS_DIR = Path(__file__).parent / "extras" / "wikidata" +USER_AGENT = ( + "WikidataLexemesBot/1.0 " + "(https://github.com/sign-language-processing/dictionary)" +) + + +def safe_filename(name: str, max_len: int = 80) -> str: + return re.sub(r"[^A-Za-z0-9_\-]", "_", name)[:max_len] or "_" + + +def cached_json_fetch(path: Path, fetch: Callable[[], dict]) -> dict: + try: + with open(path, encoding="utf-8") as f: + return json.load(f) + except FileNotFoundError: + pass + data = fetch() + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2) + return data + + +@cache +def fetch_wikidata_entity(q_code: str) -> dict: + def _fetch(): + url = f"https://www.wikidata.org/wiki/Special:EntityData/{q_code}.json" + response = requests.get( + url, headers={"User-Agent": USER_AGENT}, timeout=30, + ) + response.raise_for_status() + return response.json() + + data = cached_json_fetch(EXTRAS_DIR / f"{q_code}.json", _fetch) + entities = data["entities"] + return entities.get(q_code) or next(iter(entities.values())) + + +@cache +def get_label(q_code: str) -> str: + entity = fetch_wikidata_entity(q_code) + labels = entity.get("labels", {}) + if "en" in labels: + return labels["en"]["value"].lower() + if labels: + return next(iter(labels.values()))["value"].lower() + return q_code + + +@cache +def get_language_iso(q_code: str) -> str | None: + entity = fetch_wikidata_entity(q_code) + iso_claim = entity.get("claims", {}).get("P218", []) + if iso_claim: + datavalue = iso_claim[0].get("mainsnak", {}).get("datavalue") + if datavalue: + return datavalue["value"] + return None diff --git a/extensions/wikidata-lexemes/_wiktionary.py b/extensions/wikidata-lexemes/_wiktionary.py new file mode 100644 index 0000000..eb77ea1 --- /dev/null +++ b/extensions/wikidata-lexemes/_wiktionary.py @@ -0,0 +1,344 @@ +"""Wiktionary REST fallback for Wikidata Lexemes that lack senses.""" +import html +import json +import re +import threading +import time +from concurrent.futures import ThreadPoolExecutor +from functools import cache +from pathlib import Path + +import requests +from _omw_en import omw_en_pos +from _wikidata import USER_AGENT, safe_filename + +_EXTRAS = Path(__file__).parent / "extras" +CACHE_DIR = _EXTRAS / "wiktionary" +CATS_DIR = _EXTRAS / "wiktionary-cats" + +# " terms" tags the whole word as that flavor (e.g. +# "English archaic terms" — the entire term is archaic). The looser +# " terms with senses" tag matches plenty of modern +# multi-sense words and is unsafe as a hard filter on its own. +_OLD_FRAGMENTS = ( + "archaic", "obsolete", "dated", "poetic", "literary", +) +_ALWAYS_EXCLUDE_FRAGMENTS = ( + "onomatopoeia", "dialectal", "internet slang", "eye dialect", +) + +WD_TO_WKT_POS: dict[str, tuple[str, ...]] = { + "pronoun": ("Pronoun",), + "personal pronoun": ("Pronoun",), + "reflexive pronoun": ("Pronoun",), + "reflexive personal pronoun": ("Pronoun",), + "reciprocal pronoun": ("Pronoun",), + "interrogative pronoun": ("Pronoun",), + "indefinite pronoun": ("Pronoun",), + "relative pronoun": ("Pronoun",), + "demonstrative pronoun": ("Pronoun",), + "definite pronoun": ("Pronoun",), + "subject pronoun": ("Pronoun",), + "object pronoun": ("Pronoun",), + "possessive determiner": ("Determiner", "Pronoun"), + "determiner": ("Determiner", "Article"), + "definite article": ("Article", "Determiner"), + "indefinite article": ("Article", "Determiner"), + "demonstrative determiner": ("Determiner",), + "conjunction": ("Conjunction",), + "coordinating conjunction": ("Conjunction",), + "subordinating conjunction": ("Conjunction",), + "concessive conjunction": ("Conjunction",), + "interjection": ("Interjection",), + "preposition": ("Preposition",), + "postposition": ("Postposition", "Preposition"), + "numeral": ("Numeral", "Number"), + "number": ("Number", "Numeral"), + "digit": ("Number", "Numeral"), + "particle": ("Particle",), + "infinitive marker": ("Particle",), + "grammatical particle": ("Particle",), + "interrogative word": ("Adverb", "Determiner", "Pronoun"), + "adverb": ("Adverb",), + "prepositional adverb": ("Adverb",), + "interrogative adverb": ("Adverb",), + "noun": ("Noun",), + "agent noun": ("Noun",), + "common noun": ("Noun",), + "verb": ("Verb",), + "auxiliary verb": ("Verb",), + "adjective": ("Adjective",), +} + + +def _def_cache_path(lemma: str, lang_iso: str) -> Path: + return CACHE_DIR / lang_iso / f"{safe_filename(lemma)}.json" + + +def _cats_cache_path(lemma: str, lang_iso: str) -> Path: + return CATS_DIR / lang_iso / f"{safe_filename(lemma)}.json" + + +@cache +def fetch_wiktionary(lemma: str, lang_iso: str) -> dict | None: + path = _def_cache_path(lemma, lang_iso) + try: + with open(path, encoding="utf-8") as f: + data = json.load(f) + return data or None + except FileNotFoundError: + pass + + url = f"https://{lang_iso}.wiktionary.org/api/rest_v1/page/definition/{lemma}" + try: + response = requests.get( + url, headers={"User-Agent": USER_AGENT}, timeout=30, + ) + except requests.RequestException: + return None + + if response.status_code == 404: + data = {} + elif response.ok: + try: + data = response.json() + except ValueError: + data = {} + else: + # Transient (429, 5xx, ...) — don't cache; retry next run. + return None + + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2) + return data or None + + +@cache +def fetch_wiktionary_categories(lemma: str, lang_iso: str) -> list[str]: + path = _cats_cache_path(lemma, lang_iso) + try: + with open(path, encoding="utf-8") as f: + return json.load(f) + except FileNotFoundError: + pass + result = _fetch_categories_batch([lemma], lang_iso) + return result.get(lemma, []) + + +_thread_local = threading.local() + + +def _session() -> requests.Session: + sess = getattr(_thread_local, "session", None) + if sess is None: + sess = requests.Session() + sess.headers.update({"User-Agent": USER_AGENT}) + _thread_local.session = sess + return sess + + +def _http_get_json( + url: str, params: dict[str, str], session: requests.Session, +) -> dict | None: + """GET with up to 3 retries on transient errors. Returns parsed JSON or None.""" + for attempt in range(3): + try: + response = session.get(url, params=params, timeout=60) + except requests.RequestException: + time.sleep(1 + attempt) + continue + if response.status_code == 429: + time.sleep(2 + 2 * attempt) + continue + if not response.ok: + return None + try: + return response.json() + except ValueError: + return None + return None + + +def _parse_batch_response( + data: dict, batch: list[str], + per_lemma: dict[str, list[str]], + title_to_input: dict[str, str], +) -> str | None: + """Update `per_lemma` from one Action-API response page block. Returns + the `clcontinue` token if more categories remain, else None.""" + for n in data.get("query", {}).get("normalized", []): + title_to_input[n["to"]] = n["from"] + for r in data.get("query", {}).get("redirects", []): + title_to_input[r["to"]] = title_to_input.get(r["from"], r["from"]) + for page in data.get("query", {}).get("pages", {}).values(): + original = title_to_input.get(page.get("title"), page.get("title")) + per_lemma.setdefault(original, []).extend( + c["title"].replace("Category:", "") + for c in page.get("categories", []) + ) + return data.get("continue", {}).get("clcontinue") + + +def _fetch_one_batch( + batch: list[str], lang_iso: str, +) -> dict[str, list[str]]: + url = f"https://{lang_iso}.wiktionary.org/w/api.php" + session = _session() + per_lemma: dict[str, list[str]] = {lemma: [] for lemma in batch} + title_to_input: dict[str, str] = {lemma: lemma for lemma in batch} + base_params = { + "action": "query", + "prop": "categories", + "format": "json", + "titles": "|".join(batch), + "clshow": "!hidden", + "cllimit": "max", + "redirects": "1", + } + cont: dict[str, str] = {} + succeeded = False + while True: + data = _http_get_json(url, {**base_params, **cont}, session) + if data is None: + break + succeeded = True + next_cont = _parse_batch_response(data, batch, per_lemma, title_to_input) + if not next_cont: + break + cont = {"clcontinue": next_cont} + + if not succeeded: + return {} + for lemma, cats in per_lemma.items(): + path = _cats_cache_path(lemma, lang_iso) + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(cats, f) + return per_lemma + + +def _fetch_categories_batch( + lemmas: list[str], lang_iso: str, +) -> dict[str, list[str]]: + """Action API sums categories across all pages in one response under + cllimit, so a single popular term (e.g. ``moo``, 60 cats) can starve the + rest of its batch. Keep batches small and follow ``clcontinue`` pagination. + Batches run in parallel.""" + if not lemmas: + return {} + batches = [lemmas[i:i + 5] for i in range(0, len(lemmas), 5)] + out: dict[str, list[str]] = {} + with ThreadPoolExecutor(max_workers=4) as ex: + for partial in ex.map(lambda b: _fetch_one_batch(b, lang_iso), batches): + out.update(partial) + return out + + +def prefetch_categories_batch(lemmas: list[str], lang_iso: str) -> None: + missing = [ + lemma for lemma in lemmas + if not _cats_cache_path(lemma, lang_iso).exists() + ] + if missing: + _fetch_categories_batch(missing, lang_iso) + + +def _is_archaic_en(lemma: str) -> bool: + """Drop English lemmas Wiktionary tags as onomatopoeic/dialectal (always), + or as archaic/obsolete/dated/poetic/literary AND omw-en doesn't carry them + in current use under any POS.""" + cats = fetch_wiktionary_categories(lemma, "en") + relevant = [c.lower() for c in cats if c.startswith("English ")] + if any(any(f in c for f in _ALWAYS_EXCLUDE_FRAGMENTS) for c in relevant): + return True + if not any(any(f in c for f in _OLD_FRAGMENTS) for c in relevant): + return False + return lemma.lower() not in omw_en_pos() + + +_CSS_RULE = re.compile(r"\.[A-Za-z][\w\-]*(?:\s*\.[A-Za-z][\w\-]*)*\s*\{[^}]*\}") +_LEMMA_OK = re.compile(r"^[A-Za-z][A-Za-z'\-]*$") +_REFERENCE_PREFIXES = ( + "alternative form of", "alternative spelling of", + "alternate form of", "alternate spelling of", + "initialism of", "abbreviation of", "acronym of", + "contraction of", "eye dialect of", + "obsolete form of", "obsolete spelling of", + "archaic form of", "archaic spelling of", + "pronunciation spelling of", + "synonym of", "plural of", + "past tense of", "past participle of", "present participle of", + "inflected form of", "misspelling of", + "informal form of", "informal spelling of", +) +_SOUND_PATTERNS = ( + "used to indicate the sound", + "used to represent the sound", + "indicating the sound of", + "imitating the sound", + "representing the sound", + "the characteristic sound", + "the sound made by", + "onomatopoeia", +) + + +def _strip(text: str) -> str: + text = re.sub(r"<[^>]+>", "", text) + text = _CSS_RULE.sub("", text) + text = html.unescape(text) + return re.sub(r"\s+", " ", text).strip() + + +def _is_reference_definition(definition: str) -> bool: + lower = definition.lower().lstrip() + return any(lower.startswith(p) for p in _REFERENCE_PREFIXES) + + +def _is_sound_definition(definition: str) -> bool: + lower = definition.lower() + return any(p in lower for p in _SOUND_PATTERNS) + + +def is_quality_lemma(lemma: str) -> bool: + if not _LEMMA_OK.match(lemma): + return False + return not (lemma.isupper() and len(lemma) > 1) + + +def _pick_definition(entry: dict) -> tuple[str, list[str]] | None: + for defn in entry.get("definitions", []): + definition = _strip(defn.get("definition", "")) + if (not definition + or _is_reference_definition(definition) + or _is_sound_definition(definition)): + continue + examples = [_strip(e) for e in defn.get("examples", []) if _strip(e)] + return definition, examples + return None + + +def wiktionary_definition( + lemma: str, wd_pos_label: str, lang_iso: str, + *, bypass_archaic: bool = False, +) -> tuple[str, list[str]] | None: + """Return (definition, examples) from Wiktionary for the lemma + POS.""" + if not is_quality_lemma(lemma): + return None + if lang_iso == "en" and not bypass_archaic and _is_archaic_en(lemma): + return None + acceptable = WD_TO_WKT_POS.get(wd_pos_label) + if not acceptable: + return None + data = fetch_wiktionary(lemma, lang_iso) + if not data: + return None + entries = data.get(lang_iso) or data.get("en") or next(iter(data.values()), []) + for entry in entries: + if entry.get("partOfSpeech") not in acceptable: + continue + result = _pick_definition(entry) + if result is not None: + return result + return None diff --git a/extensions/wikidata-lexemes/create_extensions.py b/extensions/wikidata-lexemes/create_extensions.py index 2268369..96900e6 100644 --- a/extensions/wikidata-lexemes/create_extensions.py +++ b/extensions/wikidata-lexemes/create_extensions.py @@ -1,30 +1,33 @@ #!/usr/bin/env python3 import bz2 -import json -from functools import cache +import os +from concurrent.futures import ThreadPoolExecutor from pathlib import Path +from typing import NamedTuple +from xml.sax.saxutils import escape as xml_escape import ijson -import requests -from _pos_map import POS_MAP +from _omw_en import omw_en_pos +from _pos_map import CONTENT_POS_MAP, POS_MAP +from _wikidata import get_label, get_language_iso +from _wiktionary import ( + fetch_wiktionary, + is_quality_lemma, + prefetch_categories_batch, + wiktionary_definition, +) from tqdm import tqdm from wn.constants import OTHER +LANG_FILTER = os.environ.get("LANG_FILTER", "").strip() or None DATA_PATH = Path(__file__).parent / "latest-lexemes.json.bz2" EXTENSIONS_DIR = Path(__file__).parent / "output" -EXTRAS_DIR = Path(__file__).parent / "extras" -# Mapping for languages with non-standard OMW lexicon IDs -BASE_LEXICON_MAP = { - "de": ("odenet", "1.4"), -} - -SKIP_POS = { +SKIP_POS = frozenset({ # Covered in WordNet already "noun", "proper noun", - "agent noun", "verb", "proper verb", # to Zoom, to Google "phrasal verb", # get over, find out @@ -32,7 +35,7 @@ "adjective", "satellite adjective", "proper adjective", - # Not covered, and less useful for us + # Subword, less useful for us "prefix", "suffix", "interfix", @@ -68,134 +71,170 @@ "collocation", "attributive locution", "slogan", - # Entities? + # Entities "initialism", "demonym", "national demonym", "toponym", -} - +}) SENSE_RELATIONS = { - "P5973": "similar", # synonym - "P5974": "antonym", # antonym - "P5975": "hyponym", # troponym of (more specific) + "P5973": "similar", # synonym + "P5974": "antonym", # antonym + "P5975": "hyponym", # troponym of (more specific) "P6593": "hypernym", # hyperonym (more general) } ENGLISH_LANG_Q = "Q1860" +MODAL_VERB_Q = "Q560570" # P31 value — lexemes the dictionary should always cover + +# Wikidata grammatical-feature Q-codes that disqualify a form from emission. +NEGATION_Q = "Q1478451" +_SKIP_FORM_FEATURES = frozenset({NEGATION_Q}) + + +def _has_p31(lex: dict, target_q: str) -> bool: + for claim in lex.get("claims", {}).get("P31", []): + dv = claim.get("mainsnak", {}).get("datavalue") + if (dv and dv.get("type") == "wikibase-entityid" + and dv["value"]["id"] == target_q): + return True + return False + +# Languages whose omw lexicon ID isn't `omw-`. +_BASE_LEXICON_OVERRIDES = {"de": ("odenet", "1.4")} -@cache -def fetch_wikidata_entity(q_code: str) -> dict: - cache_path = EXTRAS_DIR / f"{q_code}.json" - if cache_path.exists(): - with open(cache_path, encoding="utf-8") as f: - data = json.load(f) - else: - print("fetch_wikidata_entity", q_code) - url = f"https://www.wikidata.org/wiki/Special:EntityData/{q_code}.json" - headers = {"User-Agent": "WikidataLexemesBot/1.0 (https://github.com/sign-language-processing/dictionary)"} - response = requests.get(url, headers=headers, timeout=30) - response.raise_for_status() - data = response.json() - EXTRAS_DIR.mkdir(parents=True, exist_ok=True) - with open(cache_path, "w", encoding="utf-8") as f: - json.dump(data, f, indent=2) - - entities = data["entities"] - return entities.get(q_code) or next(iter(entities.values())) - - -@cache -def get_label(q_code: str) -> str: - entity = fetch_wikidata_entity(q_code) - labels = entity.get("labels", {}) - if "en" in labels: - return labels["en"]["value"].lower() - if labels: - return next(iter(labels.values()))["value"].lower() - return q_code - - -@cache -def get_language_iso(q_code: str) -> str | None: - entity = fetch_wikidata_entity(q_code) - claims = entity.get("claims", {}) - iso_claim = claims.get("P218", []) # ISO 639-1 code - if iso_claim: - mainsnak = iso_claim[0].get("mainsnak", {}) - datavalue = mainsnak.get("datavalue") - if datavalue: - return datavalue["value"] - return None - -def stream_lexemes(): +def _escape(text: str) -> str: + return xml_escape(text, {'"': """, "'": "'"}) + + +def _stream_lexemes(): with bz2.open(DATA_PATH, "rb") as f: yield from ijson.items(f, "item") -def collect_kept_sense_ids() -> tuple[set[str], set[tuple[str, str]]]: - """First pass: collect sense IDs and (lang, sense_id) pairs we're keeping.""" - kept_sense_ids: set[str] = set() - kept_lang_senses: set[tuple[str, str]] = set() # (lang_iso, sense_id) pairs - print("Step 1a: Collecting kept sense IDs...") - for lexeme in tqdm(stream_lexemes(), desc="Collecting"): - pos_q = lexeme.get("lexicalCategory") - if not pos_q: - continue - pos_name = get_label(pos_q) - if pos_name in SKIP_POS or pos_name == "abbreviation": - continue - lemmas = lexeme.get("lemmas", {}) - for lang_iso in lemmas: - for sense in lexeme.get("senses", []): - kept_sense_ids.add(sense["id"]) - kept_lang_senses.add((lang_iso, sense["id"])) - print(f" Found {len(kept_sense_ids)} kept sense IDs") - print(f" Found {len(kept_lang_senses)} kept (lang, sense) pairs") - return kept_sense_ids, kept_lang_senses - - -def has_valid_abbreviation_relation(lexeme: dict, kept_sense_ids: set[str]) -> bool: - """Check if abbreviation has at least one relation to a kept sense.""" - for sense in lexeme.get("senses", []): - claims = sense.get("claims", {}) +def _has_relation_to_kept(lex: dict, kept_sense_ids: set[str]) -> bool: + for sense in lex.get("senses", []): for prop in SENSE_RELATIONS: - for claim in claims.get(prop, []): - mainsnak = claim.get("mainsnak", {}) - datavalue = mainsnak.get("datavalue") - if (datavalue - and datavalue.get("type") == "wikibase-entityid" - and datavalue["value"]["id"] in kept_sense_ids): + for claim in sense.get("claims", {}).get(prop, []): + dv = claim.get("mainsnak", {}).get("datavalue") + if (dv and dv.get("type") == "wikibase-entityid" + and dv["value"]["id"] in kept_sense_ids): return True return False +# POS labels that even the content-gap escape should never resurrect. +# Brand names, place names, and people belong in encyclopaedias, not dictionaries. +_NEVER_GAP_FILL = frozenset({"proper noun", "proper verb", "proper adjective"}) + + +def _is_english_content_gap(lex: dict, pos_name: str) -> bool: + """English-only escape: a SKIP_POS-classified content-POS lemma stays in if + omw-en lacks it under that same POS. Skips proper-noun-derived lemmas + (any capitalised lemma, initialism, etc.) — those belong to encyclopaedic + rather than dictionary scope.""" + if lex.get("language") != ENGLISH_LANG_Q: + return False + if pos_name in _NEVER_GAP_FILL: + return False + wn_pos = CONTENT_POS_MAP.get(pos_name) + if not wn_pos: + return False + raw_lemma = lex.get("lemmas", {}).get("en", {}).get("value", "") + if not raw_lemma or raw_lemma[0].isupper(): + return False + return wn_pos not in omw_en_pos().get(raw_lemma.lower(), frozenset()) + + +def _skip_pos_passes(lex: dict, pos_name: str) -> bool: + """A lexeme in SKIP_POS is still kept when it's a modal verb rescue + (e.g. shall/can/will) or an English content-POS gap fill.""" + keep_for_modal = ( + lex.get("language") == ENGLISH_LANG_Q + and _has_p31(lex, MODAL_VERB_Q) + ) + return keep_for_modal or _is_english_content_gap(lex, pos_name) + + +def _try_keep( + lex: dict, pos_name: str, + seen_lemma_pos: set[tuple[str, str, str]], + kept_sense_ids: set[str], + kept_lang_senses: set[tuple[str, str]], +) -> bool: + """Record sense IDs of `lex` under each of its (lang_iso, lemma, pos_code) + keys, deduping. Returns True if any (lang, lemma, pos) was new.""" + lemmas = lex.get("lemmas", {}) + if not lemmas: + return False + # English-only: skip lexemes Wikidata hasn't cross-referenced against any + # dictionary (no claims at all) — those are usually niche slang. + if lex.get("language") == ENGLISH_LANG_Q and not lex.get("claims"): + return False + pos_code = POS_MAP.get(pos_name, OTHER) + accepted = False + for lang_iso, lemma_obj in lemmas.items(): + lemma = lemma_obj.get("value", "") + # Multi-word lemmas that start with uppercase are usually proper-noun- + # derived (e.g. "Jesus Christ", "God bless you"). + if " " in lemma and lemma[:1].isupper(): + continue + key = (lang_iso, lemma, pos_code) + if key in seen_lemma_pos: + continue + seen_lemma_pos.add(key) + accepted = True + for sense in lex.get("senses", []): + kept_sense_ids.add(sense["id"]) + kept_lang_senses.add((lang_iso, sense["id"])) + return accepted + + def filter_lexemes() -> tuple[list[dict], set[tuple[str, str]]]: - """Filter lexemes to only include relevant POS.""" - kept_sense_ids, kept_lang_senses = collect_kept_sense_ids() + """Stream the dump once. Keep lexemes whose POS isn't in SKIP_POS — with + one exception: English content-POS lemmas that omw-en doesn't already + have are kept (filling the gap). Abbreviations are buffered and kept + only if they have a sense relation to a kept sense. + + Dedupe by (lang_iso, lemma, pos_code) so downstream sense-relation targets + can't dangle: if a duplicate lexeme is dropped here, its sense IDs are + excluded from `kept_lang_senses` too. + """ + print("Step 1: Filtering lexemes...") + kept_sense_ids: set[str] = set() + kept_lang_senses: set[tuple[str, str]] = set() + seen_lemma_pos: set[tuple[str, str, str]] = set() + filtered: list[dict] = [] + pending_abbrev: list[dict] = [] - filtered = [] - print("Step 1b: Filtering lexemes by POS...") - for lexeme in tqdm(stream_lexemes(), desc="Filtering"): - pos_q = lexeme.get("lexicalCategory") + for lex in tqdm(_stream_lexemes(), desc="Streaming"): + pos_q = lex.get("lexicalCategory") if not pos_q: continue pos_name = get_label(pos_q) - if pos_name in SKIP_POS: + if pos_name == "abbreviation": + pending_abbrev.append(lex) continue - if (pos_name == "abbreviation" - and not has_valid_abbreviation_relation(lexeme, kept_sense_ids)): + if pos_name in SKIP_POS and not _skip_pos_passes(lex, pos_name): continue - filtered.append(lexeme) + if _try_keep(lex, pos_name, seen_lemma_pos, kept_sense_ids, kept_lang_senses): + filtered.append(lex) - print(f" Kept {len(filtered)} lexemes") + for lex in pending_abbrev: + if not _has_relation_to_kept(lex, kept_sense_ids): + continue + pos_name = get_label(lex["lexicalCategory"]) + if _try_keep(lex, pos_name, seen_lemma_pos, kept_sense_ids, kept_lang_senses): + filtered.append(lex) + + print(f" Kept {len(filtered)} lexemes, {len(kept_lang_senses)} sense pairs") return filtered, kept_lang_senses -def _collect_senses_and_translations(lexemes: list[dict]): - """Collect English senses and translation mappings from lexemes.""" +def _build_ili_index(lexemes: list[dict]) -> dict[str, str]: + print("Step 2: Building ILI index...") english_senses: set[str] = set() translations: dict[str, list[str]] = {} for lexeme in tqdm(lexemes, desc="Indexing"): @@ -204,25 +243,14 @@ def _collect_senses_and_translations(lexemes: list[dict]): sense_id = sense["id"] if is_english: english_senses.add(sense_id) - claims = sense.get("claims", {}) - for claim in claims.get("P5972", []): - mainsnak = claim.get("mainsnak", {}) - datavalue = mainsnak.get("datavalue") - if datavalue and datavalue.get("type") == "wikibase-entityid": - target_id = datavalue["value"]["id"] - translations.setdefault(sense_id, []).append(target_id) - return english_senses, translations - - -def build_ili_index(lexemes: list[dict]) -> dict[str, str]: - """Build mapping from sense ID to English ILI.""" - print("Step 2: Building ILI index...") - english_senses, translations = _collect_senses_and_translations(lexemes) - - ili_index: dict[str, str] = {} - for sense_id in english_senses: - ili_index[sense_id] = sense_id.lower() - + for claim in sense.get("claims", {}).get("P5972", []): + dv = claim.get("mainsnak", {}).get("datavalue") + if dv and dv.get("type") == "wikibase-entityid": + translations.setdefault(sense_id, []).append(dv["value"]["id"]) + + ili_index: dict[str, str] = { + sense_id: sense_id.lower() for sense_id in english_senses + } for sense_id, targets in translations.items(): if sense_id in ili_index: continue @@ -236,8 +264,14 @@ def build_ili_index(lexemes: list[dict]) -> dict[str, str]: return ili_index +class NormalizedSense(NamedTuple): + id: str + gloss: str + examples: list[str] + relations_xml: list[str] + + def _pick_gloss(glosses: dict, lang_iso: str) -> str: - """Prefer the lemma language; fall back to English, then any other.""" for candidate in (lang_iso, "en"): text = glosses.get(candidate, {}).get("value", "") if text: @@ -250,55 +284,107 @@ def _pick_gloss(glosses: dict, lang_iso: str) -> str: def _extract_sense_examples(lexeme: dict, lang_iso: str) -> dict[str, list[str]]: - """Build mapping of sense_id -> examples from P5831 claims.""" sense_examples: dict[str, list[str]] = {} for claim in lexeme.get("claims", {}).get("P5831", []): - mainsnak = claim.get("mainsnak", {}) - datavalue = mainsnak.get("datavalue") - if not datavalue or datavalue.get("type") != "monolingualtext": + dv = claim.get("mainsnak", {}).get("datavalue") + if not dv or dv.get("type") != "monolingualtext": continue - text_value = datavalue.get("value", {}) + text_value = dv.get("value", {}) if text_value.get("language") != lang_iso: continue example_text = text_value.get("text", "") - qualifiers = claim.get("qualifiers", {}) - for qual in qualifiers.get("P6072", []): - qual_datavalue = qual.get("datavalue") - if qual_datavalue and qual_datavalue.get("type") == "wikibase-entityid": - target_sense = qual_datavalue["value"]["id"] - sense_examples.setdefault(target_sense, []).append(example_text) + for qual in claim.get("qualifiers", {}).get("P6072", []): + qual_dv = qual.get("datavalue") + if qual_dv and qual_dv.get("type") == "wikibase-entityid": + target_id = qual_dv["value"]["id"] + sense_examples.setdefault(target_id, []).append(example_text) return sense_examples -def _build_sense_relations( - sense: dict, lang_iso: str, - kept_lang_senses: set[tuple[str, str]], +def _sense_relations_xml( + sense: dict, lang_iso: str, kept_lang_senses: set[tuple[str, str]], ) -> list[str]: - """Build XML relation strings for a sense.""" relations = [] - claims = sense.get("claims", {}) for prop, rel_type in SENSE_RELATIONS.items(): - for claim in claims.get(prop, []): - mainsnak = claim.get("mainsnak", {}) - datavalue = mainsnak.get("datavalue") - if datavalue and datavalue.get("type") == "wikibase-entityid": - target_id = datavalue["value"]["id"] - if (lang_iso, target_id) not in kept_lang_senses: - continue - target_synset = f"wikidata-{lang_iso}-{target_id}" - relations.append( - f' ' - ) + for claim in sense.get("claims", {}).get(prop, []): + dv = claim.get("mainsnak", {}).get("datavalue") + if not (dv and dv.get("type") == "wikibase-entityid"): + continue + target_id = dv["value"]["id"] + if (lang_iso, target_id) not in kept_lang_senses: + continue + target_synset = f"wikidata-{lang_iso}-{target_id}" + relations.append( + f' ' + ) return relations +# ASCII apostrophe, right single quotation mark, modifier-letter apostrophe, +# left single quotation mark. All four are used by Wikidata for clitic +# contractions (e.g. 'll, U+2019 d, etc.). Intentional. +_LEADING_APOS = "'’ʼ‘" # noqa: RUF001 + + +def _extract_alt_forms(lexeme: dict, lang_iso: str, main_lemma: str) -> list[str]: + """Return alternative form spellings for this lexeme in `lang_iso`, + excluding the main lemma, negation forms, and apostrophe-leading + contractions (`'ll`, `'d`, `'s`, ...).""" + out: list[str] = [] + seen = {main_lemma} + for form in lexeme.get("forms", []): + if any(f in _SKIP_FORM_FEATURES for f in form.get("grammaticalFeatures", [])): + continue + rep = form.get("representations", {}).get(lang_iso, {}).get("value") + if not rep or rep in seen: + continue + if rep[0] in _LEADING_APOS: + continue + seen.add(rep) + out.append(rep) + return out + + +def _normalized_senses( + lexeme: dict, lemma: str, pos_name: str, lang_iso: str, + kept_lang_senses: set[tuple[str, str]], +) -> list[NormalizedSense]: + raw = lexeme.get("senses", []) + if raw: + sense_examples = _extract_sense_examples(lexeme, lang_iso) + return [ + NormalizedSense( + id=sense["id"], + gloss=_pick_gloss(sense.get("glosses", {}), lang_iso), + examples=sense_examples.get(sense["id"], []), + relations_xml=_sense_relations_xml(sense, lang_iso, kept_lang_senses), + ) + for sense in raw + ] + if not lemma or len(lemma) > 80: + return [] + result = wiktionary_definition( + lemma, pos_name, lang_iso, + bypass_archaic=_has_p31(lexeme, MODAL_VERB_Q), + ) + if not result: + return [] + definition, examples = result + return [NormalizedSense( + id=f"{lexeme['id']}-WKT1", + gloss=definition, + examples=examples, + relations_xml=[], + )] + + def build_xml_entry( lexeme: dict, lang_iso: str, ili_index: dict[str, str], kept_lang_senses: set[tuple[str, str]], -) -> tuple[str, list[str]] | None: - lexeme_id = lexeme["id"] +) -> tuple[str, list[str], str, str] | None: + """Return (entry_xml, synset_xml_list, lemma, pos_code) or None.""" lemmas = lexeme.get("lemmas", {}) if lang_iso not in lemmas: return None @@ -310,70 +396,55 @@ def build_xml_entry( pos_name = get_label(pos_q) pos_code = POS_MAP.get(pos_name, OTHER) - senses = lexeme.get("senses", []) + senses = _normalized_senses(lexeme, lemma, pos_name, lang_iso, kept_lang_senses) if not senses: return None - sense_examples = _extract_sense_examples(lexeme, lang_iso) - sense_entries = [] synset_entries = [] for sense in senses: - sense_id = sense["id"] - glosses = sense.get("glosses", {}) - gloss = _pick_gloss(glosses, lang_iso) - relations = _build_sense_relations(sense, lang_iso, kept_lang_senses) - examples = sense_examples.get(sense_id, []) - - synset_id = f"wikidata-{lang_iso}-{sense_id}" - ili = ili_index.get(sense_id, synset_id) - ili_attr = f' ili="{ili}"' + synset_id = f"wikidata-{lang_iso}-{sense.id}" + ili = ili_index.get(sense.id, synset_id) + sense_content = ( - f' \n' + f' \n' + f' {_escape(sense.gloss)}\n' ) - sense_content += f' {escape_xml(gloss)}\n' - for example in examples: - sense_content += f' {escape_xml(example)}\n' - if relations: - sense_content += "\n".join(relations) + "\n" + for example in sense.examples: + sense_content += f' {_escape(example)}\n' + if sense.relations_xml: + sense_content += "\n".join(sense.relations_xml) + "\n" sense_content += " " sense_entries.append(sense_content) synset_content = ( - f' \n' + f' \n' + f' {_escape(sense.gloss)}\n' ) - synset_content += f' {escape_xml(gloss)}\n' - for example in examples: - synset_content += f' {escape_xml(example)}\n' + for example in sense.examples: + synset_content += f' {_escape(example)}\n' synset_content += " " synset_entries.append(synset_content) - if not sense_entries: - return None - + alt_forms = _extract_alt_forms(lexeme, lang_iso, lemma) + form_lines = "".join( + f'
\n' for form in alt_forms + ) entry_xml = ( - f' \n' - f' \n' + f' \n' + f' \n' + + form_lines + "\n".join(sense_entries) + "\n " ) - return entry_xml, synset_entries + return entry_xml, synset_entries, lemma, pos_code -def escape_xml(text: str) -> str: - return ( - text.replace("&", "&") - .replace("<", "<") - .replace(">", ">") - .replace('"', """) - .replace("'", "'") +def _xml_header(lang_iso: str) -> str: + base_id, base_version = _BASE_LEXICON_OVERRIDES.get( + lang_iso, (f"omw-{lang_iso}", "1.4"), ) - - -def get_xml_header(lang_iso: str) -> str: - base_id, base_version = BASE_LEXICON_MAP.get(lang_iso, (f"omw-{lang_iso}", "1.4")) return f''' @@ -387,20 +458,54 @@ def get_xml_header(lang_iso: str) -> str: ''' -XML_FOOTER = ''' +_XML_FOOTER = """ -''' +""" + + +def _wiktionary_task(lex: dict) -> tuple[str, str] | None: + if lex.get("senses"): + return None + lang_q = lex.get("language") + if not lang_q: + return None + lang_iso = get_language_iso(lang_q) + if not lang_iso or (LANG_FILTER and lang_iso != LANG_FILTER): + return None + lemma_obj = lex.get("lemmas", {}).get(lang_iso) + if not lemma_obj: + return None + lemma = lemma_obj["value"] + if not is_quality_lemma(lemma): + return None + return (lemma, lang_iso) + + +def prefetch_wiktionary(lexemes: list[dict]) -> None: + tasks = sorted({task for lex in lexemes if (task := _wiktionary_task(lex))}) + if not tasks: + return + print(f"Pre-fetching {len(tasks)} Wiktionary entries...") + with ThreadPoolExecutor(max_workers=16) as executor: + list(tqdm( + executor.map(lambda t: fetch_wiktionary(*t), tasks), + total=len(tasks), desc="Wiktionary defs", + )) + + en_lemmas = [lemma for lemma, iso in tasks if iso == "en"] + if en_lemmas: + print(f"Pre-fetching categories for {len(en_lemmas)} EN lemmas...") + prefetch_categories_batch(en_lemmas, "en") def write_all_extensions( lexemes: list[dict], ili_index: dict[str, str], kept_lang_senses: set[tuple[str, str]], -): - """Write XML extensions for all languages.""" +) -> None: EXTENSIONS_DIR.mkdir(parents=True, exist_ok=True) - file_handlers: dict[str, any] = {} + file_handlers: dict[str, object] = {} entry_counts: dict[str, int] = {} synsets_by_lang: dict[str, list[str]] = {} @@ -410,43 +515,45 @@ def write_all_extensions( lang_q = lexeme.get("language") if not lang_q: continue - lang_iso = get_language_iso(lang_q) if not lang_iso: continue + if LANG_FILTER and lang_iso != LANG_FILTER: + continue result = build_xml_entry(lexeme, lang_iso, ili_index, kept_lang_senses) if not result: continue + entry, synsets, _lemma, _pos_code = result - entry, synsets = result - - if lang_iso not in file_handlers: + handler = file_handlers.get(lang_iso) + if handler is None: output_path = EXTENSIONS_DIR / f"{lang_iso}.xml" - file_handlers[lang_iso] = open(output_path, "w", encoding="utf-8") # noqa: SIM115 - file_handlers[lang_iso].write(get_xml_header(lang_iso)) + handler = open(output_path, "w", encoding="utf-8") # noqa: SIM115 + handler.write(_xml_header(lang_iso)) + file_handlers[lang_iso] = handler entry_counts[lang_iso] = 0 synsets_by_lang[lang_iso] = [] - file_handlers[lang_iso].write(entry + "\n") + handler.write(entry + "\n") synsets_by_lang[lang_iso].extend(synsets) entry_counts[lang_iso] += 1 - finally: - for lang_iso, f in file_handlers.items(): + for lang_iso, handler in file_handlers.items(): for synset in synsets_by_lang.get(lang_iso, []): - f.write(synset + "\n") - f.write(XML_FOOTER) - f.close() + handler.write(synset + "\n") + handler.write(_XML_FOOTER) + handler.close() print(f" Wrote {len(file_handlers)} language files:") - for lang_iso in sorted(entry_counts.keys()): + for lang_iso in sorted(entry_counts): print(f" {lang_iso}: {entry_counts[lang_iso]} entries") -def main(): +def main() -> None: lexemes, kept_lang_senses = filter_lexemes() - ili_index = build_ili_index(lexemes) + ili_index = _build_ili_index(lexemes) + prefetch_wiktionary(lexemes) write_all_extensions(lexemes, ili_index, kept_lang_senses) diff --git a/extensions/wikidata-lexemes/output/ae.xml b/extensions/wikidata-lexemes/output/ae.xml index 496e82e..5320676 100644 --- a/extensions/wikidata-lexemes/output/ae.xml +++ b/extensions/wikidata-lexemes/output/ae.xml @@ -10,6 +10,9 @@ + + + four diff --git a/extensions/wikidata-lexemes/output/af.xml b/extensions/wikidata-lexemes/output/af.xml index 4bfbfe2..3009e91 100644 --- a/extensions/wikidata-lexemes/output/af.xml +++ b/extensions/wikidata-lexemes/output/af.xml @@ -10,12 +10,14 @@ + third person singular pronoun + third person singular pronoun @@ -28,12 +30,14 @@ + I; first person singular pronoun + you; second person singular pronoun diff --git a/extensions/wikidata-lexemes/output/ar.xml b/extensions/wikidata-lexemes/output/ar.xml index cdbc19c..c9ed91d 100644 --- a/extensions/wikidata-lexemes/output/ar.xml +++ b/extensions/wikidata-lexemes/output/ar.xml @@ -284,6 +284,7 @@ + which @@ -754,6 +755,7 @@ + (ضمير متَّصل للمفرد المذكر الغائب) @@ -1316,6 +1318,10 @@ + + + + عدد @@ -1613,6 +1619,7 @@ + eleven @@ -1772,6 +1779,8 @@ + + (suffixed to subjunctive or imperative verb forms to mark ‘energetic’ modality) @@ -1883,6 +1892,13 @@ + + + + + + + that @@ -1961,6 +1977,7 @@ + on, over @@ -2130,6 +2147,7 @@ + مرتبط أو مرافق @@ -2403,6 +2421,7 @@ + that which, those who @@ -2559,6 +2578,16 @@ + + + + + + + + + + this @@ -2656,6 +2685,8 @@ + + الجزء الواحد من الثُّمْنُ ثمانية والجمع : أثمانٌ diff --git a/extensions/wikidata-lexemes/output/az.xml b/extensions/wikidata-lexemes/output/az.xml index 79bcd6a..72002d0 100644 --- a/extensions/wikidata-lexemes/output/az.xml +++ b/extensions/wikidata-lexemes/output/az.xml @@ -16,12 +16,14 @@ + and + (sual əvəz) diff --git a/extensions/wikidata-lexemes/output/bn.xml b/extensions/wikidata-lexemes/output/bn.xml index f87bae0..b441a4f 100644 --- a/extensions/wikidata-lexemes/output/bn.xml +++ b/extensions/wikidata-lexemes/output/bn.xml @@ -10,6 +10,8 @@ + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি @@ -19,6 +21,7 @@ + অঙ্কবাচক সংখ্যা (২) @@ -31,6 +34,7 @@ + অঙ্কবাচক সংখ্যা (১০) @@ -74,6 +78,9 @@ + + + অঙ্কবাচক সংখ্যা (৮৬) @@ -131,6 +138,7 @@ + প্রতিনিধি স্বরূপ @@ -197,12 +205,17 @@ + সে দ্রব্য + + + + আমি @@ -397,6 +410,8 @@ + + এই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো @@ -444,18 +459,28 @@ + + সম্বোধিত ব্যক্তি + + সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + + + + বিভক্তি যে যোগে বিশেষ্যপদ সামান্য বা সাধারণ অর্থ ত্যাগ করিয়া বিশিষ্ট বা নির্দিষ্ট অর্থ প্রকাশ করে @@ -581,6 +606,7 @@ + থেকে @@ -629,6 +655,8 @@ + + এই ব্যক্তি @@ -647,6 +675,9 @@ + + + দফা @@ -683,6 +714,8 @@ + + সম্ভ্রমার্থে সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন @@ -853,6 +886,8 @@ + + সেই ব্যক্তি @@ -865,6 +900,8 @@ + + সেই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো @@ -920,6 +957,10 @@ + + + + বক্তা স্বয়ং চলার পথে দিনে রাতে / দেখা হবে সবার সাথে— / তাদের আমি চাব, তারা / আমায় চাবে॥ @@ -929,12 +970,20 @@ + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি ও অন্যান্য লোকজন + + + + + + বিশেষ্যের বহুত্ব-বোধক প্রত্যয় @@ -977,6 +1026,9 @@ + + + অঙ্কবাচক সংখ্যা (২৬) @@ -1001,6 +1053,9 @@ + + + অঙ্কবাচক সংখ্যা (৫৬) @@ -1025,6 +1080,9 @@ + + + অঙ্কবাচক সংখ্যা (৭৬) @@ -1097,12 +1155,17 @@ + + কোন বস্তু/বিষয় + + + কোন স্থান @@ -1127,6 +1190,7 @@ + যে দ্রব্য @@ -1139,12 +1203,16 @@ + + সকলেই + + কেহ; কোনো ব্যক্তি; @@ -1157,6 +1225,8 @@ + + নিম্নপদস্থ বা অন্তরঙ্গ সম্বোধিত ব্যক্তি তোর বাবার শরীর ভালো নয়। @@ -1262,6 +1332,8 @@ + + এই ব্যক্তি/বস্তু/বিষয় @@ -1289,6 +1361,8 @@ + + নির্দিষ্ট বস্তু বা ব্যক্তি @@ -1335,6 +1409,7 @@ + অঙ্কবাচক সংখ্যা (১) @@ -1528,12 +1603,16 @@ + + ওই ব্যক্তি/বস্তু/বিষয় + + সেই ব্যক্তি @@ -1555,6 +1634,7 @@ + সাহায্যে @@ -1585,6 +1665,8 @@ + + স্বয়ং @@ -1625,6 +1707,8 @@ + + বক্তা স্বয়ং ও অন্যান্য লোকজন @@ -1697,6 +1781,9 @@ + + + অঙ্কবাচক সংখ্যা (৯৬) @@ -1757,6 +1844,9 @@ + + + অঙ্কবাচক সংখ্যা (৮৬) @@ -1769,12 +1859,16 @@ + + ওই ব্যক্তি + + ওই ব্যক্তিগণ/বস্তুগুলো/বিষয়গুলো diff --git a/extensions/wikidata-lexemes/output/br.xml b/extensions/wikidata-lexemes/output/br.xml index 754db5f..0f2c98b 100644 --- a/extensions/wikidata-lexemes/output/br.xml +++ b/extensions/wikidata-lexemes/output/br.xml @@ -10,12 +10,19 @@ + + + + + + article indéfini + à cause de @@ -34,6 +41,7 @@ + vers (spatialement) @@ -49,6 +57,7 @@ + tout au travers @@ -76,6 +85,11 @@ + + + + + niver 4 @@ -106,6 +120,17 @@ + + + + + + + + + + + à, pour, sur le point de @@ -130,24 +155,30 @@ + + conjonction + particule verbale + pendant + + depuis @@ -184,18 +215,33 @@ + anadenn aergelc'h + + + + + + + + + + + + sans + + auprès de @@ -211,18 +257,32 @@ + used for negation + + + + + + + + + + comme + + + article défini @@ -235,24 +295,37 @@ + + niver 10 + + + + + + + + pour + + gremm + sans @@ -283,6 +356,8 @@ + + niver 5 @@ -295,6 +370,9 @@ + + + prantad @@ -346,18 +424,27 @@ + particule de négation + mais + + + + + + + à propos de @@ -367,6 +454,14 @@ + + + + + + + + contre @@ -391,12 +486,24 @@ + possessif, deuxième personne du singulier + + + + + + + + + + + vers @@ -415,6 +522,15 @@ + + + + + + + + + environ, alentours (dans l'espace) @@ -427,6 +543,7 @@ + contre @@ -439,6 +556,18 @@ + + + + + + + + + + + + de (dans l'espace) @@ -454,18 +583,36 @@ + + et + + + + + + + + + + + de (origine, provenance, etc.) + + + + + niver 3 @@ -478,6 +625,7 @@ + niver 15 @@ -502,12 +650,15 @@ + + gremm + between @@ -517,6 +668,16 @@ + + + + + + + + + + par @@ -526,6 +687,8 @@ + + jusque, jusqu'à @@ -550,6 +713,8 @@ + + envers @@ -568,24 +733,47 @@ + l'autre + + peseurt den + + + + + + + + + + + + + + + with + + + + + niver 2 @@ -628,6 +816,7 @@ + depuis (distance) @@ -643,6 +832,7 @@ + après (dans l'espace) @@ -652,24 +842,39 @@ + + + + + + + + + + + + dire + à tue-tête + every + quel diff --git a/extensions/wikidata-lexemes/output/ca.xml b/extensions/wikidata-lexemes/output/ca.xml index c3f7121..5542906 100644 --- a/extensions/wikidata-lexemes/output/ca.xml +++ b/extensions/wikidata-lexemes/output/ca.xml @@ -22,6 +22,10 @@ + + + + the; definite article @@ -250,6 +254,13 @@ + + + + + + + (third-person direct object) @@ -313,6 +324,7 @@ + from diff --git a/extensions/wikidata-lexemes/output/cs.xml b/extensions/wikidata-lexemes/output/cs.xml index 5cfabb4..ded6eea 100644 --- a/extensions/wikidata-lexemes/output/cs.xml +++ b/extensions/wikidata-lexemes/output/cs.xml @@ -27,30 +27,38 @@ + + + + zastupuje neurčitou, obecnou věc + označuje počet 9 + označuje počet 7 + označuje počet 16 + označuje počet 90 @@ -84,30 +92,75 @@ + + + + + + + + + jedna z osmi stejných částí celku + + + + + + + + + jedna z devíti stejných částí celku + + + + + + + + + jedna z devatenácti stejných částí celku + + + + + + + + + jedna z padesáti stejných částí celku + + + + + + + + + jedna ze sta stejných částí celku @@ -230,6 +283,7 @@ + politická organizace sdružující osoby se stejnou ideologií a nominující kandidáty do veřejných úřadů @@ -485,50 +539,78 @@ uzavřená místnost, do které je vháněn plyn, což způsobuje smrt otravou nebo zadušením - - - - hlavolam - - + označuje počet 19 + označuje počet 20 + označuje počet 60 + označuje počet 80 + + + + + + + + + + vyjadřuje pořadí na 4. místě + + + + + + + + + + vyjadřuje pořadí na 50. místě + + + + + + + + + + vyjadřuje pořadí na 90. místě @@ -545,26 +627,40 @@ rozloučení - - - - papež - - + + + + + označuje žádný počet + + + + + + + + + jedna z patnácti stejných částí celku + + + + + + fyziologická reakce těla @@ -653,12 +749,30 @@ + + + + + + + + + natural number with value 10¹⁵, named one quadrillion or one billiard depending on the scale; also one thousand, million, million + + + + + + + + + natural number with the value 10⁹, named one billion or one milliard @@ -983,42 +1097,92 @@ + + + + + označuje mluvčího promluvy + + + + + + + + + označuje počet 1 + označuje počet 50 + + + + + vyjadřuje pořadí na 3. místě + + + + + + + + + + vyjadřuje pořadí na 5. místě + + + + + + + + + + vyjadřuje pořadí na 9. místě + + + + + + + + + + vyjadřuje pořadí na 15. místě @@ -1050,30 +1214,73 @@ + + + + + + + dřívější označení svátosti nemocných + + + + + + + + + jedna z pěti stejných částí celku + + + + + + + + + jedna z osmnácti stejných částí celku + + + + + + + + + jedna z tisíce stejných částí celku + + + + + + + + + jedna ze dvou stejných částí celku @@ -1176,12 +1383,14 @@ + výrazná hůl používaná při chůzi nevidomými + strašidelná ženská postava z hradů a zámků @@ -1470,42 +1679,53 @@ + + + označuje skupinu mluvčích promluvy + označuje počet 6 - - - - second person singular, you - - + označuje počet 13 + označuje počet 15 + označuje počet 17 + + + + + + + + + + vyjadřuje pořadí na 1. místě @@ -1513,30 +1733,78 @@ + + + + + + + + + + vyjadřuje pořadí na 10. místě + + + + + + + + + + vyjadřuje pořadí na 14. místě + + + + + + + + + + vyjadřuje pořadí na 30. místě + + + + + + + + + + vyjadřuje pořadí na 60. místě + + + + + + + + vyjadřuje počet 100 @@ -1557,17 +1825,12 @@ + velmi mnoho A děcek mají jako máku. - - - - matematická konstanta vyjadřující poměr mezi obvodem a průměrem kružnice - - @@ -1878,12 +2141,6 @@ druh ptáka rodu Pteroglossus - - - - druh ptáka rodu Aratinga - - @@ -2003,54 +2260,80 @@ + vyjma + + + + označuje počet 3 + + + + označuje počet 4 + označuje počet 5 + + + + odkazovaná osoba ženského rodu + + + wy + + + označuje počet 2 + označuje počet 18 + + + + + vyjadřuje pořadí na 1. místě @@ -2058,42 +2341,112 @@ + + + + + + + + + + vyjadřuje pořadí na 8. místě + + + + + + + + + + vyjadřuje pořadí na 12. místě + + + + + + + + + + vyjadřuje pořadí na 13. místě + + + + + + + + + + vyjadřuje pořadí na 16. místě + + + + + + + + + + vyjadřuje pořadí na 18. místě + + + + + + + + + + vyjadřuje pořadí na 40. místě + + + + + + + + + + vyjadřuje pořadí na 80. místě @@ -2124,36 +2477,85 @@ + + + + + + + + + jedna ze sedmi stejných částí celku + + + + + + + + + jedna z deseti stejných částí celku + + + + + + + + + jedna ze čtrnácti stejných částí celku + + + + + + + + + jedna ze sedmnácti stejných částí celku + + + + + + + + + jedna z devadesáti stejných částí celku + + + + sportovní událost @@ -2474,46 +2876,73 @@ + + označuje počet 10 + označuje počet 11 + označuje počet 40 + + + + + + + + + + vyjadřuje pořadí na 19. místě + + + + + + + + + + vyjadřuje pořadí na 100. místě + + + + + + + + + kdo neudrží nic v tajnosti - - - - zranitelné místo, slabina - - @@ -2525,54 +2954,135 @@ + + + + + + + + + jedna ze tří stejných částí celku + + + + + + + + + jedna ze čtyř stejných částí celku + + + + + + + + + jedna z dvanácti stejných částí celku + + + + + + + + + jedna ze šestnácti stejných částí celku + + + + + + + + + jedna ze třiceti stejných částí celku + + + + + + + + + jedna ze šedesáti stejných částí celku + + + + + + + + + jedna ze sedmdesáti stejných částí celku + + + + + + + + + jedna z osmdesáti stejných částí celku + + + + + + + + + extrémně hmotný vesmírný objekt @@ -2978,24 +3488,41 @@ + označuje počet 8 + označuje počet 12 + + + + + + + + + + vyjadřuje pořadí na 11. místě + + + + + vyjadřuje pořadí na 1000. místě @@ -3020,24 +3547,52 @@ + vyjadřuje vyšší pravděpodobnost + + + + + + + + + jedna ze šesti stejných částí celku + + + + + + + + + jedna ze třinácti stejných částí celku + + + + + + + + + jedna z dvaceti stejných částí celku @@ -3193,6 +3748,13 @@ + + + + + + + natural number of 1,000,000 @@ -3458,60 +4020,129 @@ + označuje počet 14 + označuje počet 30 + označuje počet 70 + + + + + + + + + + vyjadřuje pořadí na 2. místě + + + + + + + + + + vyjadřuje pořadí na 6. místě + + + + + + + + + + vyjadřuje pořadí na 7. místě + + + + + + + + + + vyjadřuje pořadí na 17. místě + + + + + + + + + + vyjadřuje pořadí na 20. místě + + + + + + + + + + vyjadřuje pořadí na 70. místě + + + + + + vyjadřuje počet 1000 @@ -3556,6 +4187,7 @@ + pravděpodobně, možná @@ -3571,12 +4203,30 @@ + + + + + + + + + jedna z jedenácti stejných částí celku + + + + + + + + + jedna ze čtyřiceti stejných částí celku @@ -4179,9 +4829,6 @@ uzavřená místnost, do které je vháněn plyn, což způsobuje smrt otravou nebo zadušením - - hlavolam - označuje počet 19 @@ -4209,9 +4856,6 @@ rozloučení - - papež - označuje žádný počet @@ -4678,9 +5322,6 @@ označuje počet 6 - - second person singular, you - označuje počet 13 @@ -4718,9 +5359,6 @@ velmi mnoho A děcek mají jako máku. - - matematická konstanta vyjadřující poměr mezi obvodem a průměrem kružnice - zkušený námořník @@ -4877,9 +5515,6 @@ druh ptáka rodu Pteroglossus - - druh ptáka rodu Aratinga - druh ptáka rodu Eupsittula @@ -5189,9 +5824,6 @@ kdo neudrží nic v tajnosti - - zranitelné místo, slabina - ano diff --git a/extensions/wikidata-lexemes/output/cy.xml b/extensions/wikidata-lexemes/output/cy.xml index e59d03b..ea96388 100644 --- a/extensions/wikidata-lexemes/output/cy.xml +++ b/extensions/wikidata-lexemes/output/cy.xml @@ -148,6 +148,7 @@ + article défini diff --git a/extensions/wikidata-lexemes/output/da.xml b/extensions/wikidata-lexemes/output/da.xml index b9a0f6d..123d6b7 100644 --- a/extensions/wikidata-lexemes/output/da.xml +++ b/extensions/wikidata-lexemes/output/da.xml @@ -28,6 +28,7 @@ + tallet efter fire og før seks Efter fem år er det på tide med en evaluering. @@ -43,10 +44,12 @@ according to + + tallet 17 mellem 16 og 18 Jeg har været medlem af Parlamentet i sytten år. @@ -54,6 +57,7 @@ + tallet 80 Gennem de seneste firs år er de nationale mindretal i Ungarn alle blevet udslettet, mens Europa så til i tavshed. @@ -63,6 +67,7 @@ + tallet 15 Vi ved, at der i de sidste femten år er skabt stadig flere økologiske landbrug i Europa. @@ -70,6 +75,7 @@ + tallet 13 mellem tolv og fjorten Alligevel idømmes de tretten måneders ubetinget fængsel og meget høje bøder. @@ -77,6 +83,7 @@ + tallet 11 mellem ti og tolv På den ene side tager det tid at få dokumenterne oversat, så der kan forelægges et resumé på de elleve sprog. @@ -108,6 +115,7 @@ + tallet 60 Den danske regering vil opfordre de kompetente stedlige myndigheder til at overdrage Kommissionen brugen af de arealer, der rummer Det britiske Statssamfunds krigsgrave, for et tidsrum af tresindstyve år med mulighed for forlængelse. @@ -142,12 +150,14 @@ + tallet 40 + lyden fra en kat @@ -178,6 +188,7 @@ + tallet 30 @@ -208,6 +219,7 @@ + tallet 64 @@ -218,17 +230,9 @@ tidsperiode med skriftlige kilder - - - - concerning, with respect to - - - - - + tallet 75 @@ -236,18 +240,21 @@ + ordenstallet 22. + ordenstallet for en million million + tallet 45 @@ -255,6 +262,7 @@ + tallet 45 @@ -262,12 +270,14 @@ + ordenstallet 30. + tallet 65 @@ -275,6 +285,7 @@ + tallet 85 @@ -282,6 +293,8 @@ + + forstærkende kraftudtryk @@ -306,6 +319,7 @@ + tallet for ingenting Og nul plus nul giver stadig nul. @@ -313,6 +327,7 @@ + tallet mellem 6 og 8 I syv måneder er der ikke blevet udbetalt lønninger og pensioner. @@ -327,6 +342,7 @@ + tallet 60 Det har i tres år været indprentet i vores kollektive hukommelse. @@ -336,12 +352,14 @@ + ordinaltallet 5 + tallet 16 mellem femten og sytten Der er godkendt seksten produkter siden oprettelsen af WTO-panelet, men kun syv i 2007. @@ -355,6 +373,7 @@ + tallet 21 Med hensyn til tidsplanen synes De at være låst fast på idéen om en to-trinsreform. Først en lille reform, inden medlem nummer seksten lukkes ind, og derefter en stor reform, inden nummer enogtyve indtræder. @@ -362,6 +381,7 @@ + ordinalet 9 Det niende møde bør vedtage økologiske kriterier til fastlæggelse af marine områder i dybhavsfarvandene, der har brug for beskyttelse. @@ -369,6 +389,7 @@ + ordenstallet 15 Alan Johnston er den femtende journalist, der bortføres i Gazastriben, og i den måned, der fulgte bortførelsen, hørte vi længe intet nyt om ham. @@ -376,6 +397,7 @@ + tallet 22 På området findes der fire og en halv million handelsforetagender, og de beskæftiger toogtyve millioner personer. @@ -401,6 +423,7 @@ + delvis bekræftigelse med forbehold @@ -419,6 +442,7 @@ + et element i en rækkefølge angivet ved variablen 'x' @@ -437,18 +461,21 @@ + tallet 70 + tallet 84 + tallet 94 @@ -461,6 +488,7 @@ + tallet 55 @@ -468,6 +496,7 @@ + ordenstallet 18. @@ -480,6 +509,7 @@ + ordenstallet 90. @@ -487,6 +517,7 @@ + ordenstallet 50. @@ -494,12 +525,14 @@ + ordentallet 14. + ordenstallet 40. @@ -507,6 +540,7 @@ + ordenstallet 60. @@ -514,6 +548,7 @@ + ordenstallet 60. @@ -521,6 +556,7 @@ + anvendes for at udtrykke afsky eller lede @@ -533,6 +569,8 @@ + + formelt eller høfligt pronomen brugt til at adressere en person @@ -559,6 +597,7 @@ + tallet 3 Nu lå der tolv lig i de tre små stuer. @@ -598,6 +637,7 @@ + iberegnet @@ -605,6 +645,7 @@ + med udelukkelse af @@ -618,6 +659,7 @@ + tallet 30 mellem 29 og 31 Der er nu omkring tredive lande, der ikke har svaret. @@ -625,6 +667,7 @@ + tallet 70 mellem 69 og 71 Alt foregik bag lukkede døre, og halvfjerds journalister blev udvist fra retslokalet. @@ -633,6 +676,7 @@ + nummer ti i en række Jeg ville ud på tiende sal. @@ -642,6 +686,8 @@ + + indikere et element i en række der optræder i begyndelsen som nummer 2 Alt i alt viser det, at hverken tredje søjle eller den marginale overdragelse af kompetence til en anden søjle er nok til at skabe effektive sikkerhedsstrukturer i Europa @@ -676,6 +722,7 @@ + tallet 28 @@ -688,18 +735,21 @@ + tallet 23 + tallet 81 + tallet 91 @@ -721,7 +771,7 @@ concerning, with respect to - + @@ -736,7 +786,7 @@ concerning, with respect to Bestemmelser angående regeringens førelse i tilfælde af kongens umyndighed, sygdom eller fraværelse fastsættes ved lov. - + @@ -767,6 +817,7 @@ + to Af forsikringsakten udstedes tvende ligelydende originaler, af hvilke den ene overgives folketinget for at opbevares i sammes arkiv, den anden nedlægges i rigsarkivet. @@ -775,12 +826,14 @@ + tallet 50 + ordenstallet 70. @@ -788,18 +841,21 @@ + ordenstallet for 1.000.000.000 + ordenstalordet 19. + tallet 60 @@ -808,6 +864,9 @@ + + + omkring 50 @@ -826,6 +885,7 @@ + a(n), indefinite article En 31-årig mand fra Horsens gik bersærkergang torsdag aften og nåede at overtræde massevis af paragraffer i straffeloven, inden politiet omsider fik standset ham. @@ -833,6 +893,10 @@ + + + + det naturlige tal "1" Der er nu ganske vist to finske kanaler og en portugisisk kanal, men der er stadig ingen nederlandsk kanal, og jeg havde anmodet Dem om en nederlandsk kanal, fordi også nederlændere gerne vil følge med i nyhederne hver måned, når vi forvises til dette sted. @@ -846,6 +910,7 @@ + ordinaltallet for 0 ... og Rækken standser af sig selv med første eller nulte Potens af x+rb, eftersom p er ulige eller lige. @@ -859,6 +924,7 @@ + tallet 10 mellem 9 og 11 Antallet af allergier er de seneste ti år fordoblet 120 gange. @@ -890,6 +956,7 @@ + ordinaltallet 3 @@ -908,30 +975,42 @@ + + + + + frø af arten Rana arvalis + + padde i arten Pseudepidalea viridis + tallet 24 + + + tallet 1000 + tallet 20 @@ -980,6 +1059,7 @@ + ordinaltallet 8 Hver tolvte EU-borger er arbejdsløs. @@ -993,12 +1073,14 @@ + tallet 54 + seventeenth Fru Marie Grubbe. Interieurer fra det syttende Aarhundrede @@ -1012,6 +1094,7 @@ + tallet 55 @@ -1019,6 +1102,7 @@ + ordenstallet 70. @@ -1026,18 +1110,21 @@ + ordenstallet 80. + ordenstallet 80. + tallet 35 @@ -1045,6 +1132,7 @@ + ordenstallet 23. @@ -1058,6 +1146,7 @@ + tallet 83 @@ -1068,13 +1157,6 @@ i kemi - - - - ifølge - - - @@ -1098,6 +1180,7 @@ + the, definite article @@ -1130,6 +1213,7 @@ + tallet 4, større en tre og mindre en fem Nu er der kun fire tilbage. @@ -1143,6 +1227,7 @@ + tallet 12 mellem 11 og 13 Nu lå der tolv lig i de tre små stuer. @@ -1170,6 +1255,7 @@ + tallet 25 For hvis det er vanskeligt at træffe beslutninger ved enstemmighed i en organisation med femogtyve medlemmer, er det heller ikke acceptabelt at træffe flertalsbeslutninger, når organisationen har femogtyve heterogene medlemmer. @@ -1189,6 +1275,9 @@ + + + tallet 100 mellem 99 og 101 Ulykker i transportsystemer kan bringe flere hundrede mennesker i fare. @@ -1199,6 +1288,7 @@ + 4.; ordinaltallet 4 Jeg kommer nu til min fjerde og næstsidste betragtning. @@ -1212,6 +1302,11 @@ + + + + + this @@ -1224,6 +1319,7 @@ + tallet 80 For hver stat, som ratificerer overenskomsten eller tiltræder den efter deponeringen af det ottende ratifikations- eller tiltrædelsesdokument, som nævnt ovenfor i stk. 1, skal overenskomsten træde i kraft et hundrede og firsindstyve dage efter datoen for den pågældende stats deponering af ratifikations- eller tiltrædelsesdokumentet. @@ -1233,6 +1329,7 @@ + ordinaltallet 6 For blot 100 år siden var hver sjette, syvende indbygger i verden europæer, men om 40 år vil blot hvert 20. menneske bo på vores kontinent. @@ -1240,6 +1337,9 @@ + + + everyone @@ -1264,12 +1364,14 @@ + everything + tallet 27 @@ -1282,6 +1384,7 @@ + held og lykke @@ -1318,18 +1421,21 @@ + thirteenth + tallet 66 + tallet 75 @@ -1337,6 +1443,7 @@ + ordenstallet 40. @@ -1344,6 +1451,7 @@ + ordenstallet 29. @@ -1387,6 +1495,7 @@ + antallet 20 mellem 19 og 21 Forkert brug af organiske opløsningsmidler gav allerede for tyve år siden problemer. @@ -1400,6 +1509,7 @@ + tallet 19 I gennemsnit blev der hver uge i 1996 vedtaget nitten forordninger og to direktiver, hvoraf de fleste drejede sig om den fælles landbrugspolitik. @@ -1407,6 +1517,7 @@ + tallet 14 mellem tretten og femten Jeg nævner også de kommende klimaforhandlinger, som startes om fjorten dage i Bonn. @@ -1414,6 +1525,7 @@ + tallet 40 mellem 39 og 41 For fyrre år siden var der god mening heri, og det er der også i dag! @@ -1421,6 +1533,7 @@ + tallet 90 mellem 89 og 91 Tilsvarende burde verden selvfølgelig reagere, når over halvfems procent af de førende forskere på området i verden siger, at den globale opvarmning er reel, og at den er menneskeskabt. @@ -1429,16 +1542,15 @@ + + + + + med forskel i forbindelse med selektiv referentialitet og kategori - - - - bil - - @@ -1447,6 +1559,7 @@ + 90 Denne meddelelse må i de tilfælde, hvor en stat allerede har tiltrådt konventionen, gives inden halvfemsindstyve dage efter datoen for generalsekretærens meddelelse, og i de tilfælde, hvor en stat senere tiltræder, inden halvfemsindtyve dage efter datoen for deponeringen af ratifikations- eller tiltrædelsesinstrumentet. @@ -1455,6 +1568,7 @@ + tallet 50 @@ -1462,6 +1576,7 @@ + ordinaltallet 7 Jeg er adræt nok til at gå ned fra sjette eller syvende sal. @@ -1469,6 +1584,7 @@ + ordinaltallet 8 Dette er den ottende årsberetning om strukturfondsbevillinger. @@ -1476,6 +1592,7 @@ + ordenstal for 26 @@ -1506,6 +1623,7 @@ + tallet 32 @@ -1542,18 +1660,21 @@ + tallet 44 + twentyfifth + tallet 35 @@ -1561,18 +1682,21 @@ + twenty-first + ordenstallet 27. + ordenstallet 50. @@ -1580,6 +1704,7 @@ + tallet 65 @@ -1600,7 +1725,7 @@ - + udtryk for bestyrtelse og overraskelse @@ -1612,6 +1737,8 @@ + + tallet 2, der er mellem 1 og 3 Det var de to beslutninger, der blev truffet i går. @@ -1626,6 +1753,7 @@ + each other @@ -1656,6 +1784,7 @@ + tallet 9 mellem 8 og 10 Kan vi gøre noget positivt nu her ni år efter? @@ -1669,6 +1798,7 @@ + tallet 18 mellem sytten og nitten For atten år siden ansøgte vi om optagelse i EU. @@ -1688,12 +1818,14 @@ + tallet 26 + nummer 20 i en række @@ -1718,6 +1850,7 @@ + tallet 42 @@ -1746,14 +1879,6 @@ sorry - - - - vedrørende - - - - @@ -1768,18 +1893,21 @@ + tallet 29 + tallet 90 + tallet 40 @@ -1792,12 +1920,14 @@ + tallet 61 + ordenstallet 90. @@ -1805,30 +1935,35 @@ + ordenstallet 11. + ordenstallet for en million + tallet 95 + ordenstallet 16. + tallet 80 @@ -1837,6 +1972,7 @@ + tallet 85 @@ -1844,6 +1980,7 @@ + tallet 33 @@ -1890,6 +2027,7 @@ + tallet 8 efter 7 og før 9 Alt dette forsvandt for otte måneder siden. @@ -1939,6 +2077,7 @@ + tallet 50 mellem 49 og 51 Lad os huske på, at kriminaliteten i Europa er steget betydeligt i løbet af de sidste halvtreds år. @@ -1962,6 +2101,7 @@ + tallet 70 @@ -1984,12 +2124,18 @@ + + + nothing + + + den rationelle talværdi der ligger midt imellem et og to @@ -2027,6 +2173,7 @@ + tallet 31 @@ -2060,42 +2207,49 @@ + tallet 74 + ordenstal for 28 + tallet 49 + ordenstallet 24. + tallet 25 + et element i en rækkefølge angivet ved variablen 'n' + tallet 82 @@ -2109,24 +2263,12 @@ udtryk for overraskelse eller forbavselse - - - - alle - - to eller tre - - - - fx i: kollegial, normal - - @@ -2139,6 +2281,21 @@ udtryk for smerte + + + + concerning, with respect to + + + + + + + + ifølge + + + with @@ -2246,9 +2403,6 @@ tidsperiode med skriftlige kilder - - concerning, with respect to - tallet 75 @@ -2668,9 +2822,6 @@ i kemi - - ifølge - kommando til en hund om at den skal sætte sig ned @@ -2858,9 +3009,6 @@ med forskel i forbindelse med selektiv referentialitet og kategori - - bil - forstærker @@ -2939,7 +3087,7 @@ held og lykke - + udtryk for bestyrtelse og overraskelse @@ -3014,9 +3162,6 @@ sorry - - vedrørende - konjunktion, der bruges til at indlede en sætning eller klausul, der udtrykker en indrømmelse eller en undtagelse, svarende til 'selvom' eller 'skønt' @@ -3198,20 +3343,20 @@ udtryk for overraskelse eller forbavselse - - alle - to eller tre - - fx i: kollegial, normal - udtryk for bekræftende indrømmelse eller indsigt udtryk for smerte + + concerning, with respect to + + + ifølge + diff --git a/extensions/wikidata-lexemes/output/de.xml b/extensions/wikidata-lexemes/output/de.xml index 1435d71..3f734eb 100644 --- a/extensions/wikidata-lexemes/output/de.xml +++ b/extensions/wikidata-lexemes/output/de.xml @@ -31,6 +31,9 @@ + + + weibliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist @@ -148,6 +151,11 @@ + + + + + ours @@ -352,6 +360,9 @@ + + + interrogative pronoun or question asking for the identity of one or several persons @@ -364,6 +375,9 @@ + + + genau solcher, solche, solches @@ -633,13 +647,6 @@ sound of bells ringing - - - - used to wish someone the best of luck and that events will turn out in favorably - - - @@ -648,6 +655,7 @@ + because of @@ -673,6 +681,8 @@ + + Personalpronomen @@ -685,12 +695,15 @@ + die natürliche Zahl zwischen Drei und Fünf + + we; first-person plural pronoun @@ -730,6 +743,11 @@ + + + + + a; an @@ -770,12 +788,6 @@ Tonsilbe - - - - what - - @@ -959,6 +971,8 @@ + + immitation of a dog vocalisation @@ -995,6 +1009,10 @@ + + + + männliche Person, die zuvor erwähnt wurde oder deren Identität sonstig bekannt ist @@ -1010,12 +1028,17 @@ + + second-person plural pronoun + + + second person formal pronoun @@ -1040,6 +1063,11 @@ + + + + + not a; no @@ -1082,16 +1110,16 @@ + + + + + + his - - - - their - - @@ -1191,12 +1219,6 @@ informal goodbye - - - - diejenige Person, die - - @@ -1232,6 +1254,10 @@ + + + + other @@ -1265,6 +1291,10 @@ + + + + Neopronomen @@ -1367,12 +1397,23 @@ + + + + + + my + + + + + yours (formal) @@ -1389,12 +1430,6 @@ onomatopoeic representation of laughter - - - - nein - - @@ -1599,12 +1634,6 @@ bezüglich, hinsichtlich - - - - drückt Hochachtung, Respekt, Bewunderung aus - - @@ -1616,6 +1645,11 @@ + + + + + this one @@ -1640,6 +1674,7 @@ + Neopronomen Obwohl sier in England geboren wurde, lebt und arbeitet dier nicht-binäre, genderqueere Elektro-Musiker*in Jam Rostrom aka Planningtorock seit 2002 in Berlin. @@ -1654,6 +1689,12 @@ + + + + + + one (as a pronoun); someone; one thing @@ -1670,14 +1711,16 @@ and/or - - - - hers - - + + + + + + + + the one; this one; that one @@ -1699,6 +1742,7 @@ + the number 15 @@ -1871,6 +1915,11 @@ + + + + + bestimmter Artikel Der Mann hat einen Hund. @@ -1878,28 +1927,20 @@ + and, joins words and sentence parts together + + + second-person singular pronoun - - - - they; third person plural pronoun - - - - - - Neopronomen - - @@ -1986,16 +2027,15 @@ + + + + + yours (plural) - - - - that; which; who - - @@ -2136,7 +2176,6 @@ used to wish someone the best of luck and that events will turn out favorably - @@ -2178,6 +2217,10 @@ + + + + bezeichnet die eigene Person @@ -2281,16 +2324,16 @@ + + + + + + yours (singular) - - - - etwas - - @@ -2468,6 +2511,9 @@ + + + greeting @@ -2811,9 +2857,6 @@ sound of bells ringing - - used to wish someone the best of luck and that events will turn out in favorably - what's this? @@ -2880,9 +2923,6 @@ Tonsilbe - - what - the number 12 @@ -3043,9 +3083,6 @@ his - - their - left of @@ -3097,9 +3134,6 @@ informal goodbye - - diejenige Person, die - 1001 @@ -3202,9 +3236,6 @@ onomatopoeic representation of laughter - - nein - ow, ouch @@ -3307,9 +3338,6 @@ bezüglich, hinsichtlich - - drückt Hochachtung, Respekt, Bewunderung aus - vorangestelltes Wortbildungselement bei Adjektiven zur Verdeutlichung einer besonders stark ausgeprägten Eigenschaft @@ -3345,9 +3373,6 @@ and/or - - hers - the one; this one; that one @@ -3454,12 +3479,6 @@ second-person singular pronoun - - they; third person plural pronoun - - - Neopronomen - number 6 @@ -3505,9 +3524,6 @@ yours (plural) - - that; which; who - the number 13 @@ -3659,9 +3675,6 @@ yours (singular) - - etwas - proposed gender-neutral relative pronoun Das Konzert von Planningtorock, dier zuletzt 2011 auf Kampnagel gespielt hat, wird präsentiert diff --git a/extensions/wikidata-lexemes/output/dz.xml b/extensions/wikidata-lexemes/output/dz.xml index 3ab0061..1f5c6a9 100644 --- a/extensions/wikidata-lexemes/output/dz.xml +++ b/extensions/wikidata-lexemes/output/dz.xml @@ -10,12 +10,16 @@ + + you; second person singular pronoun + + third person singular pronoun @@ -28,30 +32,40 @@ + + third person singular pronoun + + I; first person singular pronoun + + we; first person plural pronoun + + they; third person plural pronoun + + you; second person plural pronoun diff --git a/extensions/wikidata-lexemes/output/el.xml b/extensions/wikidata-lexemes/output/el.xml index fdf5b89..cb57e2a 100644 --- a/extensions/wikidata-lexemes/output/el.xml +++ b/extensions/wikidata-lexemes/output/el.xml @@ -22,6 +22,7 @@ + and @@ -52,6 +53,17 @@ + + + + + + + + + + + (definite article) diff --git a/extensions/wikidata-lexemes/output/en.xml b/extensions/wikidata-lexemes/output/en.xml index cae26b8..debaa49 100644 --- a/extensions/wikidata-lexemes/output/en.xml +++ b/extensions/wikidata-lexemes/output/en.xml @@ -31,14 +31,25 @@ playing card + + + + + + + to give an old object a new purpose/role + + + (second-person possessive) belonging to you + joins words and sentence parts together @@ -55,6 +66,17 @@ although + + + + + + (auxiliary) expressing the future tense + + + give in a will, bequeath + + @@ -64,6 +86,7 @@ + sixth power of ten @@ -168,6 +191,7 @@ + million million @@ -194,12 +218,43 @@ according to previous knowledge + + + + More than enough. + Acquire one of these and you'll have plenty of car for your money. + + + + the number 0 + + + + technique for imaging internal structure using magnetic fields + + + + + + + core of the atom; composed of bound nucleons (protons and neutrons) + + + + + + Apart from, except (for), excluding. + Everyone but Father left early. + I like everything but that. + Nobody answered the door when I knocked, so I had no choice but to leave. + + @@ -218,4513 +273,85024 @@ form of laughter (especially when repeated) + + + + Certainly; verily. + + + + + + + + + make the noise 'woof' + + used to express surprise, interest, or alarm, or to command attention + + + + + praise + + expressing relief + + + + chemical element with atomic number 114 + + without - - - - deliberately incorrect version of “who” or “whom”, used humorously in place of those words - Yes, even though she’s one of the YouTubers whomst is bad. + + + + + word or phrase that means exactly or nearly the same as another word - - - - quality of object - - - interrogative word + + + + Used to indicate something dramatic, sudden, and unanticipated has occurred. + Our relationship was going smoothly and then wham! Out of nowhere he told me he was leaving me for another woman. - - - - a certain proportion of, at least one - - - an unspecified quantity or number of + + + + + music group made up of young women - - an unspecified amount of (something uncountable) + + + + + describes rocks low in silica + - - a certain; an unspecified or unknown + + + + + + steel element reinforcing concrete - - - - et cetera + + + + + the world's largest land biome, characterized by coniferous forests - - - - to what extent? + + + + study of the upper atmosphere - - at what cost? - + + + + + study of chemistry pertaining to agriculture - - - - cardinal number + + + + science - - - - neopronoun + + + + type of higher education institution + + + type of tertiary education teaching institution in the UK between 1965 and 1992 - - - - exclamation of astonishment + + + + + molecule found in living beings - - - - English word + + + + + decomposition by living organisms - - - - vocalization by cats + + + + + renewable energy - - - - third person singular neopronoun + + + + + molecule that is produced by a living organism - - - - he or she + + + + + substance providing scientific evidence of past or present life - - - - pronoun used to refer reflexively to a hypothetical or generic person - + + + + + communications medium with a high data transmission rate - - - - response to sneezing - - + + + + + response of a sense organ to chemicals - - - - I love you + + + + + act of consigning - - - - reply to something negative happening, expressing one's panic or disappointment + + + + + + + license - - - - you (plural) + + + + not binary + + + outside or beyond the gender binary; not exclusively male or female - - - - second person plural pronoun + + + + study of diabetes + + + clinical science of diabetes mellitus - - - - neopronoun (ze/hir/hirs form) + + + + + indicator of a problem + + + process to assist in medical diagnosis - - - - out + + + + + being diurnal - - - - of a mix of warmed or chilled alcohol, optionally including ingredient + + + + measurement of electrical properties - - - - a representation of the bark of a dog + + + + pertaining to electrotechnology - - - - representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + + + study of energy transformations - - - - some indeterminate amount + + + + of or pertaining to a eutectic mixture - - - - (expression of disapproval, dismay) + + + + + semiconductor quasiparticle + + + chemical compound - - - - the other + + + + relating to fermions - - - - without excusing oneself or saying one is sorry + + + + attracted to all genders - - - - number between 41 and 43 + + + + + + + counter-argue - - - - the number 9 + + + + fluid analog of electronics - - - - person spoken to or written to - You, in the red shirt: what's your name? + + + + + spacecraft flight past a celestial object - - people spoken or written to - All 20 of you forgot to do your homework. + + ceremonial aircraft flight - - anyone, one; unspecified individual or group of individuals - + + flight event at some distance from the object - - - - female person or animal previously mentioned or implied + + + + + provider of funds - - person whose gender is unknown or irrelevant - + + + + + pertaining to geomatics - - - - indicates the composition of a given collective or quantitative noun - a group of students + + + + + + + use getter to improve vacuum - - indicates an ancestral source or origin of descent + + + + + + skill at obtaining grants - - links entities which are related by a form of belonging or pertinence from one to the other + + + + + + single layer of graphite - - denotes quantity + + + + + + undeveloped land - - - - located within + + + + + + + provide a guarantee - - moving into + + + + + deliberately incorrect version of “who” or “whom”, used humorously in place of those words + Yes, even though she’s one of the YouTubers whomst is bad. - - expressed using a particular language (natural or artificial), or some other formal representation + + + + + + medical specialist in hepatology - - - - enabling + + + + + study of water in the atmosphere + - - - - in a relative position on the other side of a boundary + + + + + term for faster-than-light travel mechanism - - - - during the same time as + + + + between communities - - - - sufficient + + + + between ministries - - - - an uncertain or unspecified thing; one thing + + + + between mountains - - - - moving to the top of + + + + + type of crystal defect - - - - in a contrary direction to + + + + + type of Korean food - - in physical contact with + + + + + + device or process to make linear - - in physical opposition to, or in collision with + + type of circuit - - in opposition to + + + + + study of fats - - - - unknown or unspecified person + + + + + middle part of a city - - - - denoting approval + + + + pertaining to modernism - - - - In addition, in addition to + + + + of a size measured in nanometers - - - - expression of surprise + + + + + study of animal behavior related to nervous system - - - - expressing unbelief + + + + + study of nervous system disease - - - - express mild disapproval + + + + + study of drug interactions with brain and psychology - - - - the whole quantity or amount + + + + not clinical - - everything + + + + + against proliferation (particularly of nuclear weapons) - - everyone + + + + + + electron state in an atomic or molecular system - - the only thing (used for emphasis) + + an orbital road - - - - every so often + + + + relating to orthotics - - - - at the present time + + + + + economic concept - - - - neopronoun + + + + + environment of an area in the distant past - - - - neopronoun + + + + study of veins - - - - out of, from + + + + + degree to which something can be verified - - - - until + + + + pertaining to podiatry - - - - interjection used to express contempt or disapproval + + + + + + cast (as in concrete) elsewhere before installing - - - - expression of regret/sorrow + + + + + + + construction technique - - - - before + + + + pertaining to psychonomics - - - - vocative particle + + + + relating to sales directly to final customers - - - - someone with whom the speaker has a measure of emotional closeness and respect + + + + characteristic - - - - interjection of happiness + + + + + + + break into fragments - - - - I swear! + + + + + + notes held only briefly in music - - - - which person is + + + + steel components of a structure - - - - be healthy, be well - - - farewell + + + + + one who studies suicide - - recommendation for greater sophistication or awareness: "get real" + + occupation - - - - expression for when very surprised + + + + quality of object + + + interrogative word - - - - promise to keep silent + + + + + vehicle safety device - - - - (expressing assent, understanding) + + + + + period when a broadcast program is shown - - (expressing surprise, doubt, joy, anger) + + feeling of weightlessness on a roller coaster - - - - سو گھٹ سولاں + + + + + entity coming closer - - - - malillugu + + + + + helper - - - - more in addition to someone or something + + + + + recording of a text being read - - something different to an aforementioned someone or something + + + + + + person who enjoys the good things in life - - - - (expression of emotional pain, unhappy surprise, disappointment) + + + + In spite of, despite. + Notwithstanding personal preferences, the school district's rules on the topic govern our decision. - - (expression of sudden physical pain) + + + + + causing a transformation - - (expression of sympathy with the pain of another) + + + + + + + + to call someone by their deadname - - (humorous response to a scathing remark) + + + + + + branch of medicine concerned with urological problems affecting women - - - - swear to God + + + + of a desirable age - - - - (first-person plural possessive) belonging to us + + + + + earthquake on the Moon - - - - (third-person singular impersonal possessive) belonging to it + + + + process of overseeing a collection, for example in a museum - - - - to an extent + + + + + statistical method that summarizes data from multiple sources - - aware of, knowledgeable about + + + + + a certain proportion of, at least one - - opposed to + + an unspecified quantity or number of + + + an unspecified amount of (something uncountable) + + + a certain; an unspecified or unknown - - - - to the greatest extent + + + + + version of a scholarly or scientific paper that precedes publication in a peer-reviewed scholarly or scientific journal - - - - forward, at the fore + + + + + type of sponge - - - - at the fore of, ahead of + + + + + perspective of an individual or group - - - - deep in past time; long ago + + + + + action to include someone else’s tweet into one’s own timeline + I'm still learning the full use of hashtags and retweets. - - - - (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + + + + + + include someone else’s tweet into one’s own timeline + In my case, I started following two of the accounts after other people who I follow retweeted or linked to content posted online. + + + reposting of a tweet - - - - nothing, not anything - + + + + + Slang English language term of endearment - - - - (introduces defining relative clause) + + + + + type of antibiotic - - - - indeterminately small in number + + + + + type of pasta + + + beef flank steak - - - - anyone + + + + + female Buddhist monk - - whichever + + + + + + ethanol produced by fermenting crops for fuel - - however much + + + + + fabrication using biological or biochemical methods - - - - in my opinion + + + + + Italian antipasto - - - - for your information + + + + + literary genre - - - - pronoun + + + + + type of cell - - - - clear to auscultation + + + + + + female gladiator - - - - the number 8 + + + + + poetry with 11 syllables per line - - - - speakers/writers, or the speaker/writer and at least one other person - so we believe there should be a highway leading directly from this Department to every school house in Michigan + + + + + virtual machine-supporting software or firmware - - speaker(s)/writer(s) and the person(s) being addressed + + + + + + unlawful withholding of employee pay by their employer - - speaker/writer alone + + + + + + collection of fashion photographs - - - - intended to belong to, or be used by, or be used in connection with + + + + + type of neutron star - - with the object or purpose of + + + + + + very thin synthetic fiber - - to the benefit of + + + + + fallacious argumentative strategy that avoids genuine discussion of the topic by instead attacking the character, motive etc. of the person(s) associated with the argument - - to a duration of + + + + + et cetera - - in favour of + + + + + in an apposite manner, appropriately, to the point - - - - away from the inside + + + + radiantly (in the manner of beaming light) - - - - unspecified group + + + + in a cheating manner - - - - under; closer to the ground than - + + + + In a controllable manner. - - - - relation of spatial context - She found it was tucked under the desk + + + + in a dapper manner; neatly, trimly, sprucely - - relation of heirarchy, authority, or importance - While under the supervision of his mentor + + + + + meritoriously (in a deserving manner) - - - - Every person + + + + used as a lense to improve sight - - - - metaphysics term designating all that exists + + + + faintingly/fadingly, so as to resemble/evoke death (in dying) - - - - if + + + + without emotion or feeling (in an emotionless manner) - - - - in the inner part, spatially; physically inside + + + + the state of not having anything in one's hand - - - - only under the following condition + + + + so as to enrich - - - - no person + + + + in a manner involving multiple cells - - - - up to a point in time + + + + on the face of - - - - (exclamation intended to scare) + + + + without friction (in a frictionless manner) - - (utterance expressing disdain, dissatisfaction) + + + + + in a guileless manner - - - - interrupting another + + + + to what extent? + + + at what cost? + - - - - sadly + + + + in an insubordinate manner - - - - expressing relief + + + + without motive - - - - expressing glee, excitement + + + + type of document issued by the Pope - - - - indicating strong approval + + + + polite response to a "Thank you" - - - - approximately + + + + said of the time of day, according to the clock - - - - expressing surprise + + + + onward - - - - indicates acknowledgment + + + + in a way that involves wild, uncontrolled behavior and feelings of great pleasure and excitement - - - - expression of gratitude + + + + illicit partner in love - - - - traditionally associated with a discovery + + + + slang for a user being added to a killfile - - - - any person - + + + + In a way that is pretended; under false pretence. - - - - similar to, reminiscent of + + + + in a priceless manner - - - - the aforementioned person or thing + + + + in the earliest stage/at first/originally - - - - against + + + + irresistibly/without resistance - - - - salutation of Italian origin + + + + in a stifling manner - - - - away from + + + + without weeping (in a tearless manner) - - - - the same + + + + имсол - - - - God willing (used mainly by Muslims or in Islamic contexts) + + + + without reference to time, independently of time's passage - - - - response to sneezing - + + + + across an (imaginary) line around which an object may be spun, referring to a mammalian head it is the second cervical vertebra of the spine - - - - used to express surprise, interest, or alarm, or to command attention + + + + in a way that is large, bulky, or full - - - - interjection meaning "rubbish," "nonsense" + + + + in a kind and friendly manner - - - - equal in value to + + + + done in a manner that worships another - - deserving of + + + + + without any mental or neurological abnormalities - - - - (call to someone at a distance) + + + + + type of parasitic organism - - - - (expression of excitement) + + + + + holistic training discipline - - (expression of pride) + + + + + + organism that eats multiple types of other organisms - - (expression of surprise) + + + + + + functionless DNA or RNA sequence - - (expression of irritation) + + + + + garbled text as a result of incorrect character encoding - - (expression of anger) + + + + + Any apparently useless activity which, by allowing you to overcome intermediate difficulties, allows you to solve a larger problem. - - (expression of regret) + + A less useful activity done consciously or subconsciously to procrastinate about a larger but more useful task. - - (expression of worry) + + + + + + class of small, light notebook computers - - (expression of shock) + + + + + + study of saccharides - - - - that’s mine! I want a share! + + + + + + + excessively express a gene by producing too much of its effect or product - - - - (gender-neutral singular pronoun in all grammatical persons) + + + + + process of formation of cancer - - - - what amount? + + + + + condensed form of chromatin - - - - upward + + + + + type of signaling protein - - - - within, towards the inner part + + + + + fraction of population testing positive for a disease - - - - bring your own bottle + + + + + narrow shaft bored in the ground - - bring your own beer + + + + + + instrument that records seismic waves by measuring ground motions, caused by earthquakes, volcanic eruptions, and explosions - - bring your own booze + + + + + type of computer software - - bring your own bud + + + + + all disciplines related to managing data as a valuable resource - - - - personal pronoun + + + + condition that results from not enough consumption of nutrients + + + cause to lack nutrients - - - - not tested + + + + + land surface - - - - at a pace of about 120 steps per minute + + + + cardinal number - - - - cardinal number between 19 and 21 + + + + + + + + freeze again - - - - what person + + + + process by which the embryo is formed and develops - - person or people that - It was a nice man who helped us. + + + + + + + + to magnetize - - - - which mode + + + + + + + fold again (origami sense) - - - - number between 136 and 138 + + + + + + + to make sickly - - - - the number 3 between two and four + + + + + + + post, again - - - - single person, previously mentioned, of unknown or non-binary gender + + + + + + + to make horn-like in texture - - group of people, animals, plants or objects previously mentioned + + + + + + + + to coat or impregnate with zinc - - some people; someone + + + + + + + + to make or render plebeian - - - - (first-person singular personal pronoun) speaker or writer of a sentence - That belongs to me, not you. - I am Ozymandias, King of Kings! + + + + + + + watch again - - - - inanimate object or animal + + + + + process of defining the measurement of a phenomenon that is not directly measurable, though its existence is indicated by other phenomena - - child of unknown gender + + + + + type of civil service position - - referring to the situation in general + + + + + + + + to place in a basket - - single, specific person + + + + + + Human disease - - - - (word used with the present form of a verb to mark it as being an infinitive) + + + + + Human disease - - - - referring to a thing or things that exist + + + + + filtration by force through a semipermeable membrane - - - - above, higher in altitude + + + + + bile duct adenocarcinoma that has material basis in bile duct epithelial cells. - - - - more than a few + + + + paralysis of all four limbs and torso - - - - A word used to show agreement or acceptance. - + + + + + excision of the urinary bladder - - affirmative option provided in a binary vote + + removal of a cyst - - - - spatial position in relation to two objects, on each side of the subject + + + + + surgical removal of all or part of an intervertebral disc - - - - within the interior of something, closest to the center or to a specific point of reference + + + + + environment with extremely low apparent gravitational force - - - - because + + + + + deepest layer of the oceans - - - - not including + + + + + the re-emission of photons from a surface following exposure - - - - request for confirmation + + + + + surgical procedure that creates a long-term opening between the kidney and the skin - - - - denoting thoughtfulness + + + + + surgical excision of a part of the cornea - - - - Expression of awe, terror, surprise or astonishment + + + + + correlation between measurements of quantum subsystems, even when spatially separated - - - - something belonging to + + + + phenomenon applied in physics + + + geometric property of some molecules and ions - - - - to + + + + + miniaturized and simplified version of an organ - - - - difference + + + + aesthetic ideal introduced into English cultural debate in 1782 by William Gilpin; along with the aesthetic and cultural strands of Gothic and Celticism, was a part of the emerging Romantic sensibility of the 18th century - - - - one thousand million - + + + + + metric in epidemiology - - - - natural number + + + + process of finding and identifying people in close contact with someone who is infected with a transmissible pathogen - - - - from within/the inside + + + + + dish made from rice - - - - mot pour mot + + + + + crystalline piece of solid matter less than 100nm in diameter - - - - in the middle of + + + + + nanostructure with its diameter in nanometers - - - - cardinal number + + + + + human disease - - - - cardinal number + + + + + formation and then immediate implosion of cavities in a liquid + + + form cavities in tissue or organs - - - - neopronoun + + + + + phenotype of the typical form of a species as it occurs in nature. Most prevalent allele – i.e., the one with the highest gene frequency – is the one deemed as wild type - - - - interjection used as an expression of surprise, fear, or astonishment + + + + + type of organelle - - - - used to make a polite request + + + + + class of chemical compounds - - Used as an affirmative to an offer + + + + + + a class of chemical compounds - - - - salutation used in the morning + + + + the ability of certain substances to produce several distinct biological responses - - - - toward the top + + + + + slide show - - - - near + + + + + toxic effects on the nervous system - - - - to which + + + + + word or phrase prefixed by # for categorization - - - - be quiet(er); stop talking or making noise, or make less noise + + + + + large mass of glacier ice - - - - salutation used at night + + + + + device that increases humidity - - - - Greeting given upon someone's arrival + + + + branch of statistics focusing on spatial data sets - - ellipsis of you're welcome + + + + + + function of the coefficients of a polynomial that gives information on its roots - - - - response to sneezing - + + + + non-binary gender identity with partial association to a gender - - - - laughing my ass off + + + + + territory legally or politically attached to a main territory with which it is not physically contiguous because of surrounding alien territory - - - - a colloquial or informal way to say goodbye or farewell + + + + + loss or extinctions of animals in the forests - - - - at - + + + + + audio effect + + + fictional weapon - - - - Correct, right + + + + ancient Persian unit of mass - - - - the number between 35 and 37 + + + + + + + neopronoun - - - - the number between 20 and 22 + + + + exclamation of astonishment - - - - implies affirmation - - + + + + distance between different groups in society - - - - (expressing affirmation, agreement, or admiration) + + + + species of fish - - - - (first person plural reflexive pronoun) + + + + worker who is considered to provide an essential service but not necessarily in a special legal category - - - - one of two equal parts of + + + + + + + to exhibit especially in an attractive or favorable aspect - - - - (reflexive third-person singular impersonal pronoun) of its own self + + + + + pay out + + + provide a payout - - - - after a certain amount of time + + + + + argument for the existence of an intelligent cause adequate to explain the extraordinary design and intelligence we observe in our information-rich universe, particularly within living organisms - - - - (exclamation of pleasurable anticipation for the taste of food) + + + + + type of performance art - - - - of consitional allowance for the present + + + + + dislike of or prejudice against bisexual people - - (used in borrowed French compounds) of + + + + + + type of cancer of the brain originating in a particular kind of glial cells, star-shaped brain cells in the cerebrum called astrocytes - - - - on account of; by reason of + + + + (of a man or woman) attracted to both men and women - - - - Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + + + + + + to capture an image of the on-screen view of an electronic device - - - - nothing, not anything - + + + + + nostalgic Internet aesthetic celebrating a return to traditional skills and crafts - - zero; nil + + + + + + person or object that practices correction - - - - to one another; one to the other + + + + + dissolute person - - - - despite, for, notwithstanding + + + + + + + to travel by dogsled - - - - (with plural reference) your + + + + With all due respect to. - - - - along + + + + Unless (something) happens; excepting; in the absence of. + Barring any further red tape, we will finally be able to open the restaurant. + Barring any sudden storms, the plane should arrive on time. - - - - you, all of you + + + + Signifies that the action of the clause it starts takes place before the action of the other clause. + The show ends after the fat lady sings. + After we had decided to call it a day, I went home. - - you and people of your kind + + + + + If - - - - (expressing compliance with an order) + + + + English word - - - - medical imaging procedure using X-rays to produce cross-sectional images + + + + Where, or in which location. - - - - expression of consent - + + + + Indicates annoyance, anger, or disappointment. + Nuts! They didn't even listen to what I had to say. - - expression of thoughtfulness + + + + + Represents the sound of music or singing. + "La la la la, I can't hear you!" Jimmy said, sticking his fingers in his ears. - - - - expression of disagreement + + + + vocalization by cats - - no - + + + + + A mild expression of annoyance. - - - - expression of disgust + + + + look out!; beware! - - - - the number between four and six - The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + + + Please perform again! - - - - the number 11 + + + + Used to express repugnance, disgust, or annoyance. + Ugh! The bread in the pantry has gone moldy. - - - - used to indicate source/origin + + + + An expression of annoyance or disgust; damn, darn. - - used to indicate starting point, temporally or spatially - A history of public transportation in Kansas City, from cable cars to buses and beyond + + + + + Thanks! - - - - the whole amount, quantity, or extent of + + + + Used to show anger or disappointment: damn - - every member or individual component of + + + + + violating convention or propriety : bizarre - - any (whatever) + + + + + + + + third person singular neopronoun - - nothing but; only + + + + + + the state of being a grandparent - - - - conditional conjunction + + + + + process of items shrinking in size or quantity while their prices remain the same - - - - for the reason that; the fact that + + + + + a cupboard or cubbyhole + + + a hug - - - - over; higher than; further away from the ground than - + + + + + planned process of introducing foreign nucleic acids into eukaryotic cells, usually physically or chemically - - - - on the other side of, further + + + + he or she - - - - all, each + + + + + synthetic media where a content is created that resembles a person often by the machine learning models - - - - not any of a group + + + + + name for an ethnic group - - - - in the middle of + + + + + word with opposite or contradictory meanings - - - - various + + + + energy that is collected from renewable resources - - - - greeting used when meeting someone + + + + tradeable certificate used in carbon mitigation policy systems - - - - on top of + + + + + for positive and negative feedbacks associated with climate change - - - - ten to the power of googol + + + + legal requirements governing air pollutants released into the atmosphere; set quantitative limits on the permissible amount of specific air pollutants that may be released from specific sources over specific timeframes - - - - final, ultimate, coming after all others of its kind + + + + earthquakes as large as magnitude 5.1 that occur in glaciated areas where the glacier moves faster than one kilometer per year - - - - expressing a desire for something to depart + + + + + system of interaction and processes that regulate the Earth's climate - - - - goodbye, likely for a long time + + + + tax on the carbon content of fuels - - - - expression of great pleasure + + + + + hypothetical type of planet whose surface is completely covered with an ocean of water; in fiction see Q98807723 - - - - natural number + + + + + person with a high performance level - - - - natural number + + + + for four years in a row - - - - (to do with position or direction) in, on, at, by, towards, onto + + + + across a span of five consecutive years - - (to do with separation) in, into + + + + + + differential operator in vector calculus + - - (to do with time) each, per, in, on, by + + + + + field at the intersection of medicine and ethics - - - - بِ إسم أللَه + + + + research involving fundamental scientific principles that may apply to a preclinical understanding – to clinical research, which involves studies of people who may be subjects in clinical trials - - - - third-person singular neopronoun + + + + + Unwanted pre-installed software - - - - in the middle of + + + + Having a gender identity other than male or female - - - - in an unsuspected manner; without being suspected + + + + + a biography or biographical sketch - - - - as a result of which + + + + + mineral chemically consistent of aluminum and silicon oxide - - on top of which + + + + + + A full length album. Larger than a mini album. Relates to KPOP - - - - nevertheless + + + + + fictional technology that translates spoken language instantaneously - - - - individual person as the object of his or her own reflective consciousness - + + + + + pronoun used to refer reflexively to a hypothetical or generic person + - - - - interjection used to express disdain or reproach + + + + response to sneezing + - - - - (used to emphasize the truth of a statement) + + + + out of equilibrium - - - - an exclamation meaning "long live ..." + + + + + distributed data store for digital transactions + + + the technology used to create such a database - - - - long live! (battle cry) + + + + + person who performs magic in fiction or mythology - - - - third person singular neopronoun + + + + + attribute in video game representing the health of a game character - - - - expresses hostility + + + + + type of fictional weapon in the Star Wars franchise - - - - expression of encouragement prior to a performance + + + + Polynesiain spiritural practice + + + concept in fantasy literature + + + attribute assigned to characters within a game + + + prestige - - - - expression of gratitude + + + + + + + to acquire again - - - - interjection meaning "As long as you're healthy [you can be happy]." + + + + + heart muscle cell - - - - (reflexive pronoun for the first person singular) + + + + + + + to be over-excited - - - - occurent three times + + + + describes rocks with high silica content + - - - - the number between 22 and 24 + + + + + ethological class; trace fossils in the form of dwelling structures which reflect the life positions of organisms - - - - Islamic expression of reverence + + + + artificial removal of carbon dioxide from blood - - - - (a colloquial American plural form of the second person plural pronoun) + + + + + multiple instances of earbud - - - - - (imprecative) damn, damnation + + a single pair of earbuds - - - - in positive contexts; different, the other of two alternatives, an additional + + + + + research involving volunteers - - - - according to + + + + species spreading outside its native range - - - - (reflexive second-person singular) that which belongs to thee + + + + the pause in human activity due to the COVID-19 pandemic - - - - three halves, 1.5 + + + + + + I love you - - - - (third person possessive singular; belonging to a female being) + + + + + paddleball sport combining elements of tennis, badminton, and table tennis + + + ball used in pickleball - - - - (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + + + attracted to males - - - - with, accompanied by; and with (associative) + + + + attraction to both the same and opposite sex or gender - - - - (introduces relative clause involving people or a group) + + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + - - - - (expression of disappointment) + + + + + member of the Viverridae family - - - - ship ahoy! (exclamation said when another ship is in view) + + + + + one who comments - - - - being part of; included in + + + + the use of e-cigarettes or other devices that let you breathe in nicotine or other drugs as vapor rather than smoke - - - - informal expression used to get attention or greet someone + + + + + a bundle of clothes or bedding - - - - which thing, which object + + + + + type of digital cryptocurrency - - - - the number 2 + + + + reply to something negative happening, expressing one's panic or disappointment - - - - the number 7 + + + + + you (plural) - - playing card + + + + + + + without attraction (all senses) - - - - connects at least two alternatives (inclusive) + + + + drunk - - - - thousand million - + + + + + person who streams activities on their computer to a live online audience - - million million - + + + + + + emoticons or emoji with elements from Japanese katakana - - - - one; any indefinite example of - An yttrium sulfate compound is generally soluble. + + + + + Any beetle of the order Coleoptera - - - - (introduces a clause which is the subject or object of a verb) + + + + + 21st, ordinal number of 21 - - - - for a time period + + + + + Chromobotia macracanthus - - - - the number 100 + + + + + any sponge of the clade Heteroscleromorpha - - - - after a point in time + + + + + any spider in the family Sparassidae + - - - - not containing or using + + + + of, relating to, or shaped like a torus or segment of a torus - - - - in the direction of + + + + + center of a target - - - - some person + + + + not amused - - - - with an increase of + + + + + a strike of lightning - - - - at any time that + + + + second person plural pronoun - - - - phrase used when someone is leaving - + + + + + post that is a copy of another - - - - cheer + + + + + Knulliana cincta - - - - number between 59 and 61 + + + + + any weevil of the subfamily Entiminae - - - - natural number + + + + + any weevil of the family Curculionidae + - - - - natural number + + + + + any parasitoid wasp in the family Braconidae - - - - used to warn of a falling tree + + + + + Habrophallos collaris - - - - linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + + + + + to be extraordinarily proud - - affirmative option provided in a binary vote + + to be extraordinarily pleased - - - - mocking sadness + + + + + a sauna or steam bath, or a session in one - - - - neopronoun + + + + + type of information container consising of words - - - - neopronoun + + + + + person responsible for something - - - - neopronoun + + + + + hall (building owned by a college or university where students live) where all the food is cooked for you - - - - neopronoun + + + + + event without spectators at which photographs are taken of people wearing fashionable clothes - - - - salutation used in the evening + + + + + pine oil-based disinfectant used in India + In aniline, one of the atoms of hydrogen is replaced by the radical phenyle. The converse is also possible, and, if phenyle is in its turn replaced by hydrogen, the ammonia should reappear. - - - - at this moment + + + + + installment, debt paid in sequential parts - - - - because - I wanted to attend the concert, for it featured my favorite band. + + + + without sweat - - since / because - She prepared thoroughly for the meeting was crucial to her career. + + + + + + + liberal or progressive - - - - some large quantity of something + + + + + plant-based substitute for milk from animals - - - - which of two + + + + + a small map, typically in a video game + + + a simple map of landmarks - - - - used to tell someone, especially a child, to be quiet + + + + sale of products and services in individual quantities to end consumers or customers - - - - requesting assistence + + + + + + + + + + + + + + + to tithe; give 10 percent (of earnings, produce, etc.) to charity - - - - used as an exclamation to express surprise, taunting, exultation, etc. + + + + + languid state - - - - an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + + + + + + to show off - - - - The thing, item, etc. being indicated. - This is a pronoun. - + + + + + a garden, usually open to the public, where a wide range of plants are grown for scientific and educational purposes - - - - used to express discontent or dismay + + + + + a person who is aged fifty or more and is still attractive and successful, especially someone famous - - used to express surprise + + + + + + any algae of the genus Ecklonia - - - - prepare for an immediate event about to happen + + + + + any river shrimp in the genus Macrobrachium - - prepare a weapon for use + + + + + treating the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs - - - - shut up! be quiet! + + + + Having a positive and uplifting effect. - - - - long live + + + + + chemical compound; 6'-Hydroxycinchonidine - - - - to be honest + + + + + (biochemistry) A bacterial form of erythrocuprein that contains two atoms of zinc - - - - six, six of something (often approximately) + + + + + + + grammatical construction in which clauses are joined by a coordinating conjunction + Often, however, the significance of a succession of syndeta and asyndeta is perfectly clear from the character of the clauses or sentences connected. - - - - coming outside from - Preparations for their departure out of Egypt + + + + + + + a location where war is being waged - - - - that which shares attributes with another or with itself at another time + + + + spontaneous motion of dispersed particles in a mixed solvent induced by a gradient of solvent concentration - - - - (expressing approval, emphasizing accuracy) + + + + + an instrument for measuring the growth of trees - - (implying alarm or threat) + + + + + + outfit used when exercising - - - - singular ‘they’ + + + + + the process of making a tunnel - - - - (reflexive third-person plural pronoun) of their own self + + + + having strabismus of the eyes - - - - close by + + + + + + showing artistry - - - - against; in return for + + + + + + nerd-like + + + of interest to nerds - - - - used to, acquainted with + + + + + adopted logographic Chinese characters used in the modern Japanese writing system - - - - oops; sorry, I just let off + + + + + coin made from silver-copper alloy used in Germany and the Low Countries during the 13th and 14th centuries - - - - expression of satisfaction + + + + + harassment that occurs in a public setting - - - - cardinal number + + + + female genitalia + + + intercourse; have sex - - - - number between eleven and thirteen + + + + + group that is dedicated to a well-known person, group, idea - - - - male person or animal already known or implied + + + + + + + afsygeliggøre - - person whose gender is unknown or irrelevant - + + + + + + follower of conspiracy theories that assert that Barack Obama is not a natural-born citizen of the United States + - - - - placed above + + + + + natural disaster: dust storm - - - - The (thing) here (used in indicating something or someone nearby). - This word is a determiner. - + + + + + flashy, but impractical public transport technologies - - The known (thing) (used in indicating something or someone just mentioned). + + + + + + a weed (Suaeda moquinii) of the family Chenopodiaceae growing on alkaline lands in the southwestern U.S. - - The known (thing) (used in indicating something or someone about to be mentioned). + + a shrub (Allenrolfea occidentalis) of the family Chenopodiaceae that grows in the southwestern U.S. - - A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + a plant of the genus Franseria, especially Franseria dumosa of desert regions of the southwestern U.S. and adjacent Mexico - - (of a time reference) Designates the current or next instance. Cf. next. + + the plant Isocoma tenuisecta, native to Arizona, New Mexico, and Sonora - - - - - through the means of + + any of several rayless goldenrods - - near to + + + + + + + resembling a bun + - - - - of a kind + + + + + a mammal of the family Ursidae - - - - English function word + + + + + a mammal in the family Odobenidae - - - - The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. - That pronoun is different with this determiner. - + + + + + process by which a preexisting dark mineral is replaced by amphibole - - - - target of an action - + + + + having texture of felt or woolen cloth - - indicating a location for an event + + + + + + any bird in the family Motacillidae - - - - every person, everyone + + + + practical - - - - concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + + + + + + neopronoun (ze/hir/hirs form) - - absence of anything, vacuum + + + + + + sweet pastry with strawberries - - - - up to a certain point in time + + + + Completely destroyed (of mass-scale objects such as villages or fields) - - - - according to + + + + + any bird in the family Ciconiidae - - - - no matter what; for any + + + + + plants of the genus Morinda - - anything that + + dye obtained from plants of the genus Morinda - - - - greeting of non-binding nature + + + + + clothing worn by men during Mobutu Sese Seko's rule - - - - phrase used when someone is leaving - + + + + + pejorative term used for a person who fakes Native American ancestry - - - - expression of surprise or disbelief + + + + + honour, personal dignity + + + power to command admiration; prestige - - - - English archaic personal pronoun - Thou shalt not steal + + + + + any member of the mammal family Chrysochloridae - - - - that is perfect; that is it + + + + + + + to hang (someone) - - claiming success or a win + + + + + + a wrongful advantage - - - - number between 49 and 51 + + + + + folded exterior seat of some early vehicles - - - - from the beginning + + + + + any cetacean in the family Balaenopteridae - - - - narrative technique of beginning a story at the beginning of the events + + + + + robe worn on beach - - - - at what time. + + + + one fourth - - at such time as + + + + + + device to turn a light on or off - - at the time of the action of the following clause - The show will begin when I get there. + + + + + + a covered way or passage between a cathedral transept and the chapter house or deanery - - conjunction + + + + + + + + to yearn, to desire something one does not have + + + to miss someone or something - - - - anything (sometimes indicates the speaker doesn't care about options) + + + + impertinent; having chutzpah - - - - (indicating movement, direction towards a place) + + + + irreplaceable, irreplicable (of a product which has been contracted for) - - before, until (indicating relation to a position in time) + + + + + + + subject to much public attention - - (indicating application of or benefactive relationship with) + + + + + + Derogatory slang for a large utility passenger vehicle. - - - - in addition to what has been said previously + + + + + scientific and musical study of bells and the art of bell ringing - - - - in another way + + + + the minute cytological characteristics of the cell nucleus especially with regard to the chromosomes - - or else + + branch of cytology concerned with the karyology of cell nuclei - - - - whatever person + + + + + branch of entomology dealing with the Diptera - - - - (expression of strong feeling) + + + + branch of zoology dealing with barnacles - - - - an imitation or representation of the grunt of a pig + + + + branch of medicine concerned with the anatomy, functions, and disorders (such as infertility or impotence) of the male reproductive system - - - - laughing out loud + + + + + branch of zoology concerning the study of spiders and other arachnids + - - - - an expression of surprise, shock, etc. + + + + + glaucophane-bearing schist variety - - - - used to wish someone the best of luck and that events will turn out in favorably + + + + + ecology dealing with individual organisms or individual species of organisms - - - - nearby, next to + + + + the study of human growth - - - - (indicates immanent occurrence of action) + + + + study of unknown, legendary, or extinct animals whose existence or survival to the present day is disputed or unsubstantiated - - - - stay still (for a moment); exclamatory expression + + + + + microstructure - - - - consitent of, having been created from + + + + the study of flags - - - - (first-person singular possessive) belonging to me + + + + academic and professional field combining gerontology and technology + - - - - (third-person plural possessive) belonging to them + + + + + branch of technology and engineering concerned with the installation, maintenance, and replacement of industrial plant and equipment and with related subjects and practices - - - - tother + + + + + branch of zoology dealing with mammals + + + + - - - - interjection used to express surprise, anger, or extreme displeasure + + + + + the study of and hobby of collecting postcards - - - - with regard to + + + + the study of human populations, activities, and behavior - - - - (introduces restrictive relative clause) + + + + + branch of science which treats of the laws and phenomena of aqueous vapor - - - - sound of spitting + + + + + branch of science concerned with the effect of environmental and atmospheric conditions (both natural and artificial) on living organisms - - - - you only live once + + + + + branch of biology concerned with the study of natural communities and the interaction of the members of such a community - - - - do not intubate + + + + + performer of or enthusiast for jungle music - - - - expression of hesitation - - - expression of thinking + + + + the study of human cognition and behavior with respect to their evolutionary origins - - - - expression of acceptance + + + + + a winter sporting event in which athletes ski over the countryside and stop to shoot rifles at targets - - - - exactly that; in itself + + + + in imprecations, subject to damnation - - - - initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + + + from - - - - what place + + + + + a round, low neckline on a woman's shirt or dress + - - - - the number 4 between three and five + + + + + courtyard of a Māori meeting house - - playing card + + prison cell, especially one where its occupant entertains many friends - - - - the number 6 + + + + out - - - - In addition to; as an accessory to + + + + + branch of psychology concerned with human maturation, school learning, teaching methods, guidance, and evaluation of aptitude and progress by standardized tests - - - - (used to show disagreement or negation) - + + + + the study of accentuation in language - - - - to move inside of (something) + + + + the study of ligaments - - - - item(s) that are separate and distinct from the item(s) under consideration + + + + geology of the ocean floor + - - - - at least one item of a set + + + + a psychological approach or system affirming that human acts are understandable and predictable only through an analysis of the previous experiences and motivational states of the organism rather than through a simple description of the objective stimuli temporally preceding human acts - - - - what person’s + + + + + speculative psychology concerned with postulating the structure (such as the ego and id) and processes (such as cathexis) of the mind which usually cannot be demonstrated objectively - - person’s … that + + + + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + - - - - in all associated places + + + + of or relating to the mammal family Erinaceidae (the gymnures and hedgehogs) - - - - laughter or amusement + + + + + branch of biogeography concerned with the geographic distribution of animals - - - - through + + + + + scientific study of human biological remains (such as bones) from archaeological sites + - - - - unless + + + + + branch of pedology that is concerned with the soils of past geological ages - - - - while + + + + + the study of spines (as of sea urchins) especially as an adjunct of taxonomy - - - - indicating sudden understanding + + + + + the science of remedies or therapeutics + - - - - express uncertainty or hesitation + + + + the study of deliberate, culturally induced ignorance or doubt, typically to sell a product, influence opinion, or win favour, particularly through the publication of inaccurate or misleading scientific data (disinformation) - - - - traditional maritime greeting + + + + + the application of modern technology to agriculture + - - - - natural number + + + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + - - - - a small amount + + + + + science of plant nutrition and growth in relation to soil conditions - - - - from without/the outside + + + + + the study of the effects of toxic chemicals on biological organisms, especially at the population, community, ecosystem level - - - - cardinal number + + + + + ecology of deserts - - - - neopronoun + + + + + in science fiction, the study of aliens + + + in genetics, homology from horizontal gene transfer - - - - neopronoun + + + + + crystallography + + + - - - - neopronoun + + + + + branch of entomology that studies pests and beneficial insects of field crops, fruits, and vegetables - - - - neopronoun + + + + + the physiology of sensation and sense organs + - - - - indicating something that is far away from both the speaker and the listener - That is a determiner. - + + + + + the study of the comparative anatomy and physiology of humans; physical anthropology - - - - goodbye + + + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + - - - - expression of pain + + + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + - - - - und/oder + + + + + a physical examination + - - - - when something does not go your way + + + + + the art or "science" of dining - - when you are surprised + + + + + + branch of anatomy dealing with the arteries - - when you see something you are impressed by + + a description or illustration of arteries - - when you realize something profound + + a system of arteries - - - - you; person spoken to or written to - + + + + + the branch of zoology that deals with crustaceans + + + - - anyone, one; unspecified individual or group of individuals - + + + + + + Atlantic cod + + + fried fishcake of cod, onions and mashed potato - - - - oh my God + + + + + tedium, irksomeness, annoyance - - - - (relexive pronoun for the second person) that which belongs to you + + + + + rival gang member; the opposition - - - - neither of two persons or things + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + - - - - (linking a destination, subject of approach) + + + + + the science of climate with respect to its relevance to habitats and ecoregions - - - - (second-person singular possessive) belonging to thee + + + + + technology designed to deal with environmental concerns; an instance of this - - - - (third-person singular masculine personal possessive) belonging to him + + + + + the scientific discipline concerned with the application of geological knowledge to engineering problems - - - - over the top of; over + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + - - - - at a distance from + + + + of a mix of warmed or chilled alcohol, optionally including ingredient - - - - later on + + + + + a treatise on mushrooms and other fungi - - - - see you later + + + + + branch of meteorology that deals with precipitation (as of rain and snow) - - - - representing a brief resonant sound, as of a blow + + + + + the branch of meteorology that deals with atmospheric conditions and weather in the past - - - - among a group of two or more + + + + + + + to speak ill of, abuse, malign, disparage + + + to act crazily, aggressively, wildly + + + to do something very well - - - - (expression to persuade, garner attention) + + + + + the study of the ways in which people negotiate, contest, and reproduce cultural forms and social relations through language - - - - my (in colloquial dialectal use) + + + + + in Kantianism, practical ethics - - - - sailor’s cry in heaving and hauling + + + + + a field of creating architectural design principles for very densely populated and ecologically low-impact human habitats; a portmanteau of "architecture" and "ecology" + + + a city intended to be contained in a single structure - - - - do not resuscitate + + + + + a treatise on numbers, or statement bearing upon them - - number between 12 and 14 - article thirteen (13) of the Constitution of Louisiana + + + + + branch of medicine that specializes in the diagnosis and treatment of cancer + + + branch of zoology that deals with the crustaceans + + + + + + + + + + annual total value of only the goods produced and the services provided within a particular country + + + + + + + mineralogy + + + + + + + (in alternative medicine) diagnosis by examination of the iris of the eye + + + + + + + the branch of history or literature that deals with the lives of martyrs + + + histories of martyrs collectively + + + a catalog of Roman Catholic martyrs and saints arranged by the dates of their feasts + + + a list of martyrs + + + + + + + the branch of anthropology that deals with the belief in manitous + + + + + + + the study of gestures as a means of communication + + + + + + the scientific study of thermal springs + + + + + + addicted to drugs, especially heroin + + + + + + + brightening or iridescence appearing on silver or gold at the end of the cupelling or refining process + + + + + + + branch of dentistry that consists not only of treating tooth decay, but also of interrupting and preventing this type of damage to the tissues of the teeth + + + + + + + the part of medical science dealing with hernias + + + + + + + the science of the brain + + + + + + + the study of dogs + + + + + + + the study of dosages of drugs + + + + + + + the study of or knowledge concerning the exanthemata (widespread rashes that are usually accompanied by systemic symptoms such as fever, malaise and headache) + + + + + + + writing about fairies; the study of fairies or fairy lore + + + + + + + a form of martyrology that lists the feast days + + + + + + + neoorthodoxy especially as holding against rationalism that one's attempts to know God by one's own reasoning reach contradictory conclusions and must give way to a faith that awaits God's word + + + + + + + the art or science of caring for the stomach either medically or gastronomically + + + + + + + the science dealing with the life of past geologic periods as known from fossil remains + + + + + + + the mental and emotional states and processes characteristic of individuals when aggregated in such groups as audiences, crowds, mobs, and social movements + + + the scientific study of these phenomena + + + + + + + a reference to the provisions in many state constitutions which prevented state governors from running for a second consecutive term in office + + + + + + + refers to a controversial incident that emerged during the aftermath of the 2020 presidential election, a hotly contested election in which allies of President Donald Trump attempted an elaborate scheme to illegally overturn his election loss to Joe Biden + + + + + + + the study or investigation of miasmas + + + + + + + + the study of the nature and methodology of sociology + + + a sociological model, framework, or study which is universal in scope + + + + + + + the philosophical study of the nature and methods of theology, especially the analysis of religious language + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + representation by curiologic symbols + + + + + + + the field of study that deals with the geological interpretation of aerial or satellite photographs + + + + + + + a branch of geology that deals with the causes and processes of geological change + + + + + + + study of the ecology of plants + + + + + + + + + the branch of biology, especially of zoology, concerned with extant or recently living organisms, as opposed to fossil or extinct ones + + + + + + nervous system physiology + + + + + + + a conceptual framework for the science of psychology + + + + + + + the study of the human nose, especially as a means of judging character, intellectual capacity, etc. + + + a treatise on the human nose, especially as a means of judging character, intellectual capacity, etc. + + + + + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + + + + + + technology relating to manufacturing + + + + + + + the study of the methods, purpose, etc., of religious missions + + + + + + + the study of the interactions between members of a social group, or of interactions between social groups + + + + + + + the study of proverbs + + + proverbs collectively + + + + + + + the branch of theology that deals with ethics, the resolution of cases of conscience, etc. + + + theology or theological doctrines developed as inferences from moral grounds or reasons + + + + + + + a treatise on disorders of the sense of smell + + + + + + + the science of nothing, or of things having no real existence + + + + + + + the study and use of psychology as it applies to the legal system and people who come into contact with the legal system + + + + + + + the study of specters (ghosts, phantoms, or apparitions) + + + + + + + + + the study of the pulse + + + + + + + the dating of volcanic eruptions and other events by studying layers of tephra + + + + + + + the branch of entomology concerned with insects and other arthropods that are parasites or disease vectors affecting animals + + + + + + + trilogy + + + + + + + the doctrine, discussion, or study of the performing of miracles + + + + + + + the scientific study of smells or of the sense of smell + + + + + + + the study of fish diseases + + + + + + + a branch of plant pathology dealing with tree diseases + + + + + + + excision of the liver or of part of the liver + + + + + + + in the theology of John Hick: the theory or study of the status of human life between physical death and the final state + + + + + + + the application of the data and techniques of climatology to aviation meteorological problems + + + + + + + + the branch of science that deals with the hypothetical force called Od + + + + + + + dentistry + + + + + + + (obsolete) a treatise on the sense of smell and odors + + + the study of odors and the sense of smell + + + + + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + + + + + of intermediate size + + + + + + + in Jeremy Bentham's terminology: the branch of philosophy which deals with matter in respect of quality rather than quantity + + + + + + + the study of war, especially as an academic discipline + + + + + + + a treatise on sperm + + + the scientific study of sperm + + + + + + + the science of thermochrosy + + + + + + + the study and applications of weather and climate data to the reproduction, growth, and harvesting of forests + + + + + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + + + + + + the study of the atmosphere and weather using radar as the means of observation and measurement + + + + + + + psychology based on the study of individuals, as opposed to that of groups or societies + + + a modification of psychoanalysis developed by the Austrian psychologist Alfred Adler emphasizing feelings of inferiority and a desire for power as the primary motivating forces in human behavior + + + + + + + + rubbishy, second-rate, inferior + + + pertaining to heroin or the hard drug culture + + + + + + + the branch of medical science concerned with the lungs and respiratory system and their diseases + + + + + + + + the art or practice of calculation by means of the method of rods invented by John Napier + + + + + + + hagiology + + + + + + + the study of pterylosis, the arrangement of feathers in definite areas of growth + + + + + + + + + to give a name to something or someone + + + + + + + theology dealing with salvation especially as effected by Jesus Christ + + + + + + + a pair of related novels, plays, or movies + + + + + + + employees' initiative related to doing minimum amount of work on Mondays + + + + + + matumannga + + + + + + + + a style of clothing worn as athletic apparel but also suitable for casual, everyday wear + + + + + + + the branch of medical science concerned with diet and nutrition; dietetics + + + + + a treatise on diet and nutrition + + + + + + + a person who gives speeches or presentations intended to motivate or inspire an audience; a practitioner of or expert in motivational speaking + + + + + + + a person engaged in motivation research + + + + + + + + date on which someone or something was born + + + + + + + worship of heavenly bodies + + + + + + + the branch of medicine and science concerned with aging and its phenomena + + + the study of the diminution or decline of life, as in an individual animal or a species approaching extinction + + + + + + + (in a graphical user interface) an on-screen button or icon for navigating to a previous view + + + + + + + person who creates manga + + + + + + + children's dentistry + + + + + + + + + to participate in, include oneself + + + + + + + + speckled, spotty; full of particles of dust or extraneous matter + + + + + + + the integrated study of cells and tissues + + + + + + + a science or doctrine of the cross + + + + + + + equipment and programs that are used to process and communicate information + + + + + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + + + + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + + + + + being afraid + + + + + + + a treatise concerning seven languages + + + + + + + ריהוט רחוב + + + + + + + + + to eat breakfast + + + + + + + the scientific study of thermal waters + + + + + + + the science of trickery + + + + + + + that which is characterised by growth on waste ground + + + + + + + the technology of surfaces interacting in a relative motion, including friction, wear, lubrication and interfacial interactions between solids as well as between solids and liquids/gases + + + + + + + a type of network communication method where the communication is initiated by a server rather than a client + + + + + + + the study of the way speech can be analyzed into discrete units, or segments, that constitute the basis of the sound system + + + + + + + + + to liquate; smelt + + + to part by liquation + + + + + + be verifiable, actual, real; not false + + + + + + + back side, reverse side + + + + + + + + + + be correct, assess accurately + + + + + + to flatter, cajole + + + + + + of or relating to the present time + + + + + + + + + to increase mass by addition of fat and/or muscle + + + + + + + individual responsible for the supervision of the execution of plans and functional operation + + + + + + + tool consisting of a blade having a handle at each end; drawing knife + + + + + + + + + to be provided or filled with towns + + + + + + + + + to move or incline at an angle to that indicated by "zig" + + + + + + + + + to assign a postcode to + + + to mark with a postcode + + + + + + + + + to perform adrenalectomy on + + + + + + + + + of a woman, to continually criticize or nag one’s male partner + + + + + + + + + to perform hysterectomy on + + + + + + + + + to subject to nephrectomy + + + + + + to be troubled by desire to gain or keep something + + + + + + + + + to travel by jeep + + + + + + + + + to capacitate, make capable, endow with sufficient strength + + + + + + + + + to analyze a protein sample by subjecting it to particular reactions + + + + + + + the study of post-embryonic developmental changes + + + + + + + + + to deliver manually, by hand + + + + + + + + + to mark with a barcode + + + + + + + + + to tend to a bar, act as bartender + + + + + + + acyl radical or group derived from biotin + + + + + + + + + to boil an egg for a short amount of time so that the yolk is cooked but still soft + + + + + + + a plant (Brassica rapa subsp. pekinensis) of the mustard family, having an elongated head of overlapping, crinkled, broad-stalked leaves and eaten as a vegetable in eastern Asian cuisine + + + + + + that has received a particular upbringing + + + + + + + + + to travel or convey by trolley + + + + + + + + + to ride on a wakeboard + + + + + + + stereoisomer of amphetamine used to stimulate the central nervous system + + + + + + + + + to become exhausted; to tire + + + to put out of breath + + + defecate + + + + + + + collective of diverse businesses that supplies much of the world's food + + + + + + + the state or condition of being ominous + + + + + + + the state or condition of being egregious + + + + + + + a person who is mentally or morally sick + + + + + + coming into sight, coming forth + + + + + + pulverized with a grater + + + + + + deprived of air, prevented from breathing + + + + + + + something remembered, reminded of + + + + + + kept in reserve + + + + + + + act of rendering void, invalid, or ineffective + + + + + + + act of assurance + + + + + + + performance of work in exchange for wages + + + + + + + + + to transport or travel by helicopter + + + + + + + the quality of being dorky + + + + + + that gargles + + + + + + characterized by a lisp + + + + + + + + + to put a diaper on or change a diaper + + + to ornament with diaper designs + + + + + + + the branch of stratigraphy concerned with the age of strata on an absolute scale (i.e. in terms of years) + + + + + + + cinematographer + + + + + + + the study of the physical structure and components of metals, typically using microscopy + + + + + + + a list or bibliography (either printed or online) of electronic works or documents relating to a particular topic + + + + + + + radiological examination of the pharynx + + + + + + + the art or process of carving or engraving especially on gems + + + + + + on the day after tomorrow + + + + + + + sub-discipline of human geography and economic geography that deals with the spatial relationships and geographic trends within labor and political systems + + + + + + + the art of decorating wood or leather by burning a design with a heated metal point; pyrography + + + artefacts decorated using pokerwork + + + + + + + the description of the diseases of the ligaments + + + + + + + player occupying a central position in the middle of the half-back line + + + + + + supernatural + + + + + + + extinct elephant variety with ridged teeth + + + + + + + act to skip + + + + + + + determination of the direction from which radio waves are coming + + + + + + + instrument for measuring the plasticity of a substance + + + + + + + penpal; person with whom a long-distance friendship is maintained with letter-writing + + + + + + applicable to all of language’s varieties + + + + + + + agribusiness + + + + + + + apparatus for measuring the density of gases + + + + + + + bullock-carriage; buggy, cart + + + + + + of the nature of a dilemma + + + + + + producing or tending to distortion + + + + + + + condition in which there are only two suppliers of a commodity + + + + + + + cytokine that stimulates proliferation and differentiation of monocytes and macrophages + + + + + + + in cricket, player stationed behind the wicket + + + + + + + + mean-spirited + + + + + + + the preposterous, absurd, risible + + + + + + + + excessively hot, too hot + + + + + + containing a single cavity + + + + + + + + + to deceive or outmaneuver (a defending opponent) by a feint; fake + + + to deceive or outmaneuver a defender by a feint + + + + + + + + designating bottom part, section + + + + + + + a New Zealand evergreen tree, Metrosideros excelsa (family Myrtaceae) that produces a brilliant display of red (or occasionally orange, yellow or white) flowers + + + a New Zealand variety of the sweet potato + + + + + + + + + to declare or pronounce illegitimate + + + + + + + low-grade silver Turkish coins + + + + + + + (in Albania) king, monarch + + + + + + + + + to assign or give a code name to + + + + + + + riotous event, boisterous party + + + + + + + + + to move or travel at speed + + + + + + + church + + + + + + relating to the medical specialty of proctology + + + + + + + + + inner, inside + + + + + + + karpdiagramm + + + + + + + + + to dance the cancan + + + + + + + diamond of inferior water, yellowish in colour + + + + + + + + + to miscalculate a sum + + + + + + + + + to act the benefactor to + + + + + + + + + to refresh with food or drink + + + + + + designating a reliable or accurate firearm + + + bound to be successful or perform as expected + + + + + + + a brackish-water coastal swamp of tropical and subtropical areas that is usually dominated by shrubby halophytes and is partly inundated by tidal flow + + + + + + + + + to entertain a suspicion + + + + + + + + + to express disapproval by uttering the exclamation “tsk” + + + + + + + + + to infect (cell) with free viral nucleic acid + + + + to introduce foreign nucleic acids into a recipient eukaryotic cell, especially physically or chemically + + + + + + to lack certainty; to be unsure, dubious + + + + + + + + + to inflate insufficiently + + + + + + + + + to represent insufficiently + + + + + + + + + to free from binding or adhesive effect of glue + + + + + + + in arid environments, bands of angular gravel, grain-sorted and of a specific wavelength, running parallel to the contours + + + a pattern of alternate black and white stripes + + + + + + + + + to come forth + + + + + + designating examination of fundus of eye with optical instrument + + + + + + + + + to write graffiti on + + + + + + + + + to look after a house while the usual occupants are away + + + + + + + + + to reduce clotting power of blood by treating with heparin + + + + + + + + + to check for or remove lice + + + + + + + + + to cover again + + + + + + + + + to address in a stage-whisper + + + + + + + an approach developed by Clifford Geertz in the 1970s and 1980s that views anthropology as a hermeneutic practice whose method involves writing detailed (‘thick’) descriptions of how people interpret their experience of the world + + + + + + + + + to betray; to disparage behind someone’s back + + + + stab literally in the back, or betray + + + + + + + + + to confirm a boy in the Jewish faith at a bar mitzvah + + + + + + + + + to practice diplomacy + + + + + + the study of cultural symbols and how those symbols can be used to gain a better understanding of a particular society + + + + + + + a national policy of treating the whole world as a proper sphere for political influence + + + + + + + + + to visualize again + + + + + + + + + to polarize again + + + + + + + + + to restore national status to; to refill with national identity or character + + + to transfer (a privatized industry or property) back into state ownership or control + + + + + + a specialized focus in anthropology that studies the creation, use, and meaning of material culture for curation in a museum; studies of existing museum collections; and the study of museums as social institutions + + + + + + + an enclosure or building in which platypuses are kept, especially under conditions simulating those in which they live in the wild + + + + + + + + + to use or practise ventriloquism + + + to utter in the manner of a ventriloquist + + + + + + partially refined cane sugar that has been washed and dried, is off-white, yellowish, or grayish in color, and is used in industry and food processing + + + + + + + a representation of the bark of a dog + + + + + + + synthetic chemical element with symbol Mc and atomic number 115 + + + + + + composed of flocculi + + + + + + + + a circle of people, as in a communal gathering or dance + + + + + + of, relating to, or affecting the sacrum and ilium and their articulation or associated ligaments + + + + + + of, relating to, or resembling the mollusk family Solenidae + + + + + + + + the action or process of diminishing (transitive and intransitive); diminution, lessening, decrease, abatement + + + + + + + doctor + + + + + + representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + + + + + + a bump; a blow. Also: a brief resonant sound, such as might accompany this + + + + + an act of sexual intercourse + + + + + + + + artificial embankment; dam, dyke, causeway + + + embanked quay along the shore of British concession settlements in China + + + + + + + + initiation of employment + + + initiate employment + + + + + + + one who plays the kazoo + + + + + + + + + + + + + + a Levantine spice mixture made from oregano, basil, thyme, and savory, sesame seeds, and dried sumac + + + + + + + permanent or absolute location or position + + + + + + of or relating to the moth family Pyralidae + + + + + + + a member of the phylum Mollusca; a mollusk + + + + + + some indeterminate amount + + + + + + connected, affiliated + + + + + + + opening allowing the passage of air out of or into a confined space + + + + + + + + + to improvise with a kludge or kludges + + + + + + + a snake of the family Pythonidae; a python + + + + + + (expression of disapproval, dismay) + + + + + + second-rate, inferior + + + + + + + + a person who makes a nuisance call + + + + + + tolerate, put up with, the act of tolerating + + + + + + + make organized, orderly arrangment, having a systematic, efficient (maybe unified) structure + + + + + + + process or act of attaching, joining, linking, including (in a group) + + + + + + + act of looking for something + + + + + + + creation + + + comprise + + + + + + + a window-frame or lattice, often fitted with cloth or paper as a substitute for crystal or glass; a window + + + + + + + a part of a naval task force + + + task force: a temporary grouping for the purpose of accomplishing a definite objective + + + + + + sad, mournful, or wistful + + + + + + + a space within a winery, brewery, or distillery where visitors can sample the establishment's products + + + + + + that keeps time + + + + + + a strategy practised most commonly in primary education, but used also in secondary schools, in which learning takes place through dialogue between teacher and pupils and between pupils themselves + + + + + + of, relating to, or characterized by dialogue + + + + + + + + a miniature nocturne + + + + + + + bring with, have + + + + + + of or characteristic of a professional author + + + consciously literary + + + + + + + correspondence between form and meaning + + + + + + + varna prožnost + + + + + + telecommunication modality + + + + + + + + + to assign or attribute gender to + + + + + + + + + to deadlock, to form an impasse + + + + + + + + + to ride a mountain bike + + + + + + + act or process of obtaining, drawing (out) + + + act of killing + + + act or process of unfairly directing a negative emotion towards someone/something + + + + + + + edible leaves of dasheen or an amaranth variety + + + + + + + shared power and authority vested among colleagues + + + colleagueship; the relation between colleagues + + + the participation of bishops in the government of the Roman Catholic Church in collaboration with the pope + + + + + + + outside toilet; privy, outhouse + + + + + + + act or process of acquiring, hiring, undertaking + + + act or process of battling + + + + + + thin, lean, skinny + + + weak, feeble, sickly + + + + + + the other + + + + + + + the fear of snakes + + + + + + + foolish, simple person + + + + + + + young woman or girl + + + + + + + the processes and methods used to put together different components or parts to create a finished product or system + + + + + + + + a topology on a set that is derived from a bornology + + + + + + milk-drinking + + + drinking milk of another species + + + + + + + + sweet potato + + + + + + + + + climbing a route for the first time with no prior information + + + + + + sustain + + + keep up: maintain one's position, maintaining one's position (relatively) + + + + + + + the branch of dentistry focusing on gums and supporting structures + + + + + + + + branch of geology that deals with the succession and significance of past life + + + + + + + the use of biological systems, like microorganisms or enzymes, to convert organic materials into different products or energy sources + + + + + + biochemistry + + + biochemical + + + + + + + branch of ecology concerned especially with the structure, composition, and interrelationships of plant communities + + + + + + + + vacation, taking a vacation, break (from something) + + + + + + without excusing oneself or saying one is sorry + + + + + + + an electrophoretic strip (as of starch gel) or a representation of it exhibiting the pattern of separated enzymes and especially isoenzymes after electrophoresis + + + + + + + an instrument for measuring the degree of fermentation of a fermenting liquor + + + + + + + branch of astrology formerly concerned with the prediction of events in inanimate nature and being in part legitimate astronomical science + + + + + + to come down, lower oneself, or arrive, lowering + + + + + + to have (unpleasant) sex with, maybe metaphorically + + + + + + + quit + + + + + + sign up: enroll, enter + + + + + + + connect into a network, metaphorical or otherwise + + + + + + select a portion of a larger whole + + + + + + + a branch of bioclimatology that deals with effects of climate upon man + + + + + + + a cone whose section by a plane through the axis has an obtuse angle at the vertex + + + + + + + come even with, to catch up + + + cause something to become entangled + + + + + + + begin, start, initiate + + + + + + + the resemblance between different members of a single series of structures (such as vertebrae) in an organism + + + + + + + field of clinical and basic medical sciences that involves the study of the effects of radiation on living tissue (including ionizing and non-ionizing radiation), in particular health effects of radiation + + + + + + + + an approach to the study and explanation of psychological phenomena that emphasizes philosophy, logic, and deductive reason as sources of insight into the principles that underlie the mind and that make experience possible + + + + + + + + plant pathology + + + + + + + + + the transmission of data between two or more points without the use of physical wires or cables + + + + + + + cause to lose prestige + + + + + + + act/process of causing to go down the throat + + + + + + act/process of arriving on the scene in a particular state, entering ranking, functioning in a certain manner + + + + + + being overly concerned or excited by + + + + + + + the process of plying with wine + + + + + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + + + + + that learns or has the ability to learn + + + that is engaged in a course of study + + + having to do with learning + + + + + + unintentional discovery + + + + + + + lend aid, credence to + + + + + + + carry on flirtations, affairs insincerely, esp with male subject + + + + + + cause to be in motion, summon to arms, be in motion + + + + + + + cause to be humble + + + + + + + act of extending across space or time + + + + to extend across in space or time + + + + + + + reorganize + + + + + + + expect + + + + + + + technology (now especially computer technology) used to determine or verify the identity of a person or thing + + + + + + + a relationship where one geometric entity is embedded within another, meaning the point set of one entity is a subset of the point set of the other + + + + + + + the study and application of how to handle, process, and utilize materials in powder or particulate form + + + + + + + a person who studies or practices ethnomethodology + + + + + + + + + enter, contribute to discussion + + + + + + having or related to a yolk + + + + + + + the study of geological features at a microscopic scale + + + + + + + an apparatus in which fluidization is carried out + + + + + + a combustion technology used to burn solid fuels + + + + + + + systems involving two sets of drilling equipment working in tandem to create a borehole + + + systems that inspect boreholes using two cameras + + + + + + + + + introduce a phosphate group into an organic compound + + + + + + + technology that utilizes sensors to detect infrared radiation + + + + + + + a catalogue of saints, or a collection of saints' lives + + + + + + + + removing of data + + + + + + + + + medical trial, consumer trial, or similar + + + + + + + + + visit briefly + + + + + + + act or process of producing a new master recording to improve quality + + + + + + Being soaked for a long time + + + + + + + an organism dwelling in sandy environments + + + + + + + The act of shortened or condensed especially by the omission of words or passages or reduction in scope. + + + + + + + The act of linking together. + + + + + + + act or process of taking back + + + + + + + + + move towards + + + + + + somewhat or approximately oblong + + + + + + + the tools and systems designed to manage knowledge-intensive activities and the knowledge generated by them, focusing on the process of transforming data and information into actionable knowledge + + + + + + + the science, study, or theory of the sphere + + + + + + + the study of mycorrhizal fungi + + + + + + + the study of Basidiomycota (club fungi, mushrooms, rusts, smuts) + + + + + + + the study of airborne fungal spores + + + + + + + the study of plants that live in or near water, encompassing their ecology, physiology, and interactions with their aquatic environment + + + + + + + + + ship out commodities, again + + + + + + + the act of running very fast + + + + + + + similar to a chin-up + + + + + + + + + to talk repeatedly or continuously about something —usually used with about + + + + + + + + + make someone or something more attractive + + + + + + + any of a class of synthetic antibacterial drugs that are derivatives of hydroxylated quinolines and inhibit the replication of bacterial DNA + + + + + + + The act of renting or leasing + + + + + + + The act of reaching the bottom + + + + + + of or relating to zoogeography + + + + + + + + the branch of virology that deals with the arboviruses + + + + + + + obstruct, hinder with painful constriction, painfully constricting + + + + + + inflate, swelling + + + + + + + inflate, swelling + + + + + + + a sugar alcohol (polyol) derived from xylose by reduction of the carbonyl group + + + + + + remembered, kept in memory + + + + + + + a rock that is formed by the accumulation of fragments of volcanic rock scattered by a volcanic explosion + + + + + + being covered with water, overwhelmed, inundated + + + + + + + + + avoid + + + + + + + The act of obstructing a passage + + + + + + + do perfectly + + + + + + + + + become immobile + + + + + + + + + pour + + + + + + have no symptoms + + + + + + not showing signs of trauma + + + + + + + + + cross-correlation of something (a signal?) with itself + + + + + + + The act of stabbing literally in the back, or betraying + + + + + + + + + bring in runs by hitting a baseball + + + + + + the starting-point or control state of an entity, which is used for comparison + + + + + + + obligation + + + + + + + + + natural disaster: severe blowing snow storm + + + + + + + marsh fern: a shield fern (Dryopteris thelypteris) of the north temperate zone that has pinnatifid fronds with pinnae of uniform size + + + + + + + + + dance a breakdance + + + + + + + The act of dancing a breakdance + + + + + + broken, with 'ass' intensifier + + + not having any money, with 'ass' intensifier + + + + + + placed back to back + + + + + + + term designating a suburb or a small residential area on the outskirts of a city + + + + + + + act of providing help, adapting, or making adjustments to meet someone’s needs + + + + + + + act of enforcing more strictly + + + + + + + develop in conjuction with another developer or project + + + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + + + co-host (as a tv show) + + + + + + + + + shape by forcing through a die, press or thrust out with another + + + + + + + + + sudden change of government, takeover + + + + + + + develop into a new species + + + + + + internal: function as the corner part of a larger whole + + + + + + + eliminate + + + + + + like a flat layer of bone + + + + + + + process of modification of the molecular structure (of a protein or other biological macromolecule) + + + + + + + + + remove gut or substance + + + + + + + the ability to deny something especially on the basis of being officially uninformed + + + + + + + + + remove paraffin from + + + + + + + + to measure up; achieve the standard of performance necessary for success + + + + + + + + + to drain; to allow water to exit + + + + + + calculate percentages of blood cells + + + constituting or contributing to making a distinction between entities + + + + + + + framecel + + + + + + + + + decry, express low opinion of + + + + + + + + + contaminate the source and the destination simultaneously + + + + + + + + + scale down + + + + + + + + + transfer radio from the source to an alternate sight + + + + + + + dig up + + + + + + + + + remove + + + + + + + to become pale, weaken, especially with lack of light + + + + + + + cause to fall down + + + + + + + + + fine needle aspiration - suck out fluid with a fine needle + + + + + + + the process of stationing troops + + + + + + + + + to cover with or as if with a glove + + + + + + + + + become/cover with glacier + + + + + + + + + + + + + + + + + to enact revenge + + + + + + + act of tagging along for a ride with a stranger, or metaphorical extension + + + + + + + + + breed together with genetic kin + + + generate within, instill + + + + + + Being placed at intervals + + + + + + + a flavonoid, the disaccharide derivative of quercitin, containing glucose and rhamnose + + + + + + + + + rise + + + + + + act of installation or establishment + + + more explicit horizontal position + + + + + + + + + (try to) make learn + + + + + + + + + Fight primarily with one's feet, often as a form of exercise. + + + + + + + + + lose social status, be humiliated + + + + + + + + + sport in which one jumps as far as possible across a sand pit + + + + + + + reflect, mimic, cast an image back + + + + + + existing along the (vertical) center line of the body + + + + + + + + + post to an online journal + + + + + + + + + addition of a methyl group to an atom or group + + + + + + + The act of causing dissolution or destruction of cells by lysins + + + + + + begin, start + + + + + + crowd together too much + + + + + + + + + fly beyond or faster than another + + + + + + inhibited or decreased bone marrow activity, resulting in fewer red blood cells + + + + + + + + + depict as being more than is actual + + + + + + + (cause to) consume too much narcotic, consuming too much drugs + + + + + + + coat to protect from corrosion + + + + + + + The act of engaging in or spreading gossip + + + + + + + + + dream + + + + + + not giving a response + + + + + + not inclined toward feeling pain easily + + + + + + of an ethnicity not featuring 'white' skin + + + + + + + + stop bothering + + + + + + that envies + + + + + + + + + to go on a pilgrimage + + + + + + + + + reach a state of little or no change + + + + + + + surgical removal of one or more parathyroid glands + + + + + + absorb or draw off liquid + + + + + + remove + + + + + + to lead with the help of a pony or another vehicle + + + + + + orientation: the intrinsic top of the object points downward in some framework + + + + + + Use uppercase lettering + + + + + + not obscured, allowing a clear view + + + + + + remove electrical ground connection (or metaphorical extension) + + + + + + unsecure/release a boat from the dock + + + + + + provide money + + + + + + fail to provide enough staff support + + + + + + to cause to become quiet + + + + + + + + of the nature of or resembling slag + + + + + + register officially in advance + + + + + + act of declaration or prediction under or as under divine or paranormal guidance + + + + + + surgical removal of the rectum and part or all of the colon + + + + + + act or process of sequencing DNA using chemiluminescent enzymatic reactions + + + + + + constituted again or anew + + + + + + the act or process of reassigning a role or classification + + + + + + the act or result of restoring a connection + + + + + + implant again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + + + + + use of data from motion sensors, especially wheel rotations, to estimate a vehicle’s change in position over time + + + + + + able to be released + + + + + + to take place or occur again + + + + + + supported above and not below; suspended + + + + + + occur, take place again, occur again + + + + + + unfading (exempt from fading/decay) + + + + + + stalinize again + + + + + + move backwards, rollingly + + + + + + evasive or avoiding behavior + + + + + + generally garbage (bad) + + + unskilled at + + + very unbeneficial, unhealthy + + + + + + schmooze, + + + + + + act of cutting with scissors + + + act of moving back and forth, like scissors + + + + + + render into pieces + + + + + + search for, to completion + + + + + + + act of defeating soundly + + + + + + sleep away: consume a time period while asleep + + + + + + act or process of inserting without interruption + + + + + + describe roughly + + + + + + act of spreading out or apart + + + + + + The act of scattering seed for growing + + + + + + to reclone part of a previously-cloned DNA segment into a new vector + + + + + + act or process of fully defrosting + + + + + + to strike or slap against (something) with a loud, heavy impact + + + + + + act or process of using the toilet + + + + + + to lie or turn across, contradict, or run counter to + + + + + + act or process of rising above or going beyond the limits of + + + + + + having no page numbers + + + + + + + number between 41 and 43 + + + + + + wonderful + + + something to say when you have nothing to say + + + song + + + longest word + + + + + + the number 9 + + + + + + + + + to evaluate again + + + + + + person spoken to or written to + You, in the red shirt: what's your name? + + + people spoken or written to + All 20 of you forgot to do your homework. + + + anyone, one; unspecified individual or group of individuals + + + + + + + + female person or animal previously mentioned or implied + + + person whose gender is unknown or irrelevant + + + + + + + + indicates the composition of a given collective or quantitative noun + a group of students + + + indicates an ancestral source or origin of descent + + + links entities which are related by a form of belonging or pertinence from one to the other + + + denotes quantity + + + + + + located within + + + moving into + + + expressed using a particular language (natural or artificial), or some other formal representation + + + + + + enabling + + + + + + in a relative position on the other side of a boundary + + + + + + Any person; anybody. + Almost anyone can change a light bulb. + + + + + + during the same time as + + + + + + Each of the two; one and the other; referring to two individuals or items. + Both (the/my) children are such dolls. + Which one do you need? ―I need both of them. + + + + + + Not one of two; not either; not one or the other. + Neither definition seems correct. + + + + + + sufficient + + + + + + an uncertain or unspecified thing; one thing + + + + + + moving to the top of + + + + + + in a contrary direction to + + + in physical contact with + + + in physical opposition to, or in collision with + + + in opposition to + + + + + + unknown or unspecified person + + + + + + + denoting approval + + + + + + + + meal consumed at start of day + + + + + + + + + add force to the ends of a long structure in a way that would stretch it + + + + + + On board of; onto or into a ship, boat, train, plane. + We all went aboard the ship. + + + + + + In addition, in addition to + + + + + + with a feeling of adventure + + + + + + get rid of, eliminate, eliminating/eliminated + + + + + + + + + look at, investigate + + + + to examine using some kind of scoping tool + + + + + + expression of surprise + + + + + + expressing unbelief + + + + + + express mild disapproval + + + + + + No. + + + + + + in a darkly consequential manner + + + + + + deep purple color + + + desirable or preferred + + + + + + + + + face, pave with brick + + + + + + + + + to take on the role of a guest + + + + to host someone + + + + + + + trousers often made from denim or dungaree cloth + + + + + + + + + prepare, fix again + + + + + + + study of ecological processes in agriculture + + + + + + + viral disease + + + + + + branch of medicine that deals with the causes, prevention, and treatment of obesity + + + + + + + gas produced in landfills or by anaerobic digestion + + + + + + study of biological data and sequences + + + + + + + establishment serving coffee + + + + + + + + + to treat as property which can be traded + + + + + + + medical device + + + + + + + vehicle subsystem + + + + + + + other item of a pair + + + + + + relating to electrodynamics + + + + + + related to the epicardium + + + + + + + planet not in the solar system + + + + + + + + currency area within the European Union + + + + + + + currency area within the European Union + + + + + + + + someone who works with fish + + + + + + + type of circuit board + + + + + + fundamental + + + + + + living in lakes or rivers + + + + + + + + + determine genotype + + + + + + + person working in geoscience + + + + + + described using Earth coordinates + + + + + + branch of civil engineering + + + + + + + previously agricultural region under development + + + + + + + arm-powered land vehicle + + + + + + + deeply emotional song + + + + + + pertaining to liver or related organs + + + + + + + chemical compound active in immune response + + + + + + inflexible + + + + + + + + + collection of biological life stages + + + + + + + academic degree + + + + + + relating to a magnetosphere + + + + + + + study of malaria + + + + + + + person who does mariculture + + + + + + electronic-mechanical + + + + + + + person who works in metrology + + + + + + relating to microbiology + + + + + + chemistry with tiny samples + + + + + + pertaining to mitochondria + + + + + + + a panel discussion with only men on stage + I have a question for the manel. + + + + + + + + + speak at length + + + + + + + vertical hole in a glacier + + + + + + multi-chained (for proteins) + + + + + + + person who studies museums + + + + + + caused by or related to mycobacteria + + + + + + + type of blood disease + + + + + + + optical device for nano-scale imaging + + + fictional device + + + + + + relating to neurosurgery + + + + + + + + + apply nuance to + + + + + + + type of mineral + + + + + + pertaining to an oilfield + + + + + + part of a vehicle + + + + on a vessel/vehicle + + + in support of, going along with + + + + + + application of orthopedic appliances + + + + + + pertaining to otology + + + + + + pertaining to care for outpatients + + + + + + + + + serve the underserved + + + + + + + lightweight nonrigid aircraft + + + one who rides a paraglider + + + + + + + scientist practicing parasitology + + + scientist who studies parasites and their biology and pathology + + + + + + pertaining to parasitology + + + + + + participates or willing to do so + + + + + + relating to the oil industry + + + + + + + scientific description of rocks + + + + + + + vibrational quasiparticle + + + + + + involving photons + + + + + + + state of being printable + + + + + + in base 5 + + + + + + + + + connect again + + + + + + + one who studies sediments + + + + + + pertaining to social and economic issues + + + + + + + process of spatializing + + + + + + + branch of medical science dealing with the mouth and its disorders + + + + + + + process of presenting a story + + + social and cultural activity of sharing stories, often with improvisation, theatrics, or embellishment + + + + + + building and using supercomputers + + + + + + + televised fund-raising event + + + + + + + software package which automatically renders advertisements in order to generate revenue for its author + + + + + + + + + twenty-four hours a day and seven days a week; continuously + + + + + + + three-hundredth anniversary; tercentenary + + + + + + study of ultrasound + + + + + + in genetics and biochemistry, determining the structure of an unbranched biopolymer + + + cause to be in a specific order + + + discover the order of constituents + + + + + + the whole quantity or amount + + + everything + + + everyone + + + the only thing (used for emphasis) + + + + + + + mark with a barcode + + + + + + + study of oscillations in stars + + + + + + + + of noble lineage + + + + + + + device used to widen something + + + + + + + snapshot of the screen of a computer or other electronic device + + + + + + + + + grill + + + + + + craft of making corsets + + + + + + + type of wooden boat + + + + + + + type of aphasia + + + + + + + application for mobile devices + + + + + + study of chemical elements and molecules in outer space + + + + + + + person who studies books or writings + + + + + + + the history and science of books as physical objects : bibliography + + + study of the Bible and related literature + + + + + + + + canopy over a church altar + + + liturgical container + + + + + + + grilled sandwich + + + + + + action to deny access to an outlet for opinions + + + + + + + organism that consumes detritus + + + + + + + ecological approach to feminism + + + + + + + region near a rotating black hole + + + + + + + influential person who uses their strong presence and activity in social media and networks to influence particular audiences in their buying decisions (influencer marketing) + + + + + + + profession + + + + + + reddish-brown color + + + + + + + science of interactions between geography and plant life + + + + + + + + + type of enzyme + + + + + + + type of house + + + + + + + former term for ecology + + + + + + + French pastry + + + + + + + + early + + + + + + way to cook pasta + + + + + + competition type in artistic and rhythmic gymnastics + + + + + + in a way that provides no answer + + + + + + amazingly (in an astounding manner) + + + + + + in a blushless manner + + + + + + aggressively/painfully (so as to cause bruising) + + + + + + in a changeless manner + + + + + + without color (in a colorless manner) + + + + + + in a consuming manner + + + + + + Indicates enthusiastic agreement + + + + + + clamantly/markedly (in the manner of a crying evil) + + + + + + hurtfully + + + + + + with argumentation + + + + + + sex position + + + + + + in a dreamless manner + + + + + + without conveying any feelings/thoughts (in an unemotional manner) + + + + + + in a fadeless manner + + + + + + in a gormless manner + + + + + + In a Gothic way. + + + + + + artfully/deceitfully/treacherously (in a guileful manner) + + + + + + in a way that makes a thing able to catch on fire + + + + + + so as to inspire/animate + + + + + + without causing breakage + + + + + + In a irreprovable manner; irreproachably. + + + + + + relative direction + + + + + + in a luckless manner + + + + + + anonymously, without a name + + + + + + every so often + + + + + + In an oracular manner. + + + + + + this way + + + + + + in an excessively loud manner + + + + + + done in a fragmented fashion + + + + + + professional work undertaken voluntarily and without payment + + + + + + legal term + + + + + + In a pronominal manner; as a pronoun. + nouns used pronominally + + + + + + In a proportionable manner; proportionately. + + + + + + arrangement of items front to back; order that allows only one entity to pass through a point at a time + + + + + + in a sinless manner + + + + + + through slats + + + + + + with slowness and low energy + + + + + + a version of "so fucking" that is used to avoid cursing + + + + + + in a spiffy manner + + + + + + in a stainless manner + + + + + + in a way that causes extreme fear + + + + + + at the present time + + + + + + in an unconstrained manner; without constraint + + + + + + + a fire in a garbage dumpster + + + a generally messed up situation + + + slang referring to something so bad it resembles burning garbage + + + + + + counterclockwise + + + + + + without using wires, such as by means of radio waves + + + + + + + type of inexpensive laptop computer + + + + + + + organism capable of growing and reproducing in the cold + + + + + + + collection of galaxy groups and clusters + + + + + + + + + to provide a pattern for + + + + + + + times a web page is accessed + + + + + + + chemical compound + + + + + + + protein + + + + + + + RNA molecule that is capable of performing specific biochemical reactions + + + + + + + modified and decorated jacket worn in biker, metal and punk subcultures + + + + + + + activity that arranges items or activities in order of importance or time-sensitivity relative to each other + + + + + + + set of arrengements around academic tenure + + + + + + firecracker and similar itself + + + + + + quaternary ammonium cation + + + + + + + weaken, not quantifiable, weaken from below + + + surgically seperate from underlying structure + + + + + + study of seasonal change + + + + + + + transition from full glacial conditions during ice ages, to warm interglacials + + + + + + + stream that runs dry in summer + + + + + + + + + to devest of deific condition; to ungod + + + + + + + + + to make lady-like + + + + + + + + + to render impure + + + + + + + + + (of toxic chemical) to become more concentrate in organisms higher up in food chain + + + + + + + + + to accept again + + + + + + + + + to turn into trash, render trashy + + + + + + + + + to make compact + + + + + + + + + to clothe + + + + + + + The act of bringing back into existence or use + + + + + + + horse breed + + + + + + + any parasitic worm which lives in lungs + + + + + + Research strategy that crosses many disciplinary boundaries + + + + + + + type of absorption + + + + + + quality of preferring concepts or facts one wishes to be true, rather than concepts or facts known to be true + + + + + + + Any process that results in a change in state or activity of an organism (in terms of movement, secretion, enzyme production, gene expression, etc.) as a result of detection of, or exposure to, a period of light or dark of a given length, measured re + + + + + + + chemical reaction + + + + + + + incorrect attribution; when a quotation or work is accidentally, traditionally, or based on bad information attributed to the wrong person or group + + + + + + + + tumor that produces too much insulin + + + + + + study of the biochemical and physiologic effects of drugs + + + + + + + class of enzymes + + + + + + + biophysicogeochemical process + + + + + + + area controlled by a single winery + + + + + + + salt or ester of methacrylic acid + + + + + + + particle between 0.1 and 100 µm in size + + + + + + branch of chemistry + + + + + + + type of kidney cell + + + + + + + chemical compound belonging to a series of compounds differing from each other by a repeating unit + + + + + + study of cells and tissues using chemical staining techniques + + + + + + + dimer with two different components + + + + + + + any loss of nerve supply regardless of the cause + + + + to deprive an organ of attached nerves + + + + + + + A double-membrane-bounded compartment that engulfs endogenous cellular material as well as invading microorganisms to target them to the lytic vacuole/lysosome for degradation as part of macroautophagy. + + + + + + + program that simulates conversation + + + + + + + person elected president who has yet to take office + + + + + + + coastal wetlands + + + + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + + + + + + marked by expansion or widening + + + + + + reduction of human social interaction in an effort to prevent the spread of infectious disease + + + + + + + name for a person from or resident in a place + + + + + + + + + + neopronoun + + + + + + + + neopronoun + + + + + + + colloquial term for giving financial support to a company or country which faces serious financial difficulty + + + + + + + + + mislead someone into doubting reality + + + + + + + residual water from cooking legumes, used in recipes to substitute egg whites + + + + + + + traditional outdoor game + + + + + + + vehicle typically styled after pickup truck bodies, modified or purposely built with extremely large wheels and suspension + + + + + + + + + + to commit oneself; to have recourse to any sort of action + + + + + + transgender + + + transsexual + + + + + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + + + + + an ancient Spanish coint + + + + + + theory of multidimensional oppression + + + + + + + + + to compress in a zigzagged series of folds, like an accordion + + + + + + a state of not engaging in relationships or marriages + + + + + + involving or relating to a connection between a person and someone they do not know personally, for example a famous person or a character in a book + + + + + + + gender identity where a person identifies as only partly female + + + + + + + + golf + + + act of removal, an end + + + act of mentioning, often in an offhand manner + + + spend money + + + + + + + + + new election, when regular election failed + + + process where an incumbent wins election again + + + + + + Across or over in a slanting or diagonal direction. + + + + + + On the side of; nearest or adjacent to; next to. + + + + + + Regarding; concerning. + + + + + + out of, from + + + + + + until + + + + + + Although; despite the fact that; even though. + Notwithstanding I was provoked, I ought not to have reacted so violently. + + + + + + Only if (the stipulation that follows is true). + You can go to the party provided you finish all your homework first. + + + + + + + Whatever person or persons: emphasised or elaborated form of whoever. + Whosoever partakes of this elixir shall have eternal life. + + + + + + Used for introducing the result of a fact that has just been stated; thence + The work is slow and dangerous, whence the high costs. + I scored more than you in the exam, whence we can conclude that I am better at the subject than you are. + + + + + + Various people or things; several. + + + + + + Used to indicate that a magic trick or other illusion has been performed. + + + + + + Used as a command to bring soldiers to the attention position. + + + + + + interjection used to express contempt or disapproval + + + + + + expression of regret/sorrow + + + + + + Goodbye, an interjection said upon parting. + + + + + + An exclamation used to express pleasant or unpleasant mild surprise, indignation, or impatience. + Why, that’s ridiculous! + Why, how kind of you! + Why yes, that’s true. + + + + + + A traditional Jewish greeting or farewell. + + + + + + having the maiden name + + + + + + + moral snob + + + + + + compulsive consumption of large quantity of negative online news + + + + + + + form of spin in which green PR or green marketing is deceptively used to promote the perception that an organization's products, aims or policies are environmentally friendly + + + + + + branch of machine learning + + + + + + + biochemical technique + + + act or process of staining with an antibody + + + + + + + immunoassay method used for immunoreactive substances of tagging with labeled antibodies + + + + + + + type of tectonic plate + + + + + + + device used to keep a bed warm + + + + + + before + + + + + + + name considered fitting to a person + + + + + + + + + + to not forget, or to remember again + + + + + + + policy constraining travel + + + + + + + study of past climate based on tree ring data + + + particular climate reconstruction from tree rings + + + + + + theory, especially during the 1970s, of imminent cooling of the Earth + + + + + + assets that have suffered from unanticipated or premature write-downs, devaluations, or conversion to liabilities + + + + + + + Graph showing a large spike in recent centuries' temperatures resembling a hockey stick to demonstrate anthropogenic climate change + + + + + + + legal proceedings meant to address climate change through judicial proceedings + + + + + + type of geoengineering + + + medical procedure + + + + + + core sample of ice, typically removed from a glacier or ice sheet + + + + + + + communications field focused on bringing climate change information to a public + + + + + + + folk music from around the world + + + + + + + game in a tournament just before the final game + + + + + + + social annotation of an action as being in line with ethical norms + + + + + + + pathology + + + + + + + forest dominated by plants that shed their leaves in autumn + + + + + + + a song that has the same name as the album it is released on + + + a promoted song on a music release. common in KPOP + + + + + + combining agriculture with photovoltaics + + + + + + + Fictional device + Landing party members always carried an equipment pack containing a tricorder and other sensor equipment, enabling them to monitor atmospheric conditions on alien worlds. + As with later tricorders, this device’s standard scan set covered meteorological, geographical, and biological data, which was recorded on a pair of memory modules situated in its upper section, which also incorporated a touch display screen. + + + + + + an incorrect combination of a substituted word (with a similar sound to another word) with another recently coined word + + + + + + + practice of publicly shaming, rejecting, and ceasing to provide support to people perceived as problematic + + + + + + vocative particle + + + + + + nazari + + + + + + the practice of abstaining from the use of animal products + + + + + + someone with whom the speaker has a measure of emotional closeness and respect + + + + + + + symbiosis between vascular plant and fungus + + + + + + + alteration of previously established facts in the continuity of a fictional work + + + + + + + convention to represent a specific type of digital information in a specific type of file + + + + + + + A type of South American rodent + + + + + + + type of arterial thoroughfare between classification of road and street + + + + + + a part of a rock or group of rocks that differs from the whole formation (as in composition, age, or fossil content) + + + general appearance + + + an appearance and expression of the face characteristic of a particular condition especially when abnormal + + + + + + + first meeting of two cultures previously unaware of one another + + + + + + + person who makes species-based discriminations + It wasn't as if he was speciesist, he told himself. But the Watch was a job for men. + + + + + + + any geologic material which is not native to the immediate locale but has been transported from elsewhere + + + geologic material transported from one locale to another by glacial-ice specifically, unqualified as the most common type of erratic + + + + + + + + geologic material transported from one locale to another by glacial-ice + + + + + + + + optical machine-readable representation of data + + + + + + + automated cooking appliance + + + + + + + + having features of a human + + + + + + + fictional space combat weapon + + + + + + + two simultaneous pandemics, such as flu and COVID-19 + + + + + + cisgender and heterosexual + + + + + + vaccine + + + vaccination + + + + + + + + to be aware of some information + + + + + + of or relating to intersexuality + + + exhibiting intersexuality + + + + + + a white crystalline irritant compound C₈H₆Cl₂O₃ used especially as a weed killer + + + + + + + feces + + + act of defecating + + + + + + + able to find in a Google search + + + + + + + + + + to mention or reply to someone on social media + + + + + + of or pertaining to detectives + + + of or pertaining to detection + + + + + + interjection of happiness + + + + + + + any longhorn beetle of the family Cerambycidae + + + + + + + + + to move to an earlier date + + + to place in front of + + + + + + I swear! + + + + + + pertaining to act of eating a meal + + + + + + + a tall tree (Anisoptera thurifera) of the family Dipterocarpaceae + + + + + + + a European freshwater fish in the family Percidae, closely related to the perch, Sander lucioperca + + + + + + + + + indicating a non-occurring action or state that was conditional on another non-occurring event in the past + + + + + + + person who "bends" expected gender roles + + + + + + + video game that is played in professional competitions + + + + + + + + + + + + + + which person is + + + + + + + any plant in the genus Hedeoma + + + + + + + any virus of the family Baculoviridae + + + + + + + + any virus of the family Baculoviridae + + + + + + + + fictional character with supernatural or superhuman powers dedicated to helping the public + + + + + + + + (Internet slang) very cool + + + + + + + any beetle of the clade Lamiinae + + + + + + + any bacteria of the clade Alphaproteobacteria + + + + + + + any frog in the family Pipidae + + + + + + + small, benign skin growth that may have a stalk (peduncle); also called skin tag + + + + + + + basted with soy sauce and rice wine and grilled over an open fire + Home Chef provides classic dinner recipes like pork tenderloin, baked chicken, pasta dishes, and teriyaki steak. + Buffalo wings, said to have been invented in a bar in Buffalo, New York, in 1964, are among the spiciest preparations (other popular variations include teriyaki wings and honey garlic wings). + + + + + + + type of fine Kashmiri wool of a Himalayan ibex + + + + + + + + + machine to mow lawns + + + + + + + + mellow, agreeable + + + + + + incest + + + + + + + hall (building owned by a college or university where students live) where there are communal kitchens and fridges and so on intended to be used by students + + + + + + + a clumsy, stupid person + + + + + + + + + + + + + + + be healthy, be well + + + farewell + + + recommendation for greater sophistication or awareness: "get real" + + + + + + ammonic + + + + + + + the plover Vanellus coronatus + + + + + + + the police (collectively) + I just blew a chase on the maameh + + + + + + + + + to make evident or public + + + + + + + urban slang for a half-jack + + + + + + + + sorting room in a paper mill + + + + + + in or by the fact + + + + + + + music that blends punk rock and rockabilly + + + + + + + of, resembling, or characteristic of a zebra + + + + + + + + style in art and especially architecture + + + + + + + An obsolete currency of India + + + + + + + tendency in a language to treat the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + + + + modified by humans + + + + + + + all the roots of any singular plant + + + + + + land revenue system in British India + + + + + + + someone who one shares their bed with + + + sex partner + + + person one has a platonic friendship with, that includs sex + + + + + + + + transfer of food or other fluids among members of a community through mouth-to-mouth or anus-to-mouth feeding + + + + + + + + something whose slightly damaged appearance shows that it has been used many times + + + + + + + + + + to end a phone conversation intentionally + + + + + + a capital town for Nanumba North municipal in Ghana + + + + + + + The one that follows after this one. + Next, please, don't hold up the queue! + + + + + + + any individual living being or physical living system + + + + + + + + + superficial or meaningless communication lacking substantial content or significance + + + + + + + massage of the back + + + + + + a lot + + + + + + addiction to tobacco + + + + + + + a mammal in the family Eupleridae + + + + + + of or pertaining to the Trochilidae (hummingbirds) + + + + + + + a member of the mammal family Elephantidae + + + + + + promise to keep silent + + + + + + + any fish of the family Blenniidae + + + + + + + any salamander in the family Plethodontidae + + + + + + + any owl in the family Tytonidae + + + + + + + a mammal in the family Dugongidae + + + + + + + a bat in the family Molossidae + + + + + + of or relating to the moth family Crambidae + + + + + + + officer under the Lord Chancellor whose duty it was to prepare the wax for sealing documents + + + + + + + any of several pivoted pieces forming the throat of an adjustable die used in drawing wire or lead pipe + + + + + + + any mole of the family Talpidae + + + + + + + woman, lady + + + + + + + a machine that dispenses bubblegum + + + + + + + any bird in the family Odontophoridae + + + + + + + any fish in the family Apogonidae + + + a fish in the genus Apogon + + + + + + + any salamander belonging to the family Cryptobranchidae + + + + + + + a cetacean in the mammal family Delphinidae + + + + + + + person of mixed white and Asian or PIslander ancestry + + + + + + Of or related to fruit bats in the family Pteropodidae + + + + + + (expressing assent, understanding) + + + (expressing surprise, doubt, joy, anger) + + + + + + + fighting, conflict + + + + + + + childlike aspect of one’s emotional experience + + + + + + سو گھٹ سولاں + + + + + + malillugu + + + + + + pertaining to the journey from childhood or adolescence to adulthood + + + + + + + + + + to look after + + + to nurse + + + + + + + the intentional performance to do a wrongful act + + + + + + + concert of classical music at which a part of the audience stands unseated for a reduced price of attendance + + + + + + + walking for show, amusement + + + + + + a disorderly, confusing situation; a mess + + + + + + + + + more in addition to someone or something + + + something different to an aforementioned someone or something + + + + + + + + + to treat something or someone as different + + + + + + + + + to try to effect or influence certain people + + + + + + + an album for mounting pictures and other memorabilia of a baby and for keeping a record of their growth from infancy + + + a book intended for babies or young children + + + a book containing advice for new or prospective parents + + + + + + + hill, mound + + + + + + + type of wooden vessel + + + + + + + generally, an Australian Aboriginal ceremoial meeting + + + + + + study of marine organisms + + + + + + + branch of biology concerned with protists + + + + + + + soil science + + + study of the influence of soils on living things, particularly plants + + + + + + branch of tribology which studies friction phenomena on the molecular and atomic scale + + + + + + + branch of herpetology dealing with amphibians + + + + + + + branch of herpetology and paleontology dealing with fossil amphibians and reptiles + + + + + + branch of ichthyology and paleontology dealing with fossil fish + + + + + + + + a sports match that holds no significance in terms of affecting the outcome or standings of a tournament + + + + + + + branch of entomology dealing with the Odonata (dragonflies and damselflies) + + + + + + + branch of ecology concerned primarily with the species and its genetically variant subdivisions, with their position in nature and, with the controlling and ecological factors + + + + + + the study of victims of crime + + + usually disparaging : the claim that the problems of a person or group are the result of that person or group having been victimized + + + + + + + onomastics + + + + + + the study of heat + + + a medical science that uses infrared images of the body to diagnose problems + + + + + + the study of games and play + + + + + + + washerman occupational class in South Asia + + + + + + the study of the anatomy and physiology of vomiting + + + + + + + branch of biology concerned with the processes and patterns of biological evolution especially in relation to the diversity of organisms and how they change over time + + + + + + swimming or floating in water + + + floating entirely under water + + + + + + the study of sleep and hypnotic phenomena + + + + + + + + inner bark of exogens; bast + + + + + + neither of two persons or things + + + + + + unaffected by or free from taboo + + + not set apart for a special use + + + + + + + an old Polish immigrant + + + + + + + the study of meteorites + + + + + + the study of how exercise alters the function and structure of the body + + + + + + + + criminology + + + + + + branch of psychology concerned with the behavior of animals other than humans + + + + + + folk psychology + + + comparative psychology + + + + + + feeding on or in wood + + + + + + dispersal of spores or seeds by animals + + + + + + + a plant distributed by living animals + + + + + + + a member of the mammal family Erinaceidae (the gymnures and hedgehogs) + + + + + + + a plant adapted to withstand or to achieve a competitive advantage from fire + + + + + + swear to God + + + + + + + branch of biology concerned with the study of plankton + + + + + + + altering one’s course in life + + + + + + + a science that deals with actinism and photochemical effects + + + + + + + the science of remedies or therapeutics + + + + + + + + the study of geological features by aerial observation and aerophotography + + + + + + branch of medical science that studies fractures + + + + + + + the study of the language, costume, literature, art, culture and history of Albanians + + + + + + + branch of botany that deals with character, ecology, and causes of outbreak of plant diseases especially of epiphytotic nature + + + the sum of the factors controlling the presence or absence of a disease or pathogen of plants + + + + + + + pleonasm: the use of more words than those necessary to denote mere sense (as in the man he said) : redundancy + + + + + + + ecology of microorganisms + + + + + + + + an ecclesiastical calendar of festivals celebrated in honor of particular saints and martyrs + + + a register of saints or outstanding religious personages + + + menologion: an ecclesiastical calendar and short martyrology of the Eastern Orthodox Church : an abbreviated version of the complete Menaion + + + + + + + the collection and study of proverbs + + + + + + + apparent or imitative homology especially between metameres + + + + + + + the scientific consideration of the remedial use of friction + + + + + + + the study of winds + + + + + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + + + + + + the branch of ornithology which is concerned with birds' nests + + + + + + + the scientific study of weight + + + + + + + investigation of the supposed relation between the celestial bodies and the weather + + + + + + + + the science of breeding animals and plants under domestication + + + + + + + branch of mathematics which studies topological spaces using the tools of abstract algebra + + + + + + + + + products, equipment, and systems that enhance learning, working, and daily living for persons with disabilities + + + + + + + theological doctrine that describes the divine nature according to positive categories + + + + + + + + branch of mycology dealing with the rusts + + + + + + + + + crouch-backed + + + crowded, populated with people + + + + + + + the ecology of organisms and their interactions with each other; the branch of science concerned with this + + + + + + + branch of medicine dealing with the skin, its structure, functions, and diseases + + + + + + + study of structural geology + + + + + + + computer science + + + + + + + branch of pathology that deals with manifestations of disease at the cellular level + + + + + + + the study of animals in a germ-free environment + + + + + + + the raising and study of animals under gnotobiotic conditions + + + + + + + + the science or study of the origin, meaning, growth, and history of the religious feasts and seasons of the Christian year + + + + + + + the study of marine animals + + + + + + + the scientific study of microclimates + + + the microclimatic character of an area + + + + + + + + + + to drop, issue from + + + + + + + the branch of zoology which deals with slugs + + + + + + + the study of how populations change over time + + + + + + + the study of the astronomy of ancient cultures + + + + + + + + the doctrine of the use of the cane in corporal punishment + + + + + + + + + to send a copy of a communication, especially via email + + + + + + + (among the Algonquian people) a supernatural being that controls nature; a spirit, deity, or object that possesses supernatural power + + + + + + + recent zoology: the zoology of existing animals disregarding those extinct + + + + + + + the study of the process by which animals and plants grow and develop + + + + + + + any approach to psychological issues based on the idea that mental processes can be divided into separate specialized abilities or powers, which can be developed by mental exercises in the same way that muscles can be strengthened by physical exercises + + + + + + + the branch of Roman Catholic theology that deals with the practice of virtue and the means of attaining holiness and perfection + + + + + + + contraction of a word by omission of one or more similar sounds or syllables + + + + + + + the medical science concerned with diseases of the blood and related tissues + + + + + + + + the study of gramophone records + + + + + + + (informal) the art or practice of bluffing or deception + + + + nonsense, rubbish; fooling, hoaxing, humbugging + + + + + + + the branch of political economy relating to the production of wealth + + + + + + + the study of the causal relations between geographical phenomena occurring within a particular region + + + the study of the spatial distribution of organisms + + + + + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + + + + + + a hostile or harmful action (such as an attack) that is designed to look like it was perpetrated by someone other than the person or group responsible for it + + + + + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + + + + + + the scientific study of noses + + + + + + + study of the microscopic anatomy of cells and tissues of plants and animals + + + tissue structure or organization + + + + + + + the study of hormones: endocrinology + + + + + + + the science of health; hygiene + + + + + + + a treatise on the poppy or on opium + + + + + + + a target-driven process designed to ensure the successful implementation of reforms or achievement of policy goals within government or the public sector + + + + + + + absence of purpose in nature especially as manifested in rudimentary or nonfunctional structures + + + the doctrine of purposelessness in nature + + + frustration or evasion of a normal functional end + + + a vestigial organ + + + + + + + the study of the impact an injury or incident had on a person's lifestyle + + + hedonics + + + + + + + + + the study of the phonology of morphemes + + + + + + + + recitation of mimes + + + + + + + a collection of idioms + + + + + + + the study of the relationship between the endocrine system and various symptoms or types of mental illness + + + + + + + a branch of medicine that deals with the influence of emotional states (such as stress) and nervous system activities on immune function especially in relation to the onset and progression of disease + + + + + + + the theory and practice of utilizing new technology to develop and implement innovative educational approaches + + + + + + + + sensitive to light of all colors in the visible spectrum + + + + + + + the study and treatment of speech and language problems + + + + + + + + the branch of anatomy which deals with the ligaments + + + + + + + the study of the structure and operation of synapses + + + + + + + a scientific dissertation on tea + + + + + + + the study of archaeological remains by examining them from a higher altitude + + + + + + + the study of climatological conditions in the free atmosphere--that is, in atmospheric layers located at various levels above the earth's surface + + + + + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + + + + + + te branch of anthropology that deals with the origins, forms, and practice of politics or political authority + + + + + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + + + + + + the study of the masticatory system, including its physiology, functional disturbances, and treatment + + + + + + + the branch of biology concerned with congenital defects and abnormal formations of plants; plant teratology + + + + + + + + a speech in which someone admits to the charges or problems they are accused of, while simultaneously justifying or attempting to provide excuses for them + + + + + + + the study of the physiology of the ear and hearing + + + + + + + an expert or specialist in physiological psychology + + + + + + + counter-espionage + + + + + + + the science of the production and distribution of wealth + + + + + + + + + to perform music using a musical instrument or instruments + + + + + + + the explicit concern with foundational, metapsychological, and philosophical questions in psychology + + + + + + + a range of philosophical and theological explorations of the idea that God may be dead + + + + + + + + those aspects of meteorology that occur over, or are influenced by, ocean areas and which serve the practical needs of surface and air navigation over the oceans + + + + + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + + + + + + the methods and the process used for catching or capturing the fishes for various purposes + + + + + + + + characterized by whirling or rotatory movement + + + + + + + the branch of virology concerned with the study of retroviruses + + + + + + + the science or study of revolution + + + + + + + a treatise on pyrites + + + + + + + the study of crystals and crystallization; crystallography + + + + + + + + + that has been through the process of fermentation + + + leavened (of bread) + + + + + + + the application of technology in the agricultural and food sector + + + + + + + contraption used to catch fish alive + + + + + + + (first-person plural possessive) belonging to us + + + + + + (third-person singular impersonal possessive) belonging to it + + + + + + impervious to moisture or damp + + + + + + + tsirkulatsioonimudel + + + + + + + a small bedside table or stand + + + + + + + + the medical specialty that studies the morphology of the macroscopic and microscopic abnormalities in biological tissues and normal or pathological cells + + + + + + + the study of the meteorological processes occurring close to the Earth's surface, including the effects of meteorology on air pollutants and the effects of pollutants on meteorology + + + + + + + the science of weapons or armor + + + + + + the study of the complex processes of climate and glacial interaction + + + + + + + the study of mesoclimates; the climatology of relatively small areas that may not be climatically representative of the general region + + + + + + to an extent + + + aware of, knowledgeable about + + + opposed to + + + + + + to the greatest extent + + + + + + aggravated; angry, annoyed, irritated + + + crazy, fun + + + + + + + surely have, should have + + + + + + + the study of historical weather patterns using radar data to understand how surface properties affect precipitation + + + + + + + a use of many languages + + + + + + + the branch of sociology that deals with political groups and leadership + + + + + + + a certain set of ethical ideals, principles, doctrines, myths or symbols of a social movement, institution, class or large group that explains how society should work and offers some political and cultural blueprint for a certain social order + + + + + + + chemical reaction used to remove color, whiten, or disinfect, often via oxidation + + + + + + + the macroscopic assessment of pathology specimens + + + + + + + + a calendar or book declaring what is done every day, a day-book + + + + + + + + + to receive pardon + + + + + + + article structured as a list + + + + + + + rare. Apparently only attested in dictionaries or glossaries: the doctrine of, or a treatise on, the nutrition of organized bodies + + + + + + + the study or science of nutrition + + + + + + + qasoqqavoq + + + + + + interring; enclosing, whelming + + + + + + that catches fish + + + + + + + + + + + + + to release again; to reissue (especially of a film or recording) + + + + release again + + + + + + + + + to produce together (with a partner) + + + + + + + + + to engage in role-playing, taking on of fictional parts + + + + + + + + + to eat dinner, dine + + + + + + + + + to put before a committee + + + + + + + + + to become inattentive, oblivious + + + + + + + + + to chatter continuously in an annoying manner + + + + + + + + to shine, gleam, glitter with reddish or golden light + + + + + + + + + to put out of date; to make obsolete + + + + + + + + + to control and direct in a detailed, meddlesome manner + + + + + + + + + to mention name of famous or prominent person in conversation to impress others + + + + + + + the study of how people behave in groups and how their behavior differs from when they are individuals + + + + + + + + + the use of solar energy to generate electricity or heat + + + + + + + + + to inhibit or decrease normal activity of bone marrow, resulting in fewer red blood cells + + + + + + + + + to bring about lysis + + + + + + + + + to urinate involuntarily while asleep + + + + + + + + + to remove a sample of tissue for medical analysis + + + + + + to occur at time later than expected + + + + + + to not be present + + + + + + to not be present among, at + + + + + + to be experiencing fear + + + + + + + substance that quells or blunts the libido + + + + + + having normal visual acuity + + + marked by facilely accurate discernment, judgment, or assessment + + + + + + + a treatise on the head + + + + + + + branch of botany that deals with desmids + + + + + + + the study of diseases of ligaments + + + + + + + short trousers, shorts + + + + + + + + + to fossick + + + + + + + + + + to score with ravines + + + to hollow a ravine or cleft out of + + + + + + + + + to reduce to base level by erosion + + + + + + + + + to send an SMS message from a mobile phone + + + + + + + + + to subsidize something or someone + + + + + + + essential oil distilled from the flowers of the Seville orange + + + + + + + + + to adduce arguments, argue + + + + + + + + + to provide, secure, or raise with a quoin or quoins + + + + + + mentally or morally sick + + + + + + + the branch of biology that uses computational techniques to analyze and model how the components of a biological system such as a cell or organism interact with each other to produce the characteristics and behavior of that system + + + + + + + the broomrape Orobanche purpurea of Eurasia and North Africa, which has bluish-purple flowers and is parasitic on yarrow + + + + + + forward, at the fore + + + + + + at the fore of, ahead of + + + + + + deep in past time; long ago + + + + + + that alights, descends + + + + + + that blames + + + + + + constrained, forced, necessitated + + + + + + that abstains from or is deprived of food or drink + + + + + + departing, going + + + + + + out of each hundred + + + + + + outdoor; out of doors + + + + + + + + of, within, or for a group of related people + + + + + + + act to forget + + + state of being unconscious, oblivion + + + + + + + whiner, complainer + + + + + + reduced to fine particles by grinding + + + + + + + professional who applies engineering principles to the study of cells and tissues, and uses these principles to control and understand cell behavior + + + + + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + + + + + + a home that combines a living space with a large workshop or storage area + + + + + + + a gold ring + + + + + + + the radiographic visualization of the gallbladder after ingestion or injection of a radiopaque substance + + + + + + + + + dyer + + + + + + + a chemical compound (such as a drug, pesticide, or carcinogen) that is foreign to a living organism + + + + + + + photography involving the use of a camera attachment or integrated feature that produces a brief flash of intense light + + + + + + + the study of the individual, or of single events or facts + + + + + + + the practice or art of recording images with a video camera + + + a list or catalogue of video recordings + + + + + + + the use of oscillographs for recording alternating current wave forms or other electrical oscillations + + + + + + + the science of plant description; descriptive botany + + + + + + + the science or practice of transcribing speech by means of symbols representing elements of sound; phonetic transcription + + + a system of shorthand based on phonetic transcription + + + + + + + the art of representing objects in perspective, especially as applied in the design and painting of theatrical scenery + + + visual design for theatrical productions, including such elements as sets, costumes, and lighting + + + + + + + visualization of the kidney using a radiological contrast medium or radioisotope + + + + + + + the description or study of ceramics + + + + + + of or relating to engraving or carving, especially on precious stones + + + + + + + combining form meaning "salpinx" + + + combining form meaning "fallopian tube" + + + combining form meaning "fallopian tube and" + + + combining form meaning "eustachian and" + + + + + + + the art of taking an impression of a coin or medal using sealing wax + + + + + + + writing held to be that of spirits and produced directly without a medium or material device + + + descriptive pneumatology + + + + + + + tuft or bunch of ribbon, feathers, flowers, threads of silk + + + + + + + million-millionth of a gram + + + + + + pertaining to a plexus of veins located in the spermatic cord of the male or the broad ligament of the female + + + + + + that bumps + + + + + + designation of a particular kind of concrete + + + + + + + glycoproteins that stimulate the production of blood cells in bone marrow + + + + + + of fresh water habitat; situated in still water + + + + + + + floor- or ankle-length dress + + + + + + + rocket, arugula + + + + + + like or resembling a dragon + + + + + + on account + + + + + + a mess-up; a disaster + + + testicles + + + + + + + the study of animals as geomorphic agents—as in the creation and collapse of gopher tunnels + + + + + + + lady of the Sultan’s harem + + + + + + + any cross between a mandarin and a kumquat + + + + + + + a sign, such as an accent or cedilla, which when written above or below a letter indicates a difference in pronunciation from the same letter when unmarked or differently marked + + + + + + + a large Hungarian dulcimer + + + + + + + a tiler or slater of roofs + + + + + + + going on a trek + + + + + + + a market + + + + + + + torch + + + + + + + a person who is present when something is happening but is not involved; a bystander + + + (nautical) a gunner's assistant (obsolete) + + + + + + relating to the medical specialty of proctology + + + + + + + + (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + + + + + + surgical construction of an artificial opening from urinary tract + + + + + + + + + to turn upwards + + + + + + + + + to remove stitches from + + + + + + + + + to brace again + + + + + + + state of semi-dormancy exhibited by reptiles and amphibians in response to cold weather + + + + + + + + + to form or express the opposite or contrary of + + + + + + + + + to make over again or restore (property) to former owner + + + + + + + + + to supply preliminary amplification + + + + + + + + + to saturate to excess + + + + + + + white barley sugar or sugar candy + + + + + + + + + to adjoin two objects + + + + + + + transfer of a phosphate group between molecules in different compounds; act or process of exchanging phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + + + + branch of geomorphology that studies how landforms are formed or affected by tectonic activity + + + + + + + + + to remove or unfasten clamp(s) from + + + + + + + + + to make insufficient use of + + + + + + the condition in which people in a labor force are employed at less than full-time or regular jobs or at jobs inadequate with respect to their training or economic needs + + + the condition of being underemployed + + + + + + + + + to transfer genetic material into another individual + + + + to transfer genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + to transfer genetic material non-reproductively, usually by horizontal gene transfer + + + + + + + + + + to march with legs swinging sharply from the hips and knees locked (like how geese walk) + + + + + + + + + to accelerate the progress of; to expedite + + + + + + + + + to provide an active link to a website + + + + + + + + + to destroy by burning + + + + to subject to genocide + + + + + + + + + to flash lightning + + + + + + + + + to calculate on a yearly basis + + + + + + + + + light a controlled fire in the path of a wildfire to gain control + + + + + + + + + to fail spectacularly + + + + + + + + developed in a full and thorough way + + + + + + seasonal movement of livestock (such as sheep) between mountain and lowland pastures either under the care of herders or in company with the owners + + + + + + the branch of anthropology focused on the interactions between humans and biophysical systems + + + + + + + + a small carnivorous aquatic monotreme mammal (Ornithorhynchus anatinus) of eastern Australia and Tasmania that has a fleshy bill resembling that of a duck, dense fur, webbed feet, and a broad flattened tail + + + + + + + mother tongue; first language a person adopts from their family of origin + + + + + + heaped up, accumulated; increased by accumulation + + + + + + + in South Asia: a member of a Scheduled Caste of leather-workers; a shoemaker, a cobbler, (formerly) a saddler + + + + + + anal sex + + + + + + + questioning, interrogation; the action of making or suggesting a queryaking of queries + + + + + + of the nature of, or characteristic of, croup + + + + + + + a person who introduces a parenthesis; a person given to the use of parenthesis + + + + + + happening or occurring every four years + + + consisting of or lasting for four years + + + + + + nothing, not anything + + + + + + + + + + to weigh in ounces + + + + + + + + + to despoil + + + + + + + + + to pour forth like a conduit or fountain + + + + + + + name of a fishing tender + + + + + + where above mentioned + + + + + + of or relating to the moth family Pyralidae + + + + + + + education conducted after secondary education and before postgraduate education, usually in a college or university + + + + + + + an animal that feeds on feces or fecal matter + + + + + + + a plant that captures and digests insects either passively (as the common pitcher plant or the sundew) or by the movement of certain organs (as the Venus's-flytrap) + + + + + + + a virus that attacks actinomycetes + + + + + + + the deliberate, often habitual, eating of small quantities of arsenic compounds + + + + + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + + a dance routine performed by ice skaters, especially as part of competitive figure skating + + + + + + + + indeterminately small in number + + + + + + that cleans + + + + + + anyone + + + whichever + + + however much + + + + + + + a jump in figure skating in which the skater takes off from the back outer edge of one skate and makes at least one full rotation before landing on the back outer edge of the other skate + + + + + + + ball-and-socket joint + + + + + + that can be manured + + + + + + + mendacity: the quality of being mendacious; the tendency or disposition to lie or deceive; habitual lying or deceiving + + + + + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + + + + + + + + to take a stereograph or stereoscopic photograph of + + + + + + + a petulant person, especially a childishly sulky or bad-tempered one + + + + + + + acknowledgement of truth + + + allowance of entry + + + + + + natural geological depression + + + + + + + + + to question about matters brought out during foregoing direct examination + + + + + + + + + send, transport, or disseminate by courier + + + + + + + a person who causes a nuisance + + + + + + give back + + + + + + + + + to remove all or most of the substance of (a tumor or lesion) + + + + + + being in large quantities or not divided into separate units : being in bulk + + + of or relating to materials in bulk + + + + + + French-speaking + + + + + + + the act of suggesting someone for a role + + + + + + + becoming aware + + + + + + + surveyence of opinion + + + + + + + process of establishing something + + + + + + + an abdominal pain + + + + + + + the scientific name of a nerve + + + + + + + a traveler who stays at hostels + + + (archaic) an innkeeper + + + one that lodges guests or strangers + + + + + + the condition of having three copies of chromosome 13 that results in a syndrome characterized by severe congenital malformations including craniofacial and cardiac defects, structural brain abnormalities, and polydactyly + + + + + + + sadness, grief, melancholy, sorrow + + + + + + + systematic decline in quality of online platforms over time driven by greed + + + + + + + say for all to hear + + + + + + + a lack of skills in spoken and written language which may have a detrimental effect on a pupil's ability to learn + + + + + + + coming to a stand, waiting, continuing + + + hesitating, delaying + + + + + + + a short scherzo + + + + + + + + the utilization of theories and methods from phenomenology in media research, especially those of Husserl and Heidegger + + + the study of the media as technologies which are not neutral but which transform both the world and human experience of it by amplifying or reducing phenomena through various transformational structures, as theorized by Ihde and others + + + + + + + the state of being hyperreal + + + a hyperreal quality + + + in a mediated context, an artificially created copy that is perceived as somehow more real than the real thing, or too real to be real + + + + + + of, relating to, being, or characterized by manufacturing and especially heavy industry + + + + + + + long for, be lacking, absence noted with sadness, be unable to locate + + + + + + + an orally bioavailable, second-generation hydroxamic acid-based inhibitor of histone deacetylase (HDAC), with potential antineoplastic activity + + + + + + + standing watch over something + + + + + + + utterance or exclamation of ‘ooh—ah!’ + + + + + + + a woman, usually over 30 + + + male bird, especially a domestic chicken, having plumage resembling that of a female + + + + + + + + + to grow or become dark + + + to make dark, darken + + + + + + + make legal + + + + + + + convince to join + + + + + + + + + angry, phrasal variant: angry + + + + + + full complement of sailors belonging to crew + + + + + + + any method of searching for oil based on a limited knowledge of geology and practiced especially by wildcat prospectors + + + + + + pre-1900 Swedish + + + + + + + length of cotton cloth wrapped about the body + + + + + + + the study of glyptic + + + + + + + the branch of botany that deals with the Hepaticae + + + + + + + the study of pathologic conditions related to pregnancy, childbirth, and the postpartum period + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route beforehand + + + + + + + the branch of veterinary medicine that focuses on the study of parasites that infect animals, their life cycles, and their impact on animal health + + + + + + pertaining to paleontology + + + + + + + the topology on a set where only the empty set and the entire set are considered open + + + + + + + a treatise dealing with the uterus + + + + + + + branch of biology concerned with the construction of mathematical models to describe and solve biological problems + + + + + + + branch of physiology concerned with the basic functional activities of living matter : protoplasmic physiology + + + + + + + theology that conceives of ultimate reality as so transcending human thought that it can be described only negatively + + + + + + + to work together + + + + + + + to prevail over or declare void + + + + + + + the bisectrix of the obtuse angle formed by the axes of a biaxial crystal + + + + + + + process of breaking (up), terminating + + + + + + + the study of how climate, particularly temperature and moisture, influences soil properties and processes over the long term + + + + + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + + + + + + + + provide money for + + + + + + + the microscopic examination of tissue in order to study and diagnose disease + + + + + + + normal, standard, or consistent + + + + + + + talk idly + + + + + + + bring to an end + + + + + + act of hitting or pressing (a key or a button) + + + striking a blow with a closed fist + + + + + + deconstruct, destroy, bring an end to, defeat + + + + + + move randomly across some scale, fluctuating + + + + + + + + + to make a scapegoat of, unjustly blame (and punish) someone + + + + + + act or process of starting a habitual activity + + + act or process of occupying (space) + + + act or process of raising an issue or grievance + + + act or process of beginning an action, state, or position (non-habitual) + + + + + + + become/make clear, clean, becoming, making clean or clear + + + + + + + to take possession of + + + + + + + + + examine + + + + + + + act or process of being close or similar, causing to come near to or approach again + + + + + + + + + to place into a package again + + + + + + + a student or practitioner of methodology + + + + + + + the study of how cities modify the local climate, creating distinct conditions compared to surrounding rural areas + + + + + + having the yolk in the centre of the egg or egg cell + + + + + + + (especially in Greece or among Greek-speaking people) an extempore lament or funeral song, usually sung by a woman; a myriologue + + + the action or occupation of performing such laments + + + + + + + act or process of providing materials or supplies (provisions) + + + + + + + an advocate or practitioner of a processual approach to a problem or discipline; an advocate of processualism + + + + + + with confidential or sensitive information included or visible + + + + + + in my opinion + + + + + + + the finest topology that makes a given collection of functions continuous + + + + + + + a topology defined on the set of continuous maps between two topological spaces + + + + + + + the study of somatotypes + + + + + + + a method used in cervical cancer screening and other diagnostic procedures to improve the accuracy and efficiency of cell sample analysis + + + + + + comprehensive + + + + + + + the condition or fact of being between + + + + + + + the software and tools, including digital platforms and intelligent process automation, used to efficiently and intelligently create and deliver products and services, as well as improve speed and agility of processes across the enterprise + + + + + + + the psychology of the reader + + + + + + + Haeckel's name for: the comparison of the physiology of a mature organism to that of the (presumably) most perfectly developed organisms of its phylogenetic group + + + + + + + the theory, popularized by C. H. Dodd (1884-1973) that the eschatological passages in the New Testament refer not to a future apocalypse, but to an era which was inaugurated by Christ's presence and ministry on earth + + + + + + + the act of drooling + + + + + + + transporting an item or items that are coupled to a vehicle or pack animal(s) by means of tension elements + + + + + + anxiety causing, distressing, disturbing + + + + + + + + + + freeze completely + + + + + + having been split apart + + + + + + taking place in the middle of one's life + + + + + + + a belief system or ideology that mimics religious or theological structures but lacks the core elements of genuine theology, often serving as a substitute for or distortion of true faith; can also describe a system that adopts religious language and practices but ultimately serves a non-religious purpose or agenda + + + + + + for your information + + + + + + + the study of Ascomycota (sac fungi) + + + + + + + + + to be or become equal or even + + + + + + + act of taking + + + + + + + place where people live and interact, ranging from small villages to large cities + + + + + + + + + to shoot with bullets + + + + + + + + + to make available for other use + + + + + + + to illuminate + + + + + + of or relating to zoogeography + + + + + + + + search, seek like a scavenger + + + + + + + + + to form (vehicles) into a laager + + + to make camp + + + + + + + the formation of mountain ranges by tectonic processes, particularly large‐scale compression and intense upward displacement + + + + + + Being abducted + + + + + + + + + fan into flame + + + + + + + to make small adjustments + + + + + + + + + become too old for + + + + + + + act or process of combatting corruption + + + + + + + automatically measure refraction + + + + + + + + + put money into an investment, again, automatically + + + + + + unabashed, blunt + + + + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + + + + + + automobile decorated as a work of art + + + + + + + draw/test blood components + + + + + + + The act of to temporarily substituting one medicine with another + + + + + + + + + escape + + + + + + + The act of softening up by flattery, with an aim of getting something + + + + + + + the process of starting a computer + + + + + + + + + move a body part in a conical motion (e.g. windmilling the arms, rolling the eyes) + + + + + + + + + supervise, control, with a partner + + + + + + + + + change form together + + + + + + + change form together + + + + + + co-occurrence of medical conditions + + + + + + + + + pour concrete over + + + + + + not recommended or advised as a course of action + + + + + + + act or process of paying a pre-determined portion of a bill that is otherwise covered (usually by insurance) + + + + + + + development of ropelike structure in tissue often after surgery + + + + + + + + + fissure within a crevasse + + + + + + + + + formation of abnormal notching around the edge (of a cell, etc) due to water loss + + + + + + + to catch crabs (the crustacean) + + + + + + + quantity, object, or property intended to be measured + + + + + + + + + remove foam + + + + + + + + + decreasing oxygen saturation in hemoglobin + + + + + + + + + to remove wax + + + + + + + gummy candy in the shape of a worm + + + + + + clear to auscultation + + + + + + + The act of marking with dimples, creating dimples in or becoming dimpled + + + + + + + forming or becoming covered by a crust, forming a crust + + + + + + + + + cause a harmful action + + + + + + + + + to open using a crowbar + + + + + + + compare one set of data against another + + + + + + + reduction, depletion + + + + + + + (cause to) become dried out via an electric current + + + + + + + The act of putting in a chain + + + + + + spatial end portion of + + + + + + + remove + + + + + + ooze + + + + + + + cleaning with string for healthy gums, cleaning between with string + + + + + + + emit light randomly + + + + + + + artilliary/gun battle + + + + + + to form/consist of fibrous tissue + + + + + + + + + cause to become visible, find + + + + + + + to loosen, wear away + + + + + + become like a fungus + + + + + + + + + to brief or inform fully + + + + + + + The act of becoming/covering with glacier + + + + + + + act or process of putting deep grooves or scratches into a surface + + + + + + + surf move + + + + + + + + + enumerate by hand + + + + + + + + + be a ham, overact + + + + + + + + + phrasal chop sloppily + + + + + + + + + cause to appear + + + + + + + surgical repair of hernia + + + + + + + + + move more quickly + + + + + + + surgery that creates a connection between two different parts of the ileum + + + + + + + surgery that creates a connection between the ileum and the rectum + + + + + + + The act of recording an image of (using mri, x-ray, cat scan, ultrasound, etc.) + + + + + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + mutation of cells resulting in a cell line that can keep undergoing division indefinitely + + + + + + + act or process of detecting the presence of a specific antigen by the use of antibodies + + + + + + pain in the head + + + + + + Being mixed together + + + + + + + diminished sense of taste + + + + + + within the abdomen + + + + + + + produce a landslide + + + + + + + + good or cool + + + + + + having knees that + + + + + + + + + enter on a keyboard + + + + + + + + + + + + + regard with contempt + + + + + + + live to the end/completion + + + + + + + pulverization of kidney stones, gallstones, or similar + + + + + + + + + incorrectly assign a label or attribute + + + + + + + inaccurately assign a label or attribute + + + + + + + convert into or enrich with minerals + + + + + + + + + fire, lay off + + + + + + + make the characteristic noise of a cat, communicating like a cat + + + + + + + The act of typing incorrectly (on a keyboard/typewriter) + + + + + + make or become opaque, becoming opaque + + + + + + + act or process of diminishing loudness (of a sound) + + + + + + + + + control to too great a degree + + + + + + having multiple foci + + + + + + + forming into an outward pouch + + + + + + outnumber, or exceed in manpower + + + + + + + act or process of inhibiting or decreasing normal activity of bone marrow, resulting in fewer red blood cells + + + + + + inhibitive of normal bone marrow activity, resulting in fewer red blood cells + + + + + + + + poorly thought out, unworkable, inept, worthless, faulty, uncool + + + + + + + + + to stay overnight + + + to send by overnight mail + + + + + + greatly over-acted + + + + + + + + + + + + + affected by magic + + + + + + + + + incorporate a nitrosyl group into another molecule + + + + + + + + + split into periods, assign to a period + + + + + + in the vicinity of the rectum (may or may not include the rectum) + + + + + + having a normal head + + + + + + + + slangily hip, fly, rad, dope + + + + + + related to comedy + + + + + + two out of a division of three + + + + + + + + angry, irritable + + + + + + having abnormally low blood cell count + + + + + + + + removal of several organs, including: the head of the pancreas, the duodenum or part of the duodenum, the bile duct, the gallbladder, and sometimes other tissue + + + + + + + attach fatty acids to a membrane protein + + + + + + + The act of turning, rotating + + + + + + weasel out + + + + + + + arrive on unknown shore, reach land from water + + + + + + stick out, protrude + + + + + + unload, remove stuff + + + + + + to undo a ban + + + + + + acquire a tubular shape + + + + + + act or process of gathering into folds + + + + + + to vomit + + + + + + fiddle around with (phrasal) + + + + + + to teach again + + + + + + attach living tissue onto other living tissue, again + + + + + + act or process of putting forth again + + + + + + to apply a label again + + + + + + act or process of working out terms of agreement again + + + + + + act or process of performing surgery or operating again + + + + + + + + + to pretend not to know something + + + + + + of measureless depth (i.e. cannot be measured with a fathom line) + + + + + + to inch up, such as clothing that moves up the body as one moves + + + + + + the act of vaccinating again + + + + + + cook + + + + + + build or repair a road + + + + + + move on, or as if on, skates + + + + + + encounter + + + + + + causing growth of dense, fibrous tissue + + + + + + alternate expression of sell; put on sale, put up for sale + + + + + + board on sand, like snowboarding but on a sand dune + + + + + + weighing scales + + + + + + act or process of sowing, planting, inoculating, or funding (as with seeds) + + + + + + develop specific antibodies as a result of infection or immunization + + + + + + be very apparent + + + + + + act of moving or diverting + + + + + + spritz, spray, squirt + + + + + + (cause to) be more intelligent, quick, and/or stylish + + + + + + act of supporting with or as if with a splint + + + + + + spraypaint on a surface + + + + + + act of looking with eyes partly closed + + + + + + act or process of recloning part of a previously-cloned DNA segment into a new vector + + + + + + act or process of taking a smaller sample from a larger sample + + + + + + + + + to kill, cause death (used to evade online content filters) + + + + + + + + + to find again + + + + + + act or process of cutting or dividing across (often transversely); using a transect or moving along a straight path that runs across + + + + + + trade off, exchange + + + + + + the number 8 + + + + + + + speakers/writers, or the speaker/writer and at least one other person + so we believe there should be a highway leading directly from this Department to every school house in Michigan + + + speaker(s)/writer(s) and the person(s) being addressed + + + speaker/writer alone + + + + + + + dish of seasoned, skewered and grilled meat, served with a sauce + + + + + + + + able to do something + + + have the permit to do something + + + put into tins + + + fire (metphorical extension of 'throw away') + + + + + + intended to belong to, or be used by, or be used in connection with + + + with the object or purpose of + + + to the benefit of + + + to a duration of + + + in favour of + + + + + + away from the inside + + + + + + unspecified group + + + + + + color + + + + + + under; closer to the ground than + + + + + + + relation of spatial context + She found it was tucked under the desk + + + relation of heirarchy, authority, or importance + While under the supervision of his mentor + + + + + + Every person + + + + + + metaphysics term designating all that exists + + + + + + clothing for the legs and lower body + + + + + + if + + + + + + in the inner part, spatially; physically inside + + + + + + only under the following condition + + + + + + no person + + + + + + + infratentorial cancer located in the lower part of the brain, a type of primitive neuroectodermal tumor + + + + + + up to a point in time + + + + + + + artificial word for a lung disease, longest English word published in a dictionary + + + + + + clothing item worn when a human is swimming or near water + + + + + + + object used for cooking food + + + + + + Regardless of the place in, at or to which. + Wherever you go, I’ll find you. + + + + + + done without thinking, in a rigid manner + + + + + + (exclamation intended to scare) + + + (utterance expressing disdain, dissatisfaction) + + + + + + + + + delete + + + + + + + part of RDF; used with RDF literals to represent values such as strings, numbers and dates. The datatype abstraction used in RDF is compatible with XML Schema + + + + + + interrupting another + + + + + + sadly + + + + + + can not; am/is/are unable to + + + + + + + + + make pretty + + + + dress + + + + + + + + + blow wind + + + + + + + + + absorb or draw off liquid + + + + + + expressing relief + + + + + + expressing glee, excitement + + + + + + + type of spring + + + + + + indicating strong approval + + + + + + approximately + + + + + + expressing surprise + + + + + + Used to indicate pleasure or delight. + Oh goody, ice cream! + + + + + + + geological formation + + + + + + + + + dwindle. (no particle) + + + + + + pattern of bars or stripes intersecting at right angles against a background color, whether symmetric or not, whether woven or printed + + + + + + in a quirky manner + + + + + + indicates acknowledgment + + + + + + expression of gratitude + + + + + + + + + to apply teeth to something + + + to interlock + + + + + + with little drag from pushing through air + + + + + + + chemical used in agriculture, including pesticides, fungicides, herbicides, fertilizers, etc + + + + + + + a fuel that is produced through contemporary biological processes, as opposed to fossil fuel that was produced by prehistoric bio-geological processes + + + + + + + class of chemical compound + + + indicator of a biological state or condition + + + + + + + illegal bowling technique used to get a gritty batsman out by bowling at his body + + + + + + + motion picture film camera which also serves as a projector and printer + + + + + + study of the chemical composition of matter in the universe and the processes that led to those compositions + + + + + + + the study of snow and ice + + + glaciology + + + the science of refrigeration + + + + + + + + a non-binary person: someone who is outside or beyond the gender binary, not exclusively male or female + + + + + + dating using tree rings + + + + + + + study of woody plants + + + + + + + organism-ecology relation + + + study of adaptation of an organism's physiology to environmental conditions + + + + + + branch of physics + + + + + + traditionally associated with a discovery + + + + + + + organized energy + + + + + + + type of organism + + + + + + + agricultural worker + + + + + + + conversion or trending towards packing into, or transport by means of, containers + + + + + + relating to fluids + + + + + + + charity distributing food + + + + + + + form of ice cream + + + + + + relating to internal motion of a planetary body + + + + + + information about geography + + + + + + + underground water + + + + + + + + + person with excellent eyesight + + + + + + + contact for emergency assistance + + + + + + process of growing tissue or organ in the wrong place + + + + + + + medical condition + + + + + + having high body temperature + + + + + + causing immersion + + + + + + medical diagnostic technique + + + + + + creation of immune response + + + + + + + + + to make a mistake while typing on a keyboard + + + + link something to an incorrect category + + + + + + between communities + + + + + + between cultures + + + + + + connecting regions + + + + + + + one that cannot be defeated + + + + + + microscopic mechanical and chemical behavior + + + + + + + material with properties determined by structure rather than composition + + + + + + + very small mold to make microparticles + + + + + + + microscopic motor + + + + + + relating to microsurgery + + + + + + + + + apply a monogram + + + + + + + material with nanoscale features + + + + + + + nervous system disease + + + + + + study of genetics related to neurological disease + + + + + + imaging of brain function + + + + + + + ocean region near shore + + + + + + relating to an organic compound with a metal element + + + + + + + any person + + + + + + + the scientific study of bones, esp. human skeletal remains, found in archaeological sites; the branch of archaeology concerned with this + + + + + + + + bone formation + + + + + + study of parasites + + + + + + support for a parliamentary system of government + + + + + + relating to phonons + + + + + + study of light on living organisms + + + + + + medical branch dealing with tuberculosis + + + + + + + medical specialty + + + + + + + + + work with a prototype + + + + + + + a science concerned with the integration of psychological observations on behavior and the mind with neurological observations on the brain and nervous system + + + + + + medical specialty dealing with mentally-caused illness + + + + + + pertaining to quantum mechanics + + + + + + recovering from loss in some fashion + + + + + + + space vehicle + + + + + + + team of salespeople + + + + + + + state of having survived (continued to live) + + + + + + + + + + + use the telnet protocol to access another computer + + + + + + + anonymous web surfing tool that attempts to make activity on the Internet untraceable + + + + + + in an abbreviated manner + + + + + + + type of building + + + + + + similar to, reminiscent of + + + + + + + branch of medicine concerned with venereal diseases + + + + + + + in terms of, or by means of, reproduction + + + + + + absence of a gender identity + + + + + + + wire and pulley-based transportation system + + + + + + + adaptation again + + + + + + + event in which groups of software developers work at an accelerated pace + + + + + + branch of anarchism + + + + + + + the study of aphasia including its linguistic, psychological, and neurological aspects + + + + + + application of cybernetics in biology + + + + + + imitation of biological structures by artificial means + + + + + + + type of berry + + + + + + + government by corporations or corporate interests + + + + + + + art + + + + + + + craftsman fashioning tools or works of art out of various metals + + + + + + + book or electronic device for visitors to leave a note + + + + + + + type of protein + + + + + + + bonding enzymes + + + protein + + + + + + + type of guitar shaped like a lyre + + + + + + (of speech/tone) in a bitter/sharp manner + + + + + + in an acquiescing manner + + + + + + in an ambisexual manner + + + + + + third to lastly, lastly but two + + + + + + with upward/ascending motion + + + + + + so as to be obligatory (in a binding manner) + + + + + + so as to convey a challenge + + + + + + in a manner pertaining to chalk or chalkiness + + + + + + two days after today (2nd) + + + + + + in a deathless manner + + + + + + without fear/reverence, boldly/presumptuously + + + + + + By filching; thievingly. + + + + + + done in a manner that expresses clear and visual details + + + + + + increasingly + + + + + + in a welcoming manner + + + + + + vitally/intensely/vividly (in a living manner, as if living) + + + + + + incomparably/to an unequalled degree + + + + + + immeasurably/infinitely + + + + + + In an operose manner. + + + + + + in a pansexual manner + + + + + + fenologicznie + + + + + + in the beginning + + + + + + So as to prolong or lengthen. + + + + + + in a manner that can be quoted + + + + + + no matter what happens + + + + + + unrefined, not overly processed or complicated + + + + + + in a smokeless manner + + + + + + in a way relating to being spiritual + + + duchowo + + + + + + extremely hungrily (in a starving manner) + + + + + + in a straining manner + + + + + + appealingly/engagingly/pleasingly + + + + + + imprecatively, in damnation + + + + + + the aforementioned person or thing + + + + + + in a thrilling manner + + + + + + annoyingly/oppressively/tiresomely + + + + + + in a virological manner + + + + + + in a westward direction + + + + + + not exposed to/affected by wind (in a windless manner) + + + + + + + person with no cognitive disabilities or mental illness + + + + + + study of orchids + + + + + + + person who advocates pseudoscience + + + + + + + one who sanitizes + + + preparation designed to remove or kill micro-organisms + + + + + + + military use of cargo ships + + + + + + + type of enzyme + + + + + + + + + genus of viruses + + + + + + + class of enzymes + + + + + + + a partially divergent genome, particularly in viruses + + + + + + + natural polymers of high molecular weight secreted by microorganisms into their environment + + + + + + + use of sounds other than speech to convey information + + + + + + + + + route again + + + + + + + + + to imagine again or anew + + + + + + + + of, relating to, characterized by, or concerned with transformation and especially linguistic transformation + + + + + + + tree diagram used to illustrate the arrangement of the clusters produced by hierarchical clustering + + + + + + + sequence of binary digits, such as 00110010 + + + + + + + + + cause to become dense + + + + + + total of arrangements, activities, and inputs that people undertake in a certain land cover type + + + + + + + science that deals with the character, source, and mode of occurrence of underground water + + + + + + + + against + + + + + + + class of short biopolymers + + + + + + + + + to make clean or neat; to put in good order + + + + + + + + + to make a person appear more youthful + + + + + + + + + resend + + + + + + + + + to render brute-like + + + + + + + + + vengeance, payback + + + + + + + + + To delete or forget the address of some entity. + + + + + + + + + to make fine + + + to adorn, deck + + + + + + + + + to fix or restore something that was previously destroyed + + + + + + + layer of plant life growing above the shrub layer and below the canopy + + + + + + + disease causing abnormally positioned eyelashes + + + + + + + science of the study of plants in relation to their use by humans + + + + + + + Human disease + + + + + + + presence of more than one medical condition in a patient that may contribute to clinical progression of the primary disorder + + + + + + + point at which a system rapidly changes its behavior + + + + + + + tool used in systems development + + + + + + + the process of inserting a stent to prevent closure + + + + + + + restoration of blood flow in an ischemic organ + + + + + + + responsiveness or reactivity that largely surpasses the normal magnitude + + + + + + + medical treatment + + + + + + + sword made from diamond + + + + + + + Who ever: an emphatic form of who. + Whoever thought up that stupid idea? + + + + + + + + not presenting signs, indicating of + + + + + + + traditional Scottish dish + + + + + + + Idiosyncratic substitution of a word or phrase for a word or phrase that sounds similar + + + + + + rice used to make rice pudding + + + + + + having the same gender identity as assigned at birth + + + + + + propensity for further evolution + + + + + + is the clinical study of hormone fluctuations and their relationship to human behavior + + + + + + + condition in which an arterial spasm leads to vasoconstriction + + + + + + + any chemical compound having a ring composed of at least several atoms (usually minimum of 9–14 atoms) + + + + + + + the cellular lineage of a sexually-reproducing organism from which eggs and sperm are derived + + + the genetic material contained in this cellular lineage which can be passed to the next generation + + + + + + + increase a cellular response to a molecular stimulus + + + + + + + + unchanging + + + + + + + substance composed of oligomer molecules + + + + + + + any projection from the cell body of a neuron + + + + + + + protein in influenza A virus + + + + + + + vacuole to which materials ingested by endocytosis are delivered. + + + + + + + process of converting a polymer into a monomer or a mixture of monomers + + + + + + + class of chemical compounds + + + + + + the study of vaccines + + + + + + + graphic visual representations of information, data or knowledge intended to present information quickly and clearly + + + + + + + molecule or a portion of a molecule composed of amino-modified sugars + + + + + + + virtual perimeter for a real-world geographic area + + + + + + type of biofeedback + + + + + + + superpartner of the gluon + + + + + + + brother + + + friend + + + + + + fun; amusement + + + + + + مربوط به درمیان‌یاخته + + + + + + + specific way in which players interact with a game + + + + + + + The act of cross-correlation of something (a signal?) with itself + + + + + + + gender-neutral term to refer to kids + + + + + + numeral system + + + + + + + the appearance of being lightweight and light-footed while jumping + + + + + + + an explosive device planted just below the surface of the ground and designed to detonate when trigger by the weight of one walking on or driving over the device + + + + + + salutation of Italian origin + + + + + + sex or reproduction between two beings that share at least one genitor + + + + + + + concept that elevates heterosexuality over non-heterosexuality + + + + + + + container for making and serving coffee + + + + + + + writer + + + + + + + faithful and genuine love + + + + + + + + + kill by means of mounting on cross + + + + + + If what follows is not possible; without. + A large proportion of the females employed in other firms are said to have signified their intention of going on strike, failing a settlement. + + + + + + Facing, or across from. + There’s a bus stop opposite the faculty entrance, right on the other side of the road. + + + + + + Behind; toward the stern relative to some other object or position; aft of. + The captain stood abaft the wheelhouse. + + + + + + with the exception of + Nothing was to be sacrosanct or sacred, excepting reason itself. + We've all done it, not excepting Borja. + + + + + + away from + + + + + + Against; contrary or opposed to; in opposition or contrast to. + + + + + + Under, below, beneath. + Underneath the water, all was calm. + We flew underneath the bridge. + We looked underneath the table. + + + + + + In a straddling position on. + + + + + + Including both of (used with and). + I (can) both sing and dance. + Both you and I are students. + + + + + + Inasmuch as; in view of the fact that. + Seeing the boss wasn't around, we took it easy. + + + + + + Despite the fact that; although. + Though it is risky, it is worth taking the chance. + Astute businessman though he was, my brother was capable of extreme recklessness. + Actual perpetrators though they were, the criminals never admitted it in court. + + + + + + the same + + + + + + An expression of sorrow or mourning. + + + + + + Exclamation of surprise, pleasure or longing. + Boy, that was close! + Boy, that tastes good! + Boy, I wish I could go to Canada! + + + + + + Non-vulgar interjection expressing annoyance, anxiety, etc.; sugar, darn. + Oh, crud! I'm gonna be late for work! + Aw, crud! I have to start all over again! + + + + + + Indicating surprise at, or requesting confirmation of, some new information; to express skepticism. + A: He won the Nobel Prize yesterday. + B: Really? + A: You know, I saw Oliver the other day. + B: Really? What's he been up to? + + + + + + Thanks. + Ta for the cup of tea. + + + + + + intended to defend against air warfare + + + + + + give honor to, having received honor + + + + + + + work song of sailors + + + + + + + upper limit of what a biological system can produce in terms of natural resources or absorb in terms of waste + + + + + + + Criminalized activity that violates the principles of environmental justice + + + + + + + word with the same root and a related meaning + + + + + + augmentation of intelligence through the use of information technology + + + + + + + periodic change in the Sun's activity + + + + + + + preserved physical characteristics allowing reconstruction of past climatic conditions + + + + + + Power produced with lower carbon dioxide emissions + + + + + + removal of investment in companies involved in extracting fossil fuels to reduce climate change + + + + + + + current long-term trend for global sea levels to rise mainly in response to climate change + + + + + + + debt owed by developed countries to developing countries for the damage caused by their disproportionately large contributions to climate change + + + + + + + social movement for climate action + + + + + + + stratospheric phenomena of Earth + + + + + + for a time-span of three years in a row + + + + + + completely from the United States + + + exemplar of US values + + + + + + + interval immediately after a war + + + + + + + Chloropseidae, family of small passerine birds in South Asia and Southeast Asia + + + + + + + + + Lulus pemeriksaan. Memenuhi standar yang berlaku. + + + + + + condition of lacking consent + + + + + + + shortening of 'nanoscale robot' + + + + + + God willing (used mainly by Muslims or in Islamic contexts) + + + + + + + the theory or study of moral obligation + + + the doctrine that ethical status of an action lies in its adherence to a set of rules + + + + + + the branch of physics that deals with objects on molecular or smaller scale + + + + + + + fan of the television series Star Trek and/or derivative Works + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + availability of ecological resources + + + availability of economic resources + + + + + + + measure of the number of individuals of a non-native species introduced into a given habitat + + + + + + + structural unit of an organism that assists it in reaching the next stage in its life cycle + + + + + + + literary technique + + + + + + relating to prison + + + + + + of or pertaining to ornithology + + + + + + + class of vertebrates + + + + + + + + + person who rejects COVID-19 sanitary measures + + + + + + + + + to mark and save a place (especially by using a bookmark) + + + + + + fixing to + + + going to (do something) + + + + + + + + + to film a vlog (video blog) + + + + + + + + + an antisemitic person + + + + + + + substance used to accelerate a process or chemical reaction + + + + + + competitive team shooting sport + + + + + + + a man's anus + + + + + + attracted to females + + + + + + reflecting or involving gender differences or stereotypical gender roles + + + having a gender identity + + + + + + + one who is not limited to a single gender identity + + + + + + + + + to revert a previous ban + + + + + + of or relating to viverrids + + + + + + + one septillionth of a second + + + + + + practice of pretending to fall for online scams for the purpose of wasting the time of the perpetrators + + + + + + + symbol that represents disagreement or dislike + + + + + + + number that cannot be reasonably predicted + + + + + + + Any longhorn beetle of the subfamily Cerambycinae + + + + + + drunk + + + + + + + swimming at night + + + + + + that is at a reduced cost but lower quality + + + + + + utilizing the 5th generation standard of cellular mobile communications + + + + + + + parent of one's spouse + + + + + + collective term for learning opportunities and learning methods which function on the Internet + + + + + + + a symbol used in Ancient Egyptian hieroglyphy + + + + + + + + + كَان + + + + + + + Any beetle of the superorder Coleopterida + + + + + + + + + to make steady + + + + + + + any beetle of the Pyrochroidae + + + + + + + Varanus flavescens + + + + + + noval coronavirus + + + + + + + any of a variety of transportation systems relying on cables to pull vehicles along or lower them at a steady rate, or a vehicle on these systems + + + means of cable transport in which cabins, cars, gondolas or open chairs are hauled above the ground by means of one or more cables + + + + + + + any beetle in the family Lucanidae + + + + + + + any bacterium in the clade Terrabacteria + + + + + + + Anolis carolinensis + + + + + + + + Spinus psaltria + + + Carduelis psaltria + + + + + + erotic stimulation via contact between mouth and anus + + + + + + + دوا ساز + + + + + + incest between twins + + + + + + coal tar + + + + + + + a set of six numbers found on a cheque book, bank card, or bank letter showing which branch or office of a bank it relates to + + + + + + + office of a university that administers the accommodation buildings that are located within an uinversity and are intended to be used by students living on campus + + + + + + + show for the public where models wear new styles of clothes, usually organized by fashion designers to showcase their clothing + Carmelita had arranged to inspect her purchases by means of a private fashion show of carefully selected ​mannikins. + + + + + + against conservative + + + + + + + clumsy, oafish, or socially awkward person + + + + + + + + + of a nature relating to things + + + concerned with actual things + + + + + + interjection meaning "rubbish," "nonsense" + + + + + + unexpectedly sharing an unsolicited personal trauma story + + + + + + + + + to want something very much + + + + + + + icon associated with a particular website + + + + + + + act of having become numb + + + + + + + elastic band + + + + + + + music that blends punk rock and rockabilly + + + + + + + + group of eight children delivered together at the same birth + + + a group, series, or combination of eight related items + + + in music, a group of eight notes that are to be played or sung in the same time as six notes of equal value + + + + + + + a proponent or practitioner of brutalism + + + + + + shitty, bad, very poor quality, worthless + + + + + + + any scarab beetle of the genus Glycosia + + + + + + + any beetle in the superfamily Scarabaeoidea + + + + + + + Japanese art of flower arrangement + + + + + + + mucilage secreting hair found on some plants, specifically winter buds + + + + + + + study of ants + + + + + + + relating to iron + + + containing iron + + + iron coloured + + + + + + + + made up of blobs + + + covered with blobs + + + blob-like + + + + + + + job position that supervises the production of ad campaigns, and develop plans to increase sales for their clients' + + + + + + + sedimentary rock made up of fragments of preexisting rocks + + + + + + + person who actively promotes the idea that the Earth is flat + + + + + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + + + + + + resembling a bun + + + + + + + + a mammal in the family Hyaenidae + + + + + + + a member of the bird family Trochilidae + + + + + + + a bird in the family Anatidae + + + + + + + any owl in the family Strigidae + + + + + + + ruler, especially one of Iran, Turkey, or India + + + + + + + Notolabrus inscriptus, even when not green in color + + + + + + + + + to keep someone as a platonic friend, as opposed to a romantic relationship + + + + + + having multiple flowers of different appearances + + + + + + wearing a pigtail; always used before a noun + + + + + + + application of an electric shock in order to restore normal heartbeat + + + + + + + a tile used in mosaic + + + a small abacus or abaculus + + + border enclosing part or the entire pattern of a mosaic + + + a small tile + + + + + + + + + to estrange/alienate + + + to transfer ownership of property to someone else + + + + + + + court appeal + + + + + + + female baronet + + + + + + of or related to the bird family Phasianidae + + + + + + + silent breaking of wind + + + + + + of or relating to sideneck turtles in the family Chelidae + + + + + + + text produced for press + + + + + + unnecessary interruption of a woman by a man + + + + + + + walking about for amusement, entertainment; promenading + + + entertainment, spectacle, public amusement + + + + + + + + wealthy + + + + + + + peak protruding from surface ice sheet + + + + + + + + + + + + + to exercise caution + + + + + + having an additional economic value + + + + + + + repetition of short phrases or prayers in Islam + + + + + + equal in value to + + + deserving of + + + + + + + + + to commit suicide + + + + + + (call to someone at a distance) + + + + + + + belly + + + + + + (expression of excitement) + + + (expression of pride) + + + (expression of surprise) + + + (expression of irritation) + + + (expression of anger) + + + (expression of regret) + + + (expression of worry) + + + (expression of shock) + + + + + + + one subjected to a beating + + + + + + + branch of botany which deals with mosses; moss biology + + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + + + + + + branch of zoology that is concerned with the study of mites and ticks + + + + + + + the science of the therapeutic use of baths + + + + + + + + branch of entomology dealing with bees + + + + + + + branch of entomology and paleontology that deals with fossil insects + + + + + + branch of ichthyology and paleontology dealing with fossil fish + + + + + + + the study of mills and milling + + + + + + + branch of gerontology concerned with the biological processes involved in ageing + + + + + + + the study or practice of herbal medicine + + + + the science of herbs or plants; botany. Obsolete. rare + + + + + + material constituting textile fabrics + + + the type of something soft, rich, luxurious + + + + + + + children’s slide + + + + + + that’s mine! I want a share! + + + + + + illegal drugs + + + + + + + the study of musical instruments + + + the study of anatomical organs + + + the study of organs (the musical instrument) + + + + + + the study of the ecology of plant communities + + + + + + + + process of bringing something up to date + + + + + + + branch of anthropology primarily concerned with the comparative study of human evolution, variation, and classification especially through measurement and observation + + + + + + directed towards, approaching, reaching + + + + + + + a round, low neckline on a woman's shirt or dress + + + + + + + + person, human being + + + + + + + + Māori woman or wife + + + + + + + male monarch who takes throne during childhood + + + + + + + a person who specializes in hair and scalp care and treatment of associated conditions (such as hair loss and thinning) + + + + + + + specialization within professional psychology concerned with using psychological principles to enhance and promote the positive growth, well-being, and mental health of individuals, families, groups, and the broader community + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + the study of bats + + + + + + branch of mammalogy dealing with the rodents + + + + + + the study of marine mammals + + + + + + + the study of parts and the wholes they form + + + + + + + alleq + + + + + + psychology conceived as the study of the individual act especially for meaning and intent + + + + + + + psychology concerned with the purposive factor or force in behavior + + + + + + + branch of psychology that deals with the effects of normal and pathological physiological processes on mental functioning + + + + + + the psychology of races and peoples : folk psychology + + + + + + + any of a genus (Dasyurus) of small spotted carnivorous marsupials of Australia and New Guinea + + + + + + + deficiency in ability to pay attention or concentrate + + + + + + + branch of zoology that deals with spiders + + + + + + + a specialist in acridology + + + + + + + the science or theory of the good or goodness + + + + + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + + + + + + branch of climatology concerned with the impact of climate on agriculture + + + + + + + + the study of menstruation + + + + + + + the branch of neurology that studies epilepsy + + + + + + + the science of beer production + + + + + + + the study and collection of vehicle tax discs + + + + + + + the comparative study of the customs of nonliterate peoples + + + + + + + the study of the structure or function of the sensory organs + + + + + + + + the branch of zoology dealing with arthropods + + + + + + + the branch of science that deals with the composition of meteorites + + + + + + + the science of geology as applied to extraterrestrial objects and other planets + + + + + + + little + + + + + + + (gender-neutral singular pronoun in all grammatical persons) + + + + + + + the scientific study of language change over time; historical linguistics + + + (archaic): linguistics + + + (archaic): nomenclature + + + the definition and explanation of terms in constructing a glossary + + + the study of the tongue and its diseases + + + + + + + the rheological properties of a biological substance + + + the branch of rheology that deals with biological substances + + + + + + + subfield of ethnobotany that studies historical uses and social impacts of fungi + + + + + + + the science that focuses on how to protect and restore biodiversity + + + + + + + the tissue structure of an organism or part, as revealed by microscopic study + + + + + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + + + + + + sub-field within archaeology that uses sociocultural and archaeological research methods to understand how archaeological sites are created by living people + + + + + + + the scientific study of the bones of the horse; osteology of the horse + + + + + + + the study or science of humor + + + humorous speech, writing, or performance + + + + + + + the branch of botany which deals with aquatic plants + + + + + + + branch of zoology dealing with the mollusks + + + + + + + the art or practice of divination + + + + + + + intense fear or dislike of bees + + + + + + + + intense fear or dislike of bees + + + + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + + + + + + + + perspirating, covered in sweat + + + + + + + the study of mites + + + + + + + that area of knowledge that deals with the structure, development, and function of the oral tissues, their interrelationships, and their relation to other organ systems in both health and disease + + + + + + annoyed, unhappy + + + acting or thinking wildly, aggressively + + + in a difficult situation, under severe stress + + + drunk + + + unattractive, old-fashioned + + + performing superbly + + + craving an addictive drug + + + + + + + branch of psychology that deals with the psychology of language + + + + + + + a reductionist school of psychology that holds that the content of consciousness can be explained by the association and reassociation of irreducible sensory and perceptual elements + + + + + + + the science of mineral drugs + + + + + + + a form of technology that is less harmful to the environment than the usual or current form of technology + + + + + + + the branch of zoology that deals with malacostracans or (more generally) with crustaceans in general + + + + + + + the scientific study of the viscera + + + + + + + the study of the origins of things + + + government; the science of government + + + + + + + idle or vain speaking + + + + + + + the part of moral philosophy that deals with virtue, its nature, and how to attain it + + + + + + + general physiology + + + + + + + the study of oneself + + + + + + + the pseudoscientific study of bumps on the skull; phrenology + + + + + + + similarity, likeness + + + + + + + the science of diplomacy + + + + + + + the branch of herpetology dealing with lizards + + + + + + + the branch of zoology dealing with reptiles + + + + + + + the medical science concerned with diseases of the blood and related tissues + + + + + + + + cartography + + + + + + + the study of manuscripts as cultural artifacts for historical purposes + + + + + + + one who is allegedly "owned" by special interests or political groups + + + + + + + refers to any kind of deliberate plan of action + + + + + + + when lawmakers send letters to government agencies in an attempt to direct money to projects in their home districts + + + + + + + the branch of physics which studies motion; kinematics + + + + + + + natural theology as illustrated by the study of stones + + + + + + representing things by their pictures instead of by symbols + + + + + + + the study of the human mind by means of observation and experiment, rather than by deduction from general principles + + + + + + + + branch of biology which treats of the development and behaviour of a living creature as affected by its environment + + + + + + + the branch of physics that deals with the properties and phenomena of light; optics + + + + + + + lore or learning relating to the dead or to the spirits of the dead + + + + + + + a system of mythology concerned with the creation of the world + + + + + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + + + + + + an anthology of gnomes (collection of general maxims or precepts) + + + gnomic writing + + + + + + + technology whose use is intended to mitigate or reverse the effects of human activity on the environment + + + + + + a theory of ethics dealing with or based on the relation of duty to pleasure + + + + a branch of psychology that deals with pleasant and unpleasant states of consciousness and their relation to organic life + + + + + + + + + + to use weasel words : equivocate + + + to escape from or evade a situation or obligation — often used with out + + + + + + + the branch of linguistics that deals with the phonemic constitution and the phonological representation of morphemes + + + + + + + + theology based on myth; theology mixed with elements of popular myth + + + + + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + + + + + + the study of the minute structure of organisms + + + + + + not aroused + + + + + + + manufacturing technique in which parts having similarities in geometry, manufacturing process and/or functions are manufactured in one location using a small number of machines or processes + + + + + + + the study of idiom + + + + + + + the study or treatment of stammering + + + + + + + a branch of seismology that deals with the records of earthquake shocks registered in or near the region of disturbance + + + + + + + the branch of pathology concerned with diseases which are attributable to the effects of climate + + + + + + + a treatise on the art of assaying metallic substances, or on certain questions in obstetrics + + + the study of tests + + + + + + + the study of galvanism + + + + + + + study of fossil footprints and traces + + + + + + + + the science or study of the interactions among the members of a species, and between them and their environment + + + + + + + the study and treatment of speech and language problems + + + + + + + + the study or application of psychological methods and techniques useful in learning to speak a language + + + + + + + the study of the physiological systems involved in the production of speech + + + + + + + the branch of zoology which deals with zoophytes (any animal belonging to the (former) group Zoophyta, comprising certain sessile invertebrate animals, typically with a branching or radiating structure, such as crinoids, hydrozoans, sponges, and bryozoans) + + + + + + + the study of suggestion, a branch of parapsychology originated by a Bulgarian, Dr. Georgi Lozanov + + + + + + + branch of climatology + + + + + + + the observed geographic or temporal distribution of meteorological observations over a specified period of time + + + + + + + the ecology of freshwater ecosystems + + + + + + + the study of past human cultures with an emphasis on how humans interacted with the world's oceans, lakes and river systems + + + + + + + a form of performance poetry that combines elements of performance, writing, competition, and audience participation + + + + + + + the study of birds' nests + + + + + + + the scientific study of the structure and function of the placenta + + + + + + + physiology of the digestive system + + + + + + + a branch or system of theology in which God is regarded as a being, especially the supreme being + + + metaphysics; ontology + + + + + + + a study of social problems (such as crime or alcoholism) that views them as diseased conditions of the social organism + + + + + + + study of the physiology of lactation + + + + + + + the prime approach for explanation of world climates as integrations of atmospheric circulation and disturbances + + + + + + + branch of meteorology that deals with the description of the atmosphere as a whole and its various phenomena, without going into theory + + + + + + + the application of meteorological data and techniques to industrial, business, or commercial problems + + + + + + + the branch of learning that deals with the mind or thinking + + + the study of the spiritual or distinctively human aspects of humanity + + + (occasionally) a work on the mind or thinking (now historical) + + + + + + + the physics of the climate of Earth + + + + + + designed or planned so that people with disabilities are not prevented from using something + + + without anything such as a tax or limit that prevents trade between countries or companies + + + + + + that which is to come; in the future + + + + + + + technology applied to the modification of reproduction in humans and various other animals + + + + + + + the scientific study of marine-life habitats, populations, and interactions among organisms and the surrounding environment + + + + + + + prose, especially of a prolix, turgid, or impenetrable nature + + + + + + + the branch of zoology that deals with crustaceans + + + + + + + + + such that the natural homomorphism is an isomorphism + + + + + + + hypothetical iteration of the Internet as a single, universal, and immersive virtual world that is facilitated by the use of virtual reality and augmented reality headsets + + + + + + + fermented alcoholic beverage + + + + + + + + + subjective feeling of a decreased body temperature + + + + + + + technology designed with the needs of the largest amount of users in mind, in other words universal design + + + + + + + ideas and images which ascribe attributes to particular ethnic groups + + + + + + what amount? + + + + + + + plant of which the root is used to kill, paralyse, or stupefy fish + + + + + + + small building in a garden + + + + + + + a small bedside table or stand + + + + + + + a certain amount of time + + + + + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + + + + + + the aspect of pathology that deals with the geographical distribution of specific pathological conditions + + + + + + + the study of artifacts, features, sites, and site complexes within the broader spatial realms--both physical and meaningful--of past human experience + + + + + + + branch of sociology that studies institutions and social relationships within and largely controlled or affected by industry + + + + + + + the study of how weather impacts health + + + + + + + false Christology; an erroneous interpretation of the life and teachings of Christ + + + + + + + the study of spatial aspects of the archaeological record as a consequence of the activities of hominins at sites and in the landscape to understand, prioritize and integrate archaeological units into social and paleoenvironmental contexts and try to establish predictive models of territorial occupation + + + + + + + the branch of science dealing with statistics; the study or use of statistics + + + + + + + the science of elements + + + logic + + + the study of the principles of animal tissues + + + a system of therapeutics based on the study of the principles of animal tissues + + + + + + + a branch of biology that deals with the origin and development of acquired characters + + + + + + + + + possibly have, could have + + + + + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + + + + + + the study of the relationships between political, economic and social factors with environmental issues and changes + + + + + + + a discipline that combines microbiology, mathematics and statistics with the objective of creating models to describe and predict the growth or inactivation of microorganisms under a series of environmental conditions + + + + + + + + that cannot be described + + + + + + + the macroscopic assessment of pathology specimens + + + + + + + + part of science that deals with climate study based on the growth rings of trees + + + + + + + the science of tiroes + + + in quotations, used for Elementary knowledge + + + + + + + the branch of medical science concerned with venereal diseases + + + + + + + + a type of communication that takes place over the Internet when a client initiates a transaction by requesting information from a server + + + + + + + the study of social dialects; the study of linguistic variation between social groups or classes + + + + + + + a system of interactions and actors that, together, create a sustainable and successful service or experience + + + + + + + + + to put a blast furnace in operation + + + + + + be girthy, wide, dense + + + + + + be capable of producing great force + + + + + + that makes glad + + + + + + + + + to meet, assemble by prior arrangement + + + + + + + + + to plaster over with a cement made from shell-lime and sea sand + + + + + + + ski or pair of skis designed to skim water while wearer is towed by a motorboat + + + + + + + + + to make a eunuch of, castrate + + + + + + + + + to administer the rite of confirmation to + + + + + + + + + to act as a missionary, do missionary work + + + + + + + + + to put under oath + + + + + + moving or inclining at an angle to that indicated by "zig" + + + + + + marked with zones, rings, or bands of colour + + + + + + + + + to spray particulate matter with release of gas + + + + + + + + + to convert into albite feldspar + + + + + + + + + to impair perfection; to render imperfect + + + + + + + + + to weigh down too heavily, overload + + + + + + + + + to impair the regulation of a bodily process + + + + + + to be in a state of suspension + + + to be on punitive leave + + + + + + of or relating to aerobic exercise + + + of or relating to the heart; cardiovascular + + + + + + cardiovascular exercise + + + + + + + scientific consideration of diseases arising from debility + + + + + + + the anatomy of the cormus + + + + + + + newsagent’s shop + + + + + + + + + to convert to a binary form by reference to a threshold value + + + + + + + method of tying fabric to dye colourful patterns into it + + + + + + + + + to show verbal disrespect + + + + + + + bean cake made of fried black-eyed pea flour + + + + + + + (in compounds, denoting liquid used in fragrances) + + + + + + + type of evergreen tree known for its fragrant flowers + + + + + + + a fruit juice made from rehydrated dried plums + + + + + + + + + to convert into rock, lithic material + + + + + + + + a white glutinous edible mushroom (Armillaria mucida) that is a wound parasite on the beech + + + + + + (of a mineral) having a small portion of a constituent element replaced by ferrous iron + + + + + + + sexual intercourse with a woman + + + a woman, or women, viewed as a source of sexual gratification + + + the human vulva + + + + + + + a brood or litter, especially of kittens + + + + + + + + + to order again; to purchase in advance + + + request before needed + + + + + + clumsy, awkward + + + unwieldy; bulky or awkward + + + inept or thoughtless; boneheaded + + + + + + + organic compounds that readily evalorate + + + + + + shaped like a sword + + + of or relating to the xiphoid process + + + + + + + the xiphoid process + + + + + + + lacking zest + + + + + + + alcheringa; dreamtime, everywhen + + + archetypal supernatural beings of the alcheringa + + + + + + + the practice of gesturing with one's cane or walking stick in order to convey a meaning + + + + + + + dish + + + + + + taken apart, dismantled + + + + + + + someone who competes in the high jump + + + + + + upward + + + + + + + instance of examination + + + + + + + act to grab + + + + to capture, obtain, taking hold of + + + + + + + act to hint + + + + + + that wilts + + + + + + + whinging, complaining + + + + + + + + + to look, feel, or act sullen or despondent + + + to be or become overcast + + + to loom up dimly + + + to make dark, murky, or somber : make gloomy + + + + + + + a toxic, yellow, water-insoluble powder, ZnCrO₄, used as a pigment + + + + + + contriving, scheming + + + + + + that has been estimated + + + + + + + act to laugh; instance of laughter + + + manner of speaking + + + + + + + engineering that deals with the application of design, construction, and maintenance principles and techniques to the ocean environment + + + + + + + gallbladder + + + + + + + description of skulls + + + + + + + a branch of knowledge the name of which ends in -ography + + + + + + pertaining to a plant disease that causes a relatively constant amount of damage each year + + + + + + + emissivity + + + + + + each of two or more populations of a species that can interbreed without a decline in fertility + + + + + + + superfix + + + + + + + variety of speech, language + + + + + + + mode of thought which considers things from a scientific viewpoint + + + + + + + city that is overdeveloped and economically non-productive + + + + + + + ester or salt of palmitic acid + + + + + + + rod of organic substance forming a supporting axis for the body of many flagellates + + + + + + serving to warn or alarm (of colours, markings) + + + + + + + process of performing an amperometric titration + + + + + + + rope by which the buoy is fastened to anchor + + + a woman’s pigtail + + + + + + relating to, or involving biorhythms + + + + + + + recurring cyclic variation as part of a biological system + + + + + + trousers made of blue denim + + + + + + + collection of related media packaged and sold together in a box + + + + + + + one who writes an order for goods + + + + + + + type of passenger-carrying hydrofoil propelled by a jet engine + + + + + + + amount of money held in a bank account + + + + + + vertically upward : in an upright position + + + + + + + the act of giving a racial character to someone or something : the process of categorizing, marginalizing, or regarding according to race : an act or instance of racializing + + + + + + by violent means + + + under compulsion + + + + + + + change of place, position, or state + + + action of changing residence + + + + putting forth strategic effort for a goal + + + impelled action + + + act or process of affecting emotionally + + + act or process of attacking + + + + + + resembling an ogre + + + + + + + a work number assigned to a musical composition or set of compositions to indicate the order in which the composer published them + + + + + + + + + to give a pittance to; to provide with a (small) allowance. Chiefly in passive + + + + + + + two species of forest bird in the genus Callaeas which are endemic to New Zealand + + + + + + + + + + + a person who persistently pesters, annoys, or complains + + + + + + + small Andean stringed instrument of the lute family + + + + + + + an area which has been reseeded + + + + + + + coat worn for horseback riding + + + + + + + animal that yelps or gives a sharp shrill cry + + + + + + within, towards the inner part + + + + + + + + + to go, march, step + + + to hang + + + + + + to be truthful + + + + + + + repositioning of ureter to different location on bladder + + + + + + + cohesion of particles of solid material to form a compact mass or crust + + + process of fat infiltration + + + + + + + + + to furnish with timber + + + + + + + + + to set apart + + + + + + + + + + to put out of existence + + + + + + + unusually comprehensive or wide-ranging legal injunction + + + + + + + + + to act coorperatively or in cooperation + + + + + + + + + to furnish or adorn with tassel(s) + + + + + + + + + to assist or supervise in using a toilet + + + use the toilet + + + + + + + + + to travel often and widely + + + + + + + + + to protrude through an abnormal body opening + + + + + + + + + to take luncheon; to eat lunch + + + + + + + + + to engage in log-rolling + + + + + + + + poor, pathetic, innocent + + + + + + + + to get in touch with me; to contact me + + + + + + + + + to perform a lobotomy on + + + + perform a lobotomy on + + + + + + + + + to victimize again + + + + + + fair and just relations between the individual and society + + + + + + + + + to make sensitive to ionizing radiation + + + + + + + + + to impose racial interpretation on + + + + + + + the egg of the ostrich + + + + + + + one-sided relationships, where one person extends emotional energy, interest and time, and the other party, the persona, is completely unaware of the other's existence + + + + + + + + dark + + + + + + + decking or tricking out, personal adornment + + + + + + + chilled glass or can of beer + + + + + + + + + to make someone appear stupid; to make a fool out of + + + + + + + a garden (especially in an urban area) maintained by the members of a community + + + + + + + + resembling a ghost + + + + + + + one who plays the kazoo + + + + + + + + the action of spoiling; the stripping (a person) of his or her clothes or of his or her spoil; a stripping off or removal + + + + + + a computing environment where technology is seamlessly integrated into everyday objects and environments, becoming virtually invisible yet omnipresent, enabling seamless interaction and communication + + + + + + + a firearm made by a private individual, in contrast to one produced by a corporate or government entity + + + + + + + + a complex and utterly disordered and mismanaged situation : a muddled mess + + + + + + figure skating especially in competition in which the skater executes skating figures or steps in an arrangement of his own devising to music of his own choice + + + + + + + an instance of recording information mechanically or electronically + + + + + + + act towards an entity in a certain manner, assumption that something has a particular attribute + + + act or process of treating medically + + + act or process of affecting a change in something by applying a substance + + + act or process of buying for someone + + + act or process of handling (especially scholarly) + + + + + + under obligation to pay + + + + + + + + + to fix, tidy; to smarten up + + + + + + relating to or resembling vampires; vampiric + + + + + + + + + + + + + a large South African sciaenid food fish + + + + + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + + + + + characteristic of or resembling a nincompoop; foolish, simple-minded + + + + + + + a pair of stereoscopic pictures or a picture composed of two superposed stereoscopic images that gives a three-dimensional effect when viewed with a stereoscope or special spectacles + + + + + + annoying, troublesome, disruptive + + + + + + help, ease, get rid of, make feel better + + + + + + + pain in a phantom limb (or other phantom body part) + + + + + + + + + to classify again + + + + + + Portuguese-speaking + + + + + + + act of serving as a host + + + + + + + work out terms of agreement + + + + + + + driving around in a vehicle + + + + + + substitute + + + + + + + giving + + + to emerge during birth + + + to appear in a clinical setting + + + + + + + unsuccessful finish in a struggle + + + + + + + + + to recruit by headhunting + + + + + + + the quality of being noteworthy + + + + + + + where alleles (DNA markers) occur together more often than can be accounted for by chance because of their physical proximity on a chromosome + + + + + + + a rhombic vestment usually of stiff material worn by a bishop or certain other ecclesiastical dignitaries on the right hip as a sign of authority and rank + + + + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + + + + + + the presence of a pathogenic variant that is confined to the ovaries or testes, occurring when some of the sperm cells in the testes or some of the egg cells in the ovaries carry a pathogenic variant that is not found in other cells of the body + + + + + + + + + to suspect + + + + + + + teaching + + + + + + take aim at + + + + + + + a topic-defined field largely pursued by psychologists studying the mass media in academic departments other than psychology; draws on cognitive psychology, social psychology, and developmental psychology + + + + + + + the process or result of an image appearing blocky or blurry, often because individual pixels become visible + + + + + + nearly, almost + + + + + + (archaeology) not producing, having, or including pottery + + + + + + + implementation + + + + + + + + + to cheat; to refuse to pay + + + + + + + a drug that lowers blood calcium + + + + + + containing ice + + + + + + + one who determines sex, especially of animals + + + + + + + act of separation + + + + + + + + + to speak indiscretely; to blab + + + + + + + + + to systematically decrease the quality of an online platform driven by greed + + + + + + fractional currency + + + money, funds + + + + + + + the state of being triploid + + + + + + + build up: cause to be bigger + + + + + + + leak, let forth water sparingly, letting water through accidentally or because of damage, let forth + + + + + + + begin, cause to begin + + + + + + + journal publically and electronically, online journaling + + + + + + + use, overuse + + + + + + + woman’s breast; booby + + + + + + + the application in the evolution of an alphabet of a pictorial symbol or hieroglyph for the name of an object to the initial sound alone of that name + + + the naming of a letter by a word whose initial sound is the same as that which the letter represents + + + + + + + arachnology, the branch of zoology that studies arachnids + + + + + + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + + + + + + to telephone + + + + + + provide a basis for + + + + + + + a type of topology that is defined on a fiberwise space, which is a pair (X, f), where X is a topological space and f is a map from X to a base space B + + + + + + + stereotypically masculine individual working in technology + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route beforehand and pre-placed protection + + + + + + + the science of fire or heat; specifically the branch of chemistry concerned with the properties and (especially analytical) use of fire + + + + + + + the study of sphagnum mosses + + + + + + + the study of the relationship between the chemical structure of a compound and its biological action + + + + + + + a collection of subsets of a set ( X ) that includes the empty set, and is closed under any unions (even infinite ones) + + + + + + + person who shares accomodations; chambermate + + + + + + + any large lizard of the Old World + + + monitor lizard + + + + + + + + one versed in zymology + + + + + + + a type of topology on a directed set where a subset is open if it contains all elements greater than some point — that is, it includes a "tail" of the set + + + + + + + a field of biology that combines the disciplines of evolutionary biology and developmental biology to study the relationship between evolution and developmental processes and mechanisms + + + + + + + the study of islands + + + a study of islands + + + + + + + a disingenuous or insufficient apology : a statement that is offered as an apology but that fails to express true regret or to take responsibility for having done or said something wrong + + + + + + appertaining, accompanying, concomitant + + + + + + + to be or place in a resting position + + + + + + recommend, send + + + + + + + + + state guilt or innocence, give a plea in court, misspelling of plead?, give an answer, reply to charges, usually in court + + + + + + broken off suddenly/cut off/curtailed + + + undergone abruption (e.g. of a placenta) + + + + + + + a branch of clinical medicine concerned with human teratology + + + + + + + given a quotient map between two spaces, the quotient topology is the topology induced by this map on the codomain + + + + + + + a quasitopology on a set X is a function that associates to every compact Hausdorff space C a collection of mappings from C to X satisfying certain natural conditions + + + + + + exclude + + + + + + + the part of anatomy which relates to the tendons + + + + + + + technical histology concerned especially with preparing and processing (as by sectioning, fixing, and staining) histological specimens + + + + + + + the influence of word structure (morphology) on the process of translating text from one language to another + + + + + + + act/process of disposing, tearing apart + + + + + + + act of making aware + + + + + + + the study of microscopic animals + + + + + + act of throwing randomly perhaps underhand or casually + + + + + + + the study of literacy, reading, and related psychology disciplines + + + + + + + act/process of collecting together, often to merge resources (e.g. money) + + + + + + + + + to make people do what one wants by using (their emotions, fears, concerns, etc.) in an unfair way + + + + + + + + in unfortunate circumstances/condition + + + + + + + the application of psychological methods and results to the solution of practical problems especially in industry + + + an application of technology for psychological purposes (as personal growth or behavior change) + + + + + + + systematic arrangement of synchronous events + + + + + + + the general principles, strategies, and practices used by teachers to facilitate learning in students + + + + + + + vocalize like a dog + + + + + + + act or process of appealing, attracting, indulging, placating + + + + + + + cause to reject + + + + + + + matching a speaker's lips to an audio recording + + + + + + + a branch of medical technology that is concerned with the design, preparation, and fitting of usually non-weight bearing, highly realistic prosthetic devices (as an artificial eye or finger) to individual specifications and with the study of the materials from which they are fabricated + + + + + + + the branch of pathology dealing with the microscopic study of changes that occur in tissues and cells during disease + + + + + + of or pertaining to autosegments + + + of or pertaining to autosegmental phonology + + + + + + + movement within the museum field that emerged in the late 20th century, emphasizing community engagement, social responsibility, and a more inclusive approach to museum practice + + + + + + + technology that transmits radio frequency signals over electrical conductors like power lines; a method of sending audio or data using the existing electrical infrastructure of a building or area + + + + + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + + + + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + + + + + + Sophianism, a theology or system of thought based on divine wisdom + + + + + + + phrenology of dogs + + + + + + + the science of jawbones + + + + + + + the act of changing or altering the structure, style, or form of something + + + + + + + + + consider fully + + + + + + + crack up: cause hilarity, causing hilarity + + + crack up: go crazy, go crazy + + + + + + + act of becoming associated with + + + + + + + fill in, to complete + + + + + + (cause to) become dizzy + + + + + + + act or process of collecting, accruing (phrasal variant) + + + + + + + misunderstanding + + + + + + a style in art reflecting Japanese qualities or motifs + + + an object or decoration in japonaiserie style + + + + + + + head-covering worn to protect hairstyle + + + + + + suppressing coughs + + + + + + + a period of emotional turmoil in middle age characterized especially by a strong desire for change + + + + + + + The act of making a 'whoop' sound. + + + beating + + + + + + earn profits + + + + + + + act of firing, the termination of employment + + + + + + bruise, causing to become or becoming bruised + + + + + + + + + select only the best + + + + + + to be full of or afflicted by + + + + + + + + + grab quickly away from someone + + + + + + + activity of shining boots and shoes + + + + + + + + + + to initiate a conversation + + + + + + bring your own bottle + + + bring your own beer + + + bring your own booze + + + bring your own bud + + + + + + + shorthand for the hull-kernel topology; a standard topology used in commutative algebra and functional analysis, especially in the study of rings and operator algebras; the topology placed on the set of ideals of a ring (often prime ideals or primitive ideals) by relating two dual notions: the hull of a set of ideals = the set of elements common to all those ideals (an intersection), the kernel of a set of ring elements = the set of ideals containing those elements + + + + + + + physician specializing in urological problems affecting women + + + + + + + the act of divulging or publishing abroad + + + + + + + (as a term of endearment) a cute person; a cutie + + + + + + + act of causing motion, act of attempting to cause motion + + + + + + + a foodstuff (such as a fortified food or dietary supplement) that provides health benefits in addition to its basic nutritional value + + + + + + + any one of a group of alcohol-soluble proteins that function as storage proteins in maize kernels + + + + + + + a zebroid that is the offspring of a zebra stallion and a horse mare + + + + + + + one billion years + + + + + + of, relating to, or capable of speed equal to or exceeding five times the speed of sound + + + + + + + a mass of ash or other loose, solid material which travels down the flanks of a volcano and along the ground during an eruption + + + + + + marry again + + + + + + + fight + + + + + + + The process of joining in a subordinate manner, acting as a subordinate associate + + + + + + + act of moving people, troops, or goods by air (as in a war) + + + + + + lacking kidneys; without functioning kidneys + + + + + + to form or be formed of angles + + + + + + seismically inactive + + + + + + movement, interstellar + + + + + + + tendency to avoid + + + + + + + thoroughly punish, put in place + + + + + + + + + to hit, completive + + + + + + + + + to emit, spew + + + + + + relating to or bringing about the settlement of an issue or the disposition of property + + + + + + emotionally detached + + + not feeling interested or involved in something + + + + + + + the quality of being disengaged; freedom from ties, engagement, obligation, or prepossession + + + + + + + a generative linguistic theory that posits that word formation is a syntactic process, not a separate lexical one + + + + + + + a refinement of the standard cohomology groups of a manifold, particularly a compact Kähler manifold, defined as a specific subspace of the total cohomology and is central to Hodge theory and the Hard Lefschetz theorem + + + + + + + process of making cancerous + + + + + + + surgical incision into the abdomen + + + + + + + parenting + + + + + + + The act of making stone like through calcification literally or figuratively + + + + + + to be cheated, get the short end of the stick + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + imaging exam of the colon + + + + + + + growing of a blood vessel that serves the same end as another vessel that cannot adequately supply that organ + + + + + + To be structural configured, esp. of atoms, animals + + + + + + + simultaneously transfect with two, unrelated nucleic acids, one of which carries a marker gene + + + + + + + + + scare + + + + + + scare + + + + + + + meeting place of Buddhist monks + + + Buddhist monastery + + + + + + Being decoded, deciphered + + + + + + + + + remove covering of a seed + + + + + + + process of removal from a locality + + + + + + + + + remove feather + + + + + + + act of living in or retiring to a den + + + + + + + + + remove gum + + + + + + spicy sausage made of beef and lamb, and coloured with red peppers, originally made in the French colonies of North Africa + + + + + + + + + (cause to) lose color + + + + + + + + + remove tassel + + + + + + + currycel + + + + + + + mentalcel + + + + + + + decry, express low opinion of + + + + + + + + + introduce american currency + + + + + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + + + + + + + + continue dreaming + + + + + + + + inclined to brawl + + + characterized by brawls or brawling + + + + + + for use in grading/digging/ground-shaping operations + + + of great significance + + + + + + + The act of listening surreptitiously + + + + + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + + + + Being able to induce vomiting + + + + + + characteristic of a paticularly whiny form of punk rock + + + + + + + The act of dispersing in an emulsion + + + + + + + remove a tube from + + + + + + + + + cause to create an abnormal passageway + + + + + + + + + intentionally touch, phrasal + + + + + + in favor of, supporting + + + + + + + work independently on temporary contracts, working independently + + + + + + + + + pick by hand + + + + + + + insertion of a hand (or fist) into an orifice (for example, the vagina or anus) as part of sexual behavior + + + + + + relating to or involving the sexual practice of inserting a hand into a partner's body + + + + + + personal pronoun + + + + + + + inaccessible place + + + building containing trophies erected by Artemisia (fl. C4 BC) in Rhodes, closed to all but a select few + + + + + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + + + + + heavy timbers forming the frame (typically left exposed, especially for decorative effect) of a house, wall, or storey, the gaps in between the timbers being filled with any of various materials such as bricks, wattle and daub, etc. + + + boarding added to a house to give a similar decorative effect + + + + + + + Shipbuilding. Each of a number of timbers in a ship's frame which do not cross the keel, but have their lower ends butted against the centreline timbers, typically used at the ends of the ship, and able to be arranged at angles other than a right angle to the keel. + + + Architecture. Each of the timbers used in constructing a half-timber building; (also) a timber used decoratively on a building to give the appearance of half-timber construction. Usually in plural + + + + + + + lose (blood) quickly + + + + + + + treat with heparin anticoagulant + + + + + + Being linked to another thing or more things together + + + + + + within the thorax + + + + + + + free; release from captivity, particularly with intent to harm another + + + + + + + + + communicate poorly, or failingly + + + + + + + communicate poorly, or failingly + + + + + + + + + to route incorrectly + + + + + + + printing text too small to be seen by the naked eye + + + + + + + small scale agglutination of red blood cells + + + + + + + + + match people together, usual romantically + + + + + + + + + bringing to market or open-market-style managment + + + + + + of or relating to lysis or a lysin + + + + + + + + + stir up, confuse, completive + + + + + + having only one form + + + + + + + act or process of mud, or mud-like material, and water flowing as a stream or river down a slope; mudspate; lahar + + + + + + not tested + + + + + + + + + flood with too much + + + + + + + + + CAUSE a fit, such as in a complex model + + + + + + + + + coat to protect from corrosion + + + + + + + + + attacking with napalm + + + + + + + + + to oppose or deny + + + + + + + + + + spray with mace (or similar) + + + + + + in the vicinity of or relating to the portal vein + + + + + + + player of game in midfield position + + + + + + + organization + + + + + + + composition or writing of songs + + + + + + experiencing partial paralysis + + + + + + + become a parasite to a host + + + + + + + + + to plug or cause blockage + + + + + + + + + zipcode + + + + + + use the Yahoo search engine or website + + + + + + spend the winter + + + + + + beat + + + + + + skype, video chat + + + + + + not accomplished with difficulty + + + + + + predict to be less than is true + + + + + + set into type + + + + + + ignore, pay no heed to + + + + + + act of drinking or celebrating before an event or outing + + + + + + make beforehand + + + + + + state before another occurrence + + + + + + to drain + + + + + + the act or process of concentration into one location + + + + + + inform again + + + + + + ingest again + + + + + + to enhance appearance (by landscaping) again + + + + + + act or process of binding again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + + + + hit with radiation again + + + emit or project, again + + + + + + reassess the progression of a disease + + + + + + check (for), examine (again), check for or examine, again + + + + + + the act of resending again + + + + + + splitting, developing a fissure + + + + + + render into pieces + + + + + + to defame, bring shame, or publicly disgrace + + + + + + at a pace of about 120 steps per minute + + + + + + to hold as one's own identity, regard oneself as belonging to a particular group + + + + + + eccentric, idiosyncratic; erratic, random + + + + + + + cover with a shawl + + + + + + act or process of ascension or descension + + + + + + to leave quickly + + + + + + to impale, as if on a spike or spindle + + + + + + make a spoon-like formation (cuddle?) + + + + + + begin to harangue + + + + + + deflect an opponent using straight, stiff arms (maybe metaphorical) + + + + + + to remove + + + + + + to examine closely + + + + + + to work remotely usually via computer + + + + + + act or process of converting a greyscale image to a binary image + + + + + + trail off: come to an end + + + + + + deviating, diverting from a straight/right path (that swerves) + + + + + + + dance hall; venue for dancing + + + + + + + a person, referenced derisively; buffoon + + + + + + + a little, a small amount + + + + + + cardinal number between 19 and 21 + + + + + + + what person + + + person or people that + It was a nice man who helped us. + + + + + + which mode + + + + + + the number 3 between two and four + + + + + + + single person, previously mentioned, of unknown or non-binary gender + + + group of people, animals, plants or objects previously mentioned + + + some people; someone + + + + + + + (first-person singular personal pronoun) speaker or writer of a sentence + That belongs to me, not you. + I am Ozymandias, King of Kings! + + + + + + inanimate object or animal + + + child of unknown gender + + + referring to the situation in general + + + single, specific person + + + + + + to be obligated + + + + + + (word used with the present form of a verb to mark it as being an infinitive) + + + + + + referring to a thing or things that exist + + + + + + above, higher in altitude + + + + + + + + more than a few + + + + + + One more further, in addition to the quantity by then; a second or additional one, similar in likeness or in effect. + Yes, I'd like another slice of cake, thanks. + + + + + + A word used to show agreement or acceptance. + + + + affirmative option provided in a binary vote + + + + + + Earlier than (in time). + I want this done before Monday. + + + + + + spatial position in relation to two objects, on each side of the subject + + + + + + Having been determined but not specified. + Certain people are good at running. + + + + + + other, different + + + + + + within the interior of something, closest to the center or to a specific point of reference + + + + + + because + + + + + + not including + + + + + + + person who is unrefined or unsophisticated + + + + + + + initiative to increase goat inclusion and awareness + + + + + + + device for cutting wood into small pieces + + + + + + + one of the longest single-word palindromes in the English language + + + + + + Used in scholarly works to cite a reference at second hand + Jones apud Smith means that the original source is Jones, but that the author is relying on Smith for that reference. + + + + + + according to the type and power of units + + + + + + + + + design something structural + + + + + + + + + to confine (usually in a small space) + + + + + + using instruments + + + + + + + + + dig a hole + + + + + + request for confirmation + + + + + + + + + offset of local time from UTC + + + earth region with a particular time standard + + + + + + denoting thoughtfulness + + + + + + Expression of awe, terror, surprise or astonishment + + + + + + something belonging to + + + + + + + + + remain unsettled; wait + + + + + + + + + to send an SMS message from a mobile phone + + + + + + to + + + + + + relating to sound waves that have been electronically recorded, transmitted, or reproduced + + + + + + + dance + + + + + + difference + + + + + + + genomic repeat analysis + + + + + + + + + to rouse or disturb someone + + + + + + + + + unpeg + + + + + + + the application of modern technology to agriculture + + + + + + + + vegetable oil- or animal fat-based diesel fuel + + + + + + study of chemical cycles of the earth that are either driven by or influence biological activity + + + + + + one thousand million + + + + + + + + type of government department in Imperial Russia, established in 1717 by Peter the Great + + + + + + + situation when futures prices are above the expected spot price at maturity + + + + + + + any bird in the family Corvidae + + + + + + + + + select art, food or other items for display + + + + + + + wind storm + + + + + + + + + burn from compression rather than a spark + + + + + + + northern region of US state + + + + + + natural number + + + + + + field of engineering + + + + + + + term in cell biology + + + + + + relating to federalism + + + + + + + + + undergo fibrosis + + + + + + + The covalent attachment and further modification of carbohydrate residues to a substrate molecule. + + + + + + chemical or geological term + + + + + + study of gems + + + + + + pertaining to geochemistry + + + + + + branch of geology + + + + + + interdisciplinary field + + + + + + geographic information processing + + + + + + + + + swivel about a gimbal support + + + + + + related to sugar in food + + + + + + + study of life in water + + + + + + fluid mechanics of water + + + + + + relating to high pressure + + + + + + + device that can be implanted + + + + + + exchanging between different transportation modes + + + + + + flat and thin + + + + + + involving use of a laparoscope + + + + + + + brain disorder + + + + + + saving lives + + + act involving rescue, resuscitation and first aid + + + + + + symbiotic arrangement + + + + + + study of metabolites + + + + + + pertaining to microchemistry + + + + + + miniaturized devices + + + + + + having nanoscale structure + + + + + + relating to naturopathy + + + + + + relating to neurodegeneration + + + + + + able to function without damaging anything + + + + + + pertaining to oceanology + + + + + + incorporating optical and electronic elements + + + + + + + + + initialism for "Laughing Out Loud" + + + + + + + + + + travel excessively fast + + + + + + + physiology of disease causation + + + + + + + + biochemical process + + + + + + pertaining to the kinetic effects of light + + + + + + study of creation and manipulation of photons + + + + + + + medical specialist + + + + + + relating to a presbyter + + + + + + + medical specialty involving lungs + + + + + + + + medical specialist in pulmonology + + + + + + + surgery using radiation + + + + + + application of spectroscopy in chemistry + + + + + + + specialist in stomatology + + + + + + + line of fluid flow + + + + + + under the sea + + + + + + + study of causes and other aspects of suicide + + + + + + study of certain nonequilibrium systems + + + + + + + type of molecule + + + + + + appealing to or stimulating the appetite + + + + + + from within/the inside + + + + + + in a manner that lasts (over a long period of time) + + + + + + railroad track construction + + + + + + transcending the personal + + + + + + extremely low weight + + + + + + receiving insufficient service + + + + + + + + + disconnect a latch + + + + + + + + + make new + + + + + + + using an item again after it has been used, instead of recycling or disposing + + + + + + + catholicos, high-ranking bishop + + + + + + + digital medium of exchange + + + + + + + person, usually a coffeehouse employee, who prepares and serves espresso-based coffee drinks + + + + + + + heraldic memorial to a deceased person + + + + + + + type of scientist + + + + + + + type of rice + + + + + + + type of house in Provence + + + historic fortified town in France + + + + + + semiotics in a biological context + + + + + + + low quality diamond + + + + + + data-driven chemistry research + + + + + + + person who contributed to founding an organization + + + + + + + type of guitar + + + + + + + animal adapted for running + + + + + + + organism that lives on the surface of another organism + + + + + + + promotion of the esoteric + + + + + + + printed interactive story + + + + + + + type of sauce or edible glaze + + + + + + + type of food item + + + + + + + subgenre of techno + + + rubble or broken bricks or stone used as a foundation + + + + + + + first-level administrative division in several countries + + + + + + + bond-breaking enzyme + + + + + + + cell undergoing a type of transformation + + + + + + + process of adding a methyl group + + + + + + + smallest type of automobile + + + + + + + main circuit board of a computing device + + + + + + in an abrasive manner + + + + + + in an abridged manner (briefly/concisely) + + + + + + in an engrossing or riveting manner + + + in a manner of taking in/soaking up/etc. something + + + + + + usually; generally; ordinarily; used for saying what usually happens + + + + + + in accordance with expectations + + + + + + 彆扭 + + + + + + unsuccessfully/unprofitably/uselessly (without success/advantage) + + + + + + without cause or reason + + + + + + in a comfy way; comfortably + + + + + + without comfort (in a comfortless manner) + + + + + + in a conscienceless manner + + + + + + with a creamy tint or surface; in a creamy or smooth manner + + + + + + done in a manner that has loud and muffled sounds + + + + + + in a dancing/capering manner + + + + + + in a detailed way, in a way that goes through small aspects of a thing + + + + + + in a dorky manner + + + + + + in an envying manner + + + + + + in a homeless manner + + + + + + in an impolitic manner + + + + + + with small changes over time + + + + + + with secret machinations (in an intriguing manner) + + + + + + gloomily + + + + + + during the late hours of yesterday + + + + + + with a boring delivery + + + + + + in a lonesome manner + + + + + + in a mistakable manner + + + + + + with regard to a neuron or neurons + + + + + + continuously/without interruption + + + + + + having/expressing no passion/enthusiasm/excitement + + + + + + following hospitalization, after one has been released from a hospital + + + + + + in a pouring manner + + + + + + in the manner of a psychopath + + + + + + in a racist manner + + + + + + in a seamless manner + + + + + + arrangement of people or items to the side of one another, facing the same direction + + + + + + without the ability of sight + + + + + + extremely well + + + + + + in a spineless manner + + + + + + In a lively and vigorous way; sprightlily. + + + + + + done in an elegant manner + + + + + + with nothing on the upper body + + + + + + in a triennial manner + + + + + + mot pour mot + + + + + + infectiously + Whether this mass of filth [wet house-refuse] be, zymotically, the cause of cholera, or whether it be (as cannot be questioned) a means of agricultural fertility, and therefore of national wealth, it must be removed. + + + + + + + type of psycho-active chemical + + + + + + + type of enzyme + + + + + + + range of radio frequencies + + + embedded kink in the trough / ridge pattern + + + + + + + largely empty region in a galaxy + + + + + + + type of capacitor + + + + + + + + + to solicit assistance from public + + + + + + Latin phrase + + + + + + + + + create incentives for, motivate + + + + + + + professional who promotes, plan and writes new or existing policy regulations around politics + + + + + + use of electronic communication for bullying or harassment + + + + + + + the microscopic examination of tissue in order to study and diagnose disease + + + + + + + in the middle of + + + + + + + site of an earthquake or a nuclear explosion + + + + + + + + unable to see the big picture + + + + + + A field of study involving the use of computer systems to perform statistical operations. + + + + + + + geometric object + + + + + + + equal + + + + + + + Indian or Pakistani dish + + + + + + + physical quantity + + + + + + + (horticulture) the art of raising plants at an earlier season than is normal, especially by using a hotbed + + + + + + cardinal number + + + + + + cardinal number + + + + + + + + + + + + + breeding different varieties + + + + + + + + + think about too much + + + + + + + protein + + + + + + study of animal communication through signs + + + + + + + + + to make abnormal + + + to become abnormal + + + + + + + + + to turn into prose; to render unpoetic + + + + + + + + + examine closely or learn again + + + + + + + + + to make arid + + + + + + + + to cut again; to cut a subsequent time/number of times + + + + + + + + + become a parasite to a host + + + + + + + + less than ideal + + + + + + + a man explaining something to a woman unasked and in a condescending manner + + + + + + act of giving the rights and/or possession of something to the person or institution in charge of its conservation + + + + + + + collection of blood and connective tissue outside the wall of a blood vessel or the heart + + + + + + + act or process of attaching a biotinyl residue + + + + + + Protection mechanism used by plants under conditions of excess energy absorption as a consequence of the light reactions of photosynthesis. + + + + + + + person with enough information and competence to act as a source + + + + + + + recording and measuring variation in the volume of a part of the body + + + + + + + combination of the principles of supersymmetry and general relativity + + + + + + + single, closely packed layer of atoms, molecules, or cells. In some cases it is referred to as a self-assembled monolayer. Monolayers of layered crystals like graphene and molybdenum disulfide are generally called 2D materials + + + + + + + first step in the formation of either a new thermodynamic phase or a new structure via self-assembly or self-organization + + + + + + the quality of being tremendous + + + + + + + Very large city with a total population in excess of ten million people + + + + + + + arrangement in which a woman carries and delivers a child for another couple or person + + + + + + + piece of DNA or RNA obtained by amplification or chain reactions (PCR, LCR) + + + + + + + forms of a protein produced from different genes, or from the same gene by alternative splicing + + + + + + + wetland terrain without forest cover, dominated by living, peat-forming plants + + + + + + + micron-sized bubble + + + + + + + class of modified proteins + + + + + + + class of enzymes + + + + + + + formation of muscular tissue, particularly during embryonic development + + + + + + + inject into a tissue or living cell + + + + + + + cell type that makes up cartilage + + + + + + + person who studies or applies neonatology + + + + + + + system that prevents Internet users from accessing webpage content without a paid subscription + + + + + + + breathe with difficulty + + + + + + + class of broad-spectrum antibiotics + + + + + + + device that compares two voltages or currents + + + + + + + mechanical component for transmitting torque and rotation + + + + + + + structure that uses a water wheel or turbine to drive a mechanical process + + + + + + + The act of making, digging a burrow + + + + + + + + + + neopronoun + + + + + + + ancient coin of the Roman Republic and Empire + + + + + + interjection used as an expression of surprise, fear, or astonishment + + + + + + + surface for nonpermanent markings + + + + + + used to make a polite request + + + Used as an affirmative to an offer + + + + + + + an angry expression on a face + + + + + + + sequence in a video game that is not interactive, breaking up the gameplay + + + + + + helping to commit a crime or do wrong in some way + + + + + + Although, despite (it) being. + + + + + + combination of two or more academic disciplines into one activity + + + + + + + pejorative term for a person expressing or promoting socially progressive views, including advocacy of feminism and civil rights + + + + + + salutation used in the morning + + + + + + + + dress in costume as a pop culture character + + + + + + + + + try too hard to do what another person wants, especially in a romantic relationship + + + + + + + + + take away funding + + + + + + + + + to share or reveal too much information + + + + + + + the act of causing something to happen by taking action, performing, or doing something + + + serve time (usually a sentence but could be an appointment) + + + nominal version of light verb + + + + + + + a child's chair with long legs, a footrest, and usually a feeding tray + + + + + + + restrain, delay + + + + + + bubbling up under influence of heat; at boiling temperature + + + + + + About, regarding, with reference to; used especially in letters, documents, emails and case law. + Re A (conjoined twins) [2000] EWCA Civ 254 + + + + + + Without disrespect to. + + + + + + Taking into account. + Considering the extent of his crimes, he was given a surprisingly short sentence. + + + + + + Concerning, respecting. + + + + + + Forth from; out of. + + + + + + Different from; not in a like or similar manner. + The disgust I felt after watching last weekend's horror movie was unlike anything I had felt before. + + + + + + toward the top + + + + + + near + + + + + + Without, except, but. + + + + + + Among, in the middle of; amidst. + Mildred comes home from work early only to discover her husband, Robert, midst of a lewd affair with their neighbor, Gladys. + + + + + + As soon as; when; after. + We'll get a move on once we find the damn car keys! + Once you have obtained the elven bow, return to the troll bridge and trade it for the sleeping potion. + Once he is married, he will be able to claim the inheritance. + + + + + + When. + + + + + + While on the contrary; although; whereas. + Where Susy has trouble coloring inside the lines, Johnny has already mastered shading. + + + + + + Used to introduce a clause, phrase, verb infinitive, adverb or other non-noun complement forming an exception or qualification to something previously stated. + You look a bit like my sister, except (that) she has longer hair. + I never made fun of her except teasingly. + To survive, I did everything except steal. + Come any time except between ten and twelve. + + + + + + to which + + + + + + Relatively large but unspecified in number. + She's taking umpteen friends with her to the party. + + + + + + Word called out by the victor when making a move that wins the game. + + + + + + Used to express approval, joy or victory. + Lizzie has broken a world record, and she is now an Olympic medallist! – Hooray! + + + + + + An expression showing that a requirement has been satisfied. + Keys? Check. Batteries? Check. We are all ready to go! + + + + + + Used as a discourse marker. + “So, what have you been doing?” “Well, we went for a picnic; and then it started raining, so we came home early.” + “The car is broken.” “Well, we could walk to the movies instead.” + “I didn't like the music.” “Well, I thought it was good.” + I forgot to pack the tent! Well, I guess we’re sleeping under the stars tonight. + It was a bit... well, too loud. + + + + + + An exclamation of respectful or reverent salutation, or, occasionally, of familiar greeting. + + + + + + Indicates agreement with another speaker's previous statement. + "I am a great runner." "Indeed!" + + + + + + Indicating disapproval, scoffery, irritation, impatience or disbelief. + Pshaw! I can't believe it! + + + + + + An expression of disgust, rejection, or disappointment. + + + + + + A radio procedure word meaning that the station is finished with its transmission and does not expect a response. + Destruction. Two T-72s destroyed. Three foot mobiles down. Out. + Welp, I got nothing else to say. Mikey out. + + + + + + be quiet(er); stop talking or making noise, or make less noise + + + + + + general interjection of confirmation, affirmation, and often disapproval. + + + + + + Used to express surprise, shock or amazement. + My, what big teeth you have! + My, you’re a pretty one! + + + + + + + + of, like, or pertaining to a dictator + + + + + + field of machine learning + + + + + + + a faulty annotation + + + + + + economic philosophy questioning growth + + + + + + + word which is not originally an acronym which is turned into one by creating a suitable phrase for it + + + + + + + type of climate model + + + + + + digestive process in ruminants + + + + + + power per unit area received from the Sun in the form of electromagnetic radiation + + + + + + process of long-term carbon capture + + + + + + + assessment of relative vulnerability to climate change and its effects + + + + + + + term linking the climate crisis with environmental and social justice + + + + + + + salutation used at night + + + + + + Greeting given upon someone's arrival + + + ellipsis of you're welcome + + + + + + + for identification to police + + + sequence of musical performances + + + + + + pertaining to a period shortly after a war + + + + + + + previously undiagnosed medical or psychiatric conditions that are discovered unintentionally and during evaluation for a medical or psychiatric condition + + + + + + + "sub-region" or alternate superluminal travel depicted in science fiction + + + + + + + athletic event or race combining three sports, usually swimming, cycling, and running + + + + + + + A person adhering to one of several contemporary Pagan religious traditions + + + + + + + forum on Reddit + + + + + + + + + fail to ensure funding + + + + + + + quality of being out of place, inharmonious or not appropriate + + + + + + + an album produced in a studio + + + + + + + pastry + + + fart + + + + + + + + + when one is set to accept a challenge + + + when something is going ones way + + + + + + response to sneezing + + + + + + + + said about someone who controls a given area + + + + + + + ofay; usually derogatory term for a white person + + + + + + + sugared fried pastry + + + + + + + + relating to the animals of a particular region, habitat, or geological period + + + + + + + + + preserve by freezing + + + + + + a jar for holding water + + + + + + + document describing a nation's plan to mitigate climate change + + + + + + + ethological class; "escape traces," formed as a result of organisms' tunneling out during high sedimentation events + + + + + + + ethological class; traces of organisms left on the surface of soft sediment + + + + + + + A well in the form of a vertical hole constructed by boring + + + + + + + molecular allotrope of lithium known in the gas phase + + + fictional material in Star Trek + + + + + + to have been fortified or reinforced using corundum + + + + + + + wireless connection + + + + + + + + blue or green + + + + + + + horror-related legend or image that has been copy-and-pasted around the Internet + + + + + + cisgender + + + + + + + someone who is cisgender and heterosexual + + + + + + + laughing my ass off + + + + + + + member of a crew + + + + + + vaccinated + + + + + + + an actor who specializes in pornography + + + + + + resembling the influenza disease + + + + + + a colloquial or informal way to say goodbye or farewell + + + + + + romantically attracted to two or more genders + + + + + + attraction to women + + + + + + of a person not limited to a single gender identity + + + + + + + one whose attraction to others is not limited by gender + + + + + + mostly heterosexual but not completely + + + + + + + outdoor camping with amenities and comforts not typically had while camping + + + + + + of or relating to elites or elitism, such as: giving special treatment and advantages to wealthy and powerful people + + + of or relating to elites or elitism, such as: regarding other people as inferior because they lack power, wealth, or status + + + + + + at + + + + + + + + an account's username on social media + + + a mention on social media + + + the at symbol + + + + + + + Any of four species of frog, all of whom make sounds similar to banjos; which live in southeastern Australia + + + + + + drunk + + + + + + drunk + + + + + + drunk + + + + + + + a particular drug used to treat ADHD + + + + + + unable to be found in a Google search + + + + + + + + any beetle of the family Carabidae + + + + + + + a dish of rice, black-eyed peas, and bacon or pork + + + + + + + + Sikh place of worship + + + + + + act of sending sexually explicit messages between mobile phones + + + + + + having a haunched back + + + + + + process of raising a child + + + + + + + a hooded sweatshirt, jacket, or sweater + + + a European crow, Corvus corone cornix + + + + + + + the name of an insect + + + + + + + any fly of the family Phoridae + + + + + + + any lepidopteran of the family Hesperiidae + + + + + + + any insect of the clade Ditrysia + + + + + + + Cnemaspis karsticola + + + + + + + an Asian person, particularly one of a Pakistani and/or Punjabi background + + + male friend, accomplice, associate + + + + + + + a nut having an outer shell that becomes tough and dry and eventually splits open, as in the walnut and hickory + + + + + + knife + + + + + + + type of n-gram where n is 5 + + + + + + + + + provide again + + + replenish with supplies + + + + + + + music genre + + + + + + + crime against property, involving the unlawful conversion of the ownership of property to one's own personal use and benefit + + + + + + milk + + + + + + + + + to hit someone on the buttocks + + + + + + + children’s game + + + + + + zebra or similar (notably equine) animal + + + + + + + a person who enjoys rain and rainy days, and who is fascinated by the sights, sounds, etc., of rain + + + + + + + a beetle of the suborder Adephaga + + + + + + + a non-lethal explosive which emits a large amount of light when detonated, temporarily blinding opponents + + + + + + + any tardigrade of the order Arthrotardigrada + + + + + + + light snack of bread, cheese, and beer eaten between meals + + + + + + + fabric with yarns tie-dyed before weaving + + + + + + + + having a large penis + + + + + + + + bread-like + + + + + + + a poster + + + + + + relating to science fiction + + + + + + + + + + someone against imperialism + + + + + + + money earned from the sale of oil + + + + + + + hybrid mandarin citrus variety + + + + + + Correct, right + + + + + + + Japanese syllabary, mainly used for loan words and scientific terms + + + + + + device repurposed for sexual use that was originated for an unrelated use + + + + + + + moons of moons + + + + + + + + + be very careful about ones actions or words + + + + + + + a rodent in the Muridae family (rats and mice) + + + + + + + rodent in the family Geomyidae (pocket gophers) + + + + + + the number between 35 and 37 + + + + + + the number between 20 and 22 + + + + + + + any bird of the family Troglodytidae + + + + + + + any ant in the family Formicidae + + + + + + of, relating to, or resembling the ostrich + + + + + + + a member of the ostrich genus Struthio + + + + + + + any lizard of the family Gekkonidae + + + + + + of or relating to the moth family Saturniidae + + + + + + + any moth in the family Crambidae + + + + + + + Any beetle in the family Buprestidae + + + + + + + Eucalyptus doratoxylon, a species of eucalyptus + + + + + + abbreviation of 'chapter'/'church' + + + + + + + a member of the rodent family Castoridae + + + + + + + one who uses an abacus for calculation + + + + + + + type of fast moving cold weather front + + + + + + of or relating to the mammal family Castoridae + + + + + + implies affirmation + + + + + + + + + + + uninvite, rescind an invitation + + + + + + + any mammal in the family Tenrecidae + + + + + + destroyed by bombing + + + forced to leave a place because of bombs + + + destroyed or severely damaged as if by bombing + + + extremely dilapidated or run-down + + + homeless through bombing + + + + + + + courtesy clerk at a supermarket + + + + + + + any salamander in the family Hynobiidae + + + + + + of or relating to the marine mammal family Balaenopteridae + + + + + + + washing away of material by rain + + + + + + + type of briefcase + + + + + + + room in which bookings are arranged + + + + + + + wallet + + + + + + (expressing affirmation, agreement, or admiration) + + + + + + + + + unnecessary interruption of a woman by a man + + + + + + + Inuit shaman + + + + + + + (first person plural reflexive pronoun) + + + + + + impertinent; having chutzpah + + + + + + + one of two equal parts of + + + + + + + payment in kind + + + + + + + + + to request assistance + + + + + + prior to a sporting season + + + + + + + Islamic creed declaring belief in monotheism and Muhammad's prophethood + + + + + + + Lesser Hajj + + + + + + + one who or that appears + + + one who formally appears (in court, etc.) + + + + + + + + one who or that causes an event or occurence + + + + + + + branch of zoology that is concerned with the study of mites and ticks + + + + + + + + the study of demons or evil spirits + + + belief in demons : a doctrine of evil spirits + + + a catalog of enemies + + + + + + branch of entomology dealing with bees + + + + + + + + branch of entomology concerned with Hymenoptera + + + + + + + scatology + + + pornography + + + + + + branch of zoology dealing with copepods + + + + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + + + + + + branch of entomology that deals with Hemiptera (the true bugs) + + + + + + + study of the structure of cells + + + + + + the study of extraterrestrial life forms + + + the study of the creation, synthesis, and manipulation of life systems + + + + + + woven from flax + + + + + + + children’s game similar to hopscotch + + + flattened tin can used as a puck in children’s game of the same name + + + + + + concerned, attentive + + + + + + + + + to make silent: deaden + + + + + + + seed of the orange fruit + + + + + + + child + + + + + + the study of hair and scalp + + + + + + + animal pathology + + + + + + + + + science that deals with ferments and fermentation + + + + + + + branch of entomology that is concerned with the Neuroptera + + + + + + geology of the ocean floor + + + + + + + the study of marine insects + + + + + + branch of zoology concerned with worms + + + + + + branch of zoology dealing with earthworms + + + + + + + branch of psychology that emerged during the 1950s as a response to psychoanalysis and behaviorism, that takes the approach that all people are inherently good + + + + + + + branch of psychology devoted to studying similarities and differences in cultures worldwide + + + + + + field of psychology devoted to understanding the individual’s relationship with their community as well as how that community fits in with the larger society + + + + + + area of psychology that centers on using psychological principles to understand consumer behavior + + + + + + + vital energy as an urge to purposive activity + + + + + + psychoanalysis + + + + + + + + a horny band or ribbon in mollusks other than bivalves that bears minute chitinous teeth on its dorsal surface and scrapes or tears off food and draws it into the mouth + + + + + + that operates smoothly + + + + + + triangular, with the apex at the base or pointing downward + + + + + + + soils that have a mollic horizon more than 20 cm deep and also concentrations of calcium compounds within 100 cm of the surface + + + + + + + ring-shaped Turkish bread roll + + + + + + + study of the relationship between the nervous and digestive systems + + + + + + + part of theology treating the doctrine of sin + + + + + + + scientist who studies volcanic phenomena + + + + + + + branch of meteorology that deals with rain + + + + + + + the study of the relationship between human beings and the natural world through ecological and psychological principles + + + + + + + the investigation or analysis of enigmas + + + + + + + branch of biology that deals with electrical phenomena in living organisms + + + + + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + + + + + + + ecology of all or part of a small community (such as a microhabitat or a housing development) + + + microbial ecology + + + + + + + + the practice or study of predicting the participants in or outcomes of elimination tournaments or competitions especially in NCAA college basketball + + + + + + + the study of truth; that part of logic or philosophy which deals with the nature of truth + + + + + + + the study of algae + + + + + + + branch of zoology that deals with the amphibians + + + + + + + + the science of colors + + + + + + + a wind out through a fjord + + + + + + + an examination of the bodily functions and condition of an individual + + + + + + + + branch of zoology that deals with shells + + + + + + + honey (term of endearment) + + + + + + + the correlation in time of biological events using fossils + + + + + + + branch of sociology involved with comparison of the social processes between nation states, or across different types of society + + + + + + + branch of botany concerned with grasses + + + + + + + + the study of how education and society influence each other + + + + + + + the study of substances that stimulate or increase menstrual flow + + + a treat on emmenagogology + + + + + + + the study of, or a treatise on, the plague or pestilential diseases + + + + + + + the scientific study of microseismic activity + + + + + + + the scientific study of mycoplasmas + + + + + + + specialist + + + + + + + the study of the institutional activities of religion (such as preaching, church administration, pastoral care, and liturgics) + + + + + + + the branch of psychology that deals with perception and the interpretation of sensory stimuli + + + + + + + the systematic study of phantasms or other illusions + + + + + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + + + + + + a narrative of the miraculous deeds of a god or hero + + + + + + + the study of brambles + + + + + + + one who specializes in the study of brambles + + + + + + + a double reading or twofold interpretation (as of a biblical text) + + + + + + + the study of food + + + + + + + an interpretation of Christianity which promotes the liberation of black people from oppression, racism, and poverty + + + + + + + a psychology that emphasizes sensory experience as its object of study + + + + + + + the science or study of ferns + + + + + + + the science dealing with watercourses + + + + + + + + the distribution of diseases in a geographical sense + + + the study of subterranean organisms and ecosystems + + + + + + + the study of flowers as related to their environment + + + + + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + + + + + + theology illustrated or enforced by evidences of purpose in nature + + + + + + + + branch of sociology dealing with the study of rural communities and the rural way of life + + + + + + + small-scale sociological analysis that studies the behavior of people in face-to-face social interactions and small groups to understand what they do, say, and think + + + + + + + the study of large-scale social systems, populations, and the broad social processes that affect them + + + + + + + the study of pathways + + + in neuroscience, the study of the interconnections of brain cells + + + + + + + the division of historical events, literature, artefacts, etc., into chronological periods + + + + + + + the study of the nervous system at the cellular (neuronal) level + + + + + + + the study of the embryology of the nervous system + + + + + + + microscopy + + + + + + + a treatise on odours + + + the study of odors + + + + + + + the study of the relationship between human beings and the climate + + + + + + + a branch of physiology that deals with secretion and secretory organs + + + + + + + the study of diseases of fish + + + + + + + J. Braid's name for: hypnotism + + + + + + + the study of snakes + + + + + + + + + + the study of the living organisms, mainly microorganisms and microinvertebrates which live within the soil, and which are largely responsible for the decomposition processes vital to soil fertility + + + + + + + animal physiology + + + + + + + the field of study concerned with the relationship of extinct animals and animal fossils to geology + + + + + + + animal ecology + + + + + + + the art and science of healing + + + + + + + library support staff + + + + + + + the study of the physiology of blood + + + + + + + the study or use of omens; divination + + + + + + + plant physiology + + + + + + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + + + + + + + the branch of biology concerned with congenital defects and abnormal formations of plants + + + + + + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + + + + + + the comparative study of inland waters as ecological systems that interact with their drainage basins and the atmosphere + + + + + + + space weather; the study of the meteorology of near-Earth space + + + + + + + + the study of virginity + + + + + + + the study or practice of fishing + + + ichthyology + + + + + + + the serological study of the prevalence and distribution of a pathogen in a population + + + + + + + the science or study of toreutics + + + + + + + the application of legal requirements to measurements and measuring instruments + + + + + + + subfield of meteorology which deals with the weather and climate as well as the associated oceanographic conditions in marine, island, and coastal environments + + + + + + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + + + + + + the application of statistical correlation techniques to a series of meteorological observations + + + + + + + the study of the interaction between the sea and the atmosphere + + + + + + + + branch of psychology applied to aspects of religious belief and behavior + + + + + + + the use of technology to assist human reproduction in the treatment of infertility + + + + + + + the study of poverty, begging, or unemployment + + + + + + + the art or practice of calculating or casting horoscopes + + + + + + + in mathematics, the étale cohomology groups of an algebraic variety or scheme are algebraic analogues of the usual cohomology groups with finite coefficients of a topological space, introduced by Grothendieck in order to prove the Weil conjectures + + + + + + + technology that avoids environmental damage at the source through use of materials, processes, or practices to eliminate or reduce the creation of pollutants or wastes + + + + + + + technology that automatically identifies and verifies the identity of an individual from a digital image or video frame + + + + + + + + + to make impervious to water vapor + + + + + + + (reflexive third-person singular impersonal pronoun) of its own self + + + + + + would + + + + + + after a certain amount of time + + + + + + + the speech of two + + + + + + + the study of streamflow hydrology and fluvial processes + + + + + + sudden death from overwork + + + + + + + discipline within Christian theology that focuses on the study of the Holy Spirit + + + the study of spiritual beings or phenomena + + + + + + + state of being dysfunctional + + + + + + + the systematic study of folk tales, legends, and the like, esp. with regard to their origin and development + + + + + + + the branch of archaeology which deals with prehistory + + + + + + + the study of the bow in archery + + + + + + + hydrology of continental water masses + + + + + + + the sciences of oceanography, climatology, and biogeography regarded collectively (rare) + + + the geological, chemical, and other processes of the Earth regarded as interdependent and analogous to the physiological processes of a living organism + + + + + + + a holistic vision in which monetary reform, participative democracy, meaningful work, social justice, and equality are all of a piece with renewable energy, organic agriculture, protection of wildlife, recycling, and non-polluting technologies + + + + + + + list of woes; particularly long or tedious list of items + + + + + + + the branch of anatomy which treats of the fleshy parts of the body + + + a theory that a part of the animal body taken into the human system nourishes or affects a corresponding part + + + + + + + + + to litigate again + + + + + + + + + to have a difference in position regarding a decision + + + + + + + + + to be opposed or adverse to + + + to oppose the granting of a patent to a mining claim + + + + + + + inopportune circumstance + + + a woman’s period + + + + + + + day of a momentous event + + + + + + + + instrument of the Western lute family with stopped courses considerably longer than those of a lute and with a separate nut and pegbox for a set of longer, unstopped bass strings + + + + + + intersection of transphobia and misogyny + + + + + + plumose + + + + + + + + + to bind by an oath or solemn engagement + + + + + + + + + to reduce to zero; to eliminate, remove, omit + + + + + + + + + to move or incline at an angle to that indicated by "zag" + + + + + + to be the colour yellow, between orange and green on the visible light spectrum + + + + + + + + + of a geological structure or formation, to present the apparently younger side (in a specified direction) + + + + + + (exclamation of pleasurable anticipation for the taste of food) + + + + + + + + + to force to walk with hands behind the back; to frogmarch + + + + escort + + + + + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + + + + + + + + to produce one or more amine groups + + + + + + + + + to strike out, hit + + + + + + + + + to cause to undergo a change of form, nature, or character + + + + + + + type of heavy coconut-milk-based stew prepared in the Caribbean; boil-up (in Belize), metagee (in Guyana) + + + + + + to be experiencing shame + + + + + + + a discourse or treatise on cartilages + + + branch of anatomy concerned with cartilage + + + + + + + the entire body or colony of a compound animal + + + + + + + + + to flow in or into a canyon + + + + + + + + + to dig, grub about for something; to rumnage + + + + to work out the pillars of abandoned claims + + + in gold mining, to undermine another’s digging + + + + + + + + + (of a man) to have penetrative sexual intercourse with + + + + + + + + + to bend a part of the body towards its dorsal surface + + + + + + + houseleek + + + + + + of consitional allowance for the present + + + (used in borrowed French compounds) of + + + + + + + clumsiness, awkwardness, or gawkiness + + + + + + + a grumpy person who spoils the pleasure of others : killjoy, spoilsport + + + a mean-spirited, spiteful person + + + + + + + Australian aboriginal girl + + + + + + + traditional flooring of Japanese living rooms, but also temples, etc. + + + + + + + the study of the changes in flow properties that occur in certain fluids exposed to electric fields + + + + + + + person who is unwilling to settle for long in one place + + + + + + + a meal served to all guests at a stated hour and fixed price + + + a complete meal of several courses offered at a fixed price + + + a communal table for all the guests at a hotel or restaurant + + + + + + that does, acts, performs + + + + + + that intends; having intentions + + + + + + that strangles + + + + + + on account of; by reason of + + + + + + + + + to abandon a relationship + + + + + + + penis + + + + + + + act of giving thanks; expressing gratitude + + + + + + + inspecific name for various skin diseases + + + scab or the like formed from a skin disease + + + + + + + someone who soliloquizes + + + + + + + + process of adding, deleting, or modifying genetic sequences in living cells to achieve biological engineering goals + + + + + + + a tropical freshwater fish (Paracheirodon innesi) of northern South American streams + + + + + + + a volatile poisonous pale yellow solid, OsO₄, with a pungent smell, used as an oxidizing agent and in solution to stain and fix biological material, especially lipids + + + + + + + writing or painting on or in wax + + + + + + + a quantitative description of the climate in a particular region or country; the branch of physical science which deals with this + + + + + + + examination of objects with the unaided eye + + + abnormally large handwriting + + + + + + + a diagnostic imaging technique that detects and records magnetic fields produced by electrical activity in the brain + + + + + + + a biography which gives particular emphasis to the psychological make-up or development of its subject + + + + + + venography + + + the process of making a tracing made with a sphygmograph that records the pulse in a vein + + + anatomical description of the veins + + + + + + + the process or technique of obtaining salpingograms; visualization of a fallopian tube by radiography following injection of an opaque medium + + + + + + + description of symptoms + + + + + + + the description or study of the planet Jupiter + + + + + + + insecticide that is a stereo-isomer of dieldrin + + + + + + + a method of using pollinating insects to spread a substance that protects plants from pests and diseases + + + + + + + a pollinating insect that spreads a substance to control plant pests and diseases + + + + + + characterized by three poles + + + + + + + adherent of transformational theory + + + + + + + phonological feature of an utterance other than the consonantal and vocalic components + + + + + + + language variety used by a particular social group or class + + + + + + + sound-producing part of an instrument + + + + + + + commodity to be or that has been exported again + + + + + + articulated with the tongue raised towards the palate and its tip against the alveolar ridge + + + + + + pertaining to features and relative position of mountains + + + + + + + instrument used to measure the adaptation of the eye + + + + + + + linguistic macro-system treating variants between dialects as part of a continuum + + + + + + + penetrometer + + + + + + + natural bed for oysters + + + + + + + light, loose-fitting shirt worn by men in hot climates + + + + + + permitted, authorized; not forbidden + + + sanctified; religiously or morally permissible + + + + + + + a unit of computing information that is represented by a state of an atom or elementary particle (such as the spin) and can store multiple values at once due to the principles of quantum mechanics + + + + + + + + the smallest unit of information in a quantum computer, existing in a superposition of two states (1 and 0), and settling on one state or the other only when a measurement of the state is made in order to retrieve the output of the computation + + + + + + + + type of mineral + + + + + + + + + an ancient Greek and Roman stringed musical instrument similar to the lyre + + + + + + + + + a woodwind instrument of the 16th and 17th centuries, typically curved, with finger holes and a cup-shaped mouthpiece + + + + + + + + + belonging to, or relating to an inner-city neighbourhood + + + faithful or in tune with the culture of an inner-city neighbourhood + + + + + + + + + to travel or move by foot; to walk or run + + + + + + + small bowl or container + + + small pick-up truck or ute + + + + + + + formation of barm on a fermenting liquor + + + accruing of interest upon money + + + + + + + + fine, grand, smart or attractive + + + good, great, excellent + + + lovely, sweet + + + + + + + sportsperson taking part in judo competitions + + + + + + + + + to free from schackle or fetter + + + + + + + + + + to undo sewing of + + + + + + + + + to exclude (a person) with coldness and disregard + + + + + + + + + to make cancerous, affect with cancer + + + + + + fourteenth century + + + + + + + + + to make or render artificial + + + + + + + + + to add over and above + + + + + + + + + to convert by contraposition + + + + + + + + + beatify + + + + + + + + + to overlook; to have a view of + + + + + + + + + to give name based on + + + + + + to be distinct, clearly visible + + + + + + + + + to gain access to or acquire more detailed information + + + + + + + study of the ecology of mountains and alpine areas + + + + + + to experience discomfort + + + to be embarrassed, ashamed + + + + + + + shaping of flint by chipping away at it + + + + + + + a visual representation of kinship relations + + + + + + + + + to confirm a girl in the Jewish faith at a bat mitzvah + + + + + + + + + to feed baby milk from a bottle + + + + + + the eating habits and culinary practices of a people, region, or historical period + + + + + + + an economic system or activity that prioritizes gaining status and honor over the accumulation of money or material wealth + + + + + + + the destruction of a cultural or ethnic group through the subversion or eradication of its key social institutions, fabric of beliefs, and/or resource base + + + + + + the concentration within applied anthropology that focuses on the application of anthropological research and findings to projects in community and international development + + + + + + + a person who makes, or seeks to make, proselytes or converts; (in extended use) an advocate or proponent of something + + + + + + + a literary, dramatic or cinematic work whose story precedes that of a previous work, by focusing on events that occur before the original narrative + + + + + + + any of a family (Dicruridae) of insectivorous passerine birds native to Africa, Asia, and Australia that usually have glossy black plumage and long forked tails + + + + + + Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + + + + + (slang) wildly excited or intoxicated + + + + + + + + + to set or adorn with, or as with, ouches; to spangle; to set like a jewel. Usually in past participle + + + + + + + a maker of ouches, buckles, or brooches + + + + + + + + + to pack closely, as sardines in a tin; to crowd, cram, press tightly + + + + + + of or tending to procreation; procreative + + + + + + + churlish quality or state; rudeness, roughness, sullenness, harshness, miserliness + + + + + + + an event occurring every four years + + + + + + + nothing, not anything + + + + zero; nil + + + + + + coated or lined with porcelain or porcelain enamel + + + + + + + the quality or condition of being duplicitous; duplicity + + + + + + + + + to make a sound like that of a kazoo + + + + + + extremely intoxicated by a drug + + + + + + resembling a sponge in appearance or texture; spongy + + + + + + ubiquitous + + + + + + + + + to cut to a steep face, to slope; also to scarp away, down + + + + + + + + + the gateway of a temple in southern India; often : the massive tower resembling a pyramid above the gateway + + + + + + + a firearm that is not registered or trackable; especially one that has been assembled or manufactured by the owner, particularly using 3D printing + + + + + + + not sewn + + + + + + + the act or habit of reading voraciously + + + + + + to one another; one to the other + + + + + + pertaining to gorgonian corals + + + + + + that agrees; conceding or concurring + + + + + + indicted, alleged, charged, arraigned, imputed + + + + + + + a jump in figure skating in which the skater, moving backwards, takes off from the back outer edge of one skate, makes at least one full spin in the air, and lands on the back outer edge of the same skate + + + + + + despite, for, notwithstanding + + + + + + + Middle Eastern wheat and milk dessert dish + + + + + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + + + + + vegetarian + + + + + + + a glacial epoch or period + + + + + + + (with plural reference) your + + + + + + not constrainable + + + + + + base, filthy, worthless + + + + + + not politic, expedient, or judicious; unwise + + + + + + + a type of Italian dry-cured pork salami + + + + + + + one who exaggerates or talks nonsense, especially to bluff or impress + + + + + + + the wife of a dauphin + + + + + + + + act of creation + + + + + + + distortion or malformation of the fingernails and toenails + + + + + + paying close attention to + + + + + + + deal with something + + + answer, pay attention to + + + put an address on, or speak to + + + + + + challenge, nom/nomadj-challenging + + + + + + provide money for + + + + + + (architecture) having windows or windowlike openings + + + (biology) having fenestrae + + + + + + the practice of staying in youth hostels when traveling + + + + + + + + + to stay at hostels overnight in the course of traveling + + + + + + + person, thing, or group that has been isolated, as by geographic, ecologic, or social barriers + + + an individual, population, strain, or culture obtained by or resulting from selection or separation + + + a language isolate + + + + + + + a preparation (such as a lotion or cream) applied to the skin or hair to prevent or relieve dryness + + + + + + + a heritable change that does not affect the DNA sequence but results in a change in gene expression + + + + + + related to an exon + + + + + + + act or process of giving an answer, reply + + + + + + continuing in a place + + + + + + of or relating to agoge or agogics especially to variations in tempo within a piece or movement + + + + + + + the top half of a newspaper, visible when folded in a vendor's rack + + + + + + + throw, sending through the air, manually, projection of an object through space + + + + + + + a process in which a phenomenon is the result of multiple factors + + + + + + having a strong position on something + + + having particular leg-positioning, when standing + + + + + + the game of jacks; dibs, dabstones + + + + + + using a mass spectrometer to analyze substances + + + + + + + discrimination against non-binary gender persons + + + + + + + + resembling or typical of a punk + + + + + + + a synthetic mixed opioid agonist-antagonist with analgesic properties + + + + + + + have a tendency, drift + + + + + + + the position or relation of a colleague; companionship in office, etc. + + + + + + + a person who or (occasionally) thing which placates someone + + + + + + + a large edible mushroom (Boletus edulis) widely distributed in woodlands, having a thick rounded brown cap + + + + + + + + + + to verbally abuse and emotionally manipulate someone, to give a back-handed compliment + + + to give negative feedback + + + express unfavorable sentiment about + + + + + + + to (cause to) lose moisture, desiccate + + + + + + along + + + + + + + utterance of ‘ooh’ + + + + + + + an organism or cell having three complete sets of chromosomes + + + + + + + get together with + + + + + + + prognosticate + + + + + + + deceive, cause to believe a fabrication + + + + + + cause to be frozen, very cold weather condition + + + + + + you, all of you + + + you and people of your kind + + + + + + make seem greater + + + + + + + branch of archaeology that focuses on involving local communities in the process of archaeological research, from planning and excavation to interpretation and presentation + + + + + + + a homology theory that uses pairs of cells instead of single cells, as in classical homology + + + + + + + the science concerned with the desert and its phenomena + + + + + + + the study of the physiology of muscles + + + + + + + the scientific study of the interaction between meteorology and hydrology + + + + + + + + branch of theology dealing with faith + + + + + + + the science and study of the weather and its phenomena + + + + + + (expressing compliance with an order) + + + + + + act or process of using up; exhausting + + + + + + + the science of the physical properties of blood flow in the circulatory system + + + + + + + branch of theology that deals with the doctrinal differences of churches as found in creeds + + + + + + + the branch of psychology that studies the philosophical issues relevant to the discipline and the philosophical assumptions that underlie its theories and methods + + + + + + + to mark the skin with permanent colors and patterns + + + + + + + a branch of theology concerned with summarizing the doctrinal traditions of a religion (such as Christianity) especially with a view to relating the traditions convincingly to the religion's present-day setting + + + + + + humbled/humiliated/degraded + + + + + + + process of making a false duplicate + + + + + + act/process of intervening, acting as a replacement + + + + + + + needless bustle or excitement + + + + + + + + + fulfill + + + + + + + the science and engineering applied to meat production, processing, and preservation + + + + + + having or relating to increased loudness or greatness + + + + + + be in or send to (the) hospital, under care in the hospital + + + + + + + a medical doctor who specializes in diagnosing diseases by examining tissues and cells under a microscope + + + + + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + + + + + + act of sneaking, hanging around in dark places + + + + + + + + + to enter (something) again + + + + + + + + + [slang] to scapegoat, unjustly blame (and punish) someone + + + + + + + + + visit, make use of + + + + + + + + + phrasal aspectual + + + + + + + a gene editing technique used to insert a specific DNA sequence into a target organism's genome, often at a precise location + + + + + + + the study of crystals and crystallization; crystallography + + + + + + + + + + algology: the medical specialty concerned with the study and treatment of pain + + + + + + + a system of beliefs that explains natural phenomena through myths and stories involving supernatural beings or forces + + + + + + + act or process of damaging, destroying, or removing + + + + + + + a philosophical approach that shifts the focus of epistemology from a priori reasoning to empirical investigation, particularly by drawing on insights from the natural sciences + + + + + + relating to, or employing a single system + + + + + + + a theoretical framework in linguistics that proposes that phonological features, like tone or vowel harmony, are represented on separate tiers (or levels) and can be independently manipulated and associated with segments (like vowels and consonants) + + + + + + + to the political, social, and cultural beliefs and values that migrants hold, and how these beliefs intersect with the ideologies of their host societies + + + + + + + the process to become extinct + + + + + + + the study of or a discourse or treatise on spasms + + + + + + + the study of species of organisms + + + + + + (cause to) experience stress (phrasal) + + + + + + + the whirlpool effect of the media in relation to a particular major issue or event + + + + + + + remove, removing using water + + + turn red + + + + + + + act or process of eating small amounts of food between meals (snacks) + + + + + + + act or process of traveling by bicycle + + + + + + + + sticky; overly obsessive, needy + + + + + + + + + to produce a new master recording to improve quality + + + + + + die, expire, dead + + + + + + + + + a small traditional brightly painted wooden fishing boat used in the Ionian and Aegean seas + + + a light skiff used on the Bosporus + + + a Levantine sailing vessel + + + + + + + a diseased state : an abnormal condition + + + + + + + The act of placing in a group + + + + + + + bruise, causing to become or becoming bruised + + + + + + cause inconvenience or discomfort + + + + + + run_down: wear out, tire + + + + + + + + "read up (on):" to study thoroughly or become familiar with by reading + + + + + + fill with contaminants + + + + + + + fight constantly, fight!, long-standing fighting + + + + + + constipated + + + + + + tending to stifle enthusiasm, initiative, or freedom of action + + + + + + + class of bornology + + + + + + + the study of ghosts and related paranormal phenomena + + + + + + + + + the study of fungi producing cleistothecia (closed fruiting bodies) + + + + + + + the study of past human-plant interactions through the recovery and analysis of ancient plant remains + + + + + + + + + arm_up + + + + + + + act of using a vacuum + + + + + + + the principle of association by which people act in collective, self-organized ways in organizing their cultural life + + + + + + + the action or practice of performing a pole vault, especially as a competitor in an athletic event + + + + + + + to cut grass or grain + + + + + + + to leave stranded, left high and dry + + + + + + + remove the acetyl group from a compound + + + + + + disgraceful, infamous + + + + + + + + + up again + + + + + + process of becoming dead (as a group) bit by bit + + + + + + + an adjustable airplane seat that can be made fully reclining + + + + + + + take pleasure in + + + + + + relating to or affected with dropsy + + + + + + + + + give a job to one who has been furloughed + + + + + + + + + to claim (as territory) + + + + + + + + + to preside over as a chairperson with another + + + + + + + process of fusion or stiffening by ankylosis + + + + + + + + + To set the angle of the planets (used in astrology) + + + + + + + The act of automatically calculating the amount of a constituent in a solution + + + + + + being in a crossed position + + + + + + + involuntary urination while asleep + + + + + + + subject to the Bechdel test + + + + + + to hit, completive + + + + + + + + flexible + + + + + + + The process of formation of minerals via microorganisms + + + + + + + act or process of forging metal (especially iron) by hand + + + + + + + a lazy person + + + an uninformed, unsophisticated, immature person + + + a general term of abuse + + + + + + + the classification of names based on their characteristics, such as sound structure (phonology), form (morphology), grammatical function (syntax), and meaning (semantics) + + + + + + + the science and technology of handling and processing particles and powders + + + + + + + + + move in a small, fast increment + + + + + + adapted to, or thriving in, a very dry or desert-like environment; capable of growing and reproducing in conditions with a low availability of water + + + + + + referring to structures, organs, or parts related to the abdomen + + + + + + + natural disaster: wildfire in brush + + + + + + + The act of being filled + + + swelling outward; protruding + + + + + + + + + charge off: emit hastily(?) + + + + + + of or pertaining to the physiological rumbling or gurgling sound from the movement of gas and fluid in the intestines + + + + + + + + + an abnormal narrowing or stricture of a blood vessel or other organ + + + + + + + + + cover completely + + + + + + + + + emboider with worsted yarn + + + + + + + scare + + + + + + + + + to create quickly and sloppily + + + + + + + performing a cone biopsy + + + + + + restrained, lessened, (of vibrating) ceased + + + + + + + + + lose muscle tone or fitness, becoming less adapted to + + + + + + + The act of causing to become unclogged + + + + + + + + + un-install + + + + + + + + + remove lint + + + + + + + + + remove a methyl group from a chemical compound + + + + + + able to be reshaped + + + + + + + + to fart + + + + + + + + + to dance in an energetic manner + + + + + + + escortcel + + + + + + + gaycel + + + + + + + The act of releasing, releasing from a location (not stuff being released itself) + + + + + + + + + compare one set of data against another + + + + + + medical imaging procedure using X-rays to produce cross-sectional images + + + + + + + modulate to a lower level + + + + + + + + acting like a douche bag (jerk) + + + + + + fly, hip, rad + + + + + + + pulling of a sled by dogs + + + + + + + + + looking after a pet dog + + + + + + + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + + + + + bubbling, surging, or flowing of water + + + + gather, pool up (non-phrasal version of 'well_up'); upward motion of water, or as if of water, perhaps from a spring + + + + + + expression of consent + + + + expression of thoughtfulness + + + + + + expression of disagreement + + + no + + + + + + + expression of disgust + + + + + + + + + cause to have feminine qualities + + + + + + turning inside out + + + + + + + to make or become even + + + + + + + + + remove a tube from + + + + + + + + + masturbate + + + + + + seen using a funduscope (eye exam) + + + + + + + + + to keep an aircraft in a hangar + + + + + + + + + form a dimer from two different monomers + + + + + + becoming gray + + + + + + suffering the residual effects of too much alcohol + + + + + + + the act of attending school at home + + + + + + + The act of searching for a new home + + + + + + + book produced prior to 1501, at the dawn of printing in Europe + + + + + + involving the ileum and the cecum + + + + + + + + + cause to weaken or endanger the immune system + + + + + + + + + + + understand basic information regarding a subject + + + + + + make or become harder, hardened + + + + + + + act or process of transferring genetic material into another individual + + + + act or process of transferring genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + act or process of transferring genetic material non-reproductively, usually by horizontal gene transfer + + + + + + + + + connective tissue between myotomes in fish flesh + + + + + + + child of a person’s paternal uncle + + + child of a person’s brother + + + + + + + a procedure in which all or part of the rectum is removed via entry through the abdomen + + + + + + + + + use or employ + + + + + + + act or process of arranging in layers + + + + + + put firmly + + + + + + faint earth tremor, caused by water waves in oceans/lakes + + + + + + + become stone-like (but so small the naked eye cannot see) + + + + + + occurring at different times (contrasts with recurrence: a metachronous cancer is a new, different cancer, not a recurrence of the prior cancer) + + + + + + + bringing to market or open-market-style managment + + + + + + + surgical removal of lymph nodes + + + + + + having one stage + + + + + + + + + hunt a species or area to the point of damaging the herd + + + + + + marked by or containing untrue statements : false + + + of a person, his or her lips, etc.: That tells lies + + + + + + not belonging to a particular area + + + + + + benign, not causing alarm + + + + + + + + concert hall or theatre + + + + + + + + + Convert light energy into chemical energy + + + + + + + utterance of French word of negation + + + + + + + writing a play + + + + + + + make very very dry + + + + + + + + + use motorized transport to sail through the air via parachute or other airdrag/airgliding tool + + + + + + (cause to) move in \/\/\/ fashion + + + + + + torture by simulated drowning + + + + + + separate with walls + + + + + + wait out: endure, outlast, enduring, lasting + + + + + + adhering to a strick no meat/no animal byproduct diet + + + + + + not valued highly enough + + + + + + acquire a tubular shape + + + + + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + + + + act of official registration in advance + + + + + + to test in advance + + + + + + the act of reading (copy or printer's proofs) to detect and mark errors to be corrected + + + + + + + removal of all or part of the rectum + + + + + + to gather lips into folds (as if to kiss) + + + + + + to inflate, literally or figuratively (as with air, value, or excitement) + + + + + + the act or practice of recording important information for future reference + + + + + + to discuss or argue about again + + + + + + charge with a crime again + + + + + + the act or process of re-introducing or re-admitting + + + + + + engrave again + + + + + + to put into, between, or among again + + + + + + to break a law or rule again, often after punishment or treatment; to recidivise + + + + + + able to be removed surgically + + + + + + + the making of photocopies + + + + + + + + + not yet be determined or known + + + + + + vaccinating again + + + + + + act of causing to be in a coil + + + + + + to approve without giving it much thought + + + + + + cut with a saw + + + + + + the process of forming a protective crust or cover + + + + + + + the formation of lasting signs of damage + + + + + + to (idiomatically) die + + + + + + to inform or provide information; to help to understand + + + + + + act or process of removing in flaky chunks + + + + + + to cause a narrowing or constriction of the diameter of a bodily passage or orifice + + + + + + act or process of saturating partially or incompletely + + + + + + incompletely saturated, not saturated enough + + + + + + having four homologous sets of chromosomes + + + + + + fill up completely when only partially empty + + + + + + able to be treated (especially medically) + + + + + + + staff car + + + + + + the number between four and six + The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + + + + + the number 11 + + + + + + + + + + + perhaps, possibly + + + permitted to + + + + + + + Used before a verb to indicate the simple future tense in the first person singular or plural. + I shall sing in the choir tomorrow. + I hope that we shall win the game. + + + + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + A history of public transportation in Kansas City, from cable cars to buses and beyond + + + + + + + + + to bring palm of hand to one’s face in ostentatious expression of dismay + + + + + + the whole amount, quantity, or extent of + + + every member or individual component of + + + any (whatever) + + + nothing but; only + + + + + + conditional conjunction + + + + + + for the reason that; the fact that + + + + + + over; higher than; further away from the ground than + + + + + + + By the length of; in a line with the length of; lengthwise next to. + Water whished along the boat as we rowed upstream. + + + + + + on the other side of, further + + + + + + all, each + + + + + + not any of a group + + + + + + in the middle of + + + + + + + + in the near future + + + + + + various + + + + + + Yes. + —You wanna get pizza for dinner? —Yeah, all right. + + + + + + (informal) of quality that is pleasing to human senses + + + + + + + competence to make a personal and professional development largely independent of external influences + + + + + + greeting used when meeting someone + + + + + + on top of + + + + + + + semi-friendly term of address (for male person) + + + + + + + + + to add to, lengthen + + + to get/move/remove with great effort + + + + + + final, ultimate, coming after all others of its kind + + + + + + chemical element with atomic number 112 + + + + + + chemical element with the atomic number of 116 + + + + + + expressing a desire for something to depart + + + + + + goodbye, likely for a long time + + + + + + + cigar filled with cannabis + + + + + + + date according to fictional time measurement system in Star Trek + + + + + + + abnormal sound generated by turbulent flow of blood in an artery + + + + + + + + + inject liquid to force an opening for extraction of oil or gas. + + + + + + + irregular surface approximating the mean sea level + + + + + + + piece of media that has been edited and re-released + + + + + + connected, bridgeless cubic graph with chromatic index equal to 4 + + + + + + + expression of gratitude + + + + + + two + But the warm twilight round us twain will never rise again. + Bring me these twain cups of wine and water, and let us drink from the one we feel more befitting of this day. + + + + + + expression of great pleasure + + + + + + land use management system in which trees or shrubs are grown around or among crops or pastureland + + + + + + political movement that developed in 19th-century Britain in opposition to disestablishmentarianism + + + + + + discovery, interpretation, and communication of meaningful patterns in data + + + + + + + + + to connect by means of an interface + + + + + + the use of biological molecules, structures, or processes in computing or information processing applications + + + + + + + any substance that has been engineered to interact with biological systems for a medical purpose + + + + + + + those portions of Earth's surface where water is in solid form + + + + + + + study of skin diseases + + + + + + + neurological disorder + + + + + + the science that studies how water in all its forms links living organisms and their abiotic environment to define their function, interactions, structure, and distribution + + + + + + natural number + + + + + + natural number + + + + + + + science of innovation + + + state of being an entrepreneur + + + + + + engaged in extracting + + + + + + + structural feature of Earth's geography + Crustal methods for studying geostructure are most interesting, but their discussion, if adequate, would be too lengthy to be included in this paper. + + + + + + fast, speedily + + + + + + branch of medicine dealing with liver and related organs + + + + + + + biological development process + + + + + + + small woodland + + + + + + pertaining to horology + + + + + + study of wetlands + + + + + + pertaining to hydrometeorology + + + + + + capable of being implanted + + + + + + (to do with position or direction) in, on, at, by, towards, onto + + + (to do with separation) in, into + + + (to do with time) each, per, in, on, by + + + + + + + + + motorcycle part + + + strong start + + + + + + + + + start strongly + + + + + + medical specialty dealing with the larynx + + + + + + + scientist who studies malaria + + + + + + + sea farming + + + + + + study of electronic and mechanical systems + + + + + + serving to remember something + + + + + + + substance harmful to microorganisms + + + + + + relating to minerals + + + + + + + definition by periphrasis + + + + + + involving multiple political parties + + + communication among multiple participants + + + + + + giving rise to myths + + + + + + + building things at the scale of individual molecules + + + + + + + fiber with nanometer-scale diameter + + + + + + + particle at the nanometer scale + + + + + + + nanoscale sphere + + + + + + + study of chemistry of nervous system + + + + + + + forest with mostly oak trees + + + + + + + + + replace local with overseas workers + + + + + + preventative branch of psychiatry + + + + + + pertaining to orthopsychiatry + + + + + + + orthopedic appliance + + + + + + pertaining to osteopathy + + + + + + + process of making measurements from photographs + + + + + + pertaining to phycology + + + + + + pertaining to phytopathology + + + + + + + branch of astronomy that deals with the condensed matter of the solar system and especially with the planets and their moons + + + + + + + type of quasiparticle + + + + + + with many cysts + + + + + + + one who studies primates + + + + + + + one who profiles + + + + + + + one who proves + + + + + + relating to or suffering from quadriplegia + + + + + + + + + innervate again; particularly by restoring function by supplying with nerves + + + + + + in reference to earthquakes or other vibrations + + + + + + + study of sex + + + + + + + branch of science concerned with inferring the three-dimensional properties of objects or matter ordinarily observed two-dimensionally + + + + + + component of a cell + + + + + + + material able to conduct electricity with no losses + + + + + + + + + exhibit the phenomenon of superconductivity + + + + + + + physical phenomenon + + + + + + + liquid applied to the shaved area of the face after shaving + + + + + + + plane curve, 4-cusped hypocycloid + + + + + + + a transgender person’s name before transitioning + + + + + + + characteristic of city dwellers + + + + + + + a large flightless parrot species + In captivity the kakapo is said to show much intelligence, as well as an affectionate and playful disposition. + New Zealand possesses a surprisingly large number of birds capable of flight, but many of the ground-feeders, having no natural enemies from which to escape by flying, have lost this power, and hence such examples as the weka and the kakapo. + + + + + + + + + to tweak or weaken a component of a game + + + + to make something less effective + + + + + + + branch of biology that deals with the spread of alien species + + + + + + having non-normative or queer gender identity and gender expression + + + + + + + gesture + + + + + + + profession + + + + + + + type of circuit board that other components attach to + + + + + + type of politics + + + + + + + type of swamp + + + + + + + type of small boat + + + mexican dish + + + + + + + alcoholic drink typically served after a meal + + + + + + + verse with twelve syllables per line + + + + + + + house with low environmental impact + + + + + + + type of stuffed pastry + + + + + + + horse riding + + + + + + + craftsperson who creates decorative sculpted surfaces and sculptural detail for walls and ceilings in stucco + + + + + + branch of science dealing with geology and the biosphere + + + + + + study of geology and microbiology together + + + + + + study of sundial construction + + + + + + medical procedure performed outside the body + + + + + + + branch of paleontology that studies fossil footprints + + + + + + + + pre-16th century book or other printed item + + + + + + study of lichens + + + + + + + study of toxins produced by fungi + + + + + + in an engrossing manner; suggesting great interest/full attention + + + + + + throughout the day + + + for the length of an entire day + + + + + + orientation of two items with fronts facing away from each other + + + + + + emphasizes that what you are saying is true + + + + + + with warm friendship + + + + + + in a bisexual manner + + + + + + in a fashion suggesting the absence of clouds + + + + + + abrupt cessation of a substance dependence + + + + + + musical term + + + + + + as a possibility : in respect to a tendency or to a future eventuality + + + + + + In a dark or dusky manner. + + + + + + without firm basis/support/footing, aimlessly/without direction + + + + + + in a freezing manner + + + + + + relating to choosing, cooking, or eating good food + + + + + + in a glistening manner + + + + + + impiously/without God (in a godless manner) + + + + + + in an impolitic manner; not in accordance with good policy; inexpediently + + + + + + بِ إسم أللَه + + + + + + in a juridical manner + + + + + + done in manner that lacks limbs or resembles as much + (Their paintspeckled hats wag. Spattered with size and lime of their lodges they frisk limblessly about him.) + + + + + + joylessly/humorlessly/without mirth + + + + + + with a sense of loss + + + + + + done in a manner that favors free markets, deregulation and devolution + + + + + + In a prepositive position. + + + + + + bewilderingly/confusingly (in a puzzling manner) + + + + + + immediately + + + + + + done in an untidy or shabby fashion + + + + + + (manner of placement) under the tongue + + + + + + by means of/in terms of/according to typology + + + + + + In a vainglorious manner. + + + + + + without speech/utterance, silently (in a voiceless manner) + + + + + + in a weightless manner + + + + + + whenever; at any time at all + + + + + + In what way; how. + + + + + + over there + + + + + + + scientist studying nervous-system hormones + + + + + + + the study of human actions and conduct + + + + + + + early stage in formation of a planet + + + + + + + type of loudspeaker + + + + + + + heavy, smooth cardboard coated with a ground that has sufficient roughness for the application of oil paint + + + + + + + abstract description of molecular features that are necessary for molecular recognition of a ligand by a biological macromolecule + + + + + + + group of methylating enzymes + + + protein in Schistosoma mansoni + + + + + + + pathogen's ability to infect hosts + + + + + + + an enzyme that occurs chiefly in cholinergic nerve endings and promotes the hydrolysis of acetylcholine + + + + + + + The sequence of reactions within a cell required to convert absorbed photons into a molecular signal. + + + + + + + In physics, a dynamic variable that can be measured + + + + + + + a small-scale two-dimensional array of samples on a solid support + + + + + + + act or process of separating an antigen from a solution using an antibody that binds to the antigen + + + + + + + An organism that thrives in extremely hot environments from 60*C upwards + + + + + + + simultaneous infection of a host by more than one pathogen + + + + + + cellular catabolic process in which cells digest parts of their own cytoplasm + + + + + + + term + + + + + + + biome of microbes + + + + + + + + + to take a quantity away from or out of another + + + to move, sink, or push under + + + + + + + profession + + + + + + + process used to prevent someone's personal identity from being revealed, as a way to preserve privacy + + + + + + carrying genetic information or being involved in the transcription or translation of proteins + + + + + + study of biological toxins, especially animal venoms + + + + + + study of the transcriptome + + + + + + + celebration on a day other than the person's birthday + + + + + + + + + to convert a substance into resin + + + + + + + + + parenthetical discourse expression "quote unquote" + + + + + + + + + to reduce to carbon + + + to make to convert to carbon + + + + + + + + + to divide the heavens into twelve equal parts by means of great circles + + + + + + + + + to render balmy + + + + + + + + + to display again + + + + + + + + + to make peace to + + + + + + + + + re-examine + + + + + + + + + to treat as an indifferentiated mass + + + + + + Next to; beside. + The house adjacent to the school was demolished. + A notice was sent to the house adjacent the school. + + + + + + use of an electrically heated wire or scalpel to treat hemorrhage and to ablate tumors, mucosal lesions, and refractory arrhythmias + + + + + + + group of similar haplotypes that share a common ancestor having the same single nucleotide polymorphism (SNP) mutation in all haplotypes + + + + + + + + formed when a collection of nonlinear processes act together upon a pump beam in order to cause severe spectral broadening of the original pump beam + + + + + + + guidance relationship in which a more experienced or more knowledgeable person helps to guide a less experienced or less knowledgeable person + + + + + + + process that caused the matter in the universe to reionize early in the history of the universe + + + + + + + physical system that responds to a restoring force inversely proportional to displacement + + + + + + + act of quenching something + + + + + + + agents that emit light after excitation by light + + + + + + + one who provides care as an occupation + + + + + + + with respect to a given category, a more narrow category + + + in mathemaics, a category, whose objects and morphisms are inside a bigger catetgory + + + + + + + creation of copies + + + + + + + + + to experience orgasm + + + + + + + salt or other derivative of disulfane or organic compound having the structure RSSR (R ≠ H) + + + + + + + account of events in a particular year + + + + + + Burst of light triggered by soundwave + + + + + + + a structure formed in a cave by the deposition of minerals from water, e.g., a stalactite or stalagmite. + + + + + + + tendency of a material to change the value of its electrical resistance in an externally-applied magnetic field + + + + + + + cell type + + + + + + + state of a system or a process in which the variables which define the behavior of the system or the process are unchanging in time + + + + + + + Membrane associated dimeric protein (240 and 220 kDa) of erythrocytes. Forms a complex with ankyrin, actin and probably other components of the membrane cytoskeleton, so that there is a mesh of proteins underlying the plasma membrane, potentially res + + + + + + + group of tetraterpenes, with four terpene units joined head-to-tail + + + + + + + The covalent attachment of a prenyl group to a molecule; geranyl, farnesyl, or geranylgeranyl groups may be added. + + + + + + + protein in Schistosoma mansoni + + + + + + + A sensory receptor that responds to mechanical pressure or distortion + + + + + + property of a disease + + + + + + + enroachment of saline water into freshwater + + + + + + Ice formed from frozen seawater + + + + + + + human disease + + + + + + + study of the right use of words in language + + + + + + + perovskite, oxide mineral + + + + + + + + + third-person singular neopronoun + + + + + + emotionally helpless person + + + person with no limbs + + + + + + process of writing a compiler (or assembler) in the source programming language that it intends to compile + + + + + + production of an analysis that corresponds too closely or exactly to a particular set of data, and may therefore fail to fit additional data or predict future observations reliably + + + + + + ability of something, especially a piece of content or information, to be found + + + + + + + romantic attraction towards person(s) of two or more genders (biromanticism) + + + + + + + person who works at a post office + + + + + + + + + give sexual pleasure to + + + + + + form of interpersonal relationship + + + + + + + colleague in Swedish and Finish education systems + + + + + + + vigorous spirit or enthusiasm + + + distinctive style or flair + + + + + + + + + To agree with a proposition or statement after it has already been seconded. + + + + + + in the middle of + + + + + + in an unsuspected manner; without being suspected + + + + + + Except; with the exception of. + + + + + + Between. + + + + + + From one side to the other side of; across. + The stars moved slowly athwart the sky. + + + + + + as a result of which + + + on top of which + + + + + + nevertheless + + + + + + + individual person as the object of his or her own reflective consciousness + + + + + + + A term of asseveration: indeed!, in truth! + + + + + + Used to express anger, excitement, surprise, etc. + Blimey! I didn’t see that! + Blimey! Where did you come from? + + + + + + At the end of religious prayers: so be it. + + + + + + Form of hmm + + + + + + interjection used to express disdain or reproach + + + + + + An exclamation used in songs of praise or thanksgiving to God. + + + + + + Expressing anger, annoyance or frustration. + Drat! I forgot to post these letters. + + + + + + A common toast used when drinking in company. + + + + + + An informal greeting. + Howdy folks, and welcome to our ninth annual chili cookoff! + + + + + + Used after a pause for thought to introduce a new topic, question or story, or a new thought or question in continuation of an existing topic. + So, let's go home. + So, what'll you have? + So, there was this squirrel stuck in the chimney... + So, everyone wants to know – did you win the contest or not? + + + + + + (used to emphasize the truth of a statement) + + + + + + A mild curse or expression of surprise. + + + + + + an exclamation meaning "long live ..." + + + + + + long live! (battle cry) + + + + + + Onward; a rallying cry for progress. + + + + + + + + third person singular neopronoun + + + + + + + process of finding and resolving defects or problems within a computer program + + + + + + expresses hostility + + + + + + yes + + + + + + + word which occurs in a text more often than we would expect to occur by chance alone + + + + + + + acronym where the full form is not widely known + + + + + + + name used for a place which is not used by the people of that place + + + + + + + word with a broader meaning + + + + + + A diagram used to represent words, ideas, tasks or other items linked to and arranged radially around a central key word or idea. + + + + + + augmentation of intelligence through the use of information technology + + + + + + + measure to prevent an incident, disease, etc. + + + + + + political movement + + + + + + + + + + to pseudo-anonymize; to pseudonymize + + + + + + organism occurring in a new habitat + + + + + + Estimate of how an atmospheric gas affects global climate change + + + + + + emission rate of a given pollutant relative to the intensity of a specific activity, or an industrial production process; e.g. grams of CO₂ released per megajoule of energy produced, or the ratio of greenhouse gas emissions produced to GDP + + + + + + + thresholds that, when exceeded, can lead to large change in the earth system + + + + + + distinct layer in a large body of fluid in which temperature changes more rapidly with depth than it does in the layers above or below + + + + + + + main group of bicycle riders + + + + + + referring to a sports game or team featuring the best players + + + + + + heading toward an objective, forwards + + + + + + almost finished + + + pertaining to the penultimate round of a tournament + + + + + + + official position + + + + + + relating to oaks + + + + + + + type of household for statistical purposes + + + + + + + + ordinal number for 25 + + + + + + + member of a council + + + + + + + form used to document informed consent + + + + + + + anti-pattern in voluntary communities where someone takes responsability for a task, does nothing about it and then puts it back up for grabs + + + + + + + + + + write together + + + + + + expression of encouragement prior to a performance + + + + + + + + + slang vulgar term meaning to have anal intercourse with + Cut to Dylan on all fours screaming "Harder, Faster!" as David cornholes him doggy style in the sauna. + To her surprise she realized that unlike the previous two anal poundings she had received, this one barely hurt as he cornholed her. + + + + + + expression of gratitude + + + + + + having no gender + + + + + + مربوط به ربوخه + + + + + + + match, mate together, couple + + + + + + + grandchild + + + + + + + manual stimulation of a man's penis by another person + + + + + + + an attractive (cute) person + + + + + + + theoretical spacecraft propulsion system in many science fiction works, most notably Star Trek + + + hypothetical mode of transportation by warping space + + + + + + + mythical race of bulky humanoid creatures + + + + + + + attraction de parc de loisirs + + + + + + The state of being estranged or alienated + + + + + + + village road + + + + + + + a transphobic person + + + + + + + fossil preservation process + + + the study of fossil preservation + + + + + + + fictional space flight organization + The names of Starfleet vessels can tell us a lot about the cultural traditions that were foremost in the minds of the creators of the franchise. + + + + + + + ethological class; "gardening traces," systematic burrow networks created by an organism + + + + + + + ethological clas; trace fossils that show evidence of predatory behavior + + + + + + + Star Trek weapon + A modern bat'leth is typically 116 centimeters long, composed of baakonite metal, weighing 5.3 kilograms. + Koloth, Kor, and Dax raised their bat'leths seconds later, guttural cries coming from each of them. + + + + + + That congregate or flock together + + + + + + + type of rechargeable battery + + + + + + + act of documenting something before its official discovery + + + document providing evidence of something before its official discovery + + + + + + + overall facility for launching and/or receiving spacecraft + + + + + + + + + space based fascillity where spacecraft can dock + The large space hangars and space dock to­gether would enable the establishment of a standardized space maintenance process that integrates system design, in-space assembly, scheduled and unscheduled servicing, technician training, and spares management. + + + + + + + deep-fried strips of potato + + + + + + + + + to die + + + + + + + + + to add a geotag to digital content; to provide geographic information (especially locations, such as coordinates) via metadata + + + + + + + + + to excessively apply digital beauty filters to an image + + + + + + romantically attracted to members of the same sex or gender + + + + + + attraction to all genders + + + + + + transgender with a partially or fully feminine gender identity + + + + + + + attraction not limited by gender identity + + + + + + seriously + + + + + + + + having 2 phases + + + + + + + one who resurrects + + + + + + + + + defecate + + + + + + + one who harasses other players in a game + + + + + + + + an image macro of one or more cats + + + + + + + Any plant in the genus Chorizanthe + + + + + + + Any beetle of the subfamily Melolonthinae + + + + + + + any insect of the family Lepidopsocidae + + + + + + drunk + + + + + + + + drunk + + + + + + unable to be found in a Google search + + + + + + + + a dish of rice, black-eyed peas, and bacon or pork + + + + + + + + ideogram that conveys its meaning through its pictorial resemblance to a physical object + + + + + + + element of computer graphical interface + + + + + + + somewhat more censored form of “motherfucker”, a common insult and profanity + + + + + + + the study of beetles + + + + + + + any spider in the family Sparassidae + + + + + + + + Lepidochelys olivacea + + + + + + + person who works in the boiler construction or repair trade + + + whiskey with beer as a chaser + + + + + + + Sedum moranense + + + + + + + any moth of the family Tortricidae + + + + + + + any snake in the family Leptotyphlopidae + + + + + + + any reptile of the order Squamata + + + + + + + a black person + + + + + + relating to the Lepidoptera, the butterflies and moths + + + + + + interjection meaning "As long as you're healthy [you can be happy]." + + + + + + + creating, promoting and exploiting stars in Hollywood films + + + set of non-stellar objects in orbit around a star + + + + + + + type of n-gram consisting of one word + + + + + + + penis + + + + + + + + + to praise or flatter someone excessively in order to gain his or her favor; to curry favor with + + + + + + + title or position for a female inspector + + + + + + + + + gigantic tentacled sea monster of Scandinavian myth + + + + + + + twighlight at roosting time, light of the morning sunrise + + + + + + excrement, dung, usually used figuratively; equivalent to general English "shit" + + + + + + + ریشمی ڈورا + + + + + + + + + to incorporate apparently LGBTQ characters and relationships into media with the intent of drawing an LGBTQ audience + + + + + + + small plastic particle in the environment generally smaller than 1 mm + + + + + + + スーパーセンテナリアン、110歳以上の人 + + + + + + + a half-bottle (now 375 ml) of spirit, usually sold in a flattened pocket-size bottle + + + + + + + + insulting name for an Afrikaner + + + + + + + elastic band + + + + + + made for that particular day, as in a dish in a restaurant + The soup du jour is roasted red pepper and tomato. + + + very popular or fashionable at a particular time + Long hair was the style du jour. + + + + + + of the family Carabidae + + + + + + + the practice of tracking people online + + + + + + + (reflexive pronoun for the first person singular) + + + + + + + text messaging service component + + + + + + + person with red hair + + + + + + made of brass + + + + + + + settlement with little or no value + + + + + + + something that is small + + + + + + occurent three times + + + + + + + + + accept + + + + + + + garden or park which comprises mainly of roses + + + + + + + very conventional person who often has a lot of inhibitions + + + a person who spends as little money as possible + + + + + + without tea + + + + + + + an evergreen Australian tree (Cupaniopsis anacardioides) of the family Sapindaceae + + + + + + + last piece of cloth left from a bale + + + + + + + a mammal in the family Herpestidae + + + + + + + rodent in the family Bathyergidae (blesmols and mole rats) + + + + + + + a rodent of the family Sciuridae (squirrels) + + + + + + + a member of the mammal family Ornithorhynchidae + + + + + + the number between 22 and 24 + + + + + + + ritual of moving around a sacred object or idol + + + + + + + any fish of the family Acipenseridae + + + + + + + a fish of the family Percidae + + + + + + + a tree frog of the family Hylidae + + + + + + + any member of the bird family Turdidae + + + + + + + any member of the bird family Phylloscopidae + + + + + + + a mammal in the family Trichechidae + + + + + + (almost exclusively in combinations) having thighs (when in combination, of a certain nature of thighs) + + + + + + + Sundasciurus tenuis + + + + + + + a mythical or fictional organism which some presume to be real or is presumed to be real with little evidence of its existence + + + + + + + Remigration + + + + + + + stealing livestock through driving them away + + + + + + + one who steals livestock by driving them away + + + + + + imperfect or defective + + + + + + faith in Islam + + + + + + + unsorted wheat flour + + + + + + + (term of affection for a beloved person) + + + + + + Islamic expression of reverence + + + + + + + + + wrestle + + + + + + + + any member of the bird family Picidae (the woodpeckers) + + + + + + cyberattack intended to redirect a website's traffic to another + + + + + + + + + to condescend to a woman in a manner characteristic of male chauvinism + + + + + + + bundle of hay + + + + + + + literary genre + + + + + + + + + continue with one's activities + + + + + + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + + + + + person who walks for show, amusement + + + + + + + + good + + + + + + + feldspathoid mineral + + + + + + + post-larval stage in life cycle of Malacostraca + + + + + + + in heraldry, wings displayed and joined at the base + + + + + + + + + + + + + to be deemed valuable + + + + + + + + + to sign an additional time + + + + + + + branch of botany that deals with the grasses + + + + + + + branch of zoology concerned with the cetaceans + + + + + + any of the branches of science dealing with snow or ice accumulation, glaciation, or glacial epochs + + + + + + branch of zoology concerning the crayfishes + + + + + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + + + + + + branch of entomology concerning the Orthoptera (grasshoppers, crickets, etc.) + + + a treatise on the Orthoptera + + + + + + study of diseases of trees + + + + + + branch of geomorphology concerned with the study of ancient topographic features now either concealed beneath the surface or removed by erosion + + + + + + + cry of “ouch,” in expression of pain or discomfort + + + + + + study of the relations between humans and animals + + + the animal lore of a race or people + + + + + + + officer charged with the administration of the health laws + + + + + + + branch of linguistics or philosophy concerned with meaning in language + + + + + + + coffee taken at breakfast or mid-morning + + + + + + + the study of the devil or devils + + + + doctrine or beliefs concerning the devil; devil lore + + + + + + + study of the interactions between the Earth's biosphere and the lithosphere + + + + + + the study of the Sun + + + + + + + the study of heresies + + + a treatise on heresies + + + + + + + the study of horses + + + skill or expertise in horsemanship + + + + + + (a colloquial American plural form of the second person plural pronoun) + + + + + + aloud, audible + + + + + + the symptom complex of a disease + + + branch of medical science concerned with symptoms of diseases + + + + + + + + branch of science concerned with the study of wetlands (such as peat bogs or swamps) + + + + + + (imprecative) damn, damnation + + + + + + in positive contexts; different, the other of two alternatives, an additional + + + + + + nor (with another negative, expressed or implied) + + + + + + sharing attributes with another or with self at another time + + + + + + Japanese silk resist-dyeing technique + + + + + + + kanat; underground channel directing water from the interior of a hill to a village + + + + + + + animal pathology + + + + + + + + the study of the microorganisms (bacteria, archaea, viruses and microbial eukaryotes) in the marine environment + + + + + + branch of zoology concerned with helminths; especially: the study of parasitic worms + + + + + + + the study of how exercise alters the function and structure of the body + + + + + + + + the study of man as a psychosomatic unity + + + + + + + branch of psychology interested in personality development + + + + + + the study of the components and constituents of consciousness specifically by introspective methods + + + + + + + of or relating to horme; specifically: purposively directed toward a goal + + + + + + branch of psychology focusing on understanding all aspects and influences of criminal behavior, including the myriad factors that contribute to criminal actions + + + + + + the study of paleopsychic phenomena + + + + + + + profane oath + + + + + + connived at, tolerated + + + + + + + absolute form of a word; subject case in opposition to an ergative or relative case + + + + + + + the fusion of 2 (usually haploid) nuclei during sexual reproduction, resulting in the formation of a diploid zygote + + + + + + according to + + + + + + + zoogeography + + + + + + + half-transitive + + + + + + + high-ranking chief; firstborn child in a prominent family + + + + + + + study of fossil plants + + + + + + + + + person who studies fossil birds + + + + + + + cake made with carrots + + + + + + + the study of cactus spines or euphorbia thorns grown in time ordered sequence + + + + + + dogmas collectively; the science of dogma + + + + + + + the branch of knowledge concerned with signs, esp. in relation to thought and knowledge; the study of signs; semiotics + + + the study or description of meaning in language; semantics (Now rare) + + + the art of interpretation by signs (Obsolete. rare) + + + + + + the science of magnets and magnetism + + + + + + + study of ecological processes in agriculture + + + + + + + + the study of large-scale behavior of the atmosphere + + + + + + + + the gross structures or morphology of an organism, mineral, or soil component visible with the unaided eye or at very low levels of magnification + + + + + + + the study of zygotes + + + the science of joining and fastening things together + + + + + + + the use of paradoxes + + + + + + + the science of medical remedies + + + + + + + the study of inanimate nature; science other than biology or the life sciences + + + + + + + incorrect use of language + + + + + + + the scientific study of amber + + + + + + + human morphology + + + the use of anthropomorphic language especially in application to God or a god + + + + + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + + + + + + the study of humans as an agent of landscape change + + + + + + + street vendor of produce (arable goods) + + + + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + + + + + + + the study of social interaction in terms of analogy with the vital processes of the living organism + + + + + + + branch of entomology that studies insects that benefit or harm humans, domestic animals, and crops + + + + + + the use of chemistry and chemical techniques to study biological systems + + + + + + + the study of the adaptation of human societies or populations to their environments + + + + + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + + + + + + branch of zoology dealing with the echinoderms + + + + + + + the practice of electrical hair removal to permanently remove human hair from the body + + + + + + + the study of reproduction + + + + + + + the scientific study of color + + + pseudoscientific alternative medicine method using colored light + + + + + + + the study of the relationship between the morphology of organisms and their ecology + + + + + + + the study of medicines derived from naturally occurring substances like plants and fungi that have been traditionally used by specific groups of people for medicinal purposes + + + + + + + the branch of physics which relates to the humidity of the atmosphere or other bodies + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + + + + + + + the study of the properties and effects of opium + + + + + + + the physiology of sensation and sense organs + + + + + + + a reply to an apology, especially to a written defence or justification of religious opinions + + + + + + + the branch of archaeology that deals with the apparent use by prehistoric civilizations of astronomical techniques to establish the seasons or the cycle of the year + + + + + + + + the study of the chronology and periodicity of celestial objects + + + dating of sedimentary units by calibration with astronomically tuned timescales + + + + + + + the classification of human beings by body type or other morphological, physiological, or psychological characteristics + + + + + + kind, helpful + + + + + + + the branch of theology which deals with religious truth in relation to spiritual needs. + + + + + + + the scientific study of personality; the study of the way behaviour is related to personality + + + + + + + branch of medical science dealing with the effects of drugs in populations + + + + + + + a systematic view of all knowledge + + + + + + + a philosophical theory about monads; specifically: Leibnizian monadism + + + + + + + the scientific study of sand + + + + + + + the study or science that treats of the tides + + + + + + + + + to overcome through subtlety and skill rather than brute force + + + to steal + + + to play a card in contract bridge + + + + + + + dialling tone, sound made after dialing on telephone + + + + + + + technology in computer systems that allows for direct access to stored items using partial contents of the item in question + + + + + + + the study of inanimate nature + + + + + + + bad choice of words, diction, or poor pronunciation + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + discussions or treatises about giants + + + + + + + positive integer equal to the sum of its positive proper divisors + + + + + + + form of medical practice based on two concepts: that a broad range of environmental chemicals and foods can be responsible for an illness in which an unlimited variety of symptoms occur in the absence of objective physical findings, pathologic abnormalities, or specific, abnormal results of laboratory tests; and that the immune system is functionally depressed by many environmental chemicals + + + + + + + toy made of rubber (often used in the bath) + + + + + + + + + title bestowed on a former Speaker of the House of Representatives in the United States who has left the position but continues to serve in the House as a backbencher + + + + + + + a person who is very interested in politics + + + + + + + + + to temporarily postpone consideration of a motion or bill + + + + + + + a strategic series of meetings, events, or visits conducted by a politician or candidate to gather input, concerns, and perspectives from constituents or specific groups + + + + + + the form in which something was actually constructed + + + + + + + a system of knowledge or belief built around biological principles + + + + + + + the science of medicine + + + a treatise on medicine + + + + + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + + + + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + + + + + + the biology of plants + + + plant ecology + + + + + + + + the theory and work based on the theory that trees were involved in the origin of man + + + + + + + the "science" of love + + + + + + + a branch of sociology that analyzes how individuals use everyday conversation and gestures to construct a common-sense view of the world + + + the study of how social order is produced in and through processes of social interaction + + + + + + + the scientific discipline that involves dating the events related to the formation and evolution of the Solar System and the nucleosynthesis of chemical elements using radiometric dating techniques + + + + + + + the science that considers the Earth in its relation to cosmic phenomena + + + + + + + unprofitable or fruitless enquiry; vain discourse + + + + + + + the science of machines and mechanisms + + + + + + able to align itself automatically + + + + + + + branch of paleontology that studies fossil footprints + + + + + + + + the study of mountains + + + + + + + the psychology of morality and human action, especially as a subject of philosophical study + + + + + + + common sense regarded as a science or religion + + + + + + + the anatomical study of the intestinal glands + + + + + + + (originally) the study of pathological effects induced by electricity + + + (later also) abnormal electrical activity, especially of the heart, associated with a disease or disorder + + + + + + + sacred literature or lore; the literature embodying the religious beliefs of a country or people + + + hagiology + + + + + + + Edward Hitchcock's name for the branch of paleontology concerned with "ornithichnites" or fossil footprints of birds + + + + + + + the branch of medicine that deals with the diseases of children; pediatrics + + + + + + + psychology concerned especially with resolution of the mind into structural elements + + + + + + + the study and analysis of the causes and effects of accidents + + + + + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + + + + + + + concept within topology + + + + + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + + + + + + relating to a person who has some training in a job such as teaching or law, but does not have all the qualifications to be a teacher, lawyer, etc., or to the work that they do + + + + + + + a leg segment of an arthropod + + + + + + + creator of slam poetry or participant in a poetry slam + + + + + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + + + + + + the study of the physiology of the eye and sight + + + + + + + medical specialization that involves undertaking a range of imaging procedures to obtain images of the inside of the body + + + + + + + a person engaged in or expert in marine science + + + + + + + the mathematical theory of Regge poles + + + + + + + the branch of mammalogy dealing with tigers + + + + + + + the study of friction and wear at a large scale, typically involving macroscopic systems and components + + + + + + + the study of the relationship of climate and weather to disease + + + + + + + the science that deals with the character, ecology, and causes of outbreaks of animal diseases + + + the sum of the factors controlling the occurrence of a disease or pathogen of animals + + + + + + + an interdisciplinary framework to understand the functioning of terrestrial landscapes in the climate system, combining aspects of physical climatology, micrometeorology, hydrology, soil science, plant physiology, biogeochemistry, ecosystem ecology, biogeography, and vegetation dynamics to understand the physical, chemical, and biological processes by which landscapes affect and are affected by climate + + + + + + + the branch of botanical and pharmacological science concerned with the production, properties, and use of quinine + + + + + + + the study of the physiology of the reproductive system + + + + + + + part forming the side of something, or attached at the side + + + + + + + the principle or practice of encouraging a behaviour by counter-intuitive means, such as advocating its opposite + + + + + + + the study of the venation of the wings of insects, especially as a basis for classification + + + + + + + the branch of pharmacology concerned with the development and study of radiopharmaceuticals + + + + + + + the science of metals + + + + + + + dermatology + + + + + + + the branch of zoology dealing with sponges + + + + + + + + (reflexive second-person singular) that which belongs to thee + + + + + + + The action or occupation of giving speeches or presentations intended to motivate or inspire an audience + + + + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + + + + + + a person engaged in motivational research + + + + + + + + philately or the study of postage stamps + + + + + + excessive tourism + + + + + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + + + + + + the science that deals with the geographical distribution of animals and plants + + + + + + + the branch of education concerned with the scientific study of instructional design and development + + + + + + + + + the branch of pathology that deals with physical conditions or symptoms associated with weather conditions + + + + + + + the branch of Christian theology relating to the person, nature, and role of Christ + + + + + + + the study of the plant family Compositae (or Asteraceae) + + + + + + + branch of archaeology which seeks to understand the nature of cultural change by a study of the variables which cause it, usually in a manner characteristic of "new archaeology" + + + + + + the etiology of fevers + + + + + + + the study of saprobic environments + + + + + + + taxonomy + + + + + + that breaks (something) + + + + + + + field that involves the study of explosives, their components, and their performance, safety, and reliability + + + + + + of, for, engaged in, or used while hunting + + + + + + + each of a number of concentric rings in the cross section of a tree trunk, representing a single year's growth + + + + + + + phrenology + + + + + + + the study of or a treatise on worms + + + + + + + + + + to treat with acid + + + to inject acid into a limestone or dolomitic structure order to enlarge pores in the surrounding rock + + + + + + + + + + to flood, swell + + + to rain heavily + + + to fine for disobedience of orders + + + + + + sukangavoq + + + + + + + + + to steal + + + to be a thief; to commit theft + + + + + + three halves, 1.5 + + + + + + be pleasant, sugar-like to the taste or smell + + + be endearing, cute + + + + + + + period of time at the end of the day + + + + + + having assumed a title for oneself + + + + + + + + + to skim the surface of water on a pair of skis while towed by a motorboat + + + + + + + + + to alter, change + + + + + + + + + for a lithospheric plate to move upwards over the margin of an adjacent plate + + + + + + + + + to supply with caffeine + + + + + + + + + to destroy tissue by means of electric current + + + + + + + lead oxide mineral recognized for its rarity and difficulty identifying it + + + + + + + + + to convert to adinole by contact metamorphism + + + + + + + + + to glide across ice on skates + + + + + + + + + to howl or yelp as a dog + + + + + + + + + to alter by metasomatic processes + + + + + + to have been executed with proper legal authority + + + + + + + + + to calcify organic tissue + + + + + + + + + to attach a biotinyl residue + + + + + + to have as subject matter + + + to consist of essentially; to have as point or purpose + + + to be principally concerned with + + + + + + + + + Originally: to design or construct using biological principles. Later chiefly: to produce or modify (a substance, organism, etc.) using the techniques of bioengineering, especially genetic engineering + + + + + + + the leaves or seeds of the dill plant, especially when used dried and as a food flavoring + + + + + + + a treatise on corns, warts, bunions, and their causes + + + + + + + + + to make untidy + + + + + + + + + to watch or guard over as a warden + + + + + + + + + + to invoke a memory + + + + + + + + + to back up; to reverse (a vehicle) + + + to back up; to reverse (a horse) + + + + + + + univalent radical derived by the removal of a hydroxyl group from an anomeric carbon atom in a sugar + + + + + + + broth obtained from clams + + + + + + + inferior whiskey or other strong liquor + + + a sweet, artificially colored, non-carbonated soft drink + + + an unusual or concocted drink + + + + + + + + + to call or summon + + + + + + + a member of a group of politically radical hippies, active especially during the late 1960s + + + + + + + a wrong start in a race + + + + + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + + + + + a tropical plant + + + + + + + the xiphoid process + + + + + + + + + of or resembling feces + + + repulsive + + + + + + + the branch of radiology that deals with the use of ionizing radiation to treat cancers + + + + + + + geographical knowledge as a whole; the study of this + + + + + + + any of a genus (Orobanche of the family Orobanchaceae, the broomrape family) of herbs that have leaves modified to scales and that grow as parasites on the roots of other plants + + + + + + + white, vitreous fluoride of lime, soda, and alumina; chiolite + + + + + + that carries + + + + + + allowed, not forbidden + + + + + + having a tendency to proofread + + + + + + for reason that + + + + + + + making of bets, wagering + + + + + + + (third person possessive singular; belonging to a female being) + + + + + + + administrative division of a polity headed by a governor + + + + + + + unpleasant, worthless, obnoxious + + + + + + + starchy meal ground from the dried roots of various orchids + + + + + + the process of changing data into another format (= arrangement) so that it can be used or processed + + + + + + + + + to behave like a dork; to behave foolishly, in a clumsy and awkward manner + + + + + + + granular dessert ice with a sugar-syrup base + + + + + + + a specialist in tool engineering + + + + + + of, relating to, or using neon + + + extremely bright : fluorescent + + + of or relating to a form of lighting used especially on advertising signs and consisting of glass tubes filled with neon or other gases that emit colored light when subjected to an electric current + + + + + + + a description of the ligaments of the body + + + + + + + radiographic examination of the uterine cavity and fetus following injection of a radiopaque substance into the amnion + + + + + + + astronomical photography + + + + + + not a natural component of a particular organism or biological system + + + + + + + chromatography in which the substance to be separated into its components is diffused along with a carrier gas through a liquid or solid adsorbent for differential adsorption + + + + + + + branch of science that deals with the distribution of extinct species + + + + + + + a new system or method of writing or spelling + + + study of early modern and modern handwriting + + + deviation from a prevailing method of writing or notation + + + + + + + the systematic description of diseases + + + + + + + a description of, or dissertation on, the Egyptian pyramids + + + + + + + a printing process in which the image is created in relief on a soft plate and printed with a rotary press, used especially for printing on impervious or uneven surfaces such as commercial packaging + + + + + + + the study of people, places, and landscapes in rural areas, and of the social and economic processes that shape these geographies + + + + + + + subdiscipline of geography that focuses on everyday life and the way social groups interact with each other and the spaces in which they live + + + + + + + piece of tissue removed from body or from a plant + + + + + + + type of generator made for fast rotation on a turbine engine + + + + + + + (the) supernatural + + + + + + + measurement of angles + + + + + + + principle that perspectives and epistemology are always linked + + + + + + + anion or a salt of periodic acid + + + + + + + person who practices or embodies paternalism + + + + + + + interaction between different species in which one is harmed and the other unaffected + + + + + + + substance which counteracts the effects of alkalis + + + + + + + white fibrous capsule, especially of the testis + + + + + + + use of a drug to improve athletic performance + + + + + + + small ship’s boat used for minor tasks. + + + + + + + five-gallon container for petrol or water + + + + + + + organization drawing membership from the bar + + + + + + back then + + + + + + + + + to play dance music, especially in a juke + + + to dance, especially in a juke or to the music of a jukebox + + + + + + + a branch of mathematical and physical theory that deals with the nature and consequences of chaos and chaotic systems + + + + + + + former monetary unit of Albania; one-hundredth of a gold franc + + + qindarka; one-hundredth of an Albanian lek + + + + + + + woodwind instrument; predecessor of modern clarinet + + + + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + + + + + of an orgiastic character or tendency + + + + + + + one of a surveyor's party who carries the chain; a chain-carrier + + + chokerman + + + one that arranges the pattern chain on a dobby loom + + + a worker who ties skeins of yarn into a continuous chain for processing + + + + + + + an instrument or substance which causes a liquid to form a froth + + + + + + taught by himself or herself without assistance + + + + + + + + + to render stolid + + + + + + seasoned with cayenne; figurative spiced, hot + + + + + + + + + + + + + + + + + to pester, nag + + + to act like a noodge + + + + + + + cornetto + + + + + + + going on a trek + + + + + + + act to laminate + + + + + + best/most able + + + + + + + double-breasted coat dress or coat + + + + + + + staple food made from barley-meal + + + + + + in or into the inner part + + + + + + + being evidence of something + + + + + + + (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + + + + + to be without sound + + + + + + + surgical removal of ureter + + + + + + + + + to spring up suddenly + + + + + + + + + to undo resolution (a previously resolved upon action) + + + + + + + removal of bunion(s) + + + + + + + + + + to engage in commercial transaction + + + + + + + + + to make up (of parts) + + + + + + + + + to put forward, set forth + + + + + + + + + anathematize, anathemize + + + + + + + + + to lay out or expend beyond availability; to superexpand + + + + + + + + + to exaggerate or overstate + + + + + + of or pertaining to tachycardia + + + subject to or afflicted with tachycardia + + + + + + + + + to feed swinishly or eat in a vulgar manner + + + + + + + xylose + + + + + + + in a desert landscape, a long ridge which has been isolated by the removal of rocks on either side + + + + + + + + + to underexpose in radiographic imaging + + + + + + + + + to make use of below optimum level + + + + + + + + + to engage in an artillery/gun battle + + + + + + + the fact, state, or experience of being Indigenous + + + + + + + + + to drop from an aircraft in flight + + + + + + + + + to introduce an alkyl radical to a compound + + + + + + + embodiment of individual creative spirit in Scientology + + + + + + + an analytical and ethnographic perspective on the cultural phenomena and social relationships that extend across nation-state boundaries + + + + + + branch of anthropology concerned with the human mind, cognition, emotional experience, ethnopsychology, ethnopsychiatry, and enculturation + + + + + + + + + to repair or fill with spackle + + + + + + a theoretical perspective in the mid-twentieth century that revived interest in evolutionism as a way to explain human social and cultural change + + + + + + + + + (obsolete) to follow + + + + + + + the quality or condition of being disastrous + + + + + + + + a disaster; ruin + + + + + + caproic + + + + + + + the sacroiliac region + + + the firm fibrous cartilage of the sacroiliac region + + + + + + + + + to fall ill with the common cold + + + + + + relating to or denoting plants of the nightshade family (Solanaceae) + + + of, relating to, or resembling the mollusk family Solenidae + + + + + + + + a mollusk in the family Solenidae + + + + + + + a nurse who specializes in providing care to infants, children, and adolescents + + + + + + + lunch bag, lunchbox + + + male genitals, especially as observed portrusing through clothing + + + + + + + (archaic) the action of despoiling; plundering, robbery + + + + + + arrived at or known by intuition + + + + + + + a fatal degenerative brain disease of cattle, caused by a prion that can be transmitted to humans who consume infected beef + + + + + + of, relating to, or characteristic of the phylum Mollusca + + + + + + feeding on excrement + + + + + + with, accompanied by; and with (associative) + + + + + + + the practice of eating insects + + + + + + professional, technical, skilled; expert + + + + + + + a figure-skating jump with a takeoff from the back inside edge of one skate followed by one or more full turns in the air and a landing on the back outside edge of the opposite skate + + + + + + mistakenly + + + + + + dilated, expanded + + + + + + peskily + + + + + + + a wave or period of unusual activity by desperadoes + + + + + + + the state or fact of being a nincompoop + + + + + + + an apparatus for pasteurizing foodstuffs + + + + + + + a contemptible or stupid person + + + + + + + vegetational formation dominated by shrubs + + + + + + + a person who is disobedient to authority + + + + + + unhealthy-looking, sick-looking + + + + + + + recommendatory letter; letter introducing someone as worthy or suitable + + + + + + + the quality or state of being blasphemous; (also) blasphemous speech, thought, or action + + + + + + + the needle-shaped leaf of a pine tree + + + + + + + + + to be perplexed, to be put into a quandary + + + + + + + + + + to write or copy out incorrectly or mistakenly + + + + + + + a gurgling sound that comes from the back of the throat of a dying person + + + + + + + surgical removal of as much of a tumor as possible + + + + + + + a French-speaking person, especially in a region where two or more languages are spoken + + + + + + + eat, use up, devouring + + + + + + + act of splitting, causing separation + + + The act of dividing a number or quantity to the operation of finding how many times it contains another number or quantity. + + + + + + + act of testing the limits of capability + + + + + + + examination + + + act or process of controlling, moderating, or curbing + + + make checkmarks + + + + + + of, relating to, or characterized by play : playful + + + + + + that is or has been locked + + + + + + that has been subjected to filtration + + + + + + + a moisturizer that is used to treat vaginal dryness + + + + + + + to feel hatred + + + + + + intend, plan, on purpose, intent + + + + + + + the act of continuing + + + + + + + harsh judgment + + + + + + + a short scherzo + + + + + + + light and airy in performance —used as a direction in music + + + high and thin in tone —used chiefly of a voice in the phrase soprano sfogato + + + + + + resembling a topaz in color or luster + + + + + + located above the fold on the front page of a broadsheet newspaper + + + suitable for prominent placement on the front page of a newspaper + + + located prominently near the top of the page in an electronic document (such as an e-mail or a Web page) + + + + + + characteristic or typical of an author, especially a professional one + + + markedly literary + + + + + + + opal variety found deposited at orifices of geysers + + + + + + + a technique used in audio recording in which audio tracks that have been pre-recorded are then played back and monitored, while simultaneously recording new, doubled, or augmented tracks onto one or more available tracks + + + + + + + how real something is perceived as being and the criteria used to evaluate this + + + + + + + a wardrobe or its contents + + + a private room : bedroom + + + privy: a room or small building having a bench with holes through which the user may defecate or urinate + + + + + + + large Greek pottery vessel for mixing wine + + + + + + + cutaneous disease in sheep + + + + + + + + boastful, arrogant; proud, conceited + + + + + + + carambola + + + + + + + type of bugle made from a cow horn + + + + + + + + doleful, miserable, gloomy, lonely + + + + + + + get together with + + + + + + + fire, let go from employement + + + + + + + tourist + + + + + + (expression of disappointment) + + + + + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + + + + + ship ahoy! (exclamation said when another ship is in view) + + + + + + + the science dealing with the microscopic phenomena of soils + + + + + + + the technology of radio + + + the application of X rays to industrial problems + + + the application of any form of radiation to industrial problems + + + + + + + the branch of botany that studies roses + + + + + + + act as staff for, work at (place) + + + + + + + release from blame/sin + + + + + + + the study or science of nothing + + + + + + + the science of friction, adhesion, lubrication, and wear on the length scale of micrometers to nanometers and the force scale of millinewtons (mN) to nanonewtons (nN) + + + + + + + branch of bacteriology that deals with organisms associated with or pathogenic for plants + + + + + + + a topology that contains fewer open sets than another topology on the same set + + + + + + + the study of the form, structure, and arrangement of leaves + + + + + + + camel-driver + + + + + + + + + (polite expletive) short for "fuck up;" to botch, make a hash of, mess or screw up + + + + + + + branch of geology that deals with topography + + + + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + + + + + + the study of the interactions between human bodies and the atmosphere + + + + + + + newcomer; fresh immigrant + + + + + + + heavy whip cut from rhinoceros or hippopotamus hide + + + + + + pertaining to or connected with fermentation + + + + + + + a late 19th century to early 20th century American school of psychology concerned especially with how the mind functions to adapt the individual to the environment + + + + + + being part of; included in + + + + + + + to block + + + + + + to block + + + + + + + emphasize + + + + + + + headman of a region, community, or occupational group + + + + + + + + + to blunt, dull; to render obtuse + + + + + + + make available for consideration + + + act of postponing consideration of + + + + + + + the application of mesmerism to phrenology, to the phrenological organs, or to the mental faculties in general + + + + + + + the study of or theory about mathematical or occult significance in measurements of the Great Pyramid of Egypt + + + + + + make sense of, distinguish + + + + + + exclude + + + + + + + one who is the personification of dawdling; especially, a dawdling girl or woman + + + + + + + mortgage again + + + + + + + act/process of causing an increase (often in elevation) + + + + + + + decrease + + + change location + + + + + + exaggeratedly publicized + + + + + + act of removal + + + The process of a rise or leap from a surface in making a jump or flight or an ascent in an aircraft or in the launching of a rocket. + + + act of taking time off for vacation + + + act or process of increasing dramatically + + + act or process of going or leaving [similar to "getting going, hitting the road," etc.] + + + + + + + cause distance between two things + + + + + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + + + + + + the application of various technologies to enhance the learning experience, encompassing a wide range of tools and platforms used for teaching, learning, and assessment + + + + + + + + + act/process of remaining unsettled, waiting or awaiting + + + + + + + assembling military units for deployment + + + + + + + act of typing and sending a brief, digital message + + + + + + + the study of past human activity, settlement, and environments as revealed through archaeological sites located in wetlands + + + + + + + act of uttering a moan, complaining + + + + + + process of finding, searching + + + + + + + come up with a new idea + + + + + + center on + + + + + + + a topology defined on a quotient space, which is obtained by identifying certain points in a given topological space + + + + + + + act of making silent + + + + + + + act of attaching firmly + + + + + + + + + to charm or seduce + + + + + + + the doctrine of the Logos + + + the science of words + + + + + + + the study of mineral inclusions within larger mineral grains, focusing on the information they reveal about the host mineral's formation and the broader geological environment + + + + + + + act or process of giving shelter + + + absorb sensorily, possibly with pleasure + + + + + + + act or process of teaching (especially privately) + + + + + + + the philosophical study of the mind and life, distinct from the physical body + + + + + + (in the oil industry) in or into a well or borehole + + + + + + + a hole dug or drilled downward, as in a mine or a petroleum or gas well + + + + + + + Homology is a geometric process H that constructs finite dimensional vector spaces Hᵢ(X), for suitable X and i. Homology is linear when hᵢ(X) is a linear function of X (and hᵢ(X) ≥ 0). + + + + + + + the spatial arrangement and connectivity of atomic or molecular orbitals, particularly in the context of chemical reactions and electronic structure + + + + + + + that part of natural theology which is based on the properties and phenomena of fire + + + + + + + to the methods, tools, and techniques used to transform raw materials into finished goods or services + + + + + + + the methods and systems that enable vehicles, including aircraft, missiles, and spacecraft, to move toward their destinations + + + + + + + erroneous or incorrect psychology + + + + + + + a (suggested) name for a science of the ‘ends’ of human conduct + + + + + + + + + to treat someone unfairly and badly, put or leave in a bad situation + + + + + + + + + choose, elect, or appoint (for a specific task or purpose) + + + + + + + determine quite detailedly + + + + + + + act of bringing to a sudden halt + + + form of train incident + + + + + + + the act of stabbing + + + + + + + mess up, botch + + + + + + + the act or process of bending, changing direction, or forming an arc + + + + + + + hold a second job + + + + + + + psychological study or theory based on the classification of people or phenomena by type + + + + + + + phytogeography: branch of biogeography concerned with the geographic distribution of plant species + + + + + + + + + the act of division, dividing into sections + + + + + + + act or process of helping grow or develop + + + + + + + act or process of transfering data from one computer to another + + + + + + + The act of isolating + + + + + + + revise an opinion + + + + + + + to make a mess of + + + + + + + instance of shaking or trembling + + + + + + excited, amped up + + + + + + + + + extract, produce + + + + + + + make/accept an oath of office or court + + + + + + + + + continue fighting + + + + + + + act of protest, standing outside it in order to protest + + + + + + + act or process of uttering with a groan + + + + + + + a fragment of detrital volcanic material that has been expelled aerially from a vent + + + + + + + + + cover with sequins literally and figuratively + + + + + + + + + hit the back of a car + + + + + + + + to make sexual advances + + + + + + + + establish, make ready in advance + + + + + + to make peace + + + + + + (cause to) be affected with a certain attribute + + + + + + having been effected by the process of hindering the clotting of blood + + + + + + preventive of nausea or vomiting + + + + + + used to lower high blood pressure + + + + + + + + + to be or act like a dilettante + + + + + + + a situation where homologous traits (those shared due to a common ancestor) evolve independently in different species or populations, often due to similar environmental pressures + + + + + + + making void or erasing + + + + + + + + + to lift and throw (someone) to the ground, as in wrestling + + + + + + + shortened form of a word or phrase, typically created by omitting letters or syllables + + + + + + + + + fool + + + to push through, acting like a bull + + + + + + + + + put on a cassette + + + + + + Being like stone through calcification + + + + + + sensitive to chemo + + + + + + + + + develop in conjuction with another developer or project + + + + + + + surgical removal of all or part of the colon + + + + + + + + + exist in coiled state + + + + + + consisting of an array of multiple boreholes drilled into the ground for a shared purpose, often used in large-scale geotechnical, geological, or geothermal projects + + + + + + + + + call to court + + + + + + + + + to schedule programming to compete with another show + + + + + + + + + cause one entity to span a gap + + + + + + + device for dethatching, similar to a lawnmower but with vertical rotating blades + + + + + + + The act of losing muscle tone or fitness, becoming less adapted to + + + + + + + + + remove the sheen + + + + + + + + + inhabit a den, as in hibernation + + + + + + + + + remove hair + + + + + + + + + to deprive an organ of attached nerves + + + + + + + + + to hurry off promptly, abandon effort, flee + + + + + + + fakecel + + + + + + + + + send a direct message on twitter + + + + + + + contaminate the source and the destination simultaneously + + + + + + + breeding different varieties + + + + + + + + + remove dust, metaphorical/phrasal variant + + + + + + informal expression used to get attention or greet someone + + + + + + + + + beat, surpass + + + + + + + + + process of becoming covered in epithelial cells, usually during wound healing + + + + + + (of a tumor or other abnormal mass) growing outward from tissue or organ of origin + + + + + + + name + + + + + + + + + to make over, or literally give face lift + + + + + + + face off: oppose, fight + + + + + + + be no longer standing + + + + + + + natural disaster: fast moving flood that comes all at once + + + + + + + to form a cleft or crack + + + + + + + The act of making fatter + + + + + + + + + to allow an old exception to a new regulation + + + + + + + act or process of creating a graph of a function + + + + + + + + + surf move + + + + + + + + + twirl a lightweight hoop around the body in play or exercise by rotating the hips + + + + + + + The act of to taking care of someone's house + + + + + + + surgery that creates a connection between the ileum and the colon + + + + + + involving the ileum and the sigmoid colon + + + + + + + + + beginning, origination + + + graduate from a university + + + + + + + surgical removal of part of the colon + + + + + + + + + court ordered prohibition of a specific action + + + + + + + The act of calibrating within a set; calibrating between + + + + + + making a bubbling noise + + + + + + + low-energy food + + + + + + + + + opportunity + + + + + + displaced to one side + + + + + + + make the characteristic noise of a cow + + + + + + forming or dividing into lobules + + + + + + + the failure to adapt properly to a new situation or environment + + + + + + + + + to diagnose incorrectly + + + + + + + attend to + + + + + + + very slight invasion of malignant cells into adjacent tissue + + + + + + + post to an online journal + + + + + + + create + + + + + + be amazed + + + + + + + an annual herb (Chenopodium quinoa) of the amaranth family that is native to the Andean highlands and is cultivated for its starchy seeds which are used as food and ground into flour + + + quinoa seeds + + + + + + + regulation of osmotic pressure + + + + + + not having given birth or laid eggs + + + + + + + + + to buy in excessive amounts + + + + + + + + + allocate too much money to some purpose + + + + + + + + + overbake + + + + + + consisting of multiple layers + + + + + + + + + outdo + + + + + + + + + to leap beyond something else + + + + + + + + + to surpass another in trading + + + + + + + aim too far, exceed + + + + + + being in, going to, coming from, or characteristic of the 48 conterminous states of the U.S. + + + + + + + The act of inserting names of famous people into conversation in order to seem more important + + + + + + + imaging for transverse section reconstruction of the radionuclide distribution within the body + + + + + + + + describe in detail, spelling out each play + + + + + + + + + to make or cause to make a tinkling sound + + + + + + near the aorta + + + + + + + surgery that creates a connection between the pancreatic duct and the jejunum + + + + + + asleep, soundly + + + + + + beat + + + + + + whump, make noise + + + + + + be straightfoward and honest with + + + + + + not suitable for/capable of being viewed + + + + + + not presenting new info + + + + + + not having been indicted + + + + + + not having a connection to ground potential (or metaphorical extension) + + + + + + ubiquitinate + + + + + + phrasal typing, using a typewriter + + + + + + sounding like a drum + + + + + + give medicine to before an event + + + + + + situated in front of the tibia + + + + + + looking into the future, forecasting + + + + + + Being examined using a proctoscope + + + + + + having no answer to give, containing no answer + + + having no possible answer, unanswerable + + + + + + recite from a list + + + + + + attach, again + + + + + + concentrate into one location + + + + + + act or process of teaching again + + + + + + + lucid clarity of being fully present and aware + + + + + + become more intense (again) + + + + + + to occupy again; to take possession of, settle or maintain a position in a certain place again + + + + + + to pass again (especially into law) + + + + + + + participial verb form in the active voice + + + + + + obtain again + + + + + + impudent/shameless (unblushing) + + + + + + send again + + + + + + type again + + + + + + (cause to) fit as necessary + + + + + + to avoid humiliation or loss of status and respect + + + + + + make the noise 'scrawk' + + + + + + to make certain, secure, be assured of + + + + + + act of presenting in a sensational manner + + + + + + distribute to shareholders + + + + + + depart, as a soldier + + + + + + look inward, search for inspriation, motivation, etc. + + + + + + compare, measure up + + + make into a stack + + + + + + to take a smaller sample from a larger sample + + + + + + to mix or twist together, drag in + + + + + + thaw_out: fully defrost + + + + + + make better by equipping with "tools" + + + + + + touch upon: same as touch on + + + + + + to hit or beat with a truncheon or billy club + + + + + + mad, crazy; eccentric, unconventional, wild + + + + + + in a futuristic manner + + + + + + + perpetrator (of a crime) + + + + + + which thing, which object + + + + + + + the number 2 + + + + + + the number 7 + + + playing card + + + + + + connects at least two alternatives (inclusive) + + + + + + + thousand million + + + + million million + + + + + + + + list of films related by some criteria + + + + + + gesture and internet term + + + + + + + one; any indefinite example of + An yttrium sulfate compound is generally soluble. + + + + + + (introduces a clause which is the subject or object of a verb) + + + + + + at any point in time + + + + + + for a time period + + + + + + All; every; qualifying a singular noun, indicating all examples of the thing so named seen as individual or separate items (compare every). + Make sure you wash each bowl well. + The sun comes up each morning and sets each night. + + + + + + + the number 100 + + + + + + + + A large amount of. + Do you think I have much chance of catching the train on time? + After much discussion, we decided to set about the task with much enthusiasm. + Did you do much running last summer? + + + + + + Denotes the one immediately following the current or most recent one. + Next week would be a good time to meet. + I'll know better next time. + + + + + + after a point in time + + + + + + not containing or using + + + + + + + in the direction of + + + + + + + some person + + + + + + with an increase of + + + + + + Any one out of an indefinite number of persons; anyone; any person. + Anybody will do. + Is there anybody inside? + + + + + + at any time that + + + + + + Introducing a basis of comparison, with an object in the objective case. + You are not as tall as my sister. + They are big as houses. + + + + + + not containing meat + + + + following/in line with a meatless diet + + + + + + characterized by entropy; inevitably deteriorating + + + + + + phrase used when someone is leaving + + + + + + + + + + to eat + + + + + + + + + apportion; give out according to a rationing system + + + + + + + + + to strike with one's knee + + + + + + cheer + + + + + + + + + to squeeze fruit to produce juice + + + + + + + comics created in Japan + + + + + + having serifs + + + + + + number between 59 and 61 + + + + + + + repository of biological samples used for research + + + + + + + type of pharmaceutical drug product + + + + + + + field of biology that examines periodic (cyclic) phenomena in living organisms + + + + + + + + + separate one area from another + + + + + + + database + + + organization responsible for a database + + + + + + natural number + + + + + + natural number + + + + + + + state of being employable + + + capability of an individual to adjust into the work labor + + + + + + study of gene expression changes + + + the study of the mechanisms of temporal and spatial control of gene activity during the development of complex organisms + + + the study of mitotically and/or meiotically heritable changes in gene function that cannot be explained by changes in DNA sequence + + + + + + relating to epigenetics + + + + + + pertaining to evolution + + + + + + + animal feed made from fish + + + + + + self-similar + + + + + + pertaining to a genome + + + + + + deliberate manipulation of Earth's environment + + + + + + engineering aspects of soil and rocks + + + + + + + academic qualification + + + + + + + + + chemically treat with a halogen + + + + + + pertaining to hydrobiology + + + + + + + branch of geology which deals with the relations of water on or below the surface of the earth + + + branch of science that studies distribution and movement of groundwater + + + + + + + + pertaining to hydrology + + + + + + + branch of immunology that deals with the immunologic properties of blood + + + + + + + study of infection + + + + + + + + + zoo for insects + + + + + + + one who inspires + + + + + + + collection of instruments + + + + + + + process of blending together + + + + + + between governments + + + + + + between universities + + + + + + medication administered intravenously + + + + + + + + + communicate with opposing party + + + + + + + sequence of events in a life + + + + + + + wave of light + + + + + + + process of creating malt + + + place where malt is created + + + + + + + microscopic bead + + + + + + + local region near a cell + + + + + + + device around 1 micron in size + + + + + + + miniature satellite + + + type of DNA sequence + + + + + + + technology for microscopic devices + + + + + + + something imitative + + + + + + relating to myelodysplasia + + + + + + + use of nanotechnology in medical treatment + + + + + + + study of drug abuse + + + + + + + doctor specializing in nephrology + + + + + + measurement of shape + + + + + + + use of radiation in nervous system medicine + + + + + + made without weaving + + + + + + pertaining to notaries + + + + + + pertaining to coins + + + + + + + + + bring into a group + + + + + + pertaining to optometry + + + + + + pertaining to palynology + + + + + + + + + fly a paraglider + + + + + + Appropriate and legitimate for its purpose. + + + + + + method of creating electric power from sunlight + + + + + + + study of mental aspects of biology + + + + + + + with both psychological and social aspects + + + + + + + act of reanimating + + + + + + + + + put together again + + + + + + + rearranged structure + + + + + + + one who tries to re-establish a historical practice + + + + + + + one that recycles + + + + + + + + + light again + + + + + + process of reprography + + + + + + + patterning layer in semiconductor fabrication + + + + + + + chemical produced by an organism that affects others + + + + + + + + + locate something in three dimensions + + + + + + Connochaetes taurinus + + + + + + terminal-based network protocol + + + + + + used to warn of a falling tree + + + + + + + a South African species of palm tree + + + + + + quality/fact of being irritating/tiresome/annoying + + + + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + affirmative option provided in a binary vote + + + + + + Ordering items individually + + + + + + abjectly (in an abased/humbled/humiliated manner) + + + + + + relating to transactions + + + + + + + + + to smoke using an e-cigarette + + + + + + covered in or characterized by upholstery + + + + + + + intermediate point along a route + + + + + + mocking sadness + + + + + + + + + to make robust, to turn something into a robust form + + + + + + + transduction of mechanical stimuli into neural signal + + + + + + + toxic effect on ecosystems + + + + + + + type of alcohol (chemical term) + + + + + + political/economic philosophy + + + + + + + type of fiber + + + + + + + + + selfishly keeping or consuming something + Don't bogart that joint, my friend. Pass it over to me. + + + + + + + the study of cave-dwelling organisms + + + + + + + type of horseman + + + + + + + type of bread + + + Italian white bread + + + + + + + type of small village or settlement + + + + + + anarchism based on computerized cryptography + + + + + + + algorithm used to train an artificial neural network based on the gradient of a cost function + + + + + + + study of cultural aspects of dealing with living things + + + + + + + mark used to indicate quotation in some languages + + + + + + + track and field combined competition + + + + + + + place of work for a knacker + + + + + + intentially hostile software + + + + + + + small moon + + + + + + + type of cell found in muscles + + + + + + In an anticipative manner; expectantly. + + + + + + groundlessly/unjustifiably (in a baseless manner) + + + + + + flexibly/limply (as if without bones) + + + + + + foolishly, without thought or intelligence + + + + + + in a manner representing something as small or less than it is + + + to a small/minute degree + + + + + + in a manner suggesting agitation or excitement; animatedly + + + + + + in a way causing irritation/frustration (i.e. that isn't satisfactory or what one wishes for/requires) + + + + + + in a manner much larger than expected + + + + + + latin phrase referring to actions taken in memory of a deceased individual or individuals + + + + + + in an isolated manner + + + + + + in a lesbian manner + + + + + + in a loveless manner + + + + + + without bounds/restrictions (in a manner without limits) + + + + + + topological space that at each point resembles Euclidean space + + + + + + in a meaningless manner + + + + + + with significance (of look/tone/gesture/etc.), so as to convey meaning + + + + + + in a persistently irritating/annoying/complaining/exhausting manner + + + + + + these days, in the present day + + + + + + often; oftentimes + + + + + + In a promissory manner. + + + + + + in a quenchless manner + + + + + + in a rattling manner + + + + + + in a reasonless manner + + + + + + In a temulent manner. + + + + + + without thanks, unthankfully + + + + + + "besides that;" that which is beside another object + + + + + + Across the direction of travel or length of; athwart, crosswise, obliquely, transversely. + + + + + + done in a way that lacks resentment or ill will + + + + + + yes + + + + + + + study of nematodes + + + + + + + plant which prefers low-nitrogen soils + + + + + + + Pluto-like object beyond Neptune + + + + + + + type of computer program + + + + + + + organism living in symbiosis + + + + + + + + synchronised well + + + + + + + allocate money to some purpose + + + + + + + predominant cell type in the epidermis, the outermost layer of the skin, constituting 90% of the cells found there + + + + + + statistical analysis of written publications, such as books or articles + + + + + + + + approve of loudly + + + + + + + natural disaster: stretch of very high temperatures + + + + + + + reduction of some kind of asset for financial, ethical, or political objectives or sale of an existing business by a firm + + + + + + + + + to convert into agate + + + + + + + + + not becoming, appropriate or in accord with expected standards + + + + + + + + + to become sane or reasonable + + + + + + + + + to repay, requite + + + + + + + + + to select from a group or pluck again + + + + + + + + + certifying again + + + + + + + + + to launch something again or put something into operation or motion again, i.e. a company or brand; to set off or start again + + + + + + + + + to make trendy + + + + + + + be on all sides of, encompassing + + + + + + + horse breed group + + + + + + + someone concerned with the raising of livestock + + + + + + assembly of microorganisms belonging to different kingdoms; part of a microbiome (which consists of the microbiota and their environment) + + + + + + + study of traditional medicine practiced by various ethnic groups + + + + + + + + + invest again, put money back into a project or investment + + + + + + Scientific study of algorithms and statistical models that computer systems use to perform tasks without explicit instructions + + + + + + + degree to which overt adverse effects of a drug can be tolerated by a patient + + + + + + + parasital protein found in Leishmania major Friedlin, encoded by LmjF.36.2320 + + + + + + + cell type + + + + + + + acquired metabolic disease that has material basis in an abnormally high level of uric acid in the blood. + + + + + + + neurons which are not motor or sensory + + + + + + + degree to which a system's components may be separated and recombined + + + + + + + class of protein + + + + + + + type of photodetector based on a p–n junction + + + + + + + class of chemical compounds + + + + + + + the act or process of constituting again or anew + + + + + + + class of enzymes + + + + + + + Cytoplasmic organelles, spherical or oval in shape, that are bounded by a single membrane and contain oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). + + + + + + + class of chemical compounds + + + + + + + any of a group of galactose-containing cerebrosides found in the surface membranes of nerve cells + + + + + + + type of cell + + + + + + + tectonic plate boundary where subduction takes place + + + + + + + act or process of increasing, or causing to increase, again + + + + + + + segment of content intended for podcasting + + + + + + former name for rutherfordium + + + + + + + macrocyclic lactone with a ring of twelve or more members + + + + + + ability of an organism to keep its body temperature within certain boundaries + + + + + + + eukaryotic cell clone derived from an eukaryotic organism by immortalization + + + + + + + spreading and enforcing Russian language and culture in neighboring regions and among minorities in Russia + + + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + effigy into which pins are inserted + + + + + + + + + to look after child temporarily + + + + + + Reference to physical, non-human inputs used in production to produce wealth + + + + + + + amusement park and funfair attraction + + + + + + video game genre + + + + + + salutation used in the evening + + + + + + + a photograph of the photographer + + + + + + sex act and pornography genre + + + + + + practice of or desire for intimate relationships with more than one partner, with the knowledge of all partners; consensual, ethical, and responsible non-monogamy + + + + + + + members of an online subculture who define themselves as unable to find a romantic or sexual partner despite desiring one + + + + + + suspicious + + + homosexual + + + + + + + artwork featuring aspects of a work of fiction created by a fan + + + + + + + + + to cause to enter popular awareness + + + + + + + administrative territorial entity + + + + + + + cart for carrying apples + + + + + + + grandparent's brother + + + + + + + protuding abdomen, paunch + + + + + + + profane term; word considered rude or offensive + + + + + + as; in the capacity of; acting as + + + + + + Until. + + + + + + : with. + + + + + + therefore + + + + + + at this moment + + + + + + because + I wanted to attend the concert, for it featured my favorite band. + + + since / because + She prepared thoroughly for the meeting was crucial to her career. + + + + + + + some large quantity of something + + + + + + which of two + + + + + + Exclamatory response to a minor disappointment. + Shucks. It's too bad you can't make it to the party. + + + + + + An expression of surprise. + + + + + + Used in place of fuck. + + + + + + used to tell someone, especially a child, to be quiet + + + + + + requesting assistence + + + + + + used as an exclamation to express surprise, taunting, exultation, etc. + + + + + + Used to place emphasis upon something or someone; sometimes, but not always, when actually addressing a man. + Man, that was a great catch! + + + + + + Nonsense! Expresses dismissal or disdain. + Fiddlesticks! It's nothing but smoke and mirrors! + + + + + + An expression of laughter. + + + + + + Used to acknowledge a small mistake or accident. + Oops! I left the lid off the ketchup. + + + + + + + + + to prioritize and sort into groups based on severity of need (usually medically) + + + + + + + common name for a genus of gastropods known under the taxonomic name Ariolimax + + + + + + + theoretical concept in sociology + + + + + + + list of web pages on a website + + + + + + an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + + + + + + a south Indian pancake + + + + + + augmentation of intelligence through the use of information technology + + + + + + + efficiency measure based on environmental impact + + + + + + of an astronomical body + + + + + + + actions to limit climate change in order to reduce the risks of global warming + + + + + + + denial, dismissal, or unwarranted doubt about the scientific consensus on the rate and extent of global warming + + + + + + market-based approach used to control pollution + + + + + + total set of greenhouse gas emissions caused by an individual, event, organisation, or product, expressed as carbon dioxide equivalent + + + + + + + quantitative methods used to simulate climate + + + + + + + umbrella term for the study of the atmosphere + + + + + + decrease in the pH of the Earth's oceans + + + + + + + risk resulting from climate change and affecting natural and human systems and regions + + + + + + + officer in government or business + + + + + + involving only one sex or gender + + + + + + + differential operator in vector calculus + + + + mathematical symbol + + + + + + + written document used to document consent in a standardized manner + + + + + + + set of recommendations for decision-making + + + + + + medical research using human test subjects + + + + + + + tructure formed in a sediment by the action of a living organism (e.g. a tube, burrow, footprint, or groove made by crawling across a surface) and preserved when the sediment becomes a sedimentary rock + + + + + + + bony spines on the tip of the tail of a dinosaur + + + + + + + something ill-considered + + + + + + + class of typespecimen + + + + + + + + + person who rejects the efficacy or safety of vaccines + + + + + + + vegetation layer above shrubs and under the canopy + + + + + + + increasing occurrence of a species in a new habitat + + + + + + another term for a selfie. Usually used in KPOP culture + + + + + + + last performance promoting on music shows (KPOP) + 《Goodbye Stage》 BLACKPINK (블랙핑크) - PLAYING WITH FIRE + + + + + + + act of correct identification + + + + + + to be alive + + + + + + + fictional monster + + + + + + + The thing, item, etc. being indicated. + This is a pronoun. + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + box lyre associated with Welsh music + + + + + + + fictional technology that renders objects invisible + The first known a example of a practical cloaking device was on a Romulan bird-of-prey spacecraft that crossed the Romulan Neutral Zone in 2266. + + + + + + + science fiction weapon + + + + + + + continuity that has be retroactively applied to an existing work + + + + + + research field concerned with information technology approaches to handling biodiversity-related data + + + + + + + alteration of calcium-rich plagiocale feldspar to fine grained aggregate of secondary sodic-rich minerals + + + + + + + ethological class; trace fossils formed as a result of grazing by organisms + + + + + + + lithium atom with a charge + + + + + + type of Japanese candlestick pattern + + + + + + + + + to have been altered by corundum + + + + + + + + + to strengthen or fortify using corundum + + + + + + + part of a graph + + + + + + + + + to exchange explicit texts or images with someone + + + + + + used to express discontent or dismay + + + used to express surprise + + + + + + lacking romantic attraction to anyone + + + + + + + + + to moderate + + + (of a product) to modify + + + + + + + a video blog + + + + + + + attractive older woman; acronym of Mom I'd Like to Fuck + + + + + + happening before a pandemic, specifically the COVID-19 pandemic + + + + + + + clade of dinosaurs containing all modern birds + + + + + + + + offensive or lewd + + + + + + + gender identity where a person identifies as only partly male + + + + + + + transgender with a partially or fully masculine gender identity + + + + + + + one sextillionth of a second + + + + + + + + + اینٹرنیٹ تے گل بات دی چوݨ دیݨا + + + + + + + a member of the Reichsbürger movement + + + male citizen of an empire + + + + + + drunk + + + + + + + device dispensing ink over a metal ball at its point + + + + + + having a crooked back + + + + + + + Any organism of the clade Unikonta + + + + + + + + weird, dubious, or otherwise strange + + + + + + + + كَان مُمكِن + + + + + + + any toad of the clade Bombina + + + + + + + any butterfly of the family Lycaenidae + + + + + + + any protist in the clade Alveolata + + + + + + + any insect of the infraclass Neoptera + + + + + + tartaric acid + + + + + + + + + to arrange to pay debt in installments + + + + + + + act of assigning a label + + + + + + + act or process of preceding, spatially or temporally, terminating at a determined point + + + + + + + a little thing + + + + + + + a text-based user interface operated from a command-line console + + + + + + + a New Zealand honeyeater, a parson bird + + + + + + + a barangay + + + + + + having a reddish-brown color + + + made from terracotta, a hard, baked reddish-brown clay + + + + + + + any crustacean of the family Palaemonidae + + + + + + + platonic friendship including sex + + + person one has a platonic friendship with, that includs sex + + + + + + + female a person whose company one enjoys and towards whom one feels affection + + + + + + stylistically advanced + + + + + + ergonomics + + + + + + + + + one who bunkers, or one who creates a bunker + + + + + + prepare for an immediate event about to happen + + + prepare a weapon for use + + + + + + + boat or ship suited to sailing + + + + + + + Japanese syllabary + + + + + + + + + vocalisation produced by canines and other mammals + + + + + + + type of formal grammar + + + + + + + + + to render illegitimate + + + + + + + + + to trick somebody + + + + + + + any even-toed, ruminant mammal in the family Camelidae + + + + + + + rodent in the family Caviidae (cavies) + + + + + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + + + + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + + + + + like a troglodyte + + + + + + + like a troglodyte + + + + + + + + a specialist in pedology, i.e. soil science + + + someone who studies the behavior and development of children + + + + + + + a bird in the family Struthionidae + + + + + + of, relating to, or resembling the ostrich or related ratite birds + + + + + + + + personal canon of somebody + + + + + + + medical practice concerned with feet + + + the scientific study of the morphology and physiology of the feet + + + + + + of or relating to the bat family Molossidae + + + + + + + + any cactus of the genus Mammillaria; even when not globular in shape + + + + + + + Atticora tibialis, a common South American species of swallow + + + + + + + + like a toad + + + + + + + wildflower of the family Iridaceae + + + + + + + the Cape vulture + + + + + + + rhinoceros + + + + + + shut up! be quiet! + + + + + + + cyberattack that utilizes a recently-publicized computer software vulnerability on systems which are yet to be mitigated + + + + + + applied to molar teeth that are V-shaped, narrow at the front and rear, with a sharp apex, and with the two cusps partly or completely fused + + + of or relating to the Zalambdodonta + + + + + + + any porpoise in the family Phocoenidae + + + + + + of or designating a person of mixed race, especially a person who is partially of East Asian, Southeast Asian, or Pacific Islander descent + + + + + + + any fruit bat in the family Pteropodidae + + + + + + + Schawarma + + + + + + + Islamic architecture style using alternating coloured bricks + + + + + + + shaft allowing light to enter a space + + + + + + of or relating to the bird family Picidae (woodpeckers) + + + + + + in opposition to + + + + + + long live + + + + + + to be honest + + + + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + + + + + an investigation of truth in a civil law case in which the interrogation and inquiry are often accompanied by torture + + + + + + + + A 'book' containing a student's overall grade + + + + + + + Inuit shaman + + + + + + + relative, someone who is part of a family + + + + + + impertinent; having chutzpah + + + + + + a disorderly, confusing situation; a mess + + + + + + having something additional applied + + + + + + + landlord who rarely visits or attends to the propery he lets + + + + + + six, six of something (often approximately) + + + + + + + + + to move the top of the body downwards + + + + + + + coming outside from + Preparations for their departure out of Egypt + + + + + + + dreamtime, everywhen + + + + + + + recipient of negative affect + + + + + + + branch of zoology dealing with the Crustacea + + + + + + + + + study of the geology of celestial bodies + + + + + + study of the interaction between humans and other animals + + + + + + branch of entomology dealing with the Trichoptera (caddis flies) + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + branch of ecology that deals with the structure, development, and distribution of ecological communities + + + + + + + the study of character including its development and its differences in different individuals + + + systematic description of distinguishing or essential features; the aggregate of these + + + + + + study of the shape of the ear + + + + + + academic and professional field combining gerontology and technology + + + + + + + the study of waves or wave motions + + + + + + + a branch of anthropology concerned with the study of cultural institutions as distinct from the people who are involved in them + + + + + + + the study of a community or society through systematic analysis of what is thrown away as garbage; the branch of anthropology or archaeology dealing with this + + + the practice of looking through the garbage of celebrities, politicians, etc., in search of compromising or incriminating material + + + + + + + the study of vibrations and oscillations in the Sun + + + + + + + + cruel, cold-hearted + + + + + + occurring outside of daylight hours + + + + + + one-hundred-and-twenty-fifth anniversary + + + + + + hilarious + + + + + + + cylindrical body that is composed of parallel peripheral rods connected to the axial filaments of flagella + + + + + + + ancestor + + + + + + that which shares attributes with another or with itself at another time + + + + + + the branch of aerobiology that is concerned with the bacteria of the air + + + + + + the study of sea birds + + + + + + + branch of zoology that deals with the oligochaete worms + + + + + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + + + + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + + + + + branch of botany that deals with plant functions + + + + + + + + the study of mental functioning and behavior in relation to other biological processes + + + + + + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + + + + + + a fish of the order Isospondyli + + + + + + egg-shaped + + + + + + consisting of a mixture of an essential (volatile) oil and a resin + + + + + + + drug addict, homeless person + + + + + + + the study of the effects of radiation upon living organisms + + + + + + + + branch of biology concerned with the study of plankton + + + + + + + + the study of grasshoppers and locusts (infraorder Acrididea) + + + + + + the study of the nature of ignorance or of what it is impossible to know + + + + + + + the study of weather and use of weather and climate information to enhance or expand agricultural crops and/or to increase crop production + + + + + + + + branch or school of psychology mainly based on the work of the philosopher John Locke + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + + + + + + the scientific study of aponeuroses + + + + + + + the branch of meteorology which studies thunder + + + + + + + observation of the heavens as the basis of a religious system; reverence of the heavens + + + + + + + branch of biology that studies cells + + + + + + + scientific investigation of the atmosphere + + + a treatise on the atmosphere + + + + + + + the science of the universe + + + + + + (expressing approval, emphasizing accuracy) + + + (implying alarm or threat) + + + + + + + the branch of astronomy concerned with comets. + + + + + + + + the study of cyclones + + + + + + + an environmental movement and philosophy which regards human life as just one of many equal components of a global ecosystem + + + + + + + the study of the mind in relation to the electrical activity of the brain + + + + + + of, relating to, living in, or being a controlled environment containing one or a few kinds of organisms + + + + + + + the application of scientific methods and engineering techniques to the exploitation and utilization of natural resources (as mineral resources) + + + + + + + the science dealing with the brain and its structure and function + + + + + + + the study of fungi + + + + + + + the study of or knowledge of the diseases of horses + + + + + + + the branch of pharmacology that deals with drugs acting on the immune system and, in addition, with the pharmacological actions of substances derived from the immune system + + + + + + + the study of karst and karst topology + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + branch of bryology that deals with mosses + + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + + + + + + + + to leave + + + to surpass + + + to kill + + + to humiliate, act aggresively + + + + + + + the branch of ophthalmology that deals with neural aspects of the visual system + + + + + + + the study of ostraca (potshards or limestone flakes used as a surface for drawings or sketches, or as an alternative to papyrus for writing as well as for calculating accounts) + + + + + + + the physiology of extinct and fossil organisms + + + + + + + the branch of science that deals with pests and methods of controlling and eradicating them + + + + + + + the psychological study of the passions or emotions + + + + + + + radiology + + + + + + + the scientific study of repairing disturbed ecosystems through human intervention + + + + + + + the scientific study of inorganic entities: geology, mineralogy, etc. + + + + + + + wearisome repetition of words in speaking or writing + + + + + + + the branch of psychology that focuses on how people grow and change over the course of a lifetime + + + + + + + the study of turtles and tortoises + + + + + + + + the study of writing systems and orthography + + + + + + + (informal) the art or practice of bluffing or deception + + + + + + + + a person or people who are unable to leave a place and are thus forced to listen to what is being said + + + + + + + + + to spend time doing unimportant or trivial things + + + to waste someone's time + + + + to be sexually promiscuous + + + + + + + + a center for monitoring electronic communications (as of an enemy) + + + + + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + + + + + + the study of the time-averaged geographical distribution of cloud properties and the diurnal, seasonal, and interannual variations of those properties + + + + + + + the scientific study of human beings and populations from a biological point of view + + + + + + + the scientific study of human behavior under natural conditions especially in the context of its origin and evolution + + + + + + + the psychology of a person's own mind + + + + + + + scientific discipline that is concerned with all aspects of the Earth's structure, composition, physical properties, constituent rocks and minerals, and surficial features + + + + + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + + + + + + the study of facial features + + + + + + + a treatise on diseases of the teeth + + + the branch of medicine that deals with diseases of the teeth + + + + + + + branch of histology concerned with the nervous system + + + + + + + the study of and classification of muscles with reference to their innervation + + + + + + + a treatise on electricity + + + + + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + + + + + + the application of food science to the development, processing, or preservation of foods + + + + + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + + + + + + a treatise on dialling + + + + + + + a victory in which one side or team wins every game, contest, etc. + + + a complete change in something + + + an election when a candidate or party achieves an overwhelming or complete victory, winning in all or almost all districts or precincts + + + + + + not assassinated + + + + + + + the branch of psychology concerned with the study of the human mind + + + + + + + seismology dealing with records obtained at long distances + + + + + + + the branch of medicine studying the effects of psychological phenomena on the immune system; the intersection of psychology and immunology + + + + + + + sociology as it relates to psychology, or is influenced by the findings of psychology + + + + + + + the classification of mental illness + + + + + + + a treatise on fossil animal remains + + + the study of fossil animals + + + + + + + + the branch of biology that deals with the formation, structure, and development of ova + + + + + + + the use of specially designed and fitted contact lenses to temporarily reshape the cornea to improve vision + + + + + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + + + + + + the study of water balance components intervening in agricultural water management + + + + + + + the study of the effects of sexually transmitted disease on the skin, mucous membranes, nails, and hair + + + + + + + an applied earth science that uses hydrologic principles in the solution of engineering problems arising from human exploitation of the water resources of the Earth + + + + + + + the study of the climatic conditions of a large area + + + + + + + the study of relative abundances of nuclear species as a means of dating stages in stellar nucleosynthesis + + + + + + + a universal theology; specifically, a theology which comprehends all gods and all religions + + + + + + + a guide who helps visually impaired runners during a race + + + + + + + the study of human society; sociology + + + + + + + the study of and collecting of beer mats + + + + + + + simple or basic technology; (relatively) unsophisticated technology + + + + + + + the study of the spleen + + + + + + + the use of climate information in decision-making, impact assessments, seasonal climate forecast applications and verification, climate risk and vulnerability, development of climate monitoring tools, urban and local climates, and climate as it relates to the environment and society + + + the application of weather and climate information to problems facing agriculture and commerce + + + + + + + a branch of meteorology that uses synoptic weather observations and charts for the diagnosis, study, and forecasting of weather + + + + + + + a library staff person who is not a librarian + + + + + + + the application of the data and techniques of climatology to aviation meteorological problems + + + + + + + + hypnotism + + + + + + + the branch of science concerned with the effects of drugs and other chemical substances on plants + + + + + + + the phenology of plants + + + + + + + psychological discipline that deals with individual psychology techniques applied by an individual, in order to affirm and achieve individual goals such as happiness and self-affirmation + + + + + + + archaeological survey and excavation carried out in advance of construction, other land development, or natural destruction of a landscape + + + + + + + the study of bounded sets + + + + + + + a video that integrates a song or an album with imagery that is produced for promotional or musical artistic purposes + + + + + + + a theory or science of faith + + + + + + + foolish talking; babbling + + + + + + + a monologue + + + + + + + medical field that is concerned with rational nutrition, energy and nutrient needs of the body and the ways to alter them with special diets in the treatment of particular diseases + + + + + + + + + the study of fools and folly + + + + + + + Adderall + + + + + + + technology designed or planned so that people with disabilities are not prevented from using it + + + + + + + the branch of mineralogy concerned with the physical properties of minerals, as distinct from their chemical composition + + + + + + + natural theology + + + + + + + + + to be realized in the near future + + + + + + + non-existent job posting or job interview + + + + + + + the making of false statements, lying; (also) an instance of this + + + + + + + an approach to archaeology that uses queer theory to challenge normative, and especially heteronormative, views of the past + + + + + + + the study of artillery; the practice of using artillery as a weapon + + + + + + + + the study of artillery; the practice of using artillery as a weapon + + + + + + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + + + + + + + the chemistry of metabolic processes; biochemistry + + + + + + + + + + singular ‘they’ + + + + + + killed by suffocation in water + + + + + + + a structure that stores transactional records, also known as the block, of the public in several databases, known as the “chain,” in a network connected through peer-to-peer nodes + + + + + + + drug user, junkie + + + + + + + act of toppling, knocking over + + + dumping of waste + + + + + + + agricultural food products as a class + + + + + + + (reflexive third-person plural pronoun) of their own self + + + + + + + analysis of the climate of a single space, or comparison of the climates of two or more places, by the relative frequencies of various weather types or groups of such types + + + + + + + the study of relationships between the structure of an organism and the function of the various parts of an organism + + + + + + + a branch of mathematics encompassing any sort of topology using lattice-valued subsets + + + + + + + branch of radiology dealing with minimally invasive treatment, which reaches the source of a medical problem through blood vessels or directly through a tiny incision in the skin to deliver a precise, targeted treatment + + + + + + + the scientific use of mineral springs and hydrotherapy for healing + + + + + + + + a doctrine or theory concerning matter + + + + + + + the science or knowledge of the streets of a town or city; (now especially (colloquial and humorous)) the skills and knowledge necessary for dealing with modern urban life + + + + + + + theological theory based on the idea of process + + + + + + + an explanation for the origin of a word that is believed to be true, but is, in fact, wrong + + + the transformation of words so as to give them an apparent relationship to other better-known or better-understood words (as in the change of Spanish cucaracha to English cockroach) + + + + + + + the branch of science and technology concerned with robots + + + + + + + technology + + + + + + + the study and analysis of the evolution of a text or texts, esp. through rewriting, editing, and translation; more generally, the study of text production; textual classification + + + + + + + the theory or subject of spirit-rapping + + + + + + + + + to treat in the manner of Shakespeare + + + + + + + + + to deteriorate in quality or condition + + + + + + + type of mathematical function + + + + + + + type of scientific study + + + + + + qaqorpoq + + + + + + + talk or gossip of a rural area + + + + + + that occupies oneself + + + + + + + + + to subject to electrolysis + + + + + + + + + to increase the amphibolitic content of a rock + + + + + + + + + to regulate the body’s water content and solutes + + + + + + + + + to perform parathyroidectomy on + + + + + + + fine-grained albite-rich rock resulting from contact metamorphism of shales and slates + + + + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + + + + + + the practice of designing, manufacturing, using, and disposing of information technology products in an environmentally friendly way + + + + + + + + + to flow or wash over; to inundate + + + + + + + + + to convert by petrification into jasper + + + + + + + + + + + to break the law + + + + + + + bleating sound + + + + + + + + + to spit a lump of phlegm + + + + + + + + + to work as an adjunct + + + + + + to have been made widely available, formally released + + + to have had works accepted for publication (as an author) + + + + + + + act of disturbing, disturbance + + + + + + + + + to make a dull or plangent sound upon impact + + + + + + + + + to pair or team up with another person + + + + + + + + + to make a rejoinder to something or someone authoritative + + + + to reply (not necessarily impertinently) + + + + + + + the fly agaric toadstool, Amanita muscaria, which was formerly smeared on bedsteads to repel bedbugs + + + + + + + mineral, complex sulfate of aluminum + + + + + + + + + to behave in an aimless or idle manner; putter + + + fiddle with + + + + + + + sacred object, amulet + + + + + + + type of shaman and traditional executioner amongst the Arrernte people + + + + + + + hydrous fluoride mineral of calcium and sodium + + + + + + the act or action of performing the high jump + + + + + + + joking, teasing + + + + + + + understanding, knowledge + + + + + + + + deep purple-red colour, like that of Burgundy wine + + + + + + + musical instrument resembling a guitar with plucked metal strings and a scalloped body + + + + + + close by + + + + + + (of a person) associated, accompanying + + + + + + that hints + + + + + + + the state of being a servant + + + + + + + a white, deliquescent crystalline compound, ZnCl₂, used as a wood preservative, a disinfectant, a soldering flux, and for a variety of industrial purposes, including the manufacture of cements and paper parchment + + + + + + + + foolishly stupid: clueless + + + + + + + act to gargle + + + + + + the fragrant wood of the root and stem of either of two shrubs (Convolvulus scoparius and C. virgatus) native to the island of Tenerife + + + + + + + a dark-gray crystalline compound, GaAs, used in transistors, solar cells, semiconductor lasers, and other semiconductor applications + + + + + + + the branch of astronomy concerned with comets; cometology + + + + a treatise on comets + + + + + + + description of trees + + + the recording of tree growth by a dendrograph + + + + + + + examination of the aorta using x-rays following the injection of a radiopaque substance + + + + + + acute febrile disease especially of swine and some nonhuman primates caused by a picornavirus + + + + + + + dislike of or prejudice towards people, cultures, and customs that are foreign, or perceived as foreign; xenophobia + + + + + + + the study of the geographical distribution of extinct or fossil animal species or populations + + + + + + + the compilation, description, or analysis of myths + + + a critical anthology of myths + + + + + + + a history or description of fevers + + + + + + + an electrotype process by which a copy of an engraved plate is obtained with a raised surface, suited for letter-press printing + + + + + + + the study of luminous atmospheric phenomena, such as rainbows, parhelia, etc.; a treatise on this subject + + + + + + + wingtip device + + + small or rudimentary wing + + + + + + + medium or membrane used for ultrafiltration + + + + + + pertaining to tourists or touring + + + + + + + apparatus for determining the direction from which radio waves are coming + + + + + + + diseased or morally degenerate city + + + + + + + instrument for measuring the absorption of light or other radiation + + + + + + + instrument for measuring the concentration of alcohol + + + + + + able to communicate fluently in two or more languages + + + + + + + fictional work lacking traditional elements of the novel + + + + + + + tartar deposited from wines completely fermented + + + + + + + avgas; gasoline for use in piston-driven airplanes + + + + + + lacking mutual consent + + + + + + + pay issued retroactively + + + + + + + instrument for determining the expansion of a liquid by heat + + + + + + + unit of area equal to 10 ares + + + + + + + photoconducting substance or device + + + + + + + class of substances released into water by eggs of some aquatic animals + + + + + + wood-eating (of certain beetles) + + + + + + + chief administrative officer + + + + + + + board bearing notice; signboard + + + + + + relating to particles of rock that have been broken down from pre-existing rocks by erosion and weathering + + + + + + + + well-mannered, good-natured + + + + + + + + + (of an animal) to lie on stomach with legs stretched out + + + + + + that chokes, stops respiration + + + + + + each week, per week; weekly + + + + + + + ritual ablution; wudu + + + + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + + + + + conveyed by instruction + + + + + + + the fruit of the shrub or small tree Amelanchier alnifolia (family Rosaceae) + + + + + + in expectation of, anticipating + + + + + + + electronic radio component + + + + + + + + + to strike, to knock + + + to bump into or against + + + to have sexual intercourse with + + + + + + of a structure, precomposed + + + + + + + + + + to swirl or rotate + + + + + + + + + to feel or search with hands; to grope about + + + + + + + + + to restore to a former legal status + + + + + + + + + to put or hold forward in opposition against or to + + + + + + + + + to utter (words or prayers) + + + + + + + + + to bring forth; to give off + + + + + + + + + to affect, exhibit affectation + + + + + + + + + to make or shape by artifice; to construct, contrive + + + + + + + + + to place before in position + + + + + + + + + decompound + + + + + + + + + to make (a molecular structure) into a supercoil + + + + + + + + + to place in a tomb + + + + + + + + + for a tornado storm to occur + + + + + + + + + to stimulate the transcription of (a gene) by binding to DNA + + + + + + + + + to carry out transfer of phosphate between molecular compounds; to exchange phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + + + + exhibiting three phases + + + + + + + the use of ice-penetrating radar to investigate the thickness, roughness, motion, and debris of a body of ice, and to measure and detect crevasses and sub-ice lakes + + + + + + + + + to react with insufficient enthusiasm or vigor + + + + + + + + + to move quickly from place to place + + + + to move as if by hopping + + + + + + + + + to provide education at home + + + + + + + + + to greet with a high-five + + + + + + + + + to boil an egg until the white and yolk are hard + + + + + + + a squat broad-mouthed usually covered jar (as of bronze, pottery, or jade) used mostly as an incense burner + + + a psychological affliction in which an individual believes his genitals or her vulva and nipples are retracting and likely to disappear + + + + + + + + + to express admiration or pleasure by saying ‘ah’ + + + + + + + + + to scrape with a curette + + + + + + + + + to deprive/divest of nuclear armaments + + + + + + putting anthropology to practical use in its broadest sense, ranging from research and design to the implementation and management of an organization, process, or product + + + + + + + + + to present or report in a sensational, lurid, or melodramatic manner + + + + + + + + + to re-establish or restore blood supply to + + + + + + + any of various theories asserting the validity of objective phenomena over subjective experience + + + an ethical theory that moral good is objectively real or that moral precepts are objectively valid + + + a 20th century movement in poetry growing out of imagism and putting stress on form + + + philosophical system named and developed by Russian-American writer and philosopher Ayn Rand + + + + + + + the study of enzymes at very low temperatures + + + + + + + the quality or character of being vainglorious + + + + + + without the use of a condom; (also) not in possession of a condom + + + + + + olive-green + + + + + + + + + Originally: to utter an exclamation or sound represented by ‘ouch’. Now also: = hurt + + + + + + + the position, status, or character of a puny; junior position or status; inferiority + + + + + + + a large building used for storing farm machinery, vehicles, etc. + + + + + + + a small quantity of loosely-aggregated matter resembling a flock of wool, held in suspension in, or precipitated from, a fluid + + + a bright or dark patch on the sun + + + either of two small lobes on the lower posterior border of the cerebellum + + + + + + + substance giving butter its characteristic aroma + + + + + + money + + + + + + comments or explanatory notes about a recording printed on the jacket or an insert + + + + + + + a fifth anniversary + + + a period of five years + + + + + + + artillery soldier next in rank below a gunner + + + + + + + + + to collaborate on a design with someone else + + + + + + of, pertaining to, or derived from intuition; of the nature of intuition + + + + + + + the place in which a person or thing is; location, whereabouts + + + + + + + an organism that feeds on mites + + + + + + drawn, allured + + + + + + against; in return for + + + + + + used to, acquainted with + + + + + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + + + + + + + + to assail or prey upon after the manner of a vampire + + + + + + in a westward direction + + + + + + + scumbag; disreputable person + + + + + + + + + to pronounce with a harsh or guttural voice + + + to sing or enunciate in a throaty voice + + + to work very hard + + + + + + + utilization of computer knowledge in a clever way + + + remove pieces + + + cough + + + + + + + the wife of a dauphin + + + + + + + + process of becoming prosperous + + + + + + + act of freely giving + + + + + + + unjoining, disintegration + + + + + + + causation of damage + + + + + + engage in sexual relations, having been the recipient of sexual relations + + + + + + greet, accept, happily permitted + + + + + + + collaboration + + + + + + + + + to write or record in a diary + + + + + + + + + to formulate a strategy + + + + + + + + + to make a tumult, commotion, or disturbance; to raise an insurrection, to riot + + + + + + + a gene-hunting technique that traces patterns of disease in high-risk families + + + + + + + a nutritional supplement composed of serum-derived bovine protein concentrate containing high levels of immunoglobulins (Ig), particularly IgG, with the potential to improve nutritional status + + + + + + being alone : solitary, isolated + + + + + + + + + to recompense, reward; to pay for something done + + + + + + deserted; left solitary or desolate + + + + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + + + + + + result + + + + + + describing a type of assessment in which the learner’s current level of achievement, skill, knowledge, or understanding is assessed against their own previous level, rather than against fixed criteria or a norm + + + describing a process of learning in which the same content is covered more than once, but at an increasingly challenging level, as happens within a spiral curriculum model + + + + + + of, relating to, or characterized by dialogue + + + + + + + depending on or exercising opinion + + + + + + worry about, be emotionally involved with, cause anxiety about + + + indicating a particular condition or outcome. + + + + + + a Japanese bamboo flute + + + + + + + let go + + + + + + + the act or process of macadamizing + + + + + + + a diverse range of critical, iconoclastic, and non-linear approaches to researching the historical development of media technologies and the history of ideas about them + + + + + + the academic investigation of the mass media from perspectives such as media sociology, media psychology, media history, media semiotics, and critical discourse analysis + + + + + + + the disclosure of an inappropriate amount of detail about one's personal life + + + + + + + an ornament worn in a perforation of the lip + + + + + + having the form of an animal + + + of, relating to, or being a deity conceived of in animal form or with animal attributes + + + + + + + jar with a human face, usually in appliqué technique, formed on the shoulder; the function of these vessels was often funerary + + + + + + + obtaining or using from a specific source + + + providing to, being the source + + + + + + + summing + + + saying + + + + + + + + + to inspire guilty feelings + + + + + + + move downward + + + be defeated + + + become + + + the act of occurring + + + + + + + a substance being studied in the treatment of follicular non-Hodgkin lymphoma + + + + + + + an antiviral agent used to prevent or treat cytomegalovirus infections that may occur when the body's immune system is suppressed + + + + + + + an orally bioavailable, synthetic, highly selective adenosine A3 receptor (A3AR) agonist with potential antineoplastic activity + + + + + + + + + well known, popular, renowned + + + + + + cockery + + + + + + go by + + + + + + + a dice game resembling hazard + + + + + + + uncle; nuncle + + + a fool + + + + + + get by + + + + + + + the branch of zoology that deals with the ascidians or broadly the tunicates + + + + + + + person or animal of small size and stature + + + child + + + + + + oops; sorry, I just let off + + + + + + + theology based on the Bible; specifically : theology that seeks to derive its categories of thought and the norms for its interpretation from the study of the Bible as a whole + + + + + + + a design where signal paths are balanced or symmetrical, often used to reduce noise and improve signal integrity, especially in audio and RF applications + + + + + + + the technology approved by legislators or regulators for meeting output standards for a particular process, such as pollution abatement + + + + + + + subfield of sociology that examines the role of culture in shaping social life, including how people create meaning, form groups, and interact with cultural expressions within institutionalized settings + + + + + + + move forward or upward + + + + + + + stretch of water where the waves break over a submerged reef + + + + + + + sea urchin + + + porcupine fish + + + + + + + + + to incite or urge a dog to attack or chase + + + + + + (mathematics) of or pertaining to the fiber of a map + + + + + + + the application of methods and principles of psychology to problems of military training, discipline, combat behavior + + + + + + + + + free-climbing a route, while lead climbing, after having practiced the route on top-rope beforehand + + + + + + + explore, discover new places or things, searching out new places + + + + + + botch, mess up, make a hash of, short for 'fuck up', screwed up + + + + + + + the study of human races + + + + + + + the branch of entomology concerned with fleas (Siphonaptera) + + + + + + + follow, pursue + + + + + + + the branch of paleontology dealing with ancient and fossil animals + + + + + + + + to come down, lower oneself, or arrive, lowering + + + + + + draw attention away from something, not focused on what is at hand + + + + + + make more western (new world), make more western (European-based cultures) + + + + + + + relinquish, give up rights to + + + + + + + act or process of filling with liquid or emptying of liquid + + + act or process of moving up and down + + + + + + + monitor, watch, serve as police for, enforcing the law + + + + + + + theology based on and attainable from revelation only + + + + + + + + the geological features of a given region specifically excluding superficial deposits such as clay, sand, etc. + + + + + + + the hobby of collecting sugar packets + + + + + + + act/process of discarding, throwing away, dismantling for scraps + + + + + + + the process of dwindling; gradual diminution or decline + + + + + + + the practice of diagnosing disease by visual inspection of the patient's urine; uroscopy + + + + + + + the branch of zoology concerned with quadrupeds + + + + + + + to save or relieve from + + + + + + + act of renting + + + be a landlord + + + + + + + the initial topology (or induced topology or strong topology or limit topology or projective topology) on a set X, with respect to a family of functions on X, is the coarsest topology on X that makes those functions continuous + + + + + + + the classification of lakes based on various characteristics + + + + + + + act/process of moving a fluid, or fluid-like, substance from a container, especially into another in a controlled stream + + + + + + + send a text message via cell phone + + + + + + + an expert in bryology + + + + + + enticed, seduced, inclined to + + + + + + + relative unit of measurement used in mapping of chromosomes; one hundredth of a morgan + + + + + + act or process of increasing incrementally + + + + + + + a system of classification that creates distinct, non-overlapping categories or "types" to represent different aspects of a phenomenon + + + + + + + act of looking intently, gazing fixedly + + + + + + + act of setting one thing atop another + + + + + + + a medical specialty that uses medical imaging techniques to diagnose and treat diseases + + + + + + + a creative person + + + + + + with confidential or sensitive information excluded + + + + + + + type of combustion system that utilizes a circulating bed of solid particles, like sand or limestone, to burn fuel + + + + + + + concept in object-oriented programming that allows a new class (a subclass or derived class) to automatically acquire the properties and behaviors of an existing class (a superclass or base class) + + + + + + + the tools, resources, and technological systems medical professionals use to diagnose, understand, and treat patients + + + + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + + + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + + + + + + + + to make a sortie; to sally + + + + + + + a catalogue of saints, or a collection of saints' lives + + + + + + + + to direct the course + + + + + + + + + (cause to) experience stress (phrasal) + + + + + + + The act of renting a place as a landlord + + + The act of renting a place as a tenant + + + + + + + contract work to an outside entity + + + + + + + an act or instance of touching up + + + + + + + + + to say as a quick retort; to say (a witty or sharp reply) in answer to an earlier remark + + + + + + + the act of engaging in a lively and witty exchange of retorts, or the skill of making clever and quick replies + + + + + + + + + the use of growth rings in trees to date when timber was felled, transported, processed, and used for construction + + + + + + + + + short for 'superimpose:' put one thing atop another + + + + + + + moving with a whooshing noise + + + + + + hold a second job + + + + + + + + + + + to feed or fatten (livestock, especially sheep) on turnips + + + + + + + the study of urine or the science of the urinary system + + + + + + + the study of fungi in the Zygomycota group (bread molds, etc.) + + + + + + + manner of motion, jumping + + + + + + having a freckled face + + + + + + + a hollow or depression in a surface; a wrinkle + + + + + + + arm strengthening exercise + + + + + + + + + go away + + + + + + + + + to perform a pole vault + + + + + + confounded, baffled, perplexed + + + + + + + a disorder of vocal communication marked by involuntary disruption or blocking of speech (as by abnormal repetition, prolongation, or stoppage of vocal sounds) + + + + + + + The act of making flakes + + + + + + + twist (a body part) emotionally + + + + + + + the ability of a layer of a substance to absorb radiation expressed mathematically as the negative common logarithm of transmittance + + + + + + covered with insulation, protected + + + + + + The act of explosive air motion + + + + + + + conscious abandonment of allegiance or duty (as to a person, cause, or doctrine + + + + + + The act of experiencing great pleasure + + + + + + make acidic + + + + + + + well_up: gather; upward motion of water, or as if of water, perhaps from a spring + + + + + + acquisition or development of nuclear weapons by a nation or military force + + + + + + + + + to resign; to withdraw or step down from one's position or occupation + + + + + + opposed to war + + + + + + nearby, spatially or temporally; be imminent or immediately relevant + + + + + + + the branch of geology that studies the deformation and movement of the Earth's outer layers, specifically its crust and lithosphere, along with the forces that cause these changes + + + + + + + (obsolete) slaughter + + + (archaic) the power of quelling + + + + + + + act of lifting and throwing (someone) to the ground, as in wrestling + + + + + + + + an illogical situation for which the only solution is denied by a circumstance inherent in the problem or by a rule + + + + + + + + + label by color + + + + + + come by: acquire + + + + + + + + + express two or more genes simultaneously + + + + + + having skin with certain characteristics + + + + + + + traction opposed to another traction, used in reduction of fractures + + + + + + + act in responce to a stimulus + + + + + + + convert into a horny tissue + + + + + + + + + cause to precipitate together + + + + + + + act or process of causing to precipitate together + + + + + + + + + punish + + + + + + + surgery that creates a connection between the jejunum and a cyst for drainage of the cyst + + + + + + + + + to remove necrotic tissue or foreign matter (f. ex. from a wound) + + + + + + + + + remove mast + + + + + + + + + remove rat + + + + + + + The act of decreasing oxygen saturation in hemoglobin + + + + + + + + + goof off, screw around + + + + + + + mastocel + + + + + + oversatiate with cuban food/culture + + + + + + surgical birth + + + + + + + + + combine with a similar molecule to form a dimer + + + + + + + scale down + + + + + + + person who never laughs + + + + + + expression of satisfaction + + + + + + + + + flow outward + + + + + + capable of being elected by voters + + + + + + + + + to drive in the slipstream of a vehicle; draft + + + to travel in the slipstream of (someone), especially in order to overtake them + + + + + + within the skull/vertebrae, but outside the brain/spine + + + + + + having a normal volume of bodily fluids + + + + + + outside of the family + + + + + + + mobilization of the lower end of the esophagus and plication of the fundus of the stomach up around it + + + + + + + + + + enjoy, be amused by + + + + + + + surf move + + + + + + + give by hand + + + + + + + + + gulp all the way + + + + + + + act or process of looking until found + + + + + + + + + to rage around, to cause distruction + + + + + + increase in blood pressure and pulse pressure + + + + + + + overproduce granulation tissue + + + + + + cause to over expand, over-expanded + + + + + + buttress or reinforcing wall + + + + + + + graphic organizer in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a story + + + + + + + The act of analyzing or identifying proteins via antigen-antibody specific reactions + + + + + + + + + separate an antigen from a solution using an antibody that binds to the antigen + + + + + + + + + stain with an antibody + + + + + + + + a miniature optical disk + + + + + + + + + to make into a landfill, fill with garbage + + + + + + + kayak, boating + + + + + + + (cause to) emit + + + + + + + form material by mixing/massaging in repetative folding motion + + + + + + + tightly tangling, pinching, or impeding progress of + + + + + + + Fight primarily with one's feet, often as a form of exercise. + + + + + + likely, appearing + + + + + + + + + secure + + + + + + + forming or dividing into lobules + + + + + + + abnormal rotation + + + + + + + + + to cause a meaningful change, improve; improve the world + + + + + + + + + purposeful attempt + + + + + + + any of several French aperitif wines flavoured with quinine + + + cinchona + + + + + + saving money + + + + + + + + + to purchase an option on something + + + + + + + removal of all or part of the omentum + + + + + + producing an abnormally small amount of urine + + + + + + + badmouthing, with intent to discredit + + + + + + + name + + + + + + + + + move like water in an outward direction + + + + + + + make too calm with (too much) drugs + + + + + + + inflate too much + + + + + + + + + graze to the point of damaging the life cycle of vegetation + + + + + + excessively express a gene by producing too much of its effect or product + + + + + + + + + categorize something as a pathology + + + + + + + + + to become more like a southern region + + + + + + + a specialist in photolithography + + + + + + + + + destroy tissue with an intense laser beam + + + + + + + act of wishing that someone lacked a particular superior quality/achievement/possession of theirs + + + + + + + + + be miserly; avoid spending money + + + + + + blow the whistle on; alert the authorities or public of wrongdoing + + + + + + to take quickly + + + + + + use the WhatsApp to message + + + + + + hold, support weight + + + + + + removal of all or part of the vagina + + + + + + upgrade; make higher-end + + + + + + lift spirits + + + + + + not able to be dislodged + + + + + + cut beforehand + + + + + + add fertilizer beforehand + + + + + + make beforehand + + + + + + preliminary stages to a production + + + + + + to schedule ahead of time + + + + + + conduct a preliminary screening (weeding out) process + + + + + + affix a signature in advance + + + + + + to put into a specific mental state (usually excitement or gullibility) + + + + + + excited or deceived + + + + + + challenge again + + + + + + act of reexamination + + + + + + the act or process of showing again + + + + + + the act or process of putting something somewhere, again + + + + + + act of attestation to the truth of, again + + + + + + find again, notice again + + + + + + call on the phone, again + + + + + + make a corporation again + + + + + + re-introduce or re-admit + + + + + + the process of restoring function by supplying with nerves + + + + + + operative value/efficacy/efficiency, vigor/energy + + + + + + interview or be interviewed again + + + + + + to offer again + + + + + + by night, in the night, overnight + + + + + + to populate (something) again + + + + + + to put a price on something, again + + + + + + + the picking of pockets + + + + + + invite, again + + + + + + relating to rhizomes + + + + + + the act of re-supplying with vessels to conduct fluid + + + + + + removal of one or both ovaries and one or both Fallopian tubes + + + + + + characterized by quirks; quirky + + + + + + + divide a cavity by means of a partition + + + + + + sign_off: give stamp of approval + + + + + + showing off + + + + + + denigrate, insult + + + + + + + football player, footballer + + + + + + dab, apply a gloppy substance, onomatopoetically + + + + + + act of running at top speed + + + + + + squaredance + + + + + + to insert a stent to prevent closure + + + + + + make a short visit + + + + + + to assume (something) as given, fail to appreciate something + + + + + + to discover bit by bit; to extract, obtain, or pry/prise; to get out + + + + + + + event or party, especially one featuring dancehall reggae or ragga music + + + + + + the process of literally or figuratively sloppily chopping + + + + + + the act of giving a response or reply + + + + + + at what time, in which moment + + + at which, on which, during which + + + + + + + cardinal number + + + + + + + number between eleven and thirteen + + + + + + + type of website that visitors can easily and quickly edit + + + + + + ostensible substance coined to trick someone into asking 'what's up, dog?' + "Umm, is it me or does it smell like up-dog in here?" / "What's up-dog?" / "Nothin' much what's up with you?" / "Oh, oh, wow! I walked right into that. Oh, that's brilliant!" + + + + + + + male person or animal already known or implied + + + person whose gender is unknown or irrelevant + + + + + + + + word used by Donald Trump in a tweet, presumably a typo of “coverage” + Despite the constant negative press covfefe + + + + + + placed above + + + + + + + mathematical model combining space and time + + + + + + + The (thing) here (used in indicating something or someone nearby). + This word is a determiner. + + + + The known (thing) (used in indicating something or someone just mentioned). + + + The known (thing) (used in indicating something or someone about to be mentioned). + + + A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + + (of a time reference) Designates the current or next instance. Cf. next. + + + + + + through the means of + + + near to + + + + + + of a kind + + + + + + English function word + + + + + + + The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. + That pronoun is different with this determiner. + + + + + + + target of an action + + + + indicating a location for an event + + + + + + every person, everyone + + + + + + concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + + absence of anything, vacuum + + + + + + + item(s) that are separate and distinct from the item(s) under consideration + + + philosophical, psychological and anthropological concept that refers to the opposite of one's own identity + She and others were disappointed in the results of the election + + + + + + + + up to a certain point in time + + + + + + according to + + + + + + no matter what; for any + + + anything that + + + + + + More than one (of an indeterminate set of things). + Various books have been taken. + There are various ways to fix the problem. + You have broken various of the rules. + + + + + + all over + + + from one end to the other + + + in view of all the circumstances or conditions + + + as a whole : generally + + + with everyone or everything taken into account + + + + + + + physical sensations caused in the mouth by a substance, e. g. food or drink + + + + + + + flying insect typically within the Diptera family + + + + + + + + + + of poor or inferior quality + + + + + + greeting of non-binding nature + + + + + + With one’s legs on either side of. + The boy sat astride his father’s knee. + + + + + + Except, other than, besides. + He invited everyone to his wedding bar his ex-wife. + + + + + + phrase used when someone is leaving + + + + + + + + container for a set of identifiers + + + + + + + + + make fuzzy, wooly, not having hard edges + + + + + + expression of surprise or disbelief + + + + + + chemical element with atomic number 113 + + + + + + + English archaic personal pronoun + Thou shalt not steal + + + + + + that is perfect; that is it + + + claiming success or a win + + + + + + + + + remove ink + + + + + + Used as an expression of agreement with what another person has said, or to indicate that what they have said equally applies to the person being addressed. + I'm really busy today! —Ditto! + + + + + + + + number between 49 and 51 + + + + + + + anthropomorphized animal + + + + + + + НДС + + + + + + + small plate used to hold Eucharistic bread which is to be consecrated during the Mass + + + + + + + + of or resembling pork; piglike; fleshy, obese + + + + + + + computer programming + + + + + + + time off at home or in one's local community + + + + + + + Synthetic ultralight material + + + + + + + Someone who rides a bicycle + + + Someone who rides a motorcycle + + + + + + + plastics derived from renewable biomass sources + + + + + + + polymer produced by a living organism + + + + + + a set of preventive measures designed to reduce the risk of transmission of infectious diseases + + + + + + + treatment of diseases with biological materials or biological response modifiers + + + + + + + type of radiation therapy + + + + + + + wildfire happening in the bush + + + natural disaster: wildfire in bush land + + + + + + A lysosomal storage disease characterized by the abnormal accumulation of cystine in the lysosomes. It follows an autosomal recessive inheritance pattern and has material basis in mutations in the CTNS gene, located on chromosome 17. + + + + + + non-binary: outside or beyond the gender binary; not exclusively male or female + + + + + + quality of being ready to deploy + + + + + + + land with little water + + + + + + branch of physiology + + + + + + + a science that deals with the practical application of electricity + + + + + + + + + set on fire + + + + + + study of music in cultures + + + + + + + medical condition + + + + + + + + + stream or spray upward + + + + + + + + + provide with a function + + + + + + + + + systematically eliminate a population + + + + + + genetically harmful + + + + + + + science relating to the Earth or planets + + + + + + + graphical user interface element that allows the user to select or unselect an item + + + + + + + shiny coating on an object + + + process of coating with a glaze + + + glass part of a wall or window + + + + + + + rising support + + + + + + + misplaced organ or tissue + + + + + + + highest part of a hill + + + + + + pertaining to hydrology + + + + + + + a branch of dentistry dealing with dental implantation + + + + + + between cells + + + + + + pertaining to karma + + + + + + + highest part of a lake + + + + + + relating to macula + + + + + + + medical condition with too many mastocytes + + + + + + + blood flow through smallest vessels + + + + + + engineering of microscopic devices + + + + + + + funding for low-income entrepreneurs + + + + + + + + + create small particles with a micromold + + + + + + + small-scale mineral structure + + + + + + involving multiple academic disciplines + + + + + + useful for multiple purposes + + + + + + having multiple layers + + + + + + engaging multiple forms of communication + + + + + + + science or profession of museum organization and management + + + + + + + study of matter at near atomic scale + + + + + + + science of drug effects on the nervous system + + + + + + not containing iron + + + + + + + type of fabric + + + + + + + process by which cancer begins + + + + + + branch of pharmacology + + + + + + + + + harden by exposing to light + + + + + + found in a river bank or bed (minerals) + + + + + + plasmon analogue of electronics + + + + + + + + + to carry over a portage + + + to move gear over a portage + + + + + + pertaining to primatology + + + + + + + artificial body part replacement + + + + + + + + + undergo pyrolysis + + + + + + + study of radioactivity in Earth’s ecosystems + + + + + + + + + return to circulation + + + (cause to) go around again + + + + + + + reproduction of graphics + + + + + + + + happy + + + + + + + + + to act as a steward for : manage + + + to perform the duties of a steward + + + + + + + + + make ready + + + + + + Japanese pornographic animation, comics, and video games + + + + + + orphan software + + + + + + from the beginning + + + + + + narrative technique of beginning a story at the beginning of the events + + + + + + + provision of tools + + + + + + + an image file in the Graphics Interchange Format file format + + + any short animated image without sound, regardless of file format + + + + + + at what time. + + + at such time as + + + at the time of the action of the following clause + The show will begin when I get there. + + + conjunction + + + + + + relating to students receiving postsecondary education and not yet graduated + + + + + + study of the flow of urine + + + + + + pertaining to urology + + + + + + an enclosure where kakapo are kept + The second kakaporium (Figure 2) is also on a gentle slope on the north-east corner of the remnant forest, and is an open plan design. + Sometimes called the kakaporium, the pen was safe and stoat-proof. + + + + + + anything (sometimes indicates the speaker doesn't care about options) + + + + + + + ability of an item to be used repeatedly before discarding + + + use of existing assets in some form within the software product development process + + + + + + + type of fossilization + + + + + + behind a paywall; requiring payment to be accessed + It seems ironic that scholars working outside universities may be able to afford to publish only in paywalled academic journals that they are unable to read. + + + + + + + type of mineral containing arsenic + + + + + + + + implement for sprinkling holy water + + + + + + + male Buddhist monk + + + + + + + type of rice cake + + + + + + branch of zoology that deals with the Bryozoa + + + + + + type of pasta + + + + + + + type of bacterial toxin + + + + + + + folded pizza + + + + + + application of information technology in chemistry + + + + + + + scientist studying algae + + + + + + + game usually played on a table or other flat surface + + + product for tabletop game + + + + + + + organism that maintains its body temperature + + + + + + + type of old snow atop glacial ice + + + + + + + herbiovre eating low-growing plants + + + + + + + Russian log hut + + + + + + + very small sovereign state + + + detailed microscopic state of a physical system + + + + + + policy of having one’s cake and eating it too + + + + + + in an accepting manner + + + + + + specifically for letters: referring to or naming in a manner that uses the letter itself at the start of the reference or name + + + + + + event that happens with probability one + + + + + + similarly, in response; correspondingly + + + + + + as if an artist were doing something + + + + + + in a manner suggestive of something being baked + + + + + + unfathomably/endlessly/inexhaustibly + + + + + + in a bustling manner + + + + + + without charm (in a charmless manner) + + + + + + doing without emotion or feeling + + + + + + in a curable manner + + + + + + destroying the looks of something + + + + + + a monosyllabic word or form that is added as a suffix to another word and cannot stand by its own + + + + + + like an inscription in the beginning of a book or over the entrance to a building + + + + + + honestly and without cheating or lying + + + + + + in a fathomless manner + + + + + + time period of two weeks + + + + + + shamelessly/brazenly + + + + + + in a manner without a hat + + + + + + very, a lot, with intensity + + + + + + in an ironic or sarcastic manner + + + + + + one acting unhelpfully/insensitively/tactlessly (not considering the consequences of their actions) + + + + + + disgustingly/foully/repulsively/shockingly + + + + + + quality of fictional events which are not seen, but merely heard by the audience or described or implied by the characters + + + + + + in a circle/ring/spherical form, round about + + + + + + so as to be without equal (in a peerless manner) + + + + + + identifying textual reference, cross-referencing + + + + + + in a quarrelsome manner + + + + + + in a rootless manner + + + + + + done in a brilliant, clever or skillful manner + + + + + + in a shiftless (e.g. lazy/indolent) way + + + + + + in a spiritless manner + + + + + + now, immediately + + + + + + in a toothless manner + + + + + + in a trackless manner + + + + + + in accordance with that which is true + + + + + + in a ubiquitous manner + + + + + + in a venturesome manner + + + + + + How, or in what way. + Wherein did I misspeak myself? + + + + + + foolishly/stupidly + + + + + + + study of ancient water courses + + + study of hydrological features at periods in the historical, prehistoric, or geological past + + + + + + water-based motor sport + + + + + + + landmass containing more than one continent + + + + + + + type of small car + + + + + + + collective organism composed of many individuals + + + + + + + release of a product from its manufacturing facility + + + + + + + chemical compound + + + + + + + infraspecific name + + + + + + + Zika virus protein found in isolate Zika virus/A.taylori-tc/SEN/1984/41671-DAK + + + + + + + cell type + + + + + + + protein + + + protein + + + protein + + + + + + + Describe or represent in terms of a parameter + + + + + + study of the evolutionary history and relationships among individuals or groups of organisms; application of molecular - analytical methods (i.e. molecular biology and genomics), in the explanation of phylogeny and its research + + + + + + + vibrations with frequencies lower than 20 hertz + + + + + + + form of a fungus + + + + + + + a publication's editorial leader who has final responsibility for its operations and policies + + + + + + + + + denied recognition + + + + + + + + + to fill with alacrity; to energize, invigorate + + + + + + + + + to moisten (a thing) + + + to wet lips or throat with drink + + + + + + + + + + to form skin + + + + + + + + + to make stupider + + + + + + + + + to cause to suffer loss of money, property, or reputation + + + + + + + + + to make to resemble jazz + + + + + + + + + to form a salt + + + + + + + + + convert into or enrich with silica + + + + + + + + + establish again + + + + + + + + + to yield tribute + + + to pay as tribute + + + + + + (indicating movement, direction towards a place) + + + before, until (indicating relation to a position in time) + + + (indicating application of or benefactive relationship with) + + + + + + + multi-purpose mobile device + + + + + + + practice of spinning wheels while keeping vehicle stationary + + + emotionally and physically drained beacuse of any task + + + + + + + person listed in the author list of a creative work + + + + + + + pliable transparent plastic material + + + + + + + property of that materials that exhibit both viscous and elastic characteristics when undergoing deformation + + + + + + use of chemical compounds to prevent the development of a specific disease + + + + + + + the nanostructure of a biological specimen that can be viewed with ultramicroscopy or electron microscopy + + + + + + + the process of one or more receptors activating another + + + + + + + chemical reaction + + + + + + + double layer of closely packed atoms or molecules + + + + + + + class of chemical compounds + + + + + + + periodic structure of layers of two or more materials + + + + + + + peripheral system disease that is characterized by damage affecting peripheral nerves (peripheral neuropathy) in roughly the same areas on both sides of the body, featuring weakness, numbness, pins-and-needles, and burning pain + + + + + + + Process of active transport by which a cell secretes intracellular molecules contained within a membrane-bound vesicle + + + + + + + atom that has excess nuclear energy, making it unstable + + + + + + + ideograms used in electronic messages and web pages + + + + + + + those who use telecommunications technologies to earn a living and, more generally, conduct their life in a nomadic manner + + + + + + application of ultrasound + + + + + + + Process of a disordered system forming organized structures without external direction. + + + + + + + addition of a sulfate group to a molecule. + + + + + + + A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one cell to that of an adjacent cell. + + + + + + + Embryological process + + + + + + + class of chemical compounds + + + + + + + class of enzymes, type of hydrolase + + + + + + + the time period during which a specific antibody develops and becomes detectable in the blood + + + + + + + physician who treats critically ill patients in the ICU + + + + + + + physical damage to body tissues caused by a difference in pressure + + + + + + + cell line derived from cancer cells + + + + + + + Clipping of promotion. + + + + + + + that is made cognizant of/realized + + + + + + + (derogatory) person born in the United States to non-citizen parents + + + + + + + hybrid instrument designed as a cross between the Dobro-style guitar and the banjo + + + a school for training in various arts of self-defense (such as judo or karate) + + + + + + + regular non-binary companion in a platonic, romantic or sexual relationship + + + + + + hatred, irrational fear, prejudice, or discrimination against transgender people + + + + + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + + + + + an annoying, contemptible, or inconsequential person + + + + + + + The practice of making unverified or misleading claims which misrepresent the appropriate level of human supervision required by a partially or semi-autonomous product, service, or technology. + + + + + + wood from a beech tree + + + + + + + able to be received; which has the ability to be received + + + + + + + Sekai no Owari single + + + + + + + swimming while breathing through a snorkel + + + + + + + + + + + + + elect again to the same position + + + + + + From the higher end to the lower of. + The ball rolled down the hill. + + + + + + regarding; considering + I wrote to him respecting the proposed lawsuit. + + + + + + While waiting for something; until. + Pending the outcome of the investigation, the police officer is suspended from duty. + + + + + + Across, athwart. + + + + + + in addition to what has been said previously + + + + + + in another way + + + or else + + + + + + wherever + + + + + + In advance of the time when. + Brush your teeth before you go to bed. + + + + + + What place. + Where did you come from? + Where are you at? + Where are you off to? + Where you off to? + Do you know where you came from? + + + + + + + whatever person + + + + + + look, see, behold . + + + + + + No! Not at all! + + + + + + (expression of strong feeling) + + + + + + An exclamation yelled to inform players a ball is moving in their direction. + + + + + + an imitation or representation of the grunt of a pig + + + + + + An exclamation to invoke a united cheer: hip hip hooray. + + + + + + A liturgical or variant form of hallelujah. + + + + + + Ellipsis of stand fast, a warning not to pass between the arrow and the target. + + + + + + Indicating surprise, pity, or disapproval. + Dear, dear! Whatever were they thinking? + + + + + + A mild expression of annoyance or exasperation: bother! + + + + + + Expressing good wishes when greeting or parting from someone; hello; goodbye. + + + + + + Expressing exasperation. + We're being forced to work overtime? Oh, brother! + + + + + + no longer in vogue + + + + + + + disruption caused by a disagreement or misunderstanding + + + + + + heritage related to sounds, smells, etc. + + + + + + + name considered ill-suited + + + + + + + code name + + + + + + + name consisting of only one word + + + + + + + political movement + + + + + + + hypothesis + + + + + + + cylindrical section of a naturally occurring substance, usually obtained by drilling with special drills into the substance. + + + + + + + Energy usage that meets the needs of the present without compromising the needs of future generations + + + + + + economy based on low carbon power sources + + + + + + global cooling phenomena + + + + + + + capacity of a socio-ecological system to maintain function during climate change + + + + + + natural reservoir that stores carbon-containing chemical compounds accumulated over an indefinite period of time. + + + + + + + archaic Greek letter + + + + + + + sensation that an event has been experienced in the past + + + + + + + asian motorbike + + + + + + + someone that asserts that the 2001 terror attacks are at the center of a conspiracy + Despite Maxwell’s efforts, the truthers doubled down, more certainthan ever that there was a conspiracy afoot. + At the Eastern Bloc coffee shop, we sat through a few revolutions of customers stopping to eat and talk and laugh, and Charlie seemed to feed off of it, raising his voice so that bystanders could easily hear him explain from within a cloud of American Spirit cigarette smoke why he was no longer a truther. + + + + someone who is convinced that a powerful conspiracy is actively hiding the real facts regarding a significant topic or event from the general public + + + + + + + personalized character created by the furry fandom + + + + + + + attack from the air + + + + + + + state or condition of being unsentimental + + + + + + + + + a file that uses the jpg file format + + + + + + + potato + + + + + + + potato + + + + + + + attribute in video game representing the health of a game character + + + + + + + Virtual reality device in Star Trek + + + + + + + + + to alterate a previously established facts in the continuity of a fictional work + It was in the development of this sequel—the more mature epic fantasy The Lord of the Rings—that Tolkien began to retcon certain events from The Hobbit. + + + + + + the practice of alterating previously established facts in the continuity of a fictional work + Retconning has been made most explicit in the imaginary worlds of the superhero "universes" found in comic books published over the past seventy-five years by DC Comics and Marvel Comics. + + + + + + + a South American rodent + + + + + + + a despicable person + + + + + + + a contemptible person + + + + + + + baseball position + + + + + + + fine mica mineral; commonly occurs as alteration mineral of orthoclase or plagioclase feldspars in areas subjected to hydrothermal alteration + + + + + + + special consideration to individuals solely on the basis of their species membership + + + + + + + + silly, foolish + + + + + + + parameter used to control machine learning processes + + + + + + species occurring outside its native range + + + + + + + a member of Generation Z + + + a female breast + + + + + + + reluctant to wear face masks during a disease outbreak + + + skeptical of the usefulness of face masks + + + + + + + attempting to trick a person into revealing information + + + + + + + abbreviation consisting of the first letters of words + + + + + + + member of the Afrotheria clade of mammals + + + + + + nothing of value, emphatically nothing + + + + + + attracted to both the same and opposite sex or gender + + + + + + condition where a person differs from normal male or female physical characteristics + + + + + + three-dimensional + + + + + + of or relating to a lynx + + + sharp-sighted + + + + + + + one who vapes + + + + + + + a trucking rig consisting of a tractor and a trailer and typically having eighteen wheels + + + + + + + + + outdoor camping with amenities and comforts not typically had while camping + + + + + + extremely good or impressive + + + + + + + smartphone sold by Apple, Inc + + + + + + + laughing out loud + + + + + + + a single piece in the game of milk caps + + + + + + drunk + + + + + + able to find in a Google search + + + + + + + + the point on the compass or the direction midway between east and southeast + + + + + + fifth-generation + + + 5th generation of cellular mobile communications + + + + + + + collective of users of a service + + + + + + + any weevil in the family Curculionidae + + + + + + + + any bird of the family Acanthizidae + + + + + + + any insect of the clade Heteroneura + + + + + + + Anolis carolinensis + + + + + + + + any moth of the clade Pterophoridae + + + + + + + an instance of someone buying many things in a short period of time + + + + + + naturally-occurring retinol (vitamin A) precursor obtained from certain fruits and vegetables with potential antineoplastic and chemopreventive activities + + + + + + + official postnominal title + + + + + + designating lesbians and gay men collectively + + + of or relating to lesbians and gay men + + + designating lesbians, gay men, and bisexuals collectively + + + of or relating to lesbians, gay men, and bisexuals collectively + + + + + + + in plural form, lesbians and gay men collectively + + + in plural form, lesbians, bisexuals, and gay men collectively + + + + + + + class of yellow or white flavonoid pigments found in plants + The yellow comes from anthoxanthins, powerful protectants against free-radical damage. + The variety of anthoxanthins is greater than that of anthocyanins, and new anthoxanthins are continuously being discovered. + + + + + + + تحریکِ التواء + + + + + + + a special group of people, a committee, a delegation, etc. + + + + + + worthless, bad, horrible, untrue + + + + + + + person who attends to customers by serving them food and drink + + + + + + having a sexual orientation that changes over time + + + + + + + Marxist term to describe the underclass + + + + + + + condiment made typically of peppers, pickles, grated coconut, salt fish, or fish roe + + + + + + + insulting and racist term of address or reference to an Indian man + + + insulting generic name given to an Indian trader or hawker, particularly a vegetable-hawker + + + + + + + building or room where computer servers and related equipment are operated + + + + + + electricity + + + + + + + elastic band + + + + + + + brownish-red clay that has been baked and is used for making things such as flower pots, small statues, and tiles + + + reddish-brown color + + + + + + + a hybrid between a zebra and any other equine + + + + + + related to or resembling a zebra + + + + + + + of or among the highest rank, level, importance, or quality + + + + + + relating to or in the style of brutalism + + + + + + used to describe a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + + + + + one who wields something + + + + + + the revival of the policies and practices of Brezhnevism + + + + + + corundum; ruby or emerald mineral + + + + + + collection of records, documents or works + + + + + + + + having great girth + + + + + + + + + To look through something very quickly, roughly, or energetically + + + + + + + someone who is a foreigner in Japan + + + + + + + pseudoscientific alternative medicine method using colored light + + + + + + used to wish someone the best of luck and that events will turn out in favorably + + + + + + + any mollusc of the class Monoplacophora + + + + + + + a mammal in the family Mephitidae + + + + + + + marine mammal in the seal family Phocidae + + + + + + + a mammal of the family Tachyglossidae + + + + + + + any toad in the family Bufonidae + + + + + + + any frog in the family Dendrobatidae + + + + + + of, relating to, or resembling the ostrich or related ratite birds + + + + + + + + a mammal in the family Orycteropodidae + + + + + + + + having partially, noticeably distinct, or fully white-colored thighs + + + + + + + heavy steel ball used for demolishing buildings + + + + + + nearby, next to + + + + + + + a member of the bird family Columbidae + + + + + + + square section or area, sometimes containing an inscription + + + + + + of or relating to moles in the Talpidae + + + + + + + Conversion into a xanthate. + + + + + + + Japanese rice ball + + + + + + chewing gum that can be blown into bubbles + + + pop or rock music having simple repetitive phrasings and intended especially for young teenagers + + + + + + + house made of brick + + + attractive/curvaceous woman + + + + + + + marinering + + + + + + + demographic segment + Mary is a soccer mom. + + + + + + + in cricket, ball which breaks from the leg (to a right-handed batter) + + + + + + + master, especially of music in South Asia + + + + + + + tax on business of selling liquor in India + + + + + + + physical and chemical changes undergone by sediment after deposition + + + + + + of a manner of Jewish religious practice that is considered to be intermediate between the Conservative and Orthodox movements in liturgy, observance, etc. + + + + + + + megalopae; stage in the life cycle of crustaceans in the Malacostraca class + + + + + + + + + to think something is good, agreeable + + + + + + + emerald + + + + + + + amount of attention received by audio media + + + + + + + insect possessing wings + + + + + + + swamp-dwelling creature in south-eastern Australian aboriginal mythology + + + + + + + small sack for carrying things + + + + + + ablution, abdest + + + + + + + branch of medicine that deals with the nose and its diseases + + + + + + branch of entomology dealing with wasps + + + + + + + branch of herpetology dealing with snakes + + + + + + + + + (indicates immanent occurrence of action) + + + + + + study of fossil footprints and traces + + + + + + + + scientific study of dreams + + + + + + + branch of pharmacology dealing with cinchona and its derivatives + + + + + + + the study of the organization of the egg especially with reference to localization of subsequently developed embryonic structures + + + the science of the fundamental morphology of organisms, which aims to describe in mathematical terms the stereometry and symmetries of organic forms; the features of organisms so studied. Now chiefly historical + + + + + + + branch of zoology dealing with mammals + + + + + + + + + + + branch of veterinary medicine concerned with veterinary obstetrics and with the diseases and physiology of animal reproductive systems + + + + + + branch of medical science dealing with the structure and function of glands and lymphoid organs + + + + + + + the study of the devil or devils + + + + doctrine or beliefs concerning the devil; devil lore + + + + + + + the study of cats + + + + + + + alkaline abrasive used to remove paint + + + + + + + + + to say ’amen’ to; to endorse an utterance of another + + + + + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + + + + + wild soursop, mountain anona + + + + + + + in imprecations, damnation + + + + + + + study of animal diseases + + + + + + + + the study of marine viruses + + + + + + the study of bacteria in marine environments + + + + + + the systematic attempt to account for such psychological variables as temperament and character in terms of bodily shape and organic function + + + + + + the study of the ego especially with regard to mechanisms of defense, transference, reality-testing, and attainment of the ego ideal + + + + + + the study of the mind and behavior of different peoples through analysis of the human factors involved in their cultural and technological development + + + the mental traits common to or characteristic of a people + + + + + + + a membrane-bound storage structure, containing protein and lipid, that is found in large numbers in the cytoplasm of the eggs of all animals except mammals + + + + + + + membrane-bound disc containing high concentrations of yolk found in eggs + + + + + + stay still (for a moment); exclamatory expression + + + + + + seemly, proper, fitting + + + + + + in birds, applied to feet in which two toes point forwards, and two to the rear + + + + + + + an altitudinal belt of stunted and often prostrate trees, found between the upper limit of tall, erect trees growing in forest densities (waldgrenze; timber-line) and the extreme upper limit of tree growth (the species limit or baumgrenze) + + + + + + consitent of, having been created from + + + + + + + the study of the planet Mars + + + + + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + + + + + prepared only with ingredients from animals whose lungs contained no forbidden adhesions on the outside of their lungs + + + + + + + branch of climatology concerned with the impact of climate on agriculture + + + + + + + + the study of emblems + + + + + + + the study of endemic diseases + + + + + + + the study or collection of knives + + + + + + on or characterized by a relatively small or detailed scale + + + + + + + the study of rivers + + + + + + + + branch of knowledge dealing with vitamins, their nature, action, and use + + + + + + + vital energy units according to Reich's theories + + + + + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + + + + + + the science of geology as applied to extraterrestrial objects and other planets + + + + + + + + investigation of the supposed relation between the celestial bodies and the weather + + + + + + + + the systematic use of the fingers and hands as a means of communication; a manual alphabet + + + branch of anatomy concerned with joints + + + + + + process for strengthening steel alloys + + + kind of hard steel obtained with the homonym process + + + + + + + important + + + preparing or about to do something + + + + + + + finger spelling + + + the technique of communicating by signs made with the fingers + + + + + + + the study of a culture's system of classifying knowledge (such as its taxonomy of plants and animals) + + + + + + + branch of physiology concerned with the function and activities of tissues + + + structural and functional tissue organization + + + + + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + + + + + + the study of fires and fire regimes in global forest, prairie, shrubland, chaparral, meadow, and savannah ecosystems + + + + + + + the study or description of the history or genealogy of heroes + + + a history of or treatise on heroes + + + + + + + the study of the membranes of cells and cell structures + + + + + + + branch of biology concerned with the study of organisms as individuals + + + + + + + the study of mythological nymphs + + + + + + + the branch of toxicology dealing with toxicity to the nervous system + + + + + + non-finite + + + + + + + company for which members’ responsibility for debt is legally limited to the extent of their investment + + + + + + + the study of the origin of surnames + + + + + + + the study of biological substances or processes with the aid of antigens or antibodies labeled with a radioactive isotope + + + + + + + the study of plant diseases and their causes + + + + + + + + + the branch of zoology dealing with sponges + + + + + + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + + + + + + opposition to theology + + + + + + + the science of botany + + + divination by plants + + + + + + + the branch of botany which is concerned with the study of fruits + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + the study of turtles and tortoises + + + + + + + + the study of those things that determine the highest good or best way of life for humankind + + + + + + + the microscopic study of cells shed or obtained from the body especially for diagnostic purposes + + + + + + + the study of chaos and chaotic systems + + + + + + + the branch of cytology devoted to study of the chromosomes + + + + + + + refers to the careers of politicians who have experienced a significant decline of their political influence and electoral viability + + + + + + + branch of sociology concerned with the modes of recurrent social relationships (as competition, division of labor, supraordination, and subordination) that are conceived to exist in any type of human association + + + + + + + the part of logic dealing with the establishment of criteria + + + + + + + the feeding habits of an animal or animals + + + + + + + the study of lighthouses and signal lights + + + + + + + plant ecology + + + + + + + + a scientific treatise on pores or porous bodies + + + + + + + the branch of ornithology concerned with the incubation of eggs and rearing of young + + + + + + + the application of psychological principles to the problems of vocational choice, selection, and training + + + + + + + the study of the actions and thought processes of both the individual members of a crowd and a crowd as a collective social + + + + + + + + + in mathematics, especially functional analysis, a bornology on a set X is a collection of subsets of X satisfying axioms that generalize the notion of boundedness + + + + + + + the study of how individuals interact with and respond to the environment around them, and how these interactions affect society and the environment as a whole + + + + + + + the study of sociopaths and the disorder known as antisocial personality disorder + + + + + + + theology founded on or fundamentally influenced by speculation or metaphysical philosophy + + + + + + + the study of air motion in the Earth's atmosphere that is associated with weather and climate + + + + + + + phonemics + + + + + + في الأول + + + + + + + linguistics + + + + + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + + + + + + space weather; the study of the meteorology of near-Earth space + + + + + + + + the study and practice of instructional endeavors for and about aged and aging individuals + + + the study of the changes in the learning process caused by old age + + + + + + + the love of fables or stories + + + + + + + the study of the various forms of social structure and the changes that govern or take place in them + + + + + + + theanthropism + + + + + + + a range of philosophical and theological explorations of the idea that God may be dead + + + + + + + + a roll or register of traitors + + + + + + + the study of the relationship between natural geological factors and their effects on human and animal health + + + + + + + subfield of meteorology generally restricted to that part of meteorology not explicitly devoted to atmospheric motions; usually deals with optical, electrical, acoustic, and thermodynamic phenomena of the troposphere, its chemical composition, the laws of radiation, and the physics of clouds and precipitation + + + + + + + the representation of the climate of a region by the frequency and characteristics of the air masses under which it lies; basically, a type of synoptic climatology + + + + + + + omvendelsesterapi + + + + + + + degeneration of body’s immune system; immunodeficiency + + + + + + + vacuous chatter, mere talk + + + + + + + a treatise on fevers + + + the description or classification of fevers + + + + + + + the doctrine or consideration of the bursae mucosae + + + + + + + a Grothendieck topology on the category of schemes which has properties similar to the Euclidean topology, but unlike the Euclidean topology, it is also defined in positive characteristic + + + + + + + type of evergreen shrub + + + + + + + the branch of medical science concerned with diet and nutrition; dietetics + + + + + + + + opposed to technology or technological change + + + + + + + the subdivision of the science of hydrology that deals with the occurrence, movement, and quality of water beneath the Earth's surface + + + + + + + + + (first-person singular possessive) belonging to me + + + + + + + (third-person plural possessive) belonging to them + + + + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + + + + + + ability to remember and learn association between unrelated objects + + + + + + + + + + to associate with, join forces with + + + to understand, join in; to accept the party line + + + to enjoy oneself + + + to have sexual intercourse + + + + + + + technology related to the exploration of and activity in space, and with the development of satellites, rockets, etc. + + + + + + + the study of squalor, especially as a supposed science + + + + + + + the science or theory of poetic meters + + + + + + + a sub-discipline of military tactics and passive and active electronic countermeasures, which covers a range of methods used to make personnel, aircraft, ships, submarines, missiles, satellites, and ground vehicles less visible (ideally invisible) to radar, infrared, sonar and other detection methods + + + + + + that does not get tired + + + + + + process where unique economic goods become interchangeable in the eyes of consumers + + + + + + + technology to protect products and operators from contamination + + + + + + + term for that branch of anatomy which treats of the nature and structure of membranes + + + + + + practice of criticizing a woman or gay men who lives their sexuality in a different way to what is socially expected + + + + + + + a combination of theology and mythology + + + + + + + the techniques of deception and manipulation employed by a dominant group (esp. a white majority) to disempower a weaker one (esp. a black minority) + + + innovative techniques or technology, especially for recording or performing music + + + + + + + a figurative mode of speech or writing + + + a mode of biblical interpretation stressing a moral meaning inhering in the metaphorical character of language + + + a treatise on or compilation of tropes + + + + + + + the study of vermin + + + + + + + a field of study and practice that focuses on how industry can be developed or restructured to reduce environmental burdens throughout the product life cycle (extraction, production, use, and disposal) + + + the study of material and energy flows through industrial systems + + + + + + tother + + + + + + that thirsts; thirsty + + + + + + + water impregnated with salt; seawater + + + + + + characteristic of the hand on the right side of the body + + + + + + + thirty minutes + + + + + + + one that yaps (of a dog or person) + + + + + + + + + + гардиш кардан + + + + + + + + + to ride a tricycle (three-wheeled velocipede) + + + + + + + + + to make potential; give potentiality to + + + to convert into potential energy + + + + + + + + + to perpetrate feloniously + + + + + + + + + to crop with wheat + + + + + + + + foolish, mistaken (used as a general negative) + + + + + + + + + + to expose (someone) + + + + + + resembling a thug in behaviour or appearance; tough, hardened + + + + + + + + + to reduce magnification of view + + + + + + + + + to measure the quality or extent of + + + to perform quantitative analysis on + + + + to express in numerical terms + + + + + + + + + + to subject to thyroidectomy + + + + + + + + + + to be made envious, covetous + + + + + + to have an ability; to have means, capacity, or qualification for + + + + + + + + + to inject a substance into a microscopic object + + + + + + + + + to communicate via modem + + + + + + + + + to perform multiple tasks concurrently + + + + + + + social psychology field that studies how groups of people behave differently than individuals; also known as crowd psychology or mob psychology + + + + + + + + + branch of zoology dealing with entozoa, internal animal parasites + + + + + + + + + to put forward as a suggestion or proposal + + + + + + + + + to belch, vomit forth + + + + + + to experience fear, apprehension towards + + + + + + to be experiencing anger + + + + + + + a person who approaches biology from the point of view of an engineer; an expert or specialist in bioengineering + + + + + + + boskru + + + + + + + + + of a liquid, to accumulate forming a pond (especially by being obstructed) + + + + + + + + + to come to an impasse, standstill, stalemate + + + + + + + + + to be or behave like a busybody; to meddle, pry + + + + + + + + good, excellent, cool + + + + + + + + + to add a glycosyl group into a molecule or compound + + + + + + + juice extracted from a pomegranate + + + + + + + sweet sap from date palm + + + + + + + juice extracted from a prune + + + + + + (of a mineral) having a small portion of a constituent replaced by ferric iron + + + + + + interjection used to express surprise, anger, or extreme displeasure + + + + + + + bush bean, bush cucumber + + + + + + + Australian aboriginal boy + + + + + + + bush onion, nalgoo + + + + + + + the theoretical study of metaphysical, logical, divine, or human laws + + + + + + to whom immunity has been granted + + + + + + that holds + + + + + + that wraps, covers + + + + + + that is resident, that resides + + + + + + walking or moving with a slouch + + + + + + relating to or of scandium + + + + + + with regard to + + + + + + + rough, unpolished board + + + + + + + response of untruth + + + + + + + device for drying hair by blowing heated air over it + + + + + + + egret, heron + + + + + + + one who makes tents + + + + + + lacking a servant + + + + + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + + + + + manga or anime intended primarily for boys (usually used before another noun) + + + + + + + the study of the spatial and temporal distribution of fossil organisms, often interpolated with radiometric, geochemical, and paleoenvironmental information as a means of dating rock strata + + + + + + + a bibliography with biographical notes about the author or authors listed + + + + + + + a history or description of printed maps + + + a bibliography of maps + + + + + + + the art of engraving on copper + + + + + + + description of the skin + + + + + + + + the writing of something in one's own handwriting + + + autographs considered as a group + + + + + + + the writing of glosses or commentaries; the compiling of glossaries + + + + + + + the conditions and processes occurring in oceans in the past; the branch of science that deals with these + + + + + + + the art of decorating wood by burning a design with a heated metal point + + + + + + + aviation gasoline; gasoline for use in piston-driven airplanes + + + + + + + one who distills + + + + + + + tenth power of a million + + + + + + + measurement of galvanic currents + + + + + + occurring within a vessel of an animal or plant + + + + + + + soil rich in iron, alumina, or silica formed in humid, high temperature tropical woodland environments + + + + + + + to (attempt to) influence legislation, advocate for + + + + ask a favor, ask a request, ask for + + + + + + + house officer working in surgery + + + + + + + elected house of legislature + + + + + + + black tinged with blue + + + + + + + خَارِج + + + + + + + + + to monitor or select information; to control access to something + + + + + + + a wind instrument consisting of a mouthpiece and a small keyboard controlling a row of reeds + + + + + + + + + to make a denizen of; grant rights of residence to + + + + + + + + + cithara + + + + + + + + + + to save again + + + + + + + energy, spirit; pep + + + + + + + brevity of speech + + + shortened or condensed phrase or expression + + + + + + + idiot + + + + + + + mixture of various kinds of grain sown together for feeding cattle + + + + + + + splenic apoplexy in sheep + + + + + + + failing to win + + + + + + + + + to increase or cause to increase in size + + + + + + + an act of haunting, especially : visitation or inhabitation by a ghost + + + + + + + + + + to tell, impart + + + transfer + + + + + + + + + to face self-assuredly + + + + + + + + + to render fanatical + + + + + + + + + to set forth in words, declare + + + + + + + + + to postpone again + + + + + + + + + to doze + + + + staying in a dorm + + + + + + + + + to heat to relatively high temperature + + + + + + knowledgeable, skilled + + + + + + + + + to incline towards; to deal in + + + + + + + clay whose structure collapses completely on remoulding, and whose shear strength is thereby reduced to almost zero + + + + + + + + + to remove restrictions or limitations; to detruncate + The TAA Study begins with a fixed amount of ammunition and equipment and then unconstrains the support force structure to determine what units are required. + + + + + + + + + to supply with fewer employees than required + + + + + + + + + to split or break up into fission products + + + + split into smaller parts + + + + + + + + + to seek a house to buy or rent + + + + + + + an interdisciplinary field that studies how individual psyches and subjectivities interact with, express, and transform socio-cultural meanings, practices, and institutions + + + + + + + a partially refined, light brown granulated sugar from which most of the molasses has been removed + + + + + + + + a theater company that presents and performs a number of different plays or other works during a season, usually in alternation + + + + + + + administrative unit of feudal England + + + + + + + one of two bird species, formerly regarded as conspecific: western olivaceous warbler, Hippolais opaca; eastern olivaceous warbler, Hippolais pallida + + + + + + (slang) out of one's mind; crazy + + + (slang) wildly enthusiastic + + + (slang) homosexual + + + + + + + a clasp, buckle, fibula, or brooch, esp. one set with precious stones, for holding together the two sides of a garment; (hence) a clasped necklace, bracelet, or the like. Also, in later use: a buckle or brooch worn as an ornament; (more generally) a gem, jewel, or precious ornament + + + (obsolete) the gold or silver setting of a precious stone + + + (obsolete, rare) an abscess; a carbuncle; a sore + + + (obsolete, rare) a wound + + + + + + + + + + to drive mad, to infuriate, to make someone very irritated, angry, or annoyed + + + + + + resembling flocculi + + + minutely floccose + + + + + + + + + + + + the ten percent of earnings or produce that is to charity + + + + + + + the state or quality of being blobby + "Good gracious, look there!" and we looked there, and where we were to look was the lowest piece of the castle wall, just beside the keep that the bridge led over to, and what we were to look at was a strange blobbiness of knobbly bumps along the top, that looked exactly like human heads. + + + + + + happening once every five years + + + consisting of or lasting for five years + + + + + + + a blow to the head + + + + a hollow thud + + + + a state of sudden and extreme fatigue often experienced when participating in endurance sports, especially bicycling + + + an act of sexual intercourse + + + + + + + non-existent + + + + + + + an agreement, an act of support + + + + + + + pizza + + + + + + + any of a group of degenerative diseases of the brain characterized by the progressive formation of vacuoles in the cells of the cerebral cortex + + + + + + + a bookworm: a person unusually devoted to reading and study + + + + + + + an insect or other organism that eats wood + + + + + + + + + to perform a free skate in a figure skating competition + + + + + + (introduces restrictive relative clause) + + + + + + having the characteristics of a gorgon; hideous, repulsive + + + + + + + a man who explains something to a woman in a condescending way that assumes she has no knowledge about the topic + + + + + + + in figure skating, a toe jump that takes off from a back inside edge and lands on the back outside edge of the opposite foot + + + + + + reaching the stomach via the nose + + + + + + relating to or resembling vampires + + + + + + + + + the quality of being constrained; constraint + + + + + + of or relating to the snake family Pythonidae + + + + + + fiercely competitive + + + + + + + a jack ladder having a V-shaped trough up which logs are drawn by a jack chain + + + + + + + Italian bacon that has been cured in salt and spices and then air-dried + + + + + + nonsensical, absurd, pointless + + + second-rate, inferior + + + + very angry, furious + + + + + + smooth: pleasant, affable, polite; seemingly amiable or friendly; having a show of sincerity or friendliness + + + + + + + act of running away + + + + + + + act of causing fright + + + + + + + bitch and moan, express dissatisfaction, problem, concern, complaint + + + + + + + regular undertaking of a task + + + + + + + the acetate salt of a synthetic long-acting cyclic octapeptide with pharmacologic properties mimicking those of the natural hormone somatostatin + + + + + + + a long-acting synthetic analog of somatostatin that is a cyclic octapeptide, is administered especially by subcutaneous injection in the form of its acetate, and is used to treat acromegaly and to treat severe diarrhea associated with metastatic carcinoid tumors and vipomas + + + + + + a genetic disorder caused by having an extra chromosome 18 in some or all of the body’s cells + + + + + + + the fact of something having objective reality + + + + + + + relation to, involvement + + + + + + + relation to, involvement + + + act or process of saying + + + + + + arriving at an endstate + + + + + + come into opposition + + + + + + come into opposition + + + + + + to examine carefully, review + + + + + + + domestic spinning wheel + + + + + + + realism in art characterized by depiction of real life in an unusual or striking manner + + + + + + realistic in art characterized by depiction of real life in an unusual or striking manner + + + + + + + a technique of mass spectrometry that uses a particle accelerator to bring a small amount of the sample to be analyzed to high velocities + + + + + + + + hellish, infernal, devilish + + + + + + + being nearby + + + + + + quickly, fast + + + + + + + cancer that forms in tissues of the gallbladder + + + + + + + + + (in computing) to copy text and replace it elsewhere + + + + + + + provide direction, provide instruction/guidance (not cardinal directions!) + + + + + + + Nyctereutes procyonoides + + + + + + + a large wild edible brownish boletus mushroom (Boletus edulis) + + + + + + + + + + to hasten, hurry up + + + + + + cause to be available + + + + + + + native of South Sea Islands (especially one employed on Queensland sugar plantations) + + + native Hawaiian + + + + + + + + characterized by tune or melody + + + + + + + purgative drug obtained from certain convolvulaceous plants + + + + + + + goldfinch + + + + + + + tool-dresser + + + engineering student + + + + + + sound of spitting + + + + + + + person whose eccentric or foolish behaviour can be exploited to amuse onlookers + + + + + + + + + to hoax, deceive, hoodwink + + + + + + + canned beef + + + + + + + the application of organized knowledge and skills in the form of devices, medicines, vaccines, procedures, and systems developed to solve a health problem and improve quality of lives + + + + + + + the study of the physical characteristics of aquatic ecosystems + + + + + + + the conversion of organic materials (such as wastes) into an energy source (such as methane) by processes (such as fermentation) involving living organisms + + + + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + + + + + + neoorthodoxy especially in its pessimistic view of human nature that holds that humans and all human institutions are inevitably confounded by their own inner contradictions and that the resultant crisis forces humans to despair of their own efforts and possibly to turn to divine revelation and grace in faith + + + + + + + the lore of hotels and inns + + + + + + + the scientific study of the principles of zymotechny + + + + + + predigested by means of zymin + + + + + + characteristic of or relating to personalism, a philosophical movement that stresses the value of persons + + + of or relating to an idiosyncratic mode of behaviour or expression + + + + + + + put or reput x into y, putting x into y with a syringe + + + + + + + to hit, with words or a bat (etc) + + + + + + + to remove or obtain + + + + + + + the medical specialty focused on the diagnosis, treatment, and prevention of infectious diseases + + + + + + + + + + to break off/sever/interrupt suddenly/curtail + + + + + + + the study of manuscripts, encompassing their history, physical characteristics, and cultural significance + + + + + + + the scientific study of psychological reactions + + + + + + + theology based on and attainable from revelation only + + + + + + + + the study of the sociology of reading + + + + + + + the study of the microbiology of soils + + + + + + + the study of the geology of soils + + + + + + in an absconded manner + + + + + + + + + mortgage again + + + + + + + act/process of removing or releasing (usually a fluid), emptying, unfilling, depleting + + + + + + that acquiesces (assenting/compliant) + + + + + + + to cut or tear with or as if with the teeth, nom/partitive-quant + + + + + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + + + + + + an expert or specialist in the study of Creole languages + + + + + + the branch of linguistics concerned with the study of Creole languages + + + + + + + act or process of supplying with feathers, making ready for flight + + + raise a baby bird until it can leave the nest, and metaphorical development extension + + + + + + + (often capitalized) an American soldier of the Revolution in the Continental army + + + a piece of Continental paper currency + + + the least bit + + + an inhabitant of a continent and especially the continent of Europe + + + a native of the continental United States living or working in Puerto Rico or the US Virgin Islands + + + + + + + engagement in a 1-on-1 (one team, or one person, etc)direct contest + + + + + + + the methods and systems used to connect electronic components, enabling the flow of data and power between them + + + + + + + + + to encourage + + + + + + + field focused on developing computer systems that can understand, process, and generate human language + + + + + + + a topology defined on a subset of a topological space, where the open sets of the subset are created by intersecting the open sets of the original space with the subset + + + + + + + a political principle that emphasizes the importance of a nation as the fundamental unit of social life and political organization + + + + + + + branch of optical technology that focuses on the application of light and its fundamental unit, the photon, in various technologies + + + + + + you only live once + + + + + + + the use of another entity's intellectual property (IP), like patents, copyrights, or trade secrets, through a contractual agreement where the owner (licensor) grants permission to a user (licensee) + + + + + + + a topology defined on a partially ordered set, where the topology is generated by the subbasis consisting of sets of the form (←, a) and (a, →) for a ∈ P + + + + + + + the methods, tools, and systems used to create, improve, and manage products, from physical goods to digital services + + + + + + + + + move forward quickly, like on a media player + + + + + + + act of going on and on, talking nonsensically + + + + + + + + + fill up, load + + + + + + + to bark or speak sharply, shrilly, or snappishly + + + + + + + + + start_over: once more, from the top + + + + + + + + + bleed to death + + + + + + + the quality or condition of being tremulous + + + + + + opposite to or directly away from the apex + + + + + + + + + acquire, make (money) + + + + + + + + + print, generally on a computer printer + + + + + + + + + completive + + + + + + + a type of organizational technology characterized by a sequential interdependence of tasks or processes + + + + + + + the action of recognizing a voice; the process of, or a facility for, identifying a speaker from his or her voice; specifically, the analysis or interpretation of speech sounds, especially by computer; computer analysis and matching of the distinctive characteristics of a particular human voice + + + + + + + the study of chytrids, primitive aquatic fungi + + + + + + + act or process of estimating by extending known information + + + + + + + 'it seems to me', 'i think ___' + + + + + + + The act of copying + + + + + + + set of non-stellar objects in orbit around a star + + + + + + + + + remove the acetyl group from a compound + + + + + + act or process of making hot or hotter + + + + + + to put on or wear formal or fancy clothes, to decorate, wearing formal clothes/adornments + + + + + + + a dipolar ion + + + + + + + + obstruct, hinder with painful constriction, painfully constricting + + + + + + + + irritable due to hunger + + + + + + composed chiefly of rock fragments or particles of volcanic origin, such as pumice, obsidian, or volcanic ash + + + + + + + any of a group of small, usually rectangular plots of land used for sampling the occurrence of species or of archaeological artifacts + + + a piece of type metal lower than the raised typeface, used for filling spaces and blank lines + + + + + + + (cause to) become acid + + + + + + + exit again + + + + + + + The act to cause confusion + + + + + + + The act of infecting with a parasite whose entire lifecycle is lived in a single host + + + + + + + + + perform an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + + + + + + + + attach tightly + + + + + + + + + + die, fall out of competition + + + + + + + technology that combines a fluxgate magnetometer with a triaxial configuration + + + + + + having three axes + + + + + + + a minimally invasive medical procedure that uses argon gas to stop bleeding in various parts of the body + + + + + + + term designating the point in time or space at which something starts or originates + + + + + + + + + to cease + + + + + + + removal of part or all of the cecum + + + + + + + act or process of continuation + + + + + + + process of falling like water, flowing downwards + + + + + + + name + + + + + + + + + to anger, irritate + + + + + + parallel and pointing/polarized in the same direction + + + + + + + + + occur together in the same cell + + + + + + + process coal into coke + + + + + + + + + act as a host, with a partner + + + + + + + chewy, gelatin-based candy + + + + + + + approach + + + + + + + + + + set pen to paper + + + + + + + + + form of assault + + + + + + + act or process of using a curette to remove unwanted tissue + + + + + + + act of swearing, using foul language + + + + + + + + + remove accent + + + + + + + loss of physiological or psychological compensation + + + + + + + + + cause to become unclogged + + + + + + + + + remove husk + + + + + + + + + to (cause to) deteriorate mentally + + + + + + + + + remove flea + + + + + + + The act of taking away funding + + + + + + + + + lose glacier-cover + + + + + + + + be sufficient, measure up + + + + + + + + + to remove worms + + + + + + + cemetery + + + + + + + ethnicel + + + + + + + act for a cause, in (or like in) holy war + + + + + + + + + separate + + + + + + do not intubate + + + + + + + + + procrastinate, be very slow in doing + + + + + + + irrigating some part of the body (usually the vagina) + + + + + + dope_up: dose with narcotics + + + + + + + stop by + + + + + + + natural disaster: sever blowing dust + + + + + + + young black man, esp. one who deals drugs on the street + + + + + + expression of hesitation + + + expression of thinking + + + + + + expression of acceptance + + + + + + + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + + + + normal, reasonably positive mood + + + + + + + ungainly movement + + + + + + + + + obscene gesture: give the finger + + + + + + + make shorter; make to appear to be receding + + + + + + + + + procrastinate; play around + + + + + + go out to eat frozen yogurt + + + + + + + act or process of providing geographic information (especially locations, such as coordinates) via metadata + + + + + + + + + remove gills + + + + + + + + a position in which the dancer, facing diagonally toward the audience, extends one leg in the air to the side with the arm of the same side raised above the head and the other arm extended to the side + + + a two-handed card game which is played with a 32-card pack and in which each player is dealt 5 cards and has the right to replace any or all of them before play can begin, the object being to win at least 3 tricks in a given hand + + + + + + (in ballet, of the legs) held wide apart with an oblique side extension of one foot and the same arm + + + + + + + + + to make or make appear historical + + + + + + + + + to take care of someone's house + + + + + + Being actually living forever + + + Being eternally remembered, perhaps with veneration + + + cells being mutated and resulting in a cell line that can keep undergoing division indefinitely + + + + + + + + + + take into the body, as food, drink, air + + + + + + + deficiency of phosphates in the blood that is due to inadequate intake, excessive excretion, or defective absorption and that results in various abnormalities (as defects of bone) + + + + + + having a tube inserted (usually into a bodily passage or hollow organ) + + + + + + + + + be leftover; cause something to remain after a larger activity + + + + + + + become thick and leathery as a result of rubbing or scratching, become thick and leathery + + + + + + + + + wear out, ruin + + + + + + + act of making greater or bigger + + + + + + severe headache often accompanied by nausea and disturbed vision + + + + + + + act of incorrect judgment + + + + + + + to measure with a metering device + + + + + + + saving money + + + + + + + + + to lubricate + + + + + + + + + oar + + + + + + + + + to bind or obligate beyond capacity + + + + + + + + + name + + + + + + having multiple members + + + + + + + + + cause too much of an increase + + + + + + + + + to sell more than can be delivered + + + + + + + + read again more closely, interperate to a greater degree + + + + + + + + + to plant too abundantly + + + + + + + project over the edge of something, in a cantilevering manner + + + + + + + + + reduce indebtedness + + + + + + + + + + to not have + + + + + + + attacking with napalm + + + + + + suffused or permeated through or over something + + + + + + in the vicinity of a nerve or nerves + + + + + + having a normal activity level + + + + + + that dances + + + + + + + language + + + + + + in the vicinity of the vagina (may or may not include the vagina) + + + + + + + + + Describe or represent in terms of a parameter + + + + + + + + + to pair with something else + + + + + + + + + Carry with oneself, as with a gun + + + + + + to lose courage to do something + + + + + + rummage, look for idly + + + + + + an upward blow to opponent's chin + + + + + + not able to be won + + + + + + unable to be surgically removed + + + + + + not ground up + + + + + + in a panicked manner + + + + + + add fertilizer beforehand + + + + + + + person with Asperger's syndrome + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + + + + to incubate (as a cell or a culture) prior to a treatment or process + + + + + + pick out beforehand + + + + + + pleasing/agreeable/acceptable + + + + + + to put or enclose in a case, again + + + + + + conquer again + + + + + + show again + + + + + + begin again + + + + + + to bind again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + + + + to make famous + + + + + + exactly that; in itself + + + + + + sample again + + + + + + personally unattractive (destitute of charms) + + + + + + brazen/shameless (with reticence/shame/humility absent) + + + + + + reinforce or support again with proof + + + + + + to designate an area for a new purpose; to change zoning + + + + + + wind backwards, perhaps as a cassette, back to the beginning state + + + + + + to remove the rind + + + + + + able/possible to not be spent + + + able to be rescued from peril + + + able to be collected, accrued + + + + + + to save, put away + + + + + + spend money on, splurge + + + + + + say flippantly or quickly, phrasal + + + + + + (cause to) back off, withdraw + + + + + + located under the pleura + + + + + + to affix with tape [completive] + + + + + + act of walking quietly on one's toes + + + + + + touch upon: same as touch on + + + + + + forming trabeculae + + + + + + the act of forming a trabeculae + + + + + + the act or process of gently falling into a dreamy state (often sleep) + + + + + + the act or process of taking out everything in ones path, such as with a car or weapon + + + + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + + + + + + + a fragrant, dark and resinous wood used in incense, perfume, and small hand carvings, formed in the heartwood of Aquilaria trees after they become infected with a type of Phaeoacremonium mold, P. parasitica + + + + + + having no page numbers + + + + + + + + initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + + + + + what place + + + + + + + the number 4 between three and five + + + playing card + + + + + + the number 6 + + + + + + + data about data + + + + + + In addition to; as an accessory to + + + + + + (used to show disagreement or negation) + + + + + + + to move inside of (something) + + + + + + item(s) that are separate and distinct from the item(s) under consideration + + + + + + at least one item of a set + + + + + + Any object, act, state, event, or fact whatsoever; a thing of any kind; something or other. + I would not do it for anything. + + + + + + what person’s + + + person’s … that + + + + + + At or to the back or far side of. + The children were hiding behind the wall. + Behind the garage needs clearing asap. + The sun went behind the clouds. + Look behind you! + I hide behind you in hide and seek. + Behind the smile was a cruel intention. + All my problems are behind me. + + + + + + + hand-operated tool for cutting + + + + + + enjoyable + + + + + + in all associated places + + + + + + + period of the day after 12:00pm and before approximately 6:00pm, depending on the time of sunset and time of year + + + + + + + human whose profession is bricklaying + + + + + + through + + + + + + at any time + + + + + + unless + + + + + + Side by side with. + + + + + + Below. + + + + + + + individual change made to a document + + + + + + + advertising term + + + + + + along an equator + + + + + + in an insightful fashion + + + + + + while + + + + + + indicating sudden understanding + + + + + + Expressing contempt, disgust, or bad temper. + + + + + + like a fairy, or related to fairykind + + + + + + express uncertainty or hesitation + + + + + + traditional maritime greeting + + + + + + + + synthetic chemical element with symbol Ts and atomic number 117 + + + + + + + former stronghold or villa in the province of Groningen, Netherlands + + + + + + business enterprise established for the processing of animal milk + + + + + + + the process by which individual access to a computer system is controlled by identifying and authenticating the user through the credentials presented by the user + + + the credentials required during the login process + + + + + + + construction equipment used to lay asphalt + + + + + + + + + remove cap + + + + + + + + + To pass (time) idly. + I whiled away the hours whilst waiting for him to arrive + + + + + + + a process of deterioration + + + + + + study of the structure and function of the mechanical aspects of biological systems + + + + + + branch of discrete mathematics + + + + + + + branch of cell biology + + + + + + + medical specialty + + + medical specialist in diabetes + + + + + + natural number + + + + + + human disease + + + + + + study of changes in the epigenome + + + + + + + film genre + + + + + + about limb: with three toes + + + about animal: with limbs with three toes + + + + + + sport + + + + + + + traditional culture + + + + + + + business providing food + + + + + + pertaining to foraminifers + + + + + + + process of providing with a function + + + chemical process + + + + + + + science of dating rocks + + + particular geological dating method + + + + + + + lining + + + + + + + material used in vacuum systems + + + + + + + + + overuse + + + + + + power from hydroelectric sources + + + + + + + branch of biology dealing with immune systems + + + + + + + medicine working through immune system + + + + + + + + + to make a mistake while typing on a keyboard + + + + + + + done in an interactive manner + + + + + + + cell life cycle phase + + + + + + vigorously + + + + + + study of lymphatic system + + + + + + + large globulin found in blood + + + + + + + medical condition with too many macroglobulins + + + + + + broadly accepted + + + common current thought of the majority + + + + + + + + person from the Middle Ages + + + + + + pertaining to metabiosis + + + + + + + microscopic pore + + + + + + pertaining to microstructure + + + + + + + microscopic system, or with microelectronic parts + + + + + + + type of particle filter + + + + + + + event involving powered vehicles + + + + + + using multiple channels to communicate + + + + + + + structure with multiple distinct layers + + + + + + looking at a range of different spectral wavelengths + + + + + + pertaining to fungi + + + + + + + material with nanometer-scale structure + + + + + + + nanometer-scale pore in a membrane + + + + + + + one who naps + + + machine used with textiles + + + + + + field combining neuroscience with economics + + + + + + + domain of human thought + + + + + + relating to ophthalmology + + + + + + study of optics and electronics together + + + + + + optoelectronics + + + + + + + formation of organs + + + + + + study of dust, spores, etc. + + + + + + + type of system of government + + + + + + + branch of agriculture + + + + + + + branch of dentistry that deals with diseases of the supporting and investing structures of the teeth including the gums, cementum, periodontal membranes, and alveolar bone + + + + + + + + branch of chemistry + + + + + + + physiology of disease or injury + + + + + + + + study of plant diseases + + + + + + + + + study of detection and measurement of radiant energy + + + + + + + study of sediments + + + + + + every 150 years + + + + + + + + mathematical structure + + + + + + science of applying telecommunications + + + + + + using telecommunications to provide medical assistance + + + + + + + ocean phenomenon + + + + + + + Name for a person who pursues high-quality or realistic audio playback + + + + + + a small amount + + + + + + from without/the outside + + + + + + in an abashed manner + + + + + + pertaining to the troposphere + + + + + + + + + convert waste into a higher quality product + + + + + + pertaining to volcanology + + + + + + + natural phenomenon on Mars + + + + + + + land unmodified by humans; natural land + + + + + + + + + make a sweeping rotating motion + + + + + + furniture component, top of a table + + + + + + + fat cell + + + + + + + type of chemical compound + + + + + + + fictionalized autobiography + + + + + + + type of food dish + + + + + + + photon from a biological source + + + + + + type of mineral + + + + + + + type of protein + + + + + + + reddish-orange color + + + + + + + + + create a cross-reference + + + + compare distinct sources + + + + + + + one who studies cybernetics + + + + + + dancing as a sport + + + + + + + process of removing methyl groups from a molecule + + + + + + + type of enzyme + + + protein + + + protein + + + protein + + + protein + + + + + + + Japanese alcoholic beverage + + + + + + + type of large edible berry + + + + + + philosophical inquiry into nature of philosophy + + + + + + + writer on music and musicians + + + + + + with bitterness or severity + + + + + + additionally, to a pronounced degree + + + + + + done in a manner related to walking + + + + + + in an animating manner, so as to give life/inspiration/enlivenment/encouragement + + + + + + with care (in a careful/caring manner) + + + + + + internationally + + + + + + some time ago + + + + + + genuinely, sincerely + + + + + + all over the place + + + + + + extremely/very much + + + + + + in regard to world-wide political implications + + + + + + with grief, usually during a bereavement period + + + + + + without adequate reason/cause + + + + + + without guilt (in a guiltless manner) + + + + + + without luck/good fortune, unfortunately/unhappily + + + + + + smoothly, without hindrance/difficulty + + + + + + using holography + + + + + + in a homosexual manner + + + + + + in an imperturbable manner; without being mentally perturbed or agitated; calmly, composedly + + + + + + unable to be extinguished + + + + + + in a monarchical form/manner + + + + + + From the title of the cult 1962 Italian documentary film Mondo cane, Italian for "A Dog's World", from mondo (“world”) and cane (“dog”). The film featured bizarre scenes, leading to English use of mondo as an adverb meaning "very, extremely" in mock-Italian phrases like mondo bizarro. + + + + + + without consent, not consenting + + + + + + doing too much to prevent harm to another (usually a child) + + + + + + occurring over a period spanning winter + + + + + + in a pathophysiological manner + + + + + + in a penniless manner + + + + + + In a recalcitrant manner. + + + + + + in a regardless manner + + + + + + by sacrifice, in sacrifice + + + + + + In a scenographic manner. + + + + + + In a manner only partially related to logarithms + + + + + + in a manner that teaches wisdom + + + + + + sonorously/imposingly (so as to emit/cause a sound) + + + + + + used for making one's criticism of someone or something seem less strong + + + + + + before, previously + + + + + + in a transformational manner + + + + + + in a trifling manner/degree + + + + + + done in a manner that produces a quavering or warbling sound + + + + + + in an unwholesome manner + + + + + + distressingly (in an upsetting manner) + + + + + + in a verisimilar manner + + + + + + with good intent + + + + + + + person who works on nanotechnology + + + + + + + person who practices palynology + + + specialized scientist studying palynology + + + + + + branch of genomics concerned with developing pharmaceuticals + + + + + + approach to classification of organisms + + + + + + + resistor that changes with light level + + + + + + + organism that feeds on plankton + + + + + + + version of a solid with a particular crystal layer stacking sequence + + + + + + + book containing rules + + + + + + + state of not being a citizen of any country + + + + + + + type of large star + + + + + + + device that produces modulation + + + + + + the measurement of cell characteristics + + + + + + + the process of removing one or more phosphoric (ester or anhydride) residues from a molecule. + + + + + + + A vesicle-mediated transport process in which cells take up external materials or membrane constituents by the invagination of a small region of the plasma membrane to form a new membrane-bounded vesicle. + + + + + + + set of all RNA molecules in one cell or a population of cells + + + + + + study of measuring and analysing science, technology and innovation + + + + + + + written prose piece in a publication expressing the opinion of an author or entity + + + + + + + individual's or a group's human demand on nature + + + + + + + method to avoid unsolicited products or advertisements + + + + + + + organism that prefers higher temperatures + + + + + + process of adding salt + The team identified sources of ground-water salinization and found that sea-water intrusion was the main mechanism. + + + + + + + act of adding moisture to + + + + + + cardinal number + + + + + + + class of enzymes that cleave phospholipids + + + + + + + a diagnostic endoscopic procedure that visualizes the upper part of the gastrointestinal tract down to the duodenum + + + + + + reduce a cellular response to a molecular stimulus + + + + + + + + + to tonicize + + + + + + + + + to turn into horn + + + + + + + + + to pack again + + + + + + + + + to make a dunce of; render stupid, slow-witted + + + + + + + + + to make rancid + + + + + + + + + to subdivide a classification into subordinate classifications + + + + + + + + + to turn into chyle + + + to produce chyle + + + + + + + change of economy, especially of energy industries, towards lower carbon dioxide emissions + + + natural soil-forming process + + + economy based on low carbon power sources + + + + + + + + call for, require, justify + + + + + + a monument made of stone + + + + + + + person whose profession is study and research + + + + + + + electrophysiological monitoring method + + + + + + disease + + + virus + + + + + + + act or process of making illegitimate + + + + + + + abnormal retention of fat (lipids) within a cell or organ + + + + + + + process using extreme cold to destroy tissue + + + + + + + pure quantum state unchanged by a certain operator + + + + + + + unblur a digital image + + + + + + measurement method using interference of waves + + + + + + + nanomaterial + + + a billionth of a rod (equivalent to 5.029 nm) + + + + + + + long unbranched polysaccharides consisting of a repeating disaccharide unit + + + + + + + social distancing measure + + + + + + + elevated level of gene expression + + + + + + + infection by the same infectious agent following a recovery + + + + + + + orthodontic headgear + + + a mask or protective covering for the face or part of the face + + + a covering (as of polypropylene fiber or cotton fabric) for the mouth and nose that is worn especially to reduce the spread of infectious agents (such as viruses or bacteria) + + + a device usually covering the mouth and nose to facilitate delivery of a gas (such as a general anesthetic) + + + a covering typically attaching to the front of a helmet that consists of a hard, clear material (such as polycarbonate) or a cage of metal (such as steel or a titanium alloy) and is worn to protect the wearer's face from injury + + + or face mask penalty (American football): a penalty imposed on a player for grabbing and pulling an opponent's face mask during play + + + + + + + abnormally low level of oxygen in the blood + + + + + + + + + ejaculate, orgasm + + + + + + + the formation of ozone (O₃) in the earth's atmosphere + + + the treatment or combination of a substance or compound with ozone + + + + + + + production of spores in biology + + + + + + + any phosphatidylinositol that is phosphorylated at one or more of the hydroxy groups of inositol + + + + + + + protein encoded by an oncogene + + + + + + + class of chemical compounds + + + + + + + protein devoid of its characteristic prosthetic group or metal + + + + + + + + + identifier for a person in a computer system + + + + + + + droplets in the microlitre range + + + + + + + protective suit against chemical, bacteriological, and nuclear risks + + + + + + + The act of impairing a physiological regulatory mechanism + + + + + + + a military order to cease firing + + + a suspension of active hostilities + + + + + + + offshore rise of water associated with a low pressure weather system + + + + + + + InterPro Family + + + + + + + agent that carries and transmits an infectious pathogen into another living organism + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + + + neopronoun + + + + + + + pronoun used in place of he, she or singular they + + + + + + + person who does not experience sexual attraction + + + + + + + + village + + + + + + + play-through of a video game performed as fast as possible + + + + + + + currency of Madagascar + + + + + + + one unduly fearful of what is foreign and especially of people of foreign origin + + + + + + + + + to betray by contradicting prior agreement + + + + + + + something revelatory + + + + + + web content whose main goal is to entice users to click on a link to go to a certain webpage or video + + + + + + + scale or full-size model of a design or device, used for teaching, demonstration, design evaluation, simulation, promotion, and other purposes + + + + + + + point-to-point communications link + + + + + + + study of the past + + + + + + brother + + + friend + + + + + + + person who designs, builds, programs, and experiments with robots + + + + + + + period with lack of sexual arousal + + + + + + + set of alphabetic and numeric characters + + + + + + + part of stage lighting + + + + + + + grandparent's sister + + + + + + + A minor miscellaneous item. A food item eaten as an accompaniment to a meal; a side dish; also, such an item eaten on its own as a light meal. + + + + + + + Electric bus that draws power from dual overhead wires + + + + + + + + + sew on as decoration + + + + + + + + + to drench with a liquor and ignite + + + + + + + + + to fry (food, such as small pieces of meat or vegetables) in a small amount of fat + + + + + + In favor of. + He is pro exercise but against physical exertion, quite a conundrum. + + + + + + In the midst or middle of; surrounded or encompassed by; among. + + + + + + Instead of; in place of; versus. + + + + + + unless; except + + + + + + Introduces the first of two (or occasionally more) options or possibilities, the second (or last) of which is introduced by “or”. + Either you eat your dinner or you go to your room. + You can have either potatoes or rice with that, but not both. + You'll be either early, late, or on time. + Either you'll finish your homework or you'll be grounded you home. + + + + + + Not either (used with nor). + Neither you nor I likes it. + + + + + + Whatever. + Whatsoever you seek, you will find. + + + + + + That which was previously mentioned; that. + I'll become a loyal friend and remain so. + If that's what you really mean, then just say so. + You may need to refer to litigation as a procedure, and when you have done so, you can say a matter is "in litigation". + + + + + + Which ever; emphatic form of 'which'. + Good heavens! Whichever button did you press to make that happen?! + + + + + + Hold fast!; cease!; stop! + + + + + + A cry of praise or adoration to God in liturgical use among the Jews, and said to have been shouted in recognition of the Messiahship of Jesus on his entry into Jerusalem; hence since used in the Christian Church. + + + + + + Oops. + + + + + + A statement of defiance + ‘Guess what, I've won the pools!’ ‘Never!’ + + + + + + A mild expletive, expressing disbelief or dismay + Didn't you have a concert tonight? —Shoot! I forgot! I have to go and get ready… + + + + + + goodbye + + + + + + Used to gain someone's attention before making an inquiry or suggestion + Say, what did you think about the movie? + + + + + + An expression of mild surprise. + + + + + + A spontaneous expression of delight or joy. + Whoopee! I won! + + + + + + Okay; all right. + + + + + + expression of pain + + + + + + + local set of atmospheric conditions + + + + + + + intentional killing or other violent deaths of females (women or girls) because of their gender + + + + + + und/oder + + + + + + + pseudonym + + + + + + + name of a person + + + + + + + name used for a place which is used by the people of that place + + + + + + difficult situation or complex health system that affects humans in one or more geographic areas + + + + + + part of the large-scale ocean circulation that is driven by global density gradients created by surface heat and freshwater fluxes + + + + + + having net zero carbon emissions + + + + + + making lifestyle choices to reduce the greenhouse gas emissions resulting from consumption decisions + + + + + + + measurement of how much temperature will rise given an increase in CO2 + + + + + + + reduction in emissions of carbon dioxide or greenhouse gases made in order to compensate for or to offset an emission made elsewhere + + + + + + + benefits created by nature, forests and environmental systems + + + + + + + hookworm disease caused by Ancylostoma hookworms + + + + + + + fictional device + The captain tapped her combadge. + "Only Equinox crew on board now," Max confirmed, checking the bioscans from encrypted combadges all over the ship. + Constructed from a crystalline composite, the combadge had a signal range restricted to approximately 500 kilometers when beyond the range of a starship. + + + + + + + granting of permission by an ethics board (typically for research) + + + + + + + identifier used for an act of approval + + + + + + + type of lawn game or sport in which players toss beanbags toward a slanted platform with the aim of passing the beanbag through a hole in the center of the platform + When you think of cornhole, visions of tailgating, beer-drinking, and backyard picnics come to mind. + + + vulgar slang term for the anus + When Mike pumps a creampie into Anna's cornhole, she collects the cum in a cocktail glass and swallows it. + + + + + + Unwanted pre-installed software + Here's all the crapware that comes with new Windows 8 PCs. + Though I hope Microsoft always allows Windows users to install desktop software, the best way fend off crapware is to also provide a controlled environment, such as the Windows Store, for users who want it. + + + + + + + + + to express contempt or impatience + + + to express contempt for or make light of + + + + + + + thong visible over trousers or similar + + + + + + graze to the point of damaging the life cycle of vegetation + + + + + + + a live online educational presentation + + + + + + + compartment in a ship used for medical purposes + + + + + + to the degree or extent indicated. + We only have this much water. + + + + + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + + + + + + + to redistribute the heat in bath water + + + + + + crushed green tea leaves + + + + + + + bag containing crumbled tea leaves that is soaked in water to make tea + + + + + + + + + place scrotum into one's mouth + + + + + + + appearing to have zones of color/texture/etc. + + + + + + + meal which combines breakfast and dinner + + + + + + + ethological class; trace fossils formed as a result of organisms disturbing sediment for food + + + + + + + ethological class; structures which were created by organisms for breeding purposes + + + + + + + ethological class; evidence of organisms moving at the front + + + + + + + individual member of the Xenophyophorea clade of protists including some of the largest known single-celled organisms + + + + + + printing that goes beyond the edge of the sheet before trimming + + + + + + + attractive male person + + + + + + when something does not go your way + + + when you are surprised + + + when you see something you are impressed by + + + when you realize something profound + + + + + + + pictorial depiction in an online chat + + + + + + + + + carved pumpkin or other gourd, used primarily during Halloween + + + + + + + video recording of a stage performance by a fan in the crowd + + + + + + + gender identity that is typically associated with concepts that are not entirely related to gender + + + + + + + a bird + + + a bird-like creature + + + + + + + + set in the 19th century, featuring steam-powered machinery and related technologies extrapolated from the science of that era + + + + + + + one who films and/or edits vlogs (video blogs) + + + + + + romantically attracted to members of the opposite sex or gender + + + + + + romantically attracted to people regardless of sex or gender + + + + + + attracted to experiencing bisexuality + + + + + + attracted to people regardless of gender + + + + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + + + + + + electronic cigarette + + + + + + + variable that statistically affects the relationship between other variables + + + + + + + + + + you; person spoken to or written to + + + + anyone, one; unspecified individual or group of individuals + + + + + + + + + + + + + + + + + + + + + + abbreviation of love + + + abbreviation of romantic love + + + + + + + método de entrada + + + + + + + Any beetle of the taxon Cerambycidae + + + + + + + any beetle of the subtribe Coptomiina + + + + + + drunk + + + + + + drunk + + + + + + drunk + + + + + + + + + to cancel a subscription + + + + + + + Antennarius pictus + + + + + + + the quality or state of being exclusive + + + exclusive rights or services + + + + + + + Gampsonyx swainsonii + + + + + + + a language with no genetic relations + + + + + + + oh my God + + + + + + + Crinifer zonurus + + + + + + + any fly of the family Dolichopodidae + + + + + + + any insect in the clade Eulepidoptera + + + + + + + any bacterium in the class Actinobacteria + + + any bacterium in the phylum Actinobacteria + + + + + + + Boiga irregularis + + + + + + + + + make space available + "Getting people out of hospital on time is more important than ever," said Helen Whately, minister for care. "It's good for patients and it helps hospitals make space for those who need urgent care." + Some residents believe it may have been the result of a crude attempt to clear forest land and make space for building projects, but police are yet to determine a cause. + Wards have been emptied to make space for Covid patients + Due to a slump in construction and high production costs, the timber industry in Zimbabwe has been struggling to survive. To make things worse, illegal miners in some of the country's forests have been chopping down trees to make space for their own operations. + + + + + + + any gelechoid moth in the family Coleophoridae + + + + + + fictional dish named by listing ingredients + + + + + + like a corymb + + + + + + + small, benign skin growth that may have a stalk (peduncle); also called achrochordon + + + + + + + + a person who is transgender + + + + + + + + + to sweat + + + + + + + one who flatters a supervisor, or superior, in order to get special attention + + + + + + + fund offered to students who are struggling with their finances and need help + + + + + + something chosen by hand + + + + + + something chosen out of a larger set or whole + + + + + + sexually attracted to more than one sex or gender + + + + + + participle + + + people + + + + + + + any beetle of the genus Caccobius + + + + + + + agent noun of warp; one that warps + + + + + + + any enzyme that initiates methylization + + + + + + + + + to use a flashbang/flash grenade + + + + + + + + using little effort to do something + + + + + + + the monitoring of someone by taking photographs + + + + + + + learned man in Indian classical tradition + + + + + + + aggregation of dust particles + + + + + + + സാമൂതിരി + + + + + + + + (disparaging) promiscuous + + + + + + + (relexive pronoun for the second person) that which belongs to you + + + + + + + small street, often in an old or poor neighborhood of a city + + + + + + having leaves like those of a willow; attributive element in the common names of plants + + + + + + + dial of a watch + + + + + + + jewelry used on the body + + + poke a hole in, go through such a hole + + + + + + + one who takes part in cosplay + + + + + + + person promoting conspiracy theories + + + + + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + + + + + subgenre of hip hop + + + + + + + marine mammal in the fur seal and sea lion family Otariidae + + + + + + + a rodent of the family Erethizontidae (New World porcupines) + + + + + + + any tapeworm of the family Taeniidae + + + + + + + any bird in the family Falconidae + + + + + + + professional who treats foot ailments + + + + + + of or relating to the insect family Thripidae + + + + + + a fundamental; a foundational or integral aspect of something + + + + + + + Any fly in the family Syrphidae, which hover in place and visually resemble bees or wasps + + + + + + + bench located in front of the chancel + + + + + + of or relating to the mammal family Viverridae + + + + + + accidie + + + + + + + + + swindle, dupe or manipulate to obtain a wrongful advantage + + + complain loudly or shout + + + + + + + a bird of the family Paradisaeidae + + + + + + + any bird in the family Podicipedidae + + + + + + any reptile of the family Chelidae + + + + + + mutual yielding; concessions, compromise + + + + + + + + to use arms and legs to stay afloat in place in water + + + + + + + + + wrestle + + + + + + + + + + to use a pickaxe + + + + + + + kitchen garden + + + + + + a disorderly, confusing situation; a mess + + + + + + + republic by popular mandate + + + + + + for or by the general public + + + + + + + plundering expedition, raid + + + + + + associated with humans but not domesticated + + + + + + + time prior to a sporting season + + + + + + + title of Islamic martyr + + + + + + + non-legal return of refugees and immigrants across the border + + + + + + + one who is chased + + + + + + + study of narrative and narrative structure + + + + + + the branch of medicine dealing with the intestines + + + + + + + the branch of zoology dealing with the ants + + + + + + + hymnody (hymn singing and writing) + + + the study of hymns + + + + + + branch of entomology that deals with the Isoptera (termites) + + + + + + + decisive match in a series + + + + + + + study of the occurrence, transportation, and effects of airborne materials (such as viruses, pollen, or pollutants) + + + + + + the study of the Holy Shroud of Turin, in which the body of Christ was reputedly wrapped + + + + + + the study or investigation of crop circles + + + + + + + the study of dogs and other canines + + + + + + + branch of dendrology dealing with the gross and the minute structure of wood + + + + + + the study or practice of herbal medicine + + + + + + + likely to cause one to laugh + + + + + + the study of sleep + + + + + + + + study of the organization and function of committees + + + committees and their practices considered collectively + + + system of administrative and expert committees within the European Union + + + + + + (linking a destination, subject of approach) + + + + + + + charisma, charm + + + + + + + orange grown for commercial consumption containing seeds, as opposed to seedless oranges + + + + + + + village + + + + + + + the study of intonation in speech + + + + + + + study of psychology applied to sports + + + + + + + + study of psychology applied to sport + + + + + + + + branch of entomology that is concerned with the scales, mealybugs, and other members of the superfamily Coccoidea + + + + + + + + in naming an animal, having a long tail + + + + + + be courageous, unafraid + + + + + + applied to organisms whose presence in a given habitat is transien + + + producing fermentation + + + + + + be of recent age + + + + + + + a form intermediate between a worker and a queen which occurs in some ant species + + + a worker or soldier ant that develops female characteristics especially as a result of the attack of parasitic worms + + + + + + no + + + + + + + hair turned white with aging + + + + + + + device to store spent espresso grounds + + + + + + + a specialist in orthopterology + + + + + + + the study of pollen grains and spores (palynomorphs) in the atmosphere + + + + + + + branch of theology dealing with the doctrine of evil + + + + + + + the study dealing with specialized problems of cities + + + + + + + branch of meteorology that deals with the relationship of weather and climate to crop and livestock production and soil management + + + + + + + + crystallography + + + + + + + + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + + + + + + the subfield of ecology that deals with the study of relationships between organisms and their environment at large spatial scales + + + + + + + + protein that is rich in phosphorus + + + + + + + theological doctrine that describes the divine nature according to positive categories + + + + a theology that instead of beginning with the philosophy of religion takes as its content the gospel as given by biblical theology and presents it directly in systematic form + + + + + + + the branch of pharmacology that deals with the use of drugs in the treatment and prevention of disease + + + + + + + the branch of science concerned with the action of frost and freezing water on the structure and properties of the ground + + + + + + + branch of mycology dealing with the rusts + + + + + + + + little + + + + + + + + + irksome, annoying, irritating + + + + + + + period during which a draught animal is yoked + + + form of mugging involving assailant wrapping arms around victim’s neck from behind + + + + + + + the study of bridges and naturally occurring arches or bridge-like structures + + + + + + + lore dealing with ghosts + + + the study of ghosts and ghostlore + + + + + + + + + a Haeckelian branch of morphology that regards an organism as made up of other organisms + + + the universal organizational science + + + + + + + the branch of physiology which treats of pregnancy + + + + + + + study of handwriting + + + + + + + the study of or knowledge of pathological conditions of the horse + + + + + + + the branch of zoology that studies insects + + + + + + + branch of anatomy dealing with the fundamental tissues and fluids of the body + + + + + + + + having unrequited desire + + + despondent, depressed + + + badly ill, injured + + + not having a weapon + + + lacking funds to acquire drugs + + + + + + + the study of words and expressions having similar or associated concepts and a basis (as social, regional, occupational) for being grouped + + + + + + + branch of immunology that studies the interaction of the immune and nervous systems + + + + + + + the branch of limnology that deals with the conditions and processes occurring in lakes in the geological past + + + + + + + one who or that which brings + + + + + + + the science that deals with atmospheric dust and its effects on plant and animal life + + + + + + exhausted + + + + + + pregnant + + + delicious + + + + + + + use of more words than are necessary; redundancy or superfluity of expression, pleonasm + + + + + + + the branch of anatomy that deals with the pelvis + + + + + + + the study of manuscripts of ancient literature, correspondence, legal archives, etc., preserved on portable media from antiquity, the most common form of which is papyrus, the principal writing material in the ancient civilizations of Egypt, Greece, and Rome + + + + + + + branch of medical science concerned with symptoms of diseases + + + + + + + + the study of or a treatise on beards + + + + + + + the science which treats of the origin and character of springs + + + + + + + + handgun + + + + + + + filthy talk + + + + + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + + + + + + + the study and description of the movements of dancing + + + + + + + the study of bile and the biliary organs + + + + + + + + a description of what relates to the bile and biliary organs + + + the study of bile and the biliary organs + + + + + + + + the investigation of urban spatial structure by factor analysis + + + + + + + a branch of theology dealing with the interpretation or explanation of scripture + + + + + + + the branch of chemistry which deals with salts + + + + + + + the sociological study of race by anthropological methods (as in the theories of Lapouge) as a means of establishing the social superiority of dolichocephalic peoples + + + + + + + the study of sacred buildings + + + + + + + the study or investigation of miasmas + + + + + + + + the science that deals with the effects of weather and climate on living beings + + + + + + + the art or science of cookery + + + + + + + the narration or study of history + + + + + + + the anatomical study of the pharynx (obsolete) + + + a branch of medical science concerned with the pharynx and its diseases + + + + + + of or relating to the form, arrangement, and structure of rock masses of the earth's crust resulting from folding or faulting + + + + + + + the study of apes + + + + + + + a branch of the life sciences dealing with neurosecretion and the physiological interaction between the central nervous system and the endocrine system + + + + + + + the scientific study of clouds + + + + + + + a branch of laboratory technology dealing with diagnostic cytology + + + + + + + a great speech or discourse + + + + + + + the study of the macrocosm + + + + + + + the study of ecological microcosms + + + + + + + the scientific study of mummies + + + + + + not apportioned + + + + + + + boasting or vaunting speech + + + + + + + a religious belief among some Charismatic Christians that financial blessing and physical well-being are always the will of God for them, and that faith, positive scriptural confession, and giving to charitable and religious causes will increase one's material wealth + + + + + + + the science of defining technical terms + + + + + + + a branch of hydrography that deals with the relations of mountains to drainage + + + + + + + + a branch of hydrography that deals with the relations of mountains to drainage + + + + + + + + the study of human behavior in the workplace + + + + + + + the branch of science that deals with the neurology of animals and humans of the historical, prehistoric, or geological past + + + + + + + the field of study concerned with sound design and the use of technology in musical composition and performance + + + + + + + field of science that involves redesigning organisms for useful purposes by engineering them to have new abilities + + + + + + + the scientific study of the diseases of animals + + + + + + + the branch of zoology which deals with cephalopods + + + + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + + + + + + the bioclimatology of plants + + + + + + + + lore about parsons + + + the speech of parsons, preaching + + + + + + + one that conforms to rules or the law + + + + + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + + + + + of or relating to the cosmos, the extraterrestrial vastness, or the universe in contrast to the earth alone + + + of, relating to, or concerned with abstract spiritual or metaphysical ideas + + + characterized by greatness especially in extent, intensity, or comprehensiveness + + + + + + + the study of climates of small, confined spaces such as caves or houses + + + + + + + radiology of the teeth and jaws + + + + + + + persuasive or seductive speech or argument; sophistry + + + + + + + the science or study of political parties + + + + + + + the doctrine of the divine direction of nature to an appointed end + + + + + + + a type of micro-level case study research that examines a case in its socio-historical context, using mainly original sources + + + + + + + technologies that support the storage, retrieval, processing and dissemination of information necessary for the efficient and effective operation of libraries in meeting the information needs of their users + + + + + + + the calibration and testing of instruments used in the field of health + + + + + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + + + + + + the study of the tropical atmosphere + + + + + + + the study of runes or runic writing + + + + + + + the study of the physiology of the kidney + + + + + + + + unpleasant, dirty, disgusting + + + piffling; second-rate + + + + + + + the study of comparability and traceability of chemical and biological measurements to ensure the reliability of results + + + + + + + the study of the use of puns + + + + + + + type of macaw with distinctively red upper body and green wings + + + + + + + the science of first principles + + + + + + + a general term for a sequence of abelian groups, usually one associated with a topological space, often defined from a cochain complex + + + + + + + + + to inquire, to interrogate + + + + + + + + malodorous, stinky + + + + + + + (second-person singular possessive) belonging to thee + + + + + + of or related to lexemes + + + + + + + protagonist or leading role in a fictional work + + + + + + + a field within applied climatology that studies the effects of weather and climate on industrial operations + + + + + + + an approach to archaeology that builds out of post‐processual thinking as a simple reaction to processual archaeology and instead sees interpretation as a creative process + + + + + + + the branch of science that deals with the structure of living cells; cytology, histology + + + + + + + the study of measurement and control in sports + + + + + + + the study or subject of the Hebrew accents + + + + + + (third-person singular masculine personal possessive) belonging to him + + + + + + + prebiological conditions and processes; the branch of science concerned with these + + + + + + of or relating to a legal process + + + functional, operational + + + + + + + a network structure that resembles a tree, with a central node (the "trunk") and multiple child nodes that branch out from it + + + + + + + opposite participant in a legal or financial transaction + + + + + + + in soccer, any of various electronic or digital systems used to determine whether the ball has crossed the goal line, and hence to assist officials in deciding whether or not a goal has been scored + + + + + + + activity of humiliating someone + + + impel through shame, assign shame as punishment + + + + + + + term coined by Jean-Philippe-Arthur Dubuffet (1901-85) for a kind of painting created by him, composed of minute drops of paint entirely covering a flat surface + + + + + + + the study of local climates, or topoclimates, which are climatic features caused by the interplay of topography, water, soil, and land cover + + + + + + of a plant, growing on waste ground + + + + + + + the scientific study of blindness + + + + + + + the study or science of nutrition + + + + + + + + knowledge or study of sermons + + + sermonizing: the preaching of sermons + + + sermons collectively + + + + + + + time in which one’s child, partner, etc., receives one's undivided attention + + + + + + + license allowing a person to operate a vehicle + + + + + + + + + to treat with sulphur + + + + + + + + + to make geological researches + + + + + + + + + to disperse a clay suspension, reducing its tendency to settle and viscosity + + + + + + be fed up with + + + + + + + condition of thirst; desiring of a drink + + + + + + + + + to grieve, sorrow for + + + + + + + + + very distant + + + + + + filled to capacity, completely full + + + + + + + + + to designate again; to reinstate designation + + + + + + + abandoned house used for drug storage or processing + + + + + + + field of study that examines how social processes lead to some people being victimized more than others + + + + + + + + + to make a sharp, high-pitched noise, especially as passing rapidly through the air + + + + + + + + + to deposit alluvium on + + + + + + + + + to form a fungoid growth + + + + + + + + + to perform oophorectomy on + + + + + + + + + to excise the spleen of an animal or person + + + + + + + + + to fish through holes made in ice + + + + + + + + + to impoverish, inflict misery upon + + + + + + + + + to cause immunosuppression of an organism; to suppress immune function + + + + + + + an explicitly third-person, scientific approach to the study of consciousness and other mental phenomena + + + + + + + + + to perform a backward somersault + + + + + + over the top of; over + + + + + + in the assemblage of + + + + + + + + + to dance ballet + + + + + + + + + + + + to speak, say, tell + + + + + + to have black colour + + + + + + + + + to forge metal (especially iron) by hand + + + to break into a safe + + + to work as a pimp + + + + + + + the part of physiology and pathology which deals with the bile + + + + + + + + + to ruin, spoil, make a mess of + + + + + + + + + to embed amongst or between + + + + + + + + + to make into boulders + + + to climb boulders + + + + + + + + + to regulate temperature, especially body temperature + + + + + + + + + to convey by van or caravan + + + + + + + the study of ichneumon wasps + + + + + + + any of a large family (Ichneumonidae) of brown or black hymenopterous insects that have a slender body and long ovipositor and whose larvae are parasites of the larvae and pupae of various insects + + + + + + + + + to ascertain, allow for, or indicate the tare of + + + + + + + musical instrument of the lute family + + + + + + at a distance from + + + + + + + a small three-masted Mediterranean vessel with both square and lateen sails + + + + + + + + + to catch or try to catch lobsters + + + + + + + + + to divest or deprive of power conferred + + + + + + + + + to bungle or botch + + + + + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + + + + + + + powerful feudal territorial lord in pre-modern Japan + + + + + + classical Japanese dance-drama + + + + + + + sacred ritual with object of increasing the totemic species of a clan + + + + + + + the study of communication, including such fields as semiotics, audiology, and speech pathology + + + + + + + the study of the body's metabolic response to short-term and long-term physical activity + + + + + + + the study of the changes in flow properties that occur in certain fluids exposed to magnetic fields + + + + + + + tetragonal aluminosilicate mineral and chloride of sodium and beryllium + + + + + + + silicate of glucinum and manganese, occurring in regular tetrahedral crystals + + + + + + + mineral with tetrahedral silicate crystal structure + + + + + + + the state of being feral + + + + + + adorned with figures of needlework + + + + + + that has received an invitation + + + + + + later on + + + + + + see you later + + + + + + + act to commit + + + + + + + making of an exit + + + + + + + أبو قِردَان + + + + + + + someone who soliloquizes + + + + + + + + a vaginal artery (Obsolete. rare) + + + + + + + action of love; affection + + + + + + + Turtur + + + + + + + description of the skin + + + + + + + + a writing or treatise on dogs + + + + + + tending to cause encephalitis + + + + + + + the measurement of the magnetic fields associated with the electrical and mechanical activity of the heart + + + + + + + branch of geography that deals with the figure and motions of the earth, its seasons and tides, its measurement, and its representation on maps and charts by various methods of projection + + + + + + + wood engraving, especially of an early period + + + the art of printing texts or illustrations, sometimes with color, from woodblocks, as distinct from typography + + + + + + + the study of the geographic distribution of plants + + + + + the phytogeographic features of a region + + + + + + + a description of the moon's surface + + + + + + + an imaging technique in which the output is produced by the coupling of two types of field (electromagnetic and magnetic) + + + + + + characterized by exclusivism + + + + + + + very large or fast jet aeroplane + + + powerful jet engine + + + + + + + dramatic work in which psychological elements are the main interest + + + + + + that pollutes; that causes environmental pollution + + + + + + + style of painting using pointillism to achieve a more formal composition + + + + + + + protuberance of the outer ear; thicker part of the antihelix + + + + + + + condition produced by overuse of bromine or a bromide + + + + + + + instrument for measuring logarithmic decrement of oscillatory circuit + + + + + + + removal of a security from official register + + + + + + + a nucleus of the optic thalamus + + + + + + + pollination by agency of water + + + + + + + machine for separating the hulls from seeds + + + + + + + keyed viol, a musical instrument + + + + + + + production of ketone bodies + + + + + + engaged in courtship + + + + + + not disclosing one's true ideology, affiliations, or positions + + + intended not to attract attention : stealthy + + + aving or providing the ability to prevent detection by radar + + + (medical) involving or caused by an asymptomatic or presymptomatic infectious individual : silent + + + + + + having a heart + + + + + + + the study of how human diet, nutrition, and subsistence are influenced by social, cultural, historical, ecological, and evolutionary factors + + + + + + the best, most exciting + + + + + + + the frequency of marriage within a population, usually expressed as a marriage rate + + + + + + + a mayfly used as fishing bait + + + + + + + African musical instrument of the lamellophone family + + + + + + + + membranous lining in insects and arachnids + + + + + + + + + to grow more than one distinct cell type in a combined culture + + + + + + + that which is eaten + + + + + + + + + to go to the gallows, to be hanged + + + + + + + the idea that the present is haunted by the metaphorical "ghosts" of lost futures + + + musical genre that took hold in the early aughts that evokes cultural memory and aesthetics of the past + + + + + + + + + + + to take with; to have accompanying + + + + + + + + + to force or barge one’s way into (a place or event) + + + crash, slam or invade, possibly unexpectedly + + + + + + + rumbling noise produced by movement of gas through intestines + + + + + + + + + to expect, regard as likely to happen + + + + + + + + + to interpose in one’s authority + + + + + + + + + to officially or legally make over, convey, assign, grant + + + + + + + + to place or set upon something + + + + + + + anathema; curse; denunciation, condemnation + + + + + + + + + to place against, set in opposition to + + + + + + + + + to presuppose, assume beforehand + + + + + + + + + to endow with a benefaction + + + + + + situated or occuring above the clavicle + + + + + + + + + to give an additional name, title, or epithet to (a person) + + + + + + + + + to take turns doing something with someone + + + + + + + + + to put into the possession of trustee(s) + + + to act as a trustee + + + + + + + + + to bind ubiquitin to (a protein) + + + + + + + depression on the upper part of a pock on the skin + + + + + + + Egyptian dancing-girl + + + + + + + + + to unfasten, loosen; to undo from fixed state + + + + + + + a small cavity in a rock or vein, often with a mineral lining of different composition from that of the surrounding rock + + + + + + + + + to experience enjoyment, amusement, entertainment + + + + + + + + + + to sew by hand + + + + + + + + + to feed by hand + + + + + + + + + to remove social stigma associated with + + + + + + + a theory of ethnicity emphasizing that ethnic groups are created on the basis of enduring ("primordial") biological, linguistic, or geographic relationships + + + + + + the branch of anthropology that studies human economic activities throughout the world + + + + + + + + + to re-establish priorities for + + + + + + + semblance of interpersonal exchange whereby members of an audience come to feel that they personally know a performer they have encountered in mass media + + + + + + + any of various herbivorous dinosaurs (family Hadrosauridae) of the Late Cretaceous having the jaw elongated into a snout that resembles a beak : hadrosaur + + + + + + + a polemical argument; a diatribe, a polemic. Usually in plural + + + + + + + + synthetic chemical element with symbol Og and atomic number 118 + + + + + + + an undersized, slight person; a person lacking in strength, weak, feeble + + + + + + colored stoneware with raised white decoration + + + + + + + the fishing fleet for sardines + + + + + + + a person who or thing which procreates; a parent; a creator + + + + + + + best friend + + + + + + + one that debunks + + + + + + representing a brief resonant sound, as of a blow + + + + + + worthless, useless + + + + + + + the buttocks; the anus + + + + + + in computing, that which can be read but cannot be changed by a program + + + + + + + the fact or condition of occupying a certain place or position; the place in which a person or thing is; location + + + + + + + a place, a location; (also) position, location + + + + + + feeding on insects + + + + + + + the action or process of a bacteriophage + + + + + + + + + + to unsay or retract something sworn + + + + + + + later or vertical movement of material in solution or suspension through soil + + + + + + + a person who engages or participates in figure skating, especially competitively + + + + + + + a freestyle competition with no required elements, in which skaters perform an original program of jumps, spins, sequences, etc., to music of their choice + + + + + + + a person who performs a free skate in figure skating + + + + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + + + + + among a group of two or more + + + + + + paid with paper currency + + + + + + + a figure skating jump in which the skater takes off from the back outside edge of one skate, makes at least one full turn in the air, and lands on the back outside edge of the same skate + + + + + + + + + clever, wise + + + + + + relating to or resembling vampires + + + + + + + + + the quality of being unconstrained + + + + + + nincompoops as a class + + + + + + + person regarded as socially inadequate, unfashionable, contemptible + + + + + + + the act of assigning a criminal punishment + + + + + + + act of objecting to something or participating in a protest + + + manner of speaking + + + + + + + a type of mozzarella cheese made from the milk of Italian Mediterranean buffalo + + + + + + + state that has the highest authority over a territory + + + + + + of or relating to the moth family Arctiidae + + + + + + + a miserable person + + + + + + + Stiefmutter + + + + + + + an unwanted and unsolicited telephone call + + + + + + + necrosis of a tooth + + + + + + + gift giving, often as a fulfillment of a request + + + + + + + + + + to draw again + + + + + + + a container, typically a rectangular or square structure, used to grow plants in a controlled environment, often outdoors + + + + + + (expression to persuade, garner attention) + + + + + + + clothes custom-made for sale + + + + + + + an ancient Mediterranean and Near Eastern earthen vessel with small cups around the rim or fixed in a circle to a central stem + + + + + + + working (of something) + + + + + + + musical instrument that creates sound through the vibration of air without the use of strings or membranes + + + + + + + + + to reduce risk + + + + + + assumed (of a setting) + + + + + + + a combination of nine instruments or voices + + + a musical composition for nine instruments or voices + + + + + + + rolling pin + + + + + + + in advertising and web design agencies, the person who acts as the intermediary between the agency and the client, whose job is to interpret the client’s brief and manage the process of its realization + + + + + + + a noncommercial often homemade or online publication usually devoted to specialized and often unconventional subject matter + + + + + + + fast-forwarding through commercials on recorded media during playback + + + + + + + the practice among television viewers of rapidly changing from one channel to another using a remote control device, especially during commercial breaks + + + + + + + the mass production of identical copies of a text using technological means (i.e. printing) + + + + + + a television show or series that tells a story in a predetermined, limited number of episodes + + + a comic book series that tells a self-contained story in a limited number of issues, usually between two and eight + + + (sports) a short series of performances or athletic contests + + + + + + + the high redundancy of broadcast codes associated with structurally simple, formulaic, and repetitive texts + + + + + + + a technique used in broadcast programming whereby an unpopular television program is scheduled between two popular ones in the hope that viewers will watch it + + + + + + the use of technology that stimulates the senses of touch and motion, especially to reproduce in remote operation or computer simulation the sensations that would be felt by a user interacting directly with physical objects + + + the perception of objects by touch and proprioception, especially as involved in nonverbal communication + + + + + + + person who takes part in a game + + + + + + the sport or activity of riding a mountain bike + + + + + + + a synthetic cannabinoid and dibenzopyrane derivative with anti-emetic activity + + + + + + + musician, singer; provider of music + + + + + + + + + + + + + + a pastelike mixture of apples, nuts, cinnamon, and wine used during the seder meal on the Passover and symbolic of the clay from which the Israelites made bricks during their Egyptian slavery + + + + + + + utterance of ‘ah’ + + + + + + + act/process of amounting to, coming to, calculating, or computing arithmetic mean (usually mean, median, or mode) + + + + experiencing or having an average + + + + + + + give legal rights to property + + + + + + + to impose or command, imposing, commanding, deciding, telling + + + + + + + my (in colloquial dialectal use) + + + + + + + the study of alphabetic systems of writing + + + + + + + tthe methods and processes used to join different components together to create a complete product + + + + + + + + the science and engineering involved in designing, developing, and applying devices called actuators + + + + + + + + + + to say or shout something loudly + + + to sing something loudly + + + + + + of or like fibrils or fibers + + + of or exhibiting fibrillation + + + + + + having the color of the element copper + + + made of copper + + + + + + + engage in a battle with someone + + + + + + + the study of physiology at a microscopic scale + + + + + + biochemical + + + + + + + the study of the relationships between plants and climate, including the impacts of climate on plants and how plants, in turn, affect climate + + + + + + + + branch of geology concerned with the study of rock layers (strata) and layering (stratification) + + + + + + + the study of witches or witchcraft + + + + + + + organismic psychology that emphasizes the self or the individual personality + + + + + + + one who has hair cropped short + + + + + + + the study of the plant genus Theobroma, cacao, and chocolate + + + + + + in an abrupt manner (suddenly/without warning) + + + + + + + a bisector; specifically : a line bisecting the angle between the optic axes of a biaxial crystal + + + + + + make available for consideration + + + postpone consideration of + + + + + + + the study of the Earth's atmosphere and oceans using data obtained from remote sensing devices flown onboard satellites orbiting the Earth + + + + + + that has escaped/is a fugitive + + + + + + + the study of the significant influence of climate on many aspects of commerce and industry + + + + + + + + + lose, come to not have + + + + + + + act/process of poking with sharp object (perhaps fatally), metaphorically trying something + + + + + + + removal of innards + + + + + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + + + + + + act of talking aimlessly + + + The act of moving aimlessly from place to place + + + + + + + the act or process of making something active again + + + + + + + process or act of making less effective, not sharp + + + + + + departed from a straight path + + + + + + + moment when an institution starts operating after a closure + + + + + + + addition or administration of a substance + + + measuring an appropriate amount of chemical for a given purpose + + + + + + + feeding of babies and young children with milk from a woman's breast + + + + + + pique one's interest + + + + + + + + + to pair, combine, compare + + + + + + + faint, pass out + + + + + + + act or process of making higher, increasing, raising + + + + + + that makes a sign or signs; that signs or is authorized to sign + + + + + + + technologies that support individuals in performing tasks or improving their overall performance, particularly those with disabilities or those needing assistance to live more independently + + + + + + + a genetic engineering technique used to disable or remove a gene from an organism's genome, typically to study its function + + + + + + + act of displaying something proudly + + + + + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + + + + + technology that radically alters the way something is produced or performed, especially by labor-saving automation or computerization; an instance of such technology + + + + + + + + + to leave out, not experience, fail to take advantage of + + + + + + + + + to submit or give something + + + + + + + the integration of various functionalities into glass surfaces, transforming them beyond traditional windows and partitions + + + + + + + a practitioner of anaplastology + + + + + + + the study of a single, unified sound system within a language, rather than comparing it to other systems + + + + + + + + + to cause (a solid) to behave like a fluid, as by pulverizing or by suspending pulverized particles in a moving gas + + + to suspend (something, such as solid particles) in a rapidly moving stream of gas or vapor to induce flowing motion of the whole + + + + + + + technology that extracts heat from the earth by circulating a working fluid through a closed loop within a borehole, typically in geothermal or oil/gas wells + + + + + + (in the oil industry) used, occurring, or performed in a well or borehole + + + + + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + + + + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + + + + + + one who uploads or uploaded + + + a program that uploads + + + + + + + (cause to) become flat + + + + + + + divvy up + + + + + + act or process of bullying + + + + + + + transformation of one tissue into another + + + abnormal replacement of cells of one type by cells of another + + + + + + + A small town; a town of very modest size, typically smaller than an average town but larger than a village. + + + + + + + The act of accumulating + + + + + + + The act of approaching. + + + + + + wrongly or badly informed; deceived + + + + + + + + + + wind down: come/bring to a stop + + + + + + + + endure, last through + + + + + + + + + play to: butter up to, try to please + + + + + + blackout drunk + + + + + + + the classification of libraries based on their function, user group, or other defining characteristics + + + + + + + The act of sprinkling lightly + + + + + + + one who delves, as a tiller of the ground, or excavator + + + + + + + remove armed forces, removal of military presence + + + + + + + The act of working on more than one task at once + + + + + + + act of dipping (as with ladle or hand) + + + + + + + an enzyme that originates from an extremophile, an organism that thrives in extreme environments like high temperatures, acidity, salinity, or low temperatures + + + + + + + + + provide with context + + + + + + + a condition in which the secretion of mucous is diminished + + + + + + + police officer in the Republic of Ireland + + + + + + + The act of causing something to become yellow + + + + + + + a floating hotel, permanently moored at one location + + + + + + + act or process of supporting, substantiating, being a foundation + + + + + + variation on sense two above, enter into a contract with an outside party + + + + + + advance diet as tolerated + + + + + + able to be awakened, stirred up + + + + + + + + + pave, cover with asphalt + + + + + + politically opposed to Bashar al-Assad + + + + + + + The act of sorting into groups categorically + + + + + + having no opening + + + + + + + + + be prevented from coagulating + + + + + + + act of performing an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + + + + + intensify effort, exert pressure on + + + + + + + small African fox, Vulpes zerda + + + + + + + act or process of bird-watching + + + + + + susceptible to blanching + + + + + + lazy, inefficient + + + + + + + + + to squash or mash + + + to press or force (someone or something) into a small space + + + + + + + the scientific study of children; pedology + + + + + + + the field of meteorology that uses fundamental laws and principles of physics and mathematics to understand, analyze, and model the atmosphere + + + + + + + a device used to indicate the direction and intensity of the magnetic field (as on a planet) + + + + + + capable of being quelled + + + + + + + common name for a freshwater fish (genus Hiodon) known for its large, shiny, golden eyes + + + + + + + + + buckle up: prepare for the worst + + + fasten one's seatbelt + + + + + + + + + to place or store in a cellar + + + + + + + + + form cavities in tissue or organs + + + + + + + act of holding together very tightly + + + + + + + + + to cut, cut off, or cut out + + + + + + + surgery that creates an artificial connection between two non-contiguous parts of the colon + + + + + + involving the colon and the anus + + + + + + + + + establish with another + + + + + + + expression of two or more genes simultaneously + + + + + + + + + amend text with a partner + + + + + + + a topology on a space that is the most suitable or standard one for its given context, often arising from a more fundamental structure like a metric or an order, or by making certain naturally defined maps continuous + + + + + + + removal of the urinary bladder and the prostate + + + + + + + + + remove burrs + + + + + + + process of degrading and destroying the myelin sheath covering nerves + + + + + + + + + remove flesh + + + + + + + + + remove germ or oil + + + + + + + + + remove a phosphate group from an organic compound by hydrolysis + + + + + + branch at a wide angle + + + + + + + accumulation and sinking + + + + + + + bending or hanging downwards + + + + + + + + + + act in a manner that causes others to pay attention + + + + + + cool, stylish, excellent + + + + + + be oriented with the face pointing down in some framework + + + + + + + The act of falling back, relying on in emergency + + + + + + + + + (cause to) be enclosed or blocked out + + + + + + + + + + vpc version of fly.03, hit a fly ball + + + + + + + inject liquid to force an opening for extraction of oil or gas. + + + + + + + mark with freckles + + + + + + + + + add/request as a 'friend' on social media + + + + + + + destroy tissue with a high-frequency electric current + + + + + + spontaneously grow fungus + + + + + + + act or process of allowing an old exception to a new regulation + + + + + + + + + go to the gym + + + + + + + + + to place back in a holster + + + + + + + act or process of rendering humid or moist + + + + + + + + + to undergo hyaline degeneration or become hyaline + + + + + + + process of becoming severely inflamed + + + + + + + to exist within, especially as a spirit or driving force + + + + + + + variety of aubergine with purple and white stripes + + + + + + + spider + + + + + + + + + surround with land + + + + + + + + + make lanes out of a certain area or space + + + + + + + act or process of translation, shifting diachronically into Latin + + + + + + forming or dividing into lobules + + + + + + not suited or properly adapted + + + + + + + + + abnormal formation + + + + + + + + + inaccurately assign a label or attribute + + + + + + very slight invasion of malignant cells into adjacent tissue + + + + + + + + + cause to be married + + + + + + + The act of swarming, driving away (perhaps a predator) as a group + + + + + + + removal of an organ's mucous membrane + + + + + + regulation of osmotic pressure + + + + + + + + + Observe with attention + + + + + + + move slightly + + + + + + + add material to the boundaries of a shape/form + + + + + + overwhelm with (military) force + + + + + + + spend the winter + + + + + + + + + to pledge too much + + + + + + + + + inflate too much + + + + + + + hunt a species or area to the point of damaging the herd + + + + + + make poor + + + + + + in or to the continental U.S. + + + + + + + stomach ache + + + + + + + The act of incorporating a nitrosyl group into another molecule + + + + + + + act of splitting into periods, assigning to a period + + + + + + unable to examine by feel + + + + + + not happening repeatedly + + + + + + + + + remove small pieces from + + + + + + + sweetheart, darling, beloved one + + + + + + to decorate a floor with parquetry (inlaid woodwork) + + + + + + + + + flog + + + + + + determine and perform necessary medical course of action + + + + + + (hyper-gendered) act as female staff for, work at + + + + + + drone on about something trivial + + + + + + ride a sailboard + + + + + + the color white-tan + + + + + + warm slightly + + + + + + enclose with walls + + + + + + the snowboarding of waterskiing + + + + + + violet in color + + + + + + surgery that connects two parts of the same ureter + + + + + + not welcome + + + + + + unsettle, destabilize + + + + + + cause to be in the required condition beforehand + + + + + + drink or celebrate, before an event or outing + + + + + + to incubate (as a cell or a culture) prior to a treatment or process + + + + + + entity at a pre-medical school level + + + + + + in favor of war + + + + + + talk about again + + + + + + the process of implanting again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + + + + + groundlessness (quality/fact of being without underlying basis/foundation) + + + + + + find a new home for + + + + + + to look at again + + + + + + to perform surgery or operate again + + + + + + the act of hitting with radiation again + + + the act of emitting or projecting, again + + + + + + look at again; review another time + + + + + + smooth, characterized by absence of hindrance/difficulty + + + + + + travel again + + + + + + behind the pubis + + + + + + cast ballot again + + + + + + the act of casting ballot again + + + + + + roll on the floor laughing + + + + + + scout, investigate + + + + + + act of investigation, scouting + + + + + + without having to pay or be penalized + + + + + + the act or process of cutting, shaping, or forming scallops + + + + + + in a way that is marked by unusual, odd, or peculiar habits, traits, or behaviors, often in a charming or whimsical manner + + + + + + make a shushing noise to encourage someone to be quiet + + + + + + act or process of checking in + + + + + + to inform, make information known + + + + + + the act or process of sleeping until some effect is no longer felt, particularly that of alcohol, medication, or a short-term malady + + + + + + stall off: delay, intensive of stall.01 + + + + + + p-value + + + + + + to stop doing something; pause an activity, perhaps to look at the big picture + + + + + + delusional + + + + number between 12 and 14 + article thirteen (13) of the Constitution of Louisiana + + + For what cause, reason, or purpose + + + the number 10 + the Interim Constitution was amended ten times + + + playing card + + + to give an old object a new purpose/role + + + (second-person possessive) belonging to you + + + joins words and sentence parts together + + + then; and then (concessive) + + + with, accompanied by; and with (associative) + + + although + + + (auxiliary) expressing the future tense + + + give in a will, bequeath + + + third power of ten + Solomon is said to have written three thousand proverbs, and those contained in this book may be a selection from these + + + sixth power of ten + + + Concerning, with regard to, on the subject of + Let's get serious about plagiarism + + + word denoting something already mentioned, or assumed to be known + Did you see my car over there? The exterior was spray-painted red yesterday. + + + In the (same) way or manner that; to the (same) degree that + it is hereby ordered as follows + + + later in time + for 50 years after the year of first publication + + + enclosing in a circle or other curve + + + nearby + + + in a variety of places within an enclosed space + + + next to + + + into the middle of an object and out again + + + beyond + + + used to indicate that something happens or is the case even though there is an obstacle, difficulty, or another opposing factor + + + one of two choices + + + one or the other of a pair + + + On the outside of, not inside + This work is in the public domain in some countries and areas outside the United Kingdom, including the United States. + + + also not + + + denoting something learned + + + in spite of, occurring even with some contrary indicator + + + million million + + + million million million + + + on the top of, above + + + physically supported by + + + at (a point in time) + + + according to previous knowledge + + + More than enough. + Acquire one of these and you'll have plenty of car for your money. + + + the number 0 + + + technique for imaging internal structure using magnetic fields + + + core of the atom; composed of bound nucleons (protons and neutrons) + + + Apart from, except (for), excluding. + Everyone but Father left early. + I like everything but that. + Nobody answered the door when I knocked, so I had no choice but to leave. + + + number between 39 and 41 + + + before + + + form of laughter (especially when repeated) + + + Certainly; verily. + + + make the noise 'woof' + + + used to express surprise, interest, or alarm, or to command attention + + + praise + + + expressing relief + + + chemical element with atomic number 114 + + + without + + + word or phrase that means exactly or nearly the same as another word + + + Used to indicate something dramatic, sudden, and unanticipated has occurred. + Our relationship was going smoothly and then wham! Out of nowhere he told me he was leaving me for another woman. + + + music group made up of young women + + + describes rocks low in silica + + + steel element reinforcing concrete + + + the world's largest land biome, characterized by coniferous forests + + + study of the upper atmosphere + + + study of chemistry pertaining to agriculture + + + science + + + type of higher education institution + + + type of tertiary education teaching institution in the UK between 1965 and 1992 + + + molecule found in living beings + + + decomposition by living organisms + + + renewable energy + + + molecule that is produced by a living organism + + + substance providing scientific evidence of past or present life + + + communications medium with a high data transmission rate + + + response of a sense organ to chemicals + + + act of consigning + + + license + + + not binary + + + outside or beyond the gender binary; not exclusively male or female + + + study of diabetes + + + clinical science of diabetes mellitus + + + indicator of a problem + + + process to assist in medical diagnosis + + + being diurnal + + + measurement of electrical properties + + + pertaining to electrotechnology + + + study of energy transformations + + + of or pertaining to a eutectic mixture + + + semiconductor quasiparticle + + + chemical compound + + + relating to fermions + + + attracted to all genders + + + counter-argue + + + fluid analog of electronics + + + spacecraft flight past a celestial object + + + ceremonial aircraft flight + + + flight event at some distance from the object + + + provider of funds + + + pertaining to geomatics + + + use getter to improve vacuum + + + skill at obtaining grants + + + single layer of graphite + + + undeveloped land + + + provide a guarantee + + + deliberately incorrect version of “who” or “whom”, used humorously in place of those words + Yes, even though she’s one of the YouTubers whomst is bad. + + + medical specialist in hepatology + + + study of water in the atmosphere + + + term for faster-than-light travel mechanism + + + between communities + + + between ministries + + + between mountains + + + type of crystal defect + + + type of Korean food + + + device or process to make linear + + + type of circuit + + + study of fats + + + middle part of a city + + + pertaining to modernism + + + of a size measured in nanometers + + + study of animal behavior related to nervous system + + + study of nervous system disease + + + study of drug interactions with brain and psychology + + + not clinical + + + against proliferation (particularly of nuclear weapons) + + + electron state in an atomic or molecular system + + + an orbital road + + + relating to orthotics + + + economic concept + + + environment of an area in the distant past + + + study of veins + + + degree to which something can be verified + + + pertaining to podiatry + + + cast (as in concrete) elsewhere before installing + + + construction technique + + + pertaining to psychonomics + + + relating to sales directly to final customers + + + characteristic + + + break into fragments + + + notes held only briefly in music + + + steel components of a structure + + + one who studies suicide + + + occupation + + + quality of object + + + interrogative word + + + vehicle safety device + + + period when a broadcast program is shown + + + feeling of weightlessness on a roller coaster + + + entity coming closer + + + helper + + + recording of a text being read + + + person who enjoys the good things in life + + + In spite of, despite. + Notwithstanding personal preferences, the school district's rules on the topic govern our decision. + + + causing a transformation + + + to call someone by their deadname + + + branch of medicine concerned with urological problems affecting women + + + of a desirable age + + + earthquake on the Moon + + + process of overseeing a collection, for example in a museum + + + statistical method that summarizes data from multiple sources + + + a certain proportion of, at least one + + + an unspecified quantity or number of + + + an unspecified amount of (something uncountable) + + + a certain; an unspecified or unknown + + + version of a scholarly or scientific paper that precedes publication in a peer-reviewed scholarly or scientific journal + + + type of sponge + + + perspective of an individual or group + + + action to include someone else’s tweet into one’s own timeline + I'm still learning the full use of hashtags and retweets. + + + include someone else’s tweet into one’s own timeline + In my case, I started following two of the accounts after other people who I follow retweeted or linked to content posted online. + + + reposting of a tweet + + + Slang English language term of endearment + + + type of antibiotic + + + type of pasta + + + beef flank steak + + + female Buddhist monk + + + ethanol produced by fermenting crops for fuel + + + fabrication using biological or biochemical methods + + + Italian antipasto + + + literary genre + + + type of cell + + + female gladiator + + + poetry with 11 syllables per line + + + virtual machine-supporting software or firmware + + + unlawful withholding of employee pay by their employer + + + collection of fashion photographs + + + type of neutron star + + + very thin synthetic fiber + + + fallacious argumentative strategy that avoids genuine discussion of the topic by instead attacking the character, motive etc. of the person(s) associated with the argument + + + et cetera + + + in an apposite manner, appropriately, to the point + + + radiantly (in the manner of beaming light) + + + in a cheating manner + + + In a controllable manner. + + + in a dapper manner; neatly, trimly, sprucely + + + meritoriously (in a deserving manner) + + + used as a lense to improve sight + + + faintingly/fadingly, so as to resemble/evoke death (in dying) + + + without emotion or feeling (in an emotionless manner) + + + the state of not having anything in one's hand + + + so as to enrich + + + in a manner involving multiple cells + + + on the face of + + + without friction (in a frictionless manner) + + + in a guileless manner + + + to what extent? + + + at what cost? + + + in an insubordinate manner + + + without motive + + + type of document issued by the Pope + + + polite response to a "Thank you" + + + said of the time of day, according to the clock + + + onward + + + in a way that involves wild, uncontrolled behavior and feelings of great pleasure and excitement + + + illicit partner in love + + + slang for a user being added to a killfile + + + In a way that is pretended; under false pretence. + + + in a priceless manner + + + in the earliest stage/at first/originally + + + irresistibly/without resistance + + + in a stifling manner + + + without weeping (in a tearless manner) + + + имсол + + + without reference to time, independently of time's passage + + + across an (imaginary) line around which an object may be spun, referring to a mammalian head it is the second cervical vertebra of the spine + + + in a way that is large, bulky, or full + + + in a kind and friendly manner + + + done in a manner that worships another + + + without any mental or neurological abnormalities + + + type of parasitic organism + + + holistic training discipline + + + organism that eats multiple types of other organisms + + + functionless DNA or RNA sequence + + + garbled text as a result of incorrect character encoding + + + Any apparently useless activity which, by allowing you to overcome intermediate difficulties, allows you to solve a larger problem. + + + A less useful activity done consciously or subconsciously to procrastinate about a larger but more useful task. + + + class of small, light notebook computers + + + study of saccharides + + + excessively express a gene by producing too much of its effect or product + + + process of formation of cancer + + + condensed form of chromatin + + + type of signaling protein + + + fraction of population testing positive for a disease + + + narrow shaft bored in the ground + + + instrument that records seismic waves by measuring ground motions, caused by earthquakes, volcanic eruptions, and explosions + + + type of computer software + + + all disciplines related to managing data as a valuable resource + + + condition that results from not enough consumption of nutrients + + + cause to lack nutrients + + + land surface + + + cardinal number + + + freeze again + + + process by which the embryo is formed and develops + + + to magnetize + + + fold again (origami sense) + + + to make sickly + + + post, again + + + to make horn-like in texture + + + to coat or impregnate with zinc + + + to make or render plebeian + + + watch again + + + process of defining the measurement of a phenomenon that is not directly measurable, though its existence is indicated by other phenomena + + + type of civil service position + + + to place in a basket + + + Human disease + + + Human disease + + + filtration by force through a semipermeable membrane + + + bile duct adenocarcinoma that has material basis in bile duct epithelial cells. + + + paralysis of all four limbs and torso + + + excision of the urinary bladder + + + removal of a cyst + + + surgical removal of all or part of an intervertebral disc + + + environment with extremely low apparent gravitational force + + + deepest layer of the oceans + + + the re-emission of photons from a surface following exposure + + + surgical procedure that creates a long-term opening between the kidney and the skin + + + surgical excision of a part of the cornea + + + correlation between measurements of quantum subsystems, even when spatially separated + + + phenomenon applied in physics + + + geometric property of some molecules and ions + + + miniaturized and simplified version of an organ + + + aesthetic ideal introduced into English cultural debate in 1782 by William Gilpin; along with the aesthetic and cultural strands of Gothic and Celticism, was a part of the emerging Romantic sensibility of the 18th century + + + metric in epidemiology + + + process of finding and identifying people in close contact with someone who is infected with a transmissible pathogen + + + dish made from rice + + + crystalline piece of solid matter less than 100nm in diameter + + + nanostructure with its diameter in nanometers + + + human disease + + + formation and then immediate implosion of cavities in a liquid + + + form cavities in tissue or organs + + + phenotype of the typical form of a species as it occurs in nature. Most prevalent allele – i.e., the one with the highest gene frequency – is the one deemed as wild type + + + type of organelle + + + class of chemical compounds + + + a class of chemical compounds + + + the ability of certain substances to produce several distinct biological responses + + + slide show + + + toxic effects on the nervous system + + + word or phrase prefixed by # for categorization + + + large mass of glacier ice + + + device that increases humidity + + + branch of statistics focusing on spatial data sets + + + function of the coefficients of a polynomial that gives information on its roots + + + non-binary gender identity with partial association to a gender + + + territory legally or politically attached to a main territory with which it is not physically contiguous because of surrounding alien territory + + + loss or extinctions of animals in the forests + + + audio effect + + + fictional weapon + + + ancient Persian unit of mass + + + neopronoun + + + exclamation of astonishment + + + distance between different groups in society + + + species of fish + + + worker who is considered to provide an essential service but not necessarily in a special legal category + + + to exhibit especially in an attractive or favorable aspect + + + pay out + + + provide a payout + + + argument for the existence of an intelligent cause adequate to explain the extraordinary design and intelligence we observe in our information-rich universe, particularly within living organisms + + + type of performance art + + + dislike of or prejudice against bisexual people + + + type of cancer of the brain originating in a particular kind of glial cells, star-shaped brain cells in the cerebrum called astrocytes + + + (of a man or woman) attracted to both men and women + + + to capture an image of the on-screen view of an electronic device + + + nostalgic Internet aesthetic celebrating a return to traditional skills and crafts + + + person or object that practices correction + + + dissolute person + + + to travel by dogsled + + + With all due respect to. + + + Unless (something) happens; excepting; in the absence of. + Barring any further red tape, we will finally be able to open the restaurant. + Barring any sudden storms, the plane should arrive on time. + + + Signifies that the action of the clause it starts takes place before the action of the other clause. + The show ends after the fat lady sings. + After we had decided to call it a day, I went home. + + + If + + + English word + + + Where, or in which location. + + + Indicates annoyance, anger, or disappointment. + Nuts! They didn't even listen to what I had to say. + + + Represents the sound of music or singing. + "La la la la, I can't hear you!" Jimmy said, sticking his fingers in his ears. + + + vocalization by cats + + + A mild expression of annoyance. + + + look out!; beware! + + + Please perform again! + + + Used to express repugnance, disgust, or annoyance. + Ugh! The bread in the pantry has gone moldy. + + + An expression of annoyance or disgust; damn, darn. + + + Thanks! + + + Used to show anger or disappointment: damn + + + violating convention or propriety : bizarre + + + third person singular neopronoun + + + the state of being a grandparent + + + process of items shrinking in size or quantity while their prices remain the same + + + a cupboard or cubbyhole + + + a hug + + + planned process of introducing foreign nucleic acids into eukaryotic cells, usually physically or chemically + + + he or she + + + synthetic media where a content is created that resembles a person often by the machine learning models + + + name for an ethnic group + + + word with opposite or contradictory meanings + + + energy that is collected from renewable resources + + + tradeable certificate used in carbon mitigation policy systems + + + for positive and negative feedbacks associated with climate change + + + legal requirements governing air pollutants released into the atmosphere; set quantitative limits on the permissible amount of specific air pollutants that may be released from specific sources over specific timeframes + + + earthquakes as large as magnitude 5.1 that occur in glaciated areas where the glacier moves faster than one kilometer per year + + + system of interaction and processes that regulate the Earth's climate + + + tax on the carbon content of fuels + + + hypothetical type of planet whose surface is completely covered with an ocean of water; in fiction see Q98807723 + + + person with a high performance level + + + for four years in a row + + + across a span of five consecutive years + + + differential operator in vector calculus + + + field at the intersection of medicine and ethics + + + research involving fundamental scientific principles that may apply to a preclinical understanding – to clinical research, which involves studies of people who may be subjects in clinical trials + + + Unwanted pre-installed software + + + Having a gender identity other than male or female + + + a biography or biographical sketch + + + mineral chemically consistent of aluminum and silicon oxide + + + A full length album. Larger than a mini album. Relates to KPOP + + + fictional technology that translates spoken language instantaneously + + + pronoun used to refer reflexively to a hypothetical or generic person + + + response to sneezing + + + out of equilibrium + + + distributed data store for digital transactions + + + the technology used to create such a database + + + person who performs magic in fiction or mythology + + + attribute in video game representing the health of a game character + + + type of fictional weapon in the Star Wars franchise + + + Polynesiain spiritural practice + + + concept in fantasy literature + + + attribute assigned to characters within a game + + + prestige + + + to acquire again + + + heart muscle cell + + + to be over-excited + + + describes rocks with high silica content + + + ethological class; trace fossils in the form of dwelling structures which reflect the life positions of organisms + + + artificial removal of carbon dioxide from blood + + + multiple instances of earbud + + + a single pair of earbuds + + + research involving volunteers + + + species spreading outside its native range + + + the pause in human activity due to the COVID-19 pandemic + + + I love you + + + paddleball sport combining elements of tennis, badminton, and table tennis + + + ball used in pickleball + + + attracted to males + + + attraction to both the same and opposite sex or gender + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + member of the Viverridae family + + + one who comments + + + the use of e-cigarettes or other devices that let you breathe in nicotine or other drugs as vapor rather than smoke + + + a bundle of clothes or bedding + + + type of digital cryptocurrency + + + reply to something negative happening, expressing one's panic or disappointment + + + you (plural) + + + without attraction (all senses) + + + drunk + + + person who streams activities on their computer to a live online audience + + + emoticons or emoji with elements from Japanese katakana + + + Any beetle of the order Coleoptera + + + 21st, ordinal number of 21 + + + Chromobotia macracanthus + + + any sponge of the clade Heteroscleromorpha + + + any spider in the family Sparassidae + + + of, relating to, or shaped like a torus or segment of a torus + + + center of a target + + + not amused + + + a strike of lightning + + + second person plural pronoun + + + post that is a copy of another + + + Knulliana cincta + + + any weevil of the subfamily Entiminae + + + any weevil of the family Curculionidae + + + any parasitoid wasp in the family Braconidae + + + Habrophallos collaris + + + to be extraordinarily proud + + + to be extraordinarily pleased + + + a sauna or steam bath, or a session in one + + + type of information container consising of words + + + person responsible for something + + + hall (building owned by a college or university where students live) where all the food is cooked for you + + + event without spectators at which photographs are taken of people wearing fashionable clothes + + + pine oil-based disinfectant used in India + In aniline, one of the atoms of hydrogen is replaced by the radical phenyle. The converse is also possible, and, if phenyle is in its turn replaced by hydrogen, the ammonia should reappear. + + + installment, debt paid in sequential parts + + + without sweat + + + liberal or progressive + + + plant-based substitute for milk from animals + + + a small map, typically in a video game + + + a simple map of landmarks + + + sale of products and services in individual quantities to end consumers or customers + + + to tithe; give 10 percent (of earnings, produce, etc.) to charity + + + languid state + + + to show off + + + a garden, usually open to the public, where a wide range of plants are grown for scientific and educational purposes + + + a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + any algae of the genus Ecklonia + + + any river shrimp in the genus Macrobrachium + + + treating the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + Having a positive and uplifting effect. + + + chemical compound; 6'-Hydroxycinchonidine + + + (biochemistry) A bacterial form of erythrocuprein that contains two atoms of zinc + + + grammatical construction in which clauses are joined by a coordinating conjunction + Often, however, the significance of a succession of syndeta and asyndeta is perfectly clear from the character of the clauses or sentences connected. + + + a location where war is being waged + + + spontaneous motion of dispersed particles in a mixed solvent induced by a gradient of solvent concentration + + + an instrument for measuring the growth of trees + + + outfit used when exercising + + + the process of making a tunnel + + + having strabismus of the eyes + + + showing artistry + + + nerd-like + + + of interest to nerds + + + adopted logographic Chinese characters used in the modern Japanese writing system + + + coin made from silver-copper alloy used in Germany and the Low Countries during the 13th and 14th centuries + + + harassment that occurs in a public setting + + + female genitalia + + + intercourse; have sex + + + group that is dedicated to a well-known person, group, idea + + + afsygeliggøre + + + follower of conspiracy theories that assert that Barack Obama is not a natural-born citizen of the United States + + + natural disaster: dust storm + + + flashy, but impractical public transport technologies + + + a weed (Suaeda moquinii) of the family Chenopodiaceae growing on alkaline lands in the southwestern U.S. + + + a shrub (Allenrolfea occidentalis) of the family Chenopodiaceae that grows in the southwestern U.S. + + + a plant of the genus Franseria, especially Franseria dumosa of desert regions of the southwestern U.S. and adjacent Mexico + + + the plant Isocoma tenuisecta, native to Arizona, New Mexico, and Sonora + + + any of several rayless goldenrods + + + resembling a bun + + + a mammal of the family Ursidae + + + a mammal in the family Odobenidae + + + process by which a preexisting dark mineral is replaced by amphibole + + + having texture of felt or woolen cloth + + + any bird in the family Motacillidae + + + practical + + + neopronoun (ze/hir/hirs form) + + + sweet pastry with strawberries + + + Completely destroyed (of mass-scale objects such as villages or fields) + + + any bird in the family Ciconiidae + + + plants of the genus Morinda + + + dye obtained from plants of the genus Morinda + + + clothing worn by men during Mobutu Sese Seko's rule + + + pejorative term used for a person who fakes Native American ancestry + + + honour, personal dignity + + + power to command admiration; prestige + + + any member of the mammal family Chrysochloridae + + + to hang (someone) + + + a wrongful advantage + + + folded exterior seat of some early vehicles + + + any cetacean in the family Balaenopteridae + + + robe worn on beach + + + one fourth + + + device to turn a light on or off + + + a covered way or passage between a cathedral transept and the chapter house or deanery + + + to yearn, to desire something one does not have + + + to miss someone or something + + + impertinent; having chutzpah + + + irreplaceable, irreplicable (of a product which has been contracted for) + + + subject to much public attention + + + Derogatory slang for a large utility passenger vehicle. + + + scientific and musical study of bells and the art of bell ringing + + + the minute cytological characteristics of the cell nucleus especially with regard to the chromosomes + + + branch of cytology concerned with the karyology of cell nuclei + + + branch of entomology dealing with the Diptera + + + branch of zoology dealing with barnacles + + + branch of medicine concerned with the anatomy, functions, and disorders (such as infertility or impotence) of the male reproductive system + + + branch of zoology concerning the study of spiders and other arachnids + + + glaucophane-bearing schist variety + + + ecology dealing with individual organisms or individual species of organisms + + + the study of human growth + + + study of unknown, legendary, or extinct animals whose existence or survival to the present day is disputed or unsubstantiated + + + microstructure + + + the study of flags + + + academic and professional field combining gerontology and technology + + + branch of technology and engineering concerned with the installation, maintenance, and replacement of industrial plant and equipment and with related subjects and practices + + + branch of zoology dealing with mammals + + + the study of and hobby of collecting postcards + + + the study of human populations, activities, and behavior + + + branch of science which treats of the laws and phenomena of aqueous vapor + + + branch of science concerned with the effect of environmental and atmospheric conditions (both natural and artificial) on living organisms + + + branch of biology concerned with the study of natural communities and the interaction of the members of such a community + + + performer of or enthusiast for jungle music + + + the study of human cognition and behavior with respect to their evolutionary origins + + + a winter sporting event in which athletes ski over the countryside and stop to shoot rifles at targets + + + in imprecations, subject to damnation + + + from + + + a round, low neckline on a woman's shirt or dress + + + courtyard of a Māori meeting house + + + prison cell, especially one where its occupant entertains many friends + + + out + + + branch of psychology concerned with human maturation, school learning, teaching methods, guidance, and evaluation of aptitude and progress by standardized tests + + + the study of accentuation in language + + + the study of ligaments + + + geology of the ocean floor + + + a psychological approach or system affirming that human acts are understandable and predictable only through an analysis of the previous experiences and motivational states of the organism rather than through a simple description of the objective stimuli temporally preceding human acts + + + speculative psychology concerned with postulating the structure (such as the ego and id) and processes (such as cathexis) of the mind which usually cannot be demonstrated objectively + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + of or relating to the mammal family Erinaceidae (the gymnures and hedgehogs) + + + branch of biogeography concerned with the geographic distribution of animals + + + scientific study of human biological remains (such as bones) from archaeological sites + + + branch of pedology that is concerned with the soils of past geological ages + + + the study of spines (as of sea urchins) especially as an adjunct of taxonomy + + + the science of remedies or therapeutics + + + the study of deliberate, culturally induced ignorance or doubt, typically to sell a product, influence opinion, or win favour, particularly through the publication of inaccurate or misleading scientific data (disinformation) + + + the application of modern technology to agriculture + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + science of plant nutrition and growth in relation to soil conditions + + + the study of the effects of toxic chemicals on biological organisms, especially at the population, community, ecosystem level + + + ecology of deserts + + + in science fiction, the study of aliens + + + in genetics, homology from horizontal gene transfer + + + crystallography + + + branch of entomology that studies pests and beneficial insects of field crops, fruits, and vegetables + + + the physiology of sensation and sense organs + + + the study of the comparative anatomy and physiology of humans; physical anthropology + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + a physical examination + + + the art or "science" of dining + + + branch of anatomy dealing with the arteries + + + a description or illustration of arteries + + + a system of arteries + + + the branch of zoology that deals with crustaceans + + + Atlantic cod + + + fried fishcake of cod, onions and mashed potato + + + tedium, irksomeness, annoyance + + + rival gang member; the opposition + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + the science of climate with respect to its relevance to habitats and ecoregions + + + technology designed to deal with environmental concerns; an instance of this + + + the scientific discipline concerned with the application of geological knowledge to engineering problems + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + of a mix of warmed or chilled alcohol, optionally including ingredient + + + a treatise on mushrooms and other fungi + + + branch of meteorology that deals with precipitation (as of rain and snow) + + + the branch of meteorology that deals with atmospheric conditions and weather in the past + + + to speak ill of, abuse, malign, disparage + + + to act crazily, aggressively, wildly + + + to do something very well + + + the study of the ways in which people negotiate, contest, and reproduce cultural forms and social relations through language + + + in Kantianism, practical ethics + + + a field of creating architectural design principles for very densely populated and ecologically low-impact human habitats; a portmanteau of "architecture" and "ecology" + + + a city intended to be contained in a single structure + + + a treatise on numbers, or statement bearing upon them + + + branch of medicine that specializes in the diagnosis and treatment of cancer + + + branch of zoology that deals with the crustaceans + + + annual total value of only the goods produced and the services provided within a particular country + + + mineralogy + + + (in alternative medicine) diagnosis by examination of the iris of the eye + + + the branch of history or literature that deals with the lives of martyrs + + + histories of martyrs collectively + + + a catalog of Roman Catholic martyrs and saints arranged by the dates of their feasts + + + a list of martyrs + + + the branch of anthropology that deals with the belief in manitous + + + the study of gestures as a means of communication + + + the scientific study of thermal springs + + + addicted to drugs, especially heroin + + + brightening or iridescence appearing on silver or gold at the end of the cupelling or refining process + + + branch of dentistry that consists not only of treating tooth decay, but also of interrupting and preventing this type of damage to the tissues of the teeth + + + the part of medical science dealing with hernias + + + the science of the brain + + + the study of dogs + + + the study of dosages of drugs + + + the study of or knowledge concerning the exanthemata (widespread rashes that are usually accompanied by systemic symptoms such as fever, malaise and headache) + + + writing about fairies; the study of fairies or fairy lore + + + a form of martyrology that lists the feast days + + + neoorthodoxy especially as holding against rationalism that one's attempts to know God by one's own reasoning reach contradictory conclusions and must give way to a faith that awaits God's word + + + the art or science of caring for the stomach either medically or gastronomically + + + the science dealing with the life of past geologic periods as known from fossil remains + + + the mental and emotional states and processes characteristic of individuals when aggregated in such groups as audiences, crowds, mobs, and social movements + + + the scientific study of these phenomena + + + a reference to the provisions in many state constitutions which prevented state governors from running for a second consecutive term in office + + + refers to a controversial incident that emerged during the aftermath of the 2020 presidential election, a hotly contested election in which allies of President Donald Trump attempted an elaborate scheme to illegally overturn his election loss to Joe Biden + + + the study or investigation of miasmas + + + the study of the nature and methodology of sociology + + + a sociological model, framework, or study which is universal in scope + + + the philosophical study of the nature and methods of theology, especially the analysis of religious language + + + branch of zoology dealing with mammals + + + representation by curiologic symbols + + + the field of study that deals with the geological interpretation of aerial or satellite photographs + + + a branch of geology that deals with the causes and processes of geological change + + + study of the ecology of plants + + + the branch of biology, especially of zoology, concerned with extant or recently living organisms, as opposed to fossil or extinct ones + + + nervous system physiology + + + a conceptual framework for the science of psychology + + + the study of the human nose, especially as a means of judging character, intellectual capacity, etc. + + + a treatise on the human nose, especially as a means of judging character, intellectual capacity, etc. + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + technology relating to manufacturing + + + the study of the methods, purpose, etc., of religious missions + + + the study of the interactions between members of a social group, or of interactions between social groups + + + the study of proverbs + + + proverbs collectively + + + the branch of theology that deals with ethics, the resolution of cases of conscience, etc. + + + theology or theological doctrines developed as inferences from moral grounds or reasons + + + a treatise on disorders of the sense of smell + + + the science of nothing, or of things having no real existence + + + the study and use of psychology as it applies to the legal system and people who come into contact with the legal system + + + the study of specters (ghosts, phantoms, or apparitions) + + + the study of the pulse + + + the dating of volcanic eruptions and other events by studying layers of tephra + + + the branch of entomology concerned with insects and other arthropods that are parasites or disease vectors affecting animals + + + trilogy + + + the doctrine, discussion, or study of the performing of miracles + + + the scientific study of smells or of the sense of smell + + + the study of fish diseases + + + a branch of plant pathology dealing with tree diseases + + + excision of the liver or of part of the liver + + + in the theology of John Hick: the theory or study of the status of human life between physical death and the final state + + + the application of the data and techniques of climatology to aviation meteorological problems + + + the branch of science that deals with the hypothetical force called Od + + + dentistry + + + (obsolete) a treatise on the sense of smell and odors + + + the study of odors and the sense of smell + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + of intermediate size + + + in Jeremy Bentham's terminology: the branch of philosophy which deals with matter in respect of quality rather than quantity + + + the study of war, especially as an academic discipline + + + a treatise on sperm + + + the scientific study of sperm + + + the science of thermochrosy + + + the study and applications of weather and climate data to the reproduction, growth, and harvesting of forests + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + the study of the atmosphere and weather using radar as the means of observation and measurement + + + psychology based on the study of individuals, as opposed to that of groups or societies + + + a modification of psychoanalysis developed by the Austrian psychologist Alfred Adler emphasizing feelings of inferiority and a desire for power as the primary motivating forces in human behavior + + + rubbishy, second-rate, inferior + + + pertaining to heroin or the hard drug culture + + + the branch of medical science concerned with the lungs and respiratory system and their diseases + + + the art or practice of calculation by means of the method of rods invented by John Napier + + + hagiology + + + the study of pterylosis, the arrangement of feathers in definite areas of growth + + + to give a name to something or someone + + + theology dealing with salvation especially as effected by Jesus Christ + + + a pair of related novels, plays, or movies + + + employees' initiative related to doing minimum amount of work on Mondays + + + matumannga + + + a style of clothing worn as athletic apparel but also suitable for casual, everyday wear + + + the branch of medical science concerned with diet and nutrition; dietetics + + + a treatise on diet and nutrition + + + a person who gives speeches or presentations intended to motivate or inspire an audience; a practitioner of or expert in motivational speaking + + + a person engaged in motivation research + + + date on which someone or something was born + + + worship of heavenly bodies + + + the branch of medicine and science concerned with aging and its phenomena + + + the study of the diminution or decline of life, as in an individual animal or a species approaching extinction + + + (in a graphical user interface) an on-screen button or icon for navigating to a previous view + + + person who creates manga + + + children's dentistry + + + to participate in, include oneself + + + speckled, spotty; full of particles of dust or extraneous matter + + + the integrated study of cells and tissues + + + a science or doctrine of the cross + + + equipment and programs that are used to process and communicate information + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + the concepts and theories about human mental life and behavior that are supposedly based on psychology and are considered credible and accepted by the wider populace + + + being afraid + + + a treatise concerning seven languages + + + ריהוט רחוב + + + to eat breakfast + + + the scientific study of thermal waters + + + the science of trickery + + + that which is characterised by growth on waste ground + + + the technology of surfaces interacting in a relative motion, including friction, wear, lubrication and interfacial interactions between solids as well as between solids and liquids/gases + + + a type of network communication method where the communication is initiated by a server rather than a client + + + the study of the way speech can be analyzed into discrete units, or segments, that constitute the basis of the sound system + + + to liquate; smelt + + + to part by liquation + + + be verifiable, actual, real; not false + + + back side, reverse side + + + be correct, assess accurately + + + to flatter, cajole + + + of or relating to the present time + + + to increase mass by addition of fat and/or muscle + + + individual responsible for the supervision of the execution of plans and functional operation + + + tool consisting of a blade having a handle at each end; drawing knife + + + to be provided or filled with towns + + + to move or incline at an angle to that indicated by "zig" + + + to assign a postcode to + + + to mark with a postcode + + + to perform adrenalectomy on + + + of a woman, to continually criticize or nag one’s male partner + + + to perform hysterectomy on + + + to subject to nephrectomy + + + to be troubled by desire to gain or keep something + + + to travel by jeep + + + to capacitate, make capable, endow with sufficient strength + + + to analyze a protein sample by subjecting it to particular reactions + + + the study of post-embryonic developmental changes + + + to deliver manually, by hand + + + to mark with a barcode + + + to tend to a bar, act as bartender + + + acyl radical or group derived from biotin + + + to boil an egg for a short amount of time so that the yolk is cooked but still soft + + + a plant (Brassica rapa subsp. pekinensis) of the mustard family, having an elongated head of overlapping, crinkled, broad-stalked leaves and eaten as a vegetable in eastern Asian cuisine + + + that has received a particular upbringing + + + to travel or convey by trolley + + + to ride on a wakeboard + + + stereoisomer of amphetamine used to stimulate the central nervous system + + + to become exhausted; to tire + + + to put out of breath + + + defecate + + + collective of diverse businesses that supplies much of the world's food + + + the state or condition of being ominous + + + the state or condition of being egregious + + + a person who is mentally or morally sick + + + coming into sight, coming forth + + + pulverized with a grater + + + deprived of air, prevented from breathing + + + something remembered, reminded of + + + kept in reserve + + + act of rendering void, invalid, or ineffective + + + act of assurance + + + performance of work in exchange for wages + + + to transport or travel by helicopter + + + the quality of being dorky + + + that gargles + + + characterized by a lisp + + + to put a diaper on or change a diaper + + + to ornament with diaper designs + + + the branch of stratigraphy concerned with the age of strata on an absolute scale (i.e. in terms of years) + + + cinematographer + + + the study of the physical structure and components of metals, typically using microscopy + + + a list or bibliography (either printed or online) of electronic works or documents relating to a particular topic + + + radiological examination of the pharynx + + + the art or process of carving or engraving especially on gems + + + on the day after tomorrow + + + sub-discipline of human geography and economic geography that deals with the spatial relationships and geographic trends within labor and political systems + + + the art of decorating wood or leather by burning a design with a heated metal point; pyrography + + + artefacts decorated using pokerwork + + + the description of the diseases of the ligaments + + + player occupying a central position in the middle of the half-back line + + + supernatural + + + extinct elephant variety with ridged teeth + + + act to skip + + + determination of the direction from which radio waves are coming + + + instrument for measuring the plasticity of a substance + + + penpal; person with whom a long-distance friendship is maintained with letter-writing + + + applicable to all of language’s varieties + + + agribusiness + + + apparatus for measuring the density of gases + + + bullock-carriage; buggy, cart + + + of the nature of a dilemma + + + producing or tending to distortion + + + condition in which there are only two suppliers of a commodity + + + cytokine that stimulates proliferation and differentiation of monocytes and macrophages + + + in cricket, player stationed behind the wicket + + + mean-spirited + + + the preposterous, absurd, risible + + + excessively hot, too hot + + + containing a single cavity + + + to deceive or outmaneuver (a defending opponent) by a feint; fake + + + to deceive or outmaneuver a defender by a feint + + + designating bottom part, section + + + a New Zealand evergreen tree, Metrosideros excelsa (family Myrtaceae) that produces a brilliant display of red (or occasionally orange, yellow or white) flowers + + + a New Zealand variety of the sweet potato + + + to declare or pronounce illegitimate + + + low-grade silver Turkish coins + + + (in Albania) king, monarch + + + to assign or give a code name to + + + riotous event, boisterous party + + + to move or travel at speed + + + church + + + relating to the medical specialty of proctology + + + inner, inside + + + karpdiagramm + + + to dance the cancan + + + diamond of inferior water, yellowish in colour + + + to miscalculate a sum + + + to act the benefactor to + + + to refresh with food or drink + + + designating a reliable or accurate firearm + + + bound to be successful or perform as expected + + + a brackish-water coastal swamp of tropical and subtropical areas that is usually dominated by shrubby halophytes and is partly inundated by tidal flow + + + to entertain a suspicion + + + to express disapproval by uttering the exclamation “tsk” + + + to infect (cell) with free viral nucleic acid + + + to introduce foreign nucleic acids into a recipient eukaryotic cell, especially physically or chemically + + + to lack certainty; to be unsure, dubious + + + to inflate insufficiently + + + to represent insufficiently + + + to free from binding or adhesive effect of glue + + + in arid environments, bands of angular gravel, grain-sorted and of a specific wavelength, running parallel to the contours + + + a pattern of alternate black and white stripes + + + to come forth + + + designating examination of fundus of eye with optical instrument + + + to write graffiti on + + + to look after a house while the usual occupants are away + + + to reduce clotting power of blood by treating with heparin + + + to check for or remove lice + + + to cover again + + + to address in a stage-whisper + + + an approach developed by Clifford Geertz in the 1970s and 1980s that views anthropology as a hermeneutic practice whose method involves writing detailed (‘thick’) descriptions of how people interpret their experience of the world + + + to betray; to disparage behind someone’s back + + + stab literally in the back, or betray + + + to confirm a boy in the Jewish faith at a bar mitzvah + + + to practice diplomacy + + + the study of cultural symbols and how those symbols can be used to gain a better understanding of a particular society + + + a national policy of treating the whole world as a proper sphere for political influence + + + to visualize again + + + to polarize again + + + to restore national status to; to refill with national identity or character + + + to transfer (a privatized industry or property) back into state ownership or control + + + a specialized focus in anthropology that studies the creation, use, and meaning of material culture for curation in a museum; studies of existing museum collections; and the study of museums as social institutions + + + an enclosure or building in which platypuses are kept, especially under conditions simulating those in which they live in the wild + + + to use or practise ventriloquism + + + to utter in the manner of a ventriloquist + + + partially refined cane sugar that has been washed and dried, is off-white, yellowish, or grayish in color, and is used in industry and food processing + + + a representation of the bark of a dog + + + synthetic chemical element with symbol Mc and atomic number 115 + + + composed of flocculi + + + a circle of people, as in a communal gathering or dance + + + of, relating to, or affecting the sacrum and ilium and their articulation or associated ligaments + + + of, relating to, or resembling the mollusk family Solenidae + + + the action or process of diminishing (transitive and intransitive); diminution, lessening, decrease, abatement + + + doctor + + + representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + + a bump; a blow. Also: a brief resonant sound, such as might accompany this + + + an act of sexual intercourse + + + artificial embankment; dam, dyke, causeway + + + embanked quay along the shore of British concession settlements in China + + + initiation of employment + + + initiate employment + + + one who plays the kazoo + + + a Levantine spice mixture made from oregano, basil, thyme, and savory, sesame seeds, and dried sumac + + + permanent or absolute location or position + + + of or relating to the moth family Pyralidae + + + a member of the phylum Mollusca; a mollusk + + + some indeterminate amount + + + connected, affiliated + + + opening allowing the passage of air out of or into a confined space + + + to improvise with a kludge or kludges + + + a snake of the family Pythonidae; a python + + + (expression of disapproval, dismay) + + + second-rate, inferior + + + a person who makes a nuisance call + + + tolerate, put up with, the act of tolerating + + + make organized, orderly arrangment, having a systematic, efficient (maybe unified) structure + + + process or act of attaching, joining, linking, including (in a group) + + + act of looking for something + + + creation + + + comprise + + + a window-frame or lattice, often fitted with cloth or paper as a substitute for crystal or glass; a window + + + a part of a naval task force + + + task force: a temporary grouping for the purpose of accomplishing a definite objective + + + sad, mournful, or wistful + + + a space within a winery, brewery, or distillery where visitors can sample the establishment's products + + + that keeps time + + + a strategy practised most commonly in primary education, but used also in secondary schools, in which learning takes place through dialogue between teacher and pupils and between pupils themselves + + + of, relating to, or characterized by dialogue + + + a miniature nocturne + + + bring with, have + + + of or characteristic of a professional author + + + consciously literary + + + correspondence between form and meaning + + + varna prožnost + + + telecommunication modality + + + to assign or attribute gender to + + + to deadlock, to form an impasse + + + to ride a mountain bike + + + act or process of obtaining, drawing (out) + + + act of killing + + + act or process of unfairly directing a negative emotion towards someone/something + + + edible leaves of dasheen or an amaranth variety + + + shared power and authority vested among colleagues + + + colleagueship; the relation between colleagues + + + the participation of bishops in the government of the Roman Catholic Church in collaboration with the pope + + + outside toilet; privy, outhouse + + + act or process of acquiring, hiring, undertaking + + + act or process of battling + + + thin, lean, skinny + + + weak, feeble, sickly + + + the other + + + the fear of snakes + + + foolish, simple person + + + young woman or girl + + + the processes and methods used to put together different components or parts to create a finished product or system + + + a topology on a set that is derived from a bornology + + + milk-drinking + + + drinking milk of another species + + + sweet potato + + + climbing a route for the first time with no prior information + + + sustain + + + keep up: maintain one's position, maintaining one's position (relatively) + + + the branch of dentistry focusing on gums and supporting structures + + + branch of geology that deals with the succession and significance of past life + + + the use of biological systems, like microorganisms or enzymes, to convert organic materials into different products or energy sources + + + biochemistry + + + biochemical + + + branch of ecology concerned especially with the structure, composition, and interrelationships of plant communities + + + vacation, taking a vacation, break (from something) + + + without excusing oneself or saying one is sorry + + + an electrophoretic strip (as of starch gel) or a representation of it exhibiting the pattern of separated enzymes and especially isoenzymes after electrophoresis + + + an instrument for measuring the degree of fermentation of a fermenting liquor + + + branch of astrology formerly concerned with the prediction of events in inanimate nature and being in part legitimate astronomical science + + + to come down, lower oneself, or arrive, lowering + + + to have (unpleasant) sex with, maybe metaphorically + + + quit + + + sign up: enroll, enter + + + connect into a network, metaphorical or otherwise + + + select a portion of a larger whole + + + a branch of bioclimatology that deals with effects of climate upon man + + + a cone whose section by a plane through the axis has an obtuse angle at the vertex + + + come even with, to catch up + + + cause something to become entangled + + + begin, start, initiate + + + the resemblance between different members of a single series of structures (such as vertebrae) in an organism + + + field of clinical and basic medical sciences that involves the study of the effects of radiation on living tissue (including ionizing and non-ionizing radiation), in particular health effects of radiation + + + an approach to the study and explanation of psychological phenomena that emphasizes philosophy, logic, and deductive reason as sources of insight into the principles that underlie the mind and that make experience possible + + + plant pathology + + + the transmission of data between two or more points without the use of physical wires or cables + + + cause to lose prestige + + + act/process of causing to go down the throat + + + act/process of arriving on the scene in a particular state, entering ranking, functioning in a certain manner + + + being overly concerned or excited by + + + the process of plying with wine + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + that learns or has the ability to learn + + + that is engaged in a course of study + + + having to do with learning + + + unintentional discovery + + + lend aid, credence to + + + carry on flirtations, affairs insincerely, esp with male subject + + + cause to be in motion, summon to arms, be in motion + + + cause to be humble + + + act of extending across space or time + + + to extend across in space or time + + + reorganize + + + expect + + + technology (now especially computer technology) used to determine or verify the identity of a person or thing + + + a relationship where one geometric entity is embedded within another, meaning the point set of one entity is a subset of the point set of the other + + + the study and application of how to handle, process, and utilize materials in powder or particulate form + + + a person who studies or practices ethnomethodology + + + enter, contribute to discussion + + + having or related to a yolk + + + the study of geological features at a microscopic scale + + + an apparatus in which fluidization is carried out + + + a combustion technology used to burn solid fuels + + + systems involving two sets of drilling equipment working in tandem to create a borehole + + + systems that inspect boreholes using two cameras + + + introduce a phosphate group into an organic compound + + + technology that utilizes sensors to detect infrared radiation + + + a catalogue of saints, or a collection of saints' lives + + + removing of data + + + medical trial, consumer trial, or similar + + + visit briefly + + + act or process of producing a new master recording to improve quality + + + Being soaked for a long time + + + an organism dwelling in sandy environments + + + The act of shortened or condensed especially by the omission of words or passages or reduction in scope. + + + The act of linking together. + + + act or process of taking back + + + move towards + + + somewhat or approximately oblong + + + the tools and systems designed to manage knowledge-intensive activities and the knowledge generated by them, focusing on the process of transforming data and information into actionable knowledge + + + the science, study, or theory of the sphere + + + the study of mycorrhizal fungi + + + the study of Basidiomycota (club fungi, mushrooms, rusts, smuts) + + + the study of airborne fungal spores + + + the study of plants that live in or near water, encompassing their ecology, physiology, and interactions with their aquatic environment + + + ship out commodities, again + + + the act of running very fast + + + similar to a chin-up + + + to talk repeatedly or continuously about something —usually used with about + + + make someone or something more attractive + + + any of a class of synthetic antibacterial drugs that are derivatives of hydroxylated quinolines and inhibit the replication of bacterial DNA + + + The act of renting or leasing + + + The act of reaching the bottom + + + of or relating to zoogeography + + + the branch of virology that deals with the arboviruses + + + obstruct, hinder with painful constriction, painfully constricting + + + inflate, swelling + + + inflate, swelling + + + a sugar alcohol (polyol) derived from xylose by reduction of the carbonyl group + + + remembered, kept in memory + + + a rock that is formed by the accumulation of fragments of volcanic rock scattered by a volcanic explosion + + + being covered with water, overwhelmed, inundated + + + avoid + + + The act of obstructing a passage + + + do perfectly + + + become immobile + + + pour + + + have no symptoms + + + not showing signs of trauma + + + cross-correlation of something (a signal?) with itself + + + The act of stabbing literally in the back, or betraying + + + bring in runs by hitting a baseball + + + the starting-point or control state of an entity, which is used for comparison + + + obligation + + + natural disaster: severe blowing snow storm + + + marsh fern: a shield fern (Dryopteris thelypteris) of the north temperate zone that has pinnatifid fronds with pinnae of uniform size + + + dance a breakdance + + + The act of dancing a breakdance + + + broken, with 'ass' intensifier + + + not having any money, with 'ass' intensifier + + + placed back to back + + + term designating a suburb or a small residential area on the outskirts of a city + + + act of providing help, adapting, or making adjustments to meet someone’s needs + + + act of enforcing more strictly + + + develop in conjuction with another developer or project + + + to grow more than one distinct cell type in a combined culture + + + co-host (as a tv show) + + + shape by forcing through a die, press or thrust out with another + + + sudden change of government, takeover + + + develop into a new species + + + internal: function as the corner part of a larger whole + + + eliminate + + + like a flat layer of bone + + + process of modification of the molecular structure (of a protein or other biological macromolecule) + + + remove gut or substance + + + the ability to deny something especially on the basis of being officially uninformed + + + remove paraffin from + + + to measure up; achieve the standard of performance necessary for success + + + to drain; to allow water to exit + + + calculate percentages of blood cells + + + constituting or contributing to making a distinction between entities + + + framecel + + + decry, express low opinion of + + + contaminate the source and the destination simultaneously + + + scale down + + + transfer radio from the source to an alternate sight + + + dig up + + + remove + + + to become pale, weaken, especially with lack of light + + + cause to fall down + + + fine needle aspiration - suck out fluid with a fine needle + + + the process of stationing troops + + + to cover with or as if with a glove + + + become/cover with glacier + + + to enact revenge + + + act of tagging along for a ride with a stranger, or metaphorical extension + + + breed together with genetic kin + + + generate within, instill + + + Being placed at intervals + + + a flavonoid, the disaccharide derivative of quercitin, containing glucose and rhamnose + + + rise + + + act of installation or establishment + + + more explicit horizontal position + + + (try to) make learn + + + Fight primarily with one's feet, often as a form of exercise. + + + lose social status, be humiliated + + + sport in which one jumps as far as possible across a sand pit + + + reflect, mimic, cast an image back + + + existing along the (vertical) center line of the body + + + post to an online journal + + + addition of a methyl group to an atom or group + + + The act of causing dissolution or destruction of cells by lysins + + + begin, start + + + crowd together too much + + + fly beyond or faster than another + + + inhibited or decreased bone marrow activity, resulting in fewer red blood cells + + + depict as being more than is actual + + + (cause to) consume too much narcotic, consuming too much drugs + + + coat to protect from corrosion + + + The act of engaging in or spreading gossip + + + dream + + + not giving a response + + + not inclined toward feeling pain easily + + + of an ethnicity not featuring 'white' skin + + + stop bothering + + + that envies + + + to go on a pilgrimage + + + reach a state of little or no change + + + surgical removal of one or more parathyroid glands + + + absorb or draw off liquid + + + remove + + + to lead with the help of a pony or another vehicle + + + orientation: the intrinsic top of the object points downward in some framework + + + Use uppercase lettering + + + not obscured, allowing a clear view + + + remove electrical ground connection (or metaphorical extension) + + + unsecure/release a boat from the dock + + + provide money + + + fail to provide enough staff support + + + to cause to become quiet + + + of the nature of or resembling slag + + + register officially in advance + + + act of declaration or prediction under or as under divine or paranormal guidance + + + surgical removal of the rectum and part or all of the colon + + + act or process of sequencing DNA using chemiluminescent enzymatic reactions + + + constituted again or anew + + + the act or process of reassigning a role or classification + + + the act or result of restoring a connection + + + implant again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal + + + use of data from motion sensors, especially wheel rotations, to estimate a vehicle’s change in position over time + + + able to be released + + + to take place or occur again + + + supported above and not below; suspended + + + occur, take place again, occur again + + + unfading (exempt from fading/decay) + + + stalinize again + + + move backwards, rollingly + + + evasive or avoiding behavior + + + generally garbage (bad) + + + unskilled at + + + very unbeneficial, unhealthy + + + schmooze, + + + act of cutting with scissors + + + act of moving back and forth, like scissors + + + render into pieces + + + search for, to completion + + + act of defeating soundly + + + sleep away: consume a time period while asleep + + + act or process of inserting without interruption + + + describe roughly + + + act of spreading out or apart + + + The act of scattering seed for growing + + + to reclone part of a previously-cloned DNA segment into a new vector + + + act or process of fully defrosting + + + to strike or slap against (something) with a loud, heavy impact + + + act or process of using the toilet + + + to lie or turn across, contradict, or run counter to + + + act or process of rising above or going beyond the limits of + + + having no page numbers + + + number between 41 and 43 + + + wonderful + + + something to say when you have nothing to say + + + song + + + longest word + + + the number 9 + + + to evaluate again + + + person spoken to or written to + You, in the red shirt: what's your name? + + + people spoken or written to + All 20 of you forgot to do your homework. + + + anyone, one; unspecified individual or group of individuals + + + female person or animal previously mentioned or implied + + + person whose gender is unknown or irrelevant + + + indicates the composition of a given collective or quantitative noun + a group of students + + + indicates an ancestral source or origin of descent + + + links entities which are related by a form of belonging or pertinence from one to the other + + + denotes quantity + + + located within + + + moving into + + + expressed using a particular language (natural or artificial), or some other formal representation + + + enabling + + + in a relative position on the other side of a boundary + + + Any person; anybody. + Almost anyone can change a light bulb. + + + during the same time as + + + Each of the two; one and the other; referring to two individuals or items. + Both (the/my) children are such dolls. + Which one do you need? ―I need both of them. + + + Not one of two; not either; not one or the other. + Neither definition seems correct. + + + sufficient + + + an uncertain or unspecified thing; one thing + + + moving to the top of + + + in a contrary direction to + + + in physical contact with + + + in physical opposition to, or in collision with + + + in opposition to + + + unknown or unspecified person + + + denoting approval + + + meal consumed at start of day + + + add force to the ends of a long structure in a way that would stretch it + + + On board of; onto or into a ship, boat, train, plane. + We all went aboard the ship. + + + In addition, in addition to + + + with a feeling of adventure + + + get rid of, eliminate, eliminating/eliminated + + + look at, investigate + + + to examine using some kind of scoping tool + + + expression of surprise + + + expressing unbelief + + + express mild disapproval + + + No. + + + in a darkly consequential manner + + + deep purple color + + + desirable or preferred + + + face, pave with brick + + + to take on the role of a guest + + + to host someone + + + trousers often made from denim or dungaree cloth + + + prepare, fix again + + + study of ecological processes in agriculture + + + viral disease + + + branch of medicine that deals with the causes, prevention, and treatment of obesity + + + gas produced in landfills or by anaerobic digestion + + + study of biological data and sequences + + + establishment serving coffee + + + to treat as property which can be traded + + + medical device + + + vehicle subsystem + + + other item of a pair + + + relating to electrodynamics + + + related to the epicardium + + + planet not in the solar system + + + currency area within the European Union + + + currency area within the European Union + + + someone who works with fish + + + type of circuit board + + + fundamental + + + living in lakes or rivers + + + determine genotype + + + person working in geoscience + + + described using Earth coordinates + + + branch of civil engineering + + + previously agricultural region under development + + + arm-powered land vehicle + + + deeply emotional song + + + pertaining to liver or related organs + + + chemical compound active in immune response + + + inflexible + + + collection of biological life stages + + + academic degree + + + relating to a magnetosphere + + + study of malaria + + + person who does mariculture + + + electronic-mechanical + + + person who works in metrology + + + relating to microbiology + + + chemistry with tiny samples + + + pertaining to mitochondria + + + a panel discussion with only men on stage + I have a question for the manel. + + + speak at length + + + vertical hole in a glacier + + + multi-chained (for proteins) + + + person who studies museums + + + caused by or related to mycobacteria + + + type of blood disease + + + optical device for nano-scale imaging + + + fictional device + + + relating to neurosurgery + + + apply nuance to + + + type of mineral + + + pertaining to an oilfield + + + part of a vehicle + + + on a vessel/vehicle + + + in support of, going along with + + + application of orthopedic appliances + + + pertaining to otology + + + pertaining to care for outpatients + + + serve the underserved + + + lightweight nonrigid aircraft + + + one who rides a paraglider + + + scientist practicing parasitology + + + scientist who studies parasites and their biology and pathology + + + pertaining to parasitology + + + participates or willing to do so + + + relating to the oil industry + + + scientific description of rocks + + + vibrational quasiparticle + + + involving photons + + + state of being printable + + + in base 5 + + + connect again + + + one who studies sediments + + + pertaining to social and economic issues + + + process of spatializing + + + branch of medical science dealing with the mouth and its disorders + + + process of presenting a story + + + social and cultural activity of sharing stories, often with improvisation, theatrics, or embellishment + + + building and using supercomputers + + + televised fund-raising event + + + software package which automatically renders advertisements in order to generate revenue for its author + + + twenty-four hours a day and seven days a week; continuously + + + three-hundredth anniversary; tercentenary + + + study of ultrasound + + + in genetics and biochemistry, determining the structure of an unbranched biopolymer + + + cause to be in a specific order + + + discover the order of constituents + + + the whole quantity or amount + + + everything + + + everyone + + + the only thing (used for emphasis) + + + mark with a barcode + + + study of oscillations in stars + + + of noble lineage + + + device used to widen something + + + snapshot of the screen of a computer or other electronic device + + + grill + + + craft of making corsets + + + type of wooden boat + + + type of aphasia + + + application for mobile devices + + + study of chemical elements and molecules in outer space + + + person who studies books or writings + + + the history and science of books as physical objects : bibliography + + + study of the Bible and related literature + + + canopy over a church altar + + + liturgical container + + + grilled sandwich + + + action to deny access to an outlet for opinions + + + organism that consumes detritus + + + ecological approach to feminism + + + region near a rotating black hole + + + influential person who uses their strong presence and activity in social media and networks to influence particular audiences in their buying decisions (influencer marketing) + + + profession + + + reddish-brown color + + + science of interactions between geography and plant life + + + type of enzyme + + + type of house + + + former term for ecology + + + French pastry + + + early + + + way to cook pasta + + + competition type in artistic and rhythmic gymnastics + + + in a way that provides no answer + + + amazingly (in an astounding manner) + + + in a blushless manner + + + aggressively/painfully (so as to cause bruising) + + + in a changeless manner + + + without color (in a colorless manner) + + + in a consuming manner + + + Indicates enthusiastic agreement + + + clamantly/markedly (in the manner of a crying evil) + + + hurtfully + + + with argumentation + + + sex position + + + in a dreamless manner + + + without conveying any feelings/thoughts (in an unemotional manner) + + + in a fadeless manner + + + in a gormless manner + + + In a Gothic way. + + + artfully/deceitfully/treacherously (in a guileful manner) + + + in a way that makes a thing able to catch on fire + + + so as to inspire/animate + + + without causing breakage + + + In a irreprovable manner; irreproachably. + + + relative direction + + + in a luckless manner + + + anonymously, without a name + + + every so often + + + In an oracular manner. + + + this way + + + in an excessively loud manner + + + done in a fragmented fashion + + + professional work undertaken voluntarily and without payment + + + legal term + + + In a pronominal manner; as a pronoun. + nouns used pronominally + + + In a proportionable manner; proportionately. + + + arrangement of items front to back; order that allows only one entity to pass through a point at a time + + + in a sinless manner + + + through slats + + + with slowness and low energy + + + a version of "so fucking" that is used to avoid cursing + + + in a spiffy manner + + + in a stainless manner + + + in a way that causes extreme fear + + + at the present time + + + in an unconstrained manner; without constraint + + + a fire in a garbage dumpster + + + a generally messed up situation + + + slang referring to something so bad it resembles burning garbage + + + counterclockwise + + + without using wires, such as by means of radio waves + + + type of inexpensive laptop computer + + + organism capable of growing and reproducing in the cold + + + collection of galaxy groups and clusters + + + to provide a pattern for + + + times a web page is accessed + + + chemical compound + + + protein + + + RNA molecule that is capable of performing specific biochemical reactions + + + modified and decorated jacket worn in biker, metal and punk subcultures + + + activity that arranges items or activities in order of importance or time-sensitivity relative to each other + + + set of arrengements around academic tenure + + + firecracker and similar itself + + + quaternary ammonium cation + + + weaken, not quantifiable, weaken from below + + + surgically seperate from underlying structure + + + study of seasonal change + + + transition from full glacial conditions during ice ages, to warm interglacials + + + stream that runs dry in summer + + + to devest of deific condition; to ungod + + + to make lady-like + + + to render impure + + + (of toxic chemical) to become more concentrate in organisms higher up in food chain + + + to accept again + + + to turn into trash, render trashy + + + to make compact + + + to clothe + + + The act of bringing back into existence or use + + + horse breed + + + any parasitic worm which lives in lungs + + + Research strategy that crosses many disciplinary boundaries + + + type of absorption + + + quality of preferring concepts or facts one wishes to be true, rather than concepts or facts known to be true + + + Any process that results in a change in state or activity of an organism (in terms of movement, secretion, enzyme production, gene expression, etc.) as a result of detection of, or exposure to, a period of light or dark of a given length, measured re + + + chemical reaction + + + incorrect attribution; when a quotation or work is accidentally, traditionally, or based on bad information attributed to the wrong person or group + + + tumor that produces too much insulin + + + study of the biochemical and physiologic effects of drugs + + + class of enzymes + + + biophysicogeochemical process + + + area controlled by a single winery + + + salt or ester of methacrylic acid + + + particle between 0.1 and 100 µm in size + + + branch of chemistry + + + type of kidney cell + + + chemical compound belonging to a series of compounds differing from each other by a repeating unit + + + study of cells and tissues using chemical staining techniques + + + dimer with two different components + + + any loss of nerve supply regardless of the cause + + + to deprive an organ of attached nerves + + + A double-membrane-bounded compartment that engulfs endogenous cellular material as well as invading microorganisms to target them to the lytic vacuole/lysosome for degradation as part of macroautophagy. + + + program that simulates conversation + + + person elected president who has yet to take office + + + coastal wetlands + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + marked by expansion or widening + + + reduction of human social interaction in an effort to prevent the spread of infectious disease + + + name for a person from or resident in a place + + + neopronoun + + + neopronoun + + + colloquial term for giving financial support to a company or country which faces serious financial difficulty + + + mislead someone into doubting reality + + + residual water from cooking legumes, used in recipes to substitute egg whites + + + traditional outdoor game + + + vehicle typically styled after pickup truck bodies, modified or purposely built with extremely large wheels and suspension + + + to commit oneself; to have recourse to any sort of action + + + transgender + + + transsexual + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + an ancient Spanish coint + + + theory of multidimensional oppression + + + to compress in a zigzagged series of folds, like an accordion + + + a state of not engaging in relationships or marriages + + + involving or relating to a connection between a person and someone they do not know personally, for example a famous person or a character in a book + + + gender identity where a person identifies as only partly female + + + golf + + + act of removal, an end + + + act of mentioning, often in an offhand manner + + + spend money + + + new election, when regular election failed + + + process where an incumbent wins election again + + + Across or over in a slanting or diagonal direction. + + + On the side of; nearest or adjacent to; next to. + + + Regarding; concerning. + + + out of, from + + + until + + + Although; despite the fact that; even though. + Notwithstanding I was provoked, I ought not to have reacted so violently. + + + Only if (the stipulation that follows is true). + You can go to the party provided you finish all your homework first. + + + Whatever person or persons: emphasised or elaborated form of whoever. + Whosoever partakes of this elixir shall have eternal life. + + + Used for introducing the result of a fact that has just been stated; thence + The work is slow and dangerous, whence the high costs. + I scored more than you in the exam, whence we can conclude that I am better at the subject than you are. + + + Various people or things; several. + + + Used to indicate that a magic trick or other illusion has been performed. + + + Used as a command to bring soldiers to the attention position. + + + interjection used to express contempt or disapproval + + + expression of regret/sorrow + + + Goodbye, an interjection said upon parting. + + + An exclamation used to express pleasant or unpleasant mild surprise, indignation, or impatience. + Why, that’s ridiculous! + Why, how kind of you! + Why yes, that’s true. + + + A traditional Jewish greeting or farewell. + + + having the maiden name + + + moral snob + + + compulsive consumption of large quantity of negative online news + + + form of spin in which green PR or green marketing is deceptively used to promote the perception that an organization's products, aims or policies are environmentally friendly + + + branch of machine learning + + + biochemical technique + + + act or process of staining with an antibody + + + immunoassay method used for immunoreactive substances of tagging with labeled antibodies + + + type of tectonic plate + + + device used to keep a bed warm + + + before + + + name considered fitting to a person + + + to not forget, or to remember again + + + policy constraining travel + + + study of past climate based on tree ring data + + + particular climate reconstruction from tree rings + + + theory, especially during the 1970s, of imminent cooling of the Earth + + + assets that have suffered from unanticipated or premature write-downs, devaluations, or conversion to liabilities + + + Graph showing a large spike in recent centuries' temperatures resembling a hockey stick to demonstrate anthropogenic climate change + + + legal proceedings meant to address climate change through judicial proceedings + + + type of geoengineering + + + medical procedure + + + core sample of ice, typically removed from a glacier or ice sheet + + + communications field focused on bringing climate change information to a public + + + folk music from around the world + + + game in a tournament just before the final game + + + social annotation of an action as being in line with ethical norms + + + pathology + + + forest dominated by plants that shed their leaves in autumn + + + a song that has the same name as the album it is released on + + + a promoted song on a music release. common in KPOP + + + combining agriculture with photovoltaics + + + Fictional device + Landing party members always carried an equipment pack containing a tricorder and other sensor equipment, enabling them to monitor atmospheric conditions on alien worlds. + As with later tricorders, this device’s standard scan set covered meteorological, geographical, and biological data, which was recorded on a pair of memory modules situated in its upper section, which also incorporated a touch display screen. + + + an incorrect combination of a substituted word (with a similar sound to another word) with another recently coined word + + + practice of publicly shaming, rejecting, and ceasing to provide support to people perceived as problematic + + + vocative particle + + + nazari + + + the practice of abstaining from the use of animal products + + + someone with whom the speaker has a measure of emotional closeness and respect + + + symbiosis between vascular plant and fungus + + + alteration of previously established facts in the continuity of a fictional work + + + convention to represent a specific type of digital information in a specific type of file + + + A type of South American rodent + + + type of arterial thoroughfare between classification of road and street + + + a part of a rock or group of rocks that differs from the whole formation (as in composition, age, or fossil content) + + + general appearance + + + an appearance and expression of the face characteristic of a particular condition especially when abnormal + + + first meeting of two cultures previously unaware of one another + + + person who makes species-based discriminations + It wasn't as if he was speciesist, he told himself. But the Watch was a job for men. + + + any geologic material which is not native to the immediate locale but has been transported from elsewhere + + + geologic material transported from one locale to another by glacial-ice specifically, unqualified as the most common type of erratic + + + geologic material transported from one locale to another by glacial-ice + + + optical machine-readable representation of data + + + automated cooking appliance + + + having features of a human + + + fictional space combat weapon + + + two simultaneous pandemics, such as flu and COVID-19 + + + cisgender and heterosexual + + + vaccine + + + vaccination + + + to be aware of some information + + + of or relating to intersexuality + + + exhibiting intersexuality + + + a white crystalline irritant compound C₈H₆Cl₂O₃ used especially as a weed killer + + + feces + + + act of defecating + + + able to find in a Google search + + + to mention or reply to someone on social media + + + of or pertaining to detectives + + + of or pertaining to detection + + + interjection of happiness + + + any longhorn beetle of the family Cerambycidae + + + to move to an earlier date + + + to place in front of + + + I swear! + + + pertaining to act of eating a meal + + + a tall tree (Anisoptera thurifera) of the family Dipterocarpaceae + + + a European freshwater fish in the family Percidae, closely related to the perch, Sander lucioperca + + + indicating a non-occurring action or state that was conditional on another non-occurring event in the past + + + person who "bends" expected gender roles + + + video game that is played in professional competitions + + + which person is + + + any plant in the genus Hedeoma + + + any virus of the family Baculoviridae + + + any virus of the family Baculoviridae + + + fictional character with supernatural or superhuman powers dedicated to helping the public + + + (Internet slang) very cool + + + any beetle of the clade Lamiinae + + + any bacteria of the clade Alphaproteobacteria + + + any frog in the family Pipidae + + + small, benign skin growth that may have a stalk (peduncle); also called skin tag + + + basted with soy sauce and rice wine and grilled over an open fire + Home Chef provides classic dinner recipes like pork tenderloin, baked chicken, pasta dishes, and teriyaki steak. + Buffalo wings, said to have been invented in a bar in Buffalo, New York, in 1964, are among the spiciest preparations (other popular variations include teriyaki wings and honey garlic wings). + + + type of fine Kashmiri wool of a Himalayan ibex + + + machine to mow lawns + + + mellow, agreeable + + + incest + + + hall (building owned by a college or university where students live) where there are communal kitchens and fridges and so on intended to be used by students + + + a clumsy, stupid person + + + be healthy, be well + + + farewell + + + recommendation for greater sophistication or awareness: "get real" + + + ammonic + + + the plover Vanellus coronatus + + + the police (collectively) + I just blew a chase on the maameh + + + to make evident or public + + + urban slang for a half-jack + + + sorting room in a paper mill + + + in or by the fact + + + music that blends punk rock and rockabilly + + + of, resembling, or characteristic of a zebra + + + style in art and especially architecture + + + An obsolete currency of India + + + tendency in a language to treat the arguments of intransitive verbs and objects of transitive verbs alike while distinguishing the agents of transitive verbs + + + modified by humans + + + all the roots of any singular plant + + + land revenue system in British India + + + someone who one shares their bed with + + + sex partner + + + person one has a platonic friendship with, that includs sex + + + transfer of food or other fluids among members of a community through mouth-to-mouth or anus-to-mouth feeding + + + something whose slightly damaged appearance shows that it has been used many times + + + to end a phone conversation intentionally + + + a capital town for Nanumba North municipal in Ghana + + + The one that follows after this one. + Next, please, don't hold up the queue! + + + any individual living being or physical living system + + + superficial or meaningless communication lacking substantial content or significance + + + massage of the back + + + a lot + + + addiction to tobacco + + + a mammal in the family Eupleridae + + + of or pertaining to the Trochilidae (hummingbirds) + + + a member of the mammal family Elephantidae + + + promise to keep silent + + + any fish of the family Blenniidae + + + any salamander in the family Plethodontidae + + + any owl in the family Tytonidae + + + a mammal in the family Dugongidae + + + a bat in the family Molossidae + + + of or relating to the moth family Crambidae + + + officer under the Lord Chancellor whose duty it was to prepare the wax for sealing documents + + + any of several pivoted pieces forming the throat of an adjustable die used in drawing wire or lead pipe + + + any mole of the family Talpidae + + + woman, lady + + + a machine that dispenses bubblegum + + + any bird in the family Odontophoridae + + + any fish in the family Apogonidae + + + a fish in the genus Apogon + + + any salamander belonging to the family Cryptobranchidae + + + a cetacean in the mammal family Delphinidae + + + person of mixed white and Asian or PIslander ancestry + + + Of or related to fruit bats in the family Pteropodidae + + + (expressing assent, understanding) + + + (expressing surprise, doubt, joy, anger) + + + fighting, conflict + + + childlike aspect of one’s emotional experience + + + سو گھٹ سولاں + + + malillugu + + + pertaining to the journey from childhood or adolescence to adulthood + + + to look after + + + to nurse + + + the intentional performance to do a wrongful act + + + concert of classical music at which a part of the audience stands unseated for a reduced price of attendance + + + walking for show, amusement + + + a disorderly, confusing situation; a mess + + + more in addition to someone or something + + + something different to an aforementioned someone or something + + + to treat something or someone as different + + + to try to effect or influence certain people + + + an album for mounting pictures and other memorabilia of a baby and for keeping a record of their growth from infancy + + + a book intended for babies or young children + + + a book containing advice for new or prospective parents + + + hill, mound + + + type of wooden vessel + + + generally, an Australian Aboriginal ceremoial meeting + + + study of marine organisms + + + branch of biology concerned with protists + + + soil science + + + study of the influence of soils on living things, particularly plants + + + branch of tribology which studies friction phenomena on the molecular and atomic scale + + + branch of herpetology dealing with amphibians + + + branch of herpetology and paleontology dealing with fossil amphibians and reptiles + + + branch of ichthyology and paleontology dealing with fossil fish + + + a sports match that holds no significance in terms of affecting the outcome or standings of a tournament + + + branch of entomology dealing with the Odonata (dragonflies and damselflies) + + + branch of ecology concerned primarily with the species and its genetically variant subdivisions, with their position in nature and, with the controlling and ecological factors + + + the study of victims of crime + + + usually disparaging : the claim that the problems of a person or group are the result of that person or group having been victimized + + + onomastics + + + the study of heat + + + a medical science that uses infrared images of the body to diagnose problems + + + the study of games and play + + + washerman occupational class in South Asia + + + the study of the anatomy and physiology of vomiting + + + branch of biology concerned with the processes and patterns of biological evolution especially in relation to the diversity of organisms and how they change over time + + + swimming or floating in water + + + floating entirely under water + + + the study of sleep and hypnotic phenomena + + + inner bark of exogens; bast + + + neither of two persons or things + + + unaffected by or free from taboo + + + not set apart for a special use + + + an old Polish immigrant + + + the study of meteorites + + + the study of how exercise alters the function and structure of the body + + + criminology + + + branch of psychology concerned with the behavior of animals other than humans + + + folk psychology + + + comparative psychology + + + feeding on or in wood + + + dispersal of spores or seeds by animals + + + a plant distributed by living animals + + + a member of the mammal family Erinaceidae (the gymnures and hedgehogs) + + + a plant adapted to withstand or to achieve a competitive advantage from fire + + + swear to God + + + branch of biology concerned with the study of plankton + + + altering one’s course in life + + + a science that deals with actinism and photochemical effects + + + the science of remedies or therapeutics + + + the study of geological features by aerial observation and aerophotography + + + branch of medical science that studies fractures + + + the study of the language, costume, literature, art, culture and history of Albanians + + + branch of botany that deals with character, ecology, and causes of outbreak of plant diseases especially of epiphytotic nature + + + the sum of the factors controlling the presence or absence of a disease or pathogen of plants + + + pleonasm: the use of more words than those necessary to denote mere sense (as in the man he said) : redundancy + + + ecology of microorganisms + + + an ecclesiastical calendar of festivals celebrated in honor of particular saints and martyrs + + + a register of saints or outstanding religious personages + + + menologion: an ecclesiastical calendar and short martyrology of the Eastern Orthodox Church : an abbreviated version of the complete Menaion + + + the collection and study of proverbs + + + apparent or imitative homology especially between metameres + + + the scientific consideration of the remedial use of friction + + + the study of winds + + + the application of geological methodology and techniques to archaeological research, especially in the analysis of soils and sediments, stone artefacts, palaeoenvironments, etc. + + + the branch of ornithology which is concerned with birds' nests + + + the scientific study of weight + + + investigation of the supposed relation between the celestial bodies and the weather + + + the science of breeding animals and plants under domestication + + + branch of mathematics which studies topological spaces using the tools of abstract algebra + + + products, equipment, and systems that enhance learning, working, and daily living for persons with disabilities + + + theological doctrine that describes the divine nature according to positive categories + + + branch of mycology dealing with the rusts + + + crouch-backed + + + crowded, populated with people + + + the ecology of organisms and their interactions with each other; the branch of science concerned with this + + + branch of medicine dealing with the skin, its structure, functions, and diseases + + + study of structural geology + + + computer science + + + branch of pathology that deals with manifestations of disease at the cellular level + + + the study of animals in a germ-free environment + + + the raising and study of animals under gnotobiotic conditions + + + the science or study of the origin, meaning, growth, and history of the religious feasts and seasons of the Christian year + + + the study of marine animals + + + the scientific study of microclimates + + + the microclimatic character of an area + + + to drop, issue from + + + the branch of zoology which deals with slugs + + + the study of how populations change over time + + + the study of the astronomy of ancient cultures + + + the doctrine of the use of the cane in corporal punishment + + + to send a copy of a communication, especially via email + + + (among the Algonquian people) a supernatural being that controls nature; a spirit, deity, or object that possesses supernatural power + + + recent zoology: the zoology of existing animals disregarding those extinct + + + the study of the process by which animals and plants grow and develop + + + any approach to psychological issues based on the idea that mental processes can be divided into separate specialized abilities or powers, which can be developed by mental exercises in the same way that muscles can be strengthened by physical exercises + + + the branch of Roman Catholic theology that deals with the practice of virtue and the means of attaining holiness and perfection + + + contraction of a word by omission of one or more similar sounds or syllables + + + the medical science concerned with diseases of the blood and related tissues + + + the study of gramophone records + + + (informal) the art or practice of bluffing or deception + + + nonsense, rubbish; fooling, hoaxing, humbugging + + + the branch of political economy relating to the production of wealth + + + the study of the causal relations between geographical phenomena occurring within a particular region + + + the study of the spatial distribution of organisms + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + a hostile or harmful action (such as an attack) that is designed to look like it was perpetrated by someone other than the person or group responsible for it + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + the scientific study of noses + + + study of the microscopic anatomy of cells and tissues of plants and animals + + + tissue structure or organization + + + the study of hormones: endocrinology + + + the science of health; hygiene + + + a treatise on the poppy or on opium + + + a target-driven process designed to ensure the successful implementation of reforms or achievement of policy goals within government or the public sector + + + absence of purpose in nature especially as manifested in rudimentary or nonfunctional structures + + + the doctrine of purposelessness in nature + + + frustration or evasion of a normal functional end + + + a vestigial organ + + + the study of the impact an injury or incident had on a person's lifestyle + + + hedonics + + + the study of the phonology of morphemes + + + recitation of mimes + + + a collection of idioms + + + the study of the relationship between the endocrine system and various symptoms or types of mental illness + + + a branch of medicine that deals with the influence of emotional states (such as stress) and nervous system activities on immune function especially in relation to the onset and progression of disease + + + the theory and practice of utilizing new technology to develop and implement innovative educational approaches + + + sensitive to light of all colors in the visible spectrum + + + the study and treatment of speech and language problems + + + the branch of anatomy which deals with the ligaments + + + the study of the structure and operation of synapses + + + a scientific dissertation on tea + + + the study of archaeological remains by examining them from a higher altitude + + + the study of climatological conditions in the free atmosphere--that is, in atmospheric layers located at various levels above the earth's surface + + + the study of how mountains influence and modify weather, and to a lesser degree, climate + + + te branch of anthropology that deals with the origins, forms, and practice of politics or political authority + + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights + + + the study of the masticatory system, including its physiology, functional disturbances, and treatment + + + the branch of biology concerned with congenital defects and abnormal formations of plants; plant teratology + + + a speech in which someone admits to the charges or problems they are accused of, while simultaneously justifying or attempting to provide excuses for them + + + the study of the physiology of the ear and hearing + + + an expert or specialist in physiological psychology + + + counter-espionage + + + the science of the production and distribution of wealth + + + to perform music using a musical instrument or instruments + + + the explicit concern with foundational, metapsychological, and philosophical questions in psychology + + + a range of philosophical and theological explorations of the idea that God may be dead + + + those aspects of meteorology that occur over, or are influenced by, ocean areas and which serve the practical needs of surface and air navigation over the oceans + + + technology, now especially digital and online technology, used to support banking and other financial activities + + + the methods and the process used for catching or capturing the fishes for various purposes + + + characterized by whirling or rotatory movement + + + the branch of virology concerned with the study of retroviruses + + + the science or study of revolution + + + a treatise on pyrites + + + the study of crystals and crystallization; crystallography + + + that has been through the process of fermentation + + + leavened (of bread) + + + the application of technology in the agricultural and food sector + + + contraption used to catch fish alive + + + (first-person plural possessive) belonging to us + + + (third-person singular impersonal possessive) belonging to it + + + impervious to moisture or damp + + + tsirkulatsioonimudel + + + a small bedside table or stand + + + the medical specialty that studies the morphology of the macroscopic and microscopic abnormalities in biological tissues and normal or pathological cells + + + the study of the meteorological processes occurring close to the Earth's surface, including the effects of meteorology on air pollutants and the effects of pollutants on meteorology + + + the science of weapons or armor + + + the study of the complex processes of climate and glacial interaction + + + the study of mesoclimates; the climatology of relatively small areas that may not be climatically representative of the general region + + + to an extent + + + aware of, knowledgeable about + + + opposed to + + + to the greatest extent + + + aggravated; angry, annoyed, irritated + + + crazy, fun + + + surely have, should have + + + the study of historical weather patterns using radar data to understand how surface properties affect precipitation + + + a use of many languages + + + the branch of sociology that deals with political groups and leadership + + + a certain set of ethical ideals, principles, doctrines, myths or symbols of a social movement, institution, class or large group that explains how society should work and offers some political and cultural blueprint for a certain social order + + + chemical reaction used to remove color, whiten, or disinfect, often via oxidation + + + the macroscopic assessment of pathology specimens + + + a calendar or book declaring what is done every day, a day-book + + + to receive pardon + + + article structured as a list + + + rare. Apparently only attested in dictionaries or glossaries: the doctrine of, or a treatise on, the nutrition of organized bodies + + + the study or science of nutrition + + + qasoqqavoq + + + interring; enclosing, whelming + + + that catches fish + + + to release again; to reissue (especially of a film or recording) + + + release again + + + to produce together (with a partner) + + + to engage in role-playing, taking on of fictional parts + + + to eat dinner, dine + + + to put before a committee + + + to become inattentive, oblivious + + + to chatter continuously in an annoying manner + + + to shine, gleam, glitter with reddish or golden light + + + to put out of date; to make obsolete + + + to control and direct in a detailed, meddlesome manner + + + to mention name of famous or prominent person in conversation to impress others + + + the study of how people behave in groups and how their behavior differs from when they are individuals + + + the use of solar energy to generate electricity or heat + + + to inhibit or decrease normal activity of bone marrow, resulting in fewer red blood cells + + + to bring about lysis + + + to urinate involuntarily while asleep + + + to remove a sample of tissue for medical analysis + + + to occur at time later than expected + + + to not be present + + + to not be present among, at + + + to be experiencing fear + + + substance that quells or blunts the libido + + + having normal visual acuity + + + marked by facilely accurate discernment, judgment, or assessment + + + a treatise on the head + + + branch of botany that deals with desmids + + + the study of diseases of ligaments + + + short trousers, shorts + + + to fossick + + + to score with ravines + + + to hollow a ravine or cleft out of + + + to reduce to base level by erosion + + + to send an SMS message from a mobile phone + + + to subsidize something or someone + + + essential oil distilled from the flowers of the Seville orange + + + to adduce arguments, argue + + + to provide, secure, or raise with a quoin or quoins + + + mentally or morally sick + + + the branch of biology that uses computational techniques to analyze and model how the components of a biological system such as a cell or organism interact with each other to produce the characteristics and behavior of that system + + + the broomrape Orobanche purpurea of Eurasia and North Africa, which has bluish-purple flowers and is parasitic on yarrow + + + forward, at the fore + + + at the fore of, ahead of + + + deep in past time; long ago + + + that alights, descends + + + that blames + + + constrained, forced, necessitated + + + that abstains from or is deprived of food or drink + + + departing, going + + + out of each hundred + + + outdoor; out of doors + + + of, within, or for a group of related people + + + act to forget + + + state of being unconscious, oblivion + + + whiner, complainer + + + reduced to fine particles by grinding + + + professional who applies engineering principles to the study of cells and tissues, and uses these principles to control and understand cell behavior + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + a home that combines a living space with a large workshop or storage area + + + a gold ring + + + the radiographic visualization of the gallbladder after ingestion or injection of a radiopaque substance + + + dyer + + + a chemical compound (such as a drug, pesticide, or carcinogen) that is foreign to a living organism + + + photography involving the use of a camera attachment or integrated feature that produces a brief flash of intense light + + + the study of the individual, or of single events or facts + + + the practice or art of recording images with a video camera + + + a list or catalogue of video recordings + + + the use of oscillographs for recording alternating current wave forms or other electrical oscillations + + + the science of plant description; descriptive botany + + + the science or practice of transcribing speech by means of symbols representing elements of sound; phonetic transcription + + + a system of shorthand based on phonetic transcription + + + the art of representing objects in perspective, especially as applied in the design and painting of theatrical scenery + + + visual design for theatrical productions, including such elements as sets, costumes, and lighting + + + visualization of the kidney using a radiological contrast medium or radioisotope + + + the description or study of ceramics + + + of or relating to engraving or carving, especially on precious stones + + + combining form meaning "salpinx" + + + combining form meaning "fallopian tube" + + + combining form meaning "fallopian tube and" + + + combining form meaning "eustachian and" + + + the art of taking an impression of a coin or medal using sealing wax + + + writing held to be that of spirits and produced directly without a medium or material device + + + descriptive pneumatology + + + tuft or bunch of ribbon, feathers, flowers, threads of silk + + + million-millionth of a gram + + + pertaining to a plexus of veins located in the spermatic cord of the male or the broad ligament of the female + + + that bumps + + + designation of a particular kind of concrete + + + glycoproteins that stimulate the production of blood cells in bone marrow + + + of fresh water habitat; situated in still water + + + floor- or ankle-length dress + + + rocket, arugula + + + like or resembling a dragon + + + on account + + + a mess-up; a disaster + + + testicles + + + the study of animals as geomorphic agents—as in the creation and collapse of gopher tunnels + + + lady of the Sultan’s harem + + + any cross between a mandarin and a kumquat + + + a sign, such as an accent or cedilla, which when written above or below a letter indicates a difference in pronunciation from the same letter when unmarked or differently marked + + + a large Hungarian dulcimer + + + a tiler or slater of roofs + + + going on a trek + + + a market + + + torch + + + a person who is present when something is happening but is not involved; a bystander + + + (nautical) a gunner's assistant (obsolete) + + + relating to the medical specialty of proctology + + + (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + + surgical construction of an artificial opening from urinary tract + + + to turn upwards + + + to remove stitches from + + + to brace again + + + state of semi-dormancy exhibited by reptiles and amphibians in response to cold weather + + + to form or express the opposite or contrary of + + + to make over again or restore (property) to former owner + + + to supply preliminary amplification + + + to saturate to excess + + + white barley sugar or sugar candy + + + to adjoin two objects + + + transfer of a phosphate group between molecules in different compounds; act or process of exchanging phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + branch of geomorphology that studies how landforms are formed or affected by tectonic activity + + + to remove or unfasten clamp(s) from + + + to make insufficient use of + + + the condition in which people in a labor force are employed at less than full-time or regular jobs or at jobs inadequate with respect to their training or economic needs + + + the condition of being underemployed + + + to transfer genetic material into another individual + + + to transfer genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + to transfer genetic material non-reproductively, usually by horizontal gene transfer + + + to march with legs swinging sharply from the hips and knees locked (like how geese walk) + + + to accelerate the progress of; to expedite + + + to provide an active link to a website + + + to destroy by burning + + + to subject to genocide + + + to flash lightning + + + to calculate on a yearly basis + + + light a controlled fire in the path of a wildfire to gain control + + + to fail spectacularly + + + developed in a full and thorough way + + + seasonal movement of livestock (such as sheep) between mountain and lowland pastures either under the care of herders or in company with the owners + + + the branch of anthropology focused on the interactions between humans and biophysical systems + + + a small carnivorous aquatic monotreme mammal (Ornithorhynchus anatinus) of eastern Australia and Tasmania that has a fleshy bill resembling that of a duck, dense fur, webbed feet, and a broad flattened tail + + + mother tongue; first language a person adopts from their family of origin + + + heaped up, accumulated; increased by accumulation + + + in South Asia: a member of a Scheduled Caste of leather-workers; a shoemaker, a cobbler, (formerly) a saddler + + + anal sex + + + questioning, interrogation; the action of making or suggesting a queryaking of queries + + + of the nature of, or characteristic of, croup + + + a person who introduces a parenthesis; a person given to the use of parenthesis + + + happening or occurring every four years + + + consisting of or lasting for four years + + + nothing, not anything + + + to weigh in ounces + + + to despoil + + + to pour forth like a conduit or fountain + + + name of a fishing tender + + + where above mentioned + + + of or relating to the moth family Pyralidae + + + education conducted after secondary education and before postgraduate education, usually in a college or university + + + an animal that feeds on feces or fecal matter + + + a plant that captures and digests insects either passively (as the common pitcher plant or the sundew) or by the movement of certain organs (as the Venus's-flytrap) + + + a virus that attacks actinomycetes + + + the deliberate, often habitual, eating of small quantities of arsenic compounds + + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances + + + a dance routine performed by ice skaters, especially as part of competitive figure skating + + + indeterminately small in number + + + that cleans + + + anyone + + + whichever + + + however much + + + a jump in figure skating in which the skater takes off from the back outer edge of one skate and makes at least one full rotation before landing on the back outer edge of the other skate + + + ball-and-socket joint + + + that can be manured + + + mendacity: the quality of being mendacious; the tendency or disposition to lie or deceive; habitual lying or deceiving + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + to take a stereograph or stereoscopic photograph of + + + a petulant person, especially a childishly sulky or bad-tempered one + + + acknowledgement of truth + + + allowance of entry + + + natural geological depression + + + to question about matters brought out during foregoing direct examination + + + send, transport, or disseminate by courier + + + a person who causes a nuisance + + + give back + + + to remove all or most of the substance of (a tumor or lesion) + + + being in large quantities or not divided into separate units : being in bulk + + + of or relating to materials in bulk + + + French-speaking + + + the act of suggesting someone for a role + + + becoming aware + + + surveyence of opinion + + + process of establishing something + + + an abdominal pain + + + the scientific name of a nerve + + + a traveler who stays at hostels + + + (archaic) an innkeeper + + + one that lodges guests or strangers + + + the condition of having three copies of chromosome 13 that results in a syndrome characterized by severe congenital malformations including craniofacial and cardiac defects, structural brain abnormalities, and polydactyly + + + sadness, grief, melancholy, sorrow + + + systematic decline in quality of online platforms over time driven by greed + + + say for all to hear + + + a lack of skills in spoken and written language which may have a detrimental effect on a pupil's ability to learn + + + coming to a stand, waiting, continuing + + + hesitating, delaying + + + a short scherzo + + + the utilization of theories and methods from phenomenology in media research, especially those of Husserl and Heidegger + + + the study of the media as technologies which are not neutral but which transform both the world and human experience of it by amplifying or reducing phenomena through various transformational structures, as theorized by Ihde and others + + + the state of being hyperreal + + + a hyperreal quality + + + in a mediated context, an artificially created copy that is perceived as somehow more real than the real thing, or too real to be real + + + of, relating to, being, or characterized by manufacturing and especially heavy industry + + + long for, be lacking, absence noted with sadness, be unable to locate + + + an orally bioavailable, second-generation hydroxamic acid-based inhibitor of histone deacetylase (HDAC), with potential antineoplastic activity + + + standing watch over something + + + utterance or exclamation of ‘ooh—ah!’ + + + a woman, usually over 30 + + + male bird, especially a domestic chicken, having plumage resembling that of a female + + + to grow or become dark + + + to make dark, darken + + + make legal + + + convince to join + + + angry, phrasal variant: angry + + + full complement of sailors belonging to crew + + + any method of searching for oil based on a limited knowledge of geology and practiced especially by wildcat prospectors + + + pre-1900 Swedish + + + length of cotton cloth wrapped about the body + + + the study of glyptic + + + the branch of botany that deals with the Hepaticae + + + the study of pathologic conditions related to pregnancy, childbirth, and the postpartum period + + + free-climbing a route, while lead climbing, after having practiced the route beforehand + + + the branch of veterinary medicine that focuses on the study of parasites that infect animals, their life cycles, and their impact on animal health + + + pertaining to paleontology + + + the topology on a set where only the empty set and the entire set are considered open + + + a treatise dealing with the uterus + + + branch of biology concerned with the construction of mathematical models to describe and solve biological problems + + + branch of physiology concerned with the basic functional activities of living matter : protoplasmic physiology + + + theology that conceives of ultimate reality as so transcending human thought that it can be described only negatively + + + to work together + + + to prevail over or declare void + + + the bisectrix of the obtuse angle formed by the axes of a biaxial crystal + + + process of breaking (up), terminating + + + the study of how climate, particularly temperature and moisture, influences soil properties and processes over the long term + + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment + + + provide money for + + + the microscopic examination of tissue in order to study and diagnose disease + + + normal, standard, or consistent + + + talk idly + + + bring to an end + + + act of hitting or pressing (a key or a button) + + + striking a blow with a closed fist + + + deconstruct, destroy, bring an end to, defeat + + + move randomly across some scale, fluctuating + + + to make a scapegoat of, unjustly blame (and punish) someone + + + act or process of starting a habitual activity + + + act or process of occupying (space) + + + act or process of raising an issue or grievance + + + act or process of beginning an action, state, or position (non-habitual) + + + become/make clear, clean, becoming, making clean or clear + + + to take possession of + + + examine + + + act or process of being close or similar, causing to come near to or approach again + + + to place into a package again + + + a student or practitioner of methodology + + + the study of how cities modify the local climate, creating distinct conditions compared to surrounding rural areas + + + having the yolk in the centre of the egg or egg cell + + + (especially in Greece or among Greek-speaking people) an extempore lament or funeral song, usually sung by a woman; a myriologue + + + the action or occupation of performing such laments + + + act or process of providing materials or supplies (provisions) + + + an advocate or practitioner of a processual approach to a problem or discipline; an advocate of processualism + + + with confidential or sensitive information included or visible + + + in my opinion + + + the finest topology that makes a given collection of functions continuous + + + a topology defined on the set of continuous maps between two topological spaces + + + the study of somatotypes + + + a method used in cervical cancer screening and other diagnostic procedures to improve the accuracy and efficiency of cell sample analysis + + + comprehensive + + + the condition or fact of being between + + + the software and tools, including digital platforms and intelligent process automation, used to efficiently and intelligently create and deliver products and services, as well as improve speed and agility of processes across the enterprise + + + the psychology of the reader + + + Haeckel's name for: the comparison of the physiology of a mature organism to that of the (presumably) most perfectly developed organisms of its phylogenetic group + + + the theory, popularized by C. H. Dodd (1884-1973) that the eschatological passages in the New Testament refer not to a future apocalypse, but to an era which was inaugurated by Christ's presence and ministry on earth + + + the act of drooling + + + transporting an item or items that are coupled to a vehicle or pack animal(s) by means of tension elements + + + anxiety causing, distressing, disturbing + + + freeze completely + + + having been split apart + + + taking place in the middle of one's life + + + a belief system or ideology that mimics religious or theological structures but lacks the core elements of genuine theology, often serving as a substitute for or distortion of true faith; can also describe a system that adopts religious language and practices but ultimately serves a non-religious purpose or agenda + + + for your information + + + the study of Ascomycota (sac fungi) + + + to be or become equal or even + + + act of taking + + + place where people live and interact, ranging from small villages to large cities + + + to shoot with bullets + + + to make available for other use + + + to illuminate + + + of or relating to zoogeography + + + search, seek like a scavenger + + + to form (vehicles) into a laager + + + to make camp + + + the formation of mountain ranges by tectonic processes, particularly large‐scale compression and intense upward displacement + + + Being abducted + + + fan into flame + + + to make small adjustments + + + become too old for + + + act or process of combatting corruption + + + automatically measure refraction + + + put money into an investment, again, automatically + + + unabashed, blunt + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + automobile decorated as a work of art + + + draw/test blood components + + + The act of to temporarily substituting one medicine with another + + + escape + + + The act of softening up by flattery, with an aim of getting something + + + the process of starting a computer + + + move a body part in a conical motion (e.g. windmilling the arms, rolling the eyes) + + + supervise, control, with a partner + + + change form together + + + change form together + + + co-occurrence of medical conditions + + + pour concrete over + + + not recommended or advised as a course of action + + + act or process of paying a pre-determined portion of a bill that is otherwise covered (usually by insurance) + + + development of ropelike structure in tissue often after surgery + + + fissure within a crevasse + + + formation of abnormal notching around the edge (of a cell, etc) due to water loss + + + to catch crabs (the crustacean) + + + quantity, object, or property intended to be measured + + + remove foam + + + decreasing oxygen saturation in hemoglobin + + + to remove wax + + + gummy candy in the shape of a worm + + + clear to auscultation + + + The act of marking with dimples, creating dimples in or becoming dimpled + + + forming or becoming covered by a crust, forming a crust + + + cause a harmful action + + + to open using a crowbar + + + compare one set of data against another + + + reduction, depletion + + + (cause to) become dried out via an electric current + + + The act of putting in a chain + + + spatial end portion of + + + remove + + + ooze + + + cleaning with string for healthy gums, cleaning between with string + + + emit light randomly + + + artilliary/gun battle + + + to form/consist of fibrous tissue + + + cause to become visible, find + + + to loosen, wear away + + + become like a fungus + + + to brief or inform fully + + + The act of becoming/covering with glacier + + + act or process of putting deep grooves or scratches into a surface + + + surf move + + + enumerate by hand + + + be a ham, overact + + + phrasal chop sloppily + + + cause to appear + + + surgical repair of hernia + + + move more quickly + + + surgery that creates a connection between two different parts of the ileum + + + surgery that creates a connection between the ileum and the rectum + + + The act of recording an image of (using mri, x-ray, cat scan, ultrasound, etc.) + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + mutation of cells resulting in a cell line that can keep undergoing division indefinitely + + + act or process of detecting the presence of a specific antigen by the use of antibodies + + + pain in the head + + + Being mixed together + + + diminished sense of taste + + + within the abdomen + + + produce a landslide + + + good or cool + + + having knees that + + + enter on a keyboard + + + regard with contempt + + + live to the end/completion + + + pulverization of kidney stones, gallstones, or similar + + + incorrectly assign a label or attribute + + + inaccurately assign a label or attribute + + + convert into or enrich with minerals + + + fire, lay off + + + make the characteristic noise of a cat, communicating like a cat + + + The act of typing incorrectly (on a keyboard/typewriter) + + + make or become opaque, becoming opaque + + + act or process of diminishing loudness (of a sound) + + + control to too great a degree + + + having multiple foci + + + forming into an outward pouch + + + outnumber, or exceed in manpower + + + act or process of inhibiting or decreasing normal activity of bone marrow, resulting in fewer red blood cells + + + inhibitive of normal bone marrow activity, resulting in fewer red blood cells + + + poorly thought out, unworkable, inept, worthless, faulty, uncool + + + to stay overnight + + + to send by overnight mail + + + greatly over-acted + + + affected by magic + + + incorporate a nitrosyl group into another molecule + + + split into periods, assign to a period + + + in the vicinity of the rectum (may or may not include the rectum) + + + having a normal head + + + slangily hip, fly, rad, dope + + + related to comedy + + + two out of a division of three + + + angry, irritable + + + having abnormally low blood cell count + + + removal of several organs, including: the head of the pancreas, the duodenum or part of the duodenum, the bile duct, the gallbladder, and sometimes other tissue + + + attach fatty acids to a membrane protein + + + The act of turning, rotating + + + weasel out + + + arrive on unknown shore, reach land from water + + + stick out, protrude + + + unload, remove stuff + + + to undo a ban + + + acquire a tubular shape + + + act or process of gathering into folds + + + to vomit + + + fiddle around with (phrasal) + + + to teach again + + + attach living tissue onto other living tissue, again + + + act or process of putting forth again + + + to apply a label again + + + act or process of working out terms of agreement again + + + act or process of performing surgery or operating again + + + to pretend not to know something + + + of measureless depth (i.e. cannot be measured with a fathom line) + + + to inch up, such as clothing that moves up the body as one moves + + + the act of vaccinating again + + + cook + + + build or repair a road + + + move on, or as if on, skates + + + encounter + + + causing growth of dense, fibrous tissue + + + alternate expression of sell; put on sale, put up for sale + + + board on sand, like snowboarding but on a sand dune + + + weighing scales + + + act or process of sowing, planting, inoculating, or funding (as with seeds) + + + develop specific antibodies as a result of infection or immunization + + + be very apparent + + + act of moving or diverting + + + spritz, spray, squirt + + + (cause to) be more intelligent, quick, and/or stylish + + + act of supporting with or as if with a splint + + + spraypaint on a surface + + + act of looking with eyes partly closed + + + act or process of recloning part of a previously-cloned DNA segment into a new vector + + + act or process of taking a smaller sample from a larger sample + + + to kill, cause death (used to evade online content filters) + + + to find again + + + act or process of cutting or dividing across (often transversely); using a transect or moving along a straight path that runs across + + + trade off, exchange + + + the number 8 + + + speakers/writers, or the speaker/writer and at least one other person + so we believe there should be a highway leading directly from this Department to every school house in Michigan + + + speaker(s)/writer(s) and the person(s) being addressed + + + speaker/writer alone + + + dish of seasoned, skewered and grilled meat, served with a sauce + + + able to do something + + + have the permit to do something + + + put into tins + + + fire (metphorical extension of 'throw away') + + + intended to belong to, or be used by, or be used in connection with + + + with the object or purpose of + + + to the benefit of + + + to a duration of + + + in favour of + + + away from the inside + + + unspecified group + + + color + + + under; closer to the ground than + + + relation of spatial context + She found it was tucked under the desk + + + relation of heirarchy, authority, or importance + While under the supervision of his mentor + + + Every person + + + metaphysics term designating all that exists + + + clothing for the legs and lower body + + + if + + + in the inner part, spatially; physically inside + + + only under the following condition + + + no person + + + infratentorial cancer located in the lower part of the brain, a type of primitive neuroectodermal tumor + + + up to a point in time + + + artificial word for a lung disease, longest English word published in a dictionary + + + clothing item worn when a human is swimming or near water + + + object used for cooking food + + + Regardless of the place in, at or to which. + Wherever you go, I’ll find you. + + + done without thinking, in a rigid manner + + + (exclamation intended to scare) + + + (utterance expressing disdain, dissatisfaction) + + + delete + + + part of RDF; used with RDF literals to represent values such as strings, numbers and dates. The datatype abstraction used in RDF is compatible with XML Schema + + + interrupting another + + + sadly + + + can not; am/is/are unable to + + + make pretty + + + dress + + + blow wind + + + absorb or draw off liquid + + + expressing relief + + + expressing glee, excitement + + + type of spring + + + indicating strong approval + + + approximately + + + expressing surprise + + + Used to indicate pleasure or delight. + Oh goody, ice cream! + + + geological formation + + + dwindle. (no particle) + + + pattern of bars or stripes intersecting at right angles against a background color, whether symmetric or not, whether woven or printed + + + in a quirky manner + + + indicates acknowledgment + + + expression of gratitude + + + to apply teeth to something + + + to interlock + + + with little drag from pushing through air + + + chemical used in agriculture, including pesticides, fungicides, herbicides, fertilizers, etc + + + a fuel that is produced through contemporary biological processes, as opposed to fossil fuel that was produced by prehistoric bio-geological processes + + + class of chemical compound + + + indicator of a biological state or condition + + + illegal bowling technique used to get a gritty batsman out by bowling at his body + + + motion picture film camera which also serves as a projector and printer + + + study of the chemical composition of matter in the universe and the processes that led to those compositions + + + the study of snow and ice + + + glaciology + + + the science of refrigeration + + + a non-binary person: someone who is outside or beyond the gender binary, not exclusively male or female + + + dating using tree rings + + + study of woody plants + + + organism-ecology relation + + + study of adaptation of an organism's physiology to environmental conditions + + + branch of physics + + + traditionally associated with a discovery + + + organized energy + + + type of organism + + + agricultural worker + + + conversion or trending towards packing into, or transport by means of, containers + + + relating to fluids + + + charity distributing food + + + form of ice cream + + + relating to internal motion of a planetary body + + + information about geography + + + underground water + + + person with excellent eyesight + + + contact for emergency assistance + + + process of growing tissue or organ in the wrong place + + + medical condition + + + having high body temperature + + + causing immersion + + + medical diagnostic technique + + + creation of immune response + + + to make a mistake while typing on a keyboard + + + link something to an incorrect category + + + between communities + + + between cultures + + + connecting regions + + + one that cannot be defeated + + + microscopic mechanical and chemical behavior + + + material with properties determined by structure rather than composition + + + very small mold to make microparticles + + + microscopic motor + + + relating to microsurgery + + + apply a monogram + + + material with nanoscale features + + + nervous system disease + + + study of genetics related to neurological disease + + + imaging of brain function + + + ocean region near shore + + + relating to an organic compound with a metal element + + + any person + + + the scientific study of bones, esp. human skeletal remains, found in archaeological sites; the branch of archaeology concerned with this + + + bone formation + + + study of parasites + + + support for a parliamentary system of government + + + relating to phonons + + + study of light on living organisms + + + medical branch dealing with tuberculosis + + + medical specialty + + + work with a prototype + + + a science concerned with the integration of psychological observations on behavior and the mind with neurological observations on the brain and nervous system + + + medical specialty dealing with mentally-caused illness + + + pertaining to quantum mechanics + + + recovering from loss in some fashion + + + space vehicle + + + team of salespeople + + + state of having survived (continued to live) + + + use the telnet protocol to access another computer + + + anonymous web surfing tool that attempts to make activity on the Internet untraceable + + + in an abbreviated manner + + + type of building + + + similar to, reminiscent of + + + branch of medicine concerned with venereal diseases + + + in terms of, or by means of, reproduction + + + absence of a gender identity + + + wire and pulley-based transportation system + + + adaptation again + + + event in which groups of software developers work at an accelerated pace + + + branch of anarchism + + + the study of aphasia including its linguistic, psychological, and neurological aspects + + + application of cybernetics in biology + + + imitation of biological structures by artificial means + + + type of berry + + + government by corporations or corporate interests + + + art + + + craftsman fashioning tools or works of art out of various metals + + + book or electronic device for visitors to leave a note + + + type of protein + + + bonding enzymes + + + protein + + + type of guitar shaped like a lyre + + + (of speech/tone) in a bitter/sharp manner + + + in an acquiescing manner + + + in an ambisexual manner + + + third to lastly, lastly but two + + + with upward/ascending motion + + + so as to be obligatory (in a binding manner) + + + so as to convey a challenge + + + in a manner pertaining to chalk or chalkiness + + + two days after today (2nd) + + + in a deathless manner + + + without fear/reverence, boldly/presumptuously + + + By filching; thievingly. + + + done in a manner that expresses clear and visual details + + + increasingly + + + in a welcoming manner + + + vitally/intensely/vividly (in a living manner, as if living) + + + incomparably/to an unequalled degree + + + immeasurably/infinitely + + + In an operose manner. + + + in a pansexual manner + + + fenologicznie + + + in the beginning + + + So as to prolong or lengthen. + + + in a manner that can be quoted + + + no matter what happens + + + unrefined, not overly processed or complicated + + + in a smokeless manner + + + in a way relating to being spiritual + + + duchowo + + + extremely hungrily (in a starving manner) + + + in a straining manner + + + appealingly/engagingly/pleasingly + + + imprecatively, in damnation + + + the aforementioned person or thing + + + in a thrilling manner + + + annoyingly/oppressively/tiresomely + + + in a virological manner + + + in a westward direction + + + not exposed to/affected by wind (in a windless manner) + + + person with no cognitive disabilities or mental illness + + + study of orchids + + + person who advocates pseudoscience + + + one who sanitizes + + + preparation designed to remove or kill micro-organisms + + + military use of cargo ships + + + type of enzyme + + + genus of viruses + + + class of enzymes + + + a partially divergent genome, particularly in viruses + + + natural polymers of high molecular weight secreted by microorganisms into their environment + + + use of sounds other than speech to convey information + + + route again + + + to imagine again or anew + + + of, relating to, characterized by, or concerned with transformation and especially linguistic transformation + + + tree diagram used to illustrate the arrangement of the clusters produced by hierarchical clustering + + + sequence of binary digits, such as 00110010 + + + cause to become dense + + + total of arrangements, activities, and inputs that people undertake in a certain land cover type + + + science that deals with the character, source, and mode of occurrence of underground water + + + against + + + class of short biopolymers + + + to make clean or neat; to put in good order + + + to make a person appear more youthful + + + resend + + + to render brute-like + + + vengeance, payback + + + To delete or forget the address of some entity. + + + to make fine + + + to adorn, deck + + + to fix or restore something that was previously destroyed + + + layer of plant life growing above the shrub layer and below the canopy + + + disease causing abnormally positioned eyelashes + + + science of the study of plants in relation to their use by humans + + + Human disease + + + presence of more than one medical condition in a patient that may contribute to clinical progression of the primary disorder + + + point at which a system rapidly changes its behavior + + + tool used in systems development + + + the process of inserting a stent to prevent closure + + + restoration of blood flow in an ischemic organ + + + responsiveness or reactivity that largely surpasses the normal magnitude + + + medical treatment + + + sword made from diamond + + + Who ever: an emphatic form of who. + Whoever thought up that stupid idea? + + + not presenting signs, indicating of + + + traditional Scottish dish + + + Idiosyncratic substitution of a word or phrase for a word or phrase that sounds similar + + + rice used to make rice pudding + + + having the same gender identity as assigned at birth + + + propensity for further evolution + + + is the clinical study of hormone fluctuations and their relationship to human behavior + + + condition in which an arterial spasm leads to vasoconstriction + + + any chemical compound having a ring composed of at least several atoms (usually minimum of 9–14 atoms) + + + the cellular lineage of a sexually-reproducing organism from which eggs and sperm are derived + + + the genetic material contained in this cellular lineage which can be passed to the next generation + + + increase a cellular response to a molecular stimulus + + + unchanging + + + substance composed of oligomer molecules + + + any projection from the cell body of a neuron + + + protein in influenza A virus + + + vacuole to which materials ingested by endocytosis are delivered. + + + process of converting a polymer into a monomer or a mixture of monomers + + + class of chemical compounds + + + the study of vaccines + + + graphic visual representations of information, data or knowledge intended to present information quickly and clearly + + + molecule or a portion of a molecule composed of amino-modified sugars + + + virtual perimeter for a real-world geographic area + + + type of biofeedback + + + superpartner of the gluon + + + brother + + + friend + + + fun; amusement + + + مربوط به درمیان‌یاخته + + + specific way in which players interact with a game + + + The act of cross-correlation of something (a signal?) with itself + + + gender-neutral term to refer to kids + + + numeral system + + + the appearance of being lightweight and light-footed while jumping + + + an explosive device planted just below the surface of the ground and designed to detonate when trigger by the weight of one walking on or driving over the device + + + salutation of Italian origin + + + sex or reproduction between two beings that share at least one genitor + + + concept that elevates heterosexuality over non-heterosexuality + + + container for making and serving coffee + + + writer + + + faithful and genuine love + + + kill by means of mounting on cross + + + If what follows is not possible; without. + A large proportion of the females employed in other firms are said to have signified their intention of going on strike, failing a settlement. + + + Facing, or across from. + There’s a bus stop opposite the faculty entrance, right on the other side of the road. + + + Behind; toward the stern relative to some other object or position; aft of. + The captain stood abaft the wheelhouse. + + + with the exception of + Nothing was to be sacrosanct or sacred, excepting reason itself. + We've all done it, not excepting Borja. + + + away from + + + Against; contrary or opposed to; in opposition or contrast to. + + + Under, below, beneath. + Underneath the water, all was calm. + We flew underneath the bridge. + We looked underneath the table. + + + In a straddling position on. + + + Including both of (used with and). + I (can) both sing and dance. + Both you and I are students. + + + Inasmuch as; in view of the fact that. + Seeing the boss wasn't around, we took it easy. + + + Despite the fact that; although. + Though it is risky, it is worth taking the chance. + Astute businessman though he was, my brother was capable of extreme recklessness. + Actual perpetrators though they were, the criminals never admitted it in court. + + + the same + + + An expression of sorrow or mourning. + + + Exclamation of surprise, pleasure or longing. + Boy, that was close! + Boy, that tastes good! + Boy, I wish I could go to Canada! + + + Non-vulgar interjection expressing annoyance, anxiety, etc.; sugar, darn. + Oh, crud! I'm gonna be late for work! + Aw, crud! I have to start all over again! + + + Indicating surprise at, or requesting confirmation of, some new information; to express skepticism. + A: He won the Nobel Prize yesterday. + B: Really? + A: You know, I saw Oliver the other day. + B: Really? What's he been up to? + + + Thanks. + Ta for the cup of tea. + + + intended to defend against air warfare + + + give honor to, having received honor + + + work song of sailors + + + upper limit of what a biological system can produce in terms of natural resources or absorb in terms of waste + + + Criminalized activity that violates the principles of environmental justice + + + word with the same root and a related meaning + + + augmentation of intelligence through the use of information technology + + + periodic change in the Sun's activity + + + preserved physical characteristics allowing reconstruction of past climatic conditions + + + Power produced with lower carbon dioxide emissions + + + removal of investment in companies involved in extracting fossil fuels to reduce climate change + + + current long-term trend for global sea levels to rise mainly in response to climate change + + + debt owed by developed countries to developing countries for the damage caused by their disproportionately large contributions to climate change + + + social movement for climate action + + + stratospheric phenomena of Earth + + + for a time-span of three years in a row + + + completely from the United States + + + exemplar of US values + + + interval immediately after a war + + + Chloropseidae, family of small passerine birds in South Asia and Southeast Asia + + + Lulus pemeriksaan. Memenuhi standar yang berlaku. + + + condition of lacking consent + + + shortening of 'nanoscale robot' + + + God willing (used mainly by Muslims or in Islamic contexts) + + + the theory or study of moral obligation + + + the doctrine that ethical status of an action lies in its adherence to a set of rules + + + the branch of physics that deals with objects on molecular or smaller scale + + + fan of the television series Star Trek and/or derivative Works + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + availability of ecological resources + + + availability of economic resources + + + measure of the number of individuals of a non-native species introduced into a given habitat + + + structural unit of an organism that assists it in reaching the next stage in its life cycle + + + literary technique + + + relating to prison + + + of or pertaining to ornithology + + + class of vertebrates + + + person who rejects COVID-19 sanitary measures + + + to mark and save a place (especially by using a bookmark) + + + fixing to + + + going to (do something) + + + to film a vlog (video blog) + + + an antisemitic person + + + substance used to accelerate a process or chemical reaction + + + competitive team shooting sport + + + a man's anus + + + attracted to females + + + reflecting or involving gender differences or stereotypical gender roles + + + having a gender identity + + + one who is not limited to a single gender identity + + + to revert a previous ban + + + of or relating to viverrids + + + one septillionth of a second + + + practice of pretending to fall for online scams for the purpose of wasting the time of the perpetrators + + + symbol that represents disagreement or dislike + + + number that cannot be reasonably predicted + + + Any longhorn beetle of the subfamily Cerambycinae + + + drunk + + + swimming at night + + + that is at a reduced cost but lower quality + + + utilizing the 5th generation standard of cellular mobile communications + + + parent of one's spouse + + + collective term for learning opportunities and learning methods which function on the Internet + + + a symbol used in Ancient Egyptian hieroglyphy + + + كَان + + + Any beetle of the superorder Coleopterida + + + to make steady + + + any beetle of the Pyrochroidae + + + Varanus flavescens + + + noval coronavirus + + + any of a variety of transportation systems relying on cables to pull vehicles along or lower them at a steady rate, or a vehicle on these systems + + + means of cable transport in which cabins, cars, gondolas or open chairs are hauled above the ground by means of one or more cables + + + any beetle in the family Lucanidae + + + any bacterium in the clade Terrabacteria + + + Anolis carolinensis + + + Spinus psaltria + + + Carduelis psaltria + + + erotic stimulation via contact between mouth and anus + + + دوا ساز + + + incest between twins + + + coal tar + + + a set of six numbers found on a cheque book, bank card, or bank letter showing which branch or office of a bank it relates to + + + office of a university that administers the accommodation buildings that are located within an uinversity and are intended to be used by students living on campus + + + show for the public where models wear new styles of clothes, usually organized by fashion designers to showcase their clothing + Carmelita had arranged to inspect her purchases by means of a private fashion show of carefully selected ​mannikins. + + + against conservative + + + clumsy, oafish, or socially awkward person + + + of a nature relating to things + + + concerned with actual things + + + interjection meaning "rubbish," "nonsense" + + + unexpectedly sharing an unsolicited personal trauma story + + + to want something very much + + + icon associated with a particular website + + + act of having become numb + + + elastic band + + + music that blends punk rock and rockabilly + + + group of eight children delivered together at the same birth + + + a group, series, or combination of eight related items + + + in music, a group of eight notes that are to be played or sung in the same time as six notes of equal value + + + a proponent or practitioner of brutalism + + + shitty, bad, very poor quality, worthless + + + any scarab beetle of the genus Glycosia + + + any beetle in the superfamily Scarabaeoidea + + + Japanese art of flower arrangement + + + mucilage secreting hair found on some plants, specifically winter buds + + + study of ants + + + relating to iron + + + containing iron + + + iron coloured + + + made up of blobs + + + covered with blobs + + + blob-like + + + job position that supervises the production of ad campaigns, and develop plans to increase sales for their clients' + + + sedimentary rock made up of fragments of preexisting rocks + + + person who actively promotes the idea that the Earth is flat + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + resembling a bun + + + a mammal in the family Hyaenidae + + + a member of the bird family Trochilidae + + + a bird in the family Anatidae + + + any owl in the family Strigidae + + + ruler, especially one of Iran, Turkey, or India + + + Notolabrus inscriptus, even when not green in color + + + to keep someone as a platonic friend, as opposed to a romantic relationship + + + having multiple flowers of different appearances + + + wearing a pigtail; always used before a noun + + + application of an electric shock in order to restore normal heartbeat + + + a tile used in mosaic + + + a small abacus or abaculus + + + border enclosing part or the entire pattern of a mosaic + + + a small tile + + + to estrange/alienate + + + to transfer ownership of property to someone else + + + court appeal + + + female baronet + + + of or related to the bird family Phasianidae + + + silent breaking of wind + + + of or relating to sideneck turtles in the family Chelidae + + + text produced for press + + + unnecessary interruption of a woman by a man + + + walking about for amusement, entertainment; promenading + + + entertainment, spectacle, public amusement + + + wealthy + + + peak protruding from surface ice sheet + + + to exercise caution + + + having an additional economic value + + + repetition of short phrases or prayers in Islam + + + equal in value to + + + deserving of + + + to commit suicide + + + (call to someone at a distance) + + + belly + + + (expression of excitement) + + + (expression of pride) + + + (expression of surprise) + + + (expression of irritation) + + + (expression of anger) + + + (expression of regret) + + + (expression of worry) + + + (expression of shock) + + + one subjected to a beating + + + branch of botany which deals with mosses; moss biology + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + branch of zoology that is concerned with the study of mites and ticks + + + the science of the therapeutic use of baths + + + branch of entomology dealing with bees + + + branch of entomology and paleontology that deals with fossil insects + + + branch of ichthyology and paleontology dealing with fossil fish + + + the study of mills and milling + + + branch of gerontology concerned with the biological processes involved in ageing + + + the study or practice of herbal medicine + + + the science of herbs or plants; botany. Obsolete. rare + + + material constituting textile fabrics + + + the type of something soft, rich, luxurious + + + children’s slide + + + that’s mine! I want a share! + + + illegal drugs + + + the study of musical instruments + + + the study of anatomical organs + + + the study of organs (the musical instrument) + + + the study of the ecology of plant communities + + + process of bringing something up to date + + + branch of anthropology primarily concerned with the comparative study of human evolution, variation, and classification especially through measurement and observation + + + directed towards, approaching, reaching + + + a round, low neckline on a woman's shirt or dress + + + person, human being + + + Māori woman or wife + + + male monarch who takes throne during childhood + + + a person who specializes in hair and scalp care and treatment of associated conditions (such as hair loss and thinning) + + + specialization within professional psychology concerned with using psychological principles to enhance and promote the positive growth, well-being, and mental health of individuals, families, groups, and the broader community + + + branch of herpetology dealing with snakes + + + the study of bats + + + branch of mammalogy dealing with the rodents + + + the study of marine mammals + + + the study of parts and the wholes they form + + + alleq + + + psychology conceived as the study of the individual act especially for meaning and intent + + + psychology concerned with the purposive factor or force in behavior + + + branch of psychology that deals with the effects of normal and pathological physiological processes on mental functioning + + + the psychology of races and peoples : folk psychology + + + any of a genus (Dasyurus) of small spotted carnivorous marsupials of Australia and New Guinea + + + deficiency in ability to pay attention or concentrate + + + branch of zoology that deals with spiders + + + a specialist in acridology + + + the science or theory of the good or goodness + + + the branch of geology that deals with the character and origin of soils, the occurrence of mineral fertilizers, and the behavior of underground water + + + branch of climatology concerned with the impact of climate on agriculture + + + the study of menstruation + + + the branch of neurology that studies epilepsy + + + the science of beer production + + + the study and collection of vehicle tax discs + + + the comparative study of the customs of nonliterate peoples + + + the study of the structure or function of the sensory organs + + + the branch of zoology dealing with arthropods + + + the branch of science that deals with the composition of meteorites + + + the science of geology as applied to extraterrestrial objects and other planets + + + little + + + (gender-neutral singular pronoun in all grammatical persons) + + + the scientific study of language change over time; historical linguistics + + + (archaic): linguistics + + + (archaic): nomenclature + + + the definition and explanation of terms in constructing a glossary + + + the study of the tongue and its diseases + + + the rheological properties of a biological substance + + + the branch of rheology that deals with biological substances + + + subfield of ethnobotany that studies historical uses and social impacts of fungi + + + the science that focuses on how to protect and restore biodiversity + + + the tissue structure of an organism or part, as revealed by microscopic study + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + sub-field within archaeology that uses sociocultural and archaeological research methods to understand how archaeological sites are created by living people + + + the scientific study of the bones of the horse; osteology of the horse + + + the study or science of humor + + + humorous speech, writing, or performance + + + the branch of botany which deals with aquatic plants + + + branch of zoology dealing with the mollusks + + + the art or practice of divination + + + intense fear or dislike of bees + + + intense fear or dislike of bees + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + perspirating, covered in sweat + + + the study of mites + + + that area of knowledge that deals with the structure, development, and function of the oral tissues, their interrelationships, and their relation to other organ systems in both health and disease + + + annoyed, unhappy + + + acting or thinking wildly, aggressively + + + in a difficult situation, under severe stress + + + drunk + + + unattractive, old-fashioned + + + performing superbly + + + craving an addictive drug + + + branch of psychology that deals with the psychology of language + + + a reductionist school of psychology that holds that the content of consciousness can be explained by the association and reassociation of irreducible sensory and perceptual elements + + + the science of mineral drugs + + + a form of technology that is less harmful to the environment than the usual or current form of technology + + + the branch of zoology that deals with malacostracans or (more generally) with crustaceans in general + + + the scientific study of the viscera + + + the study of the origins of things + + + government; the science of government + + + idle or vain speaking + + + the part of moral philosophy that deals with virtue, its nature, and how to attain it + + + general physiology + + + the study of oneself + + + the pseudoscientific study of bumps on the skull; phrenology + + + similarity, likeness + + + the science of diplomacy + + + the branch of herpetology dealing with lizards + + + the branch of zoology dealing with reptiles + + + the medical science concerned with diseases of the blood and related tissues + + + cartography + + + the study of manuscripts as cultural artifacts for historical purposes + + + one who is allegedly "owned" by special interests or political groups + + + refers to any kind of deliberate plan of action + + + when lawmakers send letters to government agencies in an attempt to direct money to projects in their home districts + + + the branch of physics which studies motion; kinematics + + + natural theology as illustrated by the study of stones + + + representing things by their pictures instead of by symbols + + + the study of the human mind by means of observation and experiment, rather than by deduction from general principles + + + branch of biology which treats of the development and behaviour of a living creature as affected by its environment + + + the branch of physics that deals with the properties and phenomena of light; optics + + + lore or learning relating to the dead or to the spirits of the dead + + + a system of mythology concerned with the creation of the world + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + an anthology of gnomes (collection of general maxims or precepts) + + + gnomic writing + + + technology whose use is intended to mitigate or reverse the effects of human activity on the environment + + + a theory of ethics dealing with or based on the relation of duty to pleasure + + + a branch of psychology that deals with pleasant and unpleasant states of consciousness and their relation to organic life + + + to use weasel words : equivocate + + + to escape from or evade a situation or obligation — often used with out + + + the branch of linguistics that deals with the phonemic constitution and the phonological representation of morphemes + + + theology based on myth; theology mixed with elements of popular myth + + + the use of the abundances of radioactive nuclear species and their radiogenic decay daughters to establish the finite age of the elements and the time scale for their formation + + + the study of the minute structure of organisms + + + not aroused + + + manufacturing technique in which parts having similarities in geometry, manufacturing process and/or functions are manufactured in one location using a small number of machines or processes + + + the study of idiom + + + the study or treatment of stammering + + + a branch of seismology that deals with the records of earthquake shocks registered in or near the region of disturbance + + + the branch of pathology concerned with diseases which are attributable to the effects of climate + + + a treatise on the art of assaying metallic substances, or on certain questions in obstetrics + + + the study of tests + + + the study of galvanism + + + study of fossil footprints and traces + + + the science or study of the interactions among the members of a species, and between them and their environment + + + the study and treatment of speech and language problems + + + the study or application of psychological methods and techniques useful in learning to speak a language + + + the study of the physiological systems involved in the production of speech + + + the branch of zoology which deals with zoophytes (any animal belonging to the (former) group Zoophyta, comprising certain sessile invertebrate animals, typically with a branching or radiating structure, such as crinoids, hydrozoans, sponges, and bryozoans) + + + the study of suggestion, a branch of parapsychology originated by a Bulgarian, Dr. Georgi Lozanov + + + branch of climatology + + + the observed geographic or temporal distribution of meteorological observations over a specified period of time + + + the ecology of freshwater ecosystems + + + the study of past human cultures with an emphasis on how humans interacted with the world's oceans, lakes and river systems + + + a form of performance poetry that combines elements of performance, writing, competition, and audience participation + + + the study of birds' nests + + + the scientific study of the structure and function of the placenta + + + physiology of the digestive system + + + a branch or system of theology in which God is regarded as a being, especially the supreme being + + + metaphysics; ontology + + + a study of social problems (such as crime or alcoholism) that views them as diseased conditions of the social organism + + + study of the physiology of lactation + + + the prime approach for explanation of world climates as integrations of atmospheric circulation and disturbances + + + branch of meteorology that deals with the description of the atmosphere as a whole and its various phenomena, without going into theory + + + the application of meteorological data and techniques to industrial, business, or commercial problems + + + the branch of learning that deals with the mind or thinking + + + the study of the spiritual or distinctively human aspects of humanity + + + (occasionally) a work on the mind or thinking (now historical) + + + the physics of the climate of Earth + + + designed or planned so that people with disabilities are not prevented from using something + + + without anything such as a tax or limit that prevents trade between countries or companies + + + that which is to come; in the future + + + technology applied to the modification of reproduction in humans and various other animals + + + the scientific study of marine-life habitats, populations, and interactions among organisms and the surrounding environment + + + prose, especially of a prolix, turgid, or impenetrable nature + + + the branch of zoology that deals with crustaceans + + + such that the natural homomorphism is an isomorphism + + + hypothetical iteration of the Internet as a single, universal, and immersive virtual world that is facilitated by the use of virtual reality and augmented reality headsets + + + fermented alcoholic beverage + + + subjective feeling of a decreased body temperature + + + technology designed with the needs of the largest amount of users in mind, in other words universal design + + + ideas and images which ascribe attributes to particular ethnic groups + + + what amount? + + + plant of which the root is used to kill, paralyse, or stupefy fish + + + small building in a garden + + + a small bedside table or stand + + + a certain amount of time + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + the aspect of pathology that deals with the geographical distribution of specific pathological conditions + + + the study of artifacts, features, sites, and site complexes within the broader spatial realms--both physical and meaningful--of past human experience + + + branch of sociology that studies institutions and social relationships within and largely controlled or affected by industry + + + the study of how weather impacts health + + + false Christology; an erroneous interpretation of the life and teachings of Christ + + + the study of spatial aspects of the archaeological record as a consequence of the activities of hominins at sites and in the landscape to understand, prioritize and integrate archaeological units into social and paleoenvironmental contexts and try to establish predictive models of territorial occupation + + + the branch of science dealing with statistics; the study or use of statistics + + + the science of elements + + + logic + + + the study of the principles of animal tissues + + + a system of therapeutics based on the study of the principles of animal tissues + + + a branch of biology that deals with the origin and development of acquired characters + + + possibly have, could have + + + branch of meteorology embracing the propagation of radio waves in the atmosphere and the use of such waves for the remote sensing of clouds, storms, precipitation, turbulence, winds, and various physical properties of the atmosphere + + + the study of the relationships between political, economic and social factors with environmental issues and changes + + + a discipline that combines microbiology, mathematics and statistics with the objective of creating models to describe and predict the growth or inactivation of microorganisms under a series of environmental conditions + + + that cannot be described + + + the macroscopic assessment of pathology specimens + + + part of science that deals with climate study based on the growth rings of trees + + + the science of tiroes + + + in quotations, used for Elementary knowledge + + + the branch of medical science concerned with venereal diseases + + + a type of communication that takes place over the Internet when a client initiates a transaction by requesting information from a server + + + the study of social dialects; the study of linguistic variation between social groups or classes + + + a system of interactions and actors that, together, create a sustainable and successful service or experience + + + to put a blast furnace in operation + + + be girthy, wide, dense + + + be capable of producing great force + + + that makes glad + + + to meet, assemble by prior arrangement + + + to plaster over with a cement made from shell-lime and sea sand + + + ski or pair of skis designed to skim water while wearer is towed by a motorboat + + + to make a eunuch of, castrate + + + to administer the rite of confirmation to + + + to act as a missionary, do missionary work + + + to put under oath + + + moving or inclining at an angle to that indicated by "zig" + + + marked with zones, rings, or bands of colour + + + to spray particulate matter with release of gas + + + to convert into albite feldspar + + + to impair perfection; to render imperfect + + + to weigh down too heavily, overload + + + to impair the regulation of a bodily process + + + to be in a state of suspension + + + to be on punitive leave + + + of or relating to aerobic exercise + + + of or relating to the heart; cardiovascular + + + cardiovascular exercise + + + scientific consideration of diseases arising from debility + + + the anatomy of the cormus + + + newsagent’s shop + + + to convert to a binary form by reference to a threshold value + + + method of tying fabric to dye colourful patterns into it + + + to show verbal disrespect + + + bean cake made of fried black-eyed pea flour + + + (in compounds, denoting liquid used in fragrances) + + + type of evergreen tree known for its fragrant flowers + + + a fruit juice made from rehydrated dried plums + + + to convert into rock, lithic material + + + a white glutinous edible mushroom (Armillaria mucida) that is a wound parasite on the beech + + + (of a mineral) having a small portion of a constituent element replaced by ferrous iron + + + sexual intercourse with a woman + + + a woman, or women, viewed as a source of sexual gratification + + + the human vulva + + + a brood or litter, especially of kittens + + + to order again; to purchase in advance + + + request before needed + + + clumsy, awkward + + + unwieldy; bulky or awkward + + + inept or thoughtless; boneheaded + + + organic compounds that readily evalorate + + + shaped like a sword + + + of or relating to the xiphoid process + + + the xiphoid process + + + lacking zest + + + alcheringa; dreamtime, everywhen + + + archetypal supernatural beings of the alcheringa + + + the practice of gesturing with one's cane or walking stick in order to convey a meaning + + + dish + + + taken apart, dismantled + + + someone who competes in the high jump + + + upward + + + instance of examination + + + act to grab + + + to capture, obtain, taking hold of + + + act to hint + + + that wilts + + + whinging, complaining + + + to look, feel, or act sullen or despondent + + + to be or become overcast + + + to loom up dimly + + + to make dark, murky, or somber : make gloomy + + + a toxic, yellow, water-insoluble powder, ZnCrO₄, used as a pigment + + + contriving, scheming + + + that has been estimated + + + act to laugh; instance of laughter + + + manner of speaking + + + engineering that deals with the application of design, construction, and maintenance principles and techniques to the ocean environment + + + gallbladder + + + description of skulls + + + a branch of knowledge the name of which ends in -ography + + + pertaining to a plant disease that causes a relatively constant amount of damage each year + + + emissivity + + + each of two or more populations of a species that can interbreed without a decline in fertility + + + superfix + + + variety of speech, language + + + mode of thought which considers things from a scientific viewpoint + + + city that is overdeveloped and economically non-productive + + + ester or salt of palmitic acid + + + rod of organic substance forming a supporting axis for the body of many flagellates + + + serving to warn or alarm (of colours, markings) + + + process of performing an amperometric titration + + + rope by which the buoy is fastened to anchor + + + a woman’s pigtail + + + relating to, or involving biorhythms + + + recurring cyclic variation as part of a biological system + + + trousers made of blue denim + + + collection of related media packaged and sold together in a box + + + one who writes an order for goods + + + type of passenger-carrying hydrofoil propelled by a jet engine + + + amount of money held in a bank account + + + vertically upward : in an upright position + + + the act of giving a racial character to someone or something : the process of categorizing, marginalizing, or regarding according to race : an act or instance of racializing + + + by violent means + + + under compulsion + + + change of place, position, or state + + + action of changing residence + + + putting forth strategic effort for a goal + + + impelled action + + + act or process of affecting emotionally + + + act or process of attacking + + + resembling an ogre + + + a work number assigned to a musical composition or set of compositions to indicate the order in which the composer published them + + + to give a pittance to; to provide with a (small) allowance. Chiefly in passive + + + two species of forest bird in the genus Callaeas which are endemic to New Zealand + + + a person who persistently pesters, annoys, or complains + + + small Andean stringed instrument of the lute family + + + an area which has been reseeded + + + coat worn for horseback riding + + + animal that yelps or gives a sharp shrill cry + + + within, towards the inner part + + + to go, march, step + + + to hang + + + to be truthful + + + repositioning of ureter to different location on bladder + + + cohesion of particles of solid material to form a compact mass or crust + + + process of fat infiltration + + + to furnish with timber + + + to set apart + + + to put out of existence + + + unusually comprehensive or wide-ranging legal injunction + + + to act coorperatively or in cooperation + + + to furnish or adorn with tassel(s) + + + to assist or supervise in using a toilet + + + use the toilet + + + to travel often and widely + + + to protrude through an abnormal body opening + + + to take luncheon; to eat lunch + + + to engage in log-rolling + + + poor, pathetic, innocent + + + to get in touch with me; to contact me + + + to perform a lobotomy on + + + perform a lobotomy on + + + to victimize again + + + fair and just relations between the individual and society + + + to make sensitive to ionizing radiation + + + to impose racial interpretation on + + + the egg of the ostrich + + + one-sided relationships, where one person extends emotional energy, interest and time, and the other party, the persona, is completely unaware of the other's existence + + + dark + + + decking or tricking out, personal adornment + + + chilled glass or can of beer + + + to make someone appear stupid; to make a fool out of + + + a garden (especially in an urban area) maintained by the members of a community + + + resembling a ghost + + + one who plays the kazoo + + + the action of spoiling; the stripping (a person) of his or her clothes or of his or her spoil; a stripping off or removal + + + a computing environment where technology is seamlessly integrated into everyday objects and environments, becoming virtually invisible yet omnipresent, enabling seamless interaction and communication + + + a firearm made by a private individual, in contrast to one produced by a corporate or government entity + + + a complex and utterly disordered and mismanaged situation : a muddled mess + + + figure skating especially in competition in which the skater executes skating figures or steps in an arrangement of his own devising to music of his own choice + + + an instance of recording information mechanically or electronically + + + act towards an entity in a certain manner, assumption that something has a particular attribute + + + act or process of treating medically + + + act or process of affecting a change in something by applying a substance + + + act or process of buying for someone + + + act or process of handling (especially scholarly) + + + under obligation to pay + + + to fix, tidy; to smarten up + + + relating to or resembling vampires; vampiric + + + a large South African sciaenid food fish + + + foolishness, stupidity; the action, speech, or behaviour of a nincompoop + + + characteristic of or resembling a nincompoop; foolish, simple-minded + + + a pair of stereoscopic pictures or a picture composed of two superposed stereoscopic images that gives a three-dimensional effect when viewed with a stereoscope or special spectacles + + + annoying, troublesome, disruptive + + + help, ease, get rid of, make feel better + + + pain in a phantom limb (or other phantom body part) + + + to classify again + + + Portuguese-speaking + + + act of serving as a host + + + work out terms of agreement + + + driving around in a vehicle + + + substitute + + + giving + + + to emerge during birth + + + to appear in a clinical setting + + + unsuccessful finish in a struggle + + + to recruit by headhunting + + + the quality of being noteworthy + + + where alleles (DNA markers) occur together more often than can be accounted for by chance because of their physical proximity on a chromosome + + + a rhombic vestment usually of stiff material worn by a bishop or certain other ecclesiastical dignitaries on the right hip as a sign of authority and rank + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + the presence of a pathogenic variant that is confined to the ovaries or testes, occurring when some of the sperm cells in the testes or some of the egg cells in the ovaries carry a pathogenic variant that is not found in other cells of the body + + + to suspect + + + teaching + + + take aim at + + + a topic-defined field largely pursued by psychologists studying the mass media in academic departments other than psychology; draws on cognitive psychology, social psychology, and developmental psychology + + + the process or result of an image appearing blocky or blurry, often because individual pixels become visible + + + nearly, almost + + + (archaeology) not producing, having, or including pottery + + + implementation + + + to cheat; to refuse to pay + + + a drug that lowers blood calcium + + + containing ice + + + one who determines sex, especially of animals + + + act of separation + + + to speak indiscretely; to blab + + + to systematically decrease the quality of an online platform driven by greed + + + fractional currency + + + money, funds + + + the state of being triploid + + + build up: cause to be bigger + + + leak, let forth water sparingly, letting water through accidentally or because of damage, let forth + + + begin, cause to begin + + + journal publically and electronically, online journaling + + + use, overuse + + + woman’s breast; booby + + + the application in the evolution of an alphabet of a pictorial symbol or hieroglyph for the name of an object to the initial sound alone of that name + + + the naming of a letter by a word whose initial sound is the same as that which the letter represents + + + arachnology, the branch of zoology that studies arachnids + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + to telephone + + + provide a basis for + + + a type of topology that is defined on a fiberwise space, which is a pair (X, f), where X is a topological space and f is a map from X to a base space B + + + stereotypically masculine individual working in technology + + + free-climbing a route, while lead climbing, after having practiced the route beforehand and pre-placed protection + + + the science of fire or heat; specifically the branch of chemistry concerned with the properties and (especially analytical) use of fire + + + the study of sphagnum mosses + + + the study of the relationship between the chemical structure of a compound and its biological action + + + a collection of subsets of a set ( X ) that includes the empty set, and is closed under any unions (even infinite ones) + + + person who shares accomodations; chambermate + + + any large lizard of the Old World + + + monitor lizard + + + one versed in zymology + + + a type of topology on a directed set where a subset is open if it contains all elements greater than some point — that is, it includes a "tail" of the set + + + a field of biology that combines the disciplines of evolutionary biology and developmental biology to study the relationship between evolution and developmental processes and mechanisms + + + the study of islands + + + a study of islands + + + a disingenuous or insufficient apology : a statement that is offered as an apology but that fails to express true regret or to take responsibility for having done or said something wrong + + + appertaining, accompanying, concomitant + + + to be or place in a resting position + + + recommend, send + + + state guilt or innocence, give a plea in court, misspelling of plead?, give an answer, reply to charges, usually in court + + + broken off suddenly/cut off/curtailed + + + undergone abruption (e.g. of a placenta) + + + a branch of clinical medicine concerned with human teratology + + + given a quotient map between two spaces, the quotient topology is the topology induced by this map on the codomain + + + a quasitopology on a set X is a function that associates to every compact Hausdorff space C a collection of mappings from C to X satisfying certain natural conditions + + + exclude + + + the part of anatomy which relates to the tendons + + + technical histology concerned especially with preparing and processing (as by sectioning, fixing, and staining) histological specimens + + + the influence of word structure (morphology) on the process of translating text from one language to another + + + act/process of disposing, tearing apart + + + act of making aware + + + the study of microscopic animals + + + act of throwing randomly perhaps underhand or casually + + + the study of literacy, reading, and related psychology disciplines + + + act/process of collecting together, often to merge resources (e.g. money) + + + to make people do what one wants by using (their emotions, fears, concerns, etc.) in an unfair way + + + in unfortunate circumstances/condition + + + the application of psychological methods and results to the solution of practical problems especially in industry + + + an application of technology for psychological purposes (as personal growth or behavior change) + + + systematic arrangement of synchronous events + + + the general principles, strategies, and practices used by teachers to facilitate learning in students + + + vocalize like a dog + + + act or process of appealing, attracting, indulging, placating + + + cause to reject + + + matching a speaker's lips to an audio recording + + + a branch of medical technology that is concerned with the design, preparation, and fitting of usually non-weight bearing, highly realistic prosthetic devices (as an artificial eye or finger) to individual specifications and with the study of the materials from which they are fabricated + + + the branch of pathology dealing with the microscopic study of changes that occur in tissues and cells during disease + + + of or pertaining to autosegments + + + of or pertaining to autosegmental phonology + + + movement within the museum field that emerged in the late 20th century, emphasizing community engagement, social responsibility, and a more inclusive approach to museum practice + + + technology that transmits radio frequency signals over electrical conductors like power lines; a method of sending audio or data using the existing electrical infrastructure of a building or area + + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information + + + the study of the abnormal or diseased structural changes in cells, tissues, and organs + + + Sophianism, a theology or system of thought based on divine wisdom + + + phrenology of dogs + + + the science of jawbones + + + the act of changing or altering the structure, style, or form of something + + + consider fully + + + crack up: cause hilarity, causing hilarity + + + crack up: go crazy, go crazy + + + act of becoming associated with + + + fill in, to complete + + + (cause to) become dizzy + + + act or process of collecting, accruing (phrasal variant) + + + misunderstanding + + + a style in art reflecting Japanese qualities or motifs + + + an object or decoration in japonaiserie style + + + head-covering worn to protect hairstyle + + + suppressing coughs + + + a period of emotional turmoil in middle age characterized especially by a strong desire for change + + + The act of making a 'whoop' sound. + + + beating + + + earn profits + + + act of firing, the termination of employment + + + bruise, causing to become or becoming bruised + + + select only the best + + + to be full of or afflicted by + + + grab quickly away from someone + + + activity of shining boots and shoes + + + to initiate a conversation + + + bring your own bottle + + + bring your own beer + + + bring your own booze + + + bring your own bud + + + shorthand for the hull-kernel topology; a standard topology used in commutative algebra and functional analysis, especially in the study of rings and operator algebras; the topology placed on the set of ideals of a ring (often prime ideals or primitive ideals) by relating two dual notions: the hull of a set of ideals = the set of elements common to all those ideals (an intersection), the kernel of a set of ring elements = the set of ideals containing those elements + + + physician specializing in urological problems affecting women + + + the act of divulging or publishing abroad + + + (as a term of endearment) a cute person; a cutie + + + act of causing motion, act of attempting to cause motion + + + a foodstuff (such as a fortified food or dietary supplement) that provides health benefits in addition to its basic nutritional value + + + any one of a group of alcohol-soluble proteins that function as storage proteins in maize kernels + + + a zebroid that is the offspring of a zebra stallion and a horse mare + + + one billion years + + + of, relating to, or capable of speed equal to or exceeding five times the speed of sound + + + a mass of ash or other loose, solid material which travels down the flanks of a volcano and along the ground during an eruption + + + marry again + + + fight + + + The process of joining in a subordinate manner, acting as a subordinate associate + + + act of moving people, troops, or goods by air (as in a war) + + + lacking kidneys; without functioning kidneys + + + to form or be formed of angles + + + seismically inactive + + + movement, interstellar + + + tendency to avoid + + + thoroughly punish, put in place + + + to hit, completive + + + to emit, spew + + + relating to or bringing about the settlement of an issue or the disposition of property + + + emotionally detached + + + not feeling interested or involved in something + + + the quality of being disengaged; freedom from ties, engagement, obligation, or prepossession + + + a generative linguistic theory that posits that word formation is a syntactic process, not a separate lexical one + + + a refinement of the standard cohomology groups of a manifold, particularly a compact Kähler manifold, defined as a specific subspace of the total cohomology and is central to Hodge theory and the Hard Lefschetz theorem + + + process of making cancerous + + + surgical incision into the abdomen + + + parenting + + + The act of making stone like through calcification literally or figuratively + + + to be cheated, get the short end of the stick + + + to grow more than one distinct cell type in a combined culture + + + imaging exam of the colon + + + growing of a blood vessel that serves the same end as another vessel that cannot adequately supply that organ + + + To be structural configured, esp. of atoms, animals + + + simultaneously transfect with two, unrelated nucleic acids, one of which carries a marker gene + + + scare + + + scare + + + meeting place of Buddhist monks + + + Buddhist monastery + + + Being decoded, deciphered + + + remove covering of a seed + + + process of removal from a locality + + + remove feather + + + act of living in or retiring to a den + + + remove gum + + + spicy sausage made of beef and lamb, and coloured with red peppers, originally made in the French colonies of North Africa + + + (cause to) lose color + + + remove tassel + + + currycel + + + mentalcel + + + decry, express low opinion of + + + introduce american currency + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + continue dreaming + + + inclined to brawl + + + characterized by brawls or brawling + + + for use in grading/digging/ground-shaping operations + + + of great significance + + + The act of listening surreptitiously + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + Being able to induce vomiting + + + characteristic of a paticularly whiny form of punk rock + + + The act of dispersing in an emulsion + + + remove a tube from + + + cause to create an abnormal passageway + + + intentionally touch, phrasal + + + in favor of, supporting + + + work independently on temporary contracts, working independently + + + pick by hand + + + insertion of a hand (or fist) into an orifice (for example, the vagina or anus) as part of sexual behavior + + + relating to or involving the sexual practice of inserting a hand into a partner's body + + + personal pronoun + + + inaccessible place + + + building containing trophies erected by Artemisia (fl. C4 BC) in Rhodes, closed to all but a select few + + + the act of causing to actually live forever + + + The act of causing to be eternally remembered, perhaps with veneration + + + heavy timbers forming the frame (typically left exposed, especially for decorative effect) of a house, wall, or storey, the gaps in between the timbers being filled with any of various materials such as bricks, wattle and daub, etc. + + + boarding added to a house to give a similar decorative effect + + + Shipbuilding. Each of a number of timbers in a ship's frame which do not cross the keel, but have their lower ends butted against the centreline timbers, typically used at the ends of the ship, and able to be arranged at angles other than a right angle to the keel. + + + Architecture. Each of the timbers used in constructing a half-timber building; (also) a timber used decoratively on a building to give the appearance of half-timber construction. Usually in plural + + + lose (blood) quickly + + + treat with heparin anticoagulant + + + Being linked to another thing or more things together + + + within the thorax + + + free; release from captivity, particularly with intent to harm another + + + communicate poorly, or failingly + + + communicate poorly, or failingly + + + to route incorrectly + + + printing text too small to be seen by the naked eye + + + small scale agglutination of red blood cells + + + match people together, usual romantically + + + bringing to market or open-market-style managment + + + of or relating to lysis or a lysin + + + stir up, confuse, completive + + + having only one form + + + act or process of mud, or mud-like material, and water flowing as a stream or river down a slope; mudspate; lahar + + + not tested + + + flood with too much + + + CAUSE a fit, such as in a complex model + + + coat to protect from corrosion + + + attacking with napalm + + + to oppose or deny + + + spray with mace (or similar) + + + in the vicinity of or relating to the portal vein + + + player of game in midfield position + + + organization + + + composition or writing of songs + + + experiencing partial paralysis + + + become a parasite to a host + + + to plug or cause blockage + + + zipcode + + + use the Yahoo search engine or website + + + spend the winter + + + beat + + + skype, video chat + + + not accomplished with difficulty + + + predict to be less than is true + + + set into type + + + ignore, pay no heed to + + + act of drinking or celebrating before an event or outing + + + make beforehand + + + state before another occurrence + + + to drain + + + the act or process of concentration into one location + + + inform again + + + ingest again + + + to enhance appearance (by landscaping) again + + + act or process of binding again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + hit with radiation again + + + emit or project, again + + + reassess the progression of a disease + + + check (for), examine (again), check for or examine, again + + + the act of resending again + + + splitting, developing a fissure + + + render into pieces + + + to defame, bring shame, or publicly disgrace + + + at a pace of about 120 steps per minute + + + to hold as one's own identity, regard oneself as belonging to a particular group + + + eccentric, idiosyncratic; erratic, random + + + cover with a shawl + + + act or process of ascension or descension + + + to leave quickly + + + to impale, as if on a spike or spindle + + + make a spoon-like formation (cuddle?) + + + begin to harangue + + + deflect an opponent using straight, stiff arms (maybe metaphorical) + + + to remove + + + to examine closely + + + to work remotely usually via computer + + + act or process of converting a greyscale image to a binary image + + + trail off: come to an end + + + deviating, diverting from a straight/right path (that swerves) + + + dance hall; venue for dancing + + + a person, referenced derisively; buffoon + + + a little, a small amount + + + cardinal number between 19 and 21 + + + what person + + + person or people that + It was a nice man who helped us. + + + which mode + + + the number 3 between two and four + + + single person, previously mentioned, of unknown or non-binary gender + + + group of people, animals, plants or objects previously mentioned + + + some people; someone + + + (first-person singular personal pronoun) speaker or writer of a sentence + That belongs to me, not you. + I am Ozymandias, King of Kings! + + + inanimate object or animal + + + child of unknown gender + + + referring to the situation in general + + + single, specific person + + + to be obligated + + + (word used with the present form of a verb to mark it as being an infinitive) + + + referring to a thing or things that exist + + + above, higher in altitude + + + more than a few + + + One more further, in addition to the quantity by then; a second or additional one, similar in likeness or in effect. + Yes, I'd like another slice of cake, thanks. + + + A word used to show agreement or acceptance. + + + affirmative option provided in a binary vote + + + Earlier than (in time). + I want this done before Monday. + + + spatial position in relation to two objects, on each side of the subject + + + Having been determined but not specified. + Certain people are good at running. + + + other, different + + + within the interior of something, closest to the center or to a specific point of reference + + + because + + + not including + + + person who is unrefined or unsophisticated + + + initiative to increase goat inclusion and awareness + + + device for cutting wood into small pieces + + + one of the longest single-word palindromes in the English language + + + Used in scholarly works to cite a reference at second hand + Jones apud Smith means that the original source is Jones, but that the author is relying on Smith for that reference. + + + according to the type and power of units + + + design something structural + + + to confine (usually in a small space) + + + using instruments + + + dig a hole + + + request for confirmation + + + offset of local time from UTC + + + earth region with a particular time standard + + + denoting thoughtfulness + + + Expression of awe, terror, surprise or astonishment + + + something belonging to + + + remain unsettled; wait + + + to send an SMS message from a mobile phone + + + to + + + relating to sound waves that have been electronically recorded, transmitted, or reproduced + + + dance + + + difference + + + genomic repeat analysis + + + to rouse or disturb someone + + + unpeg + + + the application of modern technology to agriculture + + + vegetable oil- or animal fat-based diesel fuel + + + study of chemical cycles of the earth that are either driven by or influence biological activity + + + one thousand million + + + type of government department in Imperial Russia, established in 1717 by Peter the Great + + + situation when futures prices are above the expected spot price at maturity + + + any bird in the family Corvidae + + + select art, food or other items for display + + + wind storm + + + burn from compression rather than a spark + + + northern region of US state + + + natural number + + + field of engineering + + + term in cell biology + + + relating to federalism + + + undergo fibrosis + + + The covalent attachment and further modification of carbohydrate residues to a substrate molecule. + + + chemical or geological term + + + study of gems + + + pertaining to geochemistry + + + branch of geology + + + interdisciplinary field + + + geographic information processing + + + swivel about a gimbal support + + + related to sugar in food + + + study of life in water + + + fluid mechanics of water + + + relating to high pressure + + + device that can be implanted + + + exchanging between different transportation modes + + + flat and thin + + + involving use of a laparoscope + + + brain disorder + + + saving lives + + + act involving rescue, resuscitation and first aid + + + symbiotic arrangement + + + study of metabolites + + + pertaining to microchemistry + + + miniaturized devices + + + having nanoscale structure + + + relating to naturopathy + + + relating to neurodegeneration + + + able to function without damaging anything + + + pertaining to oceanology + + + incorporating optical and electronic elements + + + initialism for "Laughing Out Loud" + + + travel excessively fast + + + physiology of disease causation + + + biochemical process + + + pertaining to the kinetic effects of light + + + study of creation and manipulation of photons + + + medical specialist + + + relating to a presbyter + + + medical specialty involving lungs + + + medical specialist in pulmonology + + + surgery using radiation + + + application of spectroscopy in chemistry + + + specialist in stomatology + + + line of fluid flow + + + under the sea + + + study of causes and other aspects of suicide + + + study of certain nonequilibrium systems + + + type of molecule + + + appealing to or stimulating the appetite + + + from within/the inside + + + in a manner that lasts (over a long period of time) + + + railroad track construction + + + transcending the personal + + + extremely low weight + + + receiving insufficient service + + + disconnect a latch + + + make new + + + using an item again after it has been used, instead of recycling or disposing + + + catholicos, high-ranking bishop + + + digital medium of exchange + + + person, usually a coffeehouse employee, who prepares and serves espresso-based coffee drinks + + + heraldic memorial to a deceased person + + + type of scientist + + + type of rice + + + type of house in Provence + + + historic fortified town in France + + + semiotics in a biological context + + + low quality diamond + + + data-driven chemistry research + + + person who contributed to founding an organization + + + type of guitar + + + animal adapted for running + + + organism that lives on the surface of another organism + + + promotion of the esoteric + + + printed interactive story + + + type of sauce or edible glaze + + + type of food item + + + subgenre of techno + + + rubble or broken bricks or stone used as a foundation + + + first-level administrative division in several countries + + + bond-breaking enzyme + + + cell undergoing a type of transformation + + + process of adding a methyl group + + + smallest type of automobile + + + main circuit board of a computing device + + + in an abrasive manner + + + in an abridged manner (briefly/concisely) + + + in an engrossing or riveting manner + + + in a manner of taking in/soaking up/etc. something + + + usually; generally; ordinarily; used for saying what usually happens + + + in accordance with expectations + + + 彆扭 + + + unsuccessfully/unprofitably/uselessly (without success/advantage) + + + without cause or reason + + + in a comfy way; comfortably + + + without comfort (in a comfortless manner) + + + in a conscienceless manner + + + with a creamy tint or surface; in a creamy or smooth manner + + + done in a manner that has loud and muffled sounds + + + in a dancing/capering manner + + + in a detailed way, in a way that goes through small aspects of a thing + + + in a dorky manner + + + in an envying manner + + + in a homeless manner + + + in an impolitic manner + + + with small changes over time + + + with secret machinations (in an intriguing manner) + + + gloomily + + + during the late hours of yesterday + + + with a boring delivery + + + in a lonesome manner + + + in a mistakable manner + + + with regard to a neuron or neurons + + + continuously/without interruption + + + having/expressing no passion/enthusiasm/excitement + + + following hospitalization, after one has been released from a hospital + + + in a pouring manner + + + in the manner of a psychopath + + + in a racist manner + + + in a seamless manner + + + arrangement of people or items to the side of one another, facing the same direction + + + without the ability of sight + + + extremely well + + + in a spineless manner + + + In a lively and vigorous way; sprightlily. + + + done in an elegant manner + + + with nothing on the upper body + + + in a triennial manner + + + mot pour mot + + + infectiously + Whether this mass of filth [wet house-refuse] be, zymotically, the cause of cholera, or whether it be (as cannot be questioned) a means of agricultural fertility, and therefore of national wealth, it must be removed. + + + type of psycho-active chemical + + + type of enzyme + + + range of radio frequencies + + + embedded kink in the trough / ridge pattern + + + largely empty region in a galaxy + + + type of capacitor + + + to solicit assistance from public + + + Latin phrase + + + create incentives for, motivate + + + professional who promotes, plan and writes new or existing policy regulations around politics + + + use of electronic communication for bullying or harassment + + + the microscopic examination of tissue in order to study and diagnose disease + + + in the middle of + + + site of an earthquake or a nuclear explosion + + + unable to see the big picture + + + A field of study involving the use of computer systems to perform statistical operations. + + + geometric object + + + equal + + + Indian or Pakistani dish + + + physical quantity + + + (horticulture) the art of raising plants at an earlier season than is normal, especially by using a hotbed + + + cardinal number + + + cardinal number + + + breeding different varieties + + + think about too much + + + protein + + + study of animal communication through signs + + + to make abnormal + + + to become abnormal + + + to turn into prose; to render unpoetic + + + examine closely or learn again + + + to make arid + + + to cut again; to cut a subsequent time/number of times + + + become a parasite to a host + + + less than ideal + + + a man explaining something to a woman unasked and in a condescending manner + + + act of giving the rights and/or possession of something to the person or institution in charge of its conservation + + + collection of blood and connective tissue outside the wall of a blood vessel or the heart + + + act or process of attaching a biotinyl residue + + + Protection mechanism used by plants under conditions of excess energy absorption as a consequence of the light reactions of photosynthesis. + + + person with enough information and competence to act as a source + + + recording and measuring variation in the volume of a part of the body + + + combination of the principles of supersymmetry and general relativity + + + single, closely packed layer of atoms, molecules, or cells. In some cases it is referred to as a self-assembled monolayer. Monolayers of layered crystals like graphene and molybdenum disulfide are generally called 2D materials + + + first step in the formation of either a new thermodynamic phase or a new structure via self-assembly or self-organization + + + the quality of being tremendous + + + Very large city with a total population in excess of ten million people + + + arrangement in which a woman carries and delivers a child for another couple or person + + + piece of DNA or RNA obtained by amplification or chain reactions (PCR, LCR) + + + forms of a protein produced from different genes, or from the same gene by alternative splicing + + + wetland terrain without forest cover, dominated by living, peat-forming plants + + + micron-sized bubble + + + class of modified proteins + + + class of enzymes + + + formation of muscular tissue, particularly during embryonic development + + + inject into a tissue or living cell + + + cell type that makes up cartilage + + + person who studies or applies neonatology + + + system that prevents Internet users from accessing webpage content without a paid subscription + + + breathe with difficulty + + + class of broad-spectrum antibiotics + + + device that compares two voltages or currents + + + mechanical component for transmitting torque and rotation + + + structure that uses a water wheel or turbine to drive a mechanical process + + + The act of making, digging a burrow + + + neopronoun + + + ancient coin of the Roman Republic and Empire + + + interjection used as an expression of surprise, fear, or astonishment + + + surface for nonpermanent markings + + + used to make a polite request + + + Used as an affirmative to an offer + + + an angry expression on a face + + + sequence in a video game that is not interactive, breaking up the gameplay + + + helping to commit a crime or do wrong in some way + + + Although, despite (it) being. + + + combination of two or more academic disciplines into one activity + + + pejorative term for a person expressing or promoting socially progressive views, including advocacy of feminism and civil rights + + + salutation used in the morning + + + dress in costume as a pop culture character + + + try too hard to do what another person wants, especially in a romantic relationship + + + take away funding + + + to share or reveal too much information + + + the act of causing something to happen by taking action, performing, or doing something + + + serve time (usually a sentence but could be an appointment) + + + nominal version of light verb + + + a child's chair with long legs, a footrest, and usually a feeding tray + + + restrain, delay + + + bubbling up under influence of heat; at boiling temperature + + + About, regarding, with reference to; used especially in letters, documents, emails and case law. + Re A (conjoined twins) [2000] EWCA Civ 254 + + + Without disrespect to. + + + Taking into account. + Considering the extent of his crimes, he was given a surprisingly short sentence. + + + Concerning, respecting. + + + Forth from; out of. + + + Different from; not in a like or similar manner. + The disgust I felt after watching last weekend's horror movie was unlike anything I had felt before. + + + toward the top + + + near + + + Without, except, but. + + + Among, in the middle of; amidst. + Mildred comes home from work early only to discover her husband, Robert, midst of a lewd affair with their neighbor, Gladys. + + + As soon as; when; after. + We'll get a move on once we find the damn car keys! + Once you have obtained the elven bow, return to the troll bridge and trade it for the sleeping potion. + Once he is married, he will be able to claim the inheritance. + + + When. + + + While on the contrary; although; whereas. + Where Susy has trouble coloring inside the lines, Johnny has already mastered shading. + + + Used to introduce a clause, phrase, verb infinitive, adverb or other non-noun complement forming an exception or qualification to something previously stated. + You look a bit like my sister, except (that) she has longer hair. + I never made fun of her except teasingly. + To survive, I did everything except steal. + Come any time except between ten and twelve. + + + to which + + + Relatively large but unspecified in number. + She's taking umpteen friends with her to the party. + + + Word called out by the victor when making a move that wins the game. + + + Used to express approval, joy or victory. + Lizzie has broken a world record, and she is now an Olympic medallist! – Hooray! + + + An expression showing that a requirement has been satisfied. + Keys? Check. Batteries? Check. We are all ready to go! + + + Used as a discourse marker. + “So, what have you been doing?” “Well, we went for a picnic; and then it started raining, so we came home early.” + “The car is broken.” “Well, we could walk to the movies instead.” + “I didn't like the music.” “Well, I thought it was good.” + I forgot to pack the tent! Well, I guess we’re sleeping under the stars tonight. + It was a bit... well, too loud. + + + An exclamation of respectful or reverent salutation, or, occasionally, of familiar greeting. + + + Indicates agreement with another speaker's previous statement. + "I am a great runner." "Indeed!" + + + Indicating disapproval, scoffery, irritation, impatience or disbelief. + Pshaw! I can't believe it! + + + An expression of disgust, rejection, or disappointment. + + + A radio procedure word meaning that the station is finished with its transmission and does not expect a response. + Destruction. Two T-72s destroyed. Three foot mobiles down. Out. + Welp, I got nothing else to say. Mikey out. + + + be quiet(er); stop talking or making noise, or make less noise + + + general interjection of confirmation, affirmation, and often disapproval. + + + Used to express surprise, shock or amazement. + My, what big teeth you have! + My, you’re a pretty one! + + + of, like, or pertaining to a dictator + + + field of machine learning + + + a faulty annotation + + + economic philosophy questioning growth + + + word which is not originally an acronym which is turned into one by creating a suitable phrase for it + + + type of climate model + + + digestive process in ruminants + + + power per unit area received from the Sun in the form of electromagnetic radiation + + + process of long-term carbon capture + + + assessment of relative vulnerability to climate change and its effects + + + term linking the climate crisis with environmental and social justice + + + salutation used at night + + + Greeting given upon someone's arrival + + + ellipsis of you're welcome + + + for identification to police + + + sequence of musical performances + + + pertaining to a period shortly after a war + + + previously undiagnosed medical or psychiatric conditions that are discovered unintentionally and during evaluation for a medical or psychiatric condition + + + "sub-region" or alternate superluminal travel depicted in science fiction + + + athletic event or race combining three sports, usually swimming, cycling, and running + + + A person adhering to one of several contemporary Pagan religious traditions + + + forum on Reddit + + + fail to ensure funding + + + quality of being out of place, inharmonious or not appropriate + + + an album produced in a studio + + + pastry + + + fart + + + when one is set to accept a challenge + + + when something is going ones way + + + response to sneezing + + + said about someone who controls a given area + + + ofay; usually derogatory term for a white person + + + sugared fried pastry + + + relating to the animals of a particular region, habitat, or geological period + + + preserve by freezing + + + a jar for holding water + + + document describing a nation's plan to mitigate climate change + + + ethological class; "escape traces," formed as a result of organisms' tunneling out during high sedimentation events + + + ethological class; traces of organisms left on the surface of soft sediment + + + A well in the form of a vertical hole constructed by boring + + + molecular allotrope of lithium known in the gas phase + + + fictional material in Star Trek + + + to have been fortified or reinforced using corundum + + + wireless connection + + + blue or green + + + horror-related legend or image that has been copy-and-pasted around the Internet + + + cisgender + + + someone who is cisgender and heterosexual + + + laughing my ass off + + + member of a crew + + + vaccinated + + + an actor who specializes in pornography + + + resembling the influenza disease + + + a colloquial or informal way to say goodbye or farewell + + + romantically attracted to two or more genders + + + attraction to women + + + of a person not limited to a single gender identity + + + one whose attraction to others is not limited by gender + + + mostly heterosexual but not completely + + + outdoor camping with amenities and comforts not typically had while camping + + + of or relating to elites or elitism, such as: giving special treatment and advantages to wealthy and powerful people + + + of or relating to elites or elitism, such as: regarding other people as inferior because they lack power, wealth, or status + + + at + + + an account's username on social media + + + a mention on social media + + + the at symbol + + + Any of four species of frog, all of whom make sounds similar to banjos; which live in southeastern Australia + + + drunk + + + drunk + + + drunk + + + a particular drug used to treat ADHD + + + unable to be found in a Google search + + + any beetle of the family Carabidae + + + a dish of rice, black-eyed peas, and bacon or pork + + + Sikh place of worship + + + act of sending sexually explicit messages between mobile phones + + + having a haunched back + + + process of raising a child + + + a hooded sweatshirt, jacket, or sweater + + + a European crow, Corvus corone cornix + + + the name of an insect + + + any fly of the family Phoridae + + + any lepidopteran of the family Hesperiidae + + + any insect of the clade Ditrysia + + + Cnemaspis karsticola + + + an Asian person, particularly one of a Pakistani and/or Punjabi background + + + male friend, accomplice, associate + + + a nut having an outer shell that becomes tough and dry and eventually splits open, as in the walnut and hickory + + + knife + + + type of n-gram where n is 5 + + + provide again + + + replenish with supplies + + + music genre + + + crime against property, involving the unlawful conversion of the ownership of property to one's own personal use and benefit + + + milk + + + to hit someone on the buttocks + + + children’s game + + + zebra or similar (notably equine) animal + + + a person who enjoys rain and rainy days, and who is fascinated by the sights, sounds, etc., of rain + + + a beetle of the suborder Adephaga + + + a non-lethal explosive which emits a large amount of light when detonated, temporarily blinding opponents + + + any tardigrade of the order Arthrotardigrada + + + light snack of bread, cheese, and beer eaten between meals + + + fabric with yarns tie-dyed before weaving + + + having a large penis + + + bread-like + + + a poster + + + relating to science fiction + + + someone against imperialism + + + money earned from the sale of oil + + + hybrid mandarin citrus variety + + + Correct, right + + + Japanese syllabary, mainly used for loan words and scientific terms + + + device repurposed for sexual use that was originated for an unrelated use + + + moons of moons + + + be very careful about ones actions or words + + + a rodent in the Muridae family (rats and mice) + + + rodent in the family Geomyidae (pocket gophers) + + + the number between 35 and 37 + + + the number between 20 and 22 + + + any bird of the family Troglodytidae + + + any ant in the family Formicidae + + + of, relating to, or resembling the ostrich + + + a member of the ostrich genus Struthio + + + any lizard of the family Gekkonidae + + + of or relating to the moth family Saturniidae + + + any moth in the family Crambidae + + + Any beetle in the family Buprestidae + + + Eucalyptus doratoxylon, a species of eucalyptus + + + abbreviation of 'chapter'/'church' + + + a member of the rodent family Castoridae + + + one who uses an abacus for calculation + + + type of fast moving cold weather front + + + of or relating to the mammal family Castoridae + + + implies affirmation + + + uninvite, rescind an invitation + + + any mammal in the family Tenrecidae + + + destroyed by bombing + + + forced to leave a place because of bombs + + + destroyed or severely damaged as if by bombing + + + extremely dilapidated or run-down + + + homeless through bombing + + + courtesy clerk at a supermarket + + + any salamander in the family Hynobiidae + + + of or relating to the marine mammal family Balaenopteridae + + + washing away of material by rain + + + type of briefcase + + + room in which bookings are arranged + + + wallet + + + (expressing affirmation, agreement, or admiration) + + + unnecessary interruption of a woman by a man + + + Inuit shaman + + + (first person plural reflexive pronoun) + + + impertinent; having chutzpah + + + one of two equal parts of + + + payment in kind + + + to request assistance + + + prior to a sporting season + + + Islamic creed declaring belief in monotheism and Muhammad's prophethood + + + Lesser Hajj + + + one who or that appears + + + one who formally appears (in court, etc.) + + + one who or that causes an event or occurence + + + branch of zoology that is concerned with the study of mites and ticks + + + the study of demons or evil spirits + + + belief in demons : a doctrine of evil spirits + + + a catalog of enemies + + + branch of entomology dealing with bees + + + branch of entomology concerned with Hymenoptera + + + scatology + + + pornography + + + branch of zoology dealing with copepods + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + branch of entomology that deals with Hemiptera (the true bugs) + + + study of the structure of cells + + + the study of extraterrestrial life forms + + + the study of the creation, synthesis, and manipulation of life systems + + + woven from flax + + + children’s game similar to hopscotch + + + flattened tin can used as a puck in children’s game of the same name + + + concerned, attentive + + + to make silent: deaden + + + seed of the orange fruit + + + child + + + the study of hair and scalp + + + animal pathology + + + science that deals with ferments and fermentation + + + branch of entomology that is concerned with the Neuroptera + + + geology of the ocean floor + + + the study of marine insects + + + branch of zoology concerned with worms + + + branch of zoology dealing with earthworms + + + branch of psychology that emerged during the 1950s as a response to psychoanalysis and behaviorism, that takes the approach that all people are inherently good + + + branch of psychology devoted to studying similarities and differences in cultures worldwide + + + field of psychology devoted to understanding the individual’s relationship with their community as well as how that community fits in with the larger society + + + area of psychology that centers on using psychological principles to understand consumer behavior + + + vital energy as an urge to purposive activity + + + psychoanalysis + + + a horny band or ribbon in mollusks other than bivalves that bears minute chitinous teeth on its dorsal surface and scrapes or tears off food and draws it into the mouth + + + that operates smoothly + + + triangular, with the apex at the base or pointing downward + + + soils that have a mollic horizon more than 20 cm deep and also concentrations of calcium compounds within 100 cm of the surface + + + ring-shaped Turkish bread roll + + + study of the relationship between the nervous and digestive systems + + + part of theology treating the doctrine of sin + + + scientist who studies volcanic phenomena + + + branch of meteorology that deals with rain + + + the study of the relationship between human beings and the natural world through ecological and psychological principles + + + the investigation or analysis of enigmas + + + branch of biology that deals with electrical phenomena in living organisms + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + ecology of all or part of a small community (such as a microhabitat or a housing development) + + + microbial ecology + + + the practice or study of predicting the participants in or outcomes of elimination tournaments or competitions especially in NCAA college basketball + + + the study of truth; that part of logic or philosophy which deals with the nature of truth + + + the study of algae + + + branch of zoology that deals with the amphibians + + + the science of colors + + + a wind out through a fjord + + + an examination of the bodily functions and condition of an individual + + + branch of zoology that deals with shells + + + honey (term of endearment) + + + the correlation in time of biological events using fossils + + + branch of sociology involved with comparison of the social processes between nation states, or across different types of society + + + branch of botany concerned with grasses + + + the study of how education and society influence each other + + + the study of substances that stimulate or increase menstrual flow + + + a treat on emmenagogology + + + the study of, or a treatise on, the plague or pestilential diseases + + + the scientific study of microseismic activity + + + the scientific study of mycoplasmas + + + specialist + + + the study of the institutional activities of religion (such as preaching, church administration, pastoral care, and liturgics) + + + the branch of psychology that deals with perception and the interpretation of sensory stimuli + + + the systematic study of phantasms or other illusions + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + a narrative of the miraculous deeds of a god or hero + + + the study of brambles + + + one who specializes in the study of brambles + + + a double reading or twofold interpretation (as of a biblical text) + + + the study of food + + + an interpretation of Christianity which promotes the liberation of black people from oppression, racism, and poverty + + + a psychology that emphasizes sensory experience as its object of study + + + the science or study of ferns + + + the science dealing with watercourses + + + the distribution of diseases in a geographical sense + + + the study of subterranean organisms and ecosystems + + + the study of flowers as related to their environment + + + an approach to biblical interpretation that appreciates the importance of the covenants for understanding the divine-human relationship and the unfolding of redemptive history in Scripture + + + theology illustrated or enforced by evidences of purpose in nature + + + branch of sociology dealing with the study of rural communities and the rural way of life + + + small-scale sociological analysis that studies the behavior of people in face-to-face social interactions and small groups to understand what they do, say, and think + + + the study of large-scale social systems, populations, and the broad social processes that affect them + + + the study of pathways + + + in neuroscience, the study of the interconnections of brain cells + + + the division of historical events, literature, artefacts, etc., into chronological periods + + + the study of the nervous system at the cellular (neuronal) level + + + the study of the embryology of the nervous system + + + microscopy + + + a treatise on odours + + + the study of odors + + + the study of the relationship between human beings and the climate + + + a branch of physiology that deals with secretion and secretory organs + + + the study of diseases of fish + + + J. Braid's name for: hypnotism + + + the study of snakes + + + the study of the living organisms, mainly microorganisms and microinvertebrates which live within the soil, and which are largely responsible for the decomposition processes vital to soil fertility + + + animal physiology + + + the field of study concerned with the relationship of extinct animals and animal fossils to geology + + + animal ecology + + + the art and science of healing + + + library support staff + + + the study of the physiology of blood + + + the study or use of omens; divination + + + plant physiology + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + the branch of biology concerned with congenital defects and abnormal formations of plants + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + the comparative study of inland waters as ecological systems that interact with their drainage basins and the atmosphere + + + space weather; the study of the meteorology of near-Earth space + + + the study of virginity + + + the study or practice of fishing + + + ichthyology + + + the serological study of the prevalence and distribution of a pathogen in a population + + + the science or study of toreutics + + + the application of legal requirements to measurements and measuring instruments + + + subfield of meteorology which deals with the weather and climate as well as the associated oceanographic conditions in marine, island, and coastal environments + + + the study of weather systems and processes at scales smaller than synoptic-scale systems but larger than microscale and storm-scale + + + the application of statistical correlation techniques to a series of meteorological observations + + + the study of the interaction between the sea and the atmosphere + + + branch of psychology applied to aspects of religious belief and behavior + + + the use of technology to assist human reproduction in the treatment of infertility + + + the study of poverty, begging, or unemployment + + + the art or practice of calculating or casting horoscopes + + + in mathematics, the étale cohomology groups of an algebraic variety or scheme are algebraic analogues of the usual cohomology groups with finite coefficients of a topological space, introduced by Grothendieck in order to prove the Weil conjectures + + + technology that avoids environmental damage at the source through use of materials, processes, or practices to eliminate or reduce the creation of pollutants or wastes + + + technology that automatically identifies and verifies the identity of an individual from a digital image or video frame + + + to make impervious to water vapor + + + (reflexive third-person singular impersonal pronoun) of its own self + + + would + + + after a certain amount of time + + + the speech of two + + + the study of streamflow hydrology and fluvial processes + + + sudden death from overwork + + + discipline within Christian theology that focuses on the study of the Holy Spirit + + + the study of spiritual beings or phenomena + + + state of being dysfunctional + + + the systematic study of folk tales, legends, and the like, esp. with regard to their origin and development + + + the branch of archaeology which deals with prehistory + + + the study of the bow in archery + + + hydrology of continental water masses + + + the sciences of oceanography, climatology, and biogeography regarded collectively (rare) + + + the geological, chemical, and other processes of the Earth regarded as interdependent and analogous to the physiological processes of a living organism + + + a holistic vision in which monetary reform, participative democracy, meaningful work, social justice, and equality are all of a piece with renewable energy, organic agriculture, protection of wildlife, recycling, and non-polluting technologies + + + list of woes; particularly long or tedious list of items + + + the branch of anatomy which treats of the fleshy parts of the body + + + a theory that a part of the animal body taken into the human system nourishes or affects a corresponding part + + + to litigate again + + + to have a difference in position regarding a decision + + + to be opposed or adverse to + + + to oppose the granting of a patent to a mining claim + + + inopportune circumstance + + + a woman’s period + + + day of a momentous event + + + instrument of the Western lute family with stopped courses considerably longer than those of a lute and with a separate nut and pegbox for a set of longer, unstopped bass strings + + + intersection of transphobia and misogyny + + + plumose + + + to bind by an oath or solemn engagement + + + to reduce to zero; to eliminate, remove, omit + + + to move or incline at an angle to that indicated by "zag" + + + to be the colour yellow, between orange and green on the visible light spectrum + + + of a geological structure or formation, to present the apparently younger side (in a specified direction) + + + (exclamation of pleasurable anticipation for the taste of food) + + + to force to walk with hands behind the back; to frogmarch + + + escort + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + to produce one or more amine groups + + + to strike out, hit + + + to cause to undergo a change of form, nature, or character + + + type of heavy coconut-milk-based stew prepared in the Caribbean; boil-up (in Belize), metagee (in Guyana) + + + to be experiencing shame + + + a discourse or treatise on cartilages + + + branch of anatomy concerned with cartilage + + + the entire body or colony of a compound animal + + + to flow in or into a canyon + + + to dig, grub about for something; to rumnage + + + to work out the pillars of abandoned claims + + + in gold mining, to undermine another’s digging + + + (of a man) to have penetrative sexual intercourse with + + + to bend a part of the body towards its dorsal surface + + + houseleek + + + of consitional allowance for the present + + + (used in borrowed French compounds) of + + + clumsiness, awkwardness, or gawkiness + + + a grumpy person who spoils the pleasure of others : killjoy, spoilsport + + + a mean-spirited, spiteful person + + + Australian aboriginal girl + + + traditional flooring of Japanese living rooms, but also temples, etc. + + + the study of the changes in flow properties that occur in certain fluids exposed to electric fields + + + person who is unwilling to settle for long in one place + + + a meal served to all guests at a stated hour and fixed price + + + a complete meal of several courses offered at a fixed price + + + a communal table for all the guests at a hotel or restaurant + + + that does, acts, performs + + + that intends; having intentions + + + that strangles + + + on account of; by reason of + + + to abandon a relationship + + + penis + + + act of giving thanks; expressing gratitude + + + inspecific name for various skin diseases + + + scab or the like formed from a skin disease + + + someone who soliloquizes + + + process of adding, deleting, or modifying genetic sequences in living cells to achieve biological engineering goals + + + a tropical freshwater fish (Paracheirodon innesi) of northern South American streams + + + a volatile poisonous pale yellow solid, OsO₄, with a pungent smell, used as an oxidizing agent and in solution to stain and fix biological material, especially lipids + + + writing or painting on or in wax + + + a quantitative description of the climate in a particular region or country; the branch of physical science which deals with this + + + examination of objects with the unaided eye + + + abnormally large handwriting + + + a diagnostic imaging technique that detects and records magnetic fields produced by electrical activity in the brain + + + a biography which gives particular emphasis to the psychological make-up or development of its subject + + + venography + + + the process of making a tracing made with a sphygmograph that records the pulse in a vein + + + anatomical description of the veins + + + the process or technique of obtaining salpingograms; visualization of a fallopian tube by radiography following injection of an opaque medium + + + description of symptoms + + + the description or study of the planet Jupiter + + + insecticide that is a stereo-isomer of dieldrin + + + a method of using pollinating insects to spread a substance that protects plants from pests and diseases + + + a pollinating insect that spreads a substance to control plant pests and diseases + + + characterized by three poles + + + adherent of transformational theory + + + phonological feature of an utterance other than the consonantal and vocalic components + + + language variety used by a particular social group or class + + + sound-producing part of an instrument + + + commodity to be or that has been exported again + + + articulated with the tongue raised towards the palate and its tip against the alveolar ridge + + + pertaining to features and relative position of mountains + + + instrument used to measure the adaptation of the eye + + + linguistic macro-system treating variants between dialects as part of a continuum + + + penetrometer + + + natural bed for oysters + + + light, loose-fitting shirt worn by men in hot climates + + + permitted, authorized; not forbidden + + + sanctified; religiously or morally permissible + + + a unit of computing information that is represented by a state of an atom or elementary particle (such as the spin) and can store multiple values at once due to the principles of quantum mechanics + + + the smallest unit of information in a quantum computer, existing in a superposition of two states (1 and 0), and settling on one state or the other only when a measurement of the state is made in order to retrieve the output of the computation + + + type of mineral + + + an ancient Greek and Roman stringed musical instrument similar to the lyre + + + a woodwind instrument of the 16th and 17th centuries, typically curved, with finger holes and a cup-shaped mouthpiece + + + belonging to, or relating to an inner-city neighbourhood + + + faithful or in tune with the culture of an inner-city neighbourhood + + + to travel or move by foot; to walk or run + + + small bowl or container + + + small pick-up truck or ute + + + formation of barm on a fermenting liquor + + + accruing of interest upon money + + + fine, grand, smart or attractive + + + good, great, excellent + + + lovely, sweet + + + sportsperson taking part in judo competitions + + + to free from schackle or fetter + + + to undo sewing of + + + to exclude (a person) with coldness and disregard + + + to make cancerous, affect with cancer + + + fourteenth century + + + to make or render artificial + + + to add over and above + + + to convert by contraposition + + + beatify + + + to overlook; to have a view of + + + to give name based on + + + to be distinct, clearly visible + + + to gain access to or acquire more detailed information + + + study of the ecology of mountains and alpine areas + + + to experience discomfort + + + to be embarrassed, ashamed + + + shaping of flint by chipping away at it + + + a visual representation of kinship relations + + + to confirm a girl in the Jewish faith at a bat mitzvah + + + to feed baby milk from a bottle + + + the eating habits and culinary practices of a people, region, or historical period + + + an economic system or activity that prioritizes gaining status and honor over the accumulation of money or material wealth + + + the destruction of a cultural or ethnic group through the subversion or eradication of its key social institutions, fabric of beliefs, and/or resource base + + + the concentration within applied anthropology that focuses on the application of anthropological research and findings to projects in community and international development + + + a person who makes, or seeks to make, proselytes or converts; (in extended use) an advocate or proponent of something + + + a literary, dramatic or cinematic work whose story precedes that of a previous work, by focusing on events that occur before the original narrative + + + any of a family (Dicruridae) of insectivorous passerine birds native to Africa, Asia, and Australia that usually have glossy black plumage and long forked tails + + + Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + + (slang) wildly excited or intoxicated + + + to set or adorn with, or as with, ouches; to spangle; to set like a jewel. Usually in past participle + + + a maker of ouches, buckles, or brooches + + + to pack closely, as sardines in a tin; to crowd, cram, press tightly + + + of or tending to procreation; procreative + + + churlish quality or state; rudeness, roughness, sullenness, harshness, miserliness + + + an event occurring every four years + + + nothing, not anything + + + zero; nil + + + coated or lined with porcelain or porcelain enamel + + + the quality or condition of being duplicitous; duplicity + + + to make a sound like that of a kazoo + + + extremely intoxicated by a drug + + + resembling a sponge in appearance or texture; spongy + + + ubiquitous + + + to cut to a steep face, to slope; also to scarp away, down + + + the gateway of a temple in southern India; often : the massive tower resembling a pyramid above the gateway + + + a firearm that is not registered or trackable; especially one that has been assembled or manufactured by the owner, particularly using 3D printing + + + not sewn + + + the act or habit of reading voraciously + + + to one another; one to the other + + + pertaining to gorgonian corals + + + that agrees; conceding or concurring + + + indicted, alleged, charged, arraigned, imputed + + + a jump in figure skating in which the skater, moving backwards, takes off from the back outer edge of one skate, makes at least one full spin in the air, and lands on the back outer edge of the same skate + + + despite, for, notwithstanding + + + Middle Eastern wheat and milk dessert dish + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + vegetarian + + + a glacial epoch or period + + + (with plural reference) your + + + not constrainable + + + base, filthy, worthless + + + not politic, expedient, or judicious; unwise + + + a type of Italian dry-cured pork salami + + + one who exaggerates or talks nonsense, especially to bluff or impress + + + the wife of a dauphin + + + act of creation + + + distortion or malformation of the fingernails and toenails + + + paying close attention to + + + deal with something + + + answer, pay attention to + + + put an address on, or speak to + + + challenge, nom/nomadj-challenging + + + provide money for + + + (architecture) having windows or windowlike openings + + + (biology) having fenestrae + + + the practice of staying in youth hostels when traveling + + + to stay at hostels overnight in the course of traveling + + + person, thing, or group that has been isolated, as by geographic, ecologic, or social barriers + + + an individual, population, strain, or culture obtained by or resulting from selection or separation + + + a language isolate + + + a preparation (such as a lotion or cream) applied to the skin or hair to prevent or relieve dryness + + + a heritable change that does not affect the DNA sequence but results in a change in gene expression + + + related to an exon + + + act or process of giving an answer, reply + + + continuing in a place + + + of or relating to agoge or agogics especially to variations in tempo within a piece or movement + + + the top half of a newspaper, visible when folded in a vendor's rack + + + throw, sending through the air, manually, projection of an object through space + + + a process in which a phenomenon is the result of multiple factors + + + having a strong position on something + + + having particular leg-positioning, when standing + + + the game of jacks; dibs, dabstones + + + using a mass spectrometer to analyze substances + + + discrimination against non-binary gender persons + + + resembling or typical of a punk + + + a synthetic mixed opioid agonist-antagonist with analgesic properties + + + have a tendency, drift + + + the position or relation of a colleague; companionship in office, etc. + + + a person who or (occasionally) thing which placates someone + + + a large edible mushroom (Boletus edulis) widely distributed in woodlands, having a thick rounded brown cap + + + to verbally abuse and emotionally manipulate someone, to give a back-handed compliment + + + to give negative feedback + + + express unfavorable sentiment about + + + to (cause to) lose moisture, desiccate + + + along + + + utterance of ‘ooh’ + + + an organism or cell having three complete sets of chromosomes + + + get together with + + + prognosticate + + + deceive, cause to believe a fabrication + + + cause to be frozen, very cold weather condition + + + you, all of you + + + you and people of your kind + + + make seem greater + + + branch of archaeology that focuses on involving local communities in the process of archaeological research, from planning and excavation to interpretation and presentation + + + a homology theory that uses pairs of cells instead of single cells, as in classical homology + + + the science concerned with the desert and its phenomena + + + the study of the physiology of muscles + + + the scientific study of the interaction between meteorology and hydrology + + + branch of theology dealing with faith + + + the science and study of the weather and its phenomena + + + (expressing compliance with an order) + + + act or process of using up; exhausting + + + the science of the physical properties of blood flow in the circulatory system + + + branch of theology that deals with the doctrinal differences of churches as found in creeds + + + the branch of psychology that studies the philosophical issues relevant to the discipline and the philosophical assumptions that underlie its theories and methods + + + to mark the skin with permanent colors and patterns + + + a branch of theology concerned with summarizing the doctrinal traditions of a religion (such as Christianity) especially with a view to relating the traditions convincingly to the religion's present-day setting + + + humbled/humiliated/degraded + + + process of making a false duplicate + + + act/process of intervening, acting as a replacement + + + needless bustle or excitement + + + fulfill + + + the science and engineering applied to meat production, processing, and preservation + + + having or relating to increased loudness or greatness + + + be in or send to (the) hospital, under care in the hospital + + + a medical doctor who specializes in diagnosing diseases by examining tissues and cells under a microscope + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + act of sneaking, hanging around in dark places + + + to enter (something) again + + + [slang] to scapegoat, unjustly blame (and punish) someone + + + visit, make use of + + + phrasal aspectual + + + a gene editing technique used to insert a specific DNA sequence into a target organism's genome, often at a precise location + + + the study of crystals and crystallization; crystallography + + + algology: the medical specialty concerned with the study and treatment of pain + + + a system of beliefs that explains natural phenomena through myths and stories involving supernatural beings or forces + + + act or process of damaging, destroying, or removing + + + a philosophical approach that shifts the focus of epistemology from a priori reasoning to empirical investigation, particularly by drawing on insights from the natural sciences + + + relating to, or employing a single system + + + a theoretical framework in linguistics that proposes that phonological features, like tone or vowel harmony, are represented on separate tiers (or levels) and can be independently manipulated and associated with segments (like vowels and consonants) + + + to the political, social, and cultural beliefs and values that migrants hold, and how these beliefs intersect with the ideologies of their host societies + + + the process to become extinct + + + the study of or a discourse or treatise on spasms + + + the study of species of organisms + + + (cause to) experience stress (phrasal) + + + the whirlpool effect of the media in relation to a particular major issue or event + + + remove, removing using water + + + turn red + + + act or process of eating small amounts of food between meals (snacks) + + + act or process of traveling by bicycle + + + sticky; overly obsessive, needy + + + to produce a new master recording to improve quality + + + die, expire, dead + + + a small traditional brightly painted wooden fishing boat used in the Ionian and Aegean seas + + + a light skiff used on the Bosporus + + + a Levantine sailing vessel + + + a diseased state : an abnormal condition + + + The act of placing in a group + + + bruise, causing to become or becoming bruised + + + cause inconvenience or discomfort + + + run_down: wear out, tire + + + "read up (on):" to study thoroughly or become familiar with by reading + + + fill with contaminants + + + fight constantly, fight!, long-standing fighting + + + constipated + + + tending to stifle enthusiasm, initiative, or freedom of action + + + class of bornology + + + the study of ghosts and related paranormal phenomena + + + the study of fungi producing cleistothecia (closed fruiting bodies) + + + the study of past human-plant interactions through the recovery and analysis of ancient plant remains + + + arm_up + + + act of using a vacuum + + + the principle of association by which people act in collective, self-organized ways in organizing their cultural life + + + the action or practice of performing a pole vault, especially as a competitor in an athletic event + + + to cut grass or grain + + + to leave stranded, left high and dry + + + remove the acetyl group from a compound + + + disgraceful, infamous + + + up again + + + process of becoming dead (as a group) bit by bit + + + an adjustable airplane seat that can be made fully reclining + + + take pleasure in + + + relating to or affected with dropsy + + + give a job to one who has been furloughed + + + to claim (as territory) + + + to preside over as a chairperson with another + + + process of fusion or stiffening by ankylosis + + + To set the angle of the planets (used in astrology) + + + The act of automatically calculating the amount of a constituent in a solution + + + being in a crossed position + + + involuntary urination while asleep + + + subject to the Bechdel test + + + to hit, completive + + + flexible + + + The process of formation of minerals via microorganisms + + + act or process of forging metal (especially iron) by hand + + + a lazy person + + + an uninformed, unsophisticated, immature person + + + a general term of abuse + + + the classification of names based on their characteristics, such as sound structure (phonology), form (morphology), grammatical function (syntax), and meaning (semantics) + + + the science and technology of handling and processing particles and powders + + + move in a small, fast increment + + + adapted to, or thriving in, a very dry or desert-like environment; capable of growing and reproducing in conditions with a low availability of water + + + referring to structures, organs, or parts related to the abdomen + + + natural disaster: wildfire in brush + + + The act of being filled + + + swelling outward; protruding + + + charge off: emit hastily(?) + + + of or pertaining to the physiological rumbling or gurgling sound from the movement of gas and fluid in the intestines + + + an abnormal narrowing or stricture of a blood vessel or other organ + + + cover completely + + + emboider with worsted yarn + + + scare + + + to create quickly and sloppily + + + performing a cone biopsy + + + restrained, lessened, (of vibrating) ceased + + + lose muscle tone or fitness, becoming less adapted to + + + The act of causing to become unclogged + + + un-install + + + remove lint + + + remove a methyl group from a chemical compound + + + able to be reshaped + + + to fart + + + to dance in an energetic manner + + + escortcel + + + gaycel + + + The act of releasing, releasing from a location (not stuff being released itself) + + + compare one set of data against another + + + medical imaging procedure using X-rays to produce cross-sectional images + + + modulate to a lower level + + + acting like a douche bag (jerk) + + + fly, hip, rad + + + pulling of a sled by dogs + + + looking after a pet dog + + + retail practice of sending items from a manufacturer to customer, ship directly from wholesaler to customer + + + bubbling, surging, or flowing of water + + + gather, pool up (non-phrasal version of 'well_up'); upward motion of water, or as if of water, perhaps from a spring + + + expression of consent + + + expression of thoughtfulness + + + expression of disagreement + + + no + + + expression of disgust + + + cause to have feminine qualities + + + turning inside out + + + to make or become even + + + remove a tube from + + + masturbate + + + seen using a funduscope (eye exam) + + + to keep an aircraft in a hangar + + + form a dimer from two different monomers + + + becoming gray + + + suffering the residual effects of too much alcohol + + + the act of attending school at home + + + The act of searching for a new home + + + book produced prior to 1501, at the dawn of printing in Europe + + + involving the ileum and the cecum + + + cause to weaken or endanger the immune system + + + understand basic information regarding a subject + + + make or become harder, hardened + + + act or process of transferring genetic material into another individual + + + act or process of transferring genetic material reproductively, usually of a hybrid back into one of the originating species by back-breeding + + + act or process of transferring genetic material non-reproductively, usually by horizontal gene transfer + + + connective tissue between myotomes in fish flesh + + + child of a person’s paternal uncle + + + child of a person’s brother + + + a procedure in which all or part of the rectum is removed via entry through the abdomen + + + use or employ + + + act or process of arranging in layers + + + put firmly + + + faint earth tremor, caused by water waves in oceans/lakes + + + become stone-like (but so small the naked eye cannot see) + + + occurring at different times (contrasts with recurrence: a metachronous cancer is a new, different cancer, not a recurrence of the prior cancer) + + + bringing to market or open-market-style managment + + + surgical removal of lymph nodes + + + having one stage + + + hunt a species or area to the point of damaging the herd + + + marked by or containing untrue statements : false + + + of a person, his or her lips, etc.: That tells lies + + + not belonging to a particular area + + + benign, not causing alarm + + + concert hall or theatre + + + Convert light energy into chemical energy + + + utterance of French word of negation + + + writing a play + + + make very very dry + + + use motorized transport to sail through the air via parachute or other airdrag/airgliding tool + + + (cause to) move in \/\/\/ fashion + + + torture by simulated drowning + + + separate with walls + + + wait out: endure, outlast, enduring, lasting + + + adhering to a strick no meat/no animal byproduct diet + + + not valued highly enough + + + acquire a tubular shape + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + act of official registration in advance + + + to test in advance + + + the act of reading (copy or printer's proofs) to detect and mark errors to be corrected + + + removal of all or part of the rectum + + + to gather lips into folds (as if to kiss) + + + to inflate, literally or figuratively (as with air, value, or excitement) + + + the act or practice of recording important information for future reference + + + to discuss or argue about again + + + charge with a crime again + + + the act or process of re-introducing or re-admitting + + + engrave again + + + to put into, between, or among again + + + to break a law or rule again, often after punishment or treatment; to recidivise + + + able to be removed surgically + + + the making of photocopies + + + not yet be determined or known + + + vaccinating again + + + act of causing to be in a coil + + + to approve without giving it much thought + + + cut with a saw + + + the process of forming a protective crust or cover + + + the formation of lasting signs of damage + + + to (idiomatically) die + + + to inform or provide information; to help to understand + + + act or process of removing in flaky chunks + + + to cause a narrowing or constriction of the diameter of a bodily passage or orifice + + + act or process of saturating partially or incompletely + + + incompletely saturated, not saturated enough + + + having four homologous sets of chromosomes + + + fill up completely when only partially empty + + + able to be treated (especially medically) + + + staff car + + + the number between four and six + The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + + the number 11 + + + perhaps, possibly + + + permitted to + + + Used before a verb to indicate the simple future tense in the first person singular or plural. + I shall sing in the choir tomorrow. + I hope that we shall win the game. + + + used to indicate source/origin + + + used to indicate starting point, temporally or spatially + A history of public transportation in Kansas City, from cable cars to buses and beyond + + + to bring palm of hand to one’s face in ostentatious expression of dismay + + + the whole amount, quantity, or extent of + + + every member or individual component of + + + any (whatever) + + + nothing but; only + + + conditional conjunction + + + for the reason that; the fact that + + + over; higher than; further away from the ground than + + + By the length of; in a line with the length of; lengthwise next to. + Water whished along the boat as we rowed upstream. + + + on the other side of, further + + + all, each + + + not any of a group + + + in the middle of + + + in the near future + + + various + + + Yes. + —You wanna get pizza for dinner? —Yeah, all right. + + + (informal) of quality that is pleasing to human senses + + + competence to make a personal and professional development largely independent of external influences + + + greeting used when meeting someone + + + on top of + + + semi-friendly term of address (for male person) + + + to add to, lengthen + + + to get/move/remove with great effort + + + final, ultimate, coming after all others of its kind + + + chemical element with atomic number 112 + + + chemical element with the atomic number of 116 + + + expressing a desire for something to depart + + + goodbye, likely for a long time + + + cigar filled with cannabis + + + date according to fictional time measurement system in Star Trek + + + abnormal sound generated by turbulent flow of blood in an artery + + + inject liquid to force an opening for extraction of oil or gas. + + + irregular surface approximating the mean sea level + + + piece of media that has been edited and re-released + + + connected, bridgeless cubic graph with chromatic index equal to 4 + + + expression of gratitude + + + two + But the warm twilight round us twain will never rise again. + Bring me these twain cups of wine and water, and let us drink from the one we feel more befitting of this day. + + + expression of great pleasure + + + land use management system in which trees or shrubs are grown around or among crops or pastureland + + + political movement that developed in 19th-century Britain in opposition to disestablishmentarianism + + + discovery, interpretation, and communication of meaningful patterns in data + + + to connect by means of an interface + + + the use of biological molecules, structures, or processes in computing or information processing applications + + + any substance that has been engineered to interact with biological systems for a medical purpose + + + those portions of Earth's surface where water is in solid form + + + study of skin diseases + + + neurological disorder + + + the science that studies how water in all its forms links living organisms and their abiotic environment to define their function, interactions, structure, and distribution + + + natural number + + + natural number + + + science of innovation + + + state of being an entrepreneur + + + engaged in extracting + + + structural feature of Earth's geography + Crustal methods for studying geostructure are most interesting, but their discussion, if adequate, would be too lengthy to be included in this paper. + + + fast, speedily + + + branch of medicine dealing with liver and related organs + + + biological development process + + + small woodland + + + pertaining to horology + + + study of wetlands + + + pertaining to hydrometeorology + + + capable of being implanted + + + (to do with position or direction) in, on, at, by, towards, onto + + + (to do with separation) in, into + + + (to do with time) each, per, in, on, by + + + motorcycle part + + + strong start + + + start strongly + + + medical specialty dealing with the larynx + + + scientist who studies malaria + + + sea farming + + + study of electronic and mechanical systems + + + serving to remember something + + + substance harmful to microorganisms + + + relating to minerals + + + definition by periphrasis + + + involving multiple political parties + + + communication among multiple participants + + + giving rise to myths + + + building things at the scale of individual molecules + + + fiber with nanometer-scale diameter + + + particle at the nanometer scale + + + nanoscale sphere + + + study of chemistry of nervous system + + + forest with mostly oak trees + + + replace local with overseas workers + + + preventative branch of psychiatry + + + pertaining to orthopsychiatry + + + orthopedic appliance + + + pertaining to osteopathy + + + process of making measurements from photographs + + + pertaining to phycology + + + pertaining to phytopathology + + + branch of astronomy that deals with the condensed matter of the solar system and especially with the planets and their moons + + + type of quasiparticle + + + with many cysts + + + one who studies primates + + + one who profiles + + + one who proves + + + relating to or suffering from quadriplegia + + + innervate again; particularly by restoring function by supplying with nerves + + + in reference to earthquakes or other vibrations + + + study of sex + + + branch of science concerned with inferring the three-dimensional properties of objects or matter ordinarily observed two-dimensionally + + + component of a cell + + + material able to conduct electricity with no losses + + + exhibit the phenomenon of superconductivity + + + physical phenomenon + + + liquid applied to the shaved area of the face after shaving + + + plane curve, 4-cusped hypocycloid + + + a transgender person’s name before transitioning + + + characteristic of city dwellers + + + a large flightless parrot species + In captivity the kakapo is said to show much intelligence, as well as an affectionate and playful disposition. + New Zealand possesses a surprisingly large number of birds capable of flight, but many of the ground-feeders, having no natural enemies from which to escape by flying, have lost this power, and hence such examples as the weka and the kakapo. + + + to tweak or weaken a component of a game + + + to make something less effective + + + branch of biology that deals with the spread of alien species + + + having non-normative or queer gender identity and gender expression + + + gesture + + + profession + + + type of circuit board that other components attach to + + + type of politics + + + type of swamp + + + type of small boat + + + mexican dish + + + alcoholic drink typically served after a meal + + + verse with twelve syllables per line + + + house with low environmental impact + + + type of stuffed pastry + + + horse riding + + + craftsperson who creates decorative sculpted surfaces and sculptural detail for walls and ceilings in stucco + + + branch of science dealing with geology and the biosphere + + + study of geology and microbiology together + + + study of sundial construction + + + medical procedure performed outside the body + + + branch of paleontology that studies fossil footprints + + + pre-16th century book or other printed item + + + study of lichens + + + study of toxins produced by fungi + + + in an engrossing manner; suggesting great interest/full attention + + + throughout the day + + + for the length of an entire day + + + orientation of two items with fronts facing away from each other + + + emphasizes that what you are saying is true + + + with warm friendship + + + in a bisexual manner + + + in a fashion suggesting the absence of clouds + + + abrupt cessation of a substance dependence + + + musical term + + + as a possibility : in respect to a tendency or to a future eventuality + + + In a dark or dusky manner. + + + without firm basis/support/footing, aimlessly/without direction + + + in a freezing manner + + + relating to choosing, cooking, or eating good food + + + in a glistening manner + + + impiously/without God (in a godless manner) + + + in an impolitic manner; not in accordance with good policy; inexpediently + + + بِ إسم أللَه + + + in a juridical manner + + + done in manner that lacks limbs or resembles as much + (Their paintspeckled hats wag. Spattered with size and lime of their lodges they frisk limblessly about him.) + + + joylessly/humorlessly/without mirth + + + with a sense of loss + + + done in a manner that favors free markets, deregulation and devolution + + + In a prepositive position. + + + bewilderingly/confusingly (in a puzzling manner) + + + immediately + + + done in an untidy or shabby fashion + + + (manner of placement) under the tongue + + + by means of/in terms of/according to typology + + + In a vainglorious manner. + + + without speech/utterance, silently (in a voiceless manner) + + + in a weightless manner + + + whenever; at any time at all + + + In what way; how. + + + over there + + + scientist studying nervous-system hormones + + + the study of human actions and conduct + + + early stage in formation of a planet + + + type of loudspeaker + + + heavy, smooth cardboard coated with a ground that has sufficient roughness for the application of oil paint + + + abstract description of molecular features that are necessary for molecular recognition of a ligand by a biological macromolecule + + + group of methylating enzymes + + + protein in Schistosoma mansoni + + + pathogen's ability to infect hosts + + + an enzyme that occurs chiefly in cholinergic nerve endings and promotes the hydrolysis of acetylcholine + + + The sequence of reactions within a cell required to convert absorbed photons into a molecular signal. + + + In physics, a dynamic variable that can be measured + + + a small-scale two-dimensional array of samples on a solid support + + + act or process of separating an antigen from a solution using an antibody that binds to the antigen + + + An organism that thrives in extremely hot environments from 60*C upwards + + + simultaneous infection of a host by more than one pathogen + + + cellular catabolic process in which cells digest parts of their own cytoplasm + + + term + + + biome of microbes + + + to take a quantity away from or out of another + + + to move, sink, or push under + + + profession + + + process used to prevent someone's personal identity from being revealed, as a way to preserve privacy + + + carrying genetic information or being involved in the transcription or translation of proteins + + + study of biological toxins, especially animal venoms + + + study of the transcriptome + + + celebration on a day other than the person's birthday + + + to convert a substance into resin + + + parenthetical discourse expression "quote unquote" + + + to reduce to carbon + + + to make to convert to carbon + + + to divide the heavens into twelve equal parts by means of great circles + + + to render balmy + + + to display again + + + to make peace to + + + re-examine + + + to treat as an indifferentiated mass + + + Next to; beside. + The house adjacent to the school was demolished. + A notice was sent to the house adjacent the school. + + + use of an electrically heated wire or scalpel to treat hemorrhage and to ablate tumors, mucosal lesions, and refractory arrhythmias + + + group of similar haplotypes that share a common ancestor having the same single nucleotide polymorphism (SNP) mutation in all haplotypes + + + formed when a collection of nonlinear processes act together upon a pump beam in order to cause severe spectral broadening of the original pump beam + + + guidance relationship in which a more experienced or more knowledgeable person helps to guide a less experienced or less knowledgeable person + + + process that caused the matter in the universe to reionize early in the history of the universe + + + physical system that responds to a restoring force inversely proportional to displacement + + + act of quenching something + + + agents that emit light after excitation by light + + + one who provides care as an occupation + + + with respect to a given category, a more narrow category + + + in mathemaics, a category, whose objects and morphisms are inside a bigger catetgory + + + creation of copies + + + to experience orgasm + + + salt or other derivative of disulfane or organic compound having the structure RSSR (R ≠ H) + + + account of events in a particular year + + + Burst of light triggered by soundwave + + + a structure formed in a cave by the deposition of minerals from water, e.g., a stalactite or stalagmite. + + + tendency of a material to change the value of its electrical resistance in an externally-applied magnetic field + + + cell type + + + state of a system or a process in which the variables which define the behavior of the system or the process are unchanging in time + + + Membrane associated dimeric protein (240 and 220 kDa) of erythrocytes. Forms a complex with ankyrin, actin and probably other components of the membrane cytoskeleton, so that there is a mesh of proteins underlying the plasma membrane, potentially res + + + group of tetraterpenes, with four terpene units joined head-to-tail + + + The covalent attachment of a prenyl group to a molecule; geranyl, farnesyl, or geranylgeranyl groups may be added. + + + protein in Schistosoma mansoni + + + A sensory receptor that responds to mechanical pressure or distortion + + + property of a disease + + + enroachment of saline water into freshwater + + + Ice formed from frozen seawater + + + human disease + + + study of the right use of words in language + + + perovskite, oxide mineral + + + third-person singular neopronoun + + + emotionally helpless person + + + person with no limbs + + + process of writing a compiler (or assembler) in the source programming language that it intends to compile + + + production of an analysis that corresponds too closely or exactly to a particular set of data, and may therefore fail to fit additional data or predict future observations reliably + + + ability of something, especially a piece of content or information, to be found + + + romantic attraction towards person(s) of two or more genders (biromanticism) + + + person who works at a post office + + + give sexual pleasure to + + + form of interpersonal relationship + + + colleague in Swedish and Finish education systems + + + vigorous spirit or enthusiasm + + + distinctive style or flair + + + To agree with a proposition or statement after it has already been seconded. + + + in the middle of + + + in an unsuspected manner; without being suspected + + + Except; with the exception of. + + + Between. + + + From one side to the other side of; across. + The stars moved slowly athwart the sky. + + + as a result of which + + + on top of which + + + nevertheless + + + individual person as the object of his or her own reflective consciousness + + + A term of asseveration: indeed!, in truth! + + + Used to express anger, excitement, surprise, etc. + Blimey! I didn’t see that! + Blimey! Where did you come from? + + + At the end of religious prayers: so be it. + + + Form of hmm + + + interjection used to express disdain or reproach + + + An exclamation used in songs of praise or thanksgiving to God. + + + Expressing anger, annoyance or frustration. + Drat! I forgot to post these letters. + + + A common toast used when drinking in company. + + + An informal greeting. + Howdy folks, and welcome to our ninth annual chili cookoff! + + + Used after a pause for thought to introduce a new topic, question or story, or a new thought or question in continuation of an existing topic. + So, let's go home. + So, what'll you have? + So, there was this squirrel stuck in the chimney... + So, everyone wants to know – did you win the contest or not? + + + (used to emphasize the truth of a statement) + + + A mild curse or expression of surprise. + + + an exclamation meaning "long live ..." + + + long live! (battle cry) + + + Onward; a rallying cry for progress. + + + third person singular neopronoun + + + process of finding and resolving defects or problems within a computer program + + + expresses hostility + + + yes + + + word which occurs in a text more often than we would expect to occur by chance alone + + + acronym where the full form is not widely known + + + name used for a place which is not used by the people of that place + + + word with a broader meaning + + + A diagram used to represent words, ideas, tasks or other items linked to and arranged radially around a central key word or idea. + + + augmentation of intelligence through the use of information technology + + + measure to prevent an incident, disease, etc. + + + political movement + + + to pseudo-anonymize; to pseudonymize + + + organism occurring in a new habitat + + + Estimate of how an atmospheric gas affects global climate change + + + emission rate of a given pollutant relative to the intensity of a specific activity, or an industrial production process; e.g. grams of CO₂ released per megajoule of energy produced, or the ratio of greenhouse gas emissions produced to GDP + + + thresholds that, when exceeded, can lead to large change in the earth system + + + distinct layer in a large body of fluid in which temperature changes more rapidly with depth than it does in the layers above or below + + + main group of bicycle riders + + + referring to a sports game or team featuring the best players + + + heading toward an objective, forwards + + + almost finished + + + pertaining to the penultimate round of a tournament + + + official position + + + relating to oaks + + + type of household for statistical purposes + + + ordinal number for 25 + + + member of a council + + + form used to document informed consent + + + anti-pattern in voluntary communities where someone takes responsability for a task, does nothing about it and then puts it back up for grabs + + + write together + + + expression of encouragement prior to a performance + + + slang vulgar term meaning to have anal intercourse with + Cut to Dylan on all fours screaming "Harder, Faster!" as David cornholes him doggy style in the sauna. + To her surprise she realized that unlike the previous two anal poundings she had received, this one barely hurt as he cornholed her. + + + expression of gratitude + + + having no gender + + + مربوط به ربوخه + + + match, mate together, couple + + + grandchild + + + manual stimulation of a man's penis by another person + + + an attractive (cute) person + + + theoretical spacecraft propulsion system in many science fiction works, most notably Star Trek + + + hypothetical mode of transportation by warping space + + + mythical race of bulky humanoid creatures + + + attraction de parc de loisirs + + + The state of being estranged or alienated + + + village road + + + a transphobic person + + + fossil preservation process + + + the study of fossil preservation + + + fictional space flight organization + The names of Starfleet vessels can tell us a lot about the cultural traditions that were foremost in the minds of the creators of the franchise. + + + ethological class; "gardening traces," systematic burrow networks created by an organism + + + ethological clas; trace fossils that show evidence of predatory behavior + + + Star Trek weapon + A modern bat'leth is typically 116 centimeters long, composed of baakonite metal, weighing 5.3 kilograms. + Koloth, Kor, and Dax raised their bat'leths seconds later, guttural cries coming from each of them. + + + That congregate or flock together + + + type of rechargeable battery + + + act of documenting something before its official discovery + + + document providing evidence of something before its official discovery + + + overall facility for launching and/or receiving spacecraft + + + space based fascillity where spacecraft can dock + The large space hangars and space dock to­gether would enable the establishment of a standardized space maintenance process that integrates system design, in-space assembly, scheduled and unscheduled servicing, technician training, and spares management. + + + deep-fried strips of potato + + + to die + + + to add a geotag to digital content; to provide geographic information (especially locations, such as coordinates) via metadata + + + to excessively apply digital beauty filters to an image + + + romantically attracted to members of the same sex or gender + + + attraction to all genders + + + transgender with a partially or fully feminine gender identity + + + attraction not limited by gender identity + + + seriously + + + having 2 phases + + + one who resurrects + + + defecate + + + one who harasses other players in a game + + + an image macro of one or more cats + + + Any plant in the genus Chorizanthe + + + Any beetle of the subfamily Melolonthinae + + + any insect of the family Lepidopsocidae + + + drunk + + + drunk + + + unable to be found in a Google search + + + a dish of rice, black-eyed peas, and bacon or pork + + + ideogram that conveys its meaning through its pictorial resemblance to a physical object + + + element of computer graphical interface + + + somewhat more censored form of “motherfucker”, a common insult and profanity + + + the study of beetles + + + any spider in the family Sparassidae + + + Lepidochelys olivacea + + + person who works in the boiler construction or repair trade + + + whiskey with beer as a chaser + + + Sedum moranense + + + any moth of the family Tortricidae + + + any snake in the family Leptotyphlopidae + + + any reptile of the order Squamata + + + a black person + + + relating to the Lepidoptera, the butterflies and moths + + + interjection meaning "As long as you're healthy [you can be happy]." + + + creating, promoting and exploiting stars in Hollywood films + + + set of non-stellar objects in orbit around a star + + + type of n-gram consisting of one word + + + penis + + + to praise or flatter someone excessively in order to gain his or her favor; to curry favor with + + + title or position for a female inspector + + + gigantic tentacled sea monster of Scandinavian myth + + + twighlight at roosting time, light of the morning sunrise + + + excrement, dung, usually used figuratively; equivalent to general English "shit" + + + ریشمی ڈورا + + + to incorporate apparently LGBTQ characters and relationships into media with the intent of drawing an LGBTQ audience + + + small plastic particle in the environment generally smaller than 1 mm + + + スーパーセンテナリアン、110歳以上の人 + + + a half-bottle (now 375 ml) of spirit, usually sold in a flattened pocket-size bottle + + + insulting name for an Afrikaner + + + elastic band + + + made for that particular day, as in a dish in a restaurant + The soup du jour is roasted red pepper and tomato. + + + very popular or fashionable at a particular time + Long hair was the style du jour. + + + of the family Carabidae + + + the practice of tracking people online + + + (reflexive pronoun for the first person singular) + + + text messaging service component + + + person with red hair + + + made of brass + + + settlement with little or no value + + + something that is small + + + occurent three times + + + accept + + + garden or park which comprises mainly of roses + + + very conventional person who often has a lot of inhibitions + + + a person who spends as little money as possible + + + without tea + + + an evergreen Australian tree (Cupaniopsis anacardioides) of the family Sapindaceae + + + last piece of cloth left from a bale + + + a mammal in the family Herpestidae + + + rodent in the family Bathyergidae (blesmols and mole rats) + + + a rodent of the family Sciuridae (squirrels) + + + a member of the mammal family Ornithorhynchidae + + + the number between 22 and 24 + + + ritual of moving around a sacred object or idol + + + any fish of the family Acipenseridae + + + a fish of the family Percidae + + + a tree frog of the family Hylidae + + + any member of the bird family Turdidae + + + any member of the bird family Phylloscopidae + + + a mammal in the family Trichechidae + + + (almost exclusively in combinations) having thighs (when in combination, of a certain nature of thighs) + + + Sundasciurus tenuis + + + a mythical or fictional organism which some presume to be real or is presumed to be real with little evidence of its existence + + + Remigration + + + stealing livestock through driving them away + + + one who steals livestock by driving them away + + + imperfect or defective + + + faith in Islam + + + unsorted wheat flour + + + (term of affection for a beloved person) + + + Islamic expression of reverence + + + wrestle + + + any member of the bird family Picidae (the woodpeckers) + + + cyberattack intended to redirect a website's traffic to another + + + to condescend to a woman in a manner characteristic of male chauvinism + + + bundle of hay + + + literary genre + + + continue with one's activities + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + person who walks for show, amusement + + + good + + + feldspathoid mineral + + + post-larval stage in life cycle of Malacostraca + + + in heraldry, wings displayed and joined at the base + + + to be deemed valuable + + + to sign an additional time + + + branch of botany that deals with the grasses + + + branch of zoology concerned with the cetaceans + + + any of the branches of science dealing with snow or ice accumulation, glaciation, or glacial epochs + + + branch of zoology concerning the crayfishes + + + study of dead animals (faunal remains) that includes their bones, shells and other body parts + + + branch of entomology concerning the Orthoptera (grasshoppers, crickets, etc.) + + + a treatise on the Orthoptera + + + study of diseases of trees + + + branch of geomorphology concerned with the study of ancient topographic features now either concealed beneath the surface or removed by erosion + + + cry of “ouch,” in expression of pain or discomfort + + + study of the relations between humans and animals + + + the animal lore of a race or people + + + officer charged with the administration of the health laws + + + branch of linguistics or philosophy concerned with meaning in language + + + coffee taken at breakfast or mid-morning + + + the study of the devil or devils + + + doctrine or beliefs concerning the devil; devil lore + + + study of the interactions between the Earth's biosphere and the lithosphere + + + the study of the Sun + + + the study of heresies + + + a treatise on heresies + + + the study of horses + + + skill or expertise in horsemanship + + + (a colloquial American plural form of the second person plural pronoun) + + + aloud, audible + + + the symptom complex of a disease + + + branch of medical science concerned with symptoms of diseases + + + branch of science concerned with the study of wetlands (such as peat bogs or swamps) + + + (imprecative) damn, damnation + + + in positive contexts; different, the other of two alternatives, an additional + + + nor (with another negative, expressed or implied) + + + sharing attributes with another or with self at another time + + + Japanese silk resist-dyeing technique + + + kanat; underground channel directing water from the interior of a hill to a village + + + animal pathology + + + the study of the microorganisms (bacteria, archaea, viruses and microbial eukaryotes) in the marine environment + + + branch of zoology concerned with helminths; especially: the study of parasitic worms + + + the study of how exercise alters the function and structure of the body + + + the study of man as a psychosomatic unity + + + branch of psychology interested in personality development + + + the study of the components and constituents of consciousness specifically by introspective methods + + + of or relating to horme; specifically: purposively directed toward a goal + + + branch of psychology focusing on understanding all aspects and influences of criminal behavior, including the myriad factors that contribute to criminal actions + + + the study of paleopsychic phenomena + + + profane oath + + + connived at, tolerated + + + absolute form of a word; subject case in opposition to an ergative or relative case + + + the fusion of 2 (usually haploid) nuclei during sexual reproduction, resulting in the formation of a diploid zygote + + + according to + + + zoogeography + + + half-transitive + + + high-ranking chief; firstborn child in a prominent family + + + study of fossil plants + + + person who studies fossil birds + + + cake made with carrots + + + the study of cactus spines or euphorbia thorns grown in time ordered sequence + + + dogmas collectively; the science of dogma + + + the branch of knowledge concerned with signs, esp. in relation to thought and knowledge; the study of signs; semiotics + + + the study or description of meaning in language; semantics (Now rare) + + + the art of interpretation by signs (Obsolete. rare) + + + the science of magnets and magnetism + + + study of ecological processes in agriculture + + + the study of large-scale behavior of the atmosphere + + + the gross structures or morphology of an organism, mineral, or soil component visible with the unaided eye or at very low levels of magnification + + + the study of zygotes + + + the science of joining and fastening things together + + + the use of paradoxes + + + the science of medical remedies + + + the study of inanimate nature; science other than biology or the life sciences + + + incorrect use of language + + + the scientific study of amber + + + human morphology + + + the use of anthropomorphic language especially in application to God or a god + + + scientific discipline concerned with the biological and behavioral aspects of human beings, their extinct hominin ancestors, and related non-human primates, particularly from an evolutionary perspective + + + the study of humans as an agent of landscape change + + + street vendor of produce (arable goods) + + + area of dentistry which deals with the diagnosis, management and treatment of dental conditions relating to older adults + + + the study of social interaction in terms of analogy with the vital processes of the living organism + + + branch of entomology that studies insects that benefit or harm humans, domestic animals, and crops + + + the use of chemistry and chemical techniques to study biological systems + + + the study of the adaptation of human societies or populations to their environments + + + branch of pathology and dentistry dealing the study, diagnosis, and treatment of diseases in the teeth, gums, bones, joints, glands, skin, and muscles of the mouth + + + branch of zoology dealing with the echinoderms + + + the practice of electrical hair removal to permanently remove human hair from the body + + + the study of reproduction + + + the scientific study of color + + + pseudoscientific alternative medicine method using colored light + + + the study of the relationship between the morphology of organisms and their ecology + + + the study of medicines derived from naturally occurring substances like plants and fungi that have been traditionally used by specific groups of people for medicinal purposes + + + the branch of physics which relates to the humidity of the atmosphere or other bodies + + + branch of zoology dealing with mammals + + + the study and identification of pollen grains in honey, especially as a means of quality control + + + the study of the properties and effects of opium + + + the physiology of sensation and sense organs + + + a reply to an apology, especially to a written defence or justification of religious opinions + + + the branch of archaeology that deals with the apparent use by prehistoric civilizations of astronomical techniques to establish the seasons or the cycle of the year + + + the study of the chronology and periodicity of celestial objects + + + dating of sedimentary units by calibration with astronomically tuned timescales + + + the classification of human beings by body type or other morphological, physiological, or psychological characteristics + + + kind, helpful + + + the branch of theology which deals with religious truth in relation to spiritual needs. + + + the scientific study of personality; the study of the way behaviour is related to personality + + + branch of medical science dealing with the effects of drugs in populations + + + a systematic view of all knowledge + + + a philosophical theory about monads; specifically: Leibnizian monadism + + + the scientific study of sand + + + the study or science that treats of the tides + + + to overcome through subtlety and skill rather than brute force + + + to steal + + + to play a card in contract bridge + + + dialling tone, sound made after dialing on telephone + + + technology in computer systems that allows for direct access to stored items using partial contents of the item in question + + + the study of inanimate nature + + + bad choice of words, diction, or poor pronunciation + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + discussions or treatises about giants + + + positive integer equal to the sum of its positive proper divisors + + + form of medical practice based on two concepts: that a broad range of environmental chemicals and foods can be responsible for an illness in which an unlimited variety of symptoms occur in the absence of objective physical findings, pathologic abnormalities, or specific, abnormal results of laboratory tests; and that the immune system is functionally depressed by many environmental chemicals + + + toy made of rubber (often used in the bath) + + + title bestowed on a former Speaker of the House of Representatives in the United States who has left the position but continues to serve in the House as a backbencher + + + a person who is very interested in politics + + + to temporarily postpone consideration of a motion or bill + + + a strategic series of meetings, events, or visits conducted by a politician or candidate to gather input, concerns, and perspectives from constituents or specific groups + + + the form in which something was actually constructed + + + a system of knowledge or belief built around biological principles + + + the science of medicine + + + a treatise on medicine + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + the branch of geology that deals with the form, arrangement, and internal structure of rocks, and especially with the description, representation, and analysis of structures, chiefly on a moderate to small scale + + + the biology of plants + + + plant ecology + + + the theory and work based on the theory that trees were involved in the origin of man + + + the "science" of love + + + a branch of sociology that analyzes how individuals use everyday conversation and gestures to construct a common-sense view of the world + + + the study of how social order is produced in and through processes of social interaction + + + the scientific discipline that involves dating the events related to the formation and evolution of the Solar System and the nucleosynthesis of chemical elements using radiometric dating techniques + + + the science that considers the Earth in its relation to cosmic phenomena + + + unprofitable or fruitless enquiry; vain discourse + + + the science of machines and mechanisms + + + able to align itself automatically + + + branch of paleontology that studies fossil footprints + + + the study of mountains + + + the psychology of morality and human action, especially as a subject of philosophical study + + + common sense regarded as a science or religion + + + the anatomical study of the intestinal glands + + + (originally) the study of pathological effects induced by electricity + + + (later also) abnormal electrical activity, especially of the heart, associated with a disease or disorder + + + sacred literature or lore; the literature embodying the religious beliefs of a country or people + + + hagiology + + + Edward Hitchcock's name for the branch of paleontology concerned with "ornithichnites" or fossil footprints of birds + + + the branch of medicine that deals with the diseases of children; pediatrics + + + psychology concerned especially with resolution of the mind into structural elements + + + the study and analysis of the causes and effects of accidents + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + concept within topology + + + the branch of paleontology concerned with extinct and fossil plants; paleobotany + + + relating to a person who has some training in a job such as teaching or law, but does not have all the qualifications to be a teacher, lawyer, etc., or to the work that they do + + + a leg segment of an arthropod + + + creator of slam poetry or participant in a poetry slam + + + a system or theory that describes individual or group behavior in terms of topological relations within a life space + + + the study of the physiology of the eye and sight + + + medical specialization that involves undertaking a range of imaging procedures to obtain images of the inside of the body + + + a person engaged in or expert in marine science + + + the mathematical theory of Regge poles + + + the branch of mammalogy dealing with tigers + + + the study of friction and wear at a large scale, typically involving macroscopic systems and components + + + the study of the relationship of climate and weather to disease + + + the science that deals with the character, ecology, and causes of outbreaks of animal diseases + + + the sum of the factors controlling the occurrence of a disease or pathogen of animals + + + an interdisciplinary framework to understand the functioning of terrestrial landscapes in the climate system, combining aspects of physical climatology, micrometeorology, hydrology, soil science, plant physiology, biogeochemistry, ecosystem ecology, biogeography, and vegetation dynamics to understand the physical, chemical, and biological processes by which landscapes affect and are affected by climate + + + the branch of botanical and pharmacological science concerned with the production, properties, and use of quinine + + + the study of the physiology of the reproductive system + + + part forming the side of something, or attached at the side + + + the principle or practice of encouraging a behaviour by counter-intuitive means, such as advocating its opposite + + + the study of the venation of the wings of insects, especially as a basis for classification + + + the branch of pharmacology concerned with the development and study of radiopharmaceuticals + + + the science of metals + + + dermatology + + + the branch of zoology dealing with sponges + + + (reflexive second-person singular) that which belongs to thee + + + The action or occupation of giving speeches or presentations intended to motivate or inspire an audience + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + a person engaged in motivational research + + + philately or the study of postage stamps + + + excessive tourism + + + a branch of astrology that professes to foretell the fate and acts of nations and individuals + + + the science that deals with the geographical distribution of animals and plants + + + the branch of education concerned with the scientific study of instructional design and development + + + the branch of pathology that deals with physical conditions or symptoms associated with weather conditions + + + the branch of Christian theology relating to the person, nature, and role of Christ + + + the study of the plant family Compositae (or Asteraceae) + + + branch of archaeology which seeks to understand the nature of cultural change by a study of the variables which cause it, usually in a manner characteristic of "new archaeology" + + + the etiology of fevers + + + the study of saprobic environments + + + taxonomy + + + that breaks (something) + + + field that involves the study of explosives, their components, and their performance, safety, and reliability + + + of, for, engaged in, or used while hunting + + + each of a number of concentric rings in the cross section of a tree trunk, representing a single year's growth + + + phrenology + + + the study of or a treatise on worms + + + to treat with acid + + + to inject acid into a limestone or dolomitic structure order to enlarge pores in the surrounding rock + + + to flood, swell + + + to rain heavily + + + to fine for disobedience of orders + + + sukangavoq + + + to steal + + + to be a thief; to commit theft + + + three halves, 1.5 + + + be pleasant, sugar-like to the taste or smell + + + be endearing, cute + + + period of time at the end of the day + + + having assumed a title for oneself + + + to skim the surface of water on a pair of skis while towed by a motorboat + + + to alter, change + + + for a lithospheric plate to move upwards over the margin of an adjacent plate + + + to supply with caffeine + + + to destroy tissue by means of electric current + + + lead oxide mineral recognized for its rarity and difficulty identifying it + + + to convert to adinole by contact metamorphism + + + to glide across ice on skates + + + to howl or yelp as a dog + + + to alter by metasomatic processes + + + to have been executed with proper legal authority + + + to calcify organic tissue + + + to attach a biotinyl residue + + + to have as subject matter + + + to consist of essentially; to have as point or purpose + + + to be principally concerned with + + + Originally: to design or construct using biological principles. Later chiefly: to produce or modify (a substance, organism, etc.) using the techniques of bioengineering, especially genetic engineering + + + the leaves or seeds of the dill plant, especially when used dried and as a food flavoring + + + a treatise on corns, warts, bunions, and their causes + + + to make untidy + + + to watch or guard over as a warden + + + to invoke a memory + + + to back up; to reverse (a vehicle) + + + to back up; to reverse (a horse) + + + univalent radical derived by the removal of a hydroxyl group from an anomeric carbon atom in a sugar + + + broth obtained from clams + + + inferior whiskey or other strong liquor + + + a sweet, artificially colored, non-carbonated soft drink + + + an unusual or concocted drink + + + to call or summon + + + a member of a group of politically radical hippies, active especially during the late 1960s + + + a wrong start in a race + + + single-portion takeout or home-packed meal common in Japanese cuisine + + + a tropical plant + + + the xiphoid process + + + of or resembling feces + + + repulsive + + + the branch of radiology that deals with the use of ionizing radiation to treat cancers + + + geographical knowledge as a whole; the study of this + + + any of a genus (Orobanche of the family Orobanchaceae, the broomrape family) of herbs that have leaves modified to scales and that grow as parasites on the roots of other plants + + + white, vitreous fluoride of lime, soda, and alumina; chiolite + + + that carries + + + allowed, not forbidden + + + having a tendency to proofread + + + for reason that + + + making of bets, wagering + + + (third person possessive singular; belonging to a female being) + + + administrative division of a polity headed by a governor + + + unpleasant, worthless, obnoxious + + + starchy meal ground from the dried roots of various orchids + + + the process of changing data into another format (= arrangement) so that it can be used or processed + + + to behave like a dork; to behave foolishly, in a clumsy and awkward manner + + + granular dessert ice with a sugar-syrup base + + + a specialist in tool engineering + + + of, relating to, or using neon + + + extremely bright : fluorescent + + + of or relating to a form of lighting used especially on advertising signs and consisting of glass tubes filled with neon or other gases that emit colored light when subjected to an electric current + + + a description of the ligaments of the body + + + radiographic examination of the uterine cavity and fetus following injection of a radiopaque substance into the amnion + + + astronomical photography + + + not a natural component of a particular organism or biological system + + + chromatography in which the substance to be separated into its components is diffused along with a carrier gas through a liquid or solid adsorbent for differential adsorption + + + branch of science that deals with the distribution of extinct species + + + a new system or method of writing or spelling + + + study of early modern and modern handwriting + + + deviation from a prevailing method of writing or notation + + + the systematic description of diseases + + + a description of, or dissertation on, the Egyptian pyramids + + + a printing process in which the image is created in relief on a soft plate and printed with a rotary press, used especially for printing on impervious or uneven surfaces such as commercial packaging + + + the study of people, places, and landscapes in rural areas, and of the social and economic processes that shape these geographies + + + subdiscipline of geography that focuses on everyday life and the way social groups interact with each other and the spaces in which they live + + + piece of tissue removed from body or from a plant + + + type of generator made for fast rotation on a turbine engine + + + (the) supernatural + + + measurement of angles + + + principle that perspectives and epistemology are always linked + + + anion or a salt of periodic acid + + + person who practices or embodies paternalism + + + interaction between different species in which one is harmed and the other unaffected + + + substance which counteracts the effects of alkalis + + + white fibrous capsule, especially of the testis + + + use of a drug to improve athletic performance + + + small ship’s boat used for minor tasks. + + + five-gallon container for petrol or water + + + organization drawing membership from the bar + + + back then + + + to play dance music, especially in a juke + + + to dance, especially in a juke or to the music of a jukebox + + + a branch of mathematical and physical theory that deals with the nature and consequences of chaos and chaotic systems + + + former monetary unit of Albania; one-hundredth of a gold franc + + + qindarka; one-hundredth of an Albanian lek + + + woodwind instrument; predecessor of modern clarinet + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + of an orgiastic character or tendency + + + one of a surveyor's party who carries the chain; a chain-carrier + + + chokerman + + + one that arranges the pattern chain on a dobby loom + + + a worker who ties skeins of yarn into a continuous chain for processing + + + an instrument or substance which causes a liquid to form a froth + + + taught by himself or herself without assistance + + + to render stolid + + + seasoned with cayenne; figurative spiced, hot + + + to pester, nag + + + to act like a noodge + + + cornetto + + + going on a trek + + + act to laminate + + + best/most able + + + double-breasted coat dress or coat + + + staple food made from barley-meal + + + in or into the inner part + + + being evidence of something + + + (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + + to be without sound + + + surgical removal of ureter + + + to spring up suddenly + + + to undo resolution (a previously resolved upon action) + + + removal of bunion(s) + + + to engage in commercial transaction + + + to make up (of parts) + + + to put forward, set forth + + + anathematize, anathemize + + + to lay out or expend beyond availability; to superexpand + + + to exaggerate or overstate + + + of or pertaining to tachycardia + + + subject to or afflicted with tachycardia + + + to feed swinishly or eat in a vulgar manner + + + xylose + + + in a desert landscape, a long ridge which has been isolated by the removal of rocks on either side + + + to underexpose in radiographic imaging + + + to make use of below optimum level + + + to engage in an artillery/gun battle + + + the fact, state, or experience of being Indigenous + + + to drop from an aircraft in flight + + + to introduce an alkyl radical to a compound + + + embodiment of individual creative spirit in Scientology + + + an analytical and ethnographic perspective on the cultural phenomena and social relationships that extend across nation-state boundaries + + + branch of anthropology concerned with the human mind, cognition, emotional experience, ethnopsychology, ethnopsychiatry, and enculturation + + + to repair or fill with spackle + + + a theoretical perspective in the mid-twentieth century that revived interest in evolutionism as a way to explain human social and cultural change + + + (obsolete) to follow + + + the quality or condition of being disastrous + + + a disaster; ruin + + + caproic + + + the sacroiliac region + + + the firm fibrous cartilage of the sacroiliac region + + + to fall ill with the common cold + + + relating to or denoting plants of the nightshade family (Solanaceae) + + + of, relating to, or resembling the mollusk family Solenidae + + + a mollusk in the family Solenidae + + + a nurse who specializes in providing care to infants, children, and adolescents + + + lunch bag, lunchbox + + + male genitals, especially as observed portrusing through clothing + + + (archaic) the action of despoiling; plundering, robbery + + + arrived at or known by intuition + + + a fatal degenerative brain disease of cattle, caused by a prion that can be transmitted to humans who consume infected beef + + + of, relating to, or characteristic of the phylum Mollusca + + + feeding on excrement + + + with, accompanied by; and with (associative) + + + the practice of eating insects + + + professional, technical, skilled; expert + + + a figure-skating jump with a takeoff from the back inside edge of one skate followed by one or more full turns in the air and a landing on the back outside edge of the opposite skate + + + mistakenly + + + dilated, expanded + + + peskily + + + a wave or period of unusual activity by desperadoes + + + the state or fact of being a nincompoop + + + an apparatus for pasteurizing foodstuffs + + + a contemptible or stupid person + + + vegetational formation dominated by shrubs + + + a person who is disobedient to authority + + + unhealthy-looking, sick-looking + + + recommendatory letter; letter introducing someone as worthy or suitable + + + the quality or state of being blasphemous; (also) blasphemous speech, thought, or action + + + the needle-shaped leaf of a pine tree + + + to be perplexed, to be put into a quandary + + + to write or copy out incorrectly or mistakenly + + + a gurgling sound that comes from the back of the throat of a dying person + + + surgical removal of as much of a tumor as possible + + + a French-speaking person, especially in a region where two or more languages are spoken + + + eat, use up, devouring + + + act of splitting, causing separation + + + The act of dividing a number or quantity to the operation of finding how many times it contains another number or quantity. + + + act of testing the limits of capability + + + examination + + + act or process of controlling, moderating, or curbing + + + make checkmarks + + + of, relating to, or characterized by play : playful + + + that is or has been locked + + + that has been subjected to filtration + + + a moisturizer that is used to treat vaginal dryness + + + to feel hatred + + + intend, plan, on purpose, intent + + + the act of continuing + + + harsh judgment + + + a short scherzo + + + light and airy in performance —used as a direction in music + + + high and thin in tone —used chiefly of a voice in the phrase soprano sfogato + + + resembling a topaz in color or luster + + + located above the fold on the front page of a broadsheet newspaper + + + suitable for prominent placement on the front page of a newspaper + + + located prominently near the top of the page in an electronic document (such as an e-mail or a Web page) + + + characteristic or typical of an author, especially a professional one + + + markedly literary + + + opal variety found deposited at orifices of geysers + + + a technique used in audio recording in which audio tracks that have been pre-recorded are then played back and monitored, while simultaneously recording new, doubled, or augmented tracks onto one or more available tracks + + + how real something is perceived as being and the criteria used to evaluate this + + + a wardrobe or its contents + + + a private room : bedroom + + + privy: a room or small building having a bench with holes through which the user may defecate or urinate + + + large Greek pottery vessel for mixing wine + + + cutaneous disease in sheep + + + boastful, arrogant; proud, conceited + + + carambola + + + type of bugle made from a cow horn + + + doleful, miserable, gloomy, lonely + + + get together with + + + fire, let go from employement + + + tourist + + + (expression of disappointment) + + + the practice of engaging in archaeological work for personal interest and enjoyment rather than as a professional career + + + ship ahoy! (exclamation said when another ship is in view) + + + the science dealing with the microscopic phenomena of soils + + + the technology of radio + + + the application of X rays to industrial problems + + + the application of any form of radiation to industrial problems + + + the branch of botany that studies roses + + + act as staff for, work at (place) + + + release from blame/sin + + + the study or science of nothing + + + the science of friction, adhesion, lubrication, and wear on the length scale of micrometers to nanometers and the force scale of millinewtons (mN) to nanonewtons (nN) + + + branch of bacteriology that deals with organisms associated with or pathogenic for plants + + + a topology that contains fewer open sets than another topology on the same set + + + the study of the form, structure, and arrangement of leaves + + + camel-driver + + + (polite expletive) short for "fuck up;" to botch, make a hash of, mess or screw up + + + branch of geology that deals with topography + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + the study of the interactions between human bodies and the atmosphere + + + newcomer; fresh immigrant + + + heavy whip cut from rhinoceros or hippopotamus hide + + + pertaining to or connected with fermentation + + + a late 19th century to early 20th century American school of psychology concerned especially with how the mind functions to adapt the individual to the environment + + + being part of; included in + + + to block + + + to block + + + emphasize + + + headman of a region, community, or occupational group + + + to blunt, dull; to render obtuse + + + make available for consideration + + + act of postponing consideration of + + + the application of mesmerism to phrenology, to the phrenological organs, or to the mental faculties in general + + + the study of or theory about mathematical or occult significance in measurements of the Great Pyramid of Egypt + + + make sense of, distinguish + + + exclude + + + one who is the personification of dawdling; especially, a dawdling girl or woman + + + mortgage again + + + act/process of causing an increase (often in elevation) + + + decrease + + + change location + + + exaggeratedly publicized + + + act of removal + + + The process of a rise or leap from a surface in making a jump or flight or an ascent in an aircraft or in the launching of a rocket. + + + act of taking time off for vacation + + + act or process of increasing dramatically + + + act or process of going or leaving [similar to "getting going, hitting the road," etc.] + + + cause distance between two things + + + the development, processing, and application of materials to achieve specific performance requirements in various products and systems + + + the application of various technologies to enhance the learning experience, encompassing a wide range of tools and platforms used for teaching, learning, and assessment + + + act/process of remaining unsettled, waiting or awaiting + + + assembling military units for deployment + + + act of typing and sending a brief, digital message + + + the study of past human activity, settlement, and environments as revealed through archaeological sites located in wetlands + + + act of uttering a moan, complaining + + + process of finding, searching + + + come up with a new idea + + + center on + + + a topology defined on a quotient space, which is obtained by identifying certain points in a given topological space + + + act of making silent + + + act of attaching firmly + + + to charm or seduce + + + the doctrine of the Logos + + + the science of words + + + the study of mineral inclusions within larger mineral grains, focusing on the information they reveal about the host mineral's formation and the broader geological environment + + + act or process of giving shelter + + + absorb sensorily, possibly with pleasure + + + act or process of teaching (especially privately) + + + the philosophical study of the mind and life, distinct from the physical body + + + (in the oil industry) in or into a well or borehole + + + a hole dug or drilled downward, as in a mine or a petroleum or gas well + + + Homology is a geometric process H that constructs finite dimensional vector spaces Hᵢ(X), for suitable X and i. Homology is linear when hᵢ(X) is a linear function of X (and hᵢ(X) ≥ 0). + + + the spatial arrangement and connectivity of atomic or molecular orbitals, particularly in the context of chemical reactions and electronic structure + + + that part of natural theology which is based on the properties and phenomena of fire + + + to the methods, tools, and techniques used to transform raw materials into finished goods or services + + + the methods and systems that enable vehicles, including aircraft, missiles, and spacecraft, to move toward their destinations + + + erroneous or incorrect psychology + + + a (suggested) name for a science of the ‘ends’ of human conduct + + + to treat someone unfairly and badly, put or leave in a bad situation + + + choose, elect, or appoint (for a specific task or purpose) + + + determine quite detailedly + + + act of bringing to a sudden halt + + + form of train incident + + + the act of stabbing + + + mess up, botch + + + the act or process of bending, changing direction, or forming an arc + + + hold a second job + + + psychological study or theory based on the classification of people or phenomena by type + + + phytogeography: branch of biogeography concerned with the geographic distribution of plant species + + + the act of division, dividing into sections + + + act or process of helping grow or develop + + + act or process of transfering data from one computer to another + + + The act of isolating + + + revise an opinion + + + to make a mess of + + + instance of shaking or trembling + + + excited, amped up + + + extract, produce + + + make/accept an oath of office or court + + + continue fighting + + + act of protest, standing outside it in order to protest + + + act or process of uttering with a groan + + + a fragment of detrital volcanic material that has been expelled aerially from a vent + + + cover with sequins literally and figuratively + + + hit the back of a car + + + to make sexual advances + + + establish, make ready in advance + + + to make peace + + + (cause to) be affected with a certain attribute + + + having been effected by the process of hindering the clotting of blood + + + preventive of nausea or vomiting + + + used to lower high blood pressure + + + to be or act like a dilettante + + + a situation where homologous traits (those shared due to a common ancestor) evolve independently in different species or populations, often due to similar environmental pressures + + + making void or erasing + + + to lift and throw (someone) to the ground, as in wrestling + + + shortened form of a word or phrase, typically created by omitting letters or syllables + + + fool + + + to push through, acting like a bull + + + put on a cassette + + + Being like stone through calcification + + + sensitive to chemo + + + develop in conjuction with another developer or project + + + surgical removal of all or part of the colon + + + exist in coiled state + + + consisting of an array of multiple boreholes drilled into the ground for a shared purpose, often used in large-scale geotechnical, geological, or geothermal projects + + + call to court + + + to schedule programming to compete with another show + + + cause one entity to span a gap + + + device for dethatching, similar to a lawnmower but with vertical rotating blades + + + The act of losing muscle tone or fitness, becoming less adapted to + + + remove the sheen + + + inhabit a den, as in hibernation + + + remove hair + + + to deprive an organ of attached nerves + + + to hurry off promptly, abandon effort, flee + + + fakecel + + + send a direct message on twitter + + + contaminate the source and the destination simultaneously + + + breeding different varieties + + + remove dust, metaphorical/phrasal variant + + + informal expression used to get attention or greet someone + + + beat, surpass + + + process of becoming covered in epithelial cells, usually during wound healing + + + (of a tumor or other abnormal mass) growing outward from tissue or organ of origin + + + name + + + to make over, or literally give face lift + + + face off: oppose, fight + + + be no longer standing + + + natural disaster: fast moving flood that comes all at once + + + to form a cleft or crack + + + The act of making fatter + + + to allow an old exception to a new regulation + + + act or process of creating a graph of a function + + + surf move + + + twirl a lightweight hoop around the body in play or exercise by rotating the hips + + + The act of to taking care of someone's house + + + surgery that creates a connection between the ileum and the colon + + + involving the ileum and the sigmoid colon + + + beginning, origination + + + graduate from a university + + + surgical removal of part of the colon + + + court ordered prohibition of a specific action + + + The act of calibrating within a set; calibrating between + + + making a bubbling noise + + + low-energy food + + + opportunity + + + displaced to one side + + + make the characteristic noise of a cow + + + forming or dividing into lobules + + + the failure to adapt properly to a new situation or environment + + + to diagnose incorrectly + + + attend to + + + very slight invasion of malignant cells into adjacent tissue + + + post to an online journal + + + create + + + be amazed + + + an annual herb (Chenopodium quinoa) of the amaranth family that is native to the Andean highlands and is cultivated for its starchy seeds which are used as food and ground into flour + + + quinoa seeds + + + regulation of osmotic pressure + + + not having given birth or laid eggs + + + to buy in excessive amounts + + + allocate too much money to some purpose + + + overbake + + + consisting of multiple layers + + + outdo + + + to leap beyond something else + + + to surpass another in trading + + + aim too far, exceed + + + being in, going to, coming from, or characteristic of the 48 conterminous states of the U.S. + + + The act of inserting names of famous people into conversation in order to seem more important + + + imaging for transverse section reconstruction of the radionuclide distribution within the body + + + describe in detail, spelling out each play + + + to make or cause to make a tinkling sound + + + near the aorta + + + surgery that creates a connection between the pancreatic duct and the jejunum + + + asleep, soundly + + + beat + + + whump, make noise + + + be straightfoward and honest with + + + not suitable for/capable of being viewed + + + not presenting new info + + + not having been indicted + + + not having a connection to ground potential (or metaphorical extension) + + + ubiquitinate + + + phrasal typing, using a typewriter + + + sounding like a drum + + + give medicine to before an event + + + situated in front of the tibia + + + looking into the future, forecasting + + + Being examined using a proctoscope + + + having no answer to give, containing no answer + + + having no possible answer, unanswerable + + + recite from a list + + + attach, again + + + concentrate into one location + + + act or process of teaching again + + + lucid clarity of being fully present and aware + + + become more intense (again) + + + to occupy again; to take possession of, settle or maintain a position in a certain place again + + + to pass again (especially into law) + + + participial verb form in the active voice + + + obtain again + + + impudent/shameless (unblushing) + + + send again + + + type again + + + (cause to) fit as necessary + + + to avoid humiliation or loss of status and respect + + + make the noise 'scrawk' + + + to make certain, secure, be assured of + + + act of presenting in a sensational manner + + + distribute to shareholders + + + depart, as a soldier + + + look inward, search for inspriation, motivation, etc. + + + compare, measure up + + + make into a stack + + + to take a smaller sample from a larger sample + + + to mix or twist together, drag in + + + thaw_out: fully defrost + + + make better by equipping with "tools" + + + touch upon: same as touch on + + + to hit or beat with a truncheon or billy club + + + mad, crazy; eccentric, unconventional, wild + + + in a futuristic manner + + + perpetrator (of a crime) + + + which thing, which object + + + the number 2 + + + the number 7 + + + playing card + + + connects at least two alternatives (inclusive) + + + thousand million + + + million million + + + list of films related by some criteria + + + gesture and internet term + + + one; any indefinite example of + An yttrium sulfate compound is generally soluble. + + + (introduces a clause which is the subject or object of a verb) + + + at any point in time + + + for a time period + + + All; every; qualifying a singular noun, indicating all examples of the thing so named seen as individual or separate items (compare every). + Make sure you wash each bowl well. + The sun comes up each morning and sets each night. + + + the number 100 + + + A large amount of. + Do you think I have much chance of catching the train on time? + After much discussion, we decided to set about the task with much enthusiasm. + Did you do much running last summer? + + + Denotes the one immediately following the current or most recent one. + Next week would be a good time to meet. + I'll know better next time. + + + after a point in time + + + not containing or using + + + in the direction of + + + some person + + + with an increase of + + + Any one out of an indefinite number of persons; anyone; any person. + Anybody will do. + Is there anybody inside? + + + at any time that + + + Introducing a basis of comparison, with an object in the objective case. + You are not as tall as my sister. + They are big as houses. + + + not containing meat + + + following/in line with a meatless diet + + + characterized by entropy; inevitably deteriorating + + + phrase used when someone is leaving + + + to eat + + + apportion; give out according to a rationing system + + + to strike with one's knee + + + cheer + + + to squeeze fruit to produce juice + + + comics created in Japan + + + having serifs + + + number between 59 and 61 + + + repository of biological samples used for research + + + type of pharmaceutical drug product + + + field of biology that examines periodic (cyclic) phenomena in living organisms + + + separate one area from another + + + database + + + organization responsible for a database + + + natural number + + + natural number + + + state of being employable + + + capability of an individual to adjust into the work labor + + + study of gene expression changes + + + the study of the mechanisms of temporal and spatial control of gene activity during the development of complex organisms + + + the study of mitotically and/or meiotically heritable changes in gene function that cannot be explained by changes in DNA sequence + + + relating to epigenetics + + + pertaining to evolution + + + animal feed made from fish + + + self-similar + + + pertaining to a genome + + + deliberate manipulation of Earth's environment + + + engineering aspects of soil and rocks + + + academic qualification + + + chemically treat with a halogen + + + pertaining to hydrobiology + + + branch of geology which deals with the relations of water on or below the surface of the earth + + + branch of science that studies distribution and movement of groundwater + + + pertaining to hydrology + + + branch of immunology that deals with the immunologic properties of blood + + + study of infection + + + zoo for insects + + + one who inspires + + + collection of instruments + + + process of blending together + + + between governments + + + between universities + + + medication administered intravenously + + + communicate with opposing party + + + sequence of events in a life + + + wave of light + + + process of creating malt + + + place where malt is created + + + microscopic bead + + + local region near a cell + + + device around 1 micron in size + + + miniature satellite + + + type of DNA sequence + + + technology for microscopic devices + + + something imitative + + + relating to myelodysplasia + + + use of nanotechnology in medical treatment + + + study of drug abuse + + + doctor specializing in nephrology + + + measurement of shape + + + use of radiation in nervous system medicine + + + made without weaving + + + pertaining to notaries + + + pertaining to coins + + + bring into a group + + + pertaining to optometry + + + pertaining to palynology + + + fly a paraglider + + + Appropriate and legitimate for its purpose. + + + method of creating electric power from sunlight + + + study of mental aspects of biology + + + with both psychological and social aspects + + + act of reanimating + + + put together again + + + rearranged structure + + + one who tries to re-establish a historical practice + + + one that recycles + + + light again + + + process of reprography + + + patterning layer in semiconductor fabrication + + + chemical produced by an organism that affects others + + + locate something in three dimensions + + + Connochaetes taurinus + + + terminal-based network protocol + + + used to warn of a falling tree + + + a South African species of palm tree + + + quality/fact of being irritating/tiresome/annoying + + + linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + + affirmative option provided in a binary vote + + + Ordering items individually + + + abjectly (in an abased/humbled/humiliated manner) + + + relating to transactions + + + to smoke using an e-cigarette + + + covered in or characterized by upholstery + + + intermediate point along a route + + + mocking sadness + + + to make robust, to turn something into a robust form + + + transduction of mechanical stimuli into neural signal + + + toxic effect on ecosystems + + + type of alcohol (chemical term) + + + political/economic philosophy + + + type of fiber + + + selfishly keeping or consuming something + Don't bogart that joint, my friend. Pass it over to me. + + + the study of cave-dwelling organisms + + + type of horseman + + + type of bread + + + Italian white bread + + + type of small village or settlement + + + anarchism based on computerized cryptography + + + algorithm used to train an artificial neural network based on the gradient of a cost function + + + study of cultural aspects of dealing with living things + + + mark used to indicate quotation in some languages + + + track and field combined competition + + + place of work for a knacker + + + intentially hostile software + + + small moon + + + type of cell found in muscles + + + In an anticipative manner; expectantly. + + + groundlessly/unjustifiably (in a baseless manner) + + + flexibly/limply (as if without bones) + + + foolishly, without thought or intelligence + + + in a manner representing something as small or less than it is + + + to a small/minute degree + + + in a manner suggesting agitation or excitement; animatedly + + + in a way causing irritation/frustration (i.e. that isn't satisfactory or what one wishes for/requires) + + + in a manner much larger than expected + + + latin phrase referring to actions taken in memory of a deceased individual or individuals + + + in an isolated manner + + + in a lesbian manner + + + in a loveless manner + + + without bounds/restrictions (in a manner without limits) + + + topological space that at each point resembles Euclidean space + + + in a meaningless manner + + + with significance (of look/tone/gesture/etc.), so as to convey meaning + + + in a persistently irritating/annoying/complaining/exhausting manner + + + these days, in the present day + + + often; oftentimes + + + In a promissory manner. + + + in a quenchless manner + + + in a rattling manner + + + in a reasonless manner + + + In a temulent manner. + + + without thanks, unthankfully + + + "besides that;" that which is beside another object + + + Across the direction of travel or length of; athwart, crosswise, obliquely, transversely. + + + done in a way that lacks resentment or ill will + + + yes + + + study of nematodes + + + plant which prefers low-nitrogen soils + + + Pluto-like object beyond Neptune + + + type of computer program + + + organism living in symbiosis + + + synchronised well + + + allocate money to some purpose + + + predominant cell type in the epidermis, the outermost layer of the skin, constituting 90% of the cells found there + + + statistical analysis of written publications, such as books or articles + + + approve of loudly + + + natural disaster: stretch of very high temperatures + + + reduction of some kind of asset for financial, ethical, or political objectives or sale of an existing business by a firm + + + to convert into agate + + + not becoming, appropriate or in accord with expected standards + + + to become sane or reasonable + + + to repay, requite + + + to select from a group or pluck again + + + certifying again + + + to launch something again or put something into operation or motion again, i.e. a company or brand; to set off or start again + + + to make trendy + + + be on all sides of, encompassing + + + horse breed group + + + someone concerned with the raising of livestock + + + assembly of microorganisms belonging to different kingdoms; part of a microbiome (which consists of the microbiota and their environment) + + + study of traditional medicine practiced by various ethnic groups + + + invest again, put money back into a project or investment + + + Scientific study of algorithms and statistical models that computer systems use to perform tasks without explicit instructions + + + degree to which overt adverse effects of a drug can be tolerated by a patient + + + parasital protein found in Leishmania major Friedlin, encoded by LmjF.36.2320 + + + cell type + + + acquired metabolic disease that has material basis in an abnormally high level of uric acid in the blood. + + + neurons which are not motor or sensory + + + degree to which a system's components may be separated and recombined + + + class of protein + + + type of photodetector based on a p–n junction + + + class of chemical compounds + + + the act or process of constituting again or anew + + + class of enzymes + + + Cytoplasmic organelles, spherical or oval in shape, that are bounded by a single membrane and contain oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). + + + class of chemical compounds + + + any of a group of galactose-containing cerebrosides found in the surface membranes of nerve cells + + + type of cell + + + tectonic plate boundary where subduction takes place + + + act or process of increasing, or causing to increase, again + + + segment of content intended for podcasting + + + former name for rutherfordium + + + macrocyclic lactone with a ring of twelve or more members + + + ability of an organism to keep its body temperature within certain boundaries + + + eukaryotic cell clone derived from an eukaryotic organism by immortalization + + + spreading and enforcing Russian language and culture in neighboring regions and among minorities in Russia + + + neopronoun + + + neopronoun + + + neopronoun + + + neopronoun + + + effigy into which pins are inserted + + + to look after child temporarily + + + Reference to physical, non-human inputs used in production to produce wealth + + + amusement park and funfair attraction + + + video game genre + + + salutation used in the evening + + + a photograph of the photographer + + + sex act and pornography genre + + + practice of or desire for intimate relationships with more than one partner, with the knowledge of all partners; consensual, ethical, and responsible non-monogamy + + + members of an online subculture who define themselves as unable to find a romantic or sexual partner despite desiring one + + + suspicious + + + homosexual + + + artwork featuring aspects of a work of fiction created by a fan + + + to cause to enter popular awareness + + + administrative territorial entity + + + cart for carrying apples + + + grandparent's brother + + + protuding abdomen, paunch + + + profane term; word considered rude or offensive + + + as; in the capacity of; acting as + + + Until. + + + : with. + + + therefore + + + at this moment + + + because + I wanted to attend the concert, for it featured my favorite band. + + + since / because + She prepared thoroughly for the meeting was crucial to her career. + + + some large quantity of something + + + which of two + + + Exclamatory response to a minor disappointment. + Shucks. It's too bad you can't make it to the party. + + + An expression of surprise. + + + Used in place of fuck. + + + used to tell someone, especially a child, to be quiet + + + requesting assistence + + + used as an exclamation to express surprise, taunting, exultation, etc. + + + Used to place emphasis upon something or someone; sometimes, but not always, when actually addressing a man. + Man, that was a great catch! + + + Nonsense! Expresses dismissal or disdain. + Fiddlesticks! It's nothing but smoke and mirrors! + + + An expression of laughter. + + + Used to acknowledge a small mistake or accident. + Oops! I left the lid off the ketchup. + + + to prioritize and sort into groups based on severity of need (usually medically) + + + common name for a genus of gastropods known under the taxonomic name Ariolimax + + + theoretical concept in sociology + + + list of web pages on a website + + + an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + + a south Indian pancake + + + augmentation of intelligence through the use of information technology + + + efficiency measure based on environmental impact + + + of an astronomical body + + + actions to limit climate change in order to reduce the risks of global warming + + + denial, dismissal, or unwarranted doubt about the scientific consensus on the rate and extent of global warming + + + market-based approach used to control pollution + + + total set of greenhouse gas emissions caused by an individual, event, organisation, or product, expressed as carbon dioxide equivalent + + + quantitative methods used to simulate climate + + + umbrella term for the study of the atmosphere + + + decrease in the pH of the Earth's oceans + + + risk resulting from climate change and affecting natural and human systems and regions + + + officer in government or business + + + involving only one sex or gender + + + differential operator in vector calculus + + + mathematical symbol + + + written document used to document consent in a standardized manner + + + set of recommendations for decision-making + + + medical research using human test subjects + + + tructure formed in a sediment by the action of a living organism (e.g. a tube, burrow, footprint, or groove made by crawling across a surface) and preserved when the sediment becomes a sedimentary rock + + + bony spines on the tip of the tail of a dinosaur + + + something ill-considered + + + class of typespecimen + + + person who rejects the efficacy or safety of vaccines + + + vegetation layer above shrubs and under the canopy + + + increasing occurrence of a species in a new habitat + + + another term for a selfie. Usually used in KPOP culture + + + last performance promoting on music shows (KPOP) + 《Goodbye Stage》 BLACKPINK (블랙핑크) - PLAYING WITH FIRE + + + act of correct identification + + + to be alive + + + fictional monster + + + The thing, item, etc. being indicated. + This is a pronoun. + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + box lyre associated with Welsh music + + + fictional technology that renders objects invisible + The first known a example of a practical cloaking device was on a Romulan bird-of-prey spacecraft that crossed the Romulan Neutral Zone in 2266. + + + science fiction weapon + + + continuity that has be retroactively applied to an existing work + + + research field concerned with information technology approaches to handling biodiversity-related data + + + alteration of calcium-rich plagiocale feldspar to fine grained aggregate of secondary sodic-rich minerals + + + ethological class; trace fossils formed as a result of grazing by organisms + + + lithium atom with a charge + + + type of Japanese candlestick pattern + + + to have been altered by corundum + + + to strengthen or fortify using corundum + + + part of a graph + + + to exchange explicit texts or images with someone + + + used to express discontent or dismay + + + used to express surprise + + + lacking romantic attraction to anyone + + + to moderate + + + (of a product) to modify + + + a video blog + + + attractive older woman; acronym of Mom I'd Like to Fuck + + + happening before a pandemic, specifically the COVID-19 pandemic + + + clade of dinosaurs containing all modern birds + + + offensive or lewd + + + gender identity where a person identifies as only partly male + + + transgender with a partially or fully masculine gender identity + + + one sextillionth of a second + + + اینٹرنیٹ تے گل بات دی چوݨ دیݨا + + + a member of the Reichsbürger movement + + + male citizen of an empire + + + drunk + + + device dispensing ink over a metal ball at its point + + + having a crooked back + + + Any organism of the clade Unikonta + + + weird, dubious, or otherwise strange + + + كَان مُمكِن + + + any toad of the clade Bombina + + + any butterfly of the family Lycaenidae + + + any protist in the clade Alveolata + + + any insect of the infraclass Neoptera + + + tartaric acid + + + to arrange to pay debt in installments + + + act of assigning a label + + + act or process of preceding, spatially or temporally, terminating at a determined point + + + a little thing + + + a text-based user interface operated from a command-line console + + + a New Zealand honeyeater, a parson bird + + + a barangay + + + having a reddish-brown color + + + made from terracotta, a hard, baked reddish-brown clay + + + any crustacean of the family Palaemonidae + + + platonic friendship including sex + + + person one has a platonic friendship with, that includs sex + + + female a person whose company one enjoys and towards whom one feels affection + + + stylistically advanced + + + ergonomics + + + one who bunkers, or one who creates a bunker + + + prepare for an immediate event about to happen + + + prepare a weapon for use + + + boat or ship suited to sailing + + + Japanese syllabary + + + vocalisation produced by canines and other mammals + + + type of formal grammar + + + to render illegitimate + + + to trick somebody + + + any even-toed, ruminant mammal in the family Camelidae + + + rodent in the family Caviidae (cavies) + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + a member of the marsupial family Macropodidae (kangaroos and wallabies) + + + like a troglodyte + + + like a troglodyte + + + a specialist in pedology, i.e. soil science + + + someone who studies the behavior and development of children + + + a bird in the family Struthionidae + + + of, relating to, or resembling the ostrich or related ratite birds + + + personal canon of somebody + + + medical practice concerned with feet + + + the scientific study of the morphology and physiology of the feet + + + of or relating to the bat family Molossidae + + + any cactus of the genus Mammillaria; even when not globular in shape + + + Atticora tibialis, a common South American species of swallow + + + like a toad + + + wildflower of the family Iridaceae + + + the Cape vulture + + + rhinoceros + + + shut up! be quiet! + + + cyberattack that utilizes a recently-publicized computer software vulnerability on systems which are yet to be mitigated + + + applied to molar teeth that are V-shaped, narrow at the front and rear, with a sharp apex, and with the two cusps partly or completely fused + + + of or relating to the Zalambdodonta + + + any porpoise in the family Phocoenidae + + + of or designating a person of mixed race, especially a person who is partially of East Asian, Southeast Asian, or Pacific Islander descent + + + any fruit bat in the family Pteropodidae + + + Schawarma + + + Islamic architecture style using alternating coloured bricks + + + shaft allowing light to enter a space + + + of or relating to the bird family Picidae (woodpeckers) + + + in opposition to + + + long live + + + to be honest + + + practice of sitting in public transport with legs wide apart, thereby covering more than one seat + + + an investigation of truth in a civil law case in which the interrogation and inquiry are often accompanied by torture + + + A 'book' containing a student's overall grade + + + Inuit shaman + + + relative, someone who is part of a family + + + impertinent; having chutzpah + + + a disorderly, confusing situation; a mess + + + having something additional applied + + + landlord who rarely visits or attends to the propery he lets + + + six, six of something (often approximately) + + + to move the top of the body downwards + + + coming outside from + Preparations for their departure out of Egypt + + + dreamtime, everywhen + + + recipient of negative affect + + + branch of zoology dealing with the Crustacea + + + study of the geology of celestial bodies + + + study of the interaction between humans and other animals + + + branch of entomology dealing with the Trichoptera (caddis flies) + + + branch of herpetology dealing with snakes + + + branch of ecology that deals with the structure, development, and distribution of ecological communities + + + the study of character including its development and its differences in different individuals + + + systematic description of distinguishing or essential features; the aggregate of these + + + study of the shape of the ear + + + academic and professional field combining gerontology and technology + + + the study of waves or wave motions + + + a branch of anthropology concerned with the study of cultural institutions as distinct from the people who are involved in them + + + the study of a community or society through systematic analysis of what is thrown away as garbage; the branch of anthropology or archaeology dealing with this + + + the practice of looking through the garbage of celebrities, politicians, etc., in search of compromising or incriminating material + + + the study of vibrations and oscillations in the Sun + + + cruel, cold-hearted + + + occurring outside of daylight hours + + + one-hundred-and-twenty-fifth anniversary + + + hilarious + + + cylindrical body that is composed of parallel peripheral rods connected to the axial filaments of flagella + + + ancestor + + + that which shares attributes with another or with itself at another time + + + the branch of aerobiology that is concerned with the bacteria of the air + + + the study of sea birds + + + branch of zoology that deals with the oligochaete worms + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + branch of biology that is concerned with the galls produced on plants by insects, mites, and fungi + + + branch of botany that deals with plant functions + + + the study of mental functioning and behavior in relation to other biological processes + + + theories of personality and behavior not necessarily derived from academic psychology that provide a basis for psychotherapy in psychiatry and in general medicine + + + a fish of the order Isospondyli + + + egg-shaped + + + consisting of a mixture of an essential (volatile) oil and a resin + + + drug addict, homeless person + + + the study of the effects of radiation upon living organisms + + + branch of biology concerned with the study of plankton + + + the study of grasshoppers and locusts (infraorder Acrididea) + + + the study of the nature of ignorance or of what it is impossible to know + + + the study of weather and use of weather and climate information to enhance or expand agricultural crops and/or to increase crop production + + + branch or school of psychology mainly based on the work of the philosopher John Locke + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + the scientific study of aponeuroses + + + the branch of meteorology which studies thunder + + + observation of the heavens as the basis of a religious system; reverence of the heavens + + + branch of biology that studies cells + + + scientific investigation of the atmosphere + + + a treatise on the atmosphere + + + the science of the universe + + + (expressing approval, emphasizing accuracy) + + + (implying alarm or threat) + + + the branch of astronomy concerned with comets. + + + the study of cyclones + + + an environmental movement and philosophy which regards human life as just one of many equal components of a global ecosystem + + + the study of the mind in relation to the electrical activity of the brain + + + of, relating to, living in, or being a controlled environment containing one or a few kinds of organisms + + + the application of scientific methods and engineering techniques to the exploitation and utilization of natural resources (as mineral resources) + + + the science dealing with the brain and its structure and function + + + the study of fungi + + + the study of or knowledge of the diseases of horses + + + the branch of pharmacology that deals with drugs acting on the immune system and, in addition, with the pharmacological actions of substances derived from the immune system + + + the study of karst and karst topology + + + branch of zoology dealing with mammals + + + branch of bryology that deals with mosses + + + branch of botany that deals with the bryophytes (mosses, liverworts, and hornworts) + + + to leave + + + to surpass + + + to kill + + + to humiliate, act aggresively + + + the branch of ophthalmology that deals with neural aspects of the visual system + + + the study of ostraca (potshards or limestone flakes used as a surface for drawings or sketches, or as an alternative to papyrus for writing as well as for calculating accounts) + + + the physiology of extinct and fossil organisms + + + the branch of science that deals with pests and methods of controlling and eradicating them + + + the psychological study of the passions or emotions + + + radiology + + + the scientific study of repairing disturbed ecosystems through human intervention + + + the scientific study of inorganic entities: geology, mineralogy, etc. + + + wearisome repetition of words in speaking or writing + + + the branch of psychology that focuses on how people grow and change over the course of a lifetime + + + the study of turtles and tortoises + + + the study of writing systems and orthography + + + (informal) the art or practice of bluffing or deception + + + a person or people who are unable to leave a place and are thus forced to listen to what is being said + + + to spend time doing unimportant or trivial things + + + to waste someone's time + + + to be sexually promiscuous + + + a center for monitoring electronic communications (as of an enemy) + + + the branch of theology that deals with the attainment of direct communion of the soul with God + + + the study of the time-averaged geographical distribution of cloud properties and the diurnal, seasonal, and interannual variations of those properties + + + the scientific study of human beings and populations from a biological point of view + + + the scientific study of human behavior under natural conditions especially in the context of its origin and evolution + + + the psychology of a person's own mind + + + scientific discipline that is concerned with all aspects of the Earth's structure, composition, physical properties, constituent rocks and minerals, and surficial features + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + the study of facial features + + + a treatise on diseases of the teeth + + + the branch of medicine that deals with diseases of the teeth + + + branch of histology concerned with the nervous system + + + the study of and classification of muscles with reference to their innervation + + + a treatise on electricity + + + a principal service book of liturgies, prayers, and occasional rites used in the Eastern Orthodox Church + + + the application of food science to the development, processing, or preservation of foods + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + a treatise on dialling + + + a victory in which one side or team wins every game, contest, etc. + + + a complete change in something + + + an election when a candidate or party achieves an overwhelming or complete victory, winning in all or almost all districts or precincts + + + not assassinated + + + the branch of psychology concerned with the study of the human mind + + + seismology dealing with records obtained at long distances + + + the branch of medicine studying the effects of psychological phenomena on the immune system; the intersection of psychology and immunology + + + sociology as it relates to psychology, or is influenced by the findings of psychology + + + the classification of mental illness + + + a treatise on fossil animal remains + + + the study of fossil animals + + + the branch of biology that deals with the formation, structure, and development of ova + + + the use of specially designed and fitted contact lenses to temporarily reshape the cornea to improve vision + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + the study of water balance components intervening in agricultural water management + + + the study of the effects of sexually transmitted disease on the skin, mucous membranes, nails, and hair + + + an applied earth science that uses hydrologic principles in the solution of engineering problems arising from human exploitation of the water resources of the Earth + + + the study of the climatic conditions of a large area + + + the study of relative abundances of nuclear species as a means of dating stages in stellar nucleosynthesis + + + a universal theology; specifically, a theology which comprehends all gods and all religions + + + a guide who helps visually impaired runners during a race + + + the study of human society; sociology + + + the study of and collecting of beer mats + + + simple or basic technology; (relatively) unsophisticated technology + + + the study of the spleen + + + the use of climate information in decision-making, impact assessments, seasonal climate forecast applications and verification, climate risk and vulnerability, development of climate monitoring tools, urban and local climates, and climate as it relates to the environment and society + + + the application of weather and climate information to problems facing agriculture and commerce + + + a branch of meteorology that uses synoptic weather observations and charts for the diagnosis, study, and forecasting of weather + + + a library staff person who is not a librarian + + + the application of the data and techniques of climatology to aviation meteorological problems + + + hypnotism + + + the branch of science concerned with the effects of drugs and other chemical substances on plants + + + the phenology of plants + + + psychological discipline that deals with individual psychology techniques applied by an individual, in order to affirm and achieve individual goals such as happiness and self-affirmation + + + archaeological survey and excavation carried out in advance of construction, other land development, or natural destruction of a landscape + + + the study of bounded sets + + + a video that integrates a song or an album with imagery that is produced for promotional or musical artistic purposes + + + a theory or science of faith + + + foolish talking; babbling + + + a monologue + + + medical field that is concerned with rational nutrition, energy and nutrient needs of the body and the ways to alter them with special diets in the treatment of particular diseases + + + the study of fools and folly + + + Adderall + + + technology designed or planned so that people with disabilities are not prevented from using it + + + the branch of mineralogy concerned with the physical properties of minerals, as distinct from their chemical composition + + + natural theology + + + to be realized in the near future + + + non-existent job posting or job interview + + + the making of false statements, lying; (also) an instance of this + + + an approach to archaeology that uses queer theory to challenge normative, and especially heteronormative, views of the past + + + the study of artillery; the practice of using artillery as a weapon + + + the study of artillery; the practice of using artillery as a weapon + + + an older name for algebraic topology: a study that deals with geometric forms based on their decomposition into combinations of the simplest geometric figures + + + the chemistry of metabolic processes; biochemistry + + + singular ‘they’ + + + killed by suffocation in water + + + a structure that stores transactional records, also known as the block, of the public in several databases, known as the “chain,” in a network connected through peer-to-peer nodes + + + drug user, junkie + + + act of toppling, knocking over + + + dumping of waste + + + agricultural food products as a class + + + (reflexive third-person plural pronoun) of their own self + + + analysis of the climate of a single space, or comparison of the climates of two or more places, by the relative frequencies of various weather types or groups of such types + + + the study of relationships between the structure of an organism and the function of the various parts of an organism + + + a branch of mathematics encompassing any sort of topology using lattice-valued subsets + + + branch of radiology dealing with minimally invasive treatment, which reaches the source of a medical problem through blood vessels or directly through a tiny incision in the skin to deliver a precise, targeted treatment + + + the scientific use of mineral springs and hydrotherapy for healing + + + a doctrine or theory concerning matter + + + the science or knowledge of the streets of a town or city; (now especially (colloquial and humorous)) the skills and knowledge necessary for dealing with modern urban life + + + theological theory based on the idea of process + + + an explanation for the origin of a word that is believed to be true, but is, in fact, wrong + + + the transformation of words so as to give them an apparent relationship to other better-known or better-understood words (as in the change of Spanish cucaracha to English cockroach) + + + the branch of science and technology concerned with robots + + + technology + + + the study and analysis of the evolution of a text or texts, esp. through rewriting, editing, and translation; more generally, the study of text production; textual classification + + + the theory or subject of spirit-rapping + + + to treat in the manner of Shakespeare + + + to deteriorate in quality or condition + + + type of mathematical function + + + type of scientific study + + + qaqorpoq + + + talk or gossip of a rural area + + + that occupies oneself + + + to subject to electrolysis + + + to increase the amphibolitic content of a rock + + + to regulate the body’s water content and solutes + + + to perform parathyroidectomy on + + + fine-grained albite-rich rock resulting from contact metamorphism of shales and slates + + + the use of technology innovations to improve and transform the insurance industry, encompassing a wide range of technologies, including artificial intelligence, data analytics, machine learning, and mobile applications, among others + + + the practice of designing, manufacturing, using, and disposing of information technology products in an environmentally friendly way + + + to flow or wash over; to inundate + + + to convert by petrification into jasper + + + to break the law + + + bleating sound + + + to spit a lump of phlegm + + + to work as an adjunct + + + to have been made widely available, formally released + + + to have had works accepted for publication (as an author) + + + act of disturbing, disturbance + + + to make a dull or plangent sound upon impact + + + to pair or team up with another person + + + to make a rejoinder to something or someone authoritative + + + to reply (not necessarily impertinently) + + + the fly agaric toadstool, Amanita muscaria, which was formerly smeared on bedsteads to repel bedbugs + + + mineral, complex sulfate of aluminum + + + to behave in an aimless or idle manner; putter + + + fiddle with + + + sacred object, amulet + + + type of shaman and traditional executioner amongst the Arrernte people + + + hydrous fluoride mineral of calcium and sodium + + + the act or action of performing the high jump + + + joking, teasing + + + understanding, knowledge + + + deep purple-red colour, like that of Burgundy wine + + + musical instrument resembling a guitar with plucked metal strings and a scalloped body + + + close by + + + (of a person) associated, accompanying + + + that hints + + + the state of being a servant + + + a white, deliquescent crystalline compound, ZnCl₂, used as a wood preservative, a disinfectant, a soldering flux, and for a variety of industrial purposes, including the manufacture of cements and paper parchment + + + foolishly stupid: clueless + + + act to gargle + + + the fragrant wood of the root and stem of either of two shrubs (Convolvulus scoparius and C. virgatus) native to the island of Tenerife + + + a dark-gray crystalline compound, GaAs, used in transistors, solar cells, semiconductor lasers, and other semiconductor applications + + + the branch of astronomy concerned with comets; cometology + + + a treatise on comets + + + description of trees + + + the recording of tree growth by a dendrograph + + + examination of the aorta using x-rays following the injection of a radiopaque substance + + + acute febrile disease especially of swine and some nonhuman primates caused by a picornavirus + + + dislike of or prejudice towards people, cultures, and customs that are foreign, or perceived as foreign; xenophobia + + + the study of the geographical distribution of extinct or fossil animal species or populations + + + the compilation, description, or analysis of myths + + + a critical anthology of myths + + + a history or description of fevers + + + an electrotype process by which a copy of an engraved plate is obtained with a raised surface, suited for letter-press printing + + + the study of luminous atmospheric phenomena, such as rainbows, parhelia, etc.; a treatise on this subject + + + wingtip device + + + small or rudimentary wing + + + medium or membrane used for ultrafiltration + + + pertaining to tourists or touring + + + apparatus for determining the direction from which radio waves are coming + + + diseased or morally degenerate city + + + instrument for measuring the absorption of light or other radiation + + + instrument for measuring the concentration of alcohol + + + able to communicate fluently in two or more languages + + + fictional work lacking traditional elements of the novel + + + tartar deposited from wines completely fermented + + + avgas; gasoline for use in piston-driven airplanes + + + lacking mutual consent + + + pay issued retroactively + + + instrument for determining the expansion of a liquid by heat + + + unit of area equal to 10 ares + + + photoconducting substance or device + + + class of substances released into water by eggs of some aquatic animals + + + wood-eating (of certain beetles) + + + chief administrative officer + + + board bearing notice; signboard + + + relating to particles of rock that have been broken down from pre-existing rocks by erosion and weathering + + + well-mannered, good-natured + + + (of an animal) to lie on stomach with legs stretched out + + + that chokes, stops respiration + + + each week, per week; weekly + + + ritual ablution; wudu + + + having or resting upon three feet or legs; three-footed, three-legged; of the form of a tripod + + + conveyed by instruction + + + the fruit of the shrub or small tree Amelanchier alnifolia (family Rosaceae) + + + in expectation of, anticipating + + + electronic radio component + + + to strike, to knock + + + to bump into or against + + + to have sexual intercourse with + + + of a structure, precomposed + + + to swirl or rotate + + + to feel or search with hands; to grope about + + + to restore to a former legal status + + + to put or hold forward in opposition against or to + + + to utter (words or prayers) + + + to bring forth; to give off + + + to affect, exhibit affectation + + + to make or shape by artifice; to construct, contrive + + + to place before in position + + + decompound + + + to make (a molecular structure) into a supercoil + + + to place in a tomb + + + for a tornado storm to occur + + + to stimulate the transcription of (a gene) by binding to DNA + + + to carry out transfer of phosphate between molecular compounds; to exchange phosphate groups between organic phosphates, without going through the stage of inorganic phosphates + + + exhibiting three phases + + + the use of ice-penetrating radar to investigate the thickness, roughness, motion, and debris of a body of ice, and to measure and detect crevasses and sub-ice lakes + + + to react with insufficient enthusiasm or vigor + + + to move quickly from place to place + + + to move as if by hopping + + + to provide education at home + + + to greet with a high-five + + + to boil an egg until the white and yolk are hard + + + a squat broad-mouthed usually covered jar (as of bronze, pottery, or jade) used mostly as an incense burner + + + a psychological affliction in which an individual believes his genitals or her vulva and nipples are retracting and likely to disappear + + + to express admiration or pleasure by saying ‘ah’ + + + to scrape with a curette + + + to deprive/divest of nuclear armaments + + + putting anthropology to practical use in its broadest sense, ranging from research and design to the implementation and management of an organization, process, or product + + + to present or report in a sensational, lurid, or melodramatic manner + + + to re-establish or restore blood supply to + + + any of various theories asserting the validity of objective phenomena over subjective experience + + + an ethical theory that moral good is objectively real or that moral precepts are objectively valid + + + a 20th century movement in poetry growing out of imagism and putting stress on form + + + philosophical system named and developed by Russian-American writer and philosopher Ayn Rand + + + the study of enzymes at very low temperatures + + + the quality or character of being vainglorious + + + without the use of a condom; (also) not in possession of a condom + + + olive-green + + + Originally: to utter an exclamation or sound represented by ‘ouch’. Now also: = hurt + + + the position, status, or character of a puny; junior position or status; inferiority + + + a large building used for storing farm machinery, vehicles, etc. + + + a small quantity of loosely-aggregated matter resembling a flock of wool, held in suspension in, or precipitated from, a fluid + + + a bright or dark patch on the sun + + + either of two small lobes on the lower posterior border of the cerebellum + + + substance giving butter its characteristic aroma + + + money + + + comments or explanatory notes about a recording printed on the jacket or an insert + + + a fifth anniversary + + + a period of five years + + + artillery soldier next in rank below a gunner + + + to collaborate on a design with someone else + + + of, pertaining to, or derived from intuition; of the nature of intuition + + + the place in which a person or thing is; location, whereabouts + + + an organism that feeds on mites + + + drawn, allured + + + against; in return for + + + used to, acquainted with + + + (often capitalized) a jump in figure skating from the outer forward edge of one skate with 1¹/₂, 2¹/₂, 3¹/₂, or 4¹/₂ turns taken in the air and a return to the outer backward edge of the other skate + + + to assail or prey upon after the manner of a vampire + + + in a westward direction + + + scumbag; disreputable person + + + to pronounce with a harsh or guttural voice + + + to sing or enunciate in a throaty voice + + + to work very hard + + + utilization of computer knowledge in a clever way + + + remove pieces + + + cough + + + the wife of a dauphin + + + process of becoming prosperous + + + act of freely giving + + + unjoining, disintegration + + + causation of damage + + + engage in sexual relations, having been the recipient of sexual relations + + + greet, accept, happily permitted + + + collaboration + + + to write or record in a diary + + + to formulate a strategy + + + to make a tumult, commotion, or disturbance; to raise an insurrection, to riot + + + a gene-hunting technique that traces patterns of disease in high-risk families + + + a nutritional supplement composed of serum-derived bovine protein concentrate containing high levels of immunoglobulins (Ig), particularly IgG, with the potential to improve nutritional status + + + being alone : solitary, isolated + + + to recompense, reward; to pay for something done + + + deserted; left solitary or desolate + + + tissue derived from reproductive cells (egg or sperm) that become incorporated into the DNA of every cell in the body of the offspring + + + result + + + describing a type of assessment in which the learner’s current level of achievement, skill, knowledge, or understanding is assessed against their own previous level, rather than against fixed criteria or a norm + + + describing a process of learning in which the same content is covered more than once, but at an increasingly challenging level, as happens within a spiral curriculum model + + + of, relating to, or characterized by dialogue + + + depending on or exercising opinion + + + worry about, be emotionally involved with, cause anxiety about + + + indicating a particular condition or outcome. + + + a Japanese bamboo flute + + + let go + + + the act or process of macadamizing + + + a diverse range of critical, iconoclastic, and non-linear approaches to researching the historical development of media technologies and the history of ideas about them + + + the academic investigation of the mass media from perspectives such as media sociology, media psychology, media history, media semiotics, and critical discourse analysis + + + the disclosure of an inappropriate amount of detail about one's personal life + + + an ornament worn in a perforation of the lip + + + having the form of an animal + + + of, relating to, or being a deity conceived of in animal form or with animal attributes + + + jar with a human face, usually in appliqué technique, formed on the shoulder; the function of these vessels was often funerary + + + obtaining or using from a specific source + + + providing to, being the source + + + summing + + + saying + + + to inspire guilty feelings + + + move downward + + + be defeated + + + become + + + the act of occurring + + + a substance being studied in the treatment of follicular non-Hodgkin lymphoma + + + an antiviral agent used to prevent or treat cytomegalovirus infections that may occur when the body's immune system is suppressed + + + an orally bioavailable, synthetic, highly selective adenosine A3 receptor (A3AR) agonist with potential antineoplastic activity + + + well known, popular, renowned + + + cockery + + + go by + + + a dice game resembling hazard + + + uncle; nuncle + + + a fool + + + get by + + + the branch of zoology that deals with the ascidians or broadly the tunicates + + + person or animal of small size and stature + + + child + + + oops; sorry, I just let off + + + theology based on the Bible; specifically : theology that seeks to derive its categories of thought and the norms for its interpretation from the study of the Bible as a whole + + + a design where signal paths are balanced or symmetrical, often used to reduce noise and improve signal integrity, especially in audio and RF applications + + + the technology approved by legislators or regulators for meeting output standards for a particular process, such as pollution abatement + + + subfield of sociology that examines the role of culture in shaping social life, including how people create meaning, form groups, and interact with cultural expressions within institutionalized settings + + + move forward or upward + + + stretch of water where the waves break over a submerged reef + + + sea urchin + + + porcupine fish + + + to incite or urge a dog to attack or chase + + + (mathematics) of or pertaining to the fiber of a map + + + the application of methods and principles of psychology to problems of military training, discipline, combat behavior + + + free-climbing a route, while lead climbing, after having practiced the route on top-rope beforehand + + + explore, discover new places or things, searching out new places + + + botch, mess up, make a hash of, short for 'fuck up', screwed up + + + the study of human races + + + the branch of entomology concerned with fleas (Siphonaptera) + + + follow, pursue + + + the branch of paleontology dealing with ancient and fossil animals + + + to come down, lower oneself, or arrive, lowering + + + draw attention away from something, not focused on what is at hand + + + make more western (new world), make more western (European-based cultures) + + + relinquish, give up rights to + + + act or process of filling with liquid or emptying of liquid + + + act or process of moving up and down + + + monitor, watch, serve as police for, enforcing the law + + + theology based on and attainable from revelation only + + + the geological features of a given region specifically excluding superficial deposits such as clay, sand, etc. + + + the hobby of collecting sugar packets + + + act/process of discarding, throwing away, dismantling for scraps + + + the process of dwindling; gradual diminution or decline + + + the practice of diagnosing disease by visual inspection of the patient's urine; uroscopy + + + the branch of zoology concerned with quadrupeds + + + to save or relieve from + + + act of renting + + + be a landlord + + + the initial topology (or induced topology or strong topology or limit topology or projective topology) on a set X, with respect to a family of functions on X, is the coarsest topology on X that makes those functions continuous + + + the classification of lakes based on various characteristics + + + act/process of moving a fluid, or fluid-like, substance from a container, especially into another in a controlled stream + + + send a text message via cell phone + + + an expert in bryology + + + enticed, seduced, inclined to + + + relative unit of measurement used in mapping of chromosomes; one hundredth of a morgan + + + act or process of increasing incrementally + + + a system of classification that creates distinct, non-overlapping categories or "types" to represent different aspects of a phenomenon + + + act of looking intently, gazing fixedly + + + act of setting one thing atop another + + + a medical specialty that uses medical imaging techniques to diagnose and treat diseases + + + a creative person + + + with confidential or sensitive information excluded + + + type of combustion system that utilizes a circulating bed of solid particles, like sand or limestone, to burn fuel + + + concept in object-oriented programming that allows a new class (a subclass or derived class) to automatically acquire the properties and behaviors of an existing class (a superclass or base class) + + + the tools, resources, and technological systems medical professionals use to diagnose, understand, and treat patients + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + of, involving, or relating to abnormal physiological processes; relating to pathophysiology + + + to make a sortie; to sally + + + a catalogue of saints, or a collection of saints' lives + + + to direct the course + + + (cause to) experience stress (phrasal) + + + The act of renting a place as a landlord + + + The act of renting a place as a tenant + + + contract work to an outside entity + + + an act or instance of touching up + + + to say as a quick retort; to say (a witty or sharp reply) in answer to an earlier remark + + + the act of engaging in a lively and witty exchange of retorts, or the skill of making clever and quick replies + + + the use of growth rings in trees to date when timber was felled, transported, processed, and used for construction + + + short for 'superimpose:' put one thing atop another + + + moving with a whooshing noise + + + hold a second job + + + to feed or fatten (livestock, especially sheep) on turnips + + + the study of urine or the science of the urinary system + + + the study of fungi in the Zygomycota group (bread molds, etc.) + + + manner of motion, jumping + + + having a freckled face + + + a hollow or depression in a surface; a wrinkle + + + arm strengthening exercise + + + go away + + + to perform a pole vault + + + confounded, baffled, perplexed + + + a disorder of vocal communication marked by involuntary disruption or blocking of speech (as by abnormal repetition, prolongation, or stoppage of vocal sounds) + + + The act of making flakes + + + twist (a body part) emotionally + + + the ability of a layer of a substance to absorb radiation expressed mathematically as the negative common logarithm of transmittance + + + covered with insulation, protected + + + The act of explosive air motion + + + conscious abandonment of allegiance or duty (as to a person, cause, or doctrine + + + The act of experiencing great pleasure + + + make acidic + + + well_up: gather; upward motion of water, or as if of water, perhaps from a spring + + + acquisition or development of nuclear weapons by a nation or military force + + + to resign; to withdraw or step down from one's position or occupation + + + opposed to war + + + nearby, spatially or temporally; be imminent or immediately relevant + + + the branch of geology that studies the deformation and movement of the Earth's outer layers, specifically its crust and lithosphere, along with the forces that cause these changes + + + (obsolete) slaughter + + + (archaic) the power of quelling + + + act of lifting and throwing (someone) to the ground, as in wrestling + + + an illogical situation for which the only solution is denied by a circumstance inherent in the problem or by a rule + + + label by color + + + come by: acquire + + + express two or more genes simultaneously + + + having skin with certain characteristics + + + traction opposed to another traction, used in reduction of fractures + + + act in responce to a stimulus + + + convert into a horny tissue + + + cause to precipitate together + + + act or process of causing to precipitate together + + + punish + + + surgery that creates a connection between the jejunum and a cyst for drainage of the cyst + + + to remove necrotic tissue or foreign matter (f. ex. from a wound) + + + remove mast + + + remove rat + + + The act of decreasing oxygen saturation in hemoglobin + + + goof off, screw around + + + mastocel + + + oversatiate with cuban food/culture + + + surgical birth + + + combine with a similar molecule to form a dimer + + + scale down + + + person who never laughs + + + expression of satisfaction + + + flow outward + + + capable of being elected by voters + + + to drive in the slipstream of a vehicle; draft + + + to travel in the slipstream of (someone), especially in order to overtake them + + + within the skull/vertebrae, but outside the brain/spine + + + having a normal volume of bodily fluids + + + outside of the family + + + mobilization of the lower end of the esophagus and plication of the fundus of the stomach up around it + + + enjoy, be amused by + + + surf move + + + give by hand + + + gulp all the way + + + act or process of looking until found + + + to rage around, to cause distruction + + + increase in blood pressure and pulse pressure + + + overproduce granulation tissue + + + cause to over expand, over-expanded + + + buttress or reinforcing wall + + + graphic organizer in the form of illustrations or images displayed in sequence for the purpose of pre-visualizing a story + + + The act of analyzing or identifying proteins via antigen-antibody specific reactions + + + separate an antigen from a solution using an antibody that binds to the antigen + + + stain with an antibody + + + a miniature optical disk + + + to make into a landfill, fill with garbage + + + kayak, boating + + + (cause to) emit + + + form material by mixing/massaging in repetative folding motion + + + tightly tangling, pinching, or impeding progress of + + + Fight primarily with one's feet, often as a form of exercise. + + + likely, appearing + + + secure + + + forming or dividing into lobules + + + abnormal rotation + + + to cause a meaningful change, improve; improve the world + + + purposeful attempt + + + any of several French aperitif wines flavoured with quinine + + + cinchona + + + saving money + + + to purchase an option on something + + + removal of all or part of the omentum + + + producing an abnormally small amount of urine + + + badmouthing, with intent to discredit + + + name + + + move like water in an outward direction + + + make too calm with (too much) drugs + + + inflate too much + + + graze to the point of damaging the life cycle of vegetation + + + excessively express a gene by producing too much of its effect or product + + + categorize something as a pathology + + + to become more like a southern region + + + a specialist in photolithography + + + destroy tissue with an intense laser beam + + + act of wishing that someone lacked a particular superior quality/achievement/possession of theirs + + + be miserly; avoid spending money + + + blow the whistle on; alert the authorities or public of wrongdoing + + + to take quickly + + + use the WhatsApp to message + + + hold, support weight + + + removal of all or part of the vagina + + + upgrade; make higher-end + + + lift spirits + + + not able to be dislodged + + + cut beforehand + + + add fertilizer beforehand + + + make beforehand + + + preliminary stages to a production + + + to schedule ahead of time + + + conduct a preliminary screening (weeding out) process + + + affix a signature in advance + + + to put into a specific mental state (usually excitement or gullibility) + + + excited or deceived + + + challenge again + + + act of reexamination + + + the act or process of showing again + + + the act or process of putting something somewhere, again + + + act of attestation to the truth of, again + + + find again, notice again + + + call on the phone, again + + + make a corporation again + + + re-introduce or re-admit + + + the process of restoring function by supplying with nerves + + + operative value/efficacy/efficiency, vigor/energy + + + interview or be interviewed again + + + to offer again + + + by night, in the night, overnight + + + to populate (something) again + + + to put a price on something, again + + + the picking of pockets + + + invite, again + + + relating to rhizomes + + + the act of re-supplying with vessels to conduct fluid + + + removal of one or both ovaries and one or both Fallopian tubes + + + characterized by quirks; quirky + + + divide a cavity by means of a partition + + + sign_off: give stamp of approval + + + showing off + + + denigrate, insult + + + football player, footballer + + + dab, apply a gloppy substance, onomatopoetically + + + act of running at top speed + + + squaredance + + + to insert a stent to prevent closure + + + make a short visit + + + to assume (something) as given, fail to appreciate something + + + to discover bit by bit; to extract, obtain, or pry/prise; to get out + + + event or party, especially one featuring dancehall reggae or ragga music + + + the process of literally or figuratively sloppily chopping + + + the act of giving a response or reply + + + at what time, in which moment + + + at which, on which, during which + + + cardinal number + + + number between eleven and thirteen + + + type of website that visitors can easily and quickly edit + + + ostensible substance coined to trick someone into asking 'what's up, dog?' + "Umm, is it me or does it smell like up-dog in here?" / "What's up-dog?" / "Nothin' much what's up with you?" / "Oh, oh, wow! I walked right into that. Oh, that's brilliant!" + + + male person or animal already known or implied + + + person whose gender is unknown or irrelevant + + + word used by Donald Trump in a tweet, presumably a typo of “coverage” + Despite the constant negative press covfefe + + + placed above + + + mathematical model combining space and time + + + The (thing) here (used in indicating something or someone nearby). + This word is a determiner. + + + The known (thing) (used in indicating something or someone just mentioned). + + + The known (thing) (used in indicating something or someone about to be mentioned). + + + A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + + (of a time reference) Designates the current or next instance. Cf. next. + + + through the means of + + + near to + + + of a kind + + + English function word + + + The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. + That pronoun is different with this determiner. + + + target of an action + + + indicating a location for an event + + + every person, everyone + + + concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + + absence of anything, vacuum + + + item(s) that are separate and distinct from the item(s) under consideration + + + philosophical, psychological and anthropological concept that refers to the opposite of one's own identity + She and others were disappointed in the results of the election + + + up to a certain point in time + + + according to + + + no matter what; for any + + + anything that + + + More than one (of an indeterminate set of things). + Various books have been taken. + There are various ways to fix the problem. + You have broken various of the rules. + + + all over + + + from one end to the other + + + in view of all the circumstances or conditions + + + as a whole : generally + + + with everyone or everything taken into account + + + physical sensations caused in the mouth by a substance, e. g. food or drink + + + flying insect typically within the Diptera family + + + of poor or inferior quality + + + greeting of non-binding nature + + + With one’s legs on either side of. + The boy sat astride his father’s knee. + + + Except, other than, besides. + He invited everyone to his wedding bar his ex-wife. + + + phrase used when someone is leaving + + + container for a set of identifiers + + + make fuzzy, wooly, not having hard edges + + + expression of surprise or disbelief + + + chemical element with atomic number 113 + + + English archaic personal pronoun + Thou shalt not steal + + + that is perfect; that is it + + + claiming success or a win + + + remove ink + + + Used as an expression of agreement with what another person has said, or to indicate that what they have said equally applies to the person being addressed. + I'm really busy today! —Ditto! + + + number between 49 and 51 + + + anthropomorphized animal + + + НДС + + + small plate used to hold Eucharistic bread which is to be consecrated during the Mass + + + of or resembling pork; piglike; fleshy, obese + + + computer programming + + + time off at home or in one's local community + + + Synthetic ultralight material + + + Someone who rides a bicycle + + + Someone who rides a motorcycle + + + plastics derived from renewable biomass sources + + + polymer produced by a living organism + + + a set of preventive measures designed to reduce the risk of transmission of infectious diseases + + + treatment of diseases with biological materials or biological response modifiers + + + type of radiation therapy + + + wildfire happening in the bush + + + natural disaster: wildfire in bush land + + + A lysosomal storage disease characterized by the abnormal accumulation of cystine in the lysosomes. It follows an autosomal recessive inheritance pattern and has material basis in mutations in the CTNS gene, located on chromosome 17. + + + non-binary: outside or beyond the gender binary; not exclusively male or female + + + quality of being ready to deploy + + + land with little water + + + branch of physiology + + + a science that deals with the practical application of electricity + + + set on fire + + + study of music in cultures + + + medical condition + + + stream or spray upward + + + provide with a function + + + systematically eliminate a population + + + genetically harmful + + + science relating to the Earth or planets + + + graphical user interface element that allows the user to select or unselect an item + + + shiny coating on an object + + + process of coating with a glaze + + + glass part of a wall or window + + + rising support + + + misplaced organ or tissue + + + highest part of a hill + + + pertaining to hydrology + + + a branch of dentistry dealing with dental implantation + + + between cells + + + pertaining to karma + + + highest part of a lake + + + relating to macula + + + medical condition with too many mastocytes + + + blood flow through smallest vessels + + + engineering of microscopic devices + + + funding for low-income entrepreneurs + + + create small particles with a micromold + + + small-scale mineral structure + + + involving multiple academic disciplines + + + useful for multiple purposes + + + having multiple layers + + + engaging multiple forms of communication + + + science or profession of museum organization and management + + + study of matter at near atomic scale + + + science of drug effects on the nervous system + + + not containing iron + + + type of fabric + + + process by which cancer begins + + + branch of pharmacology + + + harden by exposing to light + + + found in a river bank or bed (minerals) + + + plasmon analogue of electronics + + + to carry over a portage + + + to move gear over a portage + + + pertaining to primatology + + + artificial body part replacement + + + undergo pyrolysis + + + study of radioactivity in Earth’s ecosystems + + + return to circulation + + + (cause to) go around again + + + reproduction of graphics + + + happy + + + to act as a steward for : manage + + + to perform the duties of a steward + + + make ready + + + Japanese pornographic animation, comics, and video games + + + orphan software + + + from the beginning + + + narrative technique of beginning a story at the beginning of the events + + + provision of tools + + + an image file in the Graphics Interchange Format file format + + + any short animated image without sound, regardless of file format + + + at what time. + + + at such time as + + + at the time of the action of the following clause + The show will begin when I get there. + + + conjunction + + + relating to students receiving postsecondary education and not yet graduated + + + study of the flow of urine + + + pertaining to urology + + + an enclosure where kakapo are kept + The second kakaporium (Figure 2) is also on a gentle slope on the north-east corner of the remnant forest, and is an open plan design. + Sometimes called the kakaporium, the pen was safe and stoat-proof. + + + anything (sometimes indicates the speaker doesn't care about options) + + + ability of an item to be used repeatedly before discarding + + + use of existing assets in some form within the software product development process + + + type of fossilization + + + behind a paywall; requiring payment to be accessed + It seems ironic that scholars working outside universities may be able to afford to publish only in paywalled academic journals that they are unable to read. + + + type of mineral containing arsenic + + + implement for sprinkling holy water + + + male Buddhist monk + + + type of rice cake + + + branch of zoology that deals with the Bryozoa + + + type of pasta + + + type of bacterial toxin + + + folded pizza + + + application of information technology in chemistry + + + scientist studying algae + + + game usually played on a table or other flat surface + + + product for tabletop game + + + organism that maintains its body temperature + + + type of old snow atop glacial ice + + + herbiovre eating low-growing plants + + + Russian log hut + + + very small sovereign state + + + detailed microscopic state of a physical system + + + policy of having one’s cake and eating it too + + + in an accepting manner + + + specifically for letters: referring to or naming in a manner that uses the letter itself at the start of the reference or name + + + event that happens with probability one + + + similarly, in response; correspondingly + + + as if an artist were doing something + + + in a manner suggestive of something being baked + + + unfathomably/endlessly/inexhaustibly + + + in a bustling manner + + + without charm (in a charmless manner) + + + doing without emotion or feeling + + + in a curable manner + + + destroying the looks of something + + + a monosyllabic word or form that is added as a suffix to another word and cannot stand by its own + + + like an inscription in the beginning of a book or over the entrance to a building + + + honestly and without cheating or lying + + + in a fathomless manner + + + time period of two weeks + + + shamelessly/brazenly + + + in a manner without a hat + + + very, a lot, with intensity + + + in an ironic or sarcastic manner + + + one acting unhelpfully/insensitively/tactlessly (not considering the consequences of their actions) + + + disgustingly/foully/repulsively/shockingly + + + quality of fictional events which are not seen, but merely heard by the audience or described or implied by the characters + + + in a circle/ring/spherical form, round about + + + so as to be without equal (in a peerless manner) + + + identifying textual reference, cross-referencing + + + in a quarrelsome manner + + + in a rootless manner + + + done in a brilliant, clever or skillful manner + + + in a shiftless (e.g. lazy/indolent) way + + + in a spiritless manner + + + now, immediately + + + in a toothless manner + + + in a trackless manner + + + in accordance with that which is true + + + in a ubiquitous manner + + + in a venturesome manner + + + How, or in what way. + Wherein did I misspeak myself? + + + foolishly/stupidly + + + study of ancient water courses + + + study of hydrological features at periods in the historical, prehistoric, or geological past + + + water-based motor sport + + + landmass containing more than one continent + + + type of small car + + + collective organism composed of many individuals + + + release of a product from its manufacturing facility + + + chemical compound + + + infraspecific name + + + Zika virus protein found in isolate Zika virus/A.taylori-tc/SEN/1984/41671-DAK + + + cell type + + + protein + + + protein + + + protein + + + Describe or represent in terms of a parameter + + + study of the evolutionary history and relationships among individuals or groups of organisms; application of molecular - analytical methods (i.e. molecular biology and genomics), in the explanation of phylogeny and its research + + + vibrations with frequencies lower than 20 hertz + + + form of a fungus + + + a publication's editorial leader who has final responsibility for its operations and policies + + + denied recognition + + + to fill with alacrity; to energize, invigorate + + + to moisten (a thing) + + + to wet lips or throat with drink + + + to form skin + + + to make stupider + + + to cause to suffer loss of money, property, or reputation + + + to make to resemble jazz + + + to form a salt + + + convert into or enrich with silica + + + establish again + + + to yield tribute + + + to pay as tribute + + + (indicating movement, direction towards a place) + + + before, until (indicating relation to a position in time) + + + (indicating application of or benefactive relationship with) + + + multi-purpose mobile device + + + practice of spinning wheels while keeping vehicle stationary + + + emotionally and physically drained beacuse of any task + + + person listed in the author list of a creative work + + + pliable transparent plastic material + + + property of that materials that exhibit both viscous and elastic characteristics when undergoing deformation + + + use of chemical compounds to prevent the development of a specific disease + + + the nanostructure of a biological specimen that can be viewed with ultramicroscopy or electron microscopy + + + the process of one or more receptors activating another + + + chemical reaction + + + double layer of closely packed atoms or molecules + + + class of chemical compounds + + + periodic structure of layers of two or more materials + + + peripheral system disease that is characterized by damage affecting peripheral nerves (peripheral neuropathy) in roughly the same areas on both sides of the body, featuring weakness, numbness, pins-and-needles, and burning pain + + + Process of active transport by which a cell secretes intracellular molecules contained within a membrane-bound vesicle + + + atom that has excess nuclear energy, making it unstable + + + ideograms used in electronic messages and web pages + + + those who use telecommunications technologies to earn a living and, more generally, conduct their life in a nomadic manner + + + application of ultrasound + + + Process of a disordered system forming organized structures without external direction. + + + addition of a sulfate group to a molecule. + + + A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one cell to that of an adjacent cell. + + + Embryological process + + + class of chemical compounds + + + class of enzymes, type of hydrolase + + + the time period during which a specific antibody develops and becomes detectable in the blood + + + physician who treats critically ill patients in the ICU + + + physical damage to body tissues caused by a difference in pressure + + + cell line derived from cancer cells + + + Clipping of promotion. + + + that is made cognizant of/realized + + + (derogatory) person born in the United States to non-citizen parents + + + hybrid instrument designed as a cross between the Dobro-style guitar and the banjo + + + a school for training in various arts of self-defense (such as judo or karate) + + + regular non-binary companion in a platonic, romantic or sexual relationship + + + hatred, irrational fear, prejudice, or discrimination against transgender people + + + a person to whom is given the enjoyment of the revenues of a monastery, hospital, or benefice + + + an annoying, contemptible, or inconsequential person + + + The practice of making unverified or misleading claims which misrepresent the appropriate level of human supervision required by a partially or semi-autonomous product, service, or technology. + + + wood from a beech tree + + + able to be received; which has the ability to be received + + + Sekai no Owari single + + + swimming while breathing through a snorkel + + + elect again to the same position + + + From the higher end to the lower of. + The ball rolled down the hill. + + + regarding; considering + I wrote to him respecting the proposed lawsuit. + + + While waiting for something; until. + Pending the outcome of the investigation, the police officer is suspended from duty. + + + Across, athwart. + + + in addition to what has been said previously + + + in another way + + + or else + + + wherever + + + In advance of the time when. + Brush your teeth before you go to bed. + + + What place. + Where did you come from? + Where are you at? + Where are you off to? + Where you off to? + Do you know where you came from? + + + whatever person + + + look, see, behold . + + + No! Not at all! + + + (expression of strong feeling) + + + An exclamation yelled to inform players a ball is moving in their direction. + + + an imitation or representation of the grunt of a pig + + + An exclamation to invoke a united cheer: hip hip hooray. + + + A liturgical or variant form of hallelujah. + + + Ellipsis of stand fast, a warning not to pass between the arrow and the target. + + + Indicating surprise, pity, or disapproval. + Dear, dear! Whatever were they thinking? + + + A mild expression of annoyance or exasperation: bother! + + + Expressing good wishes when greeting or parting from someone; hello; goodbye. + + + Expressing exasperation. + We're being forced to work overtime? Oh, brother! + + + no longer in vogue + + + disruption caused by a disagreement or misunderstanding + + + heritage related to sounds, smells, etc. + + + name considered ill-suited + + + code name + + + name consisting of only one word + + + political movement + + + hypothesis + + + cylindrical section of a naturally occurring substance, usually obtained by drilling with special drills into the substance. + + + Energy usage that meets the needs of the present without compromising the needs of future generations + + + economy based on low carbon power sources + + + global cooling phenomena + + + capacity of a socio-ecological system to maintain function during climate change + + + natural reservoir that stores carbon-containing chemical compounds accumulated over an indefinite period of time. + + + archaic Greek letter + + + sensation that an event has been experienced in the past + + + asian motorbike + + + someone that asserts that the 2001 terror attacks are at the center of a conspiracy + Despite Maxwell’s efforts, the truthers doubled down, more certainthan ever that there was a conspiracy afoot. + At the Eastern Bloc coffee shop, we sat through a few revolutions of customers stopping to eat and talk and laugh, and Charlie seemed to feed off of it, raising his voice so that bystanders could easily hear him explain from within a cloud of American Spirit cigarette smoke why he was no longer a truther. + + + someone who is convinced that a powerful conspiracy is actively hiding the real facts regarding a significant topic or event from the general public + + + personalized character created by the furry fandom + + + attack from the air + + + state or condition of being unsentimental + + + a file that uses the jpg file format + + + potato + + + potato + + + attribute in video game representing the health of a game character + + + Virtual reality device in Star Trek + + + to alterate a previously established facts in the continuity of a fictional work + It was in the development of this sequel—the more mature epic fantasy The Lord of the Rings—that Tolkien began to retcon certain events from The Hobbit. + + + the practice of alterating previously established facts in the continuity of a fictional work + Retconning has been made most explicit in the imaginary worlds of the superhero "universes" found in comic books published over the past seventy-five years by DC Comics and Marvel Comics. + + + a South American rodent + + + a despicable person + + + a contemptible person + + + baseball position + + + fine mica mineral; commonly occurs as alteration mineral of orthoclase or plagioclase feldspars in areas subjected to hydrothermal alteration + + + special consideration to individuals solely on the basis of their species membership + + + silly, foolish + + + parameter used to control machine learning processes + + + species occurring outside its native range + + + a member of Generation Z + + + a female breast + + + reluctant to wear face masks during a disease outbreak + + + skeptical of the usefulness of face masks + + + attempting to trick a person into revealing information + + + abbreviation consisting of the first letters of words + + + member of the Afrotheria clade of mammals + + + nothing of value, emphatically nothing + + + attracted to both the same and opposite sex or gender + + + condition where a person differs from normal male or female physical characteristics + + + three-dimensional + + + of or relating to a lynx + + + sharp-sighted + + + one who vapes + + + a trucking rig consisting of a tractor and a trailer and typically having eighteen wheels + + + outdoor camping with amenities and comforts not typically had while camping + + + extremely good or impressive + + + smartphone sold by Apple, Inc + + + laughing out loud + + + a single piece in the game of milk caps + + + drunk + + + able to find in a Google search + + + the point on the compass or the direction midway between east and southeast + + + fifth-generation + + + 5th generation of cellular mobile communications + + + collective of users of a service + + + any weevil in the family Curculionidae + + + any bird of the family Acanthizidae + + + any insect of the clade Heteroneura + + + Anolis carolinensis + + + any moth of the clade Pterophoridae + + + an instance of someone buying many things in a short period of time + + + naturally-occurring retinol (vitamin A) precursor obtained from certain fruits and vegetables with potential antineoplastic and chemopreventive activities + + + official postnominal title + + + designating lesbians and gay men collectively + + + of or relating to lesbians and gay men + + + designating lesbians, gay men, and bisexuals collectively + + + of or relating to lesbians, gay men, and bisexuals collectively + + + in plural form, lesbians and gay men collectively + + + in plural form, lesbians, bisexuals, and gay men collectively + + + class of yellow or white flavonoid pigments found in plants + The yellow comes from anthoxanthins, powerful protectants against free-radical damage. + The variety of anthoxanthins is greater than that of anthocyanins, and new anthoxanthins are continuously being discovered. + + + تحریکِ التواء + + + a special group of people, a committee, a delegation, etc. + + + worthless, bad, horrible, untrue + + + person who attends to customers by serving them food and drink + + + having a sexual orientation that changes over time + + + Marxist term to describe the underclass + + + condiment made typically of peppers, pickles, grated coconut, salt fish, or fish roe + + + insulting and racist term of address or reference to an Indian man + + + insulting generic name given to an Indian trader or hawker, particularly a vegetable-hawker + + + building or room where computer servers and related equipment are operated + + + electricity + + + elastic band + + + brownish-red clay that has been baked and is used for making things such as flower pots, small statues, and tiles + + + reddish-brown color + + + a hybrid between a zebra and any other equine + + + related to or resembling a zebra + + + of or among the highest rank, level, importance, or quality + + + relating to or in the style of brutalism + + + used to describe a person who is aged fifty or more and is still attractive and successful, especially someone famous + + + one who wields something + + + the revival of the policies and practices of Brezhnevism + + + corundum; ruby or emerald mineral + + + collection of records, documents or works + + + having great girth + + + To look through something very quickly, roughly, or energetically + + + someone who is a foreigner in Japan + + + pseudoscientific alternative medicine method using colored light + + + used to wish someone the best of luck and that events will turn out in favorably + + + any mollusc of the class Monoplacophora + + + a mammal in the family Mephitidae + + + marine mammal in the seal family Phocidae + + + a mammal of the family Tachyglossidae + + + any toad in the family Bufonidae + + + any frog in the family Dendrobatidae + + + of, relating to, or resembling the ostrich or related ratite birds + + + a mammal in the family Orycteropodidae + + + having partially, noticeably distinct, or fully white-colored thighs + + + heavy steel ball used for demolishing buildings + + + nearby, next to + + + a member of the bird family Columbidae + + + square section or area, sometimes containing an inscription + + + of or relating to moles in the Talpidae + + + Conversion into a xanthate. + + + Japanese rice ball + + + chewing gum that can be blown into bubbles + + + pop or rock music having simple repetitive phrasings and intended especially for young teenagers + + + house made of brick + + + attractive/curvaceous woman + + + marinering + + + demographic segment + Mary is a soccer mom. + + + in cricket, ball which breaks from the leg (to a right-handed batter) + + + master, especially of music in South Asia + + + tax on business of selling liquor in India + + + physical and chemical changes undergone by sediment after deposition + + + of a manner of Jewish religious practice that is considered to be intermediate between the Conservative and Orthodox movements in liturgy, observance, etc. + + + megalopae; stage in the life cycle of crustaceans in the Malacostraca class + + + to think something is good, agreeable + + + emerald + + + amount of attention received by audio media + + + insect possessing wings + + + swamp-dwelling creature in south-eastern Australian aboriginal mythology + + + small sack for carrying things + + + ablution, abdest + + + branch of medicine that deals with the nose and its diseases + + + branch of entomology dealing with wasps + + + branch of herpetology dealing with snakes + + + (indicates immanent occurrence of action) + + + study of fossil footprints and traces + + + scientific study of dreams + + + branch of pharmacology dealing with cinchona and its derivatives + + + the study of the organization of the egg especially with reference to localization of subsequently developed embryonic structures + + + the science of the fundamental morphology of organisms, which aims to describe in mathematical terms the stereometry and symmetries of organic forms; the features of organisms so studied. Now chiefly historical + + + branch of zoology dealing with mammals + + + branch of veterinary medicine concerned with veterinary obstetrics and with the diseases and physiology of animal reproductive systems + + + branch of medical science dealing with the structure and function of glands and lymphoid organs + + + the study of the devil or devils + + + doctrine or beliefs concerning the devil; devil lore + + + the study of cats + + + alkaline abrasive used to remove paint + + + to say ’amen’ to; to endorse an utterance of another + + + branch of medicine that deals with the diagnosis and treatment of syphilis + + + wild soursop, mountain anona + + + in imprecations, damnation + + + study of animal diseases + + + the study of marine viruses + + + the study of bacteria in marine environments + + + the systematic attempt to account for such psychological variables as temperament and character in terms of bodily shape and organic function + + + the study of the ego especially with regard to mechanisms of defense, transference, reality-testing, and attainment of the ego ideal + + + the study of the mind and behavior of different peoples through analysis of the human factors involved in their cultural and technological development + + + the mental traits common to or characteristic of a people + + + a membrane-bound storage structure, containing protein and lipid, that is found in large numbers in the cytoplasm of the eggs of all animals except mammals + + + membrane-bound disc containing high concentrations of yolk found in eggs + + + stay still (for a moment); exclamatory expression + + + seemly, proper, fitting + + + in birds, applied to feet in which two toes point forwards, and two to the rear + + + an altitudinal belt of stunted and often prostrate trees, found between the upper limit of tall, erect trees growing in forest densities (waldgrenze; timber-line) and the extreme upper limit of tree growth (the species limit or baumgrenze) + + + consitent of, having been created from + + + the study of the planet Mars + + + the study of ancient and prehistoric human societies and their development, especially from an ethnological perspective + + + prepared only with ingredients from animals whose lungs contained no forbidden adhesions on the outside of their lungs + + + branch of climatology concerned with the impact of climate on agriculture + + + the study of emblems + + + the study of endemic diseases + + + the study or collection of knives + + + on or characterized by a relatively small or detailed scale + + + the study of rivers + + + branch of knowledge dealing with vitamins, their nature, action, and use + + + vital energy units according to Reich's theories + + + an approach to psychology and psychotherapy that is based on the theories and methods of Carl Gustav Jung + + + the science of geology as applied to extraterrestrial objects and other planets + + + investigation of the supposed relation between the celestial bodies and the weather + + + the systematic use of the fingers and hands as a means of communication; a manual alphabet + + + branch of anatomy concerned with joints + + + process for strengthening steel alloys + + + kind of hard steel obtained with the homonym process + + + important + + + preparing or about to do something + + + finger spelling + + + the technique of communicating by signs made with the fingers + + + the study of a culture's system of classifying knowledge (such as its taxonomy of plants and animals) + + + branch of physiology concerned with the function and activities of tissues + + + structural and functional tissue organization + + + the philosophic theory of knowledge : inquiry into the basis, nature, validity, and limits of knowledge + + + the study of fires and fire regimes in global forest, prairie, shrubland, chaparral, meadow, and savannah ecosystems + + + the study or description of the history or genealogy of heroes + + + a history of or treatise on heroes + + + the study of the membranes of cells and cell structures + + + branch of biology concerned with the study of organisms as individuals + + + the study of mythological nymphs + + + the branch of toxicology dealing with toxicity to the nervous system + + + non-finite + + + company for which members’ responsibility for debt is legally limited to the extent of their investment + + + the study of the origin of surnames + + + the study of biological substances or processes with the aid of antigens or antibodies labeled with a radioactive isotope + + + the study of plant diseases and their causes + + + the branch of zoology dealing with sponges + + + the study of physiological and ecological consequences of body temperature and of the biophysical, morphological, and behavioral determinants of organism temperature + + + opposition to theology + + + the science of botany + + + divination by plants + + + the branch of botany which is concerned with the study of fruits + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + the study of turtles and tortoises + + + the study of those things that determine the highest good or best way of life for humankind + + + the microscopic study of cells shed or obtained from the body especially for diagnostic purposes + + + the study of chaos and chaotic systems + + + the branch of cytology devoted to study of the chromosomes + + + refers to the careers of politicians who have experienced a significant decline of their political influence and electoral viability + + + branch of sociology concerned with the modes of recurrent social relationships (as competition, division of labor, supraordination, and subordination) that are conceived to exist in any type of human association + + + the part of logic dealing with the establishment of criteria + + + the feeding habits of an animal or animals + + + the study of lighthouses and signal lights + + + plant ecology + + + a scientific treatise on pores or porous bodies + + + the branch of ornithology concerned with the incubation of eggs and rearing of young + + + the application of psychological principles to the problems of vocational choice, selection, and training + + + the study of the actions and thought processes of both the individual members of a crowd and a crowd as a collective social + + + in mathematics, especially functional analysis, a bornology on a set X is a collection of subsets of X satisfying axioms that generalize the notion of boundedness + + + the study of how individuals interact with and respond to the environment around them, and how these interactions affect society and the environment as a whole + + + the study of sociopaths and the disorder known as antisocial personality disorder + + + theology founded on or fundamentally influenced by speculation or metaphysical philosophy + + + the study of air motion in the Earth's atmosphere that is associated with weather and climate + + + phonemics + + + في الأول + + + linguistics + + + a branch of serology that deals with plants and plant products especially in respect to identification, determination of relationships, and study of plant viruses + + + space weather; the study of the meteorology of near-Earth space + + + the study and practice of instructional endeavors for and about aged and aging individuals + + + the study of the changes in the learning process caused by old age + + + the love of fables or stories + + + the study of the various forms of social structure and the changes that govern or take place in them + + + theanthropism + + + a range of philosophical and theological explorations of the idea that God may be dead + + + a roll or register of traitors + + + the study of the relationship between natural geological factors and their effects on human and animal health + + + subfield of meteorology generally restricted to that part of meteorology not explicitly devoted to atmospheric motions; usually deals with optical, electrical, acoustic, and thermodynamic phenomena of the troposphere, its chemical composition, the laws of radiation, and the physics of clouds and precipitation + + + the representation of the climate of a region by the frequency and characteristics of the air masses under which it lies; basically, a type of synoptic climatology + + + omvendelsesterapi + + + degeneration of body’s immune system; immunodeficiency + + + vacuous chatter, mere talk + + + a treatise on fevers + + + the description or classification of fevers + + + the doctrine or consideration of the bursae mucosae + + + a Grothendieck topology on the category of schemes which has properties similar to the Euclidean topology, but unlike the Euclidean topology, it is also defined in positive characteristic + + + type of evergreen shrub + + + the branch of medical science concerned with diet and nutrition; dietetics + + + opposed to technology or technological change + + + the subdivision of the science of hydrology that deals with the occurrence, movement, and quality of water beneath the Earth's surface + + + (first-person singular possessive) belonging to me + + + (third-person plural possessive) belonging to them + + + the psychological or sociological study of motives, esp. those influencing the decisions of consumers, voters, etc. + + + ability to remember and learn association between unrelated objects + + + to associate with, join forces with + + + to understand, join in; to accept the party line + + + to enjoy oneself + + + to have sexual intercourse + + + technology related to the exploration of and activity in space, and with the development of satellites, rockets, etc. + + + the study of squalor, especially as a supposed science + + + the science or theory of poetic meters + + + a sub-discipline of military tactics and passive and active electronic countermeasures, which covers a range of methods used to make personnel, aircraft, ships, submarines, missiles, satellites, and ground vehicles less visible (ideally invisible) to radar, infrared, sonar and other detection methods + + + that does not get tired + + + process where unique economic goods become interchangeable in the eyes of consumers + + + technology to protect products and operators from contamination + + + term for that branch of anatomy which treats of the nature and structure of membranes + + + practice of criticizing a woman or gay men who lives their sexuality in a different way to what is socially expected + + + a combination of theology and mythology + + + the techniques of deception and manipulation employed by a dominant group (esp. a white majority) to disempower a weaker one (esp. a black minority) + + + innovative techniques or technology, especially for recording or performing music + + + a figurative mode of speech or writing + + + a mode of biblical interpretation stressing a moral meaning inhering in the metaphorical character of language + + + a treatise on or compilation of tropes + + + the study of vermin + + + a field of study and practice that focuses on how industry can be developed or restructured to reduce environmental burdens throughout the product life cycle (extraction, production, use, and disposal) + + + the study of material and energy flows through industrial systems + + + tother + + + that thirsts; thirsty + + + water impregnated with salt; seawater + + + characteristic of the hand on the right side of the body + + + thirty minutes + + + one that yaps (of a dog or person) + + + гардиш кардан + + + to ride a tricycle (three-wheeled velocipede) + + + to make potential; give potentiality to + + + to convert into potential energy + + + to perpetrate feloniously + + + to crop with wheat + + + foolish, mistaken (used as a general negative) + + + to expose (someone) + + + resembling a thug in behaviour or appearance; tough, hardened + + + to reduce magnification of view + + + to measure the quality or extent of + + + to perform quantitative analysis on + + + to express in numerical terms + + + to subject to thyroidectomy + + + to be made envious, covetous + + + to have an ability; to have means, capacity, or qualification for + + + to inject a substance into a microscopic object + + + to communicate via modem + + + to perform multiple tasks concurrently + + + social psychology field that studies how groups of people behave differently than individuals; also known as crowd psychology or mob psychology + + + branch of zoology dealing with entozoa, internal animal parasites + + + to put forward as a suggestion or proposal + + + to belch, vomit forth + + + to experience fear, apprehension towards + + + to be experiencing anger + + + a person who approaches biology from the point of view of an engineer; an expert or specialist in bioengineering + + + boskru + + + of a liquid, to accumulate forming a pond (especially by being obstructed) + + + to come to an impasse, standstill, stalemate + + + to be or behave like a busybody; to meddle, pry + + + good, excellent, cool + + + to add a glycosyl group into a molecule or compound + + + juice extracted from a pomegranate + + + sweet sap from date palm + + + juice extracted from a prune + + + (of a mineral) having a small portion of a constituent replaced by ferric iron + + + interjection used to express surprise, anger, or extreme displeasure + + + bush bean, bush cucumber + + + Australian aboriginal boy + + + bush onion, nalgoo + + + the theoretical study of metaphysical, logical, divine, or human laws + + + to whom immunity has been granted + + + that holds + + + that wraps, covers + + + that is resident, that resides + + + walking or moving with a slouch + + + relating to or of scandium + + + with regard to + + + rough, unpolished board + + + response of untruth + + + device for drying hair by blowing heated air over it + + + egret, heron + + + one who makes tents + + + lacking a servant + + + a living space that combines the rustic charm of a barn with the modern amenities of a home + + + manga or anime intended primarily for boys (usually used before another noun) + + + the study of the spatial and temporal distribution of fossil organisms, often interpolated with radiometric, geochemical, and paleoenvironmental information as a means of dating rock strata + + + a bibliography with biographical notes about the author or authors listed + + + a history or description of printed maps + + + a bibliography of maps + + + the art of engraving on copper + + + description of the skin + + + the writing of something in one's own handwriting + + + autographs considered as a group + + + the writing of glosses or commentaries; the compiling of glossaries + + + the conditions and processes occurring in oceans in the past; the branch of science that deals with these + + + the art of decorating wood by burning a design with a heated metal point + + + aviation gasoline; gasoline for use in piston-driven airplanes + + + one who distills + + + tenth power of a million + + + measurement of galvanic currents + + + occurring within a vessel of an animal or plant + + + soil rich in iron, alumina, or silica formed in humid, high temperature tropical woodland environments + + + to (attempt to) influence legislation, advocate for + + + ask a favor, ask a request, ask for + + + house officer working in surgery + + + elected house of legislature + + + black tinged with blue + + + خَارِج + + + to monitor or select information; to control access to something + + + a wind instrument consisting of a mouthpiece and a small keyboard controlling a row of reeds + + + to make a denizen of; grant rights of residence to + + + cithara + + + to save again + + + energy, spirit; pep + + + brevity of speech + + + shortened or condensed phrase or expression + + + idiot + + + mixture of various kinds of grain sown together for feeding cattle + + + splenic apoplexy in sheep + + + failing to win + + + to increase or cause to increase in size + + + an act of haunting, especially : visitation or inhabitation by a ghost + + + to tell, impart + + + transfer + + + to face self-assuredly + + + to render fanatical + + + to set forth in words, declare + + + to postpone again + + + to doze + + + staying in a dorm + + + to heat to relatively high temperature + + + knowledgeable, skilled + + + to incline towards; to deal in + + + clay whose structure collapses completely on remoulding, and whose shear strength is thereby reduced to almost zero + + + to remove restrictions or limitations; to detruncate + The TAA Study begins with a fixed amount of ammunition and equipment and then unconstrains the support force structure to determine what units are required. + + + to supply with fewer employees than required + + + to split or break up into fission products + + + split into smaller parts + + + to seek a house to buy or rent + + + an interdisciplinary field that studies how individual psyches and subjectivities interact with, express, and transform socio-cultural meanings, practices, and institutions + + + a partially refined, light brown granulated sugar from which most of the molasses has been removed + + + a theater company that presents and performs a number of different plays or other works during a season, usually in alternation + + + administrative unit of feudal England + + + one of two bird species, formerly regarded as conspecific: western olivaceous warbler, Hippolais opaca; eastern olivaceous warbler, Hippolais pallida + + + (slang) out of one's mind; crazy + + + (slang) wildly enthusiastic + + + (slang) homosexual + + + a clasp, buckle, fibula, or brooch, esp. one set with precious stones, for holding together the two sides of a garment; (hence) a clasped necklace, bracelet, or the like. Also, in later use: a buckle or brooch worn as an ornament; (more generally) a gem, jewel, or precious ornament + + + (obsolete) the gold or silver setting of a precious stone + + + (obsolete, rare) an abscess; a carbuncle; a sore + + + (obsolete, rare) a wound + + + to drive mad, to infuriate, to make someone very irritated, angry, or annoyed + + + resembling flocculi + + + minutely floccose + + + the ten percent of earnings or produce that is to charity + + + the state or quality of being blobby + "Good gracious, look there!" and we looked there, and where we were to look was the lowest piece of the castle wall, just beside the keep that the bridge led over to, and what we were to look at was a strange blobbiness of knobbly bumps along the top, that looked exactly like human heads. + + + happening once every five years + + + consisting of or lasting for five years + + + a blow to the head + + + a hollow thud + + + a state of sudden and extreme fatigue often experienced when participating in endurance sports, especially bicycling + + + an act of sexual intercourse + + + non-existent + + + an agreement, an act of support + + + pizza + + + any of a group of degenerative diseases of the brain characterized by the progressive formation of vacuoles in the cells of the cerebral cortex + + + a bookworm: a person unusually devoted to reading and study + + + an insect or other organism that eats wood + + + to perform a free skate in a figure skating competition + + + (introduces restrictive relative clause) + + + having the characteristics of a gorgon; hideous, repulsive + + + a man who explains something to a woman in a condescending way that assumes she has no knowledge about the topic + + + in figure skating, a toe jump that takes off from a back inside edge and lands on the back outside edge of the opposite foot + + + reaching the stomach via the nose + + + relating to or resembling vampires + + + the quality of being constrained; constraint + + + of or relating to the snake family Pythonidae + + + fiercely competitive + + + a jack ladder having a V-shaped trough up which logs are drawn by a jack chain + + + Italian bacon that has been cured in salt and spices and then air-dried + + + nonsensical, absurd, pointless + + + second-rate, inferior + + + very angry, furious + + + smooth: pleasant, affable, polite; seemingly amiable or friendly; having a show of sincerity or friendliness + + + act of running away + + + act of causing fright + + + bitch and moan, express dissatisfaction, problem, concern, complaint + + + regular undertaking of a task + + + the acetate salt of a synthetic long-acting cyclic octapeptide with pharmacologic properties mimicking those of the natural hormone somatostatin + + + a long-acting synthetic analog of somatostatin that is a cyclic octapeptide, is administered especially by subcutaneous injection in the form of its acetate, and is used to treat acromegaly and to treat severe diarrhea associated with metastatic carcinoid tumors and vipomas + + + a genetic disorder caused by having an extra chromosome 18 in some or all of the body’s cells + + + the fact of something having objective reality + + + relation to, involvement + + + relation to, involvement + + + act or process of saying + + + arriving at an endstate + + + come into opposition + + + come into opposition + + + to examine carefully, review + + + domestic spinning wheel + + + realism in art characterized by depiction of real life in an unusual or striking manner + + + realistic in art characterized by depiction of real life in an unusual or striking manner + + + a technique of mass spectrometry that uses a particle accelerator to bring a small amount of the sample to be analyzed to high velocities + + + hellish, infernal, devilish + + + being nearby + + + quickly, fast + + + cancer that forms in tissues of the gallbladder + + + (in computing) to copy text and replace it elsewhere + + + provide direction, provide instruction/guidance (not cardinal directions!) + + + Nyctereutes procyonoides + + + a large wild edible brownish boletus mushroom (Boletus edulis) + + + to hasten, hurry up + + + cause to be available + + + native of South Sea Islands (especially one employed on Queensland sugar plantations) + + + native Hawaiian + + + characterized by tune or melody + + + purgative drug obtained from certain convolvulaceous plants + + + goldfinch + + + tool-dresser + + + engineering student + + + sound of spitting + + + person whose eccentric or foolish behaviour can be exploited to amuse onlookers + + + to hoax, deceive, hoodwink + + + canned beef + + + the application of organized knowledge and skills in the form of devices, medicines, vaccines, procedures, and systems developed to solve a health problem and improve quality of lives + + + the study of the physical characteristics of aquatic ecosystems + + + the conversion of organic materials (such as wastes) into an energy source (such as methane) by processes (such as fermentation) involving living organisms + + + relating to the physical geography of an area, focusing on its natural features and their formation + + + neoorthodoxy especially in its pessimistic view of human nature that holds that humans and all human institutions are inevitably confounded by their own inner contradictions and that the resultant crisis forces humans to despair of their own efforts and possibly to turn to divine revelation and grace in faith + + + the lore of hotels and inns + + + the scientific study of the principles of zymotechny + + + predigested by means of zymin + + + characteristic of or relating to personalism, a philosophical movement that stresses the value of persons + + + of or relating to an idiosyncratic mode of behaviour or expression + + + put or reput x into y, putting x into y with a syringe + + + to hit, with words or a bat (etc) + + + to remove or obtain + + + the medical specialty focused on the diagnosis, treatment, and prevention of infectious diseases + + + to break off/sever/interrupt suddenly/curtail + + + the study of manuscripts, encompassing their history, physical characteristics, and cultural significance + + + the scientific study of psychological reactions + + + theology based on and attainable from revelation only + + + the study of the sociology of reading + + + the study of the microbiology of soils + + + the study of the geology of soils + + + in an absconded manner + + + mortgage again + + + act/process of removing or releasing (usually a fluid), emptying, unfilling, depleting + + + that acquiesces (assenting/compliant) + + + to cut or tear with or as if with the teeth, nom/partitive-quant + + + field of medicine that combines elements of otology (the study of the ear) and neurology (the study of the brain and nervous system) + + + an expert or specialist in the study of Creole languages + + + the branch of linguistics concerned with the study of Creole languages + + + act or process of supplying with feathers, making ready for flight + + + raise a baby bird until it can leave the nest, and metaphorical development extension + + + (often capitalized) an American soldier of the Revolution in the Continental army + + + a piece of Continental paper currency + + + the least bit + + + an inhabitant of a continent and especially the continent of Europe + + + a native of the continental United States living or working in Puerto Rico or the US Virgin Islands + + + engagement in a 1-on-1 (one team, or one person, etc)direct contest + + + the methods and systems used to connect electronic components, enabling the flow of data and power between them + + + to encourage + + + field focused on developing computer systems that can understand, process, and generate human language + + + a topology defined on a subset of a topological space, where the open sets of the subset are created by intersecting the open sets of the original space with the subset + + + a political principle that emphasizes the importance of a nation as the fundamental unit of social life and political organization + + + branch of optical technology that focuses on the application of light and its fundamental unit, the photon, in various technologies + + + you only live once + + + the use of another entity's intellectual property (IP), like patents, copyrights, or trade secrets, through a contractual agreement where the owner (licensor) grants permission to a user (licensee) + + + a topology defined on a partially ordered set, where the topology is generated by the subbasis consisting of sets of the form (←, a) and (a, →) for a ∈ P + + + the methods, tools, and systems used to create, improve, and manage products, from physical goods to digital services + + + move forward quickly, like on a media player + + + act of going on and on, talking nonsensically + + + fill up, load + + + to bark or speak sharply, shrilly, or snappishly + + + start_over: once more, from the top + + + bleed to death + + + the quality or condition of being tremulous + + + opposite to or directly away from the apex + + + acquire, make (money) + + + print, generally on a computer printer + + + completive + + + a type of organizational technology characterized by a sequential interdependence of tasks or processes + + + the action of recognizing a voice; the process of, or a facility for, identifying a speaker from his or her voice; specifically, the analysis or interpretation of speech sounds, especially by computer; computer analysis and matching of the distinctive characteristics of a particular human voice + + + the study of chytrids, primitive aquatic fungi + + + act or process of estimating by extending known information + + + 'it seems to me', 'i think ___' + + + The act of copying + + + set of non-stellar objects in orbit around a star + + + remove the acetyl group from a compound + + + act or process of making hot or hotter + + + to put on or wear formal or fancy clothes, to decorate, wearing formal clothes/adornments + + + a dipolar ion + + + obstruct, hinder with painful constriction, painfully constricting + + + irritable due to hunger + + + composed chiefly of rock fragments or particles of volcanic origin, such as pumice, obsidian, or volcanic ash + + + any of a group of small, usually rectangular plots of land used for sampling the occurrence of species or of archaeological artifacts + + + a piece of type metal lower than the raised typeface, used for filling spaces and blank lines + + + (cause to) become acid + + + exit again + + + The act to cause confusion + + + The act of infecting with a parasite whose entire lifecycle is lived in a single host + + + perform an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray + + + to host a Jewish coming-of-age ceremony/celebration for a 12- or 13-year-old girl + + + attach tightly + + + die, fall out of competition + + + technology that combines a fluxgate magnetometer with a triaxial configuration + + + having three axes + + + a minimally invasive medical procedure that uses argon gas to stop bleeding in various parts of the body + + + term designating the point in time or space at which something starts or originates + + + to cease + + + removal of part or all of the cecum + + + act or process of continuation + + + process of falling like water, flowing downwards + + + name + + + to anger, irritate + + + parallel and pointing/polarized in the same direction + + + occur together in the same cell + + + process coal into coke + + + act as a host, with a partner + + + chewy, gelatin-based candy + + + approach + + + set pen to paper + + + form of assault + + + act or process of using a curette to remove unwanted tissue + + + act of swearing, using foul language + + + remove accent + + + loss of physiological or psychological compensation + + + cause to become unclogged + + + remove husk + + + to (cause to) deteriorate mentally + + + remove flea + + + The act of taking away funding + + + lose glacier-cover + + + be sufficient, measure up + + + to remove worms + + + cemetery + + + ethnicel + + + act for a cause, in (or like in) holy war + + + separate + + + do not intubate + + + procrastinate, be very slow in doing + + + irrigating some part of the body (usually the vagina) + + + dope_up: dose with narcotics + + + stop by + + + natural disaster: sever blowing dust + + + young black man, esp. one who deals drugs on the street + + + expression of hesitation + + + expression of thinking + + + expression of acceptance + + + process by which a vessel is obstructed by an embolus, to introduce or cause embolism + + + normal, reasonably positive mood + + + ungainly movement + + + obscene gesture: give the finger + + + make shorter; make to appear to be receding + + + procrastinate; play around + + + go out to eat frozen yogurt + + + act or process of providing geographic information (especially locations, such as coordinates) via metadata + + + remove gills + + + a position in which the dancer, facing diagonally toward the audience, extends one leg in the air to the side with the arm of the same side raised above the head and the other arm extended to the side + + + a two-handed card game which is played with a 32-card pack and in which each player is dealt 5 cards and has the right to replace any or all of them before play can begin, the object being to win at least 3 tricks in a given hand + + + (in ballet, of the legs) held wide apart with an oblique side extension of one foot and the same arm + + + to make or make appear historical + + + to take care of someone's house + + + Being actually living forever + + + Being eternally remembered, perhaps with veneration + + + cells being mutated and resulting in a cell line that can keep undergoing division indefinitely + + + take into the body, as food, drink, air + + + deficiency of phosphates in the blood that is due to inadequate intake, excessive excretion, or defective absorption and that results in various abnormalities (as defects of bone) + + + having a tube inserted (usually into a bodily passage or hollow organ) + + + be leftover; cause something to remain after a larger activity + + + become thick and leathery as a result of rubbing or scratching, become thick and leathery + + + wear out, ruin + + + act of making greater or bigger + + + severe headache often accompanied by nausea and disturbed vision + + + act of incorrect judgment + + + to measure with a metering device + + + saving money + + + to lubricate + + + oar + + + to bind or obligate beyond capacity + + + name + + + having multiple members + + + cause too much of an increase + + + to sell more than can be delivered + + + read again more closely, interperate to a greater degree + + + to plant too abundantly + + + project over the edge of something, in a cantilevering manner + + + reduce indebtedness + + + to not have + + + attacking with napalm + + + suffused or permeated through or over something + + + in the vicinity of a nerve or nerves + + + having a normal activity level + + + that dances + + + language + + + in the vicinity of the vagina (may or may not include the vagina) + + + Describe or represent in terms of a parameter + + + to pair with something else + + + Carry with oneself, as with a gun + + + to lose courage to do something + + + rummage, look for idly + + + an upward blow to opponent's chin + + + not able to be won + + + unable to be surgically removed + + + not ground up + + + in a panicked manner + + + add fertilizer beforehand + + + person with Asperger's syndrome + + + person who displays awkward, pedantic, or obsessive behavior stereotypically associated with Asperger's syndrome + + + to incubate (as a cell or a culture) prior to a treatment or process + + + pick out beforehand + + + pleasing/agreeable/acceptable + + + to put or enclose in a case, again + + + conquer again + + + show again + + + begin again + + + to bind again with a bandage or ligature (so as to seal off a vessel or fallopian tube) + + + to make famous + + + exactly that; in itself + + + sample again + + + personally unattractive (destitute of charms) + + + brazen/shameless (with reticence/shame/humility absent) + + + reinforce or support again with proof + + + to designate an area for a new purpose; to change zoning + + + wind backwards, perhaps as a cassette, back to the beginning state + + + to remove the rind + + + able/possible to not be spent + + + able to be rescued from peril + + + able to be collected, accrued + + + to save, put away + + + spend money on, splurge + + + say flippantly or quickly, phrasal + + + (cause to) back off, withdraw + + + located under the pleura + + + to affix with tape [completive] + + + act of walking quietly on one's toes + + + touch upon: same as touch on + + + forming trabeculae + + + the act of forming a trabeculae + + + the act or process of gently falling into a dreamy state (often sleep) + + + the act or process of taking out everything in ones path, such as with a car or weapon + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + the performance of a procedure in which the rectum, anus, some of the colon, and other tissue are removed via entry through the abdomen and the perineum + + + a fragrant, dark and resinous wood used in incense, perfume, and small hand carvings, formed in the heartwood of Aquilaria trees after they become infected with a type of Phaeoacremonium mold, P. parasitica + + + having no page numbers + + + initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + + what place + + + the number 4 between three and five + + + playing card + + + the number 6 + + + data about data + + + In addition to; as an accessory to + + + (used to show disagreement or negation) + + + to move inside of (something) + + + item(s) that are separate and distinct from the item(s) under consideration + + + at least one item of a set + + + Any object, act, state, event, or fact whatsoever; a thing of any kind; something or other. + I would not do it for anything. + + + what person’s + + + person’s … that + + + At or to the back or far side of. + The children were hiding behind the wall. + Behind the garage needs clearing asap. + The sun went behind the clouds. + Look behind you! + I hide behind you in hide and seek. + Behind the smile was a cruel intention. + All my problems are behind me. + + + hand-operated tool for cutting + + + enjoyable + + + in all associated places + + + period of the day after 12:00pm and before approximately 6:00pm, depending on the time of sunset and time of year + + + human whose profession is bricklaying + + + through + + + at any time + + + unless + + + Side by side with. + + + Below. + + + individual change made to a document + + + advertising term + + + along an equator + + + in an insightful fashion + + + while + + + indicating sudden understanding + + + Expressing contempt, disgust, or bad temper. + + + like a fairy, or related to fairykind + + + express uncertainty or hesitation + + + traditional maritime greeting + + + synthetic chemical element with symbol Ts and atomic number 117 + + + former stronghold or villa in the province of Groningen, Netherlands + + + business enterprise established for the processing of animal milk + + + the process by which individual access to a computer system is controlled by identifying and authenticating the user through the credentials presented by the user + + + the credentials required during the login process + + + construction equipment used to lay asphalt + + + remove cap + + + To pass (time) idly. + I whiled away the hours whilst waiting for him to arrive + + + a process of deterioration + + + study of the structure and function of the mechanical aspects of biological systems + + + branch of discrete mathematics + + + branch of cell biology + + + medical specialty + + + medical specialist in diabetes + + + natural number + + + human disease + + + study of changes in the epigenome + + + film genre + + + about limb: with three toes + + + about animal: with limbs with three toes + + + sport + + + traditional culture + + + business providing food + + + pertaining to foraminifers + + + process of providing with a function + + + chemical process + + + science of dating rocks + + + particular geological dating method + + + lining + + + material used in vacuum systems + + + overuse + + + power from hydroelectric sources + + + branch of biology dealing with immune systems + + + medicine working through immune system + + + to make a mistake while typing on a keyboard + + + done in an interactive manner + + + cell life cycle phase + + + vigorously + + + study of lymphatic system + + + large globulin found in blood + + + medical condition with too many macroglobulins + + + broadly accepted + + + common current thought of the majority + + + person from the Middle Ages + + + pertaining to metabiosis + + + microscopic pore + + + pertaining to microstructure + + + microscopic system, or with microelectronic parts + + + type of particle filter + + + event involving powered vehicles + + + using multiple channels to communicate + + + structure with multiple distinct layers + + + looking at a range of different spectral wavelengths + + + pertaining to fungi + + + material with nanometer-scale structure + + + nanometer-scale pore in a membrane + + + one who naps + + + machine used with textiles + + + field combining neuroscience with economics + + + domain of human thought + + + relating to ophthalmology + + + study of optics and electronics together + + + optoelectronics + + + formation of organs + + + study of dust, spores, etc. + + + type of system of government + + + branch of agriculture + + + branch of dentistry that deals with diseases of the supporting and investing structures of the teeth including the gums, cementum, periodontal membranes, and alveolar bone + + + branch of chemistry + + + physiology of disease or injury + + + study of plant diseases + + + study of detection and measurement of radiant energy + + + study of sediments + + + every 150 years + + + mathematical structure + + + science of applying telecommunications + + + using telecommunications to provide medical assistance + + + ocean phenomenon + + + Name for a person who pursues high-quality or realistic audio playback + + + a small amount + + + from without/the outside + + + in an abashed manner + + + pertaining to the troposphere + + + convert waste into a higher quality product + + + pertaining to volcanology + + + natural phenomenon on Mars + + + land unmodified by humans; natural land + + + make a sweeping rotating motion + + + furniture component, top of a table + + + fat cell + + + type of chemical compound + + + fictionalized autobiography + + + type of food dish + + + photon from a biological source + + + type of mineral + + + type of protein + + + reddish-orange color + + + create a cross-reference + + + compare distinct sources + + + one who studies cybernetics + + + dancing as a sport + + + process of removing methyl groups from a molecule + + + type of enzyme + + + protein + + + protein + + + protein + + + protein + + + Japanese alcoholic beverage + + + type of large edible berry + + + philosophical inquiry into nature of philosophy + + + writer on music and musicians + + + with bitterness or severity + + + additionally, to a pronounced degree + + + done in a manner related to walking + + + in an animating manner, so as to give life/inspiration/enlivenment/encouragement + + + with care (in a careful/caring manner) + + + internationally + + + some time ago + + + genuinely, sincerely + + + all over the place + + + extremely/very much + + + in regard to world-wide political implications + + + with grief, usually during a bereavement period + + + without adequate reason/cause + + + without guilt (in a guiltless manner) + + + without luck/good fortune, unfortunately/unhappily + + + smoothly, without hindrance/difficulty + + + using holography + + + in a homosexual manner + + + in an imperturbable manner; without being mentally perturbed or agitated; calmly, composedly + + + unable to be extinguished + + + in a monarchical form/manner + + + From the title of the cult 1962 Italian documentary film Mondo cane, Italian for "A Dog's World", from mondo (“world”) and cane (“dog”). The film featured bizarre scenes, leading to English use of mondo as an adverb meaning "very, extremely" in mock-Italian phrases like mondo bizarro. + + + without consent, not consenting + + + doing too much to prevent harm to another (usually a child) + + + occurring over a period spanning winter + + + in a pathophysiological manner + + + in a penniless manner + + + In a recalcitrant manner. + + + in a regardless manner + + + by sacrifice, in sacrifice + + + In a scenographic manner. + + + In a manner only partially related to logarithms + + + in a manner that teaches wisdom + + + sonorously/imposingly (so as to emit/cause a sound) + + + used for making one's criticism of someone or something seem less strong + + + before, previously + + + in a transformational manner + + + in a trifling manner/degree + + + done in a manner that produces a quavering or warbling sound + + + in an unwholesome manner + + + distressingly (in an upsetting manner) + + + in a verisimilar manner + + + with good intent + + + person who works on nanotechnology + + + person who practices palynology + + + specialized scientist studying palynology + + + branch of genomics concerned with developing pharmaceuticals + + + approach to classification of organisms + + + resistor that changes with light level + + + organism that feeds on plankton + + + version of a solid with a particular crystal layer stacking sequence + + + book containing rules + + + state of not being a citizen of any country + + + type of large star + + + device that produces modulation + + + the measurement of cell characteristics + + + the process of removing one or more phosphoric (ester or anhydride) residues from a molecule. + + + A vesicle-mediated transport process in which cells take up external materials or membrane constituents by the invagination of a small region of the plasma membrane to form a new membrane-bounded vesicle. + + + set of all RNA molecules in one cell or a population of cells + + + study of measuring and analysing science, technology and innovation + + + written prose piece in a publication expressing the opinion of an author or entity + + + individual's or a group's human demand on nature + + + method to avoid unsolicited products or advertisements + + + organism that prefers higher temperatures + + + process of adding salt + The team identified sources of ground-water salinization and found that sea-water intrusion was the main mechanism. + + + act of adding moisture to + + + cardinal number + + + class of enzymes that cleave phospholipids + + + a diagnostic endoscopic procedure that visualizes the upper part of the gastrointestinal tract down to the duodenum + + + reduce a cellular response to a molecular stimulus + + + to tonicize + + + to turn into horn + + + to pack again + + + to make a dunce of; render stupid, slow-witted + + + to make rancid + + + to subdivide a classification into subordinate classifications + + + to turn into chyle + + + to produce chyle + + + change of economy, especially of energy industries, towards lower carbon dioxide emissions + + + natural soil-forming process + + + economy based on low carbon power sources + + + call for, require, justify + + + a monument made of stone + + + person whose profession is study and research + + + electrophysiological monitoring method + + + disease + + + virus + + + act or process of making illegitimate + + + abnormal retention of fat (lipids) within a cell or organ + + + process using extreme cold to destroy tissue + + + pure quantum state unchanged by a certain operator + + + unblur a digital image + + + measurement method using interference of waves + + + nanomaterial + + + a billionth of a rod (equivalent to 5.029 nm) + + + long unbranched polysaccharides consisting of a repeating disaccharide unit + + + social distancing measure + + + elevated level of gene expression + + + infection by the same infectious agent following a recovery + + + orthodontic headgear + + + a mask or protective covering for the face or part of the face + + + a covering (as of polypropylene fiber or cotton fabric) for the mouth and nose that is worn especially to reduce the spread of infectious agents (such as viruses or bacteria) + + + a device usually covering the mouth and nose to facilitate delivery of a gas (such as a general anesthetic) + + + a covering typically attaching to the front of a helmet that consists of a hard, clear material (such as polycarbonate) or a cage of metal (such as steel or a titanium alloy) and is worn to protect the wearer's face from injury + + + or face mask penalty (American football): a penalty imposed on a player for grabbing and pulling an opponent's face mask during play + + + abnormally low level of oxygen in the blood + + + ejaculate, orgasm + + + the formation of ozone (O₃) in the earth's atmosphere + + + the treatment or combination of a substance or compound with ozone + + + production of spores in biology + + + any phosphatidylinositol that is phosphorylated at one or more of the hydroxy groups of inositol + + + protein encoded by an oncogene + + + class of chemical compounds + + + protein devoid of its characteristic prosthetic group or metal + + + identifier for a person in a computer system + + + droplets in the microlitre range + + + protective suit against chemical, bacteriological, and nuclear risks + + + The act of impairing a physiological regulatory mechanism + + + a military order to cease firing + + + a suspension of active hostilities + + + offshore rise of water associated with a low pressure weather system + + + InterPro Family + + + agent that carries and transmits an infectious pathogen into another living organism + + + neopronoun + + + neopronoun + + + neopronoun + + + pronoun used in place of he, she or singular they + + + person who does not experience sexual attraction + + + village + + + play-through of a video game performed as fast as possible + + + currency of Madagascar + + + one unduly fearful of what is foreign and especially of people of foreign origin + + + to betray by contradicting prior agreement + + + something revelatory + + + web content whose main goal is to entice users to click on a link to go to a certain webpage or video + + + scale or full-size model of a design or device, used for teaching, demonstration, design evaluation, simulation, promotion, and other purposes + + + point-to-point communications link + + + study of the past + + + brother + + + friend + + + person who designs, builds, programs, and experiments with robots + + + period with lack of sexual arousal + + + set of alphabetic and numeric characters + + + part of stage lighting + + + grandparent's sister + + + A minor miscellaneous item. A food item eaten as an accompaniment to a meal; a side dish; also, such an item eaten on its own as a light meal. + + + Electric bus that draws power from dual overhead wires + + + sew on as decoration + + + to drench with a liquor and ignite + + + to fry (food, such as small pieces of meat or vegetables) in a small amount of fat + + + In favor of. + He is pro exercise but against physical exertion, quite a conundrum. + + + In the midst or middle of; surrounded or encompassed by; among. + + + Instead of; in place of; versus. + + + unless; except + + + Introduces the first of two (or occasionally more) options or possibilities, the second (or last) of which is introduced by “or”. + Either you eat your dinner or you go to your room. + You can have either potatoes or rice with that, but not both. + You'll be either early, late, or on time. + Either you'll finish your homework or you'll be grounded you home. + + + Not either (used with nor). + Neither you nor I likes it. + + + Whatever. + Whatsoever you seek, you will find. + + + That which was previously mentioned; that. + I'll become a loyal friend and remain so. + If that's what you really mean, then just say so. + You may need to refer to litigation as a procedure, and when you have done so, you can say a matter is "in litigation". + + + Which ever; emphatic form of 'which'. + Good heavens! Whichever button did you press to make that happen?! + + + Hold fast!; cease!; stop! + + + A cry of praise or adoration to God in liturgical use among the Jews, and said to have been shouted in recognition of the Messiahship of Jesus on his entry into Jerusalem; hence since used in the Christian Church. + + + Oops. + + + A statement of defiance + ‘Guess what, I've won the pools!’ ‘Never!’ + + + A mild expletive, expressing disbelief or dismay + Didn't you have a concert tonight? —Shoot! I forgot! I have to go and get ready… + + + goodbye + + + Used to gain someone's attention before making an inquiry or suggestion + Say, what did you think about the movie? + + + An expression of mild surprise. + + + A spontaneous expression of delight or joy. + Whoopee! I won! + + + Okay; all right. + + + expression of pain + + + local set of atmospheric conditions + + + intentional killing or other violent deaths of females (women or girls) because of their gender + + + und/oder + + + pseudonym + + + name of a person + + + name used for a place which is used by the people of that place + + + difficult situation or complex health system that affects humans in one or more geographic areas + + + part of the large-scale ocean circulation that is driven by global density gradients created by surface heat and freshwater fluxes + + + having net zero carbon emissions + + + making lifestyle choices to reduce the greenhouse gas emissions resulting from consumption decisions + + + measurement of how much temperature will rise given an increase in CO2 + + + reduction in emissions of carbon dioxide or greenhouse gases made in order to compensate for or to offset an emission made elsewhere + + + benefits created by nature, forests and environmental systems + + + hookworm disease caused by Ancylostoma hookworms + + + fictional device + The captain tapped her combadge. + "Only Equinox crew on board now," Max confirmed, checking the bioscans from encrypted combadges all over the ship. + Constructed from a crystalline composite, the combadge had a signal range restricted to approximately 500 kilometers when beyond the range of a starship. + + + granting of permission by an ethics board (typically for research) + + + identifier used for an act of approval + + + type of lawn game or sport in which players toss beanbags toward a slanted platform with the aim of passing the beanbag through a hole in the center of the platform + When you think of cornhole, visions of tailgating, beer-drinking, and backyard picnics come to mind. + + + vulgar slang term for the anus + When Mike pumps a creampie into Anna's cornhole, she collects the cum in a cocktail glass and swallows it. + + + Unwanted pre-installed software + Here's all the crapware that comes with new Windows 8 PCs. + Though I hope Microsoft always allows Windows users to install desktop software, the best way fend off crapware is to also provide a controlled environment, such as the Windows Store, for users who want it. + + + to express contempt or impatience + + + to express contempt for or make light of + + + thong visible over trousers or similar + + + graze to the point of damaging the life cycle of vegetation + + + a live online educational presentation + + + compartment in a ship used for medical purposes + + + to the degree or extent indicated. + We only have this much water. + + + bikeway separated from motorized traffic and dedicated to cycling or shared with pedestrians or other non-motorized users + + + to redistribute the heat in bath water + + + crushed green tea leaves + + + bag containing crumbled tea leaves that is soaked in water to make tea + + + place scrotum into one's mouth + + + appearing to have zones of color/texture/etc. + + + meal which combines breakfast and dinner + + + ethological class; trace fossils formed as a result of organisms disturbing sediment for food + + + ethological class; structures which were created by organisms for breeding purposes + + + ethological class; evidence of organisms moving at the front + + + individual member of the Xenophyophorea clade of protists including some of the largest known single-celled organisms + + + printing that goes beyond the edge of the sheet before trimming + + + attractive male person + + + when something does not go your way + + + when you are surprised + + + when you see something you are impressed by + + + when you realize something profound + + + pictorial depiction in an online chat + + + carved pumpkin or other gourd, used primarily during Halloween + + + video recording of a stage performance by a fan in the crowd + + + gender identity that is typically associated with concepts that are not entirely related to gender + + + a bird + + + a bird-like creature + + + set in the 19th century, featuring steam-powered machinery and related technologies extrapolated from the science of that era + + + one who films and/or edits vlogs (video blogs) + + + romantically attracted to members of the opposite sex or gender + + + romantically attracted to people regardless of sex or gender + + + attracted to experiencing bisexuality + + + attracted to people regardless of gender + + + a printing process that involves making three-dimensional objects from digital models by applying many thin layers of quick-drying material on top of each other + + + electronic cigarette + + + variable that statistically affects the relationship between other variables + + + you; person spoken to or written to - - For what cause, reason, or purpose + + anyone, one; unspecified individual or group of individuals - - the number 10 - the Interim Constitution was amended ten times + + abbreviation of love - - playing card + + abbreviation of romantic love - - (second-person possessive) belonging to you + + método de entrada - - joins words and sentence parts together + + Any beetle of the taxon Cerambycidae - - then; and then (concessive) + + any beetle of the subtribe Coptomiina - - with, accompanied by; and with (associative) + + drunk - - although + + drunk - - third power of ten - Solomon is said to have written three thousand proverbs, and those contained in this book may be a selection from these + + drunk - - sixth power of ten + + to cancel a subscription - - Concerning, with regard to, on the subject of - Let's get serious about plagiarism + + Antennarius pictus - - word denoting something already mentioned, or assumed to be known - Did you see my car over there? The exterior was spray-painted red yesterday. + + the quality or state of being exclusive - - In the (same) way or manner that; to the (same) degree that - it is hereby ordered as follows + + exclusive rights or services - - later in time - for 50 years after the year of first publication + + Gampsonyx swainsonii - - enclosing in a circle or other curve + + a language with no genetic relations - - nearby + + oh my God - - in a variety of places within an enclosed space + + Crinifer zonurus - - next to + + any fly of the family Dolichopodidae - - into the middle of an object and out again + + any insect in the clade Eulepidoptera - - beyond + + any bacterium in the class Actinobacteria - - used to indicate that something happens or is the case even though there is an obstacle, difficulty, or another opposing factor + + any bacterium in the phylum Actinobacteria - - one of two choices + + Boiga irregularis - - one or the other of a pair + + make space available + "Getting people out of hospital on time is more important than ever," said Helen Whately, minister for care. "It's good for patients and it helps hospitals make space for those who need urgent care." + Some residents believe it may have been the result of a crude attempt to clear forest land and make space for building projects, but police are yet to determine a cause. + Wards have been emptied to make space for Covid patients + Due to a slump in construction and high production costs, the timber industry in Zimbabwe has been struggling to survive. To make things worse, illegal miners in some of the country's forests have been chopping down trees to make space for their own operations. - - On the outside of, not inside - This work is in the public domain in some countries and areas outside the United Kingdom, including the United States. + + any gelechoid moth in the family Coleophoridae - - also not + + fictional dish named by listing ingredients - - denoting something learned + + like a corymb - - in spite of, occurring even with some contrary indicator + + small, benign skin growth that may have a stalk (peduncle); also called achrochordon - - million million + + a person who is transgender - - million million million + + to sweat - - on the top of, above + + one who flatters a supervisor, or superior, in order to get special attention - - physically supported by + + fund offered to students who are struggling with their finances and need help - - at (a point in time) + + something chosen by hand - - according to previous knowledge + + something chosen out of a larger set or whole - - the number 0 + + sexually attracted to more than one sex or gender - - number between 39 and 41 + + participle - - before + + people - - form of laughter (especially when repeated) + + any beetle of the genus Caccobius - - used to express surprise, interest, or alarm, or to command attention + + agent noun of warp; one that warps - - expressing relief + + any enzyme that initiates methylization - - without + + to use a flashbang/flash grenade - - deliberately incorrect version of “who” or “whom”, used humorously in place of those words - Yes, even though she’s one of the YouTubers whomst is bad. + + using little effort to do something - - quality of object + + the monitoring of someone by taking photographs + + + learned man in Indian classical tradition + + + aggregation of dust particles + + + സാമൂതിരി + + + (disparaging) promiscuous + + + (relexive pronoun for the second person) that which belongs to you + + + small street, often in an old or poor neighborhood of a city + + + having leaves like those of a willow; attributive element in the common names of plants + + + dial of a watch + + + jewelry used on the body + + + poke a hole in, go through such a hole + + + one who takes part in cosplay + + + person promoting conspiracy theories + + + motorized road vehicle designed to carry one to eight people rather than primarily goods + + + subgenre of hip hop + + + marine mammal in the fur seal and sea lion family Otariidae + + + a rodent of the family Erethizontidae (New World porcupines) + + + any tapeworm of the family Taeniidae + + + any bird in the family Falconidae + + + professional who treats foot ailments + + + of or relating to the insect family Thripidae + + + a fundamental; a foundational or integral aspect of something + + + Any fly in the family Syrphidae, which hover in place and visually resemble bees or wasps + + + bench located in front of the chancel + + + of or relating to the mammal family Viverridae + + + accidie + + + swindle, dupe or manipulate to obtain a wrongful advantage + + + complain loudly or shout + + + a bird of the family Paradisaeidae + + + any bird in the family Podicipedidae + + + any reptile of the family Chelidae + + + mutual yielding; concessions, compromise + + + to use arms and legs to stay afloat in place in water + + + wrestle + + + to use a pickaxe + + + kitchen garden + + + a disorderly, confusing situation; a mess + + + republic by popular mandate + + + for or by the general public + + + plundering expedition, raid + + + associated with humans but not domesticated + + + time prior to a sporting season + + + title of Islamic martyr + + + non-legal return of refugees and immigrants across the border + + + one who is chased + + + study of narrative and narrative structure + + + the branch of medicine dealing with the intestines + + + the branch of zoology dealing with the ants + + + hymnody (hymn singing and writing) + + + the study of hymns + + + branch of entomology that deals with the Isoptera (termites) + + + decisive match in a series + + + study of the occurrence, transportation, and effects of airborne materials (such as viruses, pollen, or pollutants) + + + the study of the Holy Shroud of Turin, in which the body of Christ was reputedly wrapped + + + the study or investigation of crop circles + + + the study of dogs and other canines + + + branch of dendrology dealing with the gross and the minute structure of wood + + + the study or practice of herbal medicine + + + likely to cause one to laugh + + + the study of sleep + + + study of the organization and function of committees + + + committees and their practices considered collectively + + + system of administrative and expert committees within the European Union + + + (linking a destination, subject of approach) + + + charisma, charm + + + orange grown for commercial consumption containing seeds, as opposed to seedless oranges + + + village + + + the study of intonation in speech + + + study of psychology applied to sports + + + study of psychology applied to sport + + + branch of entomology that is concerned with the scales, mealybugs, and other members of the superfamily Coccoidea + + + in naming an animal, having a long tail + + + be courageous, unafraid + + + applied to organisms whose presence in a given habitat is transien + + + producing fermentation + + + be of recent age + + + a form intermediate between a worker and a queen which occurs in some ant species + + + a worker or soldier ant that develops female characteristics especially as a result of the attack of parasitic worms + + + no + + + hair turned white with aging + + + device to store spent espresso grounds + + + a specialist in orthopterology + + + the study of pollen grains and spores (palynomorphs) in the atmosphere + + + branch of theology dealing with the doctrine of evil + + + the study dealing with specialized problems of cities + + + branch of meteorology that deals with the relationship of weather and climate to crop and livestock production and soil management + + + crystallography + + + meteorology that deals with small-scale weather systems ranging up to several kilometers in diameter and confined to the lower troposphere + + + the subfield of ecology that deals with the study of relationships between organisms and their environment at large spatial scales + + + protein that is rich in phosphorus + + + theological doctrine that describes the divine nature according to positive categories + + + a theology that instead of beginning with the philosophy of religion takes as its content the gospel as given by biblical theology and presents it directly in systematic form + + + the branch of pharmacology that deals with the use of drugs in the treatment and prevention of disease + + + the branch of science concerned with the action of frost and freezing water on the structure and properties of the ground + + + branch of mycology dealing with the rusts + + + little + + + irksome, annoying, irritating + + + period during which a draught animal is yoked + + + form of mugging involving assailant wrapping arms around victim’s neck from behind + + + the study of bridges and naturally occurring arches or bridge-like structures + + + lore dealing with ghosts + + + the study of ghosts and ghostlore + + + a Haeckelian branch of morphology that regards an organism as made up of other organisms + + + the universal organizational science + + + the branch of physiology which treats of pregnancy + + + study of handwriting + + + the study of or knowledge of pathological conditions of the horse + + + the branch of zoology that studies insects + + + branch of anatomy dealing with the fundamental tissues and fluids of the body + + + having unrequited desire + + + despondent, depressed + + + badly ill, injured + + + not having a weapon + + + lacking funds to acquire drugs + + + the study of words and expressions having similar or associated concepts and a basis (as social, regional, occupational) for being grouped + + + branch of immunology that studies the interaction of the immune and nervous systems + + + the branch of limnology that deals with the conditions and processes occurring in lakes in the geological past + + + one who or that which brings + + + the science that deals with atmospheric dust and its effects on plant and animal life + + + exhausted + + + pregnant + + + delicious + + + use of more words than are necessary; redundancy or superfluity of expression, pleonasm + + + the branch of anatomy that deals with the pelvis + + + the study of manuscripts of ancient literature, correspondence, legal archives, etc., preserved on portable media from antiquity, the most common form of which is papyrus, the principal writing material in the ancient civilizations of Egypt, Greece, and Rome + + + branch of medical science concerned with symptoms of diseases + + + the study of or a treatise on beards + + + the science which treats of the origin and character of springs + + + handgun + + + filthy talk + + + a delirious picking of the bedclothes by a patient, as in certain fevers + + + the study and description of the movements of dancing + + + the study of bile and the biliary organs + + + a description of what relates to the bile and biliary organs + + + the study of bile and the biliary organs + + + the investigation of urban spatial structure by factor analysis + + + a branch of theology dealing with the interpretation or explanation of scripture + + + the branch of chemistry which deals with salts + + + the sociological study of race by anthropological methods (as in the theories of Lapouge) as a means of establishing the social superiority of dolichocephalic peoples + + + the study of sacred buildings + + + the study or investigation of miasmas + + + the science that deals with the effects of weather and climate on living beings + + + the art or science of cookery + + + the narration or study of history + + + the anatomical study of the pharynx (obsolete) + + + a branch of medical science concerned with the pharynx and its diseases + + + of or relating to the form, arrangement, and structure of rock masses of the earth's crust resulting from folding or faulting + + + the study of apes + + + a branch of the life sciences dealing with neurosecretion and the physiological interaction between the central nervous system and the endocrine system + + + the scientific study of clouds + + + a branch of laboratory technology dealing with diagnostic cytology + + + a great speech or discourse + + + the study of the macrocosm + + + the study of ecological microcosms + + + the scientific study of mummies - - interrogative word + + not apportioned - - a certain proportion of, at least one + + boasting or vaunting speech - - an unspecified quantity or number of + + a religious belief among some Charismatic Christians that financial blessing and physical well-being are always the will of God for them, and that faith, positive scriptural confession, and giving to charitable and religious causes will increase one's material wealth - - an unspecified amount of (something uncountable) + + the science of defining technical terms - - a certain; an unspecified or unknown + + a branch of hydrography that deals with the relations of mountains to drainage - - et cetera + + a branch of hydrography that deals with the relations of mountains to drainage - - to what extent? + + the study of human behavior in the workplace - - at what cost? + + the branch of science that deals with the neurology of animals and humans of the historical, prehistoric, or geological past - - cardinal number + + the field of study concerned with sound design and the use of technology in musical composition and performance - - neopronoun + + field of science that involves redesigning organisms for useful purposes by engineering them to have new abilities - - exclamation of astonishment + + the scientific study of the diseases of animals - - English word + + the branch of zoology which deals with cephalopods - - vocalization by cats + + the study of how mountains influence and modify weather, and to a lesser degree, climate - - third person singular neopronoun + + the bioclimatology of plants - - he or she + + lore about parsons - - pronoun used to refer reflexively to a hypothetical or generic person + + the speech of parsons, preaching - - response to sneezing + + one that conforms to rules or the law - - I love you + + the field of meteorology applied to aviation that aims to contribute to the guarantee of safety standards, economy and efficiency of flights - - reply to something negative happening, expressing one's panic or disappointment + + of or relating to the cosmos, the extraterrestrial vastness, or the universe in contrast to the earth alone - - you (plural) + + of, relating to, or concerned with abstract spiritual or metaphysical ideas - - second person plural pronoun + + characterized by greatness especially in extent, intensity, or comprehensiveness - - neopronoun (ze/hir/hirs form) + + the study of climates of small, confined spaces such as caves or houses - - out + + radiology of the teeth and jaws - - of a mix of warmed or chilled alcohol, optionally including ingredient + + persuasive or seductive speech or argument; sophistry - - a representation of the bark of a dog + + the science or study of political parties - - representing an abrupt, typically hollow-sounding, heavy thumping noise, as of a blow, or one hard or unyielding object striking another + + the doctrine of the divine direction of nature to an appointed end - - some indeterminate amount + + a type of micro-level case study research that examines a case in its socio-historical context, using mainly original sources - - (expression of disapproval, dismay) + + technologies that support the storage, retrieval, processing and dissemination of information necessary for the efficient and effective operation of libraries in meeting the information needs of their users - - the other + + the calibration and testing of instruments used in the field of health - - without excusing oneself or saying one is sorry + + technology, now especially digital and online technology, used to support banking and other financial activities - - number between 41 and 43 + + the study of the tropical atmosphere - - the number 9 + + the study of runes or runic writing - - person spoken to or written to - You, in the red shirt: what's your name? + + the study of the physiology of the kidney - - people spoken or written to - All 20 of you forgot to do your homework. + + unpleasant, dirty, disgusting - - anyone, one; unspecified individual or group of individuals + + piffling; second-rate - - female person or animal previously mentioned or implied + + the study of comparability and traceability of chemical and biological measurements to ensure the reliability of results - - person whose gender is unknown or irrelevant + + the study of the use of puns - - indicates the composition of a given collective or quantitative noun - a group of students + + type of macaw with distinctively red upper body and green wings - - indicates an ancestral source or origin of descent + + the science of first principles - - links entities which are related by a form of belonging or pertinence from one to the other + + a general term for a sequence of abelian groups, usually one associated with a topological space, often defined from a cochain complex - - denotes quantity + + to inquire, to interrogate - - located within + + malodorous, stinky - - moving into + + (second-person singular possessive) belonging to thee - - expressed using a particular language (natural or artificial), or some other formal representation + + of or related to lexemes - - enabling + + protagonist or leading role in a fictional work - - in a relative position on the other side of a boundary + + a field within applied climatology that studies the effects of weather and climate on industrial operations - - during the same time as + + an approach to archaeology that builds out of post‐processual thinking as a simple reaction to processual archaeology and instead sees interpretation as a creative process - - sufficient + + the branch of science that deals with the structure of living cells; cytology, histology - - an uncertain or unspecified thing; one thing + + the study of measurement and control in sports - - moving to the top of + + the study or subject of the Hebrew accents - - in a contrary direction to + + (third-person singular masculine personal possessive) belonging to him - - in physical contact with + + prebiological conditions and processes; the branch of science concerned with these - - in physical opposition to, or in collision with + + of or relating to a legal process - - in opposition to + + functional, operational - - unknown or unspecified person + + a network structure that resembles a tree, with a central node (the "trunk") and multiple child nodes that branch out from it - - denoting approval + + opposite participant in a legal or financial transaction - - In addition, in addition to + + in soccer, any of various electronic or digital systems used to determine whether the ball has crossed the goal line, and hence to assist officials in deciding whether or not a goal has been scored - - expression of surprise + + activity of humiliating someone - - expressing unbelief + + impel through shame, assign shame as punishment - - express mild disapproval + + term coined by Jean-Philippe-Arthur Dubuffet (1901-85) for a kind of painting created by him, composed of minute drops of paint entirely covering a flat surface - - the whole quantity or amount + + the study of local climates, or topoclimates, which are climatic features caused by the interplay of topography, water, soil, and land cover - - everything + + of a plant, growing on waste ground - - everyone + + the scientific study of blindness - - the only thing (used for emphasis) + + the study or science of nutrition - - every so often + + knowledge or study of sermons - - at the present time + + sermonizing: the preaching of sermons - - neopronoun + + sermons collectively - - neopronoun + + time in which one’s child, partner, etc., receives one's undivided attention - - out of, from + + license allowing a person to operate a vehicle - - until + + to treat with sulphur - - interjection used to express contempt or disapproval + + to make geological researches - - expression of regret/sorrow + + to disperse a clay suspension, reducing its tendency to settle and viscosity - - before + + be fed up with - - vocative particle + + condition of thirst; desiring of a drink - - someone with whom the speaker has a measure of emotional closeness and respect + + to grieve, sorrow for - - interjection of happiness + + very distant - - I swear! + + filled to capacity, completely full - - which person is + + to designate again; to reinstate designation - - be healthy, be well + + abandoned house used for drug storage or processing - - farewell + + field of study that examines how social processes lead to some people being victimized more than others - - recommendation for greater sophistication or awareness: "get real" + + to make a sharp, high-pitched noise, especially as passing rapidly through the air - - expression for when very surprised + + to deposit alluvium on - - promise to keep silent + + to form a fungoid growth - - (expressing assent, understanding) + + to perform oophorectomy on - - (expressing surprise, doubt, joy, anger) + + to excise the spleen of an animal or person - - سو گھٹ سولاں + + to fish through holes made in ice - - malillugu + + to impoverish, inflict misery upon - - more in addition to someone or something + + to cause immunosuppression of an organism; to suppress immune function - - something different to an aforementioned someone or something + + an explicitly third-person, scientific approach to the study of consciousness and other mental phenomena - - (expression of emotional pain, unhappy surprise, disappointment) + + to perform a backward somersault - - (expression of sudden physical pain) + + over the top of; over - - (expression of sympathy with the pain of another) + + in the assemblage of - - (humorous response to a scathing remark) + + to dance ballet - - swear to God + + to speak, say, tell - - (first-person plural possessive) belonging to us + + to have black colour - - (third-person singular impersonal possessive) belonging to it + + to forge metal (especially iron) by hand - - to an extent + + to break into a safe - - aware of, knowledgeable about + + to work as a pimp - - opposed to + + the part of physiology and pathology which deals with the bile - - to the greatest extent + + to ruin, spoil, make a mess of - - forward, at the fore + + to embed amongst or between - - at the fore of, ahead of + + to make into boulders - - deep in past time; long ago + + to climb boulders - - (third-person singular reflexive personal pronoun used with female human or anthropomorphized referrents) + + to regulate temperature, especially body temperature - - nothing, not anything + + to convey by van or caravan - - (introduces defining relative clause) + + the study of ichneumon wasps - - indeterminately small in number + + any of a large family (Ichneumonidae) of brown or black hymenopterous insects that have a slender body and long ovipositor and whose larvae are parasites of the larvae and pupae of various insects - - anyone + + to ascertain, allow for, or indicate the tare of - - whichever + + musical instrument of the lute family - - however much + + at a distance from - - in my opinion + + a small three-masted Mediterranean vessel with both square and lateen sails - - for your information + + to catch or try to catch lobsters - - pronoun + + to divest or deprive of power conferred - - clear to auscultation + + to bungle or botch - - the number 8 + + single-portion takeout or home-packed meal common in Japanese cuisine - - speakers/writers, or the speaker/writer and at least one other person - so we believe there should be a highway leading directly from this Department to every school house in Michigan + + powerful feudal territorial lord in pre-modern Japan - - speaker(s)/writer(s) and the person(s) being addressed + + classical Japanese dance-drama - - speaker/writer alone + + sacred ritual with object of increasing the totemic species of a clan - - intended to belong to, or be used by, or be used in connection with + + the study of communication, including such fields as semiotics, audiology, and speech pathology - - with the object or purpose of + + the study of the body's metabolic response to short-term and long-term physical activity - - to the benefit of + + the study of the changes in flow properties that occur in certain fluids exposed to magnetic fields - - to a duration of + + tetragonal aluminosilicate mineral and chloride of sodium and beryllium - - in favour of + + silicate of glucinum and manganese, occurring in regular tetrahedral crystals - - away from the inside + + mineral with tetrahedral silicate crystal structure - - unspecified group + + the state of being feral - - under; closer to the ground than + + adorned with figures of needlework - - relation of spatial context - She found it was tucked under the desk + + that has received an invitation + + + later on - - relation of heirarchy, authority, or importance - While under the supervision of his mentor + + see you later - - Every person + + act to commit - - metaphysics term designating all that exists + + making of an exit - - if + + أبو قِردَان - - in the inner part, spatially; physically inside + + someone who soliloquizes - - only under the following condition + + a vaginal artery (Obsolete. rare) - - no person + + action of love; affection - - up to a point in time + + Turtur - - (exclamation intended to scare) + + description of the skin - - (utterance expressing disdain, dissatisfaction) + + a writing or treatise on dogs - - interrupting another + + tending to cause encephalitis - - sadly + + the measurement of the magnetic fields associated with the electrical and mechanical activity of the heart - - expressing relief + + branch of geography that deals with the figure and motions of the earth, its seasons and tides, its measurement, and its representation on maps and charts by various methods of projection - - expressing glee, excitement + + wood engraving, especially of an early period - - indicating strong approval + + the art of printing texts or illustrations, sometimes with color, from woodblocks, as distinct from typography - - approximately + + the study of the geographic distribution of plants - - expressing surprise + + the phytogeographic features of a region - - indicates acknowledgment + + a description of the moon's surface - - expression of gratitude + + an imaging technique in which the output is produced by the coupling of two types of field (electromagnetic and magnetic) - - traditionally associated with a discovery + + characterized by exclusivism - - any person + + very large or fast jet aeroplane - - similar to, reminiscent of + + powerful jet engine - - the aforementioned person or thing + + dramatic work in which psychological elements are the main interest - - against + + that pollutes; that causes environmental pollution - - salutation of Italian origin + + style of painting using pointillism to achieve a more formal composition - - away from + + protuberance of the outer ear; thicker part of the antihelix - - the same + + condition produced by overuse of bromine or a bromide - - God willing (used mainly by Muslims or in Islamic contexts) + + instrument for measuring logarithmic decrement of oscillatory circuit - - response to sneezing + + removal of a security from official register - - used to express surprise, interest, or alarm, or to command attention + + a nucleus of the optic thalamus - - interjection meaning "rubbish," "nonsense" + + pollination by agency of water - - equal in value to + + machine for separating the hulls from seeds - - deserving of + + keyed viol, a musical instrument - - (call to someone at a distance) + + production of ketone bodies - - (expression of excitement) + + engaged in courtship - - (expression of pride) + + not disclosing one's true ideology, affiliations, or positions - - (expression of surprise) + + intended not to attract attention : stealthy - - (expression of irritation) + + aving or providing the ability to prevent detection by radar - - (expression of anger) + + (medical) involving or caused by an asymptomatic or presymptomatic infectious individual : silent - - (expression of regret) + + having a heart - - (expression of worry) + + the study of how human diet, nutrition, and subsistence are influenced by social, cultural, historical, ecological, and evolutionary factors - - (expression of shock) + + the best, most exciting - - that’s mine! I want a share! + + the frequency of marriage within a population, usually expressed as a marriage rate - - (gender-neutral singular pronoun in all grammatical persons) + + a mayfly used as fishing bait - - what amount? + + African musical instrument of the lamellophone family - - upward + + membranous lining in insects and arachnids - - within, towards the inner part + + to grow more than one distinct cell type in a combined culture - - bring your own bottle + + that which is eaten - - bring your own beer + + to go to the gallows, to be hanged - - bring your own booze + + the idea that the present is haunted by the metaphorical "ghosts" of lost futures - - bring your own bud + + musical genre that took hold in the early aughts that evokes cultural memory and aesthetics of the past - - personal pronoun + + to take with; to have accompanying - - not tested + + to force or barge one’s way into (a place or event) - - at a pace of about 120 steps per minute + + crash, slam or invade, possibly unexpectedly - - cardinal number between 19 and 21 + + rumbling noise produced by movement of gas through intestines - - what person + + to expect, regard as likely to happen - - person or people that - It was a nice man who helped us. + + to interpose in one’s authority - - which mode + + to officially or legally make over, convey, assign, grant - - number between 136 and 138 + + to place or set upon something - - the number 3 between two and four + + anathema; curse; denunciation, condemnation - - single person, previously mentioned, of unknown or non-binary gender + + to place against, set in opposition to - - group of people, animals, plants or objects previously mentioned + + to presuppose, assume beforehand - - some people; someone + + to endow with a benefaction - - (first-person singular personal pronoun) speaker or writer of a sentence - That belongs to me, not you. - I am Ozymandias, King of Kings! + + situated or occuring above the clavicle - - inanimate object or animal + + to give an additional name, title, or epithet to (a person) - - child of unknown gender + + to take turns doing something with someone - - referring to the situation in general + + to put into the possession of trustee(s) - - single, specific person + + to act as a trustee - - (word used with the present form of a verb to mark it as being an infinitive) + + to bind ubiquitin to (a protein) - - referring to a thing or things that exist + + depression on the upper part of a pock on the skin - - above, higher in altitude + + Egyptian dancing-girl - - more than a few + + to unfasten, loosen; to undo from fixed state - - A word used to show agreement or acceptance. + + a small cavity in a rock or vein, often with a mineral lining of different composition from that of the surrounding rock - - affirmative option provided in a binary vote + + to experience enjoyment, amusement, entertainment - - spatial position in relation to two objects, on each side of the subject + + to sew by hand - - within the interior of something, closest to the center or to a specific point of reference + + to feed by hand - - because + + to remove social stigma associated with - - not including + + a theory of ethnicity emphasizing that ethnic groups are created on the basis of enduring ("primordial") biological, linguistic, or geographic relationships - - request for confirmation + + the branch of anthropology that studies human economic activities throughout the world - - denoting thoughtfulness + + to re-establish priorities for - - Expression of awe, terror, surprise or astonishment + + semblance of interpersonal exchange whereby members of an audience come to feel that they personally know a performer they have encountered in mass media - - something belonging to + + any of various herbivorous dinosaurs (family Hadrosauridae) of the Late Cretaceous having the jaw elongated into a snout that resembles a beak : hadrosaur - - to + + a polemical argument; a diatribe, a polemic. Usually in plural - - difference + + synthetic chemical element with symbol Og and atomic number 118 - - one thousand million + + an undersized, slight person; a person lacking in strength, weak, feeble - - natural number + + colored stoneware with raised white decoration - - from within/the inside + + the fishing fleet for sardines - - mot pour mot + + a person who or thing which procreates; a parent; a creator - - in the middle of + + best friend - - cardinal number + + one that debunks - - cardinal number + + representing a brief resonant sound, as of a blow - - neopronoun + + worthless, useless - - interjection used as an expression of surprise, fear, or astonishment + + the buttocks; the anus - - used to make a polite request + + in computing, that which can be read but cannot be changed by a program - - Used as an affirmative to an offer + + the fact or condition of occupying a certain place or position; the place in which a person or thing is; location - - salutation used in the morning + + a place, a location; (also) position, location - - toward the top + + feeding on insects - - near + + the action or process of a bacteriophage - - to which + + to unsay or retract something sworn - - be quiet(er); stop talking or making noise, or make less noise + + later or vertical movement of material in solution or suspension through soil - - salutation used at night + + a person who engages or participates in figure skating, especially competitively - - Greeting given upon someone's arrival + + a freestyle competition with no required elements, in which skaters perform an original program of jumps, spins, sequences, etc., to music of their choice - - ellipsis of you're welcome + + a person who performs a free skate in figure skating - - response to sneezing + + a discipline of figure skating performed in pairs and incorporating movements based on ballroom dances - - laughing my ass off + + among a group of two or more - - a colloquial or informal way to say goodbye or farewell + + paid with paper currency - - at + + a figure skating jump in which the skater takes off from the back outside edge of one skate, makes at least one full turn in the air, and lands on the back outside edge of the same skate - - Correct, right + + clever, wise - - the number between 35 and 37 + + relating to or resembling vampires - - the number between 20 and 22 + + the quality of being unconstrained - - implies affirmation + + nincompoops as a class - - (expressing affirmation, agreement, or admiration) + + person regarded as socially inadequate, unfashionable, contemptible - - (first person plural reflexive pronoun) + + the act of assigning a criminal punishment - - one of two equal parts of + + act of objecting to something or participating in a protest - - (reflexive third-person singular impersonal pronoun) of its own self + + manner of speaking - - after a certain amount of time + + a type of mozzarella cheese made from the milk of Italian Mediterranean buffalo - - (exclamation of pleasurable anticipation for the taste of food) + + state that has the highest authority over a territory - - of consitional allowance for the present + + of or relating to the moth family Arctiidae - - (used in borrowed French compounds) of + + a miserable person - - on account of; by reason of + + Stiefmutter - - Originally and chiefly in children's speech: an exclamation used after two people utter the same word or phrase in the same moment + + an unwanted and unsolicited telephone call - - nothing, not anything + + necrosis of a tooth - - zero; nil + + gift giving, often as a fulfillment of a request - - to one another; one to the other + + to draw again - - despite, for, notwithstanding + + a container, typically a rectangular or square structure, used to grow plants in a controlled environment, often outdoors - - (with plural reference) your + + (expression to persuade, garner attention) - - along + + clothes custom-made for sale - - you, all of you + + an ancient Mediterranean and Near Eastern earthen vessel with small cups around the rim or fixed in a circle to a central stem - - you and people of your kind + + working (of something) - - (expressing compliance with an order) + + musical instrument that creates sound through the vibration of air without the use of strings or membranes - - medical imaging procedure using X-rays to produce cross-sectional images + + to reduce risk - - expression of consent + + assumed (of a setting) - - expression of thoughtfulness + + a combination of nine instruments or voices - - expression of disagreement + + a musical composition for nine instruments or voices - - no + + rolling pin - - expression of disgust + + in advertising and web design agencies, the person who acts as the intermediary between the agency and the client, whose job is to interpret the client’s brief and manage the process of its realization - - the number between four and six - The five books of Moses were collectively called the Pentateuch, a word of Greek origin meaning "the five-fold book." + + a noncommercial often homemade or online publication usually devoted to specialized and often unconventional subject matter - - the number 11 + + fast-forwarding through commercials on recorded media during playback - - used to indicate source/origin + + the practice among television viewers of rapidly changing from one channel to another using a remote control device, especially during commercial breaks - - used to indicate starting point, temporally or spatially - A history of public transportation in Kansas City, from cable cars to buses and beyond + + the mass production of identical copies of a text using technological means (i.e. printing) - - the whole amount, quantity, or extent of + + a television show or series that tells a story in a predetermined, limited number of episodes - - every member or individual component of + + a comic book series that tells a self-contained story in a limited number of issues, usually between two and eight - - any (whatever) + + (sports) a short series of performances or athletic contests - - nothing but; only + + the high redundancy of broadcast codes associated with structurally simple, formulaic, and repetitive texts - - conditional conjunction + + a technique used in broadcast programming whereby an unpopular television program is scheduled between two popular ones in the hope that viewers will watch it - - for the reason that; the fact that + + the use of technology that stimulates the senses of touch and motion, especially to reproduce in remote operation or computer simulation the sensations that would be felt by a user interacting directly with physical objects - - over; higher than; further away from the ground than + + the perception of objects by touch and proprioception, especially as involved in nonverbal communication - - on the other side of, further + + person who takes part in a game - - all, each + + the sport or activity of riding a mountain bike - - not any of a group + + a synthetic cannabinoid and dibenzopyrane derivative with anti-emetic activity - - in the middle of + + musician, singer; provider of music - - various + + a pastelike mixture of apples, nuts, cinnamon, and wine used during the seder meal on the Passover and symbolic of the clay from which the Israelites made bricks during their Egyptian slavery - - greeting used when meeting someone + + utterance of ‘ah’ - - on top of + + act/process of amounting to, coming to, calculating, or computing arithmetic mean (usually mean, median, or mode) - - ten to the power of googol + + experiencing or having an average - - final, ultimate, coming after all others of its kind + + give legal rights to property - - expressing a desire for something to depart + + to impose or command, imposing, commanding, deciding, telling - - goodbye, likely for a long time + + my (in colloquial dialectal use) - - expression of great pleasure + + the study of alphabetic systems of writing - - natural number + + tthe methods and processes used to join different components together to create a complete product - - natural number + + the science and engineering involved in designing, developing, and applying devices called actuators - - (to do with position or direction) in, on, at, by, towards, onto + + to say or shout something loudly - - (to do with separation) in, into + + to sing something loudly - - (to do with time) each, per, in, on, by + + of or like fibrils or fibers - - بِ إسم أللَه + + of or exhibiting fibrillation - - third-person singular neopronoun + + having the color of the element copper - - in the middle of + + made of copper - - in an unsuspected manner; without being suspected + + engage in a battle with someone - - as a result of which + + the study of physiology at a microscopic scale - - on top of which + + biochemical - - nevertheless + + the study of the relationships between plants and climate, including the impacts of climate on plants and how plants, in turn, affect climate - - individual person as the object of his or her own reflective consciousness + + branch of geology concerned with the study of rock layers (strata) and layering (stratification) - - interjection used to express disdain or reproach + + the study of witches or witchcraft - - (used to emphasize the truth of a statement) + + organismic psychology that emphasizes the self or the individual personality - - an exclamation meaning "long live ..." + + one who has hair cropped short - - long live! (battle cry) + + the study of the plant genus Theobroma, cacao, and chocolate - - third person singular neopronoun + + in an abrupt manner (suddenly/without warning) - - expresses hostility + + a bisector; specifically : a line bisecting the angle between the optic axes of a biaxial crystal - - expression of encouragement prior to a performance + + make available for consideration - - expression of gratitude + + postpone consideration of - - interjection meaning "As long as you're healthy [you can be happy]." + + the study of the Earth's atmosphere and oceans using data obtained from remote sensing devices flown onboard satellites orbiting the Earth - - (reflexive pronoun for the first person singular) + + that has escaped/is a fugitive - - occurent three times + + the study of the significant influence of climate on many aspects of commerce and industry - - the number between 22 and 24 + + lose, come to not have - - Islamic expression of reverence + + act/process of poking with sharp object (perhaps fatally), metaphorically trying something - - (a colloquial American plural form of the second person plural pronoun) + + removal of innards - - (imprecative) damn, damnation + + technologies that create simulated experiences, making users feel like they are part of a digital or virtual environment - - in positive contexts; different, the other of two alternatives, an additional + + act of talking aimlessly - - according to + + The act of moving aimlessly from place to place - - (reflexive second-person singular) that which belongs to thee + + the act or process of making something active again - - three halves, 1.5 + + process or act of making less effective, not sharp - - (third person possessive singular; belonging to a female being) + + departed from a straight path - - (third-person singular reflexive personal pronoun used with male human or anthropomorphized referrents) + + moment when an institution starts operating after a closure - - with, accompanied by; and with (associative) + + addition or administration of a substance - - (introduces relative clause involving people or a group) + + measuring an appropriate amount of chemical for a given purpose - - (expression of disappointment) + + feeding of babies and young children with milk from a woman's breast - - ship ahoy! (exclamation said when another ship is in view) + + pique one's interest - - being part of; included in + + to pair, combine, compare - - informal expression used to get attention or greet someone + + faint, pass out - - which thing, which object + + act or process of making higher, increasing, raising - - the number 2 + + that makes a sign or signs; that signs or is authorized to sign - - the number 7 + + technologies that support individuals in performing tasks or improving their overall performance, particularly those with disabilities or those needing assistance to live more independently - - playing card + + a genetic engineering technique used to disable or remove a gene from an organism's genome, typically to study its function - - connects at least two alternatives (inclusive) + + act of displaying something proudly - - thousand million + + branch of medicine that deals with the diagnosis and treatment of syphilis - - million million + + technology that radically alters the way something is produced or performed, especially by labor-saving automation or computerization; an instance of such technology - - one; any indefinite example of - An yttrium sulfate compound is generally soluble. + + to leave out, not experience, fail to take advantage of - - (introduces a clause which is the subject or object of a verb) + + to submit or give something - - for a time period + + the integration of various functionalities into glass surfaces, transforming them beyond traditional windows and partitions - - the number 100 + + a practitioner of anaplastology - - after a point in time + + the study of a single, unified sound system within a language, rather than comparing it to other systems - - not containing or using + + to cause (a solid) to behave like a fluid, as by pulverizing or by suspending pulverized particles in a moving gas - - in the direction of + + to suspend (something, such as solid particles) in a rapidly moving stream of gas or vapor to induce flowing motion of the whole - - some person + + technology that extracts heat from the earth by circulating a working fluid through a closed loop within a borehole, typically in geothermal or oil/gas wells - - with an increase of + + (in the oil industry) used, occurring, or performed in a well or borehole - - at any time that + + all categories of ubiquitous technology used for the gathering, storing, transmitting, retrieving, or processing of information - - phrase used when someone is leaving + + the study of the abnormal or diseased structural changes in cells, tissues, and organs - - cheer + + one who uploads or uploaded - - number between 59 and 61 + + a program that uploads - - natural number + + (cause to) become flat - - natural number + + divvy up - - used to warn of a falling tree + + act or process of bullying - - linguistic particle used to show agreement, acceptance, consensus, appreciation or an affirmative opinion + + transformation of one tissue into another - - affirmative option provided in a binary vote + + abnormal replacement of cells of one type by cells of another - - mocking sadness + + A small town; a town of very modest size, typically smaller than an average town but larger than a village. - - neopronoun + + The act of accumulating - - neopronoun + + The act of approaching. - - neopronoun + + wrongly or badly informed; deceived - - neopronoun + + wind down: come/bring to a stop - - salutation used in the evening + + endure, last through - - at this moment + + play to: butter up to, try to please - - because - I wanted to attend the concert, for it featured my favorite band. + + blackout drunk - - since / because - She prepared thoroughly for the meeting was crucial to her career. + + the classification of libraries based on their function, user group, or other defining characteristics - - some large quantity of something + + The act of sprinkling lightly - - which of two + + one who delves, as a tiller of the ground, or excavator - - used to tell someone, especially a child, to be quiet + + remove armed forces, removal of military presence - - requesting assistence + + The act of working on more than one task at once - - used as an exclamation to express surprise, taunting, exultation, etc. + + act of dipping (as with ladle or hand) - - an interjection used to rub a good joke in someone's face or cheer yourself on after a personal win + + an enzyme that originates from an extremophile, an organism that thrives in extreme environments like high temperatures, acidity, salinity, or low temperatures - - The thing, item, etc. being indicated. - This is a pronoun. + + provide with context - - used to express discontent or dismay + + a condition in which the secretion of mucous is diminished - - used to express surprise + + police officer in the Republic of Ireland - - prepare for an immediate event about to happen + + The act of causing something to become yellow - - prepare a weapon for use + + a floating hotel, permanently moored at one location - - shut up! be quiet! + + act or process of supporting, substantiating, being a foundation - - long live + + variation on sense two above, enter into a contract with an outside party - - to be honest + + advance diet as tolerated - - six, six of something (often approximately) + + able to be awakened, stirred up - - coming outside from - Preparations for their departure out of Egypt + + pave, cover with asphalt + + + politically opposed to Bashar al-Assad - - that which shares attributes with another or with itself at another time + + The act of sorting into groups categorically - - (expressing approval, emphasizing accuracy) + + having no opening - - (implying alarm or threat) + + be prevented from coagulating - - singular ‘they’ + + act of performing an imaging procedure that involves injecting a contrast dye into the bloodstream and taking X-ray - - (reflexive third-person plural pronoun) of their own self + + intensify effort, exert pressure on - - close by + + small African fox, Vulpes zerda - - against; in return for + + act or process of bird-watching - - used to, acquainted with + + susceptible to blanching - - oops; sorry, I just let off + + lazy, inefficient - - expression of satisfaction + + to squash or mash - - cardinal number + + to press or force (someone or something) into a small space - - number between eleven and thirteen + + the scientific study of children; pedology - - male person or animal already known or implied + + the field of meteorology that uses fundamental laws and principles of physics and mathematics to understand, analyze, and model the atmosphere - - person whose gender is unknown or irrelevant + + a device used to indicate the direction and intensity of the magnetic field (as on a planet) - - placed above + + capable of being quelled - - The (thing) here (used in indicating something or someone nearby). - This word is a determiner. + + common name for a freshwater fish (genus Hiodon) known for its large, shiny, golden eyes - - The known (thing) (used in indicating something or someone just mentioned). + + buckle up: prepare for the worst - - The known (thing) (used in indicating something or someone about to be mentioned). + + fasten one's seatbelt - - A known (thing) (used in first mentioning a person or thing that the speaker does not think is known to the audience). Compare with "a certain ...". + + to place or store in a cellar - - (of a time reference) Designates the current or next instance. Cf. next. + + form cavities in tissue or organs - - through the means of + + act of holding together very tightly - - near to + + to cut, cut off, or cut out - - of a kind + + surgery that creates an artificial connection between two non-contiguous parts of the colon - - English function word + + involving the colon and the anus - - The (thing, person, idea, etc) indicated or understood from context, especially if more remote physically, temporally or mentally than one designated as "this", or if expressing distinction. - That pronoun is different with this determiner. + + establish with another - - target of an action + + expression of two or more genes simultaneously - - indicating a location for an event + + amend text with a partner - - every person, everyone + + a topology on a space that is the most suitable or standard one for its given context, often arising from a more fundamental structure like a metric or an order, or by making certain naturally defined maps continuous - - concept denoting the absence of something, and is associated with nothingness;(in nontechnical) things lacking importance, interest, value, relevance, or significance + + removal of the urinary bladder and the prostate - - absence of anything, vacuum + + remove burrs - - up to a certain point in time + + process of degrading and destroying the myelin sheath covering nerves - - according to + + remove flesh - - no matter what; for any + + remove germ or oil - - anything that + + remove a phosphate group from an organic compound by hydrolysis - - greeting of non-binding nature + + branch at a wide angle - - phrase used when someone is leaving + + accumulation and sinking - - expression of surprise or disbelief + + bending or hanging downwards - - English archaic personal pronoun - Thou shalt not steal + + act in a manner that causes others to pay attention - - that is perfect; that is it + + cool, stylish, excellent - - claiming success or a win + + be oriented with the face pointing down in some framework - - number between 49 and 51 + + The act of falling back, relying on in emergency - - from the beginning + + (cause to) be enclosed or blocked out - - narrative technique of beginning a story at the beginning of the events + + vpc version of fly.03, hit a fly ball - - at what time. + + inject liquid to force an opening for extraction of oil or gas. - - at such time as + + mark with freckles - - at the time of the action of the following clause - The show will begin when I get there. + + add/request as a 'friend' on social media - - conjunction + + destroy tissue with a high-frequency electric current - - anything (sometimes indicates the speaker doesn't care about options) + + spontaneously grow fungus - - (indicating movement, direction towards a place) + + act or process of allowing an old exception to a new regulation - - before, until (indicating relation to a position in time) + + go to the gym - - (indicating application of or benefactive relationship with) + + to place back in a holster - - in addition to what has been said previously + + act or process of rendering humid or moist - - in another way + + to undergo hyaline degeneration or become hyaline - - or else + + process of becoming severely inflamed - - whatever person + + to exist within, especially as a spirit or driving force - - (expression of strong feeling) + + variety of aubergine with purple and white stripes - - an imitation or representation of the grunt of a pig + + spider - - laughing out loud + + surround with land - - an expression of surprise, shock, etc. + + make lanes out of a certain area or space - - used to wish someone the best of luck and that events will turn out in favorably + + act or process of translation, shifting diachronically into Latin - - nearby, next to + + forming or dividing into lobules - - (indicates immanent occurrence of action) + + not suited or properly adapted - - stay still (for a moment); exclamatory expression + + abnormal formation - - consitent of, having been created from + + inaccurately assign a label or attribute - - (first-person singular possessive) belonging to me + + very slight invasion of malignant cells into adjacent tissue - - (third-person plural possessive) belonging to them + + cause to be married - - tother + + The act of swarming, driving away (perhaps a predator) as a group - - interjection used to express surprise, anger, or extreme displeasure + + removal of an organ's mucous membrane - - with regard to + + regulation of osmotic pressure - - (introduces restrictive relative clause) + + Observe with attention - - sound of spitting + + move slightly - - you only live once + + add material to the boundaries of a shape/form - - do not intubate + + overwhelm with (military) force - - expression of hesitation + + spend the winter - - expression of thinking + + to pledge too much - - expression of acceptance + + inflate too much - - exactly that; in itself + + hunt a species or area to the point of damaging the herd - - initialism ostensibly standing for Fucked Up (or variations like Fouled Up) Beyond All Repair or Recognition + + make poor - - what place + + in or to the continental U.S. - - the number 4 between three and five + + stomach ache - - playing card + + The act of incorporating a nitrosyl group into another molecule - - the number 6 + + act of splitting into periods, assigning to a period - - In addition to; as an accessory to + + unable to examine by feel - - (used to show disagreement or negation) + + not happening repeatedly - - to move inside of (something) + + remove small pieces from - - item(s) that are separate and distinct from the item(s) under consideration + + sweetheart, darling, beloved one - - at least one item of a set + + to decorate a floor with parquetry (inlaid woodwork) - - what person’s + + flog - - person’s … that + + determine and perform necessary medical course of action - - in all associated places + + (hyper-gendered) act as female staff for, work at - - laughter or amusement + + drone on about something trivial - - through + + ride a sailboard - - unless + + the color white-tan - - while + + warm slightly - - indicating sudden understanding + + enclose with walls - - express uncertainty or hesitation + + the snowboarding of waterskiing - - traditional maritime greeting + + violet in color - - natural number + + surgery that connects two parts of the same ureter - - a small amount + + not welcome - - from without/the outside + + unsettle, destabilize - - cardinal number + + cause to be in the required condition beforehand - - neopronoun + + drink or celebrate, before an event or outing - - neopronoun + + to incubate (as a cell or a culture) prior to a treatment or process - - neopronoun + + entity at a pre-medical school level - - neopronoun + + in favor of war - - indicating something that is far away from both the speaker and the listener - That is a determiner. + + talk about again - - goodbye + + the process of implanting again, particularly as in the restoration or replacement of bodily tissue or part(s) after loss or removal - - expression of pain + + groundlessness (quality/fact of being without underlying basis/foundation) - - und/oder + + find a new home for - - when something does not go your way + + to look at again - - when you are surprised + + to perform surgery or operate again - - when you see something you are impressed by + + the act of hitting with radiation again - - when you realize something profound + + the act of emitting or projecting, again - - you; person spoken to or written to + + look at again; review another time - - anyone, one; unspecified individual or group of individuals + + smooth, characterized by absence of hindrance/difficulty - - oh my God + + travel again - - (relexive pronoun for the second person) that which belongs to you + + behind the pubis - - neither of two persons or things + + cast ballot again - - (linking a destination, subject of approach) + + the act of casting ballot again - - (second-person singular possessive) belonging to thee + + roll on the floor laughing - - (third-person singular masculine personal possessive) belonging to him + + scout, investigate - - over the top of; over + + act of investigation, scouting - - at a distance from + + without having to pay or be penalized - - later on + + the act or process of cutting, shaping, or forming scallops - - see you later + + in a way that is marked by unusual, odd, or peculiar habits, traits, or behaviors, often in a charming or whimsical manner - - representing a brief resonant sound, as of a blow + + make a shushing noise to encourage someone to be quiet - - among a group of two or more + + act or process of checking in - - (expression to persuade, garner attention) + + to inform, make information known - - my (in colloquial dialectal use) + + the act or process of sleeping until some effect is no longer felt, particularly that of alcohol, medication, or a short-term malady + + + stall off: delay, intensive of stall.01 + + + p-value - - sailor’s cry in heaving and hauling + + to stop doing something; pause an activity, perhaps to look at the big picture - - do not resuscitate + + delusional diff --git a/extensions/wikidata-lexemes/output/eo.xml b/extensions/wikidata-lexemes/output/eo.xml index 89dc656..2e53317 100644 --- a/extensions/wikidata-lexemes/output/eo.xml +++ b/extensions/wikidata-lexemes/output/eo.xml @@ -10,12 +10,14 @@ + it + triapersona plurala pronomo @@ -124,6 +126,9 @@ + + + my @@ -148,12 +153,14 @@ + single person, previously mentioned, of unknown or non-binary gender + proposed second-person plural pronoun @@ -325,12 +332,18 @@ + + + hers + + + one's; your (generic) @@ -349,6 +362,7 @@ + proposed gender-neutral third-person singular pronoun @@ -422,6 +436,9 @@ + + + your (plural) @@ -455,6 +472,7 @@ + second-person singular pronoun @@ -552,12 +570,16 @@ + + + their (singular they) + he; third-person masculine singular pronoun @@ -573,6 +595,7 @@ + uncommon second-person singular pronoun @@ -580,6 +603,7 @@ + proposed third-person feminine plural pronoun @@ -667,12 +691,18 @@ + + + your (singular) + + + its @@ -685,6 +715,7 @@ + nobody @@ -697,12 +728,14 @@ + I; first-person singular pronoun + proposed third-person masculine pronoun @@ -844,6 +877,7 @@ + she @@ -934,6 +968,9 @@ + + + his @@ -958,6 +995,7 @@ + we; first-person plural pronoun @@ -1111,18 +1149,27 @@ + + + our + + + their + + + the subject's; his/her/its/their own diff --git a/extensions/wikidata-lexemes/output/es.xml b/extensions/wikidata-lexemes/output/es.xml index 2975389..0de1501 100644 --- a/extensions/wikidata-lexemes/output/es.xml +++ b/extensions/wikidata-lexemes/output/es.xml @@ -10,6 +10,9 @@ + + + a(n), indefinite article @@ -43,6 +46,7 @@ + tercera persona neutral @@ -147,6 +151,9 @@ + + + ese otro @@ -223,12 +230,14 @@ + pronombre personal en primera personal plural + second-person plural pronoun @@ -303,6 +312,7 @@ + pronombre en tercera persona femenina Ella comentó que el mayor miedo que tenia se hizo realidad cuando contrajo el virus mientras vendía comida. @@ -331,6 +341,7 @@ + el cual; los cuales; hace referencia a una persona o personas ya referidas anteriormente El actual arzobispo, quien fue entronizado en la catedral de la ciudad. @@ -607,6 +618,7 @@ + frase común utilizada para introducir una narración de acontecimientos pasados, normalmente en cuentos de hadas y cuentos populares. @@ -619,12 +631,14 @@ + pronombre personal, tercera persona singular neutra + and; joins words and equal sentence parts together @@ -660,6 +674,9 @@ + + + cantidad o número escaso Vinieron pocos de sus compañeros de clase. @@ -686,6 +703,7 @@ + indica diferencia, separación o alternativa Ganar o perder @@ -792,6 +810,7 @@ + en cualquiera de los días comprendidos entre el lunes y el viernes, ambos incluidos @@ -851,12 +870,15 @@ + a mía, a mío + + pronombre personal, tercera persona singular masculina @@ -1128,6 +1150,7 @@ + palace @@ -1167,6 +1190,7 @@ + Formal second-person address form @@ -1196,6 +1220,9 @@ + + + refiere al objeto directo de tercera persona cuando éste ya es conocido Yo bebo agua -> Yo la bebí. @@ -1275,12 +1302,6 @@ box - - - - qué o cuál persona - - @@ -1327,6 +1348,10 @@ + + + + artículo determinante @@ -2084,9 +2109,6 @@ box - - qué o cuál persona - a gran distancia diff --git a/extensions/wikidata-lexemes/output/et.xml b/extensions/wikidata-lexemes/output/et.xml index f9642c9..13c93d8 100644 --- a/extensions/wikidata-lexemes/output/et.xml +++ b/extensions/wikidata-lexemes/output/et.xml @@ -22,6 +22,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + three @@ -78,6 +112,26 @@ + + + + + + + + + + + + + + + + + + + + these, those @@ -102,18 +156,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + one + + + + + + + + + + + + + + + + + + + + + + + + + + + + 100 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ten @@ -145,14 +289,33 @@ (expression of wonder or surprise) - - - - since - - + + + + + + + + + + + + + + + + + + + + + + + + + (reflexive pronoun) @@ -178,6 +341,26 @@ + + + + + + + + + + + + + + + + + + + + second person singular, you @@ -190,6 +373,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seven @@ -227,6 +444,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (one) million, 1 000 000 @@ -240,6 +491,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sextillion (either 10^21 or 10^36) @@ -276,6 +560,26 @@ + + + + + + + + + + + + + + + + + + + + I (first-person singular pronoun) @@ -289,12 +593,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + a few (e.g. two or three) + + + + + + + + + + + + + + + + + + + + + + + + + + many @@ -307,12 +671,57 @@ + + + + + + + + + + + + + + + + + + + it + + + + + + + + + + + + + + + + + + + + + + + + + + (third-person singular animate pronoun) @@ -407,9 +816,6 @@ (expression of wonder or surprise) - - since - (reflexive pronoun) diff --git a/extensions/wikidata-lexemes/output/eu.xml b/extensions/wikidata-lexemes/output/eu.xml index 12c4580..653a276 100644 --- a/extensions/wikidata-lexemes/output/eu.xml +++ b/extensions/wikidata-lexemes/output/eu.xml @@ -43,24 +43,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + norbaiten edo zerbaiten alde dagoena, edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inolako fruitu edo ondoriorik gabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alferrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + duela asko gertatutakoa @@ -70,6 +307,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aukeran hautatutakoa, aparta, guztiz egokia @@ -79,30 +375,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurretik gertatutakoa edo ordenaz lehenagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzitsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + onartzeko modukoa dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behin gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbait edo norbait jadanik aipatua dela, hura ez dena, baina nolabait multzo berekotzat hartzen dena adierazteko erabiltzen den hitza @@ -115,6 +708,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehen bezalakoa, aldatu ez dena @@ -124,18 +776,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatzen denaren berdina edo antzekoa, modu berekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezaugarriez mintzatuz, beste batzuen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + deabruari dagokiona; deabruaren ezaugarriak dituena @@ -145,132 +975,1419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nolanahiko, edozein moduko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez edo ezetz-i dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + geroztikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiaren kontrakoa; benetakoa edo egiazkoa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiaren aldekoa, gizadiaren ona bilatzen eta gizon-emakumeen egoera hobetzen ahalegintzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + goren dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa, osotasunari dagokiona, erabatekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hautatutakoa, aukerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hilgarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hil ondoan gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + honelakoa; horrelakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + honelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurbileko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + iragankorra + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + isilpean dagoena edo egiten dena, ezkutua, gordea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + izugarria; oso handia, neurriz kanpokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egundokoa, ikaragarria, itzela + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurrekoa, igarotako aldi edo denborakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez ziurra, zalantzazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere baitan misterioa edo ezkutuko esanahia duena edo dirudiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer tokitarako + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohi dena, ohituren araberakoa @@ -280,42 +2397,461 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + une edo garai hartakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behar-beharrezkoa, ezinbestekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oso ona, lehen mailakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + substantzia bat falta denean, oso garestia denean edo komeni ez denean, horren ordez jartzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat-batekoa, ustekabean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lanbide edo eginkizun bat egiteko zin egin duena @@ -325,12 +2861,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoritxarrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zortziz osatua; joko-kartetan, zortzi puntu balio dituena @@ -343,6 +2998,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa egun guztian zehar @@ -397,48 +3112,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahotsez mintzatuz, ia entzuten ez dena; isilpekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mintzatuz egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + etengabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkeneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bai edo baietz-i dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bakarka egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banakakoa @@ -451,18 +3641,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + barrukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behin-behinean egina, behin betikoa izan gabe, hura taxutu bitartean haren ordez dagoena edo erabiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatutakoa, lehen aipatutakoa @@ -472,18 +3841,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bete beharrekoa; nahitaezkoa, halabeharrezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohiz kanpokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa @@ -493,18 +4040,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + geroa, etorkizuna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiarena, gizakiari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era hartakoa, hura bezalakoa, adierazi den gisakoa @@ -523,6 +4248,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hari dagokiona; delakoa @@ -532,12 +4316,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hila, hilik dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era honetakoa, hau bezalakoa, adierazi den gisakoa @@ -550,48 +4453,524 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurrengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + noiz edo noizko, noizbaiteko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + isilean dagoena edo egiten dena, ezkutua, gordea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) juntagailuez mintzatuz, perpaus baten kausa edo zergatia adierazten duen beste perpaus bat lehenengoaren mendeko egiten duena; perpausez mintzatuz, mendeko bilakatutakoa bera; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren kausa edo zergatia dela adierazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lau hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maiz gertatzen, egiten, erabiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + milaz osatua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + pertsonez mintzatuz, gizalegeari atxikia, adeitsua @@ -607,18 +4986,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neurriz moldatua edo egina; neurriduna, neurritsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer denboratakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + moduren batekoa; gutxi gorabeherakoa, zehaztugabekoa @@ -628,6 +5186,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer eratakoa, zer modutakoa @@ -637,36 +5254,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zer tokitakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohituraz gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + besteren oinarri gertatzen dena; garrantzizkoena, funtsezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondoren gertatutakoa edo ordenaz ondorengoa; ondoan dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondorengoa, ondokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) perpaus nagusiaren ondorioa adierazten duen mendeko perpausari esaten zaio; menderagailuez mintzatuz, horrelako perpausetan erabiltzen dena; lokailuez mintzatuz, perpaus bat aurreko solas-zatiaren ondorioa dela adierazten duena (beraz, hortaz...) @@ -676,6 +5650,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betikoa @@ -688,12 +5721,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urruti dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zergaduna @@ -765,30 +5917,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + abereari dagokiona, pertsona abereekin kidetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adinean sartua, adin handikoa, adinduna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste zerbaiten aldi berean gertatzen, existitzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + antzetsua, trebea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaezkoa @@ -801,30 +6249,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + baldintzapean egin edo emandakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste batekin edo batzuekin batera egindakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gehien behar dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa @@ -834,30 +6577,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egokia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + etengabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezkutuan egin edo gertatua, ezkutua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere kidekoen artean kopuru edo neurri handiena duena, maximoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gorputza duena, espirituzkoari kontrajarria @@ -867,6 +6906,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hara-ri dagokion izenlaguna @@ -876,18 +6974,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi hiri edo gehiagoren artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kontra dagoena; aurkakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + legeari buruzkoa @@ -900,42 +7176,459 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lotsagabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + menpean dagoena, azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neurrigabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + une honetakoa, garai honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sei hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + txandaka antolatuta edo eratuta dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzena ez dena @@ -975,6 +7668,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + agerian dagoena @@ -984,6 +7736,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaez bete beharrekoa @@ -993,12 +7804,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gehiengoari dagokiona, gehienek dutena, inolako berezitasunik ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahala adierazten duena @@ -1008,24 +7939,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + irudipenezkoa, benetakoa ez dena; ametsetan agertzeko modukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era askotakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + atzeraeragina duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbaiten edo norbaiten aurka dagoena @@ -1035,6 +8205,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ziurtzat, finkotzat jo ezin dena @@ -1050,24 +8279,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + litzatekeenari baina ez denari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + begiz, ikusiz egindakoari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beldurgarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berariazkoa, aproposa @@ -1077,36 +8543,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berehala gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egun guztietakoa, egunero gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erlijiosoa, erlijioari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + eskalea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ustekabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oinarrizkoa, garrantzirik handienekoa @@ -1116,36 +8938,391 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gerokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + delako iraganeko unetik orain artekoa, geroztik gertatu edo iraun duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gorengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + halako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + errugbian, saskibaloian, eta beste hainbat kiroletan hegalean jokatzen duen jokalaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + era horretakoa, hori bezalakoa, adierazi den gisakoa @@ -1155,12 +9332,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + horrelako kantitate, neurri, tamaina, garrantzi eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezein, bat ere, inongoa @@ -1170,48 +9466,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + klaseen, bereziki gizarte-klaseen, artekoa; klase bati baino gehiagori dagokiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kontuz egin edo tratatzekoa; garrantzitsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Mil.) soldaduez mintzatuz, oinez ibiltzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osoa, zatirik falta ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + frogatu edo ziurtatu gabe egon arren, eskura diren informazioen arabera edota batzuen iritzian halakotzat hartzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zelulen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoriona duena edo dakarrena; zorionez gertatzen dena @@ -1221,12 +9992,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zorrak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzengabea @@ -1254,72 +10145,784 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aingeruei dagokiena; aingeruen nolakotasunak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ametsezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzizkoa, arduraz egin beharrekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenbizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lehenbizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkena; bukaerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + balio duena; baliotsua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banaka gauzatzen dena; banakoari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat-batean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + baztergabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bederatziz osatua; joko-kartetan, bederatzi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahita, gurariak emanda egindakoa @@ -1329,24 +10932,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beti bat dagoena, aldatzen ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betikoa; etengabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + osotasun baten zati bat edo multzo bateko elementu bat edo batzuk aipatu ondoren, gelditzen diren besteen multzoa @@ -1356,6 +11196,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gogokoa @@ -1365,24 +11264,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gogokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erabat halakoa, berdin-berdina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hamabiz osatua, zerbaitetik hamabi dituena; dozena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hona-ri dagokion izenlaguna @@ -1392,78 +11528,851 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erabat honelakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurbilean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + soinuaz eta irudiaz baliatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazten denaren irudia edo antza duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jan aurretik hartzen den janari edo edaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kidea dena, kidea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mendean dagoena, azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gauzez mintzatuz, naturaz gaindikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hainbat nazioren artean egiten dena, hainbat naziori edo nazioen arteko harremanei dagokiena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + erdipurdikoa, hala moduzkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainerakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kidekoa; maila berekoa @@ -1521,18 +12430,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + guztion artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) albokaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoaren itxura besterik ez duena; asmatua. Askotan egiazko-ren kontrako moduan erabiltzen da @@ -1545,6 +12633,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bereizia, bereizirik dagoena @@ -1557,6 +12704,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + araberakoa @@ -1566,24 +12773,260 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aspaldikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkeneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azkena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + izaera baldintzatua duena @@ -1596,42 +13039,456 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaezkoa, nahitaez behar dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maila apalekoa; baxua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bekatua eginez betetzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + emandako berba betetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + beste era batekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adinako @@ -1641,6 +13498,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inork eta ezerk behartu gabekoa @@ -1650,24 +13566,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bostez osatua; joko-kartetan, bost puntu balio dituena + + + + + + + + + + + + + + + + + + + + delako izenlagunaren plurala + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + betiereko arazoa delako, ahotan oso erabilia delako eta abarrengatik gogaikarri gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + araberakoa @@ -1677,60 +13792,653 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi etxebizitzako baserrian, teilape berean bizi den aldameneko laguna + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezin daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ganora duena; ganoraz egina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + garrantzia duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + uneko egunekoa; gaur egungoa, garai honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gizakiaz gaindikoa, gizakiak ahal duenaz gaindikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hain handia, halako tamainakoa; handia, ona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ez onegia, ez oso fidagarria, erdipurdikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bi hanka dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hauta daitekeena, nahitaezkoa ez dena @@ -1740,18 +14448,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hiruz osatua; joko-kartetan, hiru puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hitzen bidez adierazia + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indarra erabiliz egina @@ -1761,12 +14647,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + itxura onekoa, itxura egokikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jatorriari dagokiona, jatorriz dena; sortze-ingurunetik, egilearen eskutik zuzenean datorrena @@ -1776,24 +14780,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + kolorea edo koloreak dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mirariz gertatzen dena; harrigarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nahitaez behar dena, ezin saihets edo baztertu daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + noraezean doana @@ -1803,24 +15044,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urtero gertatzen edo egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gertatuko denik uste edo espero izan gabe + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nolakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzena, norabidez aldatzen ez dena @@ -1905,144 +15383,1569 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hain handia, halako tamainakoa; handia, ona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berezko edo unekoaren kontrako jarrera, ordena, noranzkoa eta abar duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + amorrua duena, haserre bizia duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zentzuzkoa, bidezkoa, arrazoiaren araberakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezaugarriren bati buruz beste batzuen artean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aipatzen den unetik ondorengo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + urte honetakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ausaren arabera gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + batez osatua; joko-kartetan, palo bakoitzeko lehena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berdinik ez duena, berdingabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + maitatua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edoskitzeko garaian dagoen haurra, esnea elikagai bakarra edo funtsezkoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + doan egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiazkoaren itxura duena, egiazkotzat har daitekeena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + egiarekin bat datorrena, egiaren araberakoa dena; faltsua edo itxura hutsekoa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + emakumearena, emakumeari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nirea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurrenekoa, lehenengoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + gainean dagoena; gainetik dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ganoragabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + behar, zilegi, egoki edo ohiko den baino gehiagokoa edo handiagoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bere kidekoen artean kopuru edo neurri txikiena duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + horra-ri dagokion izenlaguna @@ -2052,30 +16955,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hurren datorrena, ondo-ondotik datorrena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezein, bat ere, inolakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + mugan dagoena; mugan bizi dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (Hizkl.) izenez mintzatuz, singularrean erabilirik mota bereko gauza edo osagai-multzo bat hartzen duena edo adierazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + edozein motatakoa @@ -2085,18 +17287,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + tokiren batekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + odolkidea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ondokoa, ondotik datorren pertsona @@ -2106,60 +17487,633 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + probetxugarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zerbaitetan nabarmentzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seiz osatua; joko-kartetan, sei puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + benetakoa edo serioa ez dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + uraren, bereziki itsasokoaren, azpian dagoena nahiz bertan egiten dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zaintzen den gauza edo pertsona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zazpiz osatua; joko-kartetan, zazpi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zentzua duena; arrazoizkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bat baino gehiago @@ -2170,12 +18124,6 @@ натуральное число - - - - edo hitzaren forma indartua - - @@ -2214,24 +18162,261 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + neur daitekeen ezaugarri bat beste zerbait edo norbaiten mailakoa duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adingabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + agintearen azpikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ahaideez mintzatuz, aitaren aldekoa @@ -2241,30 +18426,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aldiune batean, denbora laburrean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aldizka gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alokatua, alokairukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + amairik ez duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aurretiazkoa @@ -2274,72 +18756,787 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sakona ez dena, azalean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + azpiratua dagoena, mendekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + banakakoa, bakarkakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ohiko zaion edo behar duen garaia baino geroagokoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + naturala, bere izate edo funtsari dagokiona, kanpoko eraginik gabekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + adierazi den lekukoa, bertakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zuzentasunaren araberakoa; legezkoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bik osatutakoa, parea; joko-kartetan, bi puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + bizitzak irauten duen bitartean irauten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + alferrekoa @@ -2349,54 +19546,587 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + biren artekoa; bereziki, bi aukera izaki, ez bata ez bestea, bien artekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ezinbestekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + familiakoa; familiartean gertatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hamarrez osatua; hamar gauzaren multzoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hiru hileko denbora-bitarteari dagokiona + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + hitzari eusten diona, hitza betetzen duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + handitasunez egiten edo ospatzen dena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ikaragarria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + itxura hutsa dena, benetakoa ez dena @@ -2409,54 +20139,592 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + berebizikoa, neurriz kanpokoa; harridura edo izua sorrarazten duena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indarrean dagoena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + haur jaio berriez mintzatuz, etxe edo beste lekuren batean abandonatutakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lauz osatua; joko-kartetan, lau puntu balio dituena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + denbora luzeko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + metalikoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oharkabean gertatua edo egina + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + oinaren azpikoa; mendekoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ordez jartzen dena edo diharduena @@ -2472,24 +20740,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + orokorra, orotarakoa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + paregabea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sasikumea + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + pertsonez mintzatuz, sasoi onean dagoena @@ -2499,6 +21006,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + zoritxarra duena edo dakarrena; zoritxarrez gertatzen dena @@ -2511,6 +21077,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + nornahi @@ -3717,9 +22325,6 @@ натуральное число - - edo hitzaren forma indartua - ustekabea edo sorpresa adierazteko hitza diff --git a/extensions/wikidata-lexemes/output/fa.xml b/extensions/wikidata-lexemes/output/fa.xml index 9f2c8ab..7e76fbb 100644 --- a/extensions/wikidata-lexemes/output/fa.xml +++ b/extensions/wikidata-lexemes/output/fa.xml @@ -20,122 +20,14088 @@ پاره - - - - آفرین! + + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده - - - - سبب، جهت + + + + به باور قدما جن یا پری که همزاد انسان باشد - - - - ضمیر اشاره برای اشخاص نزدیک + + + + متکبر، لاف‌زن + + + سرگشته، حیران + + + هلاک‌شونده - - - - در حق کسی، برای کسی + + + + مؤنث جازم - - از جهت، از حیث + + حرفی که چون بر فعل درآید آخر آن را ساکن گرداند - - در برابر، در مقابل (برای مقایسه) + + + + + دوراندیش، هوشیار - - - - این + + + + حس‌کننده - - - - اندرون + + + + حکایت‌کننده، بیان‌کننده - - پرده + + + + + ستاینده، ستایشگر - - رشته + + + + + کهنه، فرسوده - - - - من + + + + آب که به شدت از محل ریزد، ریزان - - مخفف انا الحق (من خدایم) + + + + + سودبخش، سودآور، نافع - - - - ضمیر مشترک که در میان متکلم، مخاطب و غایب مشترک است و همیشه مفرد آید + + + + + کوچ‌کننده، رحلت‌کننده - - شخص، ذات، وجود + + + + + ترک کننده، رهاکننده - - بخش - - - برای - - - پاره - - - آفرین! - - - سبب، جهت - - - ضمیر اشاره برای اشخاص نزدیک - - - در حق کسی، برای کسی - - - از جهت، از حیث - - - در برابر، در مقابل (برای مقایسه) - - - این - - - اندرون - - - پرده - - - رشته - - - من - - - مخفف انا الحق (من خدایم) + + + + بالابرنده، بلند کننده + + + بردارندهٔ قصه به شاه یا امیر، عرض حال دهنده + + + + + + رکوع‌کننده + + + فروتنی + + + + + + رام‌کنندهٔ ستوران + + + + + + + دزد + + + + + + تابان + + + برافراشته + + + آشکار + + + پراکنده + + + + + + قصه‌گو، افسانه‌گو + + + + + + + واقعه (اعم از خیر و شر) + + + انسان یا جانوری که از سمت راست شخص برآید + + + + + + بیدار + + + + + + نافرمان، سرکش + + + + + + ده یک گیرنده + + + + + + شیطان + + + فتنه‌انگیزنده + + + کسی که ارادهٔ فجور با زنان کند + + + گمراه‌کننده + + + + + + + بوی خوش دهنده + + + + + + مسلط‌شونده، چیره‌شونده + + + + + + کوبندهٔ در و مانند آن + + + فال‌زننده به قرعه + + + + + + موجود، موجودشونده + + + + + + امردباز، غلام‌باره + + + + + + ستایش‌کننده، مدح + + + کننده + + + + + + دشمنی‌کننده + + + + + + + رسنده به چیزی + + + درک‌کننده، دریابنده + + + آوردن الفاظی است در ابتدای کلام که موهوم ذم باشد و بقیهٔ کلام به نحوی آورده شود که رفع توهم گردد + + + + + + + برافروزندهٔ آتش جنگ + + + جنگ‌کننده + + + + + + سنگ‌شده، سخت‌گشته + + + در فارسی به کسی گویند که حاضر به درک و پذیرش نوآوری‌ها نیست + + + + + + آواز خواننده، زمزمه‌کننده + + + + + + + بصیر و دانا، دقیق + + + + + + + به تکلف کاری‌کننده + + + + + + پی درپی‌شونده، متوالی + + + + + + + پیشی گیرنده (بر یکدیگر) + + + + + + تجزیه‌شونده + + + + + + تظاهرکننده + + + + + + دارندهٔ صفتی + + + + + + در پی یکدیگر شونده + + + + + + ساخته‌شده، صورت گرفته + + + + + + کسی که مباشر کار و شغلی است + + + + + + + گمان‌کننده، شک‌کننده + + + + + + نویسنده، دبیر + + + + + + + خود را به عرب مانند کننده + + + + + + چیره‌شونده + + + + + + گشایش یابنده (از تنگی و دشواری) + + + گشایش خاطر یابنده + + + خوشی جوینده + + + + + + برعهده گیرنده + + + + + + + کسی که به دیگری تقرب کند، نزدیکی جوینده + + + + + + عهده‌دار، کفیل + + + + + + موجود شده، به وجود آمده + + + + + + تمام‌کننده، کامل‌کننده + + + + + + کج شده و خمیده شده + + + آنچه که به چیزی میل کند + + + + + + برخوردار از چیزی، بهره‌مند + + + کسی که عمره (زیارت بیت الله با شرایط خاص) به جا آورد + + + + + + چنگ در زننده + + + بازدارنده + + + + + + با نسق و ترتیب، منظم، مرتب + + + + + + پیاپی، پشت سرهم + + + + + + آماسیده، ورم کرده + + + + + + تجویز شده، روا داشته شده، اجازه‌نامه + + + + + + احیاءکننده، زنده‌کننده + + + + + + ویران‌کننده + + + + + + خطاکار، گناهکار + + + + + + خفه‌کننده + + + در علم عروض «مفعولن» چون در حشو بیت افتد و از «مفاعیلن» منشعب باشد، آن را مخنق خوانند + + + + + + خیال‌کننده + + + + + + دفاع‌کننده + + + + + + دوام دهنده، ادامه دهنده + + + + + + باریک گردانیدن + + + کار دقیق‌کننده + + + نکته‌های دقیق پیدا‌کننده + + + + + + دلالت‌کننده، راهنما + + + + + + خوار دارنده + + + + + + + نامه فرستنده + + + + + + بازگشت‌کننده + + + کهنه پسند + + + + + + اراده‌کننده، ارادتمند + + + + + + کهنه، دیرینه، مرض مزمن بیماری ای که کهنه شده باشد + + + + + + زایل‌کننده + + + + + + دوای خواب‌آور + + + + + + خودسر، خودرأی + + + + + + صاحب بصیرت + + + + + + خدمت‌کننده، مجازاً: کارمند + + + + + + طالب استراحت + + + + + + شفا جوینده، بهبود خواهنده + + + + + + آمرزش خواه + + + + + + فریادخواه، دادخواه + + + + + + استفاده‌کننده، فایده گیرنده، بهره‌مند + + + + + + یاری خواهنده + + + دلیر و توانا + + + + + + + رم‌کننده، رمنده + + + + + + نور جوینده ستاره ای که از خود نور ندارد + + + + + + غالب، چیره‌شونده + + + + + + هرچیزی که باعث شکم روی شود + + + + + + خیره سر، خودرأی + + + + + + خبر دهنده، آگاه‌کننده + + + + + + ناله‌کننده + + + + + + عذر آورنده + + + + + + اقرارکننده، اعتراف‌کننده + + + + + + چنگ زننده به دامن کسی + + + + + + آموزنده، تعلیم‌کننده + + + + + + برخلاف، برعکس + + + + + + غنیمت گیرنده، غنیمت شمرنده + + + + + + به فریاد رسنده، یاری‌کننده + + + + + + تغییر دهنده، دیگرگون‌شونده، قابل تغییر + + + بی ثبات، بی دوام + + + + + + افتراء زننده، تهمت زننده + + + + + + برانگیزانندهٔ فتنه + + + + + + فتوادهنده، قاضی + + + + + + خالی‌کننده + + + واریز‌کنندهٔ حساب + + + + + + گشادشونده + + + مفتقر، محتاج + + + اعلام‌کننده + + + رسنده، بالغ‌شونده + + + + + + روزه گشاینده + + + + + + جنگجو + + + + + + اعتراف‌کننده، اقرارکننده + + + + + + برگرداننده + + + + + + تقلیدکننده + + + + + + قی آورنده + + + + + + اقامت گزیده + + + + + + پوشاننده، جامه پوشنده + + + + + + اکتفاکننده + + + + + + آگاه، متوجه + + + + + + هرآنچه که باعث شکم روی باشد + + + + + + تمدیدکننده، طولانی‌کننده + + + + + + بیمار گرداننده، بیماری‌زا + + + + + + نتیجه دهنده، مفید، سودمند + + + + + + نتیجه دهنده + + + + + + + انتحال‌کننده، به خود نسبت دهنده (شعر دیگری را) + + + + + + رخنه دار و شکسته (شمشیر، آوند، دیوار و جز آن‌ها) + + + + + + وفاکننده، رواکنندهٔ حاجت + + + + + + نجات دهنده، رهایی + + + دهنده + + + + + + پاره‌شونده، دریده گردنده + + + + + + از جای کنده + + + منقطع + + + + + + دورشونده از اصل + + + + + + انعکاس یافته، برگشته + + + + + + توانگر، مال دار + + + + + + گشوده شده، شکافته + + + + + + دریده، شکافته شده + + + مردی که از رسوایی و بی پردگی باک ندارد، بی پروا + + + + + + کوشنده در کاری، کوشش‌کننده + + + + + + رویاروی، مقابل + + + + + + به وجود آورنده، آفریننده + + + + + + + تاریخ‌نویس + + + + + + دردآورنده، دردناک + + + + + + زندگانی بخشنده + + + + + + شکننده، شکنندهٔ پیمان + + + + + + کارگر ساختمان + + + + + + جدایی‌کننده + + + فایق، فاضل بر دیگر اشیا + + + سخن پریشان گوی + + + + + + نابودکننده، ویران‌کننده + + + + + + اطمینان دارنده + + + استوار، محکم + + + + + + در آینده، داخل‌شونده + + + به جا، به مورد + + + + + + سخن چین، نمام + + + + + + جانوری که در آب زندگی می‌کند + + + + + + + فروشونده، غروب‌کننده + + + + + + خورنده + + + + + + باربردار، حمال + + + چهارپا یا ارابه یا اتومبیلی که بار برد + + + + + + در ترکیب با واژه‌های دیگر معنی (پریشان‌کننده) دهد: خاطرپریش + + + به صورت اضافه معنای پریشان می‌دهد، زلف‌پریش + + + + + + کاه دهنده + + + + + + توبه‌کار، نادم + + + + + + جلب‌کننده، دلربا + + + + + + عفونی‌های جلدی + + + روشن، واضح + + + جلا + + + دهنده، پاک‌کننده + + + + + + + حج‌کننده، حج‌گزار + + + + + + زیانکار، زیان رسیده + + + + + + ساقط، افتاده + + + + + + چرانندهٔ گله + + + پشتیبان، نگهبان + + + حاکم، والی + + + + + + کسی که او را برای یافتن جای مناسب از پیش می‌فرستادند + + + پیشرو + + + جوینده + + + جاسوس + + + + + + مؤنث زاید + + + + + + سرایت‌کننده + + + رونده در شب + + + + + + سیر کننده + + + جاری، روان + + + همه + + + بقیهٔ چیزی + + + + + + شرح‌کننده، مفسر + + + + + + دلتنگ، بی‌آرام از غم + + + + + + + زننده، کسی که می‌زند + + + + + + راه‌رونده در شب + + + دزد، فالگیر + + + ستارهٔ صبح + + + + + + آینده + + + ناگاه در آینده + + + ناگاه روی‌داده، عارض + + + گذرنده غیر + + + + + + + جوینده، خواهان + + + دانشجوی علوم دینی + + + + + + مرد بدکردار، تبهکار + + + + + + نوازندهٔ چغانه + + + سرودگوی + + + + + + از پی آینده + + + جانشین، قائم مقام + + + + + + قربانی‌کنندهٔ شتر + + + زنی که آبستن نشود + + + + + + گوشه‌گیرنده، کسی که در مسجد یا هر جای دیگر برای عبادت گوشه بگیرد + + + + + + قصدکننده، آهنگ‌کننده + + + + + + آبادکننده + + + اقامت‌کننده در جای آباد + + + + + + بی‌وفا، خیانتکار + + + + + + سرزنش‌کننده، طعنه‌زننده + + + + + + زخم‌زننده + + + + + + نشسته + + + کسی که از رفتن به جنگ خودداری کرده + + + + + + قاطع + + + شکننده، کوبنده + + + + + + پیشوا، رهبر، فرمانده، سردار + + + + + + + بازاری، سوداگر + + + + + + ضامن + + + + + + پنهان‌شونده، پوشیده‌شونده + + + + + + گمارنده + + + + + + سخنگو + + + آن که شغلش در رادیو و تلویزیون گویندگی است + + + + + + گورکن، لحدساز + + + + + + آشکار، پیداشونده + + + درخشان + + + + + + تغییردهنده، بدل‌کننده + + + + + + مژده‌دهنده، بشارت‌دهنده + + + + + + باطل‌کننده، خراب + + + کننده + + + + + + آن که خود را بر زمین زند + + + بخیل + + + بی‌توجه + + + ابر بی‌باران + + + + + + اندوهناک، دردمند + + + + + + کسی که به علم الهیات اشتغال دارد، عابد، زاهد + + + + + + متفکر، صاحب تدبیر + + + + + + کسی که با تکبر و ناز راه می‌رود + + + + + + خجسته، فرخنده + + + + + + + آن که خود را شاعر پندارد + + + شاعرنما + + + + + + + جرعه‌جرعه خورندهٔ آب و مانند آن + + + فروخورندهٔ خشم + + + + + + افزون‌شونده + + + + + + آشتی‌کننده با دیگری، صلح‌کننده با یکدیگر + + + + + + با طرف دعوی نزد حاکم رونده + + + + + + + با یکدیگر حساب‌کننده + + + + + + بازاریاب، بازار گرم کن + + + + + + + به تکلف چابکی نماینده + + + + + + تصورکننده، خیال‌کننده + + + + + + دادخواه، شکایت‌کننده + + + + + + + در زمرهٔ لشکریان در آینده + + + + + + دیندار، با دیانت + + + + + + روبروشونده، مقابل‌شونده + + + + + + + زینت یافته، آراسته، صاحب تجمل + + + + + + شبیه به چیزی، ماننده به چیزی + + + + + + فروتن، خوار + + + + + + نوخواه، کسی که آداب و رسوم جدید را می‌پذیرد + + + + + + یادآوری‌کننده، به خاطر آورنده + + + + + + کسی که دارای تعصب باشد + + + + + + عادت‌کننده، خوگر + + + + + + دگرگون‌شده، تغییر حال یافته + + + آشفته، مضطرب + + + + + + مقابل، روبروی، دارای تقابل + + + + + + قطع‌کنندهٔ یکدیگر + + + دو خط که به یکدیگر برسند و همدیگر را قطع کنند (هندسه) + + + + + + کسی که امری را بر گردن گرفته باشد + + + + + + پرهیزگار، پارسا + + + + + + ستبر شده، ضخیم شده + + + + + + خودبین، مغرور، دارای تکبر + + + + + + + سرمه کشنده + + + + + + سخن گوینده + + + + + + + پذیرندهٔ کیفیتی + + + در فارسی کیف برنده، نشأه برنده + + + + + + از هم پاشیده + + + + + + با یکدیگر روبروشونده، دو چیز که در یک نقطه به هم رسند + + + + + + چیزی که از دیگری جدا و مشخص باشد + + + + + + سرکش، نافرمان + + + + + + جاگرفته، جایگزین + + + + + + توانگر، ثروتمند + + + + + + به پایان رسیده، آنچه انتها و پایان داشته باشد + + + + + + برابر یکدیگر + + + دو خط برابر با هم که هرچه امتداد داده شوند به هم نرسند، موازی، متوازی الاضلاع چهار ضلعی ای که اضلاع آن دو به دو با هم موازیند، متوازی السطوح فضایی که دارای شش وجه است و هر دو وجه رو به رو متساوی و موازیند + + + + + + اقامت‌کننده، مقیم‌شونده + + + + + + + نیک مشغول‌شونده در کاری + + + دور رونده در شهرها + + + + + + زاییده شده، تولد یافته + + + + + + همسایه، همجوار، در کنار دیگری، کسی که به قصد ثواب در کنار یک بنای مقدس اقامت می‌کند + + + + + + + دوری‌کننده، احترازکننده + + + + + + روبرو‌شونده + + + مقابل، برابر + + + + + + دوشنده + + + + + + نیک سوزاننده به آتش + + + آنچه موجب تشنگی گردد + + + دوایی را گویند که پس از مالیدن بر روی پوست بدن ایجاد سوزش و تحریک شدید کند، مانند: فرفیون، خردل و غیره + + + + + + کسی که لباس احرام بر تن دارد + + + + + + محاصره‌کننده + + + + + + تحصیل‌کننده و گردآورنده + + + دانش آموز، دانشجو + + + + + + شیرین گرداننده چیزی را + + + شیرین یابنده + + + + + + خفه‌شونده، گلوی فشرده شده + + + + + + سست‌کننده، آنچه که باعث رخوت و خواب و سستی اعصاب می‌شود، دارای ویژگی تخدیرکننده + + + + + + عمل خیر‌کننده + + + سخی + + + + + + نقش گیرنده، نفش پذیر + + + + + + انجام دهندهٔ کاری ناروا + + + + + + منتخب + + + مختص + + + متأثر، غمگین + + + + + + اجابت‌کننده + + + + + + آگاه، مطلع + + + + + + سبک شمرده، خو ار داشته + + + + + + هرچیز گرد و دایره مانند + + + + + + راه راست جوینده، به راه راست رونده + + + + + + نیک‌بختی‌جوینده، سعادت‌خواهنده + + + کسی که چیزی را به فال نیک گیرد + + + + + + یار گیرنده، همدم خواهنده + + + همراه دارنده + + + + + + طلب‌کنندهٔ علم + + + + + + عاریت خواه، کسی که چیزی را به عاریت گیرد + + + + + + یاری + + + خواهنده + + + + + + آنکه مهلت خواهد، مهلت خواهنده + + + انتظار دارنده + + + + + + گیرنده همه چیز را، همه را فراگیرنده + + + + + + برابر، هموار + + + + + + فراگیرنده، شامل‌شونده + + + + + + کسی که برای خدا شریک قایل باشد + + + + + + مهربان، مهربانی‌کننده + + + + + + شک‌کننده + + + شکاک + + + + + + به شوق آورده شده + + + + + + مشورت‌کننده، تدبیرکننده + + + + + + ترش‌رو + + + + + + در شمار آینده، معدودشونده + + + از حد درگذرنده + + + + + + گوشه نشین، کسی که برای عبادت در مسجد یا جای دیگر خلوت بگزیند + + + + + + عاجزکننده، اعجاز آورنده + + + + + + عیارگر، کسی که عیار زر و سیم را معین می‌کند + + + + + + آوازه خوان، سرودگوی + + + مطرب + + + + + + درنده + + + جانوری که شکار خود را بدرد + + + + + + ازالهٔ بکارت‌کننده + + + + + + تفتیش‌کننده، بازرس + + + + + + آن که تفریط کند + + + + + + نزدیک‌شونده + + + + + + روی آورنده + + + صاحب اقبال، خوشبخت + + + + + + بی پروا، کسی که بدون اندیشه به کاری خطرناک اقدام کند + + + + + + تقدیرکننده + + + + + + سوگند خورنده، قسم خورنده + + + + + + اکراه نماینده، ناخوش دارنده + + + + + + لعن‌کننده + + + + + + دیدارکننده، روبروشونده + + + + + + بوسه دهنده + + + آن که دهان وی با نقاب یا دهان بند بسته شده + + + + + + اصرار ورزنده، الحاح‌کننده + + + + + + تلطیف‌کننده، نازک‌کننده + + + + + + لبالب، پُر + + + + + + امتناع‌کننده، سرپیچی‌کننده + + + ناممکن، محال + + + + + + درگذراننده، امضاءکننده + + + + + + شکننده، نقض‌کننده + + + مخالف + + + + + + بیدار، هوشیار، آگاه + + + + + + چشم به راه، کسی که انتظار می‌کشد + + + + + + سود یابنده، نفع برنده + + + + + + زشت‌کننده + + + آلوده‌کنندهٔ ناموس کسی + + + مانده و فرسوده و لاغر‌کننده + + + + + + شادمان، خوشدل + + + + + + درهم کشیده، جمع شده + + + + + + تمام شده، به آخر رسیده + + + + + + کشف شده، نمایان شده + + + + + + از هم ریخته، ویران، خراب + + + + + + هلاک‌کننده، نابودکننده + + + + + + آن که شعر نیکو و ظریف گوید + + + + + + تهوع آور، قی آور + + + + + + هلاک‌کننده، مهلک + + + + + + اجاره دهنده، کرایه دهنده + + + + + + وحشت‌انگیز، ترس + + + آور + + + + + + حریص، آزمند + + + + + + رستگار‌شونده + + + پیروز، پیروزمند + + + کار سهل، آسان + + + + + + نجات‌یابنده، خلاص‌شونده + + + رهاننده، نجات‌دهنده + + + + + + نشرکننده، منتشر‌کننده + + + شخص یا مؤسسه ای که کتب و نشریات را چاپ و منتشر کند + + + + + + رمنده، نفرت دارنده + + + + + + + آن که از بیماری بیرون آمده و هنوز کاملاً تندرست نشده، از بیماری برخاسته، بیمارخیز + + + + + + کناره گیرنده، معرض + + + میل‌کننده، مایل + + + + + + هضم‌کننده + + + + + + میانجی + + + دلاُل + + + مرکز، ناحیه، کرسی + + + سبب، علت، انگیزه + + + + + + رسنده + + + پیوسته + + + + + + فراوان، زیاد + + + + + + آفرین! + + + + + + + مؤنث آنس، زن نیکو، خانم + + + + + + آرزومند، شایق + + + + + + بر سینه خفته + + + هلاک شده + + + + + + یخ بسته، منجمد + + + آنچه که زنده نیست و رُشد ندارد مانند سنگ + + + + + + + دروگر + + + + + + حصیر بافنده + + + محاسب، شمارنده + + + آنچه یا آن که سد نماید + + + + + + + خدمتکار زن، کنیز، کلفت + + + + + + فروتنی‌کننده + + + + + + آنچه که چشم را خیره کند + + + تیری که به زمین بخورد و سپس به سوی هدف رود + + + + + + غالب آمده، چربیده + + + + + + کسی که پیاده راه رود، پیاده + + + + + + بالا رونده، جلو رونده + + + افسونگر + + + تحصیل‌کرده + + + + + + ایستاده، بی‌حرکت + + + + + + جاری، روان + + + + + + رونده، مسافر + + + زاهد، عارف + + + + + + + شنونده + + + + + + + چرنده + + + + + + نادر، کمیاب + + + + + + پیرو، طرفدار + + + شیعه، شیعی + + + + + + شفاعت‌کننده + + + + + + نگاه‌دارنده + + + پرهیزگار + + + + + + خندان، خندنده + + + + + + طواف + + + کننده + + + شبگرد + + + + + + ظفر یابنده، پیروز، فیروز + + + + + + + ستیز کننده + + + کسی که از راه راست برگردد و منحرف شود + + + + + + غرس کننده + + + + + + جنگجو، کسی که در راه خدا می‌جنگد + + + + + + غصب‌کننده + + + + + + گناهکار، تبهکار + + + زناکار + + + + + + دردآورنده، دردناک + + + + + + نایابنده، کسی که چیزی یا کسی را نداشته باشد + + + زنی که شوهر یا فرزند خود را از دست داده باشد + + + + + + دورشونده، به نهایت‌رسنده + + + + + + + برنده، قطع‌کننده + + + + + + پنهان کننده، پوشنده + + + سرپوش، رازدار + + + نهفته، مستور + + + + + + سست و کاهل + + + + + + درنگ‌کننده + + + + + + برجسته، ممتاز + + + + + + + کینه‌ور، دشمن + + + + + + آنکه ارادهٔ کاری کند در شب و تصمیم گیرد + + + گفتگو کننده در شب + + + شبیخون آورنده + + + + + + پیروی‌کننده + + + + + + + جسم گیرنده + + + آن که بر کاری و عملی بزرگ شود + + + + + + دیگرگون‌شونده + + + جابه‌جاشونده + + + + + + بالارونده + + + + + + به دست گیرنده + + + + + + + به نسیه و وام خرید و فروش‌کننده باهم + + + + + + پراکنده + + + + + + جلب‌کننده، کشاننده + + + + + + جنبنده، لرزنده + + + + + + + چاپلوسی‌کننده، چاپلوس + + + + + + دارای نظم و ترتیب + + + + + + دلگیر، حسرت خورنده + + + + + + دورشونده، به یکسوشونده، کناره‌گیر + + + + + + + دوری‌کننده، احترازکننده + + + + + + حیران، حیرت‌زده، شگفت زده + + + + + + عزیز، ارجمند + + + قیمتی + + + + + + نازکننده، با ناز و کرشمه + + + + + + دردمندشونده از سختی و اندوه + + + + + + نزدیک‌شونده، نزدیک به یکدیگر + + + نامِ یکی ازبحور شعر که از هشت فعولن تشکیل شده‌است + + + + + + + تلف‌کننده، تباه‌کننده + + + + + + شهرنشین، دارای تمدن + + + + + + دو خط که نه متوازی باشند و نه متقاطع + + + دور‌شونده از یکدیگر + + + + + + مخالف و ضد یکدیگر + + + + + + هم وزن، برابر + + + + + + یگانه، فرد + + + + + + ترسیده، وحشت کرده + + + + + + سرپرست، مباشر، سرپرست املاک موقوفه + + + + + + مبارک و بابرکت + + + + + + فضل + + + حسن حال + + + + + + خشک‌کننده + + + دوایی که موجب از بین رفتن رطوبات یا تقلیل آن شود + + + + + + اجابت‌کننده، پاسخ دهنده، قبول‌کننده + + + + + + جنگجو، نبردکننده + + + + + + حساب‌کننده، حسابدار + + + + + + حمایت‌کننده، دفاع‌کننده + + + وکیل دادگستری + + + + + + آمیخته‌کننده + + + فساد‌کننده، تخلیط‌کننده، دو به هم زدن + + + + + + آن که عیب کالای خود را از خریداران پنهان کند + + + خدعه‌کننده + + + کسی که خود را مقدس جلوه دهد و نباشد + + + + + + مردُد، دو دل + + + + + + ریاکار، متظاهر + + + + + + آن که در شک و تردید باشد + + + + + + ربط داده شده، پیوسته + + + + + + + ترسنده، ترسان، خایف ، + + + + + + سست‌کننده + + + دارویی را گویند که به قوت حرارت و رطوبت خود قوام اعضای کثیفهٔ المسام را نرم و مسامات آن را وسیع بگرداند تا آن که به سهولت و آسانی فضول مجتمعه و محتبسهٔ در آن‌ها دفع شود، مانند ضماد شوید (شبت) و بذر کتان + + + + + + باعث زحمت، آزار + + + دهنده + + + + + + آغاز‌کننده، از سر گیرنده + + + کسی که در محکمه ای مغلوب شده مرافعهٔ خود را در محکمه ای بالاتر از سر گیرد، استیناف دهنده + + + + + + شادمان + + + + + + رهاکننده، آزادکننده + + + + + + چنگ زننده، پناه برنده + + + + + + به کار برنده، استعمال‌کننده + + + به کار برندهٔ لغت + + + + + + استقبال‌کننده، به پیشواز رونده + + + + + + به پشت خوابنده + + + + + + نفس از بینی کشنده + + + آن که آب یا مایعی دیگر در بینی استنشاق کند + + + + + + شتاب‌کننده + + + + + + آرزومند، مایل و راغب + + + + + + مبهم، نامعلوم + + + در اشتباه + + + + + + خریدار مجازاً: خواستار، خواهان + + + + + + شهرت دهنده + + + + + + شعبده باز، حقه باز + + + + + + راستکار، صواب یابنده + + + + + + سایه انداز، سایه دار + + + + + + اعتمادکننده + + + + + + به شگفت آورنده + + + خودبین، خودپسند + + + + + + بیان‌کنندهٔ علت + + + آورندهٔ دلیل + + + + + + چیز عجیب و غریب در آورنده + + + + + + جداشونده + + + + + + تباه‌کننده، فاسدکننده + + + + + + میانه‌رو، صرفه + + + جو + + + + + + اقتضاکننده، تقاضاکننده + + + شایسته، درخور + + + مطابق، موافق + + + سبب، موجب + + + + + + قناعت‌کننده، قانع + + + + + + قانع‌کننده + + + + + + آنچه کیفیت و حالتی پدید بیآورد، لذت بخش، کیف آور + + + + + + یکسان، برابر، مساوی + + + + + + آن که بهره می‌دهد + + + + + + بخیل، خسیس + + + + + + همنشین، هم صحبت + + + + + + نزاع‌کننده، کسی که با دیگری ستیزه می‌کند + + + + + + برگزیننده، اختیارکننده + + + + + + فاش، شایع + + + پراکنده، پاشیده + + + انتشار یافته + + + + + + نیست و نابود گشته + + + + + + ستاره‌شناس، کسی که به دانش اخترشناسی می‌پردازد + + + + + + بریده‌شونده + + + + + + فریفته‌شونده، گول خورنده + + + + + + پوشیده‌شونده، پنهان گردیده + + + ماه گرفته + + + + + + کهنه، فرسوده + + + + + + سوق یابنده، کشانیده + + + + + + پزنده + + + دوایی که خلط و ماده را بپزد و مهیای دفع کند + + + + + + درپیچیده‌شونده، ن وردیده + + + در فارسی: حاوی، مشتمل + + + + + + تیره گرداننده + + + ناخوش‌کننده + + + + + + جدا شده، بریده شده + + + + + + از میان رفته، نابود شده + + + + + + بخش بخش شده، قسمت شده + + + + + + نقش‌کننده + + + کنده کاری‌کننده (بر نگین و جز آن) + + + + + + برگشته، حال به حال شده + + + به هم خوردن حال + + + + + + تابان، درخشان + + + + + + هیجان آور، برانگیزنده + + + + + + سخن مختصر و کوتاه + + + + + + انس گرفته، همدم + + + + + + سرکش، طاغی + + + درخشنده، طلوع‌کننده + + + + + + حمل‌کننده، جابه‌جا‌کننده + + + نقل‌کننده، روایت‌کننده، + + + انتقال دهنده + + + + + + + زن نوحه‌کننده و زاری‌کننده بر شوی، + + + + + + سبب، جهت + + + + + + ضمیر اشاره برای اشخاص نزدیک + + + + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + + + + + سرکش، نافرمان + + + + + + علمدار، پرچمدار + + + + + + جهدکننده، کوشا + + + + + + کینه‌جوی، بداندیش + + + + + + + خدمتگزار، مستخدم + + + + + + پست‌کننده، خوار + + + کننده + + + + + + رونده، گذرنده + + + کوشنده + + + + + + گرو گذارنده + + + رهن‌گذارنده + + + ثابت، دائم + + + + + + + شناکننده، شناور + + + تندرونده، تندرو + + + + + + خورندهٔ خوشهٔ انگور با بن + + + نوشنده + + + + + + گذشته، پیشین + + + پیش‌رفته + + + + + + ادب‌کننده + + + رام‌کننده + + + + + + محرک، سوق + + + دهنده + + + + + + به کار وادارنده + + + دارندهٔ پیشه و کار + + + + + + + شکرکننده، سپاسگزار + + + + + + بلند، مرتفع + + + + + + صیحه‌زننده + + + + + + قصد کننده، اراده‌کننده، کوشش‌کننده + + + مسافر، رونده + + + + + + دشوار، پوشیده + + + + + + شکافنده، پاره‌کننده + + + + + + خاینده و جاونده + + + + + + بخش‌کننده، قسمت‌کننده + + + + + + از پی رونده، پیرو + + + + + + شکننده + + + + + + + بی‌دین، ملحد + + + + + + همهٔ مردم + + + بازدارنده + + + + + + درخشنده + + + + + + هرزه‌گوی + + + ناله‌کننده + + + + + + محوکننده + + + + + + گذشته (زمان) + + + فعلی است که بر زمان گذشته دلالت کند + + + در گذشته، مرده + + + برنده، قاطع + + + + + + ابداع‌کننده، اختراع‌کننده + + + بدعت‌گذارنده + + + + + + جامهٔ سفید پوشنده + + + سفید گرداننده (جامه و غیره) + + + + + + درنگ‌کننده + + + معاصر، کسی که در زمان نزدیک به زمان حال می‌زیسته + + + + + + دارای اهل و عیال، دارای همسر + + + + + + دست در کاری دارنده + + + کسی که مالی یا ملکی را در تصرف و اختیار خود دارد + + + حاکم، والی + + + محصل مالیاتی محل + + + + + + دارای تعادل + + + دارای اعتدال + + + + + + شکار جوینده + + + شکارکننده به حیله + + + + + + آمد و شد کننده + + + کسی که در امری به شک و تردید دچار است + + + + + + آشکار، آشکارشونده، ظاهرشونده + + + + + + آویخته، چنگ‌زننده + + + + + + با هم خصومت‌کننده + + + + + + به یکدیگر مهربانی‌کننده + + + + + + پیروی‌شده + + + + + + پیوسته، نزدیک به هم + + + + + + چشم به راه، منتظر + + + + + + خواهندهٔ چیزی، رغبت‌کننده، آرزو دارند + + + + + + خوی و عادت دیگری را گرفته + + + + + + داخل شده (در یکدیگر)، در میان آمده + + + + + + در بر دارنده، شامل + + + + + + رفیع، بلندپایه + + + + + + سپاس‌دار، شکرگزار، آن که تشکر می‌کند و سپاس به جا می‌آورد + + + + + + فراهم‌آمده، جمع گشته + + + + + + + کسی که خود را فریب‌خورده وانماید + + + + + + ممتاز، دارای تشخص + + + + + + منتظر، متوقع، چشم دارنده + + + + + + + بیراهه رونده، منحرف (از راه) + + + آن که از طریق صواب عدول کند + + + ستمکار، ظالم + + + + + + ضررکننده + + + افسوس خورنده + + + + + + فخرکننده + + + + + + متکبر، مغرور + + + + + + + آن که خود را فقیه معرفی کند + + + فقیه، دانشمند + + + + + + پیوسته، متحد به هم + + + + + + + بازایستنده از امری، اظهار کوتاهی نماینده + + + + + + قطره‌قطره چکیده + + + دسته‌های پیاپی آینده + + + + + + بسیارشونده، دارای کثرت + + + + + + تکیه‌کننده + + + + + + لباس پوشیده، به لباس کسی درآمده + + + + + + یکدیگر را مس‌کننده، به هم پیوندنده + + + + + + + خود را نگاه دارنده، خویشتن‌دار + + + چنگ در زننده + + + + + + مثل آورنده + + + + + + در مرکز جای گیرنده + + + فراهم آمده و جمع شده در یک نظام + + + متوجه و معطوف، دارای تمرکز + + + + + + چاپلوس + + + + + + + گسترنده + + + جاگیرنده + + + قادر (بر امری) + + + + + + موج زننده، موج دار + + + + + + یکی پس از دیگری، آنچه به نوبت بیاید + + + + + + یکی‌شونده (با هم) + + + در فارسی دو عدد را گویند که دارای یک یا چند مقسوم‌علیه باشند + + + + + + گمان برنده، خیال‌کننده + + + + + + محقق، بی شبهه و گمان + + + + + + جزای نیک دهنده + + + عطا‌کننده + + + + + + حریف در قمار، حریف در بازی نرد و شطرنج + + + فراهم‌کنندهٔ وسایل و اسباب کاری + + + مستوفی + + + + + + اجراءکننده، انجام دهنده، مجری حکم (قانون) کسی که حکم قانونی را به مرحلهٔ اجرا درآورد + + + + + + حل‌کننده، تحلیل برنده + + + مردی که با زن سه طلاقه ازدواج می‌کند و او را طلاق می‌دهد تا آن زن بتواند دوباره با همسر پیشین خود ازدواج کند + + + + + + حیله‌گر، مکار + + + + + + مرد متکبر و خودپسند + + + + + + با یکدیگر خصومت‌کننده + + + + + + گوناگون، جورواجور + + + + + + پاره‌پاره‌کننده، درنده + + + بسیار دروغگو + + + + + + اخلال‌کننده، فاسدکننده + + + + + + لباس به خود پیچیده + + + + + + کسی که دامن جامه را بلند سازد + + + آنکه بر مطلبی یا کتابی ذیلی نویسد + + + + + + هم‌معنی + + + + + + سود ده، نفع بخش، پُرسود + + + + + + دیده‌بان، چشم به راه + + + + + + ثابت، مستقر، جایگزین + + + + + + صاف‌کننده + + + رواق سازنده، معمار + + + + + + موافق، یاور + + + + + + اعتمادکننده + + + زنهار خواهنده + + + + + + نوکننده، نو گرداننده + + + + + + نگهبان + + + + + + آب خواهنده + + + مبتلا به بیماری استسقاء + + + + + + بلند برآمده + + + غلبه‌کننده، قهر‌کننده + + + + + + یاری خواهنده + + + + + + تفحص و تحقیق‌کننده + + + + + + راست، معتدل + + + + + + آنچه بودنش لازم است + + + موجب، مسبب + + + + + + استنباط‌کننده، درک‌کننده + + + + + + لایق، سزاوار + + + + + + مسلمان + + + + + + سیرکننده + + + + + + کسی که ورزش مشت زنی را انجام می‌دهد، بوکسور + + + + + + برافروخته، شعله‌ور، سوزان + + + + + + برخوردکننده، روبروشونده + + + + + + نمازگزار، نمازخوان، نمازگر + + + + + + ضرر رساننده، زیان آور + + + + + + پاک‌کنندهٔ نوشته + + + + + + یاری‌کننده، یاری گیرنده + + + + + + افسونگر، جادوگر + + + + + + به عمل آورنده، ابداع‌کننده + + + تزویر‌کننده (خط) + + + + + + تفسیرکننده، شرح دهنده + + + + + + تفویض‌کننده، واگذارنده + + + + + + جاری‌کننده + + + فیض + + + دهنده، فیض بخش، فیض دهنده + + + + + + بهوش آینده، بیدار شده + + + + + + آن که بدون لیاقت و لزوم و به ابرام پرسش کند + + + آن که بی اندیشه شعر گوید و خواند + + + آن که از خود چیزی نو آورد + + + آن که مطلبی را پیشنهاد کند تا مورد بحث دانشمندان قرار گیرد + + + + + + یار‌شونده، قرین‌شونده + + + نزدیک + + + در نجوم ستاره ای که به ستارهٔ دیگر نزدیک شود + + + + + + خواننده، کسی که تعلیم قرائت قرآن بدهد + + + + + + قانونگزار + + + + + + بر رو درافتاده، سرنگون شده + + + آن که سر خود را به زیر اندازد و به زمین نگاه کند + + + + + + به وجود آورنده، موجد + + + + + + برچسبنده + + + + + + + الهام‌کننده، تلقین‌کننده + + + خدای تعالی ، + + + + + + امتحان‌کننده، آزماینده + + + + + + ملال آور، بیزارکننده، اطناب ممل تطویل کلام به حدی که ملال آورد + + + + + + میراننده + + + خدای تعالی + + + + + + نصیحت‌کننده، پند دهنده + + + + + + مجادله‌کننده، مباحثه‌کننده + + + + + + داوری‌کننده با دیگری در حسب و نسب + + + افتخار‌کننده + + + رماننده، نافر + + + + + + برانگیخته شده، مبعوث گشته + + + + + + نصرت یابنده، غالب + + + + + + آن که پای را به هنگام لغزش نگاه می‌دارد + + + آن که پس از افتادن برمی‌خیزد + + + به شده از بیماری، ناقه + + + + + + برخیزنده + + + + + + فرودآینده + + + + + + آگاه سازنده، ترساننده + + + + + + خواننده و آورندهٔ شعر از دیگری + + + راه نماینده + + + هجو‌کننده + + + + + + فرو رونده (در آب) + + + + + + هجرت‌کننده آن که از وطن خود هجرت کرده در جایی دیگر مسکن گیرد + + + + + + وصیت‌کننده + + + + + + + پرهیزکار، پارسا + + + + + + هزل‌گوینده + + + + + + هلاک‌شونده، نیست‌شونده + + + + + + یابنده، دارنده + + + + + + گناهکار + + + + + + نگاه‌دارنده، حافظ + + + حامی + + + + + + پدر، اب + + + + + + + حاکم، فرمانروا + + + + + + سست، بی اساس + + + + + + در حق کسی، برای کسی + + + از جهت، از حیث + + + در برابر، در مقابل (برای مقایسه) + + + + + + این + + + + + + + سفرکننده + + + رسول، سفیر + + + کاتب + + + زن گشاده‌روی + + + + + + + آنچه که پدید آید + + + آنچه که حق ایجاد کرده + + + بیرون‌رونده + + + آنچه که از جایی به جایی (داخل مملکت و مخصوصاً خارج آن) فرستاده شود + + + + + + بلع‌کننده، بلعنده + + + + + + گناهکار، مجرم + + + + + + بی‌بیم، بی خوف، ایمن + + + + + + نگهبان، مراقب، نگه‌داری‌کننده + + + + + + آن که به کسی یا چیزی پناه برد، زینهاری، ملتجی، پناهنده اجتماعی کسی که به خاطر رواج تعصب دینی یا اجتماعی یا ناامنی و جنگ در میهنش به کشور دیگری پناه می‌برد، پناهنده سیاسی کسی که به خاطر مبارزهٔ سیاسی و مخالفت با حکومت کشورش به کشور دیگری پناه می‌برد + + + + + + گرداننده، سازنده + + + جعل‌کننده + + + + + + جنگنده، رزم‌کننده + + + + + + + مؤنث خاتم، پایان، انجام + + + + + + پیونددهنده + + + واسطهٔ میان دو تن + + + + + + رحم‌کننده، بخشاینده + + + + + + + زناکار + + + + + + زوال‌یابنده + + + + + + پیشی‌گیرنده + + + قبلی، گذشته + + + + + + + گرم، حار + + + + + + + سلب‌کننده + + + رباینده + + + برهنه‌کننده + + + + + + غافل + + + فراموشکار + + + + + + سؤال‌کننده + + + گدا + + + + + + شفا دهنده + + + راست، درست + + + + + + راغب، مشتاق + + + + + + شکارکننده، شکاری + + + + + + زرگر + + + ریخته‌گر + + + + + + + پرواز کننده، پرنده + + + مرغ + + + + + + بوی خوش دهنده + + + دوست‌دارندهٔ عطر، عطردوست + + + + + + همه، همگان + + + عموم مردم + + + + + + انباشته، پُر + + + گروه بسیاری از مردم که یک جا گِرد هم آیند + + + + + + یورش‌برنده، به ناگاه گیرنده + + + + + + نازنده، فخرکننده + + + + + + جداکنندهٔ دو چیز از هم + + + + + + آفریننده، خالق + + + روزه گشاینده، افطار کننده + + + + + + رهایی‌یابنده، رستگارشونده + + + + + + درهم و برهم، هرج و مرج + + + + + + کوتاهی‌کننده + + + + + + مطیع، فرمانبردار + + + + + + اندوهگین، متألم + + + + + + درنگ‌کننده + + + + + + پیشی‌گیرنده، چیزی که ناگهان به خاطر آید + + + + + + پاک، منزه (خاص خدا) + + + + + + فرا خواننده + + + آن که با دیگری دعوی و مرافعه دارد + + + معنی ای که معنی دیگر را به خاطر آورد + + + + + + بردبار، شکیبا + + + بردارندهٔ بار + + + + + + موافقت‌کننده + + + چیزی که مانند و موافق چیزی دیگر باشد + + + + + + از یک جنس، مشابه + + + + + + امیدوار، چشم به راه + + + + + + آگاه به امور شرعی، معتقد به امور شرعی + + + + + + آن که خود را معالجه کند + + + + + + + به هم خورنده با چیزی، با هم زننده، با هم کوبنده + + + + + + پیشرفته، رشد کرده + + + + + + تتبع‌کننده + + + + + + + در پی رونده، پیرو + + + + + + زره پوششنده، زره پوش + + + + + + + زن‌کننده، ازدواج‌کننده + + + + + + سرگشته، حیران، حیرت‌زده + + + + + + سلاح پوشنده + + + + + + شی ای که اجزای آن به هم متصل نباشد + + + + + + کسی که از کاری روی برتابد و خود را به کار دیگر مشغول سازد + + + + + + کسی که خود را به نادانی می‌زند + + + + + + + آن که به عمق چیزی رسیده، ژرف‌اندیش + + + + + + دارای ثروت یا مقام اجتماعی برجسته + + + ظاهر، آشکار + + + محقق، ثابت + + + + + + خورنده + + + + + + تفاوت دارنده، از هم جدا + + + + + + با هم یکی شده، یک دل و یک جهت، متحد شده + + + مصمم، قصد‌کننده، متفق القول، هم‌صدا، هم‌کلام، متفق‌الرأی، همدستان، هم‌رأی + + + + + + قانع + + + بازنشسته + + + آمادهٔ پذیرش + + + + + + کامل شده، به کمال رسیده + + + + + + گدا + + + + + + شکسته‌شونده + + + + + + + به هم چسبنده، متصل + + + + + + طولانی، دائمی + + + + + + رونده + + + + + + توجه‌کننده، روی‌کننده + + + با حواس متمرکز + + + + + + به ورطه افتنده، فرو رونده + + + به کار دشوار افتاده + + + + + + امیدوار، چشم دارنده + + + + + + دور‌شونده، دوری گزیننده + + + در هندسه خط مستقیمی را مجانب یک منحنی می‌گویند که چون نقطه ای در روی منحنی حرکت کند و به سمت بی‌نهایت رود، فواصل این نقطه از این خط مرتب کم شود و میل به صفر کند + + + + + + کوشش‌کننده، کوشا + + + + + + اجازه دهنده، رخصت دهنده + + + ولی و مصلح امر یتیم + + + بندهٔ مأذون در تجارت + + + + + + به شهر آینده + + + حاضر‌شونده + + + + + + کسی که کالاها را در انبار نگه می‌دارد تا پس از گران شدن بفروشد + + + + + + دستخوش احتلام، دستخوش انزال در خواب + + + + + + تعیین‌کنندهٔ حد و کرانهٔ چیزی + + + تیز‌کننده (کارد و جز آن) + + + + + + نویسنده، نگارنده + + + آزادکننده + + + + + + آشکار، ظاهر + + + + + + ناچیز، کوچک + + + + + + سرخ‌کننده + + + دوایی که به قوت گرمی و جذب خود عضو را گرم گرداند + + + + + + خبررسان، خبردهنده + + + + + + پنهان شده، پنهان‌شونده + + + + + + رابطه دارنده + + + مواظب و ملازم سرحد + + + مروج ایمان + + + + + + تشویق‌کننده، برانگیزاننده + + + + + + ازدحام‌کننده، انبوهی‌کننده + + + + + + پاک‌کننده، پاکیزه‌کننده + + + معرف، شناساننده + + + آنکه شاهدان عادل را تزکیه و آنها را به پاکی و پارسایی توصیف کند + + + + + + شریک، سهیم + + + + + + دلیل جوینده، طلب برهان‌کننده + + + + + + سست و نرم‌شونده + + + + + + طرف مشورت، رایزن + + + متخصصی که از کشورهای خارج برای اصلاح وزارتخانه یا اداره ای استخدام کنند، مستشار سفارت رای زن سفارت + + + + + + مسلط، مرتفع و بلند + + + + + + درخشان + + + منتشر + + + + + + شتابنده، شتاب‌کننده + + + + + + آن که طلب کفایت کند، کفایت خواه + + + + + + یاری خواهنده، استمداد‌کننده + + + + + + خواهندهٔ روشنایی + + + + + + مستی آور + + + + + + فریبنده و اغواکننده + + + + + + مثل و مانند، دارای شباهت + + + + + + آرزومند، خواهان + + + + + + صدادار، دارای صدای بلند + + + حرف صدادار + + + + + + آوازخوان، نوازنده + + + رقاص + + + کسی که در کار طرب باشد + + + + + + بسیار تاریک و ظلمانی + + + + + + کسی که تعبیر خواب می‌کند + + + + + + گرونده، باوردار، عقیده دار + + + + + + اعتناکننده، اهتمام‌کننده + + + + + + راست و درست شده + + + میانگین چیزی، معدل نمرات حاصلِ قسمت مجموع نمره‌های دروس هر شاگرد + + + + + + تسلیت دهنده، تعزیت گوینده + + + + + + آن که کاری را تکرار کند + + + معملی که درسی را برای شاگردانش اعادهکند، مقرر، دانشیار + + + + + + با کینه و غرض + + + + + + افزون‌کننده + + + نیکویی‌کننده، بخشش‌کننده + + + + + + پیروی‌کننده + + + کسی که پشت سر امام جماعت نماز خواند + + + + + + قوت دهنده، نیرودهنده + + + + + + کافی و کفایت دهنده + + + + + + کامل‌کننده + + + + + + چسبیده به هم، متصل + + + + + + متلاطم، مواج، خروشان (موج، دریا) + + + + + + لجام‌کننده + + + + + + آمیزنده، مخلوط‌کننده + + + + + + یاری دهنده + + + + + + شورکننده، نمک ریزنده + + + + + + دورو، ریاکار + + + + + + پهن و گسترده شده + + + گشاده‌رو، خندان + + + دستخوش انبساط + + + + + + آگاه سازنده، بیدارکننده + + + + + + جابه‌جاشونده + + + + + + پیروزمند، کامیاب، کامروا + + + + + + کج شده، به راه کج رونده + + + + + + پریشان، ناراحت، بی آرام + + + + + + حیوان تند و آسان رونده + + + یکی از بحرهای عروضی + + + + + + مجرد، تنها + + + + + + اثر پذیرفته + + + خجل، شرمسار + + + + + + شکست خورده، مغلوب شده + + + + + + + خبردهنده، آگاه‌کننده + + + + + + یکتاپرست + + + + + + + توزیع‌کننده، پخش‌کننده + + + + + + خوارکننده، ضعیف‌کننده + + + + + + پشیمان + + + + + + نداکننده + + + + + + + عاملی که معمول خود را نصب دهد + + + برپا‌کننده، نصیب‌کننده + + + دشمن دارنده + + + آن که علی بن ابی طالب و خاندان او را دشمن دارد + + + + + + + یاری گر، یاری‌کننده + + + + + + تر و تازه‌کننده + + + بسیار سبز + + + + + + + نظرکننده، بیننده + + + کسی که بر کاری نظارت و رسیدگی می‌کند + + + مباشر، کارگزار + + + + + + آن که می‌دمد، کسی که پف می‌کند، دمنده (در آتش و خیک) + + + غذایی که نفخ آورد، باددار + + + + + + نقدکننده، جداکنندهٔ خوب از بد + + + + + + بازدارنده، نهی‌کننده + + + + + + آواز دهنده، آوازکننده + + + + + + گریزنده، فرارکننده + + + + + + نگاه‌دارنده، حافظ + + + شنونده، گوش دهنده + + + + + + دورشونده + + + + + + اندرون + + + پرده + + + رشته + + + + + + رهاکننده، ترک‌کننده + + + + + + قاطع، کسی که در قصد خود تردید نکند + + + قطع‌کننده، برنده + + + + + + ماهر، استاد + + + دانا + + + + + + + پاسدار، پاسبان + + + + + + + پابرهنه + + + + + + آن که وی را بول به شتاب گرفته باشد، حبس‌کنندهٔ ادرار + + + + + + ماده و دوایی که زایل‌کننده و سترندهٔ موی باشد مانند زرنیخ و نوره و سفید آب و خاکستر و غیره، حلاق + + + + + + آفریننده، خلق‌کننده + + + + + + + دفع کننده، دورکننده + + + حامی + + + + + + روزی‌دهنده، روزی + + + رسان + + + + + + به راه راست رونده + + + راه راست یافته + + + + + + نویسنده، محرر + + + + + + سوار، سواره + + + + + + واسطهٔ میان رشوه‌گیرنده و رشوه‌دهنده + + + + + + کسی که آب یا شراب به دیگران دهد + + + + + + ریزان، فروریزنده + + + + + + فراگیرنده + + + حاوی، در بردارنده + + + + + + باریک‌اندام + + + دقیق، لطیف + + + + + + زیان‌رساننده، ضرر رساننده + + + + + + عیادت‌کننده + + + بازگردانده، آنچه که به کسی بازگردد از پول یا چیز دیگر + + + + + + پناه آورنده + + + + + + غلوکننده + + + گران‌بها + + + + + + بایر، خراب + + + + + + + گمراه + + + + + + نابودشونده، نیست‌شونده + + + ناپایدار، بی‌ثبات + + + + + + کُشنده + + + + + + + ظالم، ستمکار + + + بازگردنده از حق + + + + + + + ساکن، متوطن + + + + + + + دروغگو، ناراست + + + + + + گزنده، نیش‌زننده + + + + + + چسبنده، دوسنده + + + + + + ادب‌آموخته + + + + + + تأکید شده + + + استوار، محکم + + + + + + تقسیم‌کننده به حصه‌ها + + + متفرق، پریشان + + + + + + + آشکارشونده، پیدا، هویدا + + + آشکارکننده + + + + + + مرسوم، معمول، متداول + + + شناخته‌شده + + + + + + خیال‌کننده + + + متکبر + + + + + + آن که آشکارا فسق کند + + + + + + آن که با دیگری عهد و پیمان بندد، هم عهد + + + + + + آهسته و کم‌کم پیش رونده + + + + + + برهم فرو ریزنده + + + + + + بست‌نشین، اعتصاب‌کننده + + + + + + پارسا، زاهد + + + + + + پراکنده‌شونده + + + + + + پرستش‌کننده، عابد + + + + + + ترتیب داده شده، پدیدآمده + + + + + + تسلی داده، دل نواخته شده + + + + + + جای‌گزین + + + + + + جستجوکننده، تلاش‌کننده + + + + + + راه یابنده + + + + + + زینت یافته، آراسته‌شونده + + + + + + شکایت‌کننده، گله‌کننده + + + + + + + صاحب تشرف، بزرگ‌منش + + + + + + غلبه‌کننده، مسلط + + + + + + کسی که مطلبی را از زبانی به زبان دیگر ترجمه کند + + + + + + عذرآورنده، بهانه آورنده + + + سخت، دشوار + + + + + + + کوشش‌کننده، ساعی + + + سختی کشیده + + + آن که به تکلف کاری انجام دهد + + + + + + آزاررسان، آزاردهنده + + + + + + کناره‌گیرنده + + + + + + پراکنده، پریشان + + + + + + قرعه زننده میان یکدیگر + + + نیزه زننده با هم + + + + + + پراکنده‌شونده + + + + + + گوناگون + + + کسی که پی درپی تغییر عقیده بدهد + + + رنگارنگ + + + + + + تمنا‌کننده + + + خواهشمند، مستدعی + + + + + + دارای تناسب و شباهت با یکدیگر + + + + + + بیدار، آگاه، تنبیه شده + + + + + + سنگین‌کننده، گران‌سنگ گرداننده + + + + + + بسیار کوشنده + + + کسی که در فقه به درجهٔ اجتهاد رسیده باشد + + + + + + پوست‌کننده + + + صحاف + + + + + + بیماری که به حبس بول دچار شود + + + بیماری که برای بهبود از بند شدن بول حقنه گیرد + + + نسجی که در آن خون زیاد جمع شده باشد، نسجی که خون بیشتری در آن مانده باشد و در نتیجه دچار ازدیاد حجم شده باشد + + + جمع‌شونده، گرد آینده (شیر، خون) + + + + + + نیکوکار + + + + + + حاشیه نویسنده بر کتابی + + + + + + تحقیق‌کننده، اهل تحقیق + + + + + + دشمنی‌کننده، دشمن + + + + + + سبک‌کننده + + + کاهنده + + + + + + داخل‌کننده، درآورنده + + + + + + گناهکار + + + + + + + سود گیرنده، ربح گیرنده + + + + + + پرورش دهنده + + + + + + لرزان، لرزنده، دارای ارتعاش + + + + + + لغزش دهنده + + + + + + زه زه گوینده، آفرین گوی + + + + + + دورو، تزویرکننده + + + + + + + شب زنده دار، شب + + + نشین + + + افسانه گو، قصه سرا، + + + + + + اجازه خواهنده + + + + + + خبر خواهنده از کسی + + + + + + شرق‌شناس کارشناس + + + + + + طلب‌کنندهٔ شاهد، جویندهٔ گواه + + + + + + مشورت‌کننده، آن که با دیگری مشورت کند + + + + + + بی‌نیاز + + + + + + شنونده، مستمع آزاد کسی که + + + بدون آن که شاگرد رسمی باشد + + + در کلاس یا خطابه حاضر شود و به درس و نطق گوش دهد + + + + + + به کرکس ماننده + + + + + + ساکن + + + + + + + بدرقه‌کننده، + + + + + + دارای کار و شغل + + + + + + شکایت‌کننده، گله‌کننده + + + + + + تشریح‌کننده، بیان‌کننده + + + + + + کسی یا چیزی که از بلندی بر کسی یا چیزی دیگر مسلط باشد + + + ناظر، نگرنده + + + + + + بیزار، رمیده + + + + + + هم صحبت، هم‌نشین + + + + + + تصحیح‌کننده، کسی که غلط‌های نوشته یا کتابی را تصحیح کند + + + + + + نقاش، صورتگر + + + + + + از حد درگذرنده، بیدادکننده + + + + + + آماده‌کننده، مهیاکننده + + + + + + اعدام‌کننده، نابود + + + سازنده + + + فقیر، تهیدست + + + + + + درویش، تنگدست + + + + + + عیالمند، عیال‌وار + + + + + + چیزی که دارای مواد غذایی باشد + + + غذا دهنده + + + دارای ارزش غذایی + + + + + + اندیشمند + + + + + + فانی‌کننده، تباه سازنده، نابودکننده + + + + + + مقاومت‌کننده، ایستادگی‌کننده + + + + + + قادر، توانا + + + + + + از پی کسی رونده، در پی در آینده، پیروی‌کننده + + + + + + اقدام‌کننده + + + + + + اکرام‌کننده، احترام‌کننده + + + احسان‌کننده + + + + + + نسبت کفر + + + دهنده به کسی + + + کفاره دهنده + + + + + + + به زحمت و مشقت اندازنده + + + تعیین‌کنندهٔ تکلیف + + + + + + + همراه، نوکر + + + ثابت قدم + + + + + + دیدارکننده، ملاقات‌کننده + + + + + + التماس‌کننده، خواهش‌کننده + + + + + + التیام یافته، به شده، بهبود یافته + + + به هم پیوسته + + + + + + + بیان‌کننده + + + خلاصه‌کننده + + + + + + جدا‌کننده، تمیز دهنده + + + ارزیاب مالیات، تشخیص دهندهٔ مالیات + + + + + + جار زننده، جارچی + + + + + + طردکننده، نیست‌کننده + + + + + + جداکنندهٔ درم خوب از بد + + + انتقاد‌کننده + + + + + + کسی که خود را به کسی یا چیزی، نسبت کند + + + + + + فرصت طلب، کسی که پی فرصت می‌گردد و آن را غنیمت می‌شمارد + + + + + + به انتها رساننده، به پایان + + + + + + فسرده، یخ بسته، یخ زده + + + + + + پست شده، به نشیب افتاده + + + + + + پاک‌کننده + + + پاک داننده + + + در تصوف: سالکی که ذات حق را به صفت تنزیه شناسد و از حیثیت ظهور در مناظر ندیده و ندانسته باشد + + + + + + آنکه یا آنچه سبب فراموشی گردد + + + + + + نویسنده، دبیر + + + + + + جدا شده + + + + + + غم خوار، اندوه مند + + + توجه‌کننده به کاری + + + + + + خوار دارنده، اهانت‌کننده + + + + + + رساننده، پیوند دهنده + + + + + + غم‌انگیز، دردناک + + + + + + به وهم افکننده، به شک اندازنده + + + + + + نشأت گیرنده، پیداشونده + + + + + + آن که خبر مرگ کسی را آورده، خبر مرگ دهنده + + + خبر بد دهنده + + + + + + پرده درنده، پرده در + + + + + + تمام، کامل + + + وفاکننده + + + + + + باخبر، آگاه + + + + + + حیران، سرگشته + + + شیفته، عاشق + + + + + + کارکننده + + + مهارت‌کننده + + + کوشنده + + + زراعت‌کننده + + + + + + خشک، سخت، رطب و یابس به هم بافتن کنایه از: سخنان در هم و برهم و بی‌معنی گفتن + + + + + + من + + + مخفف انا الحق (من خدایم) + + + + + + مؤنث آکل، خورنده + + + خوره، جذام + + + کنایه از زن زشت و بدترکیب + + + + + + غرورآور، تکبرآور + + + + + + میوه‌دار + + + آبستن، حامله + + + + + + + گریه کننده + + + + + + بالارونده + + + آسانسور + + + + + + جر دهنده، حرفی که مدخول خود را جر دهد مدخول را مجرور گویند و مجموع را جار و مجرور + + + + + + جفاکار + + + + + + ستمکار، ظالم + + + آن که از راه حق به راه باطل میل کند + + + + + + دربردارنده، دارا + + + گردآورنده، جامع + + + + + + اشک ریز، اشک + + + فشان، سرشک بار + + + خاک نمناک + + + + + + مال‌اندوز، گنج‌نهنده + + + + + + آنکه شعری از بحر رجز بخواند + + + کسی که رجز خواند، ارجوزه‌خوان + + + + + + بازدارنده + + + + + + نیزه‌زن + + + نیزه‌دار + + + + + + پرتاب‌کننده + + + تیرانداز + + + + + + بودهنده + + + بوکننده + + + + + + صاف، صافی + + + خوش‌آیند + + + + + + پاکیزه و نیکو + + + کسی که در رفاه و نعمت به سر برد + + + نمو کننده + + + + + + رونده + + + نیست‌شونده + + + باطل، بیهوده + + + + + + سخره‌کننده، مسخره‌کننده + + + + + + سدکننده + + + استوار + + + راست‌گفتار + + + + + + کوشا، سعی‌کننده + + + شتابنده + + + سخن‌چین + + + + + + چشمهٔ روان + + + دشت خوفناک، دوزخ + + + + + + شکایت‌کننده، گله‌کننده + + + + + + مشهور، معروف + + + + + + فاش، آشکار + + + پراکنده، رایج + + + + + + روزه‌دار + + + + + + نیزه‌زننده + + + طعنه + + + زننده، عیب‌جویی‌کننده + + + + + + نافرمان، سرکش + + + ستمکار، ظالم + + + + + + + فرمانبردار، طبع، مطیع + + + خواهان، راغب + + + + + + پیمان‌کننده + + + کسی که قرارداد می‌بندد + + + اجراکنندهٔ صیغهٔ عقد + + + + + + غش‌کننده + + + کسی که مردم را بفریبد + + + + + + دورکننده‌ٔ اندوه، گشایندهٔ غم + + + + + + بالا رونده + + + + + + میوه‌فروش + + + مرد خوش‌طبع + + + + + + فریب‌دهنده + + + + + + خراشنده و جدا کنندهٔ پوست + + + دارویی که بر اثر سوزاندن قسمت‌های سطحی جلد قسمتی از آن را از قسمت‌های عمقی جلد جدا کند از قبیل قسط و زرآوند + + + + + + + آن که از پس چیزی آید و بدو پیوندد، رسنده، واصل + + + پیوند شونده، متصل، آینده، بعدی + + + + + + چسبنده + + + + + + لمس‌کننده + + + + + + ملامت‌کننده، نکوهنده + + + + + + آمیزنده، مخلوط‌کننده + + + + + + متمایز، جدا از یکدیگر + + + + + + + بدل گیرنده چیزی را + + + تبدیل‌شونده + + + + + + شکننده + + + هلاک‌کننده + + + + + + خندان، خنده‌رو + + + + + + + خویشتن آراینده + + + به تکلف نیکو سیرتی نماینده + + + آن که صنعتی یا هنری را به خود ببندد + + + + + + + در پناه‌شونده + + + خویشتن‌دار + + + + + + جوینده + + + قصدکننده + + + + + + برهنه‌گردنده + + + مجردشونده + + + + + + درهم آمیخته، مختلط + + + مشتبه + + + + + + انبوه شده، روی هم جمع‌شده + + + + + + آنچه معمول و مرسوم باشد + + + + + + برخلاف یکدیگر + + + + + + جداشونده + + + + + + راست و درست‌شونده + + + + + + زینت‌یابنده، آراسته + + + + + + سرکش، دلیر + + + + + + کسی است که همیشه به خدمت بندگان خدا قیام کند و خدمت او خالی از هواها و شوایب نفسانی باشد ولیکن هنوز به حقیقت زهد نرسیده باشد گاه به سبب غلبهٔ ایمان بعضی از خدمات او در محل قبول افتد و گاه به واسطهٔ غلبهٔ هوا خدمت او قبول نشود + + + + + + کسی که اظهار تصوف و درویشی کند + + + + + + معامله‌کننده، داد و ستدکننده + + + + + + یکدیگر را دوست گیرنده، دوست + + + + + + بسیار، بی شمار + + + + + + سخت، دشوار + + + + + + جستجوکننده، کاوش‌کننده + + + + + + + کسی که امور را به زیرکی و هوش دریابد، زیرک و باهوش + + + + + + اندیشمند + + + + + + کسی که حرفه‌های گوناگون بلد باشد + + + کسی که به کاری یا هنری از روی تفنن بپردازد + + + + + + دگرگون‌کنندهٔ هرچیزی + + + مردم نادرست و دغل + + + + + + محکم‌کننده، استوارکننده + + + + + + کسی که بر دیگری در بسیاری مال غلبه کند و ببالد + + + + + + + دوبار کرده یا گفته شده + + + دو دله‌شونده، مردد، + + + + + + اندوهگین، کسی که دریغ و افسوس می‌خورد + + + + + + مانند هم، شبیه یکدیگر + + + + + + کسی که خود را به مریضی می‌زند + + + + + + تمام‌کنندهٔ چیزی، کامل‌کننده + + + در دستور زبان کلمه ای که همراه حرف اضافه می‌آید و به فعل یا به صفت نسبت داده می‌شود + + + در ریاضی به هر یک از دو زاویه ای که مجموع اندازه‌های آن ۹۰ درجه باشد + + + دنباله، بقیه + + + + + + جداشونده + + + + + + به هم رسنده + + + پیوسته، متوالی + + + + + + تکیه‌کننده + + + + + + کسی که دست به دامان دیگری بزند، توسل‌جوینده + + + + + + پوشندهٔ جامه + + + آن که شمشیر به پهلو آویزد + + + + + + میوه دار، باردار، مفید + + + + + + ثناگوی، ستایشگر + + + + + + مؤنث مجری، قوهٔ مجریه یکی از قوای سه گانهٔ مملکت که موظف به اجرای قوانین و مقررات است و آن شامل رئیس مملکت و هیئت وزیران است + + + + + + گچ کار + + + + + + پناه دهنده، فریادرس + + + + + + گردآورنده و بیان‌کنندهٔ احادیث + + + + + + حق دارنده، دارای حق + + + + + + خارش آورنده، دوایی که در تماس با پوست بدن تولید خارش کند مانند کبیکج و گزنه + + + + + + سپرنده، تحویل دهنده + + + گرداننده، تغییر دهنده + + + حواله‌کننده + + + ناقه‌ای که آبستن شود بعد از گشن یافتن + + + + + + حیران‌کننده + + + + + + به هم آمیخته، درهم ریخته، مخلوط شده + + + + + + خراج دهنده، اداکنندهٔ باج + + + + + + آن که کسی را جانشین خود کند، جانشین‌کننده + + + آن که وعدهٔ خلاف کند + + + کبوتر بچه ای که پر بر پایش رسته باشد + + + پسر خوش شکل + + + + + + تخمیرکننده + + + + + + تدبیرکننده، صاحب تدبیر + + + + + + هلاک‌کننده، دمار برآورنده + + + + + + به یاد آورنده + + + وعظ‌کننده، واعظ + + + + + + ریاضت کش، ریاضت کشیده + + + + + + کوچ‌کننده، راهی‌شونده + + + + + + باز ایستنده از کاری + + + + + + + ترغیب‌کننده، مشوق ، + + + + + + رواج دهنده، ترویج‌کننده + + + + + + ریاکننده + + + + + + شب زنده دار + + + + + + طلب تمام‌کننده + + + + + + برانگیزاننده، مشوق + + + + + + سخن محال، امری که محال و غیرممکن باشد، از حالی به حالی درآینده + + + + + + + کسی که به زبان‌ها و آداب و عادات غریبان (اروپاییان و آمریکاییان) آگاه است + + + + + + جویندهٔ خبر، طالب آگاهی + + + بیدار، هوشیار + + + + + + حساب دار، دفتردار خزانه + + + تمام فراگیرنده + + + + + + اسراف‌کننده، ولخرج + + + + + + سرایت‌کننده + + + + + + خاموش، ساکت + + + + + + آن که تصمیم به کاری گرفته + + + + + + حمایت‌کننده، پشتیبان + + + + + + گشاینده، بازکننده + + + + + + + نیاز دارنده + + + + + + سودمند، با فایده + + + + + + رفیق و قرین‌شونده + + + پیوسته، متصل + + + + + + قمارکننده، قمارباز + + + + + + روشنایی گیرنده + + + اقتباس‌کننده + + + + + + نزدیک‌شونده + + + + + + آن که کجی چیزی را راست کند + + + ارزیاب، قیمت‌کننده + + + + + + مکافات‌کننده، پاداش دهنده + + + مساوی، برابر + + + + + + کشف‌کننده + + + + + + احاطه‌کننده، فراگیرنده + + + پناه جوینده + + + + + + خلط‌کننده، مشتبه سازنده + + + + + + پناه جوینده، پناه برنده + + + + + + به خود پیچیده، پیچ در پیچ‌شونده + + + نوعی از حرکت نبض که مانند ریسمان پیچیده محسوس شود + + + + + + داخل‌شونده + + + + + + کسی که در راه خدا چیزی دهد، نفقه دهنده + + + + + + شکسته + + + + + + آفتاب یا ماه یا سیاره ای که تمام یا بخشی از آن گرفته شده باشد + + + + + + راه راست یافته + + + + + + ایمن‌کننده، نگهبان + + + از نام‌های خداوند + + + + + + دوست دارنده + + + + + + به دردآورنده، دردناک + + + + + + بی‌مانند، بی‌نظیر + + + + + + کسی که از روی کتاب یا نوشته‌ای نسخه برداری می‌کند + + + باطل‌کننده، نسخ‌کننده + + + + + + دورکننده، ردکننده + + + + + + رشدکننده، نموکننده + + + + + + فرود آینده، نازل + + + ستارهٔ هبوط‌کننده + + + + + + + آنچه در دل گذرد + + + + + + تابناک، مشتمل + + + + + + فرود آینده، رخ دهنده + + + حاصل + + + راست، درست + + + وضع یا کیفیت قرار گرفتن + + + + + + بخشنده، عطاکننده + + + + + + سخنی که در آن کنایه و منظوری غیر از ظاهر سخن، نهفته باشد + + + + + + + بازرگان سوداگر + + + + + + فرودآینده + + + اقامت‌کننده، مقیم + + + + + + انکار کنندهٔ حق کسی با وجود دانستن آن + + + + + + روا + + + مباح + + + نافذ + + + + + + آن که می‌جنگد، رزم‌کننده + + + + + + + حساب‌کننده، شمارگر + + + + + + سرگشته، سرگردان + + + + + + چراکننده، چرنده + + + کسی که در نعمت و آسایش باشد + + + + + + کسی که پارگی را درست کند + + + عالِم به انجام کار + + + + + + برگشت‌کننده، بازگردنده + + + + + + + مراقب، چشم‌دارنده + + + چشم به راه + + + منجم، اخترشمار + + + + + + + مایل، خواهان + + + + + + رساننده، بالنده + + + زیبا + + + + + + منع‌کننده، بازدارنده + + + بانگ‌زننده + + + + + + فرشتگانی که میان زمین و آسمان تسبیح کنند + + + + + + سجده‌کننده + + + + + + خشمگین + + + + + + حاجب، دربان + + + خادم معبد + + + + + + سیاحت‌کننده، جهانگرد + + + + + + بالارونده، صعودکننده + + + + + + آزمند، حریص + + + امیدوار + + + + + + فشار دهنده، فشارنده + + + + + + نگاه‌دارنده، حفظ‌کننده + + + بازدارنده، بازدارنده از لغزش و خطا + + + + + + سرکش، نافرمان + + + گناهکار + + + + + + گناهکار، بدکار + + + مردی که با زن شوهردار رابطهٔ نامشروع دارد + + + + + + گیرنده، در مشت گیرنده + + + + + + مانع + + + به زور بر کاری وادارنده + + + + + + + قیافه‌شناس + + + پی‌شناس، پی بر + + + + + + ایستاده، برپا + + + پایدار، استوار + + + + + + پوشنده (جامه)، جامه پوشیده + + + + + + چسبنده + + + + + + بازی‌کننده، بازیگر + + + + + + به شمشیر زننده + + + سوزنده + + + + + + عالم غیب، عالم الهی، جهان مینوی + + + + + + مزاح‌کننده، بذله‌گو + + + + + + رونده + + + سخن چین + + + + + + موج‌زننده + + + + + + تبسم‌کننده + + + + + + سردکننده، خنک‌کننده + + + پایین آورندهٔ درجهٔ حرارت بدن + + + کاهندهٔ تمایلات جنسی + + + + + + پیروی‌کننده + + + + + + رسنده، واصل + + + رساننده + + + + + + محزون، مغموم + + + + + + + برنده و منقطع از ماسوای خدا + + + + + + ماهر + + + + + + متغیر + + + ترش‌رو + + + آسمان ابر دار + + + + + + بیمارشونده + + + استثناکننده در سوگند + + + بیرون آینده از قسم به کفاره + + + در فارسی تحلیل‌شونده + + + + + + از پی هم آینده + + + + + + از حد گذرنده، تجاوزگر + + + + + + اندیشه‌کننده + + + + + + برابرشونده با هم + + + + + + بلور شده، چیزی که شبیه بلور شده باشد + + + + + + جفت پذیرنده + + + + + + خلاف‌کننده + + + + + + + دفع‌کنندهٔ یکدیگر در کارزار، + + + + + + رمنده + + + + + + + سخت حریص + + + + + + کسی که اسم یا لقبی در شاعری برای خود انتخاب کرده باشد، دارای تخلص + + + + + + + واجب‌کننده، لازم‌کننده + + + + + + متدین، دیندار + + + + + + ضدهم، ناجور + + + + + + منشعب‌شده، شاخه‌شاخه شده + + + + + + گذشته، پیشین + + + + + + درخواست‌کننده + + + + + + پیشی گیرنده + + + دارای تقدم + + + زمان پیشین + + + + + + راست‌شونده، قوام گیرنده + + + در فارسی قیمتی، گران بها + + + + + + برابر، همسان + + + + + + + همراه باشنده + + + وابسته + + + + + + کشیده‌شونده + + + قابل ارتجاع + + + + + + مالک‌شونده، متصرف + + + + + + پارسا، پرهیزگار + + + + + + حرمت نگاه دارنده + + + + + + افروزنده، فروزان، نورانی + + + + + + درنگ‌کننده، در یک جا ایستاده + + + + + + آن که به خدا توکل کند + + + + + + جلب‌کننده، کشنده + + + + + + نوکننده، تازه‌کننده + + + در هر قرن (صد سال) فردی ظهور نماید و آیین اسلام را تازه کند که او را مجد نامند + + + + + + تحسین‌کننده، ستاینده + + + + + + حاوی، شامل + + + + + + + احراز‌کننده، گرد آورنده + + + پناهگاه دهنده، در حرز‌کننده + + + استوار‌کننده + + + + + + + تحریک‌کننده، ورغلاننده، مشوق + + + + + + + استوار گرداننده + + + در حصن‌کننده + + + گرداگرد شهر را برآورنده + + + + + + از حرم بیرون آینده + + + مرد شکنندهٔ حرمت حرام + + + مردی که هیچ بر عهدهٔ خود ندارد + + + مردی که ماه حرام یا امر حرام را حرمت ننهد + + + + + + آن که متعه دهد زن مطلقه را + + + کسی که روی را با زغال سیاه کند + + + سری که پس از ستردن بر آن موی برآید + + + جوجه ای که پر برآورد + + + + + + خلاف‌کننده، ناموافق، ضد + + + برعکس، واژگون + + + + + + دزدی‌کننده، کسی که اختلاس می‌کند + + + + + + مراعات‌کننده + + + + + + برگشته از دین + + + + + + باعث، علت، سبب‌شونده + + + + + + تسبیح‌کننده + + + + + + انس گیرنده + + + + + + پناه دهنده، دادخواه + + + + + + درخواست‌کننده + + + + + + زیاده طلب + + + رنجیده خاطر، گله مند + + + + + + پاکیزه‌شونده، پاک گردنده + + + + + + توانگر، کسی که استطاعت و توانایی دارد + + + + + + فرو رونده، غوطه ور شده، غرقه + + + + + + کسی که طلب فیض کند + + + + + + پیوسته، همیشه، ادامه‌دار + + + + + + + استنادکننده + + + + + + سر باز زننده و خودداری‌کننده از انجام کاری + + + کسی که از رؤیت احضاریه یا حکم قرار دادگاه خودداری کند + + + + + + گرم‌کننده، حرارت دهنده + + + + + + تسکین دهنده، آرام‌کننده + + + + + + مشورت‌کننده، طرف شور + + + + + + سازش‌کننده + + + + + + دردسر دهنده، آنچه که باعث زحمت شود، مصدع اوقات شدن باعث دردسر شدن + + + + + + تصنیف‌کننده، نویسنده + + + + + + گمراه‌کننده + + + + + + تاریک و تیره‌شونده + + + پی یکدیگر‌شونده + + + راست روان + + + + + + کسی که به کاری یا چیزی عادت کرده باشد + + + + + + گوشه‌گیر، عزلت گزین + + + + + + عزت دهنده + + + + + + رشک برنده، غبطه خورنده + + + + + + آن که می‌شوید + + + آن که خوشبوی به می‌مالد + + + + + + آنکه یا آنچه که اندوه را از دل دور کند + + + + + + شادی آور، فرح بخش + + + + + + شاعری که سخن شگفت و عجیب آورد + + + + + + تولید جراحت‌کننده + + + + + + قراردهنده، تعیین‌کننده + + + تقریرکننده، بیان‌کننده + + + کسی که درس استاد را برای دانشجویان تقریر و شرح کند، دانشیار + + + + + + کسی که قدم کوتاه بردارد + + + آنکه مقرمط نویسد + + + + + + دادگر، عادل + + + + + + چاه کن + + + + + + تکبیرگوینده در نماز جماعت + + + + + + پنهان دارنده + + + + + + سرمه به چشم کشیده + + + کسی که در سختی افتاده باشد + + + + + + بسیارآورنده + + + آن که بسیار نویسد + + + توانگر، مال دار + + + + + + کافر، بی‌دین + + + + + + لازم گرداننده + + + + + + اندازنده (بر زمین و جز آن) + + + املاء‌کننده + + + + + + روشن، آشکار + + + کسی که جلای وطن کرده و از میهن خود بیرون رفته + + + + + + کج، خمیده، خط منحنی خطی است که نه راست باشد نه شکسته + + + + + + منقطع، بریده + + + باتبختر رونده + + + + + + درج شده، گنجیده + + + شده + + + + + + دفع‌شونده، بیرون ریزنده، دورشونده + + + + + + گوشه نشین، گوشه + + + گیر + + + + + + برکنده، از بن کنده + + + + + + انکارکننده، ردکننده + + + + + + میزبان + + + خدمهٔ هواپیما + + + + + + اذیت‌کننده، آزار رساننده + + + در فارسی، بداندیش، حیله‌گر + + + + + + یقین دارنده، یقین‌کننده + + + + + + + بزرگ، بزرگوار + + + کسی که دارای هوش و استعداد فوق‌العاده باشد + + + + + + پنددهنده، نصیحت‌کننده + + + + + + آن که به جادویی ورد می‌خواند و می‌دمد، ساحر، جادوگر + + + شعبده باز + + + + + + ناتمام، نارسا، ناقص العقل کم خرد، احمق، ناقص الاعضاء آن که در اعضای بدنش نقصی باشد، ناقص الخلقه آن که دارای نقص مادرزادی باشد، ناقص العضو آن که عضوی از اعضای بدنش ناقص باشد + + + + + + مرد زن دار + + + زن شوهردار + + + + + + غارت‌کننده، غنیمت گیرنده + + + + + + جانشین، نایب الزیاره کسی که از طرف دیگری بقعهٔ متبرکی را زیارت کند، نایب الحکومه الف + + + کسی که به نیابت از طرف حاکم شهری را اداره کند ب + + + بخشدار (فره)، نایب التولیه کسی که از طرف متولی امور بقعه یا موقوفه ای را اداره کند + + + + + + توبه‌کننده + + + + + + بر سویی آینده، آینده + + + نزد کسی رونده + + + + + + دریابنده، درک‌کننده + + + پیدا‌کننده + + + + بخش + + + برای + + + پاره + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + به باور قدما جن یا پری که همزاد انسان باشد + + + متکبر، لاف‌زن + + + سرگشته، حیران + + + هلاک‌شونده + + + مؤنث جازم + + + حرفی که چون بر فعل درآید آخر آن را ساکن گرداند + + + دوراندیش، هوشیار + + + حس‌کننده + + + حکایت‌کننده، بیان‌کننده + + + ستاینده، ستایشگر + + + کهنه، فرسوده + + + آب که به شدت از محل ریزد، ریزان + + + سودبخش، سودآور، نافع + + + کوچ‌کننده، رحلت‌کننده + + + ترک کننده، رهاکننده + + + بالابرنده، بلند کننده + + + بردارندهٔ قصه به شاه یا امیر، عرض حال دهنده + + + رکوع‌کننده + + + فروتنی + + + رام‌کنندهٔ ستوران + + + دزد + + + تابان + + + برافراشته + + + آشکار + + + پراکنده + + + قصه‌گو، افسانه‌گو + + + واقعه (اعم از خیر و شر) + + + انسان یا جانوری که از سمت راست شخص برآید + + + بیدار + + + نافرمان، سرکش + + + ده یک گیرنده + + + شیطان + + + فتنه‌انگیزنده + + + کسی که ارادهٔ فجور با زنان کند + + + گمراه‌کننده + + + بوی خوش دهنده + + + مسلط‌شونده، چیره‌شونده + + + کوبندهٔ در و مانند آن + + + فال‌زننده به قرعه + + + موجود، موجودشونده + + + امردباز، غلام‌باره + + + ستایش‌کننده، مدح + + + کننده + + + دشمنی‌کننده + + + رسنده به چیزی + + + درک‌کننده، دریابنده + + + آوردن الفاظی است در ابتدای کلام که موهوم ذم باشد و بقیهٔ کلام به نحوی آورده شود که رفع توهم گردد + + + برافروزندهٔ آتش جنگ + + + جنگ‌کننده + + + سنگ‌شده، سخت‌گشته + + + در فارسی به کسی گویند که حاضر به درک و پذیرش نوآوری‌ها نیست + + + آواز خواننده، زمزمه‌کننده + + + بصیر و دانا، دقیق + + + به تکلف کاری‌کننده + + + پی درپی‌شونده، متوالی + + + پیشی گیرنده (بر یکدیگر) + + + تجزیه‌شونده + + + تظاهرکننده + + + دارندهٔ صفتی + + + در پی یکدیگر شونده + + + ساخته‌شده، صورت گرفته + + + کسی که مباشر کار و شغلی است + + + گمان‌کننده، شک‌کننده + + + نویسنده، دبیر + + + خود را به عرب مانند کننده + + + چیره‌شونده + + + گشایش یابنده (از تنگی و دشواری) + + + گشایش خاطر یابنده + + + خوشی جوینده + + + برعهده گیرنده + + + کسی که به دیگری تقرب کند، نزدیکی جوینده + + + عهده‌دار، کفیل + + + موجود شده، به وجود آمده + + + تمام‌کننده، کامل‌کننده + + + کج شده و خمیده شده + + + آنچه که به چیزی میل کند + + + برخوردار از چیزی، بهره‌مند + + + کسی که عمره (زیارت بیت الله با شرایط خاص) به جا آورد + + + چنگ در زننده + + + بازدارنده + + + با نسق و ترتیب، منظم، مرتب + + + پیاپی، پشت سرهم + + + آماسیده، ورم کرده + + + تجویز شده، روا داشته شده، اجازه‌نامه + + + احیاءکننده، زنده‌کننده + + + ویران‌کننده + + + خطاکار، گناهکار + + + خفه‌کننده + + + در علم عروض «مفعولن» چون در حشو بیت افتد و از «مفاعیلن» منشعب باشد، آن را مخنق خوانند + + + خیال‌کننده + + + دفاع‌کننده + + + دوام دهنده، ادامه دهنده + + + باریک گردانیدن + + + کار دقیق‌کننده + + + نکته‌های دقیق پیدا‌کننده + + + دلالت‌کننده، راهنما + + + خوار دارنده + + + نامه فرستنده + + + بازگشت‌کننده + + + کهنه پسند + + + اراده‌کننده، ارادتمند + + + کهنه، دیرینه، مرض مزمن بیماری ای که کهنه شده باشد + + + زایل‌کننده + + + دوای خواب‌آور + + + خودسر، خودرأی + + + صاحب بصیرت + + + خدمت‌کننده، مجازاً: کارمند + + + طالب استراحت + + + شفا جوینده، بهبود خواهنده + + + آمرزش خواه + + + فریادخواه، دادخواه + + + استفاده‌کننده، فایده گیرنده، بهره‌مند + + + یاری خواهنده + + + دلیر و توانا + + + رم‌کننده، رمنده + + + نور جوینده ستاره ای که از خود نور ندارد + + + غالب، چیره‌شونده + + + هرچیزی که باعث شکم روی شود + + + خیره سر، خودرأی + + + خبر دهنده، آگاه‌کننده + + + ناله‌کننده + + + عذر آورنده + + + اقرارکننده، اعتراف‌کننده + + + چنگ زننده به دامن کسی + + + آموزنده، تعلیم‌کننده + + + برخلاف، برعکس + + + غنیمت گیرنده، غنیمت شمرنده + + + به فریاد رسنده، یاری‌کننده + + + تغییر دهنده، دیگرگون‌شونده، قابل تغییر + + + بی ثبات، بی دوام + + + افتراء زننده، تهمت زننده + + + برانگیزانندهٔ فتنه + + + فتوادهنده، قاضی + + + خالی‌کننده + + + واریز‌کنندهٔ حساب + + + گشادشونده + + + مفتقر، محتاج + + + اعلام‌کننده + + + رسنده، بالغ‌شونده + + + روزه گشاینده + + + جنگجو + + + اعتراف‌کننده، اقرارکننده + + + برگرداننده + + + تقلیدکننده + + + قی آورنده + + + اقامت گزیده + + + پوشاننده، جامه پوشنده + + + اکتفاکننده + + + آگاه، متوجه + + + هرآنچه که باعث شکم روی باشد + + + تمدیدکننده، طولانی‌کننده + + + بیمار گرداننده، بیماری‌زا + + + نتیجه دهنده، مفید، سودمند + + + نتیجه دهنده + + + انتحال‌کننده، به خود نسبت دهنده (شعر دیگری را) + + + رخنه دار و شکسته (شمشیر، آوند، دیوار و جز آن‌ها) + + + وفاکننده، رواکنندهٔ حاجت + + + نجات دهنده، رهایی + + + دهنده + + + پاره‌شونده، دریده گردنده + + + از جای کنده + + + منقطع + + + دورشونده از اصل + + + انعکاس یافته، برگشته + + + توانگر، مال دار + + + گشوده شده، شکافته + + + دریده، شکافته شده + + + مردی که از رسوایی و بی پردگی باک ندارد، بی پروا + + + کوشنده در کاری، کوشش‌کننده + + + رویاروی، مقابل + + + به وجود آورنده، آفریننده + + + تاریخ‌نویس + + + دردآورنده، دردناک + + + زندگانی بخشنده + + + شکننده، شکنندهٔ پیمان + + + کارگر ساختمان + + + جدایی‌کننده + + + فایق، فاضل بر دیگر اشیا + + + سخن پریشان گوی + + + نابودکننده، ویران‌کننده + + + اطمینان دارنده + + + استوار، محکم + + + در آینده، داخل‌شونده + + + به جا، به مورد + + + سخن چین، نمام + + + جانوری که در آب زندگی می‌کند + + + فروشونده، غروب‌کننده + + + خورنده + + + باربردار، حمال + + + چهارپا یا ارابه یا اتومبیلی که بار برد + + + در ترکیب با واژه‌های دیگر معنی (پریشان‌کننده) دهد: خاطرپریش + + + به صورت اضافه معنای پریشان می‌دهد، زلف‌پریش + + + کاه دهنده + + + توبه‌کار، نادم + + + جلب‌کننده، دلربا + + + عفونی‌های جلدی + + + روشن، واضح + + + جلا + + + دهنده، پاک‌کننده + + + حج‌کننده، حج‌گزار + + + زیانکار، زیان رسیده + + + ساقط، افتاده + + + چرانندهٔ گله + + + پشتیبان، نگهبان + + + حاکم، والی + + + کسی که او را برای یافتن جای مناسب از پیش می‌فرستادند + + + پیشرو + + + جوینده + + + جاسوس + + + مؤنث زاید + + + سرایت‌کننده + + + رونده در شب + + + سیر کننده + + + جاری، روان + + + همه + + + بقیهٔ چیزی + + + شرح‌کننده، مفسر + + + دلتنگ، بی‌آرام از غم + + + زننده، کسی که می‌زند + + + راه‌رونده در شب + + + دزد، فالگیر + + + ستارهٔ صبح + + + آینده + + + ناگاه در آینده + + + ناگاه روی‌داده، عارض + + + گذرنده غیر + + + جوینده، خواهان + + + دانشجوی علوم دینی + + + مرد بدکردار، تبهکار + + + نوازندهٔ چغانه + + + سرودگوی + + + از پی آینده + + + جانشین، قائم مقام + + + قربانی‌کنندهٔ شتر + + + زنی که آبستن نشود + + + گوشه‌گیرنده، کسی که در مسجد یا هر جای دیگر برای عبادت گوشه بگیرد + + + قصدکننده، آهنگ‌کننده + + + آبادکننده + + + اقامت‌کننده در جای آباد + + + بی‌وفا، خیانتکار + + + سرزنش‌کننده، طعنه‌زننده + + + زخم‌زننده + + + نشسته + + + کسی که از رفتن به جنگ خودداری کرده + + + قاطع + + + شکننده، کوبنده + + + پیشوا، رهبر، فرمانده، سردار + + + بازاری، سوداگر + + + ضامن + + + پنهان‌شونده، پوشیده‌شونده + + + گمارنده + + + سخنگو + + + آن که شغلش در رادیو و تلویزیون گویندگی است + + + گورکن، لحدساز + + + آشکار، پیداشونده + + + درخشان + + + تغییردهنده، بدل‌کننده + + + مژده‌دهنده، بشارت‌دهنده + + + باطل‌کننده، خراب + + + کننده + + + آن که خود را بر زمین زند + + + بخیل + + + بی‌توجه + + + ابر بی‌باران + + + اندوهناک، دردمند + + + کسی که به علم الهیات اشتغال دارد، عابد، زاهد + + + متفکر، صاحب تدبیر + + + کسی که با تکبر و ناز راه می‌رود + + + خجسته، فرخنده + + + آن که خود را شاعر پندارد + + + شاعرنما + + + جرعه‌جرعه خورندهٔ آب و مانند آن + + + فروخورندهٔ خشم + + + افزون‌شونده + + + آشتی‌کننده با دیگری، صلح‌کننده با یکدیگر + + + با طرف دعوی نزد حاکم رونده + + + با یکدیگر حساب‌کننده + + + بازاریاب، بازار گرم کن + + + به تکلف چابکی نماینده + + + تصورکننده، خیال‌کننده + + + دادخواه، شکایت‌کننده + + + در زمرهٔ لشکریان در آینده + + + دیندار، با دیانت + + + روبروشونده، مقابل‌شونده + + + زینت یافته، آراسته، صاحب تجمل + + + شبیه به چیزی، ماننده به چیزی + + + فروتن، خوار + + + نوخواه، کسی که آداب و رسوم جدید را می‌پذیرد + + + یادآوری‌کننده، به خاطر آورنده + + + کسی که دارای تعصب باشد + + + عادت‌کننده، خوگر + + + دگرگون‌شده، تغییر حال یافته + + + آشفته، مضطرب + + + مقابل، روبروی، دارای تقابل + + + قطع‌کنندهٔ یکدیگر + + + دو خط که به یکدیگر برسند و همدیگر را قطع کنند (هندسه) + + + کسی که امری را بر گردن گرفته باشد + + + پرهیزگار، پارسا + + + ستبر شده، ضخیم شده + + + خودبین، مغرور، دارای تکبر + + + سرمه کشنده + + + سخن گوینده + + + پذیرندهٔ کیفیتی + + + در فارسی کیف برنده، نشأه برنده + + + از هم پاشیده + + + با یکدیگر روبروشونده، دو چیز که در یک نقطه به هم رسند + + + چیزی که از دیگری جدا و مشخص باشد + + + سرکش، نافرمان + + + جاگرفته، جایگزین + + + توانگر، ثروتمند + + + به پایان رسیده، آنچه انتها و پایان داشته باشد + + + برابر یکدیگر + + + دو خط برابر با هم که هرچه امتداد داده شوند به هم نرسند، موازی، متوازی الاضلاع چهار ضلعی ای که اضلاع آن دو به دو با هم موازیند، متوازی السطوح فضایی که دارای شش وجه است و هر دو وجه رو به رو متساوی و موازیند + + + اقامت‌کننده، مقیم‌شونده + + + نیک مشغول‌شونده در کاری + + + دور رونده در شهرها + + + زاییده شده، تولد یافته + + + همسایه، همجوار، در کنار دیگری، کسی که به قصد ثواب در کنار یک بنای مقدس اقامت می‌کند + + + دوری‌کننده، احترازکننده + + + روبرو‌شونده + + + مقابل، برابر + + + دوشنده + + + نیک سوزاننده به آتش + + + آنچه موجب تشنگی گردد + + + دوایی را گویند که پس از مالیدن بر روی پوست بدن ایجاد سوزش و تحریک شدید کند، مانند: فرفیون، خردل و غیره + + + کسی که لباس احرام بر تن دارد + + + محاصره‌کننده + + + تحصیل‌کننده و گردآورنده + + + دانش آموز، دانشجو + + + شیرین گرداننده چیزی را + + + شیرین یابنده + + + خفه‌شونده، گلوی فشرده شده + + + سست‌کننده، آنچه که باعث رخوت و خواب و سستی اعصاب می‌شود، دارای ویژگی تخدیرکننده + + + عمل خیر‌کننده + + + سخی + + + نقش گیرنده، نفش پذیر + + + انجام دهندهٔ کاری ناروا + + + منتخب + + + مختص + + + متأثر، غمگین + + + اجابت‌کننده + + + آگاه، مطلع + + + سبک شمرده، خو ار داشته + + + هرچیز گرد و دایره مانند + + + راه راست جوینده، به راه راست رونده + + + نیک‌بختی‌جوینده، سعادت‌خواهنده + + + کسی که چیزی را به فال نیک گیرد + + + یار گیرنده، همدم خواهنده + + + همراه دارنده + + + طلب‌کنندهٔ علم + + + عاریت خواه، کسی که چیزی را به عاریت گیرد + + + یاری + + + خواهنده + + + آنکه مهلت خواهد، مهلت خواهنده + + + انتظار دارنده + + + گیرنده همه چیز را، همه را فراگیرنده + + + برابر، هموار + + + فراگیرنده، شامل‌شونده + + + کسی که برای خدا شریک قایل باشد + + + مهربان، مهربانی‌کننده + + + شک‌کننده + + + شکاک + + + به شوق آورده شده + + + مشورت‌کننده، تدبیرکننده + + + ترش‌رو + + + در شمار آینده، معدودشونده + + + از حد درگذرنده + + + گوشه نشین، کسی که برای عبادت در مسجد یا جای دیگر خلوت بگزیند + + + عاجزکننده، اعجاز آورنده + + + عیارگر، کسی که عیار زر و سیم را معین می‌کند + + + آوازه خوان، سرودگوی + + + مطرب + + + درنده + + + جانوری که شکار خود را بدرد + + + ازالهٔ بکارت‌کننده + + + تفتیش‌کننده، بازرس + + + آن که تفریط کند + + + نزدیک‌شونده + + + روی آورنده + + + صاحب اقبال، خوشبخت + + + بی پروا، کسی که بدون اندیشه به کاری خطرناک اقدام کند + + + تقدیرکننده + + + سوگند خورنده، قسم خورنده + + + اکراه نماینده، ناخوش دارنده + + + لعن‌کننده + + + دیدارکننده، روبروشونده + + + بوسه دهنده + + + آن که دهان وی با نقاب یا دهان بند بسته شده + + + اصرار ورزنده، الحاح‌کننده + + + تلطیف‌کننده، نازک‌کننده + + + لبالب، پُر + + + امتناع‌کننده، سرپیچی‌کننده + + + ناممکن، محال + + + درگذراننده، امضاءکننده + + + شکننده، نقض‌کننده + + + مخالف + + + بیدار، هوشیار، آگاه + + + چشم به راه، کسی که انتظار می‌کشد + + + سود یابنده، نفع برنده + + + زشت‌کننده + + + آلوده‌کنندهٔ ناموس کسی + + + مانده و فرسوده و لاغر‌کننده + + + شادمان، خوشدل + + + درهم کشیده، جمع شده + + + تمام شده، به آخر رسیده + + + کشف شده، نمایان شده + + + از هم ریخته، ویران، خراب + + + هلاک‌کننده، نابودکننده + + + آن که شعر نیکو و ظریف گوید + + + تهوع آور، قی آور + + + هلاک‌کننده، مهلک + + + اجاره دهنده، کرایه دهنده + + + وحشت‌انگیز، ترس + + + آور + + + حریص، آزمند + + + رستگار‌شونده + + + پیروز، پیروزمند + + + کار سهل، آسان + + + نجات‌یابنده، خلاص‌شونده + + + رهاننده، نجات‌دهنده + + + نشرکننده، منتشر‌کننده + + + شخص یا مؤسسه ای که کتب و نشریات را چاپ و منتشر کند + + + رمنده، نفرت دارنده + + + آن که از بیماری بیرون آمده و هنوز کاملاً تندرست نشده، از بیماری برخاسته، بیمارخیز + + + کناره گیرنده، معرض + + + میل‌کننده، مایل + + + هضم‌کننده + + + میانجی + + + دلاُل + + + مرکز، ناحیه، کرسی + + + سبب، علت، انگیزه + + + رسنده + + + پیوسته + + + فراوان، زیاد + + + آفرین! + + + مؤنث آنس، زن نیکو، خانم + + + آرزومند، شایق + + + بر سینه خفته + + + هلاک شده + + + یخ بسته، منجمد + + + آنچه که زنده نیست و رُشد ندارد مانند سنگ + + + دروگر + + + حصیر بافنده + + + محاسب، شمارنده + + + آنچه یا آن که سد نماید + + + خدمتکار زن، کنیز، کلفت + + + فروتنی‌کننده + + + آنچه که چشم را خیره کند + + + تیری که به زمین بخورد و سپس به سوی هدف رود + + + غالب آمده، چربیده + + + کسی که پیاده راه رود، پیاده + + + بالا رونده، جلو رونده + + + افسونگر + + + تحصیل‌کرده + + + ایستاده، بی‌حرکت + + + جاری، روان + + + رونده، مسافر + + + زاهد، عارف + + + شنونده + + + چرنده + + + نادر، کمیاب + + + پیرو، طرفدار + + + شیعه، شیعی + + + شفاعت‌کننده + + + نگاه‌دارنده + + + پرهیزگار + + + خندان، خندنده + + + طواف + + + کننده + + + شبگرد + + + ظفر یابنده، پیروز، فیروز + + + ستیز کننده + + + کسی که از راه راست برگردد و منحرف شود + + + غرس کننده + + + جنگجو، کسی که در راه خدا می‌جنگد + + + غصب‌کننده + + + گناهکار، تبهکار + + + زناکار + + + دردآورنده، دردناک + + + نایابنده، کسی که چیزی یا کسی را نداشته باشد + + + زنی که شوهر یا فرزند خود را از دست داده باشد + + + دورشونده، به نهایت‌رسنده + + + برنده، قطع‌کننده + + + پنهان کننده، پوشنده + + + سرپوش، رازدار + + + نهفته، مستور + + + سست و کاهل + + + درنگ‌کننده + + + برجسته، ممتاز + + + کینه‌ور، دشمن + + + آنکه ارادهٔ کاری کند در شب و تصمیم گیرد + + + گفتگو کننده در شب + + + شبیخون آورنده + + + پیروی‌کننده + + + جسم گیرنده + + + آن که بر کاری و عملی بزرگ شود + + + دیگرگون‌شونده + + + جابه‌جاشونده + + + بالارونده + + + به دست گیرنده + + + به نسیه و وام خرید و فروش‌کننده باهم + + + پراکنده + + + جلب‌کننده، کشاننده + + + جنبنده، لرزنده + + + چاپلوسی‌کننده، چاپلوس + + + دارای نظم و ترتیب + + + دلگیر، حسرت خورنده + + + دورشونده، به یکسوشونده، کناره‌گیر + + + دوری‌کننده، احترازکننده + + + حیران، حیرت‌زده، شگفت زده + + + عزیز، ارجمند + + + قیمتی + + + نازکننده، با ناز و کرشمه + + + دردمندشونده از سختی و اندوه + + + نزدیک‌شونده، نزدیک به یکدیگر + + + نامِ یکی ازبحور شعر که از هشت فعولن تشکیل شده‌است + + + تلف‌کننده، تباه‌کننده + + + شهرنشین، دارای تمدن + + + دو خط که نه متوازی باشند و نه متقاطع + + + دور‌شونده از یکدیگر + + + مخالف و ضد یکدیگر + + + هم وزن، برابر + + + یگانه، فرد + + + ترسیده، وحشت کرده + + + سرپرست، مباشر، سرپرست املاک موقوفه + + + مبارک و بابرکت + + + فضل + + + حسن حال + + + خشک‌کننده + + + دوایی که موجب از بین رفتن رطوبات یا تقلیل آن شود + + + اجابت‌کننده، پاسخ دهنده، قبول‌کننده + + + جنگجو، نبردکننده + + + حساب‌کننده، حسابدار + + + حمایت‌کننده، دفاع‌کننده + + + وکیل دادگستری + + + آمیخته‌کننده + + + فساد‌کننده، تخلیط‌کننده، دو به هم زدن + + + آن که عیب کالای خود را از خریداران پنهان کند + + + خدعه‌کننده + + + کسی که خود را مقدس جلوه دهد و نباشد + + + مردُد، دو دل + + + ریاکار، متظاهر + + + آن که در شک و تردید باشد + + + ربط داده شده، پیوسته + + + ترسنده، ترسان، خایف ، + + + سست‌کننده + + + دارویی را گویند که به قوت حرارت و رطوبت خود قوام اعضای کثیفهٔ المسام را نرم و مسامات آن را وسیع بگرداند تا آن که به سهولت و آسانی فضول مجتمعه و محتبسهٔ در آن‌ها دفع شود، مانند ضماد شوید (شبت) و بذر کتان + + + باعث زحمت، آزار + + + دهنده + + + آغاز‌کننده، از سر گیرنده + + + کسی که در محکمه ای مغلوب شده مرافعهٔ خود را در محکمه ای بالاتر از سر گیرد، استیناف دهنده + + + شادمان + + + رهاکننده، آزادکننده + + + چنگ زننده، پناه برنده + + + به کار برنده، استعمال‌کننده + + + به کار برندهٔ لغت + + + استقبال‌کننده، به پیشواز رونده + + + به پشت خوابنده + + + نفس از بینی کشنده + + + آن که آب یا مایعی دیگر در بینی استنشاق کند + + + شتاب‌کننده + + + آرزومند، مایل و راغب + + + مبهم، نامعلوم + + + در اشتباه + + + خریدار مجازاً: خواستار، خواهان + + + شهرت دهنده + + + شعبده باز، حقه باز + + + راستکار، صواب یابنده + + + سایه انداز، سایه دار + + + اعتمادکننده + + + به شگفت آورنده + + + خودبین، خودپسند + + + بیان‌کنندهٔ علت + + + آورندهٔ دلیل + + + چیز عجیب و غریب در آورنده + + + جداشونده + + + تباه‌کننده، فاسدکننده + + + میانه‌رو، صرفه + + + جو + + + اقتضاکننده، تقاضاکننده + + + شایسته، درخور + + + مطابق، موافق + + + سبب، موجب + + + قناعت‌کننده، قانع + + + قانع‌کننده + + + آنچه کیفیت و حالتی پدید بیآورد، لذت بخش، کیف آور + + + یکسان، برابر، مساوی + + + آن که بهره می‌دهد + + + بخیل، خسیس + + + همنشین، هم صحبت + + + نزاع‌کننده، کسی که با دیگری ستیزه می‌کند + + + برگزیننده، اختیارکننده + + + فاش، شایع + + + پراکنده، پاشیده + + + انتشار یافته + + + نیست و نابود گشته + + + ستاره‌شناس، کسی که به دانش اخترشناسی می‌پردازد + + + بریده‌شونده + + + فریفته‌شونده، گول خورنده + + + پوشیده‌شونده، پنهان گردیده + + + ماه گرفته + + + کهنه، فرسوده + + + سوق یابنده، کشانیده + + + پزنده + + + دوایی که خلط و ماده را بپزد و مهیای دفع کند + + + درپیچیده‌شونده، ن وردیده + + + در فارسی: حاوی، مشتمل + + + تیره گرداننده + + + ناخوش‌کننده + + + جدا شده، بریده شده + + + از میان رفته، نابود شده + + + بخش بخش شده، قسمت شده + + + نقش‌کننده + + + کنده کاری‌کننده (بر نگین و جز آن) + + + برگشته، حال به حال شده + + + به هم خوردن حال + + + تابان، درخشان + + + هیجان آور، برانگیزنده + + + سخن مختصر و کوتاه + + + انس گرفته، همدم + + + سرکش، طاغی + + + درخشنده، طلوع‌کننده + + + حمل‌کننده، جابه‌جا‌کننده + + + نقل‌کننده، روایت‌کننده، + + + انتقال دهنده + + + زن نوحه‌کننده و زاری‌کننده بر شوی، + + + سبب، جهت + + + ضمیر اشاره برای اشخاص نزدیک + + + برق‌زننده، درخشنده + + + ابر با برق و درخشنده + + + سرکش، نافرمان + + + علمدار، پرچمدار + + + جهدکننده، کوشا + + + کینه‌جوی، بداندیش + + + خدمتگزار، مستخدم + + + پست‌کننده، خوار + + + کننده + + + رونده، گذرنده + + + کوشنده + + + گرو گذارنده + + + رهن‌گذارنده + + + ثابت، دائم + + + شناکننده، شناور + + + تندرونده، تندرو + + + خورندهٔ خوشهٔ انگور با بن + + + نوشنده + + + گذشته، پیشین + + + پیش‌رفته + + + ادب‌کننده + + + رام‌کننده + + + محرک، سوق + + + دهنده + + + به کار وادارنده + + + دارندهٔ پیشه و کار + + + شکرکننده، سپاسگزار + + + بلند، مرتفع + + + صیحه‌زننده + + + قصد کننده، اراده‌کننده، کوشش‌کننده + + + مسافر، رونده + + + دشوار، پوشیده + + + شکافنده، پاره‌کننده + + + خاینده و جاونده + + + بخش‌کننده، قسمت‌کننده + + + از پی رونده، پیرو + + + شکننده + + + بی‌دین، ملحد + + + همهٔ مردم + + + بازدارنده + + + درخشنده + + + هرزه‌گوی + + + ناله‌کننده + + + محوکننده + + + گذشته (زمان) + + + فعلی است که بر زمان گذشته دلالت کند + + + در گذشته، مرده + + + برنده، قاطع + + + ابداع‌کننده، اختراع‌کننده + + + بدعت‌گذارنده + + + جامهٔ سفید پوشنده + + + سفید گرداننده (جامه و غیره) + + + درنگ‌کننده + + + معاصر، کسی که در زمان نزدیک به زمان حال می‌زیسته + + + دارای اهل و عیال، دارای همسر + + + دست در کاری دارنده + + + کسی که مالی یا ملکی را در تصرف و اختیار خود دارد + + + حاکم، والی + + + محصل مالیاتی محل + + + دارای تعادل + + + دارای اعتدال + + + شکار جوینده + + + شکارکننده به حیله + + + آمد و شد کننده + + + کسی که در امری به شک و تردید دچار است + + + آشکار، آشکارشونده، ظاهرشونده + + + آویخته، چنگ‌زننده + + + با هم خصومت‌کننده + + + به یکدیگر مهربانی‌کننده + + + پیروی‌شده + + + پیوسته، نزدیک به هم + + + چشم به راه، منتظر + + + خواهندهٔ چیزی، رغبت‌کننده، آرزو دارند + + + خوی و عادت دیگری را گرفته + + + داخل شده (در یکدیگر)، در میان آمده + + + در بر دارنده، شامل + + + رفیع، بلندپایه + + + سپاس‌دار، شکرگزار، آن که تشکر می‌کند و سپاس به جا می‌آورد + + + فراهم‌آمده، جمع گشته + + + کسی که خود را فریب‌خورده وانماید + + + ممتاز، دارای تشخص + + + منتظر، متوقع، چشم دارنده + + + بیراهه رونده، منحرف (از راه) + + + آن که از طریق صواب عدول کند + + + ستمکار، ظالم + + + ضررکننده + + + افسوس خورنده + + + فخرکننده + + + متکبر، مغرور + + + آن که خود را فقیه معرفی کند + + + فقیه، دانشمند + + + پیوسته، متحد به هم + + + بازایستنده از امری، اظهار کوتاهی نماینده + + + قطره‌قطره چکیده + + + دسته‌های پیاپی آینده + + + بسیارشونده، دارای کثرت + + + تکیه‌کننده + + + لباس پوشیده، به لباس کسی درآمده + + + یکدیگر را مس‌کننده، به هم پیوندنده + + + خود را نگاه دارنده، خویشتن‌دار + + + چنگ در زننده + + + مثل آورنده + + + در مرکز جای گیرنده + + + فراهم آمده و جمع شده در یک نظام + + + متوجه و معطوف، دارای تمرکز + + + چاپلوس + + + گسترنده + + + جاگیرنده + + + قادر (بر امری) + + + موج زننده، موج دار + + + یکی پس از دیگری، آنچه به نوبت بیاید + + + یکی‌شونده (با هم) + + + در فارسی دو عدد را گویند که دارای یک یا چند مقسوم‌علیه باشند + + + گمان برنده، خیال‌کننده + + + محقق، بی شبهه و گمان + + + جزای نیک دهنده + + + عطا‌کننده + + + حریف در قمار، حریف در بازی نرد و شطرنج + + + فراهم‌کنندهٔ وسایل و اسباب کاری + + + مستوفی + + + اجراءکننده، انجام دهنده، مجری حکم (قانون) کسی که حکم قانونی را به مرحلهٔ اجرا درآورد + + + حل‌کننده، تحلیل برنده + + + مردی که با زن سه طلاقه ازدواج می‌کند و او را طلاق می‌دهد تا آن زن بتواند دوباره با همسر پیشین خود ازدواج کند + + + حیله‌گر، مکار + + + مرد متکبر و خودپسند + + + با یکدیگر خصومت‌کننده + + + گوناگون، جورواجور + + + پاره‌پاره‌کننده، درنده + + + بسیار دروغگو + + + اخلال‌کننده، فاسدکننده + + + لباس به خود پیچیده + + + کسی که دامن جامه را بلند سازد + + + آنکه بر مطلبی یا کتابی ذیلی نویسد + + + هم‌معنی + + + سود ده، نفع بخش، پُرسود + + + دیده‌بان، چشم به راه + + + ثابت، مستقر، جایگزین + + + صاف‌کننده + + + رواق سازنده، معمار + + + موافق، یاور + + + اعتمادکننده + + + زنهار خواهنده + + + نوکننده، نو گرداننده + + + نگهبان + + + آب خواهنده + + + مبتلا به بیماری استسقاء + + + بلند برآمده + + + غلبه‌کننده، قهر‌کننده + + + یاری خواهنده + + + تفحص و تحقیق‌کننده + + + راست، معتدل + + + آنچه بودنش لازم است + + + موجب، مسبب + + + استنباط‌کننده، درک‌کننده + + + لایق، سزاوار + + + مسلمان + + + سیرکننده + + + کسی که ورزش مشت زنی را انجام می‌دهد، بوکسور + + + برافروخته، شعله‌ور، سوزان + + + برخوردکننده، روبروشونده + + + نمازگزار، نمازخوان، نمازگر + + + ضرر رساننده، زیان آور + + + پاک‌کنندهٔ نوشته + + + یاری‌کننده، یاری گیرنده + + + افسونگر، جادوگر + + + به عمل آورنده، ابداع‌کننده + + + تزویر‌کننده (خط) + + + تفسیرکننده، شرح دهنده + + + تفویض‌کننده، واگذارنده + + + جاری‌کننده + + + فیض + + + دهنده، فیض بخش، فیض دهنده + + + بهوش آینده، بیدار شده + + + آن که بدون لیاقت و لزوم و به ابرام پرسش کند + + + آن که بی اندیشه شعر گوید و خواند + + + آن که از خود چیزی نو آورد + + + آن که مطلبی را پیشنهاد کند تا مورد بحث دانشمندان قرار گیرد + + + یار‌شونده، قرین‌شونده + + + نزدیک + + + در نجوم ستاره ای که به ستارهٔ دیگر نزدیک شود + + + خواننده، کسی که تعلیم قرائت قرآن بدهد + + + قانونگزار + + + بر رو درافتاده، سرنگون شده + + + آن که سر خود را به زیر اندازد و به زمین نگاه کند + + + به وجود آورنده، موجد + + + برچسبنده + + + الهام‌کننده، تلقین‌کننده + + + خدای تعالی ، + + + امتحان‌کننده، آزماینده + + + ملال آور، بیزارکننده، اطناب ممل تطویل کلام به حدی که ملال آورد + + + میراننده + + + خدای تعالی + + + نصیحت‌کننده، پند دهنده + + + مجادله‌کننده، مباحثه‌کننده + + + داوری‌کننده با دیگری در حسب و نسب + + + افتخار‌کننده + + + رماننده، نافر + + + برانگیخته شده، مبعوث گشته + + + نصرت یابنده، غالب + + + آن که پای را به هنگام لغزش نگاه می‌دارد + + + آن که پس از افتادن برمی‌خیزد + + + به شده از بیماری، ناقه + + + برخیزنده + + + فرودآینده + + + آگاه سازنده، ترساننده + + + خواننده و آورندهٔ شعر از دیگری + + + راه نماینده + + + هجو‌کننده + + + فرو رونده (در آب) + + + هجرت‌کننده آن که از وطن خود هجرت کرده در جایی دیگر مسکن گیرد + + + وصیت‌کننده + + + پرهیزکار، پارسا + + + هزل‌گوینده + + + هلاک‌شونده، نیست‌شونده + + + یابنده، دارنده + + + گناهکار + + + نگاه‌دارنده، حافظ + + + حامی + + + پدر، اب + + + حاکم، فرمانروا + + + سست، بی اساس + + + در حق کسی، برای کسی + + + از جهت، از حیث + + + در برابر، در مقابل (برای مقایسه) + + + این + + + سفرکننده + + + رسول، سفیر + + + کاتب + + + زن گشاده‌روی + + + آنچه که پدید آید + + + آنچه که حق ایجاد کرده + + + بیرون‌رونده + + + آنچه که از جایی به جایی (داخل مملکت و مخصوصاً خارج آن) فرستاده شود + + + بلع‌کننده، بلعنده + + + گناهکار، مجرم + + + بی‌بیم، بی خوف، ایمن + + + نگهبان، مراقب، نگه‌داری‌کننده + + + آن که به کسی یا چیزی پناه برد، زینهاری، ملتجی، پناهنده اجتماعی کسی که به خاطر رواج تعصب دینی یا اجتماعی یا ناامنی و جنگ در میهنش به کشور دیگری پناه می‌برد، پناهنده سیاسی کسی که به خاطر مبارزهٔ سیاسی و مخالفت با حکومت کشورش به کشور دیگری پناه می‌برد + + + گرداننده، سازنده + + + جعل‌کننده + + + جنگنده، رزم‌کننده + + + مؤنث خاتم، پایان، انجام + + + پیونددهنده + + + واسطهٔ میان دو تن + + + رحم‌کننده، بخشاینده + + + زناکار + + + زوال‌یابنده + + + پیشی‌گیرنده + + + قبلی، گذشته + + + گرم، حار + + + سلب‌کننده + + + رباینده + + + برهنه‌کننده + + + غافل + + + فراموشکار + + + سؤال‌کننده + + + گدا + + + شفا دهنده + + + راست، درست + + + راغب، مشتاق + + + شکارکننده، شکاری + + + زرگر + + + ریخته‌گر + + + پرواز کننده، پرنده + + + مرغ + + + بوی خوش دهنده + + + دوست‌دارندهٔ عطر، عطردوست + + + همه، همگان + + + عموم مردم + + + انباشته، پُر + + + گروه بسیاری از مردم که یک جا گِرد هم آیند + + + یورش‌برنده، به ناگاه گیرنده + + + نازنده، فخرکننده + + + جداکنندهٔ دو چیز از هم + + + آفریننده، خالق + + + روزه گشاینده، افطار کننده + + + رهایی‌یابنده، رستگارشونده + + + درهم و برهم، هرج و مرج + + + کوتاهی‌کننده + + + مطیع، فرمانبردار + + + اندوهگین، متألم + + + درنگ‌کننده + + + پیشی‌گیرنده، چیزی که ناگهان به خاطر آید + + + پاک، منزه (خاص خدا) + + + فرا خواننده + + + آن که با دیگری دعوی و مرافعه دارد + + + معنی ای که معنی دیگر را به خاطر آورد + + + بردبار، شکیبا + + + بردارندهٔ بار + + + موافقت‌کننده + + + چیزی که مانند و موافق چیزی دیگر باشد + + + از یک جنس، مشابه + + + امیدوار، چشم به راه + + + آگاه به امور شرعی، معتقد به امور شرعی + + + آن که خود را معالجه کند + + + به هم خورنده با چیزی، با هم زننده، با هم کوبنده + + + پیشرفته، رشد کرده + + + تتبع‌کننده + + + در پی رونده، پیرو + + + زره پوششنده، زره پوش + + + زن‌کننده، ازدواج‌کننده + + + سرگشته، حیران، حیرت‌زده + + + سلاح پوشنده + + + شی ای که اجزای آن به هم متصل نباشد + + + کسی که از کاری روی برتابد و خود را به کار دیگر مشغول سازد + + + کسی که خود را به نادانی می‌زند + + + آن که به عمق چیزی رسیده، ژرف‌اندیش + + + دارای ثروت یا مقام اجتماعی برجسته + + + ظاهر، آشکار + + + محقق، ثابت + + + خورنده + + + تفاوت دارنده، از هم جدا + + + با هم یکی شده، یک دل و یک جهت، متحد شده + + + مصمم، قصد‌کننده، متفق القول، هم‌صدا، هم‌کلام، متفق‌الرأی، همدستان، هم‌رأی + + + قانع + + + بازنشسته + + + آمادهٔ پذیرش + + + کامل شده، به کمال رسیده + + + گدا + + + شکسته‌شونده + + + به هم چسبنده، متصل + + + طولانی، دائمی + + + رونده + + + توجه‌کننده، روی‌کننده + + + با حواس متمرکز + + + به ورطه افتنده، فرو رونده + + + به کار دشوار افتاده + + + امیدوار، چشم دارنده + + + دور‌شونده، دوری گزیننده + + + در هندسه خط مستقیمی را مجانب یک منحنی می‌گویند که چون نقطه ای در روی منحنی حرکت کند و به سمت بی‌نهایت رود، فواصل این نقطه از این خط مرتب کم شود و میل به صفر کند + + + کوشش‌کننده، کوشا + + + اجازه دهنده، رخصت دهنده + + + ولی و مصلح امر یتیم + + + بندهٔ مأذون در تجارت + + + به شهر آینده + + + حاضر‌شونده + + + کسی که کالاها را در انبار نگه می‌دارد تا پس از گران شدن بفروشد + + + دستخوش احتلام، دستخوش انزال در خواب + + + تعیین‌کنندهٔ حد و کرانهٔ چیزی + + + تیز‌کننده (کارد و جز آن) + + + نویسنده، نگارنده + + + آزادکننده + + + آشکار، ظاهر + + + ناچیز، کوچک + + + سرخ‌کننده + + + دوایی که به قوت گرمی و جذب خود عضو را گرم گرداند + + + خبررسان، خبردهنده + + + پنهان شده، پنهان‌شونده + + + رابطه دارنده + + + مواظب و ملازم سرحد + + + مروج ایمان + + + تشویق‌کننده، برانگیزاننده + + + ازدحام‌کننده، انبوهی‌کننده + + + پاک‌کننده، پاکیزه‌کننده + + + معرف، شناساننده + + + آنکه شاهدان عادل را تزکیه و آنها را به پاکی و پارسایی توصیف کند + + + شریک، سهیم + + + دلیل جوینده، طلب برهان‌کننده + + + سست و نرم‌شونده + + + طرف مشورت، رایزن + + + متخصصی که از کشورهای خارج برای اصلاح وزارتخانه یا اداره ای استخدام کنند، مستشار سفارت رای زن سفارت + + + مسلط، مرتفع و بلند + + + درخشان + + + منتشر + + + شتابنده، شتاب‌کننده + + + آن که طلب کفایت کند، کفایت خواه + + + یاری خواهنده، استمداد‌کننده + + + خواهندهٔ روشنایی + + + مستی آور + + + فریبنده و اغواکننده + + + مثل و مانند، دارای شباهت + + + آرزومند، خواهان + + + صدادار، دارای صدای بلند + + + حرف صدادار + + + آوازخوان، نوازنده + + + رقاص + + + کسی که در کار طرب باشد + + + بسیار تاریک و ظلمانی + + + کسی که تعبیر خواب می‌کند + + + گرونده، باوردار، عقیده دار + + + اعتناکننده، اهتمام‌کننده + + + راست و درست شده + + + میانگین چیزی، معدل نمرات حاصلِ قسمت مجموع نمره‌های دروس هر شاگرد + + + تسلیت دهنده، تعزیت گوینده + + + آن که کاری را تکرار کند + + + معملی که درسی را برای شاگردانش اعادهکند، مقرر، دانشیار + + + با کینه و غرض + + + افزون‌کننده + + + نیکویی‌کننده، بخشش‌کننده + + + پیروی‌کننده + + + کسی که پشت سر امام جماعت نماز خواند + + + قوت دهنده، نیرودهنده + + + کافی و کفایت دهنده + + + کامل‌کننده + + + چسبیده به هم، متصل + + + متلاطم، مواج، خروشان (موج، دریا) + + + لجام‌کننده + + + آمیزنده، مخلوط‌کننده + + + یاری دهنده + + + شورکننده، نمک ریزنده + + + دورو، ریاکار + + + پهن و گسترده شده + + + گشاده‌رو، خندان + + + دستخوش انبساط + + + آگاه سازنده، بیدارکننده + + + جابه‌جاشونده + + + پیروزمند، کامیاب، کامروا + + + کج شده، به راه کج رونده + + + پریشان، ناراحت، بی آرام + + + حیوان تند و آسان رونده + + + یکی از بحرهای عروضی + + + مجرد، تنها + + + اثر پذیرفته + + + خجل، شرمسار + + + شکست خورده، مغلوب شده + + + خبردهنده، آگاه‌کننده + + + یکتاپرست + + + توزیع‌کننده، پخش‌کننده + + + خوارکننده، ضعیف‌کننده + + + پشیمان + + + نداکننده + + + عاملی که معمول خود را نصب دهد + + + برپا‌کننده، نصیب‌کننده + + + دشمن دارنده + + + آن که علی بن ابی طالب و خاندان او را دشمن دارد + + + یاری گر، یاری‌کننده + + + تر و تازه‌کننده + + + بسیار سبز + + + نظرکننده، بیننده + + + کسی که بر کاری نظارت و رسیدگی می‌کند + + + مباشر، کارگزار + + + آن که می‌دمد، کسی که پف می‌کند، دمنده (در آتش و خیک) + + + غذایی که نفخ آورد، باددار + + + نقدکننده، جداکنندهٔ خوب از بد + + + بازدارنده، نهی‌کننده + + + آواز دهنده، آوازکننده + + + گریزنده، فرارکننده + + + نگاه‌دارنده، حافظ + + + شنونده، گوش دهنده + + + دورشونده + + + اندرون + + + پرده + + + رشته + + + رهاکننده، ترک‌کننده + + + قاطع، کسی که در قصد خود تردید نکند + + + قطع‌کننده، برنده + + + ماهر، استاد + + + دانا + + + پاسدار، پاسبان + + + پابرهنه + + + آن که وی را بول به شتاب گرفته باشد، حبس‌کنندهٔ ادرار + + + ماده و دوایی که زایل‌کننده و سترندهٔ موی باشد مانند زرنیخ و نوره و سفید آب و خاکستر و غیره، حلاق + + + آفریننده، خلق‌کننده + + + دفع کننده، دورکننده + + + حامی + + + روزی‌دهنده، روزی + + + رسان + + + به راه راست رونده + + + راه راست یافته + + + نویسنده، محرر + + + سوار، سواره + + + واسطهٔ میان رشوه‌گیرنده و رشوه‌دهنده + + + کسی که آب یا شراب به دیگران دهد + + + ریزان، فروریزنده + + + فراگیرنده + + + حاوی، در بردارنده + + + باریک‌اندام + + + دقیق، لطیف + + + زیان‌رساننده، ضرر رساننده + + + عیادت‌کننده + + + بازگردانده، آنچه که به کسی بازگردد از پول یا چیز دیگر + + + پناه آورنده + + + غلوکننده + + + گران‌بها + + + بایر، خراب + + + گمراه + + + نابودشونده، نیست‌شونده + + + ناپایدار، بی‌ثبات + + + کُشنده + + + ظالم، ستمکار + + + بازگردنده از حق + + + ساکن، متوطن + + + دروغگو، ناراست + + + گزنده، نیش‌زننده + + + چسبنده، دوسنده + + + ادب‌آموخته + + + تأکید شده + + + استوار، محکم + + + تقسیم‌کننده به حصه‌ها + + + متفرق، پریشان + + + آشکارشونده، پیدا، هویدا + + + آشکارکننده + + + مرسوم، معمول، متداول + + + شناخته‌شده + + + خیال‌کننده + + + متکبر + + + آن که آشکارا فسق کند + + + آن که با دیگری عهد و پیمان بندد، هم عهد + + + آهسته و کم‌کم پیش رونده + + + برهم فرو ریزنده + + + بست‌نشین، اعتصاب‌کننده + + + پارسا، زاهد + + + پراکنده‌شونده + + + پرستش‌کننده، عابد + + + ترتیب داده شده، پدیدآمده + + + تسلی داده، دل نواخته شده + + + جای‌گزین + + + جستجوکننده، تلاش‌کننده + + + راه یابنده + + + زینت یافته، آراسته‌شونده + + + شکایت‌کننده، گله‌کننده + + + صاحب تشرف، بزرگ‌منش + + + غلبه‌کننده، مسلط + + + کسی که مطلبی را از زبانی به زبان دیگر ترجمه کند + + + عذرآورنده، بهانه آورنده + + + سخت، دشوار + + + کوشش‌کننده، ساعی + + + سختی کشیده + + + آن که به تکلف کاری انجام دهد + + + آزاررسان، آزاردهنده + + + کناره‌گیرنده + + + پراکنده، پریشان + + + قرعه زننده میان یکدیگر + + + نیزه زننده با هم + + + پراکنده‌شونده + + + گوناگون + + + کسی که پی درپی تغییر عقیده بدهد + + + رنگارنگ + + + تمنا‌کننده + + + خواهشمند، مستدعی + + + دارای تناسب و شباهت با یکدیگر + + + بیدار، آگاه، تنبیه شده + + + سنگین‌کننده، گران‌سنگ گرداننده + + + بسیار کوشنده + + + کسی که در فقه به درجهٔ اجتهاد رسیده باشد + + + پوست‌کننده + + + صحاف + + + بیماری که به حبس بول دچار شود + + + بیماری که برای بهبود از بند شدن بول حقنه گیرد + + + نسجی که در آن خون زیاد جمع شده باشد، نسجی که خون بیشتری در آن مانده باشد و در نتیجه دچار ازدیاد حجم شده باشد + + + جمع‌شونده، گرد آینده (شیر، خون) + + + نیکوکار + + + حاشیه نویسنده بر کتابی + + + تحقیق‌کننده، اهل تحقیق + + + دشمنی‌کننده، دشمن + + + سبک‌کننده + + + کاهنده + + + داخل‌کننده، درآورنده + + + گناهکار + + + سود گیرنده، ربح گیرنده + + + پرورش دهنده + + + لرزان، لرزنده، دارای ارتعاش + + + لغزش دهنده + + + زه زه گوینده، آفرین گوی + + + دورو، تزویرکننده + + + شب زنده دار، شب + + + نشین + + + افسانه گو، قصه سرا، + + + اجازه خواهنده + + + خبر خواهنده از کسی + + + شرق‌شناس کارشناس + + + طلب‌کنندهٔ شاهد، جویندهٔ گواه + + + مشورت‌کننده، آن که با دیگری مشورت کند + + + بی‌نیاز + + + شنونده، مستمع آزاد کسی که + + + بدون آن که شاگرد رسمی باشد + + + در کلاس یا خطابه حاضر شود و به درس و نطق گوش دهد + + + به کرکس ماننده + + + ساکن + + + بدرقه‌کننده، + + + دارای کار و شغل + + + شکایت‌کننده، گله‌کننده + + + تشریح‌کننده، بیان‌کننده + + + کسی یا چیزی که از بلندی بر کسی یا چیزی دیگر مسلط باشد + + + ناظر، نگرنده + + + بیزار، رمیده + + + هم صحبت، هم‌نشین + + + تصحیح‌کننده، کسی که غلط‌های نوشته یا کتابی را تصحیح کند + + + نقاش، صورتگر + + + از حد درگذرنده، بیدادکننده + + + آماده‌کننده، مهیاکننده + + + اعدام‌کننده، نابود + + + سازنده + + + فقیر، تهیدست + + + درویش، تنگدست + + + عیالمند، عیال‌وار + + + چیزی که دارای مواد غذایی باشد + + + غذا دهنده + + + دارای ارزش غذایی + + + اندیشمند + + + فانی‌کننده، تباه سازنده، نابودکننده + + + مقاومت‌کننده، ایستادگی‌کننده + + + قادر، توانا + + + از پی کسی رونده، در پی در آینده، پیروی‌کننده + + + اقدام‌کننده + + + اکرام‌کننده، احترام‌کننده + + + احسان‌کننده + + + نسبت کفر + + + دهنده به کسی + + + کفاره دهنده + + + به زحمت و مشقت اندازنده + + + تعیین‌کنندهٔ تکلیف + + + همراه، نوکر + + + ثابت قدم + + + دیدارکننده، ملاقات‌کننده + + + التماس‌کننده، خواهش‌کننده + + + التیام یافته، به شده، بهبود یافته + + + به هم پیوسته + + + بیان‌کننده + + + خلاصه‌کننده + + + جدا‌کننده، تمیز دهنده + + + ارزیاب مالیات، تشخیص دهندهٔ مالیات + + + جار زننده، جارچی + + + طردکننده، نیست‌کننده + + + جداکنندهٔ درم خوب از بد + + + انتقاد‌کننده + + + کسی که خود را به کسی یا چیزی، نسبت کند + + + فرصت طلب، کسی که پی فرصت می‌گردد و آن را غنیمت می‌شمارد + + + به انتها رساننده، به پایان + + + فسرده، یخ بسته، یخ زده + + + پست شده، به نشیب افتاده + + + پاک‌کننده + + + پاک داننده + + + در تصوف: سالکی که ذات حق را به صفت تنزیه شناسد و از حیثیت ظهور در مناظر ندیده و ندانسته باشد + + + آنکه یا آنچه سبب فراموشی گردد + + + نویسنده، دبیر + + + جدا شده + + + غم خوار، اندوه مند + + + توجه‌کننده به کاری + + + خوار دارنده، اهانت‌کننده + + + رساننده، پیوند دهنده + + + غم‌انگیز، دردناک + + + به وهم افکننده، به شک اندازنده + + + نشأت گیرنده، پیداشونده + + + آن که خبر مرگ کسی را آورده، خبر مرگ دهنده + + + خبر بد دهنده + + + پرده درنده، پرده در + + + تمام، کامل + + + وفاکننده + + + باخبر، آگاه + + + حیران، سرگشته + + + شیفته، عاشق + + + کارکننده + + + مهارت‌کننده + + + کوشنده + + + زراعت‌کننده + + + خشک، سخت، رطب و یابس به هم بافتن کنایه از: سخنان در هم و برهم و بی‌معنی گفتن + + + من + + + مخفف انا الحق (من خدایم) + + + مؤنث آکل، خورنده + + + خوره، جذام + + + کنایه از زن زشت و بدترکیب + + + غرورآور، تکبرآور + + + میوه‌دار + + + آبستن، حامله + + + گریه کننده + + + بالارونده + + + آسانسور + + + جر دهنده، حرفی که مدخول خود را جر دهد مدخول را مجرور گویند و مجموع را جار و مجرور + + + جفاکار + + + ستمکار، ظالم + + + آن که از راه حق به راه باطل میل کند + + + دربردارنده، دارا + + + گردآورنده، جامع + + + اشک ریز، اشک + + + فشان، سرشک بار + + + خاک نمناک + + + مال‌اندوز، گنج‌نهنده + + + آنکه شعری از بحر رجز بخواند + + + کسی که رجز خواند، ارجوزه‌خوان + + + بازدارنده + + + نیزه‌زن + + + نیزه‌دار + + + پرتاب‌کننده + + + تیرانداز + + + بودهنده + + + بوکننده + + + صاف، صافی + + + خوش‌آیند + + + پاکیزه و نیکو + + + کسی که در رفاه و نعمت به سر برد + + + نمو کننده + + + رونده + + + نیست‌شونده + + + باطل، بیهوده + + + سخره‌کننده، مسخره‌کننده + + + سدکننده + + + استوار + + + راست‌گفتار + + + کوشا، سعی‌کننده + + + شتابنده + + + سخن‌چین + + + چشمهٔ روان + + + دشت خوفناک، دوزخ + + + شکایت‌کننده، گله‌کننده + + + مشهور، معروف + + + فاش، آشکار + + + پراکنده، رایج + + + روزه‌دار + + + نیزه‌زننده + + + طعنه + + + زننده، عیب‌جویی‌کننده + + + نافرمان، سرکش + + + ستمکار، ظالم + + + فرمانبردار، طبع، مطیع + + + خواهان، راغب + + + پیمان‌کننده + + + کسی که قرارداد می‌بندد + + + اجراکنندهٔ صیغهٔ عقد + + + غش‌کننده + + + کسی که مردم را بفریبد + + + دورکننده‌ٔ اندوه، گشایندهٔ غم + + + بالا رونده + + + میوه‌فروش + + + مرد خوش‌طبع + + + فریب‌دهنده + + + خراشنده و جدا کنندهٔ پوست + + + دارویی که بر اثر سوزاندن قسمت‌های سطحی جلد قسمتی از آن را از قسمت‌های عمقی جلد جدا کند از قبیل قسط و زرآوند + + + آن که از پس چیزی آید و بدو پیوندد، رسنده، واصل + + + پیوند شونده، متصل، آینده، بعدی + + + چسبنده + + + لمس‌کننده + + + ملامت‌کننده، نکوهنده + + + آمیزنده، مخلوط‌کننده + + + متمایز، جدا از یکدیگر + + + بدل گیرنده چیزی را + + + تبدیل‌شونده + + + شکننده + + + هلاک‌کننده + + + خندان، خنده‌رو + + + خویشتن آراینده + + + به تکلف نیکو سیرتی نماینده + + + آن که صنعتی یا هنری را به خود ببندد + + + در پناه‌شونده + + + خویشتن‌دار + + + جوینده + + + قصدکننده + + + برهنه‌گردنده + + + مجردشونده + + + درهم آمیخته، مختلط + + + مشتبه + + + انبوه شده، روی هم جمع‌شده + + + آنچه معمول و مرسوم باشد + + + برخلاف یکدیگر + + + جداشونده + + + راست و درست‌شونده + + + زینت‌یابنده، آراسته + + + سرکش، دلیر + + + کسی است که همیشه به خدمت بندگان خدا قیام کند و خدمت او خالی از هواها و شوایب نفسانی باشد ولیکن هنوز به حقیقت زهد نرسیده باشد گاه به سبب غلبهٔ ایمان بعضی از خدمات او در محل قبول افتد و گاه به واسطهٔ غلبهٔ هوا خدمت او قبول نشود + + + کسی که اظهار تصوف و درویشی کند + + + معامله‌کننده، داد و ستدکننده + + + یکدیگر را دوست گیرنده، دوست + + + بسیار، بی شمار + + + سخت، دشوار + + + جستجوکننده، کاوش‌کننده + + + کسی که امور را به زیرکی و هوش دریابد، زیرک و باهوش + + + اندیشمند + + + کسی که حرفه‌های گوناگون بلد باشد + + + کسی که به کاری یا هنری از روی تفنن بپردازد + + + دگرگون‌کنندهٔ هرچیزی + + + مردم نادرست و دغل + + + محکم‌کننده، استوارکننده + + + کسی که بر دیگری در بسیاری مال غلبه کند و ببالد + + + دوبار کرده یا گفته شده + + + دو دله‌شونده، مردد، + + + اندوهگین، کسی که دریغ و افسوس می‌خورد + + + مانند هم، شبیه یکدیگر + + + کسی که خود را به مریضی می‌زند + + + تمام‌کنندهٔ چیزی، کامل‌کننده + + + در دستور زبان کلمه ای که همراه حرف اضافه می‌آید و به فعل یا به صفت نسبت داده می‌شود + + + در ریاضی به هر یک از دو زاویه ای که مجموع اندازه‌های آن ۹۰ درجه باشد + + + دنباله، بقیه + + + جداشونده + + + به هم رسنده + + + پیوسته، متوالی + + + تکیه‌کننده + + + کسی که دست به دامان دیگری بزند، توسل‌جوینده + + + پوشندهٔ جامه + + + آن که شمشیر به پهلو آویزد + + + میوه دار، باردار، مفید + + + ثناگوی، ستایشگر + + + مؤنث مجری، قوهٔ مجریه یکی از قوای سه گانهٔ مملکت که موظف به اجرای قوانین و مقررات است و آن شامل رئیس مملکت و هیئت وزیران است + + + گچ کار + + + پناه دهنده، فریادرس + + + گردآورنده و بیان‌کنندهٔ احادیث + + + حق دارنده، دارای حق + + + خارش آورنده، دوایی که در تماس با پوست بدن تولید خارش کند مانند کبیکج و گزنه + + + سپرنده، تحویل دهنده + + + گرداننده، تغییر دهنده + + + حواله‌کننده + + + ناقه‌ای که آبستن شود بعد از گشن یافتن + + + حیران‌کننده + + + به هم آمیخته، درهم ریخته، مخلوط شده + + + خراج دهنده، اداکنندهٔ باج + + + آن که کسی را جانشین خود کند، جانشین‌کننده + + + آن که وعدهٔ خلاف کند + + + کبوتر بچه ای که پر بر پایش رسته باشد + + + پسر خوش شکل + + + تخمیرکننده + + + تدبیرکننده، صاحب تدبیر + + + هلاک‌کننده، دمار برآورنده + + + به یاد آورنده + + + وعظ‌کننده، واعظ + + + ریاضت کش، ریاضت کشیده + + + کوچ‌کننده، راهی‌شونده + + + باز ایستنده از کاری + + + ترغیب‌کننده، مشوق ، + + + رواج دهنده، ترویج‌کننده + + + ریاکننده + + + شب زنده دار + + + طلب تمام‌کننده + + + برانگیزاننده، مشوق + + + سخن محال، امری که محال و غیرممکن باشد، از حالی به حالی درآینده + + + کسی که به زبان‌ها و آداب و عادات غریبان (اروپاییان و آمریکاییان) آگاه است + + + جویندهٔ خبر، طالب آگاهی + + + بیدار، هوشیار + + + حساب دار، دفتردار خزانه + + + تمام فراگیرنده + + + اسراف‌کننده، ولخرج + + + سرایت‌کننده + + + خاموش، ساکت + + + آن که تصمیم به کاری گرفته + + + حمایت‌کننده، پشتیبان + + + گشاینده، بازکننده + + + نیاز دارنده + + + سودمند، با فایده + + + رفیق و قرین‌شونده + + + پیوسته، متصل + + + قمارکننده، قمارباز + + + روشنایی گیرنده + + + اقتباس‌کننده + + + نزدیک‌شونده + + + آن که کجی چیزی را راست کند + + + ارزیاب، قیمت‌کننده + + + مکافات‌کننده، پاداش دهنده + + + مساوی، برابر + + + کشف‌کننده + + + احاطه‌کننده، فراگیرنده + + + پناه جوینده + + + خلط‌کننده، مشتبه سازنده + + + پناه جوینده، پناه برنده + + + به خود پیچیده، پیچ در پیچ‌شونده + + + نوعی از حرکت نبض که مانند ریسمان پیچیده محسوس شود + + + داخل‌شونده + + + کسی که در راه خدا چیزی دهد، نفقه دهنده + + + شکسته + + + آفتاب یا ماه یا سیاره ای که تمام یا بخشی از آن گرفته شده باشد + + + راه راست یافته + + + ایمن‌کننده، نگهبان + + + از نام‌های خداوند + + + دوست دارنده + + + به دردآورنده، دردناک + + + بی‌مانند، بی‌نظیر + + + کسی که از روی کتاب یا نوشته‌ای نسخه برداری می‌کند + + + باطل‌کننده، نسخ‌کننده + + + دورکننده، ردکننده + + + رشدکننده، نموکننده + + + فرود آینده، نازل + + + ستارهٔ هبوط‌کننده + + + آنچه در دل گذرد + + + تابناک، مشتمل + + + فرود آینده، رخ دهنده + + + حاصل + + + راست، درست + + + وضع یا کیفیت قرار گرفتن + + + بخشنده، عطاکننده + + + سخنی که در آن کنایه و منظوری غیر از ظاهر سخن، نهفته باشد + + + بازرگان سوداگر + + + فرودآینده + + + اقامت‌کننده، مقیم + + + انکار کنندهٔ حق کسی با وجود دانستن آن + + + روا + + + مباح + + + نافذ + + + آن که می‌جنگد، رزم‌کننده + + + حساب‌کننده، شمارگر + + + سرگشته، سرگردان + + + چراکننده، چرنده + + + کسی که در نعمت و آسایش باشد + + + کسی که پارگی را درست کند + + + عالِم به انجام کار + + + برگشت‌کننده، بازگردنده + + + مراقب، چشم‌دارنده + + + چشم به راه + + + منجم، اخترشمار + + + مایل، خواهان + + + رساننده، بالنده + + + زیبا + + + منع‌کننده، بازدارنده + + + بانگ‌زننده + + + فرشتگانی که میان زمین و آسمان تسبیح کنند + + + سجده‌کننده + + + خشمگین + + + حاجب، دربان + + + خادم معبد + + + سیاحت‌کننده، جهانگرد + + + بالارونده، صعودکننده + + + آزمند، حریص + + + امیدوار + + + فشار دهنده، فشارنده + + + نگاه‌دارنده، حفظ‌کننده + + + بازدارنده، بازدارنده از لغزش و خطا + + + سرکش، نافرمان + + + گناهکار + + + گناهکار، بدکار + + + مردی که با زن شوهردار رابطهٔ نامشروع دارد + + + گیرنده، در مشت گیرنده + + + مانع + + + به زور بر کاری وادارنده + + + قیافه‌شناس + + + پی‌شناس، پی بر + + + ایستاده، برپا + + + پایدار، استوار + + + پوشنده (جامه)، جامه پوشیده + + + چسبنده + + + بازی‌کننده، بازیگر + + + به شمشیر زننده + + + سوزنده + + + عالم غیب، عالم الهی، جهان مینوی + + + مزاح‌کننده، بذله‌گو + + + رونده + + + سخن چین + + + موج‌زننده + + + تبسم‌کننده + + + سردکننده، خنک‌کننده + + + پایین آورندهٔ درجهٔ حرارت بدن + + + کاهندهٔ تمایلات جنسی + + + پیروی‌کننده + + + رسنده، واصل + + + رساننده + + + محزون، مغموم + + + برنده و منقطع از ماسوای خدا + + + ماهر + + + متغیر + + + ترش‌رو + + + آسمان ابر دار + + + بیمارشونده + + + استثناکننده در سوگند + + + بیرون آینده از قسم به کفاره + + + در فارسی تحلیل‌شونده + + + از پی هم آینده + + + از حد گذرنده، تجاوزگر + + + اندیشه‌کننده + + + برابرشونده با هم + + + بلور شده، چیزی که شبیه بلور شده باشد + + + جفت پذیرنده + + + خلاف‌کننده + + + دفع‌کنندهٔ یکدیگر در کارزار، + + + رمنده + + + سخت حریص + + + کسی که اسم یا لقبی در شاعری برای خود انتخاب کرده باشد، دارای تخلص + + + واجب‌کننده، لازم‌کننده + + + متدین، دیندار + + + ضدهم، ناجور + + + منشعب‌شده، شاخه‌شاخه شده + + + گذشته، پیشین + + + درخواست‌کننده + + + پیشی گیرنده + + + دارای تقدم + + + زمان پیشین + + + راست‌شونده، قوام گیرنده + + + در فارسی قیمتی، گران بها + + + برابر، همسان + + + همراه باشنده + + + وابسته + + + کشیده‌شونده + + + قابل ارتجاع + + + مالک‌شونده، متصرف + + + پارسا، پرهیزگار + + + حرمت نگاه دارنده + + + افروزنده، فروزان، نورانی + + + درنگ‌کننده، در یک جا ایستاده + + + آن که به خدا توکل کند + + + جلب‌کننده، کشنده + + + نوکننده، تازه‌کننده + + + در هر قرن (صد سال) فردی ظهور نماید و آیین اسلام را تازه کند که او را مجد نامند + + + تحسین‌کننده، ستاینده + + + حاوی، شامل + + + احراز‌کننده، گرد آورنده + + + پناهگاه دهنده، در حرز‌کننده + + + استوار‌کننده + + + تحریک‌کننده، ورغلاننده، مشوق + + + استوار گرداننده + + + در حصن‌کننده + + + گرداگرد شهر را برآورنده + + + از حرم بیرون آینده + + + مرد شکنندهٔ حرمت حرام + + + مردی که هیچ بر عهدهٔ خود ندارد + + + مردی که ماه حرام یا امر حرام را حرمت ننهد + + + آن که متعه دهد زن مطلقه را + + + کسی که روی را با زغال سیاه کند + + + سری که پس از ستردن بر آن موی برآید + + + جوجه ای که پر برآورد + + + خلاف‌کننده، ناموافق، ضد + + + برعکس، واژگون + + + دزدی‌کننده، کسی که اختلاس می‌کند + + + مراعات‌کننده + + + برگشته از دین + + + باعث، علت، سبب‌شونده + + + تسبیح‌کننده + + + انس گیرنده + + + پناه دهنده، دادخواه + + + درخواست‌کننده + + + زیاده طلب + + + رنجیده خاطر، گله مند + + + پاکیزه‌شونده، پاک گردنده + + + توانگر، کسی که استطاعت و توانایی دارد + + + فرو رونده، غوطه ور شده، غرقه + + + کسی که طلب فیض کند + + + پیوسته، همیشه، ادامه‌دار + + + استنادکننده + + + سر باز زننده و خودداری‌کننده از انجام کاری + + + کسی که از رؤیت احضاریه یا حکم قرار دادگاه خودداری کند + + + گرم‌کننده، حرارت دهنده + + + تسکین دهنده، آرام‌کننده + + + مشورت‌کننده، طرف شور + + + سازش‌کننده + + + دردسر دهنده، آنچه که باعث زحمت شود، مصدع اوقات شدن باعث دردسر شدن + + + تصنیف‌کننده، نویسنده + + + گمراه‌کننده + + + تاریک و تیره‌شونده + + + پی یکدیگر‌شونده + + + راست روان + + + کسی که به کاری یا چیزی عادت کرده باشد + + + گوشه‌گیر، عزلت گزین + + + عزت دهنده + + + رشک برنده، غبطه خورنده + + + آن که می‌شوید + + + آن که خوشبوی به می‌مالد + + + آنکه یا آنچه که اندوه را از دل دور کند + + + شادی آور، فرح بخش + + + شاعری که سخن شگفت و عجیب آورد + + + تولید جراحت‌کننده + + + قراردهنده، تعیین‌کننده + + + تقریرکننده، بیان‌کننده + + + کسی که درس استاد را برای دانشجویان تقریر و شرح کند، دانشیار + + + کسی که قدم کوتاه بردارد + + + آنکه مقرمط نویسد + + + دادگر، عادل + + + چاه کن + + + تکبیرگوینده در نماز جماعت + + + پنهان دارنده + + + سرمه به چشم کشیده + + + کسی که در سختی افتاده باشد + + + بسیارآورنده + + + آن که بسیار نویسد + + + توانگر، مال دار + + + کافر، بی‌دین + + + لازم گرداننده + + + اندازنده (بر زمین و جز آن) + + + املاء‌کننده + + + روشن، آشکار + + + کسی که جلای وطن کرده و از میهن خود بیرون رفته + + + کج، خمیده، خط منحنی خطی است که نه راست باشد نه شکسته + + + منقطع، بریده + + + باتبختر رونده + + + درج شده، گنجیده + + + شده + + + دفع‌شونده، بیرون ریزنده، دورشونده + + + گوشه نشین، گوشه + + + گیر + + + برکنده، از بن کنده + + + انکارکننده، ردکننده + + + میزبان + + + خدمهٔ هواپیما + + + اذیت‌کننده، آزار رساننده + + + در فارسی، بداندیش، حیله‌گر + + + یقین دارنده، یقین‌کننده + + + بزرگ، بزرگوار + + + کسی که دارای هوش و استعداد فوق‌العاده باشد + + + پنددهنده، نصیحت‌کننده + + + آن که به جادویی ورد می‌خواند و می‌دمد، ساحر، جادوگر + + + شعبده باز + + + ناتمام، نارسا، ناقص العقل کم خرد، احمق، ناقص الاعضاء آن که در اعضای بدنش نقصی باشد، ناقص الخلقه آن که دارای نقص مادرزادی باشد، ناقص العضو آن که عضوی از اعضای بدنش ناقص باشد + + + مرد زن دار + + + زن شوهردار + + + غارت‌کننده، غنیمت گیرنده + + + جانشین، نایب الزیاره کسی که از طرف دیگری بقعهٔ متبرکی را زیارت کند، نایب الحکومه الف + + + کسی که به نیابت از طرف حاکم شهری را اداره کند ب + + + بخشدار (فره)، نایب التولیه کسی که از طرف متولی امور بقعه یا موقوفه ای را اداره کند + + + توبه‌کننده + + + بر سویی آینده، آینده + + + نزد کسی رونده - - ضمیر مشترک که در میان متکلم، مخاطب و غایب مشترک است و همیشه مفرد آید + + دریابنده، درک‌کننده - - شخص، ذات، وجود + + پیدا‌کننده diff --git a/extensions/wikidata-lexemes/output/ff.xml b/extensions/wikidata-lexemes/output/ff.xml index 039a2a2..a0be947 100644 --- a/extensions/wikidata-lexemes/output/ff.xml +++ b/extensions/wikidata-lexemes/output/ff.xml @@ -55,6 +55,7 @@ + second @@ -175,6 +176,7 @@ + emph.of thinness of liquids @@ -265,6 +267,7 @@ + Highway robberies @@ -451,6 +454,7 @@ + ditche @@ -508,6 +512,7 @@ + Large mosques @@ -581,12 +586,6 @@ Conqueror places (towns) - - - - Large mosques - - @@ -646,16 +645,11 @@ + Fever - - - - Red pepper - - @@ -817,6 +811,7 @@ + news @@ -883,6 +878,7 @@ + poligamia @@ -1058,12 +1054,6 @@ Felt affection for - - - - Used in the phase - - @@ -1072,18 +1062,21 @@ + grains + hyaena which can become a human + pulse @@ -1093,6 +1086,7 @@ + divisions @@ -1139,24 +1133,12 @@ A kind of gown with short sleeves see jaba2 - - - - Conquerors - - Occasions of helping - - - - Alfromosia SP.a tree pale leave and flat pods - - @@ -1183,6 +1165,7 @@ + I do not see see what I am to get @@ -1264,6 +1247,7 @@ + doctor @@ -1366,6 +1350,7 @@ + friend @@ -1568,12 +1553,6 @@ Large hoes - - - - Towns,urban, municipalities - - @@ -1652,18 +1631,6 @@ Camels - - - - Webs - - - - - - Udders - - @@ -1697,24 +1664,6 @@ Unit - - - - The calves of the legs - - - Fleshy hind parts of the human legs below the knees - - - - - - Homelands - - - Towns - - @@ -1750,6 +1699,7 @@ + Handmaids @@ -1757,15 +1707,6 @@ Female servants - - - - Trees - - - Chevalieri - - @@ -1774,6 +1715,7 @@ + Germans @@ -1829,12 +1771,6 @@ Fruit - - - - False baobab - - @@ -1883,12 +1819,6 @@ healthy - - - - hold in contempt - - @@ -1907,18 +1837,6 @@ To bray - - - - Have you had dinner - - - - - - On top - - @@ -1948,6 +1866,7 @@ + thousand @@ -2096,12 +2015,6 @@ men of measured gait - - - - Stores - - @@ -2150,12 +2063,6 @@ Straw mats - - - - Synodont catfish - - @@ -2291,18 +2198,6 @@ Waves - - - - Faces - - - Countenances - - - The fronts - - @@ -2315,12 +2210,6 @@ A copy - - - - Camels - - @@ -2366,14 +2255,9 @@ Destitute ones - - - - Red cow, see - - + Give victory over @@ -2426,12 +2310,6 @@ Files - - - - The prophet (SAWS) - - @@ -2483,12 +2361,6 @@ Ashamed - - - - for - - @@ -2519,12 +2391,6 @@ in - - - - inside - - @@ -2533,18 +2399,21 @@ + fulani person + hundred + fulani man @@ -2557,6 +2426,7 @@ + wooden trough @@ -2590,12 +2460,14 @@ + student + fulani, pullo @@ -2650,6 +2522,7 @@ + allas! @@ -2702,12 +2575,6 @@ Sweetmeat - - - - Ropes made from grass stings - - @@ -2888,29 +2755,9 @@ Returned pilgrims - - - - Shares - - - Portion - - - Lots - - - Fates - - - - - - Eggs - - + Occasions of shouting @@ -2927,18 +2774,6 @@ The green leaves of the tobacco plant - - - - Waves - - - - - - Married women without children - - @@ -2977,37 +2812,17 @@ + Skink_lizards - - - - Germans - - - - - - Half-brothers - - Rain - - - - Intermittent - - - Fever - - @@ -3050,12 +2865,6 @@ although - - - - behind - - @@ -3076,18 +2885,21 @@ + grand parents + dream + thousand @@ -3118,6 +2930,7 @@ + your @@ -3379,6 +3192,7 @@ + benefit @@ -3433,16 +3247,11 @@ + the bee-eaters - - - - Udders - - @@ -3460,27 +3269,14 @@ + The superior places (towns) - - - - Handmaids - - - Female servants - - - - - - Red cow - - + Abbizzia chevalieri @@ -3538,6 +3334,7 @@ + Parts @@ -3581,24 +3378,6 @@ Sift - - - - Share - - - - - - Seperate - - - - - - Divide - - @@ -3613,6 +3392,7 @@ + and @@ -3631,6 +3411,7 @@ + glowing embers @@ -3673,12 +3454,14 @@ + index + bracelet @@ -3722,15 +3505,6 @@ all, both, also - - - - we - - - us - - @@ -3761,21 +3535,6 @@ Woman's fibre covers for a load - - - - And - - - Days - - - Including the nights - - - Stages on a journey - - @@ -3842,18 +3601,6 @@ Objections - - - - Balance - - - - - - Come over here - - @@ -3896,12 +3643,6 @@ hooks - - - - Induced hysteric - - @@ -3914,27 +3655,6 @@ Westerners - - - - Creases - - - Lines coursed by folding or crushing - - - - - - Eggs - - - - - - The green leaves of the tobacco plant - - @@ -3958,6 +3678,7 @@ + Fine sights @@ -3967,6 +3688,7 @@ + stories @@ -3976,6 +3698,7 @@ + Pits @@ -3983,18 +3706,6 @@ Holes - - - - Webs - - - - - - Webs - - @@ -4046,21 +3757,6 @@ Yellow-flowered shrubs use in fever - - - - The brown bus hornet; see njabattu. - - - - - - Capital - - - Accumulated wealth - - @@ -4091,12 +3787,6 @@ Blood - - - - Brave ones - - @@ -4157,14 +3847,9 @@ Large sores in cattle - - - - Lord;owrner; master - - + To be an idiot @@ -4198,16 +3883,11 @@ + Colour - - - - How have we spent the evening? - - @@ -4225,6 +3905,7 @@ + to accustomed @@ -4237,6 +3918,7 @@ + or @@ -4253,27 +3935,6 @@ have you arrived well? - - - - may Allah give you peace - - - - - - our - - - - - - you - - - yourself - - @@ -4319,18 +3980,6 @@ Persons who reached adulthood - - - - Weaver birds - - - - - - See fronds of the young doum palm - - @@ -4355,36 +4004,12 @@ handkerchiefs - - - - the four books; tawreeta, jabuura, linjiila, alkur'aana, the books given to the prophets; the pentatech, the psalms, the gospel, the koran - - places where things are kept - - - - In objections - - - - - - Seasons; chapter - - - - - - eloquent ones;orator, facile writer; stylist - - @@ -4499,51 +4124,6 @@ Pilgrims making the pilgrimage - - - - Shares - - - Portion - - - Lots - - - - - - Ant_eaters - - - aardvarks - - - - - - Cows with white body and black face - - - - - - Oversight - - - - - - Excuses - - - - - - Graves - - @@ -4555,6 +4135,7 @@ + the tropics @@ -4564,6 +4145,7 @@ + clever ones @@ -4573,6 +4155,7 @@ + Mines @@ -4616,78 +4199,25 @@ Wonderful things - - - - Hornet, black hornet see njabattu - - + Great grand sons - - - - Victories - - - - - - Cows similar in colour to - - Female slaves - - - - Anyone of two or more men married to sisters - - - - - - Great-grand-sons - - roaring; noise - - - - Lines - - - Column - - - Of men - - - - - - Oribi - - - Small African antelope - - - Red flanked duyker - - @@ -4700,18 +4230,6 @@ he accepted with the right hand - - - - Skink-lizards - - - - - - Germans - - @@ -4769,12 +4287,6 @@ Seeds - - - - Spring onion - - have you slept well @@ -5096,9 +4608,6 @@ Conqueror places (towns) - - Large mosques - Grey shrike @@ -5132,9 +4641,6 @@ Fever - - Red pepper - Hi @@ -5351,9 +4857,6 @@ Felt affection for - - Used in the phase - Webs @@ -5402,15 +4905,9 @@ A kind of gown with short sleeves see jaba2 - - Conquerors - Occasions of helping - - Alfromosia SP.a tree pale leave and flat pods - light, shininess @@ -5633,9 +5130,6 @@ Large hoes - - Towns,urban, municipalities - Intermediaries @@ -5681,12 +5175,6 @@ Camels - - Webs - - - Udders - Units @@ -5705,18 +5193,6 @@ Unit - - The calves of the legs - - - Fleshy hind parts of the human legs below the knees - - - Homelands - - - Towns - Ant_eaters @@ -5741,12 +5217,6 @@ Female servants - - Trees - - - Chevalieri - Lines i.e column @@ -5783,9 +5253,6 @@ Fruit - - False baobab - But @@ -5810,9 +5277,6 @@ healthy - - hold in contempt - one @@ -5822,12 +5286,6 @@ To bray - - Have you had dinner - - - On top - she/he @@ -5924,9 +5382,6 @@ men of measured gait - - Stores - same as diyeele @@ -5951,9 +5406,6 @@ Straw mats - - Synodont catfish - Full-grown @@ -6032,24 +5484,12 @@ Waves - - Faces - - - Countenances - - - The fronts - Oversight A copy - - Camels - Camels @@ -6080,9 +5520,6 @@ Destitute ones - - Red cow, see - Give victory over @@ -6113,9 +5550,6 @@ Files - - The prophet (SAWS) - grass-roofed huts through which entrances are made to a compound; @@ -6143,9 +5577,6 @@ Ashamed - - for - after @@ -6161,9 +5592,6 @@ in - - inside - when? @@ -6254,9 +5682,6 @@ Sweetmeat - - Ropes made from grass stings - Leave of a corn stalk @@ -6359,21 +5784,6 @@ Returned pilgrims - - Shares - - - Portion - - - Lots - - - Fates - - - Eggs - Occasions of shouting @@ -6383,12 +5793,6 @@ The green leaves of the tobacco plant - - Waves - - - Married women without children - Occasions of shouting @@ -6416,21 +5820,9 @@ Skink_lizards - - Germans - - - Half-brothers - Rain - - Intermittent - - - Fever - Fruit @@ -6452,9 +5844,6 @@ although - - behind - husband @@ -6668,9 +6057,6 @@ the bee-eaters - - Udders - The bee_eaters @@ -6683,15 +6069,6 @@ The superior places (towns) - - Handmaids - - - Female servants - - - Red cow - Abbizzia chevalieri @@ -6752,15 +6129,6 @@ Sift - - Share - - - Seperate - - - Divide - Slender @@ -6824,12 +6192,6 @@ all, both, also - - we - - - us - until @@ -6845,18 +6207,6 @@ Woman's fibre covers for a load - - And - - - Days - - - Including the nights - - - Stages on a journey - The long straight shoots of the combretum species shrub @@ -6890,12 +6240,6 @@ Objections - - Balance - - - Come over here - Cows with horns twisted back @@ -6920,27 +6264,12 @@ hooks - - Induced hysteric - The tawny, yellowish-brown eagle Westerners - - Creases - - - Lines coursed by folding or crushing - - - Eggs - - - The green leaves of the tobacco plant - Living together @@ -6971,12 +6300,6 @@ Holes - - Webs - - - Webs - Excuses @@ -7004,15 +6327,6 @@ Yellow-flowered shrubs use in fever - - The brown bus hornet; see njabattu. - - - Capital - - - Accumulated wealth - Brave ones @@ -7031,9 +6345,6 @@ Blood - - Brave ones - Rivers @@ -7067,9 +6378,6 @@ Large sores in cattle - - Lord;owrner; master - To be an idiot @@ -7091,9 +6399,6 @@ Colour - - How have we spent the evening? - we, us @@ -7118,18 +6423,6 @@ have you arrived well? - - may Allah give you peace - - - our - - - you - - - yourself - I am fine @@ -7154,12 +6447,6 @@ Persons who reached adulthood - - Weaver birds - - - See fronds of the young doum palm - Marshy land, Oasis, swamps @@ -7172,21 +6459,9 @@ handkerchiefs - - the four books; tawreeta, jabuura, linjiila, alkur'aana, the books given to the prophets; the pentatech, the psalms, the gospel, the koran - places where things are kept - - In objections - - - Seasons; chapter - - - eloquent ones;orator, facile writer; stylist - The holes in the game tile @@ -7250,33 +6525,6 @@ Pilgrims making the pilgrimage - - Shares - - - Portion - - - Lots - - - Ant_eaters - - - aardvarks - - - Cows with white body and black face - - - Oversight - - - Excuses - - - Graves - Helping of porridge @@ -7325,60 +6573,21 @@ Wonderful things - - Hornet, black hornet see njabattu - Great grand sons - - Victories - - - Cows similar in colour to - Female slaves - - Anyone of two or more men married to sisters - - - Great-grand-sons - roaring; noise - - Lines - - - Column - - - Of men - - - Oribi - - - Small African antelope - - - Red flanked duyker - names,nouns he accepted with the right hand - - Skink-lizards - - - Germans - Light saddled-cloth @@ -7409,8 +6618,5 @@ Seeds - - Spring onion - diff --git a/extensions/wikidata-lexemes/output/fi.xml b/extensions/wikidata-lexemes/output/fi.xml index 12d858f..b2100dd 100644 --- a/extensions/wikidata-lexemes/output/fi.xml +++ b/extensions/wikidata-lexemes/output/fi.xml @@ -76,6 +76,22 @@ + + + + + + + + + + + + + + + + monikon ensimmäisen persoonan pronomini @@ -119,6 +135,17 @@ + + + + + + + + + + + yksikön ensimmäisen persoonan pronomini @@ -126,6 +153,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + joku toinen henkilö tai jokin toinen asia, kuin mitä käsiteltiin aikaisemmin Ihmisiä juoksi pitkin saarta, ja karhut, pukit, hirvet, sudet, ketut ja kaikki muut eläimet niiden jäljestä. @@ -171,6 +230,17 @@ + + + + + + + + + + + what/which? @@ -183,6 +253,7 @@ + and @@ -195,6 +266,16 @@ + + + + + + + + + + osoittaessa tai viitattaessa johonkin aivan puhujan lähellä olevaan asiaan, esineeseen tai ihmiseen @@ -202,6 +283,12 @@ + + + + + + I (first-person singular pronoun) Parketti kutsuu mua ku en oo enää lukossa / Niinku cha cha cha mä oon tulossa @@ -234,6 +321,19 @@ + + + + + + + + + + + + + yksikön kolmannen persoonan pronomini @@ -264,6 +364,17 @@ + + + + + + + + + + + monikon 3. persoonan pronomini He puhelivat keskenään hiljaisella äänellä. @@ -284,6 +395,21 @@ + + + + + + + + + + + + + + + monikon toisen persoonan pronomini diff --git a/extensions/wikidata-lexemes/output/fo.xml b/extensions/wikidata-lexemes/output/fo.xml index 4e09609..bc8550e 100644 --- a/extensions/wikidata-lexemes/output/fo.xml +++ b/extensions/wikidata-lexemes/output/fo.xml @@ -41,6 +41,9 @@ + + + tallet tre diff --git a/extensions/wikidata-lexemes/output/fr.xml b/extensions/wikidata-lexemes/output/fr.xml index 19a4d68..28d2ab1 100644 --- a/extensions/wikidata-lexemes/output/fr.xml +++ b/extensions/wikidata-lexemes/output/fr.xml @@ -34,6 +34,7 @@ + adjectif possessif 3ème personne pluriel @@ -64,6 +65,7 @@ + hundred thousand @@ -142,6 +144,7 @@ + ordinal number for 2 @@ -307,6 +310,7 @@ + they (female) @@ -397,6 +401,7 @@ + ordinal number for 6 @@ -517,6 +522,7 @@ + pronom utilisé sans distinction de genre @@ -541,6 +547,7 @@ + parties comestibles des animaux de boucherie, autres que la viande musculaire – souvent les organes internes @@ -571,12 +578,16 @@ + + my + + use of pitch to differentiate words in a language @@ -619,12 +630,16 @@ + she + + + this @@ -769,6 +784,7 @@ + no, none, not any @@ -889,6 +905,7 @@ + muscles constituant les parois antérieures et latérales de l'abdomen @@ -916,12 +933,15 @@ + + a(n), indefinite article + nombre cardinal @@ -1123,6 +1143,8 @@ + + I @@ -1141,6 +1163,7 @@ + language @@ -1177,6 +1200,8 @@ + + déterminant possessif @@ -1357,6 +1382,7 @@ + salutation used at night @@ -1381,18 +1407,24 @@ + any person + + + you, second person singular pronoun + + he; third-person singular pronoun @@ -1405,6 +1437,9 @@ + + + nombre ordinal @@ -1600,6 +1635,10 @@ + + + + préposition pour marquer l'appartenance, la possession @@ -1645,6 +1684,7 @@ + nombre @@ -1657,6 +1697,9 @@ + + + someone @@ -1849,6 +1892,9 @@ + + + articile défini @@ -1879,6 +1925,7 @@ + musical interval unit @@ -1888,6 +1935,9 @@ + + + all @@ -2044,6 +2094,7 @@ + diacritic in Latin, Greek and Cyrillic scripts diff --git a/extensions/wikidata-lexemes/output/ga.xml b/extensions/wikidata-lexemes/output/ga.xml index c9922fd..0efa4ed 100644 --- a/extensions/wikidata-lexemes/output/ga.xml +++ b/extensions/wikidata-lexemes/output/ga.xml @@ -22,12 +22,20 @@ + + + + + + + our + I; first-person singular pronoun @@ -40,6 +48,7 @@ + the @@ -52,12 +61,21 @@ + + to the, from the + + + + + + + their @@ -70,6 +88,13 @@ + + + + + + + your (plural) @@ -88,6 +113,7 @@ + to, from diff --git a/extensions/wikidata-lexemes/output/gu.xml b/extensions/wikidata-lexemes/output/gu.xml index 76d885e..bff4be0 100644 --- a/extensions/wikidata-lexemes/output/gu.xml +++ b/extensions/wikidata-lexemes/output/gu.xml @@ -10,6 +10,8 @@ + + I, me diff --git a/extensions/wikidata-lexemes/output/ha.xml b/extensions/wikidata-lexemes/output/ha.xml index 9a00bcd..7737f03 100644 --- a/extensions/wikidata-lexemes/output/ha.xml +++ b/extensions/wikidata-lexemes/output/ha.xml @@ -10,12 +10,26 @@ + + + + + + + they + + + + + + + (second person, plural subject pronoun) @@ -40,6 +54,10 @@ + + + + she @@ -82,6 +100,8 @@ + + our @@ -94,12 +114,20 @@ + + + that which, the one who + + + + + I (first person singular subject) @@ -142,6 +170,13 @@ + + + + + + + we @@ -160,6 +195,8 @@ + + my @@ -172,12 +209,19 @@ + + + + (second-person singular masculine subject pronoun) + + + (links preceding attribute to following nominal) @@ -190,6 +234,7 @@ + having or being characterized by @@ -199,6 +244,9 @@ + + + some, someone @@ -260,12 +308,6 @@ Somewhere - - - - there is, there are - - @@ -274,6 +316,11 @@ + + + + + (impersonal subject pronoun) @@ -292,6 +339,7 @@ + this, this one, these @@ -304,12 +352,19 @@ + + + + he (third-person masculine singular subject pronoun) + + + he @@ -482,9 +537,6 @@ Somewhere - - there is, there are - just like, equivalent to diff --git a/extensions/wikidata-lexemes/output/he.xml b/extensions/wikidata-lexemes/output/he.xml index b80de16..a8fa9f7 100644 --- a/extensions/wikidata-lexemes/output/he.xml +++ b/extensions/wikidata-lexemes/output/he.xml @@ -31,6 +31,8 @@ + + ten @@ -76,12 +78,20 @@ + + + + + + + Nine + the number 1 @@ -164,6 +174,8 @@ + + with (comitative) @@ -215,12 +227,25 @@ + + + + + + + the number 4 + + + + + + the number 5 @@ -233,6 +258,13 @@ + + + + + + + the number 3 @@ -255,44 +287,63 @@ מחילה, חיפוי, רחמים - - - - מרידה, חשיבה או פעולה שמנוגדת לסמכות כלשהי, למשל דתית או מדעית - - - - - - סוג יישוב, בדרך־כלל קטן, בעל אופי חקלאי ולא עירוני - - + + + + האחד שדובר עליו לא מזמן, אבל רחוק יותר מ„הזה” + + + + + + + + + + about/with regard to/concerning + + + + + + the number 7 + + + + + + the number 8 + + + + + the number 2 @@ -304,12 +355,6 @@ - - - - הקיפול באמצע הרגל - - @@ -336,12 +381,15 @@ + + at/near (e.g. in someone's home/office) + the number 10 @@ -390,12 +438,24 @@ + + + + + + + + + + after + + כינוי רמז @@ -444,12 +504,34 @@ + + + + the number 6 + + + + + + + + + + + + + + + + + + כינויי הקניין הנצמדים לשם עצם @@ -601,12 +683,6 @@ מחילה, חיפוי, רחמים - - מרידה, חשיבה או פעולה שמנוגדת לסמכות כלשהי, למשל דתית או מדעית - - - סוג יישוב, בדרך־כלל קטן, בעל אופי חקלאי ולא עירוני - האחד שדובר עליו לא מזמן, אבל רחוק יותר מ„הזה” @@ -625,9 +701,6 @@ האם - - הקיפול באמצע הרגל - נעלם, נמצא במקום לא ידוע diff --git a/extensions/wikidata-lexemes/output/hr.xml b/extensions/wikidata-lexemes/output/hr.xml index 3581dc6..dc4bfee 100644 --- a/extensions/wikidata-lexemes/output/hr.xml +++ b/extensions/wikidata-lexemes/output/hr.xml @@ -30,6 +30,24 @@ + + + + + + + + + + + + + + + + + + koji pripada samom sebi; vlastiti @@ -42,6 +60,11 @@ + + + + + osobna zamjenica za prvo lice jednine @@ -72,18 +95,56 @@ + + + + + + + + + + + + + + + + + + + osobna zamjenica za trečo lice jednine + + + + + + + + + + + + + + + bez iznimke; cio; čitav; kao ukopnost; potpunost + + + + osobna zamjenica za drugo lice jednine @@ -138,6 +199,13 @@ + + + + + + + osobna zamjenica za trečo lice množine @@ -206,12 +274,31 @@ + + + + + + + + + + + + zamjenica + + + + + + + upitna riječ za neponzantih stvari ili pojmova @@ -246,6 +333,9 @@ + + + zamjenica za skupinu osoba kojoj pripada i osoba koja govori; zamjenica prvo lice množine @@ -296,6 +386,7 @@ + jedan od dva otprilike ista dijela; polovica; polovina @@ -308,6 +399,19 @@ + + + + + + + + + + + + + prema broju jedan; na početku nekog reda @@ -345,6 +449,7 @@ + priejdlog koji oznakuje da je nešto skupa, ili korišćeno, i drugo @@ -395,12 +500,24 @@ + + + + + + + + prirodan broj između jedan i tri; 2 + + + + povratna zamjenica @@ -453,6 +570,20 @@ + + + + + + + + + + + + + + pokazna zamjenica @@ -499,6 +630,19 @@ + + + + + + + + + + + + + prema broju dva; poslije prvog nekog reda @@ -550,6 +694,7 @@ + prijedlog označujući prima gori, ili blizinu, i slično @@ -562,6 +707,7 @@ + veznica koja izriče vrijeme, uzrok, uvjet diff --git a/extensions/wikidata-lexemes/output/id.xml b/extensions/wikidata-lexemes/output/id.xml index 9f1a57d..d59f553 100644 --- a/extensions/wikidata-lexemes/output/id.xml +++ b/extensions/wikidata-lexemes/output/id.xml @@ -32,6 +32,7 @@ + serta @@ -69,6 +70,9 @@ + + + sesuatu yang dapat dilihat Dua helikopter PBB tampak diparkir di landasan. @@ -84,6 +88,7 @@ + penggolongan untuk objek besar diberi rezeki buah-buahan dalam surga-surga itu. @@ -110,6 +115,10 @@ + + + + konfiks pembentuk verba @@ -128,6 +137,7 @@ + konfiks pembentuk verba Ter-i adalah sebuah konfiks pembentuk verba. Contohnya terkhianati. @@ -135,6 +145,7 @@ + konfiks pembentuk verba @@ -156,6 +167,7 @@ + penggolongan untuk benda-benda kecil, buah-buahan biji buah karet. @@ -163,6 +175,9 @@ + + + kata penggolong bagi benda yang panjang daon djeroek poeroet satoe lembar @@ -188,6 +203,7 @@ + penggolongan untuk hewan ber siap-siaplah Ganim bin Ayub dengan sebuah kafilah terdiri dari puluhan ekor unta untuk membawa barang dagangannya yang banyak itu. @@ -195,6 +211,7 @@ + kata penggolong untuk barang yang tipis atau halus bunga yang menakjubkan diikuti helai demi helai @@ -218,6 +235,10 @@ + + + + konfiks pembentuk verba @@ -251,6 +272,11 @@ + + + + + konfiks pembentuk nomina diff --git a/extensions/wikidata-lexemes/output/ig.xml b/extensions/wikidata-lexemes/output/ig.xml index 858f197..56dc883 100644 --- a/extensions/wikidata-lexemes/output/ig.xml +++ b/extensions/wikidata-lexemes/output/ig.xml @@ -19,6 +19,7 @@ + These @@ -49,12 +50,14 @@ + used in negative commands + With @@ -76,24 +79,33 @@ + in, on, during, without, etc. + + two + just as, like + + + + + proclaim upon something or someone; pray over something or someone @@ -136,6 +148,7 @@ + sit with legs folded in(humans); curl body together in a rest position(reptiles) @@ -178,6 +191,9 @@ + + + I @@ -196,6 +212,7 @@ + towards @@ -208,16 +225,11 @@ + Myself - - - - Fifteen games - - @@ -226,6 +238,7 @@ + used to identify a person or thing that is close at hand, indicated, or experienced; this @@ -247,6 +260,7 @@ + Iri isii na ise @@ -265,24 +279,34 @@ + the singular, subject, third-person pronoun of the Igbo language (heavy vowel harmonizer); he; she; it + we + + + you (singular) + + + + + denotes past with action verbs and present with non-alternating stative verbs @@ -301,6 +325,7 @@ + be empty-handed; be left with nothing @@ -337,28 +362,25 @@ + an expression of negative outcome, disagreement or refusal; no + Ninety four + Thank you - - - - Traditional marriage - - @@ -367,6 +389,7 @@ + I, me @@ -406,6 +429,7 @@ + fall upon befall @@ -418,6 +442,7 @@ + Resignation @@ -499,6 +524,7 @@ + Between @@ -515,12 +541,6 @@ second - - - - we; us; our - - @@ -529,6 +549,7 @@ + have nothing in one's hand, be empty-handed @@ -539,12 +560,6 @@ an expression positive, agreement to, or acceptance of what was said; yes - - - - Sixty-six - - @@ -565,6 +580,9 @@ + + + he or she @@ -607,18 +625,22 @@ + + before + my brother + Awaking @@ -631,6 +653,7 @@ + Rainy day @@ -712,6 +735,7 @@ + Holy @@ -763,6 +787,7 @@ + Sixty-four @@ -775,12 +800,16 @@ + + you (plural) + + They @@ -811,34 +840,19 @@ + + + completive or open vowel suffix, used with most verbs in the imperative, the subjunctive, and the sequential forms - - - - Domestic animal - - - dabbar gida - - About - - - - Those - - - wadanda - - @@ -853,6 +867,7 @@ + one (impersonal pronoun) @@ -865,6 +880,8 @@ + + instead of @@ -1022,9 +1039,6 @@ Myself - - Fifteen games - most; plenty; a large number @@ -1094,9 +1108,6 @@ Thank you - - Traditional marriage - Either/or @@ -1181,9 +1192,6 @@ second - - we; us; our - as; for instance; looks like @@ -1193,9 +1201,6 @@ an expression positive, agreement to, or acceptance of what was said; yes - - Sixty-six - One hundred and eight @@ -1343,21 +1348,9 @@ completive or open vowel suffix, used with most verbs in the imperative, the subjunctive, and the sequential forms - - Domestic animal - - - dabbar gida - About - - Those - - - wadanda - to call diff --git a/extensions/wikidata-lexemes/output/is.xml b/extensions/wikidata-lexemes/output/is.xml index 0524448..f71720c 100644 --- a/extensions/wikidata-lexemes/output/is.xml +++ b/extensions/wikidata-lexemes/output/is.xml @@ -16,6 +16,9 @@ + + + I; first-person singular pronoun diff --git a/extensions/wikidata-lexemes/output/it.xml b/extensions/wikidata-lexemes/output/it.xml index 5aa2f14..17b6e8f 100644 --- a/extensions/wikidata-lexemes/output/it.xml +++ b/extensions/wikidata-lexemes/output/it.xml @@ -17,6 +17,13 @@ + + + + + + + verso un posto @@ -29,6 +36,7 @@ + of Storia della letteratura italiana @@ -75,96 +83,115 @@ + 900 + 8000 + 27 + 28 + 35 + 45 + 47 + 58 + 70 + 98 + 210 + 330 + 100000 + esprime dolore fisico + + utilizzato per indicare genericamente una persona + + + molte persone o cose @@ -213,12 +240,16 @@ + + + che appartiene a te + pronome @@ -276,132 +307,159 @@ + 200 + 500 + 700 + 800 + + 4000 + eighteen + 30 + 32 + 37 + 38 + 54 + 56 + 66 + 81 + 84 + 86 + 150 + 160 + 300000 + + + indica qualità o quantità indeterminata + + + una diversa persona o cosa + per chiedere di identificare una o più persone @@ -428,6 +486,8 @@ + + prima persona singolare @@ -445,12 +505,26 @@ + + + + + + + + terza persona singolare femminile + + + + + + terza persona plurale femminile @@ -487,6 +561,7 @@ + 600 @@ -499,102 +574,119 @@ + sixteen + seventeen + 20 + 34 + 36 + 39 + 46 + 62 + 68 + 77 + 78 + 82 + 180 + 750 + 310 + 370 + 11000 @@ -607,6 +699,7 @@ + alla salute, alla tua @@ -625,6 +718,7 @@ + seven @@ -637,12 +731,16 @@ + + + articolo indeterminato che accompagna un elemento non meglio identificato + prima persona plurale @@ -661,6 +759,10 @@ + + + + to the @@ -670,6 +772,7 @@ + seconda persona plurale @@ -682,138 +785,161 @@ + 3000 + 22 + 26 + 31 + 50 + 51 + 52 + 53 + 63 + 64 + 67 + 74 + 79 + 90 + 92 + 99 + 290 + 260 + 390 + 360 + numero + adverbe interrogatif + congiunzione semplice, copulativa e positiva Erbaggi e legumi @@ -821,6 +947,7 @@ + or @@ -852,12 +979,17 @@ + + + numero ordinale preceduto dal primo e seguito dal terzo + + 500000 @@ -900,6 +1032,7 @@ + 2000 @@ -912,36 +1045,42 @@ + 23 + 24 + 29 + 44 + 61 + 69 @@ -951,96 +1090,113 @@ + 72 + 76 + 87 + 88 + 89 + 91 + 93 + 95 + 96 + 280 + 220 + 10000 + 12000 + 200000 + 400000 + + 15000 @@ -1065,18 +1221,37 @@ + + + che appartiene a me + + + che appartiene a noi + + + + + + + + + + + + + the (definite article) @@ -1110,12 +1285,15 @@ + + seconda persona singolare + 1000000 @@ -1140,24 +1318,29 @@ + 1000 + + 5000 + 6000 + 7000 @@ -1173,90 +1356,106 @@ + fourteen + 21 + 41 + 49 + 57 + 59 + 65 + 75 + 85 + 94 + 250 + 230 + 380 + 14000 + + 13000 @@ -1275,6 +1474,8 @@ + + questo individuo, questa persona @@ -1336,26 +1537,36 @@ sport a cui partecipano due squadre, composte da quattro fantini, che tentano di spedire nella porta avversa una palla dura di legno o di gomma dura battendola con una mazza - - - - maglia con colletto e bottoni - - + + + + + + + + terza persona singolare maschile + + + + + + terza persona plurale maschile + + parola ebraica @@ -1380,18 +1591,23 @@ + + + differente, diverso + 400 + fifteen @@ -1401,12 +1617,14 @@ + 19 + 33 @@ -1419,36 +1637,42 @@ + 42 + 43 + 55 + 73 + tutte le volte + esclamazione usata in ambito liturgico @@ -1467,6 +1691,9 @@ + + + adverbe interrogatif @@ -1479,12 +1706,16 @@ + + + che appartiene a lui/lei + of @@ -1503,6 +1734,7 @@ + 1000000000 @@ -1563,12 +1795,14 @@ + anche + 9000 @@ -1581,24 +1815,28 @@ + thirteen + 25 + 40 + 48 Sei per otto, quarantotto. @@ -1610,48 +1848,56 @@ + 71 + 80 + 83 + 97 + 720 + 800000 + 16000 + cifra antecedente ad uno @@ -2371,9 +2617,6 @@ sport a cui partecipano due squadre, composte da quattro fantini, che tentano di spedire nella porta avversa una palla dura di legno o di gomma dura battendola con una mazza - - maglia con colletto e bottoni - terza persona singolare maschile diff --git a/extensions/wikidata-lexemes/output/ja.xml b/extensions/wikidata-lexemes/output/ja.xml index 0e7198b..2043878 100644 --- a/extensions/wikidata-lexemes/output/ja.xml +++ b/extensions/wikidata-lexemes/output/ja.xml @@ -25,6 +25,7 @@ + 感動、詠嘆を表す やっと手紙が来たよ。 @@ -40,6 +41,8 @@ + + 逆接の確定条件を表す 頑張ったけれども、不合格だった @@ -79,12 +82,19 @@ + + + + 使役 + + + 否定、打消を表す。「ない」の別形 行かず @@ -112,6 +122,12 @@ + + + + + + 伝聞(伝聞情報の伝達) 言ったそうで @@ -152,6 +168,12 @@ + + + + + + あのよう(彼様)を見よ。あのよう。あの様子。 金玉のう釣りあげてうっちぬべいと、あげえこげえに騒ぎやることよ @@ -175,7 +197,6 @@ when starting a phone call - @@ -224,7 +245,6 @@ 人の数を数える語 - @@ -271,6 +291,7 @@ + natural number @@ -308,12 +329,16 @@ + natural number + + + number between 7999 and 8001 八千以上だ! @@ -439,6 +464,7 @@ + それだけと限定して程度を表す お会いするのは、もうこれっきりにさせてください。 @@ -483,6 +509,7 @@ + (逆接) @@ -565,6 +592,7 @@ + 静止できない勢い @@ -579,7 +607,6 @@ 列挙を示す - @@ -626,6 +653,8 @@ + + 2000 @@ -665,18 +694,32 @@ + + + 気づかない風を装うこと + + + + + + + 思い切りが悪い様子 + + + + 相手が面目を保てるようにする @@ -709,18 +752,34 @@ + + + + 興が冷めて相手に対する愛想がなくなる + + + + + + + 曖昧ではっきりしない様子 + + + + + 不意を打たれて驚く @@ -739,70 +798,87 @@ + + + + + + + 理に適っている + + + + + + + 外せない中核的な部分であること + + + + + 配慮が行き届いている + + + + + 感づく、才知がはたらく + + + + + いろいろとあせる、はらはらする + + + + + + + 適切でない + + + + + 退出する - - - - 共に、あるいは相互に行う動作の相手を示す - 友人と会う - - - 列挙を示す - 赤と黄色と緑 - - - - 関連する対象を示す - 彼女とは幼馴染だ - - - 発言などの引用を示す - 愛していると言った - - - 判断結果や状態を示す - これで作業は完了とみなす - - @@ -827,6 +903,7 @@ + 主張を強調する。反駁を表す。 だから嫌われるのさ。 @@ -860,30 +937,12 @@ + 下に打消表現を伴って他を排して限定や強調の意を表す 病み上がりで、まだおかゆしか食べられない。 - - - - 対等の文節をつくる - 上着を着て、手袋を着ける - - - 原因や理由を表す - 古くて使えない - - - 逆接を表す - 二十歳にもなって、責任ある言動がとれないようでは残念である - - - 用言に接続して補助用言を下に伴う - 手を繋いでいる - - @@ -931,6 +990,10 @@ + + + + 希望 何食べたい? @@ -955,13 +1018,10 @@ あの人。三人称 - 遠称の代名詞 - - @@ -979,6 +1039,13 @@ + + + + + + + とても面白い、とてもうまい、見事だ、好ましい あなたは素敵な downtown boy @@ -992,6 +1059,8 @@ + + 整数 @@ -1011,12 +1080,6 @@ 皆無であること - - - - indicates that the preceding number represents a number of people - - @@ -1088,6 +1151,7 @@ + 語句の累加を表す @@ -1220,6 +1284,7 @@ + すなわち、とりもなおさず(語句の言い換え) 信号機の赤は即ち止まれの意味だ @@ -1227,18 +1292,22 @@ + 真正面から直接に説破すること、冒頭を置かずに直ちに本題に入ること + 一命が終わろうとする時 + + 軽々しく他人の説に賛同すること @@ -1257,6 +1326,7 @@ + 低い地位からとんとん拍子に出世する様子 @@ -1298,6 +1368,8 @@ + + 伝聞(伝聞情報の伝達) 晴れるそうでした @@ -1316,14 +1388,6 @@ 気持ちは分かるものの、このまま進めるのはやはり無理がある。 - - - - 詠嘆、呼び掛け、促しを表す - 娘や、大きく育つんだぞ。 - みんなで行こうや。 - - @@ -1344,6 +1408,7 @@ + 信頼でき、気を遣わずに済む @@ -1353,6 +1418,7 @@ + してあげたことなどをことさらに相手に伝えて、返礼を期待する様子 @@ -1420,28 +1486,25 @@ + 朝一番で行う仕事 + 忌み憚ることのない、率直な + 解雇する - - - - 年上が小さい男の子に対して言う語 - - @@ -1532,6 +1595,7 @@ + 目を吊り上げる、粗探しをする @@ -1544,6 +1608,13 @@ + + + + + + + とても雅やかな様子 @@ -1556,36 +1627,72 @@ + + + + + + + 経験を積んで狡猾であること + + + + 一度うまく行ったので次も上手く行くと期待する様子 + + + + ひどく呆れて我を失う様子 + + + + + + + 軽々とした様子 + + + + + + + 物静かであること + + + + + + + 簡素で単純な様子 @@ -1604,6 +1711,8 @@ + + あるものを例示して他にまだあることを表す お気づきの点などありましたらお知らせください。 @@ -1634,6 +1743,7 @@ + 前が後で示す動作や作用の原因や理由であることを表す 誤りを放置するわけには行かないので、直ちに訂正した @@ -1646,27 +1756,21 @@ 前に対して後が予想外であることを表す - - - - 一言いった後に、自分の考えをほのめかす - ここから始めると良いのでしょうかね。よくは分かりませんけれども。 - - - - - - 東北方言などで、動作や作用の向けられる方向・場所・相手を示す - - + + + + 使役 + + + 推量(伝聞情報を根拠とした推量) 早いらしく @@ -1774,6 +1878,7 @@ + natural number @@ -1810,6 +1915,7 @@ + 意外なこと、思いもよらないこと @@ -1831,6 +1937,7 @@ + one thing @@ -1882,12 +1989,24 @@ + + natural number between 89 and 91 + + + + + + + + + + どう見ても明白であるさま 誰の目にも明らかだろう。 @@ -1927,6 +2046,13 @@ + + + + + + + 気が利いて物事の分かること、かわり映えがして趣のある様子 @@ -1982,6 +2108,10 @@ + + + + 水が盛んなさま @@ -2032,12 +2162,20 @@ + + + + + + + 遠く及ばない様子 + 語句の累加を表す、一方では、その上に、なお、ながら @@ -2074,6 +2212,7 @@ + (逆接) @@ -2268,6 +2407,7 @@ + 危険なことの喩え @@ -2362,30 +2502,65 @@ + + + + + + + 著しく明らか + + + + + + + 途切れず続く様子 + + + + + + + 壊れて滅びる様子 + + + + + + + 個人的 + + + + + + + その時だけ @@ -2398,30 +2573,54 @@ + + + + はらはらして見守る様子 + + + + 有名になる + + + + + + + しとやかで雅やかな様子 + + + + 固く約束する + + + + + 漠然として頼りない様子 @@ -2498,6 +2697,7 @@ + 反論や自己主張を表す だって、本当に分からないんだもん。 @@ -2511,6 +2711,11 @@ + + + + + 希望 会いたがらない @@ -2524,6 +2729,11 @@ + + + + + 過去・完了・確認 育ったろう @@ -2559,6 +2769,13 @@ + + + + + + + full of energy @@ -2569,12 +2786,26 @@ + + + + + + + 風流、風雅、優美であること + + + + + + + 入り組んでいること @@ -2608,6 +2839,7 @@ + 朝、人に挨拶する言葉 @@ -2623,6 +2855,7 @@ + あの人たち @@ -2647,6 +2880,7 @@ + 個数を表す語 @@ -2691,6 +2925,7 @@ + forty-two @@ -2721,6 +2956,7 @@ + さまざまであること @@ -2797,6 +3033,10 @@ + + + + 断定をあらわす @@ -2827,6 +3067,7 @@ + よく味合わずに丸呑みすること @@ -2923,6 +3164,7 @@ + 立身出世の階梯 @@ -2932,6 +3174,7 @@ + 傑物、大奸物 @@ -2974,6 +3217,7 @@ + 感動、詠嘆を表す よく分かったな。 @@ -2985,18 +3229,12 @@ + 強い否定を表す 酔ってなんかいるもんか。 - - - - 無念さを含んだ詠嘆を表す - あと一時間早ければ間に合ったものを。 - - @@ -3005,6 +3243,9 @@ + + + (逆接) @@ -3023,12 +3264,14 @@ + 賛成すべきものには賛成し、反対すべきものには反対するということ + 粗末なものをたくさん作ること @@ -3074,6 +3317,7 @@ + 本来のまま初々しい様子 @@ -3114,7 +3358,6 @@ 遠称の指示代名詞 - @@ -3237,12 +3480,26 @@ + + + + + + + 近代のものである様子 + + + + + + + 適切でない @@ -3273,6 +3530,10 @@ + + + + 罰が悪そうに話す様子 @@ -3285,18 +3546,30 @@ + + + + 呼吸を抑えてじっとする + + + + 睡眠から起きる + + + + 恥をかかせる @@ -3322,6 +3595,12 @@ + + + + + + 首を切る @@ -3403,24 +3682,12 @@ 「という」の意を表す語 - - - - 場所や時間・作用の起点を表す - 夏頃から体調を崩した - - - - 主語文節をつくる - 会社から連絡が行く - - + 動作や作用の至り及ぶところを表す 駅まで行きましょう。 - 限度を表す。「だけ」 @@ -3467,6 +3734,10 @@ + + + + 打消・否定を表す しなかろう @@ -3482,6 +3753,15 @@ + + + + + + + + + 断定 雨だろう @@ -3510,6 +3790,13 @@ + + + + + + + 都合が良いこと @@ -3542,6 +3829,7 @@ + natural number @@ -3599,18 +3887,27 @@ + natural number + + + + + + + 今までになくできたばかりである + natural number @@ -3670,6 +3967,7 @@ + natural number @@ -3695,6 +3993,14 @@ + + + + + + + + 間が透けてばらばらなこと、繁っていないこと @@ -3711,12 +4017,6 @@ 気取って咳払いする声 - - - - 日数を数える語 - - @@ -3809,6 +4109,7 @@ + 親密な交情を表す @@ -3846,6 +4147,7 @@ + 根も葉もないうわさ話 @@ -3872,27 +4174,18 @@ + + + + 使役 - - - - 逆接の確定条件を表す - 明け方の五時だったが、すぐさま飛び起きた。 - - - 反対の二つのことを対比的に表す - 見た目は悪いが、びっくりするほど美味しかった - - - 前述の語を単に後に続けることを表す - 話を聞きましたが、大変だったようですね - - + + 断定を表す 忙しいのよ。 @@ -3921,12 +4214,18 @@ + + + + + (逆接) + 女性にはねつけられる様子 @@ -3948,6 +4247,13 @@ + + + + + + + 底深いこと、深みのあること @@ -4050,8 +4356,6 @@ 指示代名詞。向こうの方。あちら。 - - 過ぎ去った時。以前。 @@ -4069,7 +4373,6 @@ 遠称の指示代名詞 - @@ -4121,6 +4424,13 @@ + + + + + + + (主に物が)冷たくない @@ -4192,12 +4502,26 @@ + + + + + + + 科学に基づく + + + + + + + 全体でとらえる様子 @@ -4216,6 +4540,13 @@ + + + + + + + 広く当てはまる様子 @@ -4228,6 +4559,10 @@ + + + + 労苦をいとわず力を尽くして働く @@ -4240,18 +4575,34 @@ + + + + 呼吸が苦しい + + + + + 動揺して顔が青白くなる様子 + + + + + + + 肝要または必要であること @@ -4264,12 +4615,26 @@ + + + + + + + 広く大きい様子 + + + + + + + 怪しむべきこと @@ -4282,6 +4647,10 @@ + + + + 雲に届くほど背が高い様子 @@ -4322,27 +4691,9 @@ 彼は頭の回転が早い。 - - - - 次の文節を修飾し限定する。連体助詞 - 頭の上 - - - 主語文節をつくる - 愛のない日々 - - - 「~のもの」を表す。準体助詞 - このお金は君のだ - - - 並立を表す。並立助詞 - 苦しいの苦しくないのって - - + 物理的な分量を示す。ほど、だけ そこから湯村までは歩いて二十分くらい。 @@ -4366,6 +4717,7 @@ + 概括を表す 手を抜いたりしないでくださいね @@ -4383,6 +4735,8 @@ + + 「だ」(断定)の丁寧な表現 雨でしょう @@ -4392,6 +4746,8 @@ + + 二人称単数 @@ -4418,6 +4774,7 @@ + ひとつ @@ -4452,12 +4809,14 @@ + natural number + 数字の5 @@ -4497,12 +4856,15 @@ + natural number + + natural number @@ -4545,6 +4907,13 @@ + + + + + + + 平穏無事であること @@ -4646,6 +5015,7 @@ + 優劣を決めること @@ -4704,6 +5074,7 @@ + 錐(きり)を立てる隙間もないほどぎっしり詰まっている様子 @@ -4738,12 +5109,21 @@ + + + + + + + 身にしみて、しみじみと + + 「ようだ」(比況)の丁寧形 あるようでしょう @@ -4754,6 +5134,8 @@ + + 「みたいだ」(比況)の丁寧形(伝聞情報を根拠としない判断) あるみたいでしょう @@ -4762,16 +5144,6 @@ あるみたいですもの - - - - 疑問語を受けて不確実なことを表す - どうしたら良いのか、全くわからない。 - - - 事物を並立してひとつ選ぶことを表す - - @@ -4835,12 +5207,14 @@ + (逆接) + 自分から求めて災いに遭う様子 @@ -4860,12 +5234,21 @@ + + + + + + + 筋道が通っていること + + 意外なことに言葉も出ず呆れるさま @@ -4902,12 +5285,14 @@ + どこ + ひととび @@ -4938,6 +5323,7 @@ + 部屋の広さを表す語 @@ -4986,12 +5372,15 @@ + + 9000 + Enough @@ -5058,6 +5447,13 @@ + + + + + + + 勢いがある様子 @@ -5076,12 +5472,26 @@ + + + + + + + 短い期間である様子 + + + + + + + 性格が明るく晴れやか @@ -5091,18 +5501,35 @@ + + + + + + + 歩き方が早い様子 + + + + + + 準備できているが前に進めず待っている状態 + + + + その跡を追っていく @@ -5115,18 +5542,33 @@ + + + + + 呼吸する + + + + + あえぐ + + + + + ひと休みする @@ -5139,6 +5581,13 @@ + + + + + + + 愛すべき様子 @@ -5170,6 +5619,7 @@ + 念押し、詠嘆を表す 立派に育ちましたね。 @@ -5205,12 +5655,6 @@ 夢は大きければ大きいほど良い。 - - - - 決定しがたい二つ以上の事柄を並列および列挙する意を表す - - @@ -5222,23 +5666,13 @@ 早くやろうと思いながら、ついつい後回しになってしまった。 - - - - 疑念を含む問いかけ - これであなたの思い通りになったのかしら。 - - - 疑念。自問 - これで良かったのかしら。 - - - 願望や依頼 - 私のかわりに銀行まで行ってくれないかしら。 - - + + + + + 自発 信じられない @@ -5274,6 +5708,11 @@ + + + + + 丁寧 ありません @@ -5289,12 +5728,29 @@ + + + + + + + 中国古代の歴史書『史記』中の列伝の篇名、饒舌なさま、転じて笑いやユーモアと同義の用語 + + + + + + + + + + さとく行動などが素早いこと @@ -5358,6 +5814,11 @@ + + + + + to be invested in something @@ -5424,6 +5885,7 @@ + 国を閉ざして他と交わらないことから、頑固で人の意見を聞かない人をいう @@ -5492,6 +5954,7 @@ + 手で腹をささげて、倒れんばかりに笑い崩れること @@ -5508,13 +5971,6 @@ 二枚の舌でそれぞれ違うことを言う事、つまり嘘をつくこと - - - - 逆接の確定条件を表す - よくよく見るに、探していたものではなかった - - @@ -5554,6 +6010,13 @@ + + + + + + + 奇抜で激しい @@ -5711,12 +6174,23 @@ + + + + + + + 遠く長い様子 + + + + ゆったり落ち着いている様子 @@ -5736,6 +6210,13 @@ + + + + + + + 極めて赤みが強い様子 真っ赤な太陽 @@ -5759,18 +6240,39 @@ + + + + + + + ものが豊かであること + + + + + + + 本来の格式に沿った様子 + + + + + + + 発火して破裂するような勢いのある様子 @@ -5783,6 +6285,13 @@ + + + + + + + 次第や順序を追って統一してある様子 @@ -5798,54 +6307,105 @@ + + + + + + + 一般的な水準よりも先に進んでいる様子 + + + + あることが長く続く + + + + + + + + 性に関して慎みが無くだらしないさま + + + + + 激しく呼吸する + + + + 病気や怪我をする + + + + + + + 軽率な様子 + + + + + + + 手軽な様子 + + + + + 相手の機嫌を推し量って何かをする + + + + なぐさめる @@ -5858,6 +6418,13 @@ + + + + + + + 荒々しい様子 @@ -5921,6 +6488,8 @@ + + 複数例示して選ぶことを表す 起きるなり寝るなり @@ -5941,15 +6510,9 @@ 猿だの猪だのが畑を荒らして行った。 - - - - 禁止を表す - 独りで行くな。 - - + 逆接の仮定条件を表す。「たとえ~しても」 寝ても覚めても忘れない @@ -5965,6 +6528,11 @@ + + + + + 自発 思い出されない @@ -6000,6 +6568,12 @@ + + + + + + 比況 あるようだろう @@ -6013,6 +6587,8 @@ + + 一人称の代名詞で同輩またはそれ以下に対していう語 @@ -6049,6 +6625,10 @@ + + + + 数字の1000 @@ -6064,12 +6644,13 @@ - + idicating something that is far away from both the speaker and the listener + the natural number 3 @@ -6159,7 +6740,7 @@ - + that way @@ -6191,13 +6772,6 @@ - - - - だが、しかし - 道は険しいが頑張ろう - - @@ -6206,6 +6780,8 @@ + + 役者の演技が板(舞台)の上で危なげなく見える様子から転じて、わざとらしいところがなく、ぴったりと当てはまること @@ -6225,21 +6801,11 @@ + いともたやすいこと - - - - 動作が連動している状態を表す - 横になるなりぐっすり眠った - - - 動作が続いている状態を表す。「~たなり」の形をとる。 - 立ち止まったなり、話し始めた。 - - @@ -6323,6 +6889,7 @@ + 他人に先立って事に着手する @@ -6367,6 +6934,8 @@ + + 美しいこと @@ -6382,6 +6951,12 @@ + + + + + + 比況(伝聞情報を根拠としない判断) あるみたいだろう @@ -6393,15 +6968,9 @@ あるみたいなら - - - - 逆接の仮定条件を表す - 水を探そうとするも、なかなか見つからない - - + 逆接の確定条件を表す はたらけどはたらけどわが生活楽にならざりぢっと手をみる @@ -6409,6 +6978,9 @@ + + + (古典文法)完了や存続の意味を付け加える @@ -6539,12 +7111,6 @@ 和歌の単位 - - - - 履物の揃いの数を表す語 - - @@ -6553,6 +7119,7 @@ + 片方だけ贔屓すること @@ -6574,12 +7141,18 @@ + 鬱屈した気持ちが晴れること + + + + + 解雇させられる @@ -6601,6 +7174,7 @@ + to be damned @@ -6625,6 +7199,13 @@ + + + + + + + ぼんやりしている、はっきり見えない @@ -6671,6 +7252,13 @@ + + + + + + + 規模が大きい @@ -6683,12 +7271,26 @@ + + + + + + + 途絶えたり続いたりする様子 + + + + + + + 代表するような @@ -6707,30 +7309,54 @@ + 常に買うこと + + + + + 頭を左右に振って否定をあらわす + + + + + + + 手軽で便利な様子 + + + + + + 心配する + + + + + しゃべる @@ -6738,12 +7364,6 @@ 間をとりなす - - - - 荒々しい様子 - - 材料や手段を表す。「によって」 ウィキペディアでいつかバイアグラを検索するなんて思ってもみなかったわ。 @@ -7170,26 +7790,6 @@ 退出する - - 共に、あるいは相互に行う動作の相手を示す - 友人と会う - - - 列挙を示す - 赤と黄色と緑 - - - 関連する対象を示す - 彼女とは幼馴染だ - - - 発言などの引用を示す - 愛していると言った - - - 判断結果や状態を示す - これで作業は完了とみなす - 動作の後にすぐ別の動作が生じることを表す 駆けつけるやいなや、一気に飲み干した。 @@ -7237,22 +7837,6 @@ 下に打消表現を伴って他を排して限定や強調の意を表す 病み上がりで、まだおかゆしか食べられない。 - - 対等の文節をつくる - 上着を着て、手袋を着ける - - - 原因や理由を表す - 古くて使えない - - - 逆接を表す - 二十歳にもなって、責任ある言動がとれないようでは残念である - - - 用言に接続して補助用言を下に伴う - 手を繋いでいる - 逆接の確定条件を表す 独りなのに、寂しくない @@ -7326,9 +7910,6 @@ 皆無であること - - indicates that the preceding number represents a number of people - the number 9 @@ -7487,11 +8068,6 @@ 逆接の確定条件を表す 気持ちは分かるものの、このまま進めるのはやはり無理がある。 - - 詠嘆、呼び掛け、促しを表す - 娘や、大きく育つんだぞ。 - みんなで行こうや。 - 語句の累加を表す @@ -7549,9 +8125,6 @@ 解雇する - - 年上が小さい男の子に対して言う語 - 稀にある @@ -7662,13 +8235,6 @@ 前に対して後が予想外であることを表す - - 一言いった後に、自分の考えをほのめかす - ここから始めると良いのでしょうかね。よくは分かりませんけれども。 - - - 東北方言などで、動作や作用の向けられる方向・場所・相手を示す - 使役 @@ -8428,10 +8994,6 @@ 強い否定を表す 酔ってなんかいるもんか。 - - 無念さを含んだ詠嘆を表す - あと一時間早ければ間に合ったものを。 - 金属(鉄)製の草鞋、とことん歩き回っても履き潰れないことの喩え @@ -8668,14 +9230,6 @@ 「という」の意を表す語 - - 場所や時間・作用の起点を表す - 夏頃から体調を崩した - - - 主語文節をつくる - 会社から連絡が行く - 動作や作用の至り及ぶところを表す 駅まで行きましょう。 @@ -8853,9 +9407,6 @@ 気取って咳払いする声 - - 日数を数える語 - uncertain or unspecified entity @@ -8941,18 +9492,6 @@ 使役 - - 逆接の確定条件を表す - 明け方の五時だったが、すぐさま飛び起きた。 - - - 反対の二つのことを対比的に表す - 見た目は悪いが、びっくりするほど美味しかった - - - 前述の語を単に後に続けることを表す - 話を聞きましたが、大変だったようですね - 断定を表す 忙しいのよ。 @@ -9192,22 +9731,6 @@ 述語が連文節になっている場合の主語を表す 彼は頭の回転が早い。 - - 次の文節を修飾し限定する。連体助詞 - 頭の上 - - - 主語文節をつくる - 愛のない日々 - - - 「~のもの」を表す。準体助詞 - このお金は君のだ - - - 並立を表す。並立助詞 - 苦しいの苦しくないのって - 物理的な分量を示す。ほど、だけ そこから湯村までは歩いて二十分くらい。 @@ -9438,13 +9961,6 @@ あるみたいです あるみたいですもの - - 疑問語を受けて不確実なことを表す - どうしたら良いのか、全くわからない。 - - - 事物を並立してひとつ選ぶことを表す - 念押しを表す おまえ、どこへ行くのかい。 @@ -9685,9 +10201,6 @@ 「~ば~ほど」の形で用いられる 夢は大きければ大きいほど良い。 - - 決定しがたい二つ以上の事柄を並列および列挙する意を表す - 2つの動作が同時に行われることを表す 歩きながら考える @@ -9696,18 +10209,6 @@ 2つの動作が逆接であることを表す 早くやろうと思いながら、ついつい後回しになってしまった。 - - 疑念を含む問いかけ - これであなたの思い通りになったのかしら。 - - - 疑念。自問 - これで良かったのかしら。 - - - 願望や依頼 - 私のかわりに銀行まで行ってくれないかしら。 - 自発 信じられない @@ -9866,10 +10367,6 @@ 二枚の舌でそれぞれ違うことを言う事、つまり嘘をつくこと - - 逆接の確定条件を表す - よくよく見るに、探していたものではなかった - (後から注釈などを接続) @@ -10113,10 +10610,6 @@ 同類のものからいくつか列挙することを表す 猿だの猪だのが畑を荒らして行った。 - - 禁止を表す - 独りで行くな。 - 逆接の仮定条件を表す。「たとえ~しても」 寝ても覚めても忘れない @@ -10195,7 +10688,7 @@ a large number - + idicating something that is far away from both the speaker and the listener @@ -10256,7 +10749,7 @@ natural number - + that way @@ -10274,10 +10767,6 @@ かれ(彼)に同じ - - だが、しかし - 道は険しいが頑張ろう - uncertain or unspecified entity @@ -10294,14 +10783,6 @@ いともたやすいこと - - 動作が連動している状態を表す - 横になるなりぐっすり眠った - - - 動作が続いている状態を表す。「~たなり」の形をとる。 - 立ち止まったなり、話し始めた。 - 世の中の色々な人、群衆 @@ -10387,10 +10868,6 @@ あるみたいな あるみたいなら - - 逆接の仮定条件を表す - 水を探そうとするも、なかなか見つからない - 逆接の確定条件を表す はたらけどはたらけどわが生活楽にならざりぢっと手をみる @@ -10462,9 +10939,6 @@ 和歌の単位 - - 履物の揃いの数を表す語 - 料理の皿を数える単位 @@ -10567,8 +11041,5 @@ 間をとりなす - - 荒々しい様子 - diff --git a/extensions/wikidata-lexemes/output/ka.xml b/extensions/wikidata-lexemes/output/ka.xml index 9329da2..669b46b 100644 --- a/extensions/wikidata-lexemes/output/ka.xml +++ b/extensions/wikidata-lexemes/output/ka.xml @@ -43,6 +43,9 @@ + + + I, me diff --git a/extensions/wikidata-lexemes/output/kl.xml b/extensions/wikidata-lexemes/output/kl.xml index c3350fa..6fc1058 100644 --- a/extensions/wikidata-lexemes/output/kl.xml +++ b/extensions/wikidata-lexemes/output/kl.xml @@ -16,6 +16,8 @@ + + (one who/that is acted on) [verb]-ee @@ -39,18 +41,22 @@ + + inna / anna / una + recurring, habitually + (allaaseq, atuaaseq) @@ -80,6 +86,8 @@ + + two (used with currency and units of measurement) @@ -104,6 +112,21 @@ + + + + + + + + + + + + + + + derhenne @@ -128,12 +151,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (iserportoq / tikipportoq) + (forms collective family names) @@ -142,27 +208,21 @@ (the act of doing something) - (the acting of the possessor) - (while possessor acted) - (before possessor acted) - (because of action) - (the more/most acting) - @@ -185,12 +245,18 @@ + + + + my (first person singular possessive) + + three (used with currency and units of measurement) @@ -233,51 +299,48 @@ + + + + + + + + + + + + + + + una + (group of) + (group of many) - - - - (the act of doing something) - - - - (the acting of the possessor) - - - - (while possessor acted) - - - - (before possessor acted) - - - - (because of action) - - - - (the more/most acting) - - - + + + + + + + (obviative singular possessive) @@ -296,6 +359,7 @@ + means to search for @@ -329,6 +393,9 @@ + + + taanna @@ -395,6 +462,7 @@ + (one who/that is acted on) [verb]-ee @@ -403,6 +471,8 @@ + + has good/beautiful (monovalent verbalizing affix) @@ -478,6 +548,7 @@ + (irrealis nominal suffix; supposed, destined, or intended) @@ -496,6 +567,7 @@ + buy, acquire @@ -540,6 +612,7 @@ + aamma @@ -564,6 +637,7 @@ + or @@ -592,6 +666,7 @@ + pisarnermisut @@ -628,6 +703,8 @@ + + (with noun stem for an animal) catch, kill @@ -640,6 +717,7 @@ + search for, be looking for @@ -661,6 +739,8 @@ + + have, has @@ -694,6 +774,26 @@ + + + + + + + + + + + + + + + + + + + + (third-person plural possessive) @@ -706,6 +806,15 @@ + + + + + + + + + uanga nammineq @@ -730,6 +839,7 @@ + uumaangaa @@ -760,6 +870,7 @@ + sumut atortoq @@ -787,6 +898,7 @@ + (fair-sized) @@ -841,12 +953,26 @@ + (angerlajaarpoq, aallajaarpoq) + + + + + + + + + + + + + one (used with currency and measurement units) @@ -889,6 +1015,7 @@ + this (one) @@ -1037,24 +1164,6 @@ (group of many) - - (the act of doing something) - - - (the acting of the possessor) - - - (while possessor acted) - - - (before possessor acted) - - - (because of action) - - - (the more/most acting) - (obviative singular possessive) diff --git a/extensions/wikidata-lexemes/output/ko.xml b/extensions/wikidata-lexemes/output/ko.xml index ac8deb8..aa70b58 100644 --- a/extensions/wikidata-lexemes/output/ko.xml +++ b/extensions/wikidata-lexemes/output/ko.xml @@ -22,6 +22,7 @@ + (indicates a guess at the amount or extent of something) @@ -146,18 +147,16 @@ + formal first person singular: I - - - - he or she (formal third person pronoun) - - + + + (politeness marker used in hasoseo-che) @@ -257,6 +256,7 @@ + informal first person singular, I @@ -284,6 +284,8 @@ + + (general past/perfective indicator) @@ -293,6 +295,8 @@ + + (past perfective indicator with implication of not being true at the present time) @@ -486,6 +490,7 @@ + (speculation/prediction indicator) @@ -495,6 +500,8 @@ + + (infinitive marker; used to connect verbs with certain following auxiliaries) @@ -578,6 +585,8 @@ + + (direct object particle) @@ -608,6 +617,8 @@ + + (politeness marker used in hasoseo-che) @@ -683,6 +694,7 @@ + (honorific used in deference to the topic of the statement) @@ -693,12 +705,6 @@ the number 10^8 - - - - that over there - - @@ -707,6 +713,7 @@ + (copula) @@ -768,6 +775,14 @@ + + + + + + + + (informal second person plural pronoun) @@ -780,6 +795,7 @@ + (subject particle) @@ -909,6 +925,8 @@ + + (indicates a sequential relationship between two events) @@ -1048,9 +1066,6 @@ formal first person singular: I - - he or she (formal third person pronoun) - (politeness marker used in hasoseo-che) @@ -1345,9 +1360,6 @@ the number 10^8 - - that over there - that over there diff --git a/extensions/wikidata-lexemes/output/ks.xml b/extensions/wikidata-lexemes/output/ks.xml index 9cd52c3..d9a0af7 100644 --- a/extensions/wikidata-lexemes/output/ks.xml +++ b/extensions/wikidata-lexemes/output/ks.xml @@ -10,6 +10,9 @@ + + + existence diff --git a/extensions/wikidata-lexemes/output/la.xml b/extensions/wikidata-lexemes/output/la.xml index 1a53f1f..892a57c 100644 --- a/extensions/wikidata-lexemes/output/la.xml +++ b/extensions/wikidata-lexemes/output/la.xml @@ -29,12 +29,6 @@ (of time) before, previously - - - - I have come, I have seen, I have beaten. - - @@ -43,6 +37,13 @@ + + + + + + + число @@ -85,24 +86,64 @@ + + + + done, made - - - - Les paroles volent, les écrits restent. - - + + + + + + + + + + + + + + + + + the same + + + + + + + + + + + + + + + + + + + + + + + + + натуральное число @@ -112,6 +153,9 @@ + + + I; first-person singular pronoun @@ -149,14 +193,32 @@ if, supposing that - - - - two - - + + + + + + + + + + + + + + + + + + + + + + + + натуральное число @@ -184,6 +246,7 @@ + out of, from @@ -226,6 +289,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + натуральное число @@ -236,20 +323,18 @@ four - - - - three - - + from, away from, out of + + + producing @@ -316,12 +401,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + натуральное число + + + + + + conjugation of Latin verbs, with a stem ending in "a" and an infinitive in "are"; e.g. amō (I love), amāre (to love), “amāvi” (I loved) @@ -334,6 +449,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + натуральное число @@ -350,9 +489,6 @@ (of time) before, previously - - I have come, I have seen, I have beaten. - ponieważ @@ -380,9 +516,6 @@ done, made - - Les paroles volent, les écrits restent. - the same @@ -413,9 +546,6 @@ if, supposing that - - two - натуральное число @@ -467,9 +597,6 @@ four - - three - from, away from, out of diff --git a/extensions/wikidata-lexemes/output/lb.xml b/extensions/wikidata-lexemes/output/lb.xml index cb95607..945301b 100644 --- a/extensions/wikidata-lexemes/output/lb.xml +++ b/extensions/wikidata-lexemes/output/lb.xml @@ -16,24 +16,34 @@ + + you; second-person plural pronoun + + you; formal second-person pronoun + + we; first-person plural pronoun + + + + you; second-person singular pronoun @@ -46,34 +56,41 @@ + + + I; first-person singular pronoun + + + + he; third-person singular pronoun + + + it; third-person singular pronoun + + + she; third-person singular pronoun - - - - they; third-person plural pronoun - - yes @@ -104,8 +121,5 @@ she; third-person singular pronoun - - they; third-person plural pronoun - diff --git a/extensions/wikidata-lexemes/output/lv.xml b/extensions/wikidata-lexemes/output/lv.xml index 2ad9238..6011912 100644 --- a/extensions/wikidata-lexemes/output/lv.xml +++ b/extensions/wikidata-lexemes/output/lv.xml @@ -31,18 +31,30 @@ + + + + + I; first-person singular pronoun + + + + viens un otrs + + + die eine und die andere diff --git a/extensions/wikidata-lexemes/output/mi.xml b/extensions/wikidata-lexemes/output/mi.xml index 408efc4..5e9226a 100644 --- a/extensions/wikidata-lexemes/output/mi.xml +++ b/extensions/wikidata-lexemes/output/mi.xml @@ -10,6 +10,7 @@ + matihiko, ahiko, mati @@ -22,6 +23,7 @@ + the (indicates definiteness) @@ -46,12 +48,15 @@ + coming from a distance + + e noho ana, e haere ana, e kawea ana @@ -62,12 +67,6 @@ Hooker, family name - - - - Tasman Sea - - @@ -91,6 +90,7 @@ + female, womanly, feminine @@ -103,12 +103,14 @@ + pertaining to the indigenous people of Aotearoa/New Zealand + a certain particular (emphatic indefiniteness marker) @@ -131,21 +133,6 @@ no longer (expressing loss, absence, or departure) - - - - Wellington, New Zealand - - - - - - South Island, New Zealand - - - Greenstone Valley - - @@ -154,12 +141,15 @@ + human, individual + + (indication of difference, unexpectedness) already, actually, another, in a different place, for a different purpose @@ -184,6 +174,7 @@ + first, important, large, of priority @@ -193,24 +184,29 @@ + all, every, totally, completely + whakatioro + + (indicates absence of limit, conditions) only, just, merely, quite, until, randomly + women’s; female, feminine @@ -218,18 +214,6 @@ womanhood - - - - Chute (English surname) - - - - - - Te Mangōroa - - @@ -238,6 +222,8 @@ + + one @@ -275,9 +261,6 @@ Hooker, family name - - Tasman Sea - country in Europe @@ -314,15 +297,6 @@ no longer (expressing loss, absence, or departure) - - Wellington, New Zealand - - - South Island, New Zealand - - - Greenstone Valley - is that so? isn’t it? @@ -365,12 +339,6 @@ womanhood - - Chute (English surname) - - - Te Mangōroa - a, an, some (indicates indefiniteness) diff --git a/extensions/wikidata-lexemes/output/ml.xml b/extensions/wikidata-lexemes/output/ml.xml index cacd744..03c6efe 100644 --- a/extensions/wikidata-lexemes/output/ml.xml +++ b/extensions/wikidata-lexemes/output/ml.xml @@ -10,18 +10,21 @@ + 4; four, the numeral + 5; numeral five + numeral for 8; eight @@ -40,12 +43,21 @@ + 11, eleven + + + + + + + + speakers/writers, or the speaker/writer and at least one other person @@ -64,18 +76,32 @@ + + + + + + ഞാൻ + but + + + + + + + these @@ -190,18 +216,27 @@ + 2, two; natural number between 1 and 3 + + numeral for 9; nine + + + + + + hundred, the number 100 @@ -220,18 +255,39 @@ + + + + + + + you; second person plural + + + + + + + + he; third-person singular pronoun + + + + + + you (informal, impolite) @@ -239,6 +295,20 @@ + + + + + + + + + + + + + + Those @@ -277,6 +347,7 @@ + other @@ -372,6 +443,7 @@ + numeral for 6; six @@ -384,6 +456,14 @@ + + + + + + + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people @@ -403,12 +483,32 @@ + + + + + + + third person plural; they + + + + + + + + + + + + + Thank you, thanks @@ -418,6 +518,21 @@ + + + + + + + + + + + + + + + ആ ആൾ, ആ മനുഷ്യൻ @@ -450,6 +565,7 @@ + that, object at a distance @@ -457,6 +573,9 @@ + + + (with noun classes) because of, due to. (Placed after word) @@ -502,6 +621,7 @@ + don't @@ -616,6 +736,14 @@ + + + + + + + + first person singular, I @@ -652,6 +780,21 @@ + + + + + + + + + + + + + + + Him, that person, to respectfully address a person, respectful pronoun for third person @@ -759,12 +902,14 @@ + three + numeral for 7; seven @@ -783,6 +928,12 @@ + + + + + + 500, five hundred @@ -801,6 +952,12 @@ + + + + + + Indian food @@ -813,6 +970,19 @@ + + + + + + + + + + + + + 1 lakh, 1,00,000 @@ -825,12 +995,20 @@ + + + + + + + she; third-person singular pronoun + but @@ -990,6 +1168,20 @@ + + + + + + + + + + + + + + this @@ -1003,6 +1195,7 @@ + "by" in day by day, city by city @@ -1144,12 +1337,6 @@ below - - - - 30, thirty - - @@ -1170,6 +1357,12 @@ + + + + + + 18, eighteen @@ -1188,12 +1381,25 @@ + + + + + + + first person plural + + + + + + he (lacks respect; not used for elders) @@ -1237,6 +1443,7 @@ + which; interogative @@ -1385,6 +1592,13 @@ + + + + + + + who @@ -1446,6 +1660,8 @@ + + exists @@ -2111,9 +2327,6 @@ below - - 30, thirty - 90, ninety diff --git a/extensions/wikidata-lexemes/output/mn.xml b/extensions/wikidata-lexemes/output/mn.xml index 505e514..e220923 100644 --- a/extensions/wikidata-lexemes/output/mn.xml +++ b/extensions/wikidata-lexemes/output/mn.xml @@ -118,6 +118,7 @@ + ten diff --git a/extensions/wikidata-lexemes/output/ms.xml b/extensions/wikidata-lexemes/output/ms.xml index 080a252..8ffd787 100644 --- a/extensions/wikidata-lexemes/output/ms.xml +++ b/extensions/wikidata-lexemes/output/ms.xml @@ -29,6 +29,10 @@ + + + + from (initial place, time) @@ -42,6 +46,7 @@ + kata ganti diri pertama mufrad @@ -67,36 +72,45 @@ + which + and + that + + (classifier for pairs) + + + it + as @@ -110,18 +124,27 @@ + + classifier for objects with stalk (eg. umbrella, mushroom) + + + classifier for long, hard and straight objects + + + + million @@ -140,6 +163,8 @@ + + classifier for blocky objects @@ -170,6 +195,7 @@ + (kata penentu yang bererti itu) @@ -185,6 +211,8 @@ + + macam; bangsa @@ -200,6 +228,8 @@ + + total @@ -215,6 +245,8 @@ + + zaman, waktu @@ -233,6 +265,10 @@ + + + + from @@ -245,24 +281,32 @@ + + + + with + this + + because + what @@ -288,6 +332,7 @@ + before @@ -300,12 +345,15 @@ + + who + more @@ -318,6 +366,8 @@ + + classifier for a row of bananas @@ -336,12 +386,16 @@ + + (classifier for pairs) + + sekon, detik @@ -363,6 +417,8 @@ + + 0.001 kilogram @@ -387,6 +443,7 @@ + whereas @@ -429,6 +486,8 @@ + + classifier for small objects, fruits Demi angin yang menerbang dan menaburkan (debu, biji-bijian benih dan lain-lainnya @@ -436,12 +495,16 @@ + + + together with + like; as @@ -460,6 +523,7 @@ + again; in turn @@ -487,6 +551,8 @@ + + classifier for fruit flesh @@ -499,18 +565,23 @@ + + (classifier for corn and fruits that are quite big and hard) + + why + peace be upon him @@ -529,6 +600,8 @@ + + (penjodoh bilangan untuk benda-benda yang pipih atau tipis atau yang lebar meluas) @@ -562,6 +635,10 @@ + + + + between @@ -579,12 +656,16 @@ + + + classifier for huge objects + that @@ -597,6 +678,9 @@ + + + by @@ -627,18 +711,22 @@ + + classifier for curved items + child of + daughter of @@ -664,6 +752,8 @@ + + kurun @@ -676,6 +766,9 @@ + + + whole; entire @@ -694,6 +787,8 @@ + + penjodoh bilangan untuk haiwan ada rapang lima belas ekor @@ -701,6 +796,8 @@ + + classifier for blade objects (eg. sword, knife) Hang Tuah dan kelima bersaudara itu pun sudah memanggung tiga-tiga bilah seligi pada seorang. @@ -708,12 +805,17 @@ + + penjodoh bilangan untuk manusia + + + until @@ -744,6 +846,7 @@ + that @@ -795,6 +898,8 @@ + + satuan @@ -807,6 +912,8 @@ + + abad @@ -846,12 +953,16 @@ + + + for + after @@ -864,6 +975,9 @@ + + + towards @@ -882,6 +996,8 @@ + + classifier for thin, wide objects @@ -912,6 +1028,8 @@ + + classifier for something that seems to be widely spread (eg. mat, land, field, beach) @@ -930,18 +1048,24 @@ + + (classifier for flat, spread out things) + + ukuran luas yang besarnya 2.471 ekar + + 39.37 inci; 100 sentimeter @@ -954,6 +1078,9 @@ + + + warsa @@ -967,12 +1094,16 @@ + + (penjodoh bilangan untuk kata) + + group @@ -983,21 +1114,22 @@ all seven - - - - my (first person possessive determiner) - Surat rayuan saya telah diserahkan kepada Dewan Rakyat. - - + + + + to + + + + for @@ -1010,6 +1142,9 @@ + + + on (time) @@ -1040,12 +1175,14 @@ + each + (place) @@ -1076,18 +1213,24 @@ + + billion + + classifier for weapon + + classifier for rope-like items like ropes, threads, necklaces @@ -1100,6 +1243,8 @@ + + roll @@ -1112,6 +1257,8 @@ + + a group of @@ -1124,6 +1271,7 @@ + son of @@ -1131,18 +1279,23 @@ + + jangka masa sepuluh tahun, dasawarsa + + seribu meter + (panggilan untuk memuliakan) @@ -1155,12 +1308,15 @@ + + auns + di tempat yang lebih rendah @@ -1191,6 +1347,7 @@ + but @@ -1239,6 +1396,8 @@ + + classifier for reading material @@ -1269,6 +1428,8 @@ + + classifier for thing that have been cut or thinly sliced @@ -1293,12 +1454,16 @@ + + if + + dekad, dasawarsa @@ -1311,6 +1476,8 @@ + + ukuran luas, 100 m² @@ -1854,10 +2021,6 @@ all seven - - my (first person possessive determiner) - Surat rayuan saya telah diserahkan kepada Dewan Rakyat. - to diff --git a/extensions/wikidata-lexemes/output/mt.xml b/extensions/wikidata-lexemes/output/mt.xml index ea3101e..abd5c1b 100644 --- a/extensions/wikidata-lexemes/output/mt.xml +++ b/extensions/wikidata-lexemes/output/mt.xml @@ -10,6 +10,7 @@ + that @@ -66,18 +67,25 @@ + + + in-numru kardinali tlieta + + the number four + + the number nine @@ -135,12 +143,15 @@ + + the number two + the number six @@ -234,6 +245,8 @@ + + the number five @@ -312,12 +325,15 @@ + the number one + + the number seven @@ -405,6 +421,8 @@ + + the number ten @@ -417,6 +435,25 @@ + + + + + + + + + + + + + + + + + + + artiklu definit @@ -501,6 +538,8 @@ + + the number eight diff --git a/extensions/wikidata-lexemes/output/nb.xml b/extensions/wikidata-lexemes/output/nb.xml index c88c9db..affa717 100644 --- a/extensions/wikidata-lexemes/output/nb.xml +++ b/extensions/wikidata-lexemes/output/nb.xml @@ -10,6 +10,8 @@ + + a/an (indefinite article) @@ -66,6 +68,7 @@ + partikkel som brukes til å danne genitiv @@ -79,6 +82,8 @@ + + (one's) own @@ -86,6 +91,8 @@ + + this @@ -221,13 +228,6 @@ from some distance away - - - - tallet 1 - - - @@ -407,6 +407,7 @@ + second-person singular pronoun @@ -673,12 +674,6 @@ word used to attract chickens - - - - that (one) - - @@ -732,12 +727,6 @@ so - - - - so that - - @@ -793,24 +782,33 @@ + + + my, mine + + + his, her/hers or its + + all + every @@ -820,15 +818,17 @@ + she; third-person singular pronoun + + tallet 1 - @@ -916,6 +916,7 @@ + self @@ -1042,6 +1043,8 @@ + + our @@ -1309,12 +1312,16 @@ + + + other + we; first-person plural pronoun @@ -1428,6 +1435,8 @@ + + thusly @@ -1634,6 +1643,7 @@ + they; gender-neutral third-person singular pronoun @@ -1651,12 +1661,6 @@ used to express a sudden understanding of something - - - - that (one) - - @@ -1797,6 +1801,7 @@ + any @@ -1804,6 +1809,8 @@ + + they; third-person plural pronoun @@ -1865,6 +1872,7 @@ + some @@ -2131,6 +2139,9 @@ + + + the other (out of two, when used in singular); the others (out of several, when used in plural) @@ -2153,12 +2164,17 @@ + + + your, yours + + which (one) @@ -2168,6 +2184,7 @@ + second-person plural pronoun @@ -2221,17 +2238,9 @@ more than - - - - how/what about … - - - what if … - - + self @@ -2267,6 +2276,8 @@ + + one and a half @@ -2406,6 +2417,8 @@ + + thus (in certain expressions) @@ -2614,6 +2627,7 @@ + I; first-person singular pronoun @@ -3020,12 +3034,14 @@ + every second + he; third-person singular pronoun @@ -3088,6 +3104,8 @@ + + thus @@ -3095,6 +3113,8 @@ + + no/none @@ -3167,6 +3187,9 @@ + + + one of several @@ -3230,6 +3253,9 @@ + + + (one's) own @@ -3312,18 +3338,6 @@ inside (of) - - - - used as a dummy subject - - - used as a dummy object - - - used as a predicative - - @@ -3396,12 +3410,6 @@ - - - - the (for plural words) - - @@ -3520,9 +3528,6 @@ from some distance away - - tallet 1 - opposite, facing @@ -3745,9 +3750,6 @@ word used to attract chickens - - that (one) - darn (mild version of "faen") @@ -3772,9 +3774,6 @@ so - - so that - relating to, about @@ -4249,9 +4248,6 @@ used to express a sudden understanding of something - - that (one) - east of @@ -4546,12 +4542,6 @@ more than - - how/what about … - - - what if … - self @@ -5092,15 +5082,6 @@ inside (of) - - used as a dummy subject - - - used as a dummy object - - - used as a predicative - exclamation used to praise God @@ -5134,9 +5115,6 @@ in an easterly direction - - the (for plural words) - although/despite diff --git a/extensions/wikidata-lexemes/output/nl.xml b/extensions/wikidata-lexemes/output/nl.xml index d3477ea..e30f5d9 100644 --- a/extensions/wikidata-lexemes/output/nl.xml +++ b/extensions/wikidata-lexemes/output/nl.xml @@ -10,6 +10,7 @@ + "400", het getal tussen driehonderdnegenennegentig en vierhonderdeen, vier maal honderd We zaten er met z'n vierhonderden op een kluitje, ingeklemd door een strand en een weg met tientallen vrijwel eendere hotels. @@ -23,6 +24,11 @@ + + + + + van jou @@ -35,18 +41,22 @@ + one + + the number two + the number 9 @@ -65,6 +75,7 @@ + onverbogen vorm van de overtreffende trap van goed @@ -77,6 +88,7 @@ + één en een half, 1,5 @@ -89,6 +101,8 @@ + + you @@ -98,18 +112,31 @@ + + + + + persoonlijk voornaamwoord (enkelvoud) + + + + he, third person masculine singular pronoun + + + + persoonlijk voornaamwoord @@ -131,18 +158,22 @@ + + persoonlijk voornaamwoord + the number 11 + the number 30 @@ -179,12 +210,21 @@ + + + + + plaats waar delfstoffen worden gewonnen + + + + the (definite article) Het huis. @@ -192,6 +232,8 @@ + + de een en de ander van twee, het tweetal Wat een schattige foto van beide honden. @@ -199,6 +241,9 @@ + + + alle ; allemaal Mag ik ervan uitgaan dat allen hiermee instemmen. @@ -224,12 +269,18 @@ + + + + your + + a small amount @@ -262,12 +313,6 @@ then - - - - persoonlijk voornaamwoord (meervoud) - - @@ -276,6 +321,7 @@ + the number 8 @@ -315,12 +361,22 @@ + + + + komt na nul en vóór twee, in Arabische cijfers 1, in Romeinse cijfers + + + + + + bezit aanduidend door een derde persoon vrouwelijk enkelvoud @@ -360,6 +416,11 @@ + + + + + (voornaamwoord) @@ -378,6 +439,7 @@ + the number 12 @@ -396,43 +458,20 @@ + + + + you - - - - Sie - - - - - - you - - - - - - a - - familienaam prefix - - - - wijst iets aan dat zich niet in de onmiddellijke nabijheid van de spreker bevindt - - - ter aankondiging van een bepaling - - @@ -479,12 +518,6 @@ de ene stof is door de andere gemengd - - - - in een bijzin die het nog niet geheel bekende antecedent nader bepaalt - - @@ -521,15 +554,6 @@ ontkenning - - - - geeft bezit aan - - - geeft herkomst aan - - @@ -678,9 +702,6 @@ then - - persoonlijk voornaamwoord (meervoud) - the number three @@ -750,24 +771,9 @@ you - - Sie - - - you - - - a - familienaam prefix - - wijst iets aan dat zich niet in de onmiddellijke nabijheid van de spreker bevindt - - - ter aankondiging van een bepaling - such @@ -804,9 +810,6 @@ de ene stof is door de andere gemengd - - in een bijzin die het nog niet geheel bekende antecedent nader bepaalt - een onbepaalde of niet-gespecificeerde, stoffelijke of onstoffelijke zaak; een ongenoemd voorwerp @@ -825,12 +828,6 @@ ontkenning - - geeft bezit aan - - - geeft herkomst aan - drukt uit dat men dit eigenlijk had kunnen weten diff --git a/extensions/wikidata-lexemes/output/nn.xml b/extensions/wikidata-lexemes/output/nn.xml index 4cf869e..92bf9d8 100644 --- a/extensions/wikidata-lexemes/output/nn.xml +++ b/extensions/wikidata-lexemes/output/nn.xml @@ -19,6 +19,9 @@ + + + some @@ -50,6 +53,7 @@ + we; first-person plural pronoun @@ -68,6 +72,8 @@ + + any @@ -276,12 +282,6 @@ used as a predicative - - - - the - - @@ -356,6 +356,8 @@ + + some (a few) @@ -549,6 +551,9 @@ + + + the other (out of two, when used in singular); the others (out of several, when used in plural) @@ -590,18 +595,21 @@ + we; first-person plural pronoun + second-person plural pronoun + she; third-person singular pronoun @@ -630,6 +638,9 @@ + + + (one's) own @@ -648,6 +659,9 @@ + + + a/an (indefinite article) @@ -690,6 +704,9 @@ + + + your, yours @@ -703,6 +720,9 @@ + + + his, her/hers or its @@ -936,6 +956,7 @@ + I; first-person singular pronoun; the speaker @@ -1038,6 +1059,9 @@ + + + my, mine @@ -1118,12 +1142,6 @@ her, hers - - - - your, yours (plural) - - @@ -1248,6 +1266,7 @@ + every @@ -1533,9 +1552,10 @@ + + talet 1 - @@ -1663,6 +1683,8 @@ + + rekkjetal til to @@ -1679,13 +1701,6 @@ tal - - - - talet 1 - - - @@ -1747,6 +1762,7 @@ + second-person singular pronoun @@ -1784,19 +1800,12 @@ + + this - - - - how/what about … - - - what if … - - @@ -1828,12 +1837,6 @@ - - - - the - - @@ -1843,6 +1846,8 @@ + + our @@ -1962,6 +1967,7 @@ + self @@ -2030,6 +2036,8 @@ + + all @@ -2057,6 +2065,8 @@ + + no/none @@ -2172,6 +2182,7 @@ + they; gender-neutral third-person singular pronoun @@ -2220,12 +2231,6 @@ - - - - that (one) - - @@ -2387,9 +2392,6 @@ used as a predicative - - the - used to imitate the sound of frogs or ducks @@ -2831,9 +2833,6 @@ her, hers - - your, yours (plural) - behind @@ -3137,9 +3136,6 @@ tal - - talet 1 - over, above @@ -3203,12 +3199,6 @@ this - - how/what about … - - - what if … - one; a general pronoun @@ -3227,9 +3217,6 @@ used to calm someone down - - the - while @@ -3416,9 +3403,6 @@ oh well, oh really - - that (one) - damn! diff --git a/extensions/wikidata-lexemes/output/oc.xml b/extensions/wikidata-lexemes/output/oc.xml index 8e614fe..854fdf0 100644 --- a/extensions/wikidata-lexemes/output/oc.xml +++ b/extensions/wikidata-lexemes/output/oc.xml @@ -10,18 +10,39 @@ + + + ce + + + + + + + + + + + + + + + + + the, definite article + bastiment fach per l'albèrgament diff --git a/extensions/wikidata-lexemes/output/oj.xml b/extensions/wikidata-lexemes/output/oj.xml index c4aa7f4..9832997 100644 --- a/extensions/wikidata-lexemes/output/oj.xml +++ b/extensions/wikidata-lexemes/output/oj.xml @@ -10,6 +10,7 @@ + gichi- diff --git a/extensions/wikidata-lexemes/output/pa.xml b/extensions/wikidata-lexemes/output/pa.xml index 85b85e3..20e0eee 100644 --- a/extensions/wikidata-lexemes/output/pa.xml +++ b/extensions/wikidata-lexemes/output/pa.xml @@ -10,6 +10,27 @@ + + + + + + + + + + + + + + + + + + + + + ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਪੁਰਾਣਾ ਲਹਿਜਾ ’ਚ ਹਉ @@ -21,6 +42,10 @@ + + + + ਓਧਰ, ਉਸ ਪਾਸੇ @@ -36,6 +61,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ਪੰਜਾਬੀ ਦਾ ਇਕੱਲਾ ਕਿਰਿਆ ਪਦ ਹੈ, ਆਮ ਹੋਂਦ ਲਈ ਚਿੰਨ੍ਹ ਦਿੱਤਾ @@ -64,6 +122,9 @@ + + + ਖ਼ੁਦ @@ -90,6 +151,10 @@ + + + + who, which, that, what @@ -102,12 +167,22 @@ + + + + any Tom, Dick, or Harry + + + + + + ਤਮਾਮ @@ -128,6 +203,11 @@ + + + + + ਮੁਸਲਮਾਨਾਂ ਨੂੰ ਪਹਿਲਾਂ ਲਫ਼ਜ਼ ਕਹਿੰਦੇ @@ -155,6 +235,7 @@ + ਪਰੇ ਹੋ, ਵਿੱਥ ਤੇ @@ -167,6 +248,7 @@ + ਅਲੱਗ, ਫ਼ਾਸਲੇ ਤੇ @@ -192,6 +274,7 @@ + ਬਗ਼ੈਰ, ਸਿਵਾ @@ -234,18 +317,29 @@ + + ਦਰਮਿਆਨ, ਅੱਧ, ਵਿਚਾਲੇ + + + + + (ਅਰਬੀ ਨਾਵਾਂ ਦੇ ਵਿੱਚ ਇਸਮ ਤੇ ਸਿਫ਼ਤ ਦੇ ਸ਼ੁਰੂ ਵਿੱਚ ਲੱਗ ਕੇ ਪੈਦਾ ਕਰ ਦੇਂਦਾ ਏ) + + + + and ਬਹੁਤ ਕੁਝ ਬਾਕੀ ਰਹਿ ਗਿਆ ਹੈ ਅਤੇ ਬਹੁਤ ਕੁਛ ਨਾ-ਠੀਕ ਪ੍ਰਗਟ ਹੋਇਆ ਹੈ @@ -275,6 +369,7 @@ + (‘ਜ਼ਰੂਰ’ ਮਾਅਨੇ ਨਾਲ ਹਰਫ਼ ਤਾਕੀਦ) @@ -289,6 +384,15 @@ + + + + + + + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਦੇ @@ -326,6 +430,10 @@ + + + + ਕਿਵੇਂ ਦਾ @@ -365,6 +473,10 @@ + + + + ਕਿਹੋ ਜਿਹਾ @@ -395,6 +507,7 @@ + ਮਿੱਟੀ ਵਿੱਚ ਰਲ ਜਾਵਣ @@ -514,6 +627,7 @@ + (“ਅਸੀਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) @@ -571,6 +685,7 @@ + ਉਚਾਈ ਤੇ, ਬੁਲੰਦੀ ਤੇ @@ -595,18 +710,55 @@ + + ਇਕੋ ਵਾਰ + + + + + + + + + + + + + + + + + + + + + + + + + + + ਪਹਿਲੇ ਪੁਰਖ ਦਾ + + + + + + + + ਦੂਜੇ ਪੁਰਖ ਦਾ @@ -632,6 +784,9 @@ + + + ਦੂਜੇ ਪੁਰਖ, ਜਮ੍ਹਾ ਨਿੱਜੀ ਪੜਨਾਂਵ @@ -661,12 +816,6 @@ ਫਿਰ, ਮੁੜ, ਭਾਵੇਂ - - - - ਜਦੋਂ, ਜਦ - - @@ -697,6 +846,7 @@ + ਕੋਲ, ਨੇੜੇ @@ -753,15 +903,6 @@ - - - - ਚੜ੍ਹਾ ਜਾਵਣ - - - ਜਰ ਜਾਵਣ - - @@ -777,6 +918,7 @@ + ਥੱਲੇ, ਨੀਚੇ @@ -786,6 +928,24 @@ + + + + + + + + + + + + + + + + + + (ਹਰਫ਼-ਏ-ਇਜ਼ਾਫ਼ਤ); ਕਾ, ਜੋ @@ -794,12 +954,20 @@ + + ਦੂਜੇ ਪੁਰਖ ਦਾ ਪੜਨਾਂਵ + + + + + + ਅੰਦਰ, ਵਿਚਾਲ਼ੇ, ਦਰਮਿਆਨ @@ -828,6 +996,7 @@ + how? @@ -836,12 +1005,20 @@ + + + + ਕਿਹੜੇ ਬੰਦੇ ਦਾ + + + + ਕੌਣ @@ -854,6 +1031,11 @@ + + + + + ਹਾਂ ਕਰਨ ਦਾ ਭਾਵ, ਹਾਮੀ, ਹੰਘੂਰਾ @@ -867,6 +1049,7 @@ + (ergative/agentive postposition, used for marking initiator in clauses) @@ -903,6 +1086,7 @@ + ਪੁਰਾਣੀ ਪੰਜਾਬੀ ਦਾ ਪਹਿਲਾ ਪੁਰਖ ਇੱਕ ਵਚਨ ਪੜਨਾਂਵ, ਮੈਂ @@ -921,6 +1105,12 @@ + + + + + + ਉਹ, ਇਹ, ਜੈਸਾ @@ -942,6 +1132,14 @@ + + + + + + + + ਦਾ, ਨਾ @@ -1047,6 +1245,13 @@ + + + + + + + ਸਮੇਤ, ਸੰਗ, ਦਾ ਸਾਥ @@ -1067,6 +1272,11 @@ + + + + + ਜੇਹੜਾ, ਜਿਸ ਨੂੰ @@ -1086,6 +1296,7 @@ + ਵਧੇਰਾ, ਸਗੋਂ @@ -1146,6 +1357,7 @@ + ਦੇ ਪਾਸੇ, ਪਰਨੇ @@ -1249,24 +1461,37 @@ + + + ਗਿਰਦੇ, ਚੁਫੇਰੇ, ਆਸੇ ਪਾਸੇ + + + + ਭੀਤਰ + ਵੱਲੋਂ, ਕੋਲੋਂ + + + + + ਕੇਹੜਾ @@ -1281,12 +1506,20 @@ + + + + how much, how many + + + + ਆਪੋ ਆਪਣਾ, ਜ਼ਾਤੀ @@ -1296,6 +1529,11 @@ + + + + + is not (definite sense) @@ -1328,6 +1566,8 @@ + + (“ਮੈਂ” ਮਾਅਨੇ ਤੋਂ ਲਾਹਿਕਾ) @@ -1356,6 +1596,7 @@ + ਦਾ, ਨਾ @@ -1377,6 +1618,7 @@ + ਲਾਗੇ, ਨੇੜੇ @@ -1386,6 +1628,14 @@ + + + + + + + + ਵਾਨ, ਵੰਤ, ਕਾਜ ਦਾ ਕਰਤਾ @@ -1432,6 +1682,10 @@ + + + + ਗੰਦੀ ਹਵਾ ਖ਼ਾਰਿਜ ਕਰਨ @@ -1512,6 +1766,10 @@ + + + + ਏਦਾਂ ਦਾ, ਇਸ ਤਰ੍ਹਾਂ ਦਾ @@ -1527,12 +1785,25 @@ + + + + + + ਇਥੇ ਕੁਝ ਮੱਦ + + + + + + + ਕਿਆ @@ -1546,26 +1817,11 @@ + ਕਿਧਰ, ਕਿਸ ਪਾਸੇ - - - - ਕੁਝ ਲੋਕਾਂ ਵਿਚੋਂ ਇਕ - - - - ਬਹੁਤਿਆਂ ਵਿਚੋਂ ਇਕ - - - ਕੁਝ ਵਿਰਲਾ ਇਕ - - - ਕੁਝ - - @@ -1574,6 +1830,14 @@ + + + + + + + + ਸ੍ਵੈ ਦਾ @@ -1587,6 +1851,14 @@ + + + + + + + + ਪਹਿਲਾ ਪੁਰਖ, ਜਮ੍ਹਾ ਪੜਨਾਂਵ @@ -1602,6 +1874,15 @@ + + + + + + + + + ਇਸ ਦਾ @@ -1620,6 +1901,10 @@ + + + + who all @@ -1632,6 +1917,7 @@ + (infix forming subtractive phase forms of verbs) @@ -1645,12 +1931,36 @@ + + + + + + + + + + + + + + + + + + + + + + (ਲੇਟ ਲਕਾਰ ਦਾ ਹਰਫ਼) + + ਦਾ @@ -1665,6 +1975,7 @@ + (ਜ਼ੋਰ ਦੇਣ ਦਾ ਅੰਸ਼) @@ -1750,12 +2061,6 @@ ਨੋਸ਼ ਕਰ ਦੇਈਦਾ - - - - ਯਾਂ, ਜਾਂ - - @@ -1810,6 +2115,7 @@ + ਦੇ ਬਗ਼ੈਰ @@ -1822,24 +2128,71 @@ + + + + + + + + ਪਹਿਲੇ ਪੁਰਖ, ਵਾਹਿਦ ਦਾ + + + + + + + + + ਤੀਜਾ ਪੁਰਖ ਵਿਚ ਮੱਦ ਨਹੀਂ ਨੇੜੇ + + + + + + + + + + + + + + + + + + + + + + + + + + ਉਸ ਕਾ + + + + whose @@ -1870,6 +2223,7 @@ + (ਸੁਤੰਤਰਤਾ ਕਿਰਦੰਤਕ ਦੇ ਲਹਿਕੇ ਦਾ ਅੱਖਰ) @@ -1913,12 +2267,32 @@ + + + ਅਫਰੀਂ! ਹੰਬਡੇ! + + + + + + + + + + + + + + + + + ਨਹੀਂ ਏ, ਨਾ ਹੋ @@ -1930,6 +2304,7 @@ + ਔਰਤਾਂ, ਕੁੜੀਆਂ ਨੂੰ ਮੁਖਾਤਿਬ ਕਰ ਕੇ ਬੋਲਦਾ @@ -1961,6 +2336,7 @@ + ਵਜਹੋਂ @@ -1974,23 +2350,10 @@ ਨਾਲ ਲੈ ਕੇ ਖੜਨ - - - - ਤਰਕ ਕਰ ਦੇਵਣ - - - ਤਲਾਕ ਕਰ ਦੇਵਣ - - - - - - ਲੇਟ ਜਾਵਣ, ਥੱਕ ਜਾਵਣ - - + + ਆਹਾ, ਇਹੋ @@ -2019,12 +2382,6 @@ ਮੁਖ਼ਾਲਿਫ਼ ਨੂੰ ਜਾ ਪੈਣ - - - - ਹਮਲਾ ਹੋਵਣ - - @@ -2082,6 +2439,10 @@ + + + + ਉਸ ਵਰਗਾ, ਉਹਦੇ ਰੰਗਾ @@ -2480,9 +2841,6 @@ ਫਿਰ, ਮੁੜ, ਭਾਵੇਂ - - ਜਦੋਂ, ਜਦ - ਕੋਈ ਗ਼ਲਤੀ ਨਾਲ ਕਰ ਜਾਵਣ @@ -2534,12 +2892,6 @@ ਲੈ ਕੇ ਸਾਂਭ ਰੱਖਣ - - ਚੜ੍ਹਾ ਜਾਵਣ - - - ਜਰ ਜਾਵਣ - (ਕਲਮਾ-ਏ-ਤਾਅਸੁਫ਼ ਦੇ ਬਤੌਰ) ਦੁੱਖ, ਰੰਜ, ਹੈਰਤ @@ -2994,18 +3346,6 @@ ਕਿਧਰ, ਕਿਸ ਪਾਸੇ - - ਕੁਝ ਲੋਕਾਂ ਵਿਚੋਂ ਇਕ - - - ਬਹੁਤਿਆਂ ਵਿਚੋਂ ਇਕ - - - ਕੁਝ ਵਿਰਲਾ ਇਕ - - - ਕੁਝ - ਇਸ ਲਈ ਜੇ @@ -3114,9 +3454,6 @@ ਨੋਸ਼ ਕਰ ਦੇਈਦਾ - - ਯਾਂ, ਜਾਂ - ਸ਼ਾਮਲ ਕਰ ਦੇਵਣ @@ -3246,15 +3583,6 @@ ਨਾਲ ਲੈ ਕੇ ਖੜਨ - - ਤਰਕ ਕਰ ਦੇਵਣ - - - ਤਲਾਕ ਕਰ ਦੇਵਣ - - - ਲੇਟ ਜਾਵਣ, ਥੱਕ ਜਾਵਣ - ਆਹਾ, ਇਹੋ @@ -3276,9 +3604,6 @@ ਮੁਖ਼ਾਲਿਫ਼ ਨੂੰ ਜਾ ਪੈਣ - - ਹਮਲਾ ਹੋਵਣ - ਕਿਵੇਂ, ਕਿੰਜ, ਕਿੱਦਾਂ diff --git a/extensions/wikidata-lexemes/output/pl.xml b/extensions/wikidata-lexemes/output/pl.xml index e2d7426..072d2b1 100644 --- a/extensions/wikidata-lexemes/output/pl.xml +++ b/extensions/wikidata-lexemes/output/pl.xml @@ -10,12 +10,17 @@ + + o jeden więcej niż dwadzieścia dziewięć + + + we; first-person plural pronoun @@ -179,6 +184,10 @@ + + + + first person singular, I @@ -247,6 +256,13 @@ + + + + + + + pierwszy posiłek dnia @@ -261,6 +277,11 @@ + + + + + you; second-person singular pronoun @@ -301,6 +322,13 @@ + + + + + + + he or it @@ -315,6 +343,10 @@ + + + + zaimek zwrotny @@ -407,6 +439,7 @@ + wulgarne określenie na oddawanie kału diff --git a/extensions/wikidata-lexemes/output/ps.xml b/extensions/wikidata-lexemes/output/ps.xml index c615c3f..1c112e2 100644 --- a/extensions/wikidata-lexemes/output/ps.xml +++ b/extensions/wikidata-lexemes/output/ps.xml @@ -16,6 +16,7 @@ + upon, on diff --git a/extensions/wikidata-lexemes/output/pt.xml b/extensions/wikidata-lexemes/output/pt.xml index f137a6e..83a5cfe 100644 --- a/extensions/wikidata-lexemes/output/pt.xml +++ b/extensions/wikidata-lexemes/output/pt.xml @@ -10,6 +10,9 @@ + + + a, an Após a morte de Lênin, em 1924, Stalin ascende ao poder, iniciando um período de autoritarismo @@ -17,6 +20,7 @@ + número cardinal Dois dias depois, convidou os seus dous validos para um banquete no palacio @@ -24,6 +28,23 @@ + + + + + + + + + + + + + + + + + pronominal pessoal masculino Para ele, nada existe além da natureza observável. @@ -43,6 +64,9 @@ + + + indica qualquer um dos indivíduos da espécie mencionada, mas sem determinar qual De um modo geral, literatura é o que foi escrito sobre algum assunto @@ -64,6 +88,9 @@ + + + um diferente @@ -99,6 +126,10 @@ + + + + pronominal pessoal feminino Mas ela não lhe foi fiel. @@ -114,6 +145,7 @@ + todo, todos Qualquer pessoa nota sua presença. @@ -143,6 +175,9 @@ + + + número ordinal para 1 @@ -215,6 +250,7 @@ + totalmente Cuidado com José, que ele é doidinho da silva. @@ -234,6 +270,9 @@ + + + artigo definido que denota gênero e número à palavra a que se refere @@ -277,6 +316,9 @@ + + + faz referência a algo que está perto de quem ouve Pegue esse copo aí. @@ -288,6 +330,7 @@ + indica direção Ele pediu que você fosse pra lá. @@ -317,6 +360,9 @@ + + + many, much @@ -348,6 +394,7 @@ + refere-se a algo anteriormente falado Vi Júlio, o qual não encontrava fazia anos. @@ -395,6 +442,9 @@ + + + faz referência a algo que está longe de quem fala e de quem ouve @@ -434,12 +484,26 @@ + número cardinal + + + + + + + + + + + + + pronome neutro de terceira pessoa @@ -486,6 +550,9 @@ + + + faz referência a algo que está perto de quem fala Pegue este copo aqui. @@ -539,6 +606,7 @@ + acalme-se @@ -554,6 +622,9 @@ + + + ave! @@ -570,6 +641,7 @@ + tu @@ -682,12 +754,22 @@ + + + + + + + indica posse na segunda pessoa + + + indica posse na terceira pessoa Entre seus triunfos, notável é a conquista da Índia, dominando o povo pelo seu poder místico. @@ -710,6 +792,12 @@ + + + + + + indica a primeira pessoa gramatical @@ -730,14 +818,9 @@ A previsão diz que choverá mais tarde, então teremos que esperar aqui mais um pouco. - - - - oh, ei - - + tu, você @@ -768,18 +851,33 @@ + + + + + + + indica posse na primeira pessoa + + + + + + + indica a segunda pessoa gramatical + indica a segunda pessoa gramatical @@ -814,18 +912,6 @@ that - - - - Nossa Senhora!, meu Deus! - - - - - - salve - - @@ -1329,9 +1415,6 @@ portanto, consequentemente A previsão diz que choverá mais tarde, então teremos que esperar aqui mais um pouco. - - oh, ei - tu, você @@ -1377,12 +1460,6 @@ that - - Nossa Senhora!, meu Deus! - - - salve - "at the price of bananas": cheaply diff --git a/extensions/wikidata-lexemes/output/rn.xml b/extensions/wikidata-lexemes/output/rn.xml index 4ffee5e..a8c29e0 100644 --- a/extensions/wikidata-lexemes/output/rn.xml +++ b/extensions/wikidata-lexemes/output/rn.xml @@ -8,24 +8,6 @@ license="https://creativecommons.org/publicdomain/zero/1.0/" version="1.0"> - - - - Quarante trois - - - - - - Quarante huit - - - - - - Cinquante-et-un - - @@ -35,218 +17,20 @@ with, together with (comitative marker) - - - - Cinquante huit - - - - - - Quarante neuf - - - - - - Cinquante sept - - - - - - Cinquante neuf - - - - - - Soixante - - - - - - Forty one - - - Quarante-et-un - - - - - - Forty two - - - Quarante deux - - - - - - Quarante quatre - - - - - - Cinquante cinq - - - - - - Soixante-et-un - - - - - - Quarante six - - - - - - Cinquante trois - - and - - - - Forty - - - Quarante - - - - - - Quarante cinq - - - - - - Quarante sept - - - - - - Cinquante quatre - - - - - - Cinquante - - - - - - Cinquante deux - - - - - - Cinquante six - - - - Quarante trois - - - Quarante huit - - - Cinquante-et-un - by (agent marker) with, together with (comitative marker) - - Cinquante huit - - - Quarante neuf - - - Cinquante sept - - - Cinquante neuf - - - Soixante - - - Forty one - - - Quarante-et-un - - - Forty two - - - Quarante deux - - - Quarante quatre - - - Cinquante cinq - - - Soixante-et-un - - - Quarante six - - - Cinquante trois - and - - Forty - - - Quarante - - - Quarante cinq - - - Quarante sept - - - Cinquante quatre - - - Cinquante - - - Cinquante deux - - - Cinquante six - diff --git a/extensions/wikidata-lexemes/output/ro.xml b/extensions/wikidata-lexemes/output/ro.xml index ffc43a1..726c4b0 100644 --- a/extensions/wikidata-lexemes/output/ro.xml +++ b/extensions/wikidata-lexemes/output/ro.xml @@ -10,6 +10,10 @@ + + + + I; first-person singular pronoun @@ -22,6 +26,7 @@ + one diff --git a/extensions/wikidata-lexemes/output/ru.xml b/extensions/wikidata-lexemes/output/ru.xml index b18a8aa..1ec52c6 100644 --- a/extensions/wikidata-lexemes/output/ru.xml +++ b/extensions/wikidata-lexemes/output/ru.xml @@ -27,6 +27,9 @@ + + + натуральное число Один из крупнейших словарей русского языка. @@ -34,6 +37,22 @@ + + + + + + + + + + + + + + + + помещённый внутрь @@ -123,12 +142,6 @@ подчёркивает, что действие или предмет вполне соответствуют чему-либо предварительно упомянутому - - - - океан на Земле - - @@ -195,15 +208,6 @@ указание на цель или причину, из-за - - - - календарная дата - первая в году - - - праздник начала года - - @@ -251,6 +255,7 @@ + внутрь (о направлении) @@ -333,6 +338,7 @@ + употребляется как вопросительный отклик, ответ на обращение или при переспросе нерасслышанного @@ -348,6 +354,14 @@ + + + + + + + + тот предмет, человек и т. п.; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным м. р. ед. ч. Тогда он оглянулся назад и, увидев меня, позвал меня. @@ -358,6 +372,8 @@ + + выражает несогласие со словами собеседника, возражение ему, увещание ― Ел? ― И-и! Боже упаси, и смотреть не стал… @@ -370,6 +386,7 @@ + русская буква @@ -380,12 +397,6 @@ употребляется при выражении эмоций - - - - океан на Земле - - @@ -400,6 +411,14 @@ + + + + + + + + это лицо женского пола или этот объект, ассоциируемый с женским родом; указывает на предмет речи, выраженный в предшествующем или в последующем повествовании существительным женского рода Поэзия — светлый и свежий водоём, и когда душа прикасается к этой влаге, она пьёт из источника вечной юности. @@ -440,6 +459,18 @@ + + + + + + + + + + + + данный, находящийся там, далеко от говорящего @@ -496,12 +527,20 @@ + + + + натуральное число + + + + употребляется для формирования вопроса, с помощью которого говорящий хочет получить информацию о предмете, признаке, действии @@ -719,6 +758,7 @@ + обозначение исходной точки передвижения предмета или информации @@ -814,6 +854,10 @@ + + + + продукт питания пчёл @@ -865,6 +909,8 @@ + + указывает на объект глагола: предмет, на который направлена мысль, речь, чувство, действие @@ -898,6 +944,14 @@ + + + + + + + + местоимение первого лица @@ -942,12 +996,23 @@ + + натуральное число + + + + + + + + + число @@ -961,12 +1026,6 @@ падение концентрации озона - - - - океан на Земле - - @@ -981,6 +1040,12 @@ + + + + + + указывает на (обычно ранее упомянутые) предметы (лица) во множественном числе, к которым говорящий не относит ни себя, ни адресатов высказывания @@ -1008,6 +1073,9 @@ + + + некоторое небольшое число @@ -1099,6 +1167,7 @@ + для сослагательного наклонения @@ -1138,6 +1207,10 @@ + + + + большое количество, значительное число кого-либо, чего-либ @@ -1156,6 +1229,7 @@ + указывает на место или объект, с которого что-либо удаляется, снимается @@ -1201,6 +1275,16 @@ + + + + + + + + + + при обращении к знакомому собеседнику @@ -1310,6 +1394,19 @@ + + + + + + + + + + + + + натуральное число между 999 и 1001, десять сотен Вы, я вижу, бескорыстно любите деньги. Скажите, какая сумма вам нравится? ― Пять тысяч, ― быстро ответил Балаганов. @@ -1332,6 +1429,15 @@ + + + + + + + + + число @@ -1350,6 +1456,7 @@ + по направлению к, соприкасаясь с @@ -1372,18 +1479,6 @@ в вводных словосочетаниях: к счастью, к несчастью, к сожалению - - - - океан на Земле - - - - - - океан на Земле - - @@ -1401,6 +1496,18 @@ + + + + + + + + + + + + целый, полный, без исключений @@ -1422,6 +1529,18 @@ + + + + + + + + + + + + данный, находящийся здесь, близко к говорящему или слушающему @@ -1458,6 +1577,7 @@ + пространственное отношение - свыше, поверх @@ -1575,9 +1695,6 @@ подчёркивает, что действие или предмет вполне соответствуют чему-либо предварительно упомянутому - - океан на Земле - предупреждение об опасности @@ -1638,12 +1755,6 @@ указание на цель или причину, из-за - - календарная дата - первая в году - - - праздник начала года - натуральное число @@ -1774,9 +1885,6 @@ употребляется при выражении эмоций - - океан на Земле - за вычетом, вычтя @@ -2199,9 +2307,6 @@ падение концентрации озона - - океан на Земле - газы, вызывающие парниковый эффект @@ -2482,12 +2587,6 @@ в вводных словосочетаниях: к счастью, к несчастью, к сожалению - - океан на Земле - - - океан на Земле - вопросительная частица diff --git a/extensions/wikidata-lexemes/output/sa.xml b/extensions/wikidata-lexemes/output/sa.xml index 1b8ebd5..d92576a 100644 --- a/extensions/wikidata-lexemes/output/sa.xml +++ b/extensions/wikidata-lexemes/output/sa.xml @@ -16,6 +16,11 @@ + + + + + I @@ -40,6 +45,9 @@ + + + کو، کوݨ @@ -418,6 +426,12 @@ + + + + + + who, which, what @@ -499,6 +513,14 @@ + + + + + + + + (लट) @@ -509,12 +531,6 @@ (verbal affix creating nominal forms) - - - - (करण) - - @@ -596,14 +612,9 @@ اور - - - - کَوݨ - - + بھوِکھت کال دا حرف @@ -619,6 +630,7 @@ + one @@ -637,6 +649,7 @@ + (affix forming passive verb stems) @@ -697,6 +710,10 @@ + + + + this @@ -794,12 +811,6 @@ (دیکھݨ دا عمل) - - - - (being) - - @@ -1127,9 +1138,6 @@ (verbal affix creating nominal forms) - - (करण) - (اُڈݨ دا عمل) @@ -1172,9 +1180,6 @@ اور - - کَوݨ - بھوِکھت کال دا حرف @@ -1280,9 +1285,6 @@ (دیکھݨ دا عمل) - - (being) - (becoming bad or corrupted) diff --git a/extensions/wikidata-lexemes/output/sd.xml b/extensions/wikidata-lexemes/output/sd.xml index b702c54..aa67e4f 100644 --- a/extensions/wikidata-lexemes/output/sd.xml +++ b/extensions/wikidata-lexemes/output/sd.xml @@ -16,6 +16,15 @@ + + + + + + + + + میں @@ -34,6 +43,22 @@ + + + + + + + + + + + + + + + + ਦਾ @@ -41,6 +66,11 @@ + + + + + اے، ہے @@ -50,30 +80,102 @@ + + توں + + + + + + + + + + + + + + + + + ایہہ + + ایہہ جو + + ہر کوئی + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + جو، وارو @@ -81,18 +183,36 @@ + + + + + + ساڈا + + + + + + + + + واهر لاءِ دانهن + + + اُتّے @@ -120,12 +240,31 @@ + + + + + + + + + + + + + جيڪو + + + + + + وٽ، ڀر، لڳ @@ -154,18 +293,37 @@ + + + + + + + + + + + + + ڪوئِي هڪڙو + + + + + اسیں + کیوں @@ -184,6 +342,15 @@ + + + + + + + + + کوݨ @@ -208,12 +375,21 @@ + + + ڏي، ڪول + + + + + + سان، سين ڀيڙو @@ -221,12 +397,24 @@ + + + + + تُوں + + + + + + + اندر، منجهه @@ -242,30 +430,89 @@ + + + + + + + + + + + + + + + + + + + + تسیں + + + + + + + + + + + + + + + + + + + اوہ + + + + + + + + خود، پنڊ + + + + + + ويجهو، نزديڪ + + + + + + میرا @@ -278,12 +525,15 @@ + + اوہ جو + کیوں diff --git a/extensions/wikidata-lexemes/output/sk.xml b/extensions/wikidata-lexemes/output/sk.xml index 8b9f384..e10f285 100644 --- a/extensions/wikidata-lexemes/output/sk.xml +++ b/extensions/wikidata-lexemes/output/sk.xml @@ -247,6 +247,7 @@ + smerovanie diff --git a/extensions/wikidata-lexemes/output/sq.xml b/extensions/wikidata-lexemes/output/sq.xml index be197fd..3b3220c 100644 --- a/extensions/wikidata-lexemes/output/sq.xml +++ b/extensions/wikidata-lexemes/output/sq.xml @@ -90,6 +90,9 @@ + + + (attributive proclitic) @@ -108,6 +111,8 @@ + + we diff --git a/extensions/wikidata-lexemes/output/sr.xml b/extensions/wikidata-lexemes/output/sr.xml index e43da4c..daa114d 100644 --- a/extensions/wikidata-lexemes/output/sr.xml +++ b/extensions/wikidata-lexemes/output/sr.xml @@ -16,6 +16,7 @@ + предлог који означава де је нешто заједно, или коришћено @@ -70,6 +71,7 @@ + протеже се између једног и другог у времену или простору; између @@ -82,6 +84,7 @@ + ниже него; према доле @@ -190,6 +193,7 @@ + preko; više nego; više vrijedno; prima gore diff --git a/extensions/wikidata-lexemes/output/sv.xml b/extensions/wikidata-lexemes/output/sv.xml index 56b2818..2740459 100644 --- a/extensions/wikidata-lexemes/output/sv.xml +++ b/extensions/wikidata-lexemes/output/sv.xml @@ -111,6 +111,7 @@ + efternamn I dag behandlar vi Anderssons betänkande. @@ -130,12 +131,16 @@ + + + hälsning + siffran 34 @@ -204,6 +209,8 @@ + + first @@ -244,6 +251,8 @@ + + definite article, when preceding an adjective preceding a noun @@ -296,14 +305,9 @@ ord som används för att visa nekande - - - - motsats - - + som har nummer 11 i ordningen @@ -337,6 +341,8 @@ + + pronomen för personer av manskön Det var hans ord. @@ -352,6 +358,10 @@ + + + + you (plural or formal singular) @@ -364,6 +374,7 @@ + talet mellan fyra och sex Fyra av fem nya jobb skapas bland Sveriges småföretag och det är där potentialen finns. @@ -371,6 +382,10 @@ + + + + talarna eller talaren och minst en till Låt oss enas om en sak. @@ -390,6 +405,9 @@ + + + första person singular Det är min önskan. @@ -422,6 +440,7 @@ + naturligt tal @@ -490,6 +509,7 @@ + samordnar språkliga enheter (ord, fraser, satsdelar och satser) på samma grammatiska nivå Envar skall äga rätt till tankefrihet, samvetsfrihet och religionsfrihet. @@ -497,6 +517,11 @@ + + + + + inte den tidigare nämnda @@ -518,6 +543,8 @@ + + (third-person singular personal possessive) belonging to him @@ -635,6 +662,7 @@ + gjort bort sig @@ -672,6 +700,11 @@ + + + + + someone/anyone @@ -709,6 +742,7 @@ + talet 700 @@ -751,6 +785,9 @@ + + + viss, en del @@ -775,6 +812,7 @@ + of (a part of something) @@ -788,12 +826,16 @@ + + personligt pronomen som refererar till en kvinna + + inte någon @@ -881,12 +923,15 @@ + när något inte går som man vill + + one @@ -987,6 +1032,9 @@ + + + hela mängden @@ -1106,6 +1154,8 @@ + + som tillhör mig @@ -1134,6 +1184,7 @@ + indefinite article @@ -1170,6 +1221,10 @@ + + + + personligt pronomen @@ -1204,6 +1259,8 @@ + + utan hjälp eller påverkan @@ -1428,9 +1485,6 @@ ord som används för att visa nekande - - motsats - som har nummer 11 i ordningen diff --git a/extensions/wikidata-lexemes/output/sw.xml b/extensions/wikidata-lexemes/output/sw.xml index 01bc591..cc682e2 100644 --- a/extensions/wikidata-lexemes/output/sw.xml +++ b/extensions/wikidata-lexemes/output/sw.xml @@ -19,6 +19,7 @@ + (third-person plural personal pronoun) they, them @@ -43,18 +44,27 @@ + (second-person singular personal pronoun) you + + (second-person plural personal pronoun) you, ye + + + + + + any @@ -67,12 +77,28 @@ + + (first-person singular pronoun) I, me + + + + + + + + + + + + + + (prefixed to verb roots for object concord) @@ -91,6 +117,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + (prefixed to verbs in the affirmative for subject concord) @@ -103,12 +155,33 @@ + + + + + + + + + + (genitive-associative relationship marking connector) + + + + + + + + + + + (distinguishes morphological noun classes) @@ -121,6 +194,7 @@ + (as copulative verb) am, is, are @@ -136,12 +210,19 @@ + + + + + + (prefixed to verbs in the negative for subject concord) + (third-person singular personal pronoun) he, she @@ -154,6 +235,8 @@ + + (first-person plural personal pronoun) we, us diff --git a/extensions/wikidata-lexemes/output/ta.xml b/extensions/wikidata-lexemes/output/ta.xml index de6837d..5a07362 100644 --- a/extensions/wikidata-lexemes/output/ta.xml +++ b/extensions/wikidata-lexemes/output/ta.xml @@ -10,12 +10,28 @@ + + + + + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத ஆணைச் சுட்டும் பெயர் + + + + + + + + + first person singular, I @@ -28,13 +44,24 @@ + + + + + + + + one - + + + + that, indicating something that is far away from both the speaker and the listener @@ -46,6 +73,7 @@ + five, a numeral @@ -58,18 +86,34 @@ + + you, second person pronoun (informal, impolite) Used while talking to person of lower age or of same age, with equal social status. Not used against elder people + + + + + + + உயர்திணைப் படர்க்கையில் அருகில் இல்லாத பெண்ணைச் சுட்டும் பெயர் + + + + + + + அருகில் இல்லாத படர்க்கை இடத்து ஆணையோ பெண்ணையோ மரியாதையுடன் சுட்டும் பெயர் @@ -86,7 +130,7 @@ one - + that, indicating something that is far away from both the speaker and the listener diff --git a/extensions/wikidata-lexemes/output/tl.xml b/extensions/wikidata-lexemes/output/tl.xml index a00a7ea..fa9b72e 100644 --- a/extensions/wikidata-lexemes/output/tl.xml +++ b/extensions/wikidata-lexemes/output/tl.xml @@ -16,12 +16,19 @@ + + + + + long live! + + forms the complete aspect in all triggers except the active trigger diff --git a/extensions/wikidata-lexemes/output/tr.xml b/extensions/wikidata-lexemes/output/tr.xml index 70fa943..e90b75a 100644 --- a/extensions/wikidata-lexemes/output/tr.xml +++ b/extensions/wikidata-lexemes/output/tr.xml @@ -10,6 +10,7 @@ + you (singular) sen kökü değil, ancak kök seni taşıyor. @@ -17,12 +18,19 @@ + + + (converb which, attached to both duplicates of a duplicated verb, expresses a continuous/repeated manner of action) + + + + tümce içinde görevdeş iki öğeyi birbirine bağlar @@ -48,6 +56,9 @@ + + + (indicates genitive relationship between preceding and following noun) @@ -93,6 +104,9 @@ + + + (question particle) @@ -174,6 +188,10 @@ + + + + sözcüğün sonuna getirilerek birliktelik, işteşlik, araç, neden ya da durum bildiren tümleçler oluşturmaya yarar @@ -263,6 +281,7 @@ + as well/too/also @@ -296,6 +315,7 @@ + oğul @@ -375,6 +395,7 @@ + we @@ -433,6 +454,13 @@ + + + + + + + (generalizing epistemic modality marker) @@ -451,6 +479,7 @@ + ilişkin, değgin Zihnimden Afganistan’a âit bütün mâlûmâtımı geçirmekteyim @@ -458,6 +487,7 @@ + Tekil üçüncü şahısı gösteren söz @@ -526,6 +556,11 @@ + + + + + kişi kendini belirtir diff --git a/extensions/wikidata-lexemes/output/tw.xml b/extensions/wikidata-lexemes/output/tw.xml index b5b116a..04272cb 100644 --- a/extensions/wikidata-lexemes/output/tw.xml +++ b/extensions/wikidata-lexemes/output/tw.xml @@ -10,6 +10,7 @@ + Ɛyɛ edu mu mmɔho du @@ -28,24 +29,28 @@ + ɔyɛ mmoa bi a kasɛɛ nni wɔn mu + obi a ne nua yɛ barima + nipa a ɔyɛ ɔbaa na ɔnyinii pii. + adeɛ bi ɛyɛ dwuma a ɛmerɛ @@ -64,6 +69,7 @@ + ɔyɛ mmoa be a nnompe nni wcn mu diff --git a/extensions/wikidata-lexemes/output/ug.xml b/extensions/wikidata-lexemes/output/ug.xml index 7db7c5b..7fef26b 100644 --- a/extensions/wikidata-lexemes/output/ug.xml +++ b/extensions/wikidata-lexemes/output/ug.xml @@ -22,12 +22,22 @@ + + + + + we; first-person plural pronoun + + + + + I; first person singular pronoun diff --git a/extensions/wikidata-lexemes/output/uk.xml b/extensions/wikidata-lexemes/output/uk.xml index ea52c06..dd4980f 100644 --- a/extensions/wikidata-lexemes/output/uk.xml +++ b/extensions/wikidata-lexemes/output/uk.xml @@ -47,12 +47,20 @@ + + + відсутність когось + + + + + украинская фамилия @@ -83,6 +91,10 @@ + + + + позначає предмет мовлення, виражений іменником у множині до або після цього займенника @@ -92,6 +104,15 @@ + + + + + + + + + українське прізвище @@ -119,6 +140,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + числівник, що означає число 1 diff --git a/extensions/wikidata-lexemes/output/uz.xml b/extensions/wikidata-lexemes/output/uz.xml index a795323..4f2a8fd 100644 --- a/extensions/wikidata-lexemes/output/uz.xml +++ b/extensions/wikidata-lexemes/output/uz.xml @@ -28,6 +28,7 @@ + (indicates genitive relationship between preceding and following noun) diff --git a/extensions/wikidata-lexemes/output/vi.xml b/extensions/wikidata-lexemes/output/vi.xml index 72b3233..1892311 100644 --- a/extensions/wikidata-lexemes/output/vi.xml +++ b/extensions/wikidata-lexemes/output/vi.xml @@ -10,6 +10,7 @@ + liên kết các từ và câu với nhau diff --git a/extensions/wikidata-lexemes/output/wo.xml b/extensions/wikidata-lexemes/output/wo.xml index b2e42ae..88f1806 100644 --- a/extensions/wikidata-lexemes/output/wo.xml +++ b/extensions/wikidata-lexemes/output/wo.xml @@ -10,12 +10,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + the; these, those + + + + + + + (links nominals in genitive construction) of diff --git a/extensions/wikidata-lexemes/output/yi.xml b/extensions/wikidata-lexemes/output/yi.xml index c509067..f8125a5 100644 --- a/extensions/wikidata-lexemes/output/yi.xml +++ b/extensions/wikidata-lexemes/output/yi.xml @@ -25,12 +25,14 @@ + she; third-person singular pronoun + not @@ -58,6 +60,7 @@ + we; first-person plural pronoun @@ -91,6 +94,7 @@ + with @@ -106,12 +110,16 @@ + + + definite article; the + on @@ -149,12 +157,6 @@ any, no matter - - - - what - - @@ -163,6 +165,7 @@ + in front of @@ -175,6 +178,7 @@ + which/what kind of @@ -208,18 +212,23 @@ + he; masculine third person pronoun + + I; first-person singular pronoun + + second-person plural pronoun @@ -232,12 +241,15 @@ + + after + of @@ -262,6 +274,8 @@ + + second-person singular pronoun @@ -286,6 +300,7 @@ + a, an; indefinite article @@ -389,9 +404,6 @@ any, no matter - - what - God forbid diff --git a/extensions/wikidata-lexemes/output/za.xml b/extensions/wikidata-lexemes/output/za.xml index 62377e4..6f24a2f 100644 --- a/extensions/wikidata-lexemes/output/za.xml +++ b/extensions/wikidata-lexemes/output/za.xml @@ -116,12 +116,6 @@ ten - - - - ten thousand - - @@ -140,12 +134,6 @@ zero - - - - two - - @@ -212,9 +200,6 @@ ten - - ten thousand - I; first-person singular pronoun @@ -224,9 +209,6 @@ zero - - two - six diff --git a/extensions/wikidata-lexemes/output/zu.xml b/extensions/wikidata-lexemes/output/zu.xml index 2b58fe1..2eff1e1 100644 --- a/extensions/wikidata-lexemes/output/zu.xml +++ b/extensions/wikidata-lexemes/output/zu.xml @@ -10,6 +10,8 @@ + + thou (second-person singular pronoun) @@ -28,6 +30,15 @@ + + + + + + + + + this @@ -46,6 +57,18 @@ + + + + + + + + + + + + (negative subject concord) @@ -58,6 +81,24 @@ + + + + + + + + + + + + + + + + + + full noun prefix @@ -187,12 +228,37 @@ + + + + + + + + + + + (regular relative concord) + + + + + + + + + + + + + + (basic noun prefix, without the augment) @@ -211,12 +277,24 @@ + I (first-person singular pronoun) + + + + + + + + + + + (adjectival concord) @@ -235,6 +313,17 @@ + + + + + + + + + + + (subject concord)