diff --git a/.gitignore b/.gitignore index 8b04b78..5f08507 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ __pycache__/ # Large generated cache files (rebuild locally) data/benyehuda_index.json +data/colliding_forms.json # Audio directories (large; rebuild locally) data/audio/ diff --git a/apkg_builder.py b/apkg_builder.py index d038b9e..2aa03fe 100644 --- a/apkg_builder.py +++ b/apkg_builder.py @@ -35,7 +35,7 @@ COMPLETE_PLURAL_DECK_ID = 1_234_567_903 # Release version tag added to all notes so users can identify which release # their cards come from (visible in Anki's Browse view and card info). -RELEASE_TAG = "v0.16" +RELEASE_TAG = "v0.17" # Regex for extracting emoji and Hebrew prepositions from meaning strings EMOJI_RE = re.compile(r"[\U0001F000-\U0001FFFF\u2600-\u27FF\u2300-\u23FF\uFE00-\uFE0F]+") @@ -185,18 +185,34 @@ CARD_CSS = """ font-weight: normal; color: #555; } +.sec-table { + display: table; + margin: 6px auto 0; + direction: rtl; + border-collapse: collapse; +} .sec-label { + display: table-row; font-size: 28px; font-weight: normal; color: #222; direction: rtl; - text-align: center; - margin-top: 6px; } .sec-key { + display: table-cell; font-size: 28px; color: #222; font-weight: bold; + text-align: right; + padding: 2px 0 2px 8px; + white-space: nowrap; +} +.sec-val { + display: table-cell; + font-size: 28px; + color: #222; + text-align: right; + padding: 2px 0; } .definitions { direction: rtl; @@ -231,6 +247,7 @@ CARD_CSS = """ .root-info { color: #e0e0e0; } .sec-label { color: #e0e0e0; } .sec-key { color: #e0e0e0; } + .sec-val { color: #e0e0e0; } .conf-entry { color: #ddd; } .hint { color: #777; } .voice-label { color: #888; } @@ -255,14 +272,17 @@ VOCAB_BACK_HEB = """
{{Meaning}}
{{#Emoji}}
{{Emoji}}
{{/Emoji}} {{^Emoji}}{{#Image}}
{{/Image}}{{/Emoji}} -{{#Root}}
שֹׁרֶשׁ: {{Root}}
{{/Root}} -{{#PoS}}
חֵלֶק דִּיבּוּר: {{PoS}}
{{/PoS}} +
+{{#WordNoNikkud}}
לְלֹא נִיקּוּד:{{WordNoNikkud}}
{{/WordNoNikkud}} +{{#Root}}
שֹׁרֶשׁ:{{Root}}
{{/Root}} +{{#PoS}}
חֵלֶק דִּיבּוּר:{{PoS}}{{#Gender}}, {{Gender}}{{/Gender}}
{{/PoS}} +{{#Plural}}
רַבִּים:{{Plural}}
{{/Plural}} +
{{#SharedRoots}} -
מִילִים קְשׁוּרוֹת:
+
+
מִילִים קְשׁוּרוֹת:
{{SharedRoots}}
{{/SharedRoots}} -{{#Plural}}
רַבִּים: {{Plural}}
{{/Plural}} -{{#Frequency}}
#{{Frequency}}
{{/Frequency}} """ VOCAB_FRONT_ENG = """ @@ -277,14 +297,17 @@ VOCAB_BACK_ENG = """
{{Word}}{{#Prep}} {{Prep}}{{/Prep}}
{{#Audio}}
{{Audio}}
{{/Audio}} -{{#WordNoNikkud}}
לְלֹא נִיקּוּד: {{WordNoNikkud}}
{{/WordNoNikkud}} -{{#Root}}
שֹׁרֶשׁ: {{Root}}
{{/Root}} -{{#PoS}}
חֵלֶק דִּיבּוּר: {{PoS}}
{{/PoS}} +
+{{#WordNoNikkud}}
לְלֹא נִיקּוּד:{{WordNoNikkud}}
{{/WordNoNikkud}} +{{#Root}}
שֹׁרֶשׁ:{{Root}}
{{/Root}} +{{#PoS}}
חֵלֶק דִּיבּוּר:{{PoS}}{{#Gender}}, {{Gender}}{{/Gender}}
{{/PoS}} +{{#Plural}}
רַבִּים:{{Plural}}
{{/Plural}} +
{{#SharedRoots}} -
מִילִים קְשׁוּרוֹת:
+
+
מִילִים קְשׁוּרוֹת:
{{SharedRoots}}
{{/SharedRoots}} -{{#Plural}}
רַבִּים: {{Plural}}
{{/Plural}} """ VOCAB_FRONT_CLOZE = """ @@ -318,6 +341,7 @@ VOCAB_MODEL = genanki.Model( {"name": "Prep"}, {"name": "Hint"}, {"name": "Plural"}, + {"name": "Gender"}, {"name": "ClozeExample"}, {"name": "ClozeHint"}, ], @@ -359,11 +383,16 @@ CONJ_BACK = """ {{FrontSide}}
{{ConjugatedForm}}{{#Prep}} ({{Prep}}){{/Prep}}
{{#Audio}}
{{Audio}}
{{/Audio}} -{{#Meaning}}
{{Meaning}}
{{/Meaning}} -
שֹׁרֶשׁ: {{Root}}
-
בִּנְיָן: {{Binyan}}
-{{#RelatedVocab}}
מִילִים קְשׁוּרוֹת:
-
{{RelatedVocab}}
{{/RelatedVocab}} +{{#Meaning}}
{{Meaning}}
{{/Meaning}} +
+
שֹׁרֶשׁ:{{Root}}
+
בִּנְיָן:{{Binyan}}
+
+{{#RelatedVocab}} +
+
מִילִים קְשׁוּרוֹת:
+
{{RelatedVocab}}
+{{/RelatedVocab}} """ CONJ_CSS = CARD_CSS @@ -703,6 +732,32 @@ def _forms_list_to_dict(forms_list: list[dict]) -> dict[str, dict]: return result +# Hebrew prefix letters (אותיות השימוש): בהוכלמש +_PREFIX_LETTERS = frozenset("בהוכלמש") + + +def _cloze_prefix_len(cloze_token: str, word_nikkud: str) -> int: + """Return the number of characters in the cloze token that are prefix (not part of the word). + + For "בַּתּוֹר" with word_nikkud "תּוֹר", returns 2 (ב + patach = 2 chars). + Returns 0 if the token starts with the word directly. + """ + if not word_nikkud or not cloze_token: + return 0 + # If the token starts with the word nikkud, no prefix + if cloze_token.startswith(word_nikkud): + return 0 + # Check if word nikkud appears as a suffix of the token + idx = cloze_token.find(word_nikkud) + if idx > 0: + # Verify prefix chars are valid Hebrew prefix letters + prefix_part = cloze_token[:idx] + base_letters = [c for c in prefix_part if "\u05d0" <= c <= "\u05ea"] + if base_letters and all(c in _PREFIX_LETTERS for c in base_letters): + return idx + return 0 + + def build_vocab_deck( words: dict[str, dict], limit: int | None = None, @@ -758,7 +813,11 @@ def build_vocab_deck( pos_heb = entry.get("pos_hebrew", "") meaning = EMOJI_RE.sub("", entry.get("meaning", "") or "").strip() meaning = HBPAREN_RE.sub("", meaning).strip() - meaning = re.sub(r"\s{2,}", " ", meaning).strip(", ") + # Strip remaining bare Hebrew text (spoiler: ktiv male visible in English meaning) + meaning = re.sub(r"[\u0590-\u05FF][\u0590-\u05FF\u0591-\u05C7\s\-]*", "", meaning) + meaning = re.sub(r"[;:]\s*—", " —", meaning) # clean "; —" → " —" + meaning = re.sub(r";\s*:", ";", meaning) # clean "; :" → ";" + meaning = re.sub(r"\s{2,}", " ", meaning).strip(", ;:") meaning = re.sub(r"(\w)\(", r"\1 (", meaning) # space before opening paren meaning = re.sub(r",(\S)", r", \1", meaning) # space after comma meaning_raw = entry.get("meaning_raw", "") or "" @@ -850,10 +909,13 @@ def build_vocab_deck( start = cloze_data.get("cloze_word_start") end = cloze_data.get("cloze_word_end") if cloze_text and start is not None and end is not None: - cloze_example = cloze_text[:start] + "_____" + cloze_text[end:] - # Clean up duplicate/misplaced quotation marks + # Preserve Hebrew prefix letters in the cloze blank + # e.g. "בַּתּוֹר" for word "תּוֹר" → "בַּ_____" not "_____" + cloze_token = cloze_text[start:end] + prefix_chars = _cloze_prefix_len(cloze_token, word_nikkud) + cloze_example = cloze_text[: start + prefix_chars] + "_____" + cloze_text[end:] + # Clean up duplicate adjacent quotation marks (e.g. "" → ") cloze_example = re.sub(r'["״]\s*["״]', '"', cloze_example) - cloze_example = re.sub(r'^\s*["״]\s*', "", cloze_example) raw_hint = cloze_data.get("cloze_hint") or "" if raw_hint: cloze_hint = raw_hint @@ -886,12 +948,19 @@ def build_vocab_deck( parts.append(f'') related_html = "\n".join(parts) - # Plural form (nouns only — guard against adjective/verb inflection bleed) + # Plural form and gender (nouns only) plural_str = "" + gender_str = "" if pos_raw.startswith("Noun"): noun_inflection = entry.get("noun_inflection") - if noun_inflection and noun_inflection.get("plural"): - plural_str = noun_inflection["plural"].get("nikkud", "") + if noun_inflection: + if noun_inflection.get("plural"): + plural_str = noun_inflection["plural"].get("nikkud", "") + gender_raw = noun_inflection.get("gender") or "" + if gender_raw == "masculine": + gender_str = "זָכָר" + elif gender_raw == "feminine": + gender_str = "נְקֵבָה" # Image image_tag = "" @@ -927,6 +996,7 @@ def build_vocab_deck( prep_str, hint_str, plural_str, + gender_str, cloze_example, cloze_hint, ], @@ -941,7 +1011,8 @@ def build_vocab_deck( prep_count = sum(1 for n in deck.notes if n.fields[12]) hint_count = sum(1 for n in deck.notes if n.fields[13]) plural_count = sum(1 for n in deck.notes if n.fields[14]) - cloze_count = sum(1 for n in deck.notes if n.fields[15]) + gender_count = sum(1 for n in deck.notes if n.fields[15]) + cloze_count = sum(1 for n in deck.notes if n.fields[16]) unlisted = sum(1 for _, e in sorted_entries if (e.get("frequency") or 999_999) >= 999_999) if emoji_count: logger.info(f" Emoji extracted: {emoji_count} words") @@ -951,6 +1022,8 @@ def build_vocab_deck( logger.info(f" Eng→Heb hints: {hint_count} words") if plural_count: logger.info(f" Noun plurals on vocab cards: {plural_count} words") + if gender_count: + logger.info(f" Noun gender on vocab cards: {gender_count} words") if cloze_count: logger.info(f" Sentence cloze cards: {cloze_count} words") logger.info(f" Unlisted words (not in frequency corpus): {unlisted}/{len(sorted_entries)}") @@ -1330,10 +1403,12 @@ def build_confusables_deck( w = e["word"]["nikkud"] m = e.get("meaning", "") p = e.get("pos_hebrew", "") - pos_label = f" ({p})" if p else "" + pos_div = f'
{p}
' if p else "" defs_parts.append( - f'
{w}' - f" = {m}{pos_label}
" + f'
' + f'{w}' + f'
{m}
' + f"{pos_div}
" ) if include_audio: af = e.get("audio_file", "") or "" @@ -1397,8 +1472,10 @@ PLURAL_BACK_SG = """ {{FrontSide}}
{{Plural}}
{{#PluralAudio}}
{{PluralAudio}}
{{/PluralAudio}} -{{#Gender}}
מִין: {{Gender}}
{{/Gender}} -{{#Mishkal}}
מִשְׁקָל: {{Mishkal}}
{{/Mishkal}} +
+{{#Gender}}
מִין:{{Gender}}
{{/Gender}} +{{#Mishkal}}
מִשְׁקָל:{{Mishkal}}
{{/Mishkal}} +
""" PLURAL_FRONT_PL = """ @@ -1411,9 +1488,11 @@ PLURAL_BACK_PL = """ {{FrontSide}}
{{Singular}}
{{#SingularAudio}}
{{SingularAudio}}
{{/SingularAudio}} -
{{Meaning}}
-{{#Gender}}
מִין: {{Gender}}
{{/Gender}} -{{#Mishkal}}
מִשְׁקָל: {{Mishkal}}
{{/Mishkal}} +
{{Meaning}}
+
+{{#Gender}}
מִין:{{Gender}}
{{/Gender}} +{{#Mishkal}}
מִשְׁקָל:{{Mishkal}}
{{/Mishkal}} +
""" PLURAL_CSS = CARD_CSS @@ -1501,13 +1580,25 @@ def build_plural_deck( elif mishkal: by_mishkal.setdefault(mishkal, []).append((unique_key, entry, noun_inflection)) - # Select exemplars per mishkal, preferring high-frequency words - per_mishkal = 6 + # Select regular exemplars to achieve a 2:1 regular:irregular ratio. + # Distribute evenly across mishkal patterns, preferring high-frequency words. + irregular_count = len(irregulars) + target_regular = irregular_count * 2 + mishkal_count = len(by_mishkal) or 1 + per_mishkal = max(2, target_regular // mishkal_count) selected: list[tuple[str, dict, dict]] = list(irregulars) + regular_pool: list[tuple[str, dict, dict]] = [] for _mishkal, entries in sorted(by_mishkal.items()): entries.sort(key=lambda e: e[1].get("frequency") or 999_999) - selected.extend(entries[:per_mishkal]) + regular_pool.extend(entries[:per_mishkal]) + + # If we overshot, trim to target (keeping highest-frequency across all mishkals) + if len(regular_pool) > target_regular: + regular_pool.sort(key=lambda e: e[1].get("frequency") or 999_999) + regular_pool = regular_pool[:target_regular] + + selected.extend(regular_pool) note_count = 0 for _unique_key, entry, noun_inflection in selected: @@ -1517,7 +1608,7 @@ def build_plural_deck( plural_ktiv = noun_inflection["plural"].get("ktiv_male", "") gender = noun_inflection.get("gender") or "" gender_heb = {"masculine": "זָכָר", "feminine": "נְקֵבָה"}.get(gender, gender) - mishkal = noun_inflection.get("mishkal") or "" + mishkal_heb = noun_inflection.get("mishkal_hebrew") or "" meaning = EMOJI_RE.sub("", entry.get("meaning") or "").strip() root_list = entry.get("root") or [] root = ".".join(root_list) @@ -1537,9 +1628,10 @@ def build_plural_deck( if mp3_path not in media_files: media_files.append(mp3_path) + mishkal_eng = noun_inflection.get("mishkal") or "" tags = [RELEASE_TAG] - if mishkal: - tags.append(f"mishkal::{mishkal}") + if mishkal_eng: + tags.append(f"mishkal::{mishkal_eng}") if _is_irregular_plural(gender, plural_ktiv): tags.append("irregular") @@ -1553,7 +1645,7 @@ def build_plural_deck( pl_audio, meaning, root, - mishkal, + mishkal_heb, gender_heb, ], tags=tags, diff --git a/data/words.json b/data/words.json index de5534d..ebdf2ae 100644 --- a/data/words.json +++ b/data/words.json @@ -29,7 +29,16 @@ "אָב" ], "confusables_guid": "O~iMg>vr,V", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָאָב הֶעָטוּף בְּטַלִּית גָּחַן אֵלָיו וְהִסְבִּיר לוֹ מַשֶּׁהוּ, וְהַיֶּלֶד הִנְהֵן", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אָב", @@ -306,7 +315,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "“לַשָּׁוְא קְוִּינוּ לְרוּחַ אָבִיב רַכָּה וְחַמָּה", + "source": "the_spirits", + "match_method": "direct" + }, + { + "text": "אָבִיב יָרַד עַל הָאָרֶץ", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "“לַשָּׁוְא קְוִּינוּ לְרוּחַ אָבִיב רַכָּה וְחַמָּה", + "cloze_word_start": 29, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "o~q{+9N!|j" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אָבִיב", @@ -462,6 +492,16 @@ "text": "נֹגַהּ הִצִּיעָה שֶׁנְּשַׁלֵּב יָדַיִם כְּדֵי שֶׁלֹּא נֹאבַד זֶה לָזוֹ", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "עִזִּים רַבּוֹת הָיוּ לוֹ, וְכֻלָּן אָבְדוּ זוֹ אַחֲרֵי זוֹ", + "source": "kid_on_mountain", + "match_method": "conjugated" + }, + { + "text": "שֵׁשׁ עִזִּים אָבְדוּ לוֹ, זוֹ אַחֲרֵי זוֹ, וְהוּא קָנָה לוֹ גְּדִי־עִזִּים בַּפַּעַם הַשְּׁבִיעִית", + "source": "kid_on_mountain", + "match_method": "conjugated" } ], "cloze": { @@ -1771,6 +1811,11 @@ "text": "\" \"אֲבָל אִם לֹא תִּקְשֹׁר אוֹתָהּ, הִיא תַּתְחִיל לְשׁוֹטֵט וְתֵלֵךְ לְאִבּוּד", "source": "little_prince", "match_method": "direct_prefix" + }, + { + "text": "\" הִיא נִרְאֲתָה מְהַסֶּסֶת, כַּנִּרְאֶה חִפְּשָׂה אֵיזֶשֶׁהוּ הֶסְבֵּר מִתְקַבֵּל עַל הַדַּעַת, \"פָּשׁוּט הָלַכְתִּי לְאִבּוּד וְ", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -6537,7 +6582,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כֻּלָּם כַּמּוּבָן מְצֻיָּדִים בְּפַטִּישֵׁי פְּלַסְטִיק וְכָל הָאֲבִיזָרִים הַמֻּכָּרִים", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "כֻּלָּם כַּמּוּבָן מְצֻיָּדִים בְּפַטִּישֵׁי פְּלַסְטִיק וְכָל הָאֲבִיזָרִים הַמֻּכָּרִים", + "cloze_word_start": 63, + "cloze_word_end": 76, + "cloze_hint": null, + "cloze_guid": "F>S`V[^Q51" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֲבִיזָר", @@ -9459,7 +9520,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גַּם כַּאֲשֶׁר הוּא נִסָּה לְהֵאָבֵק אִתִּי, לֹא וִתַּרְתִּי לוֹ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הוּא נֶאֱבָק עִם הַסּוּסָה, אֲבָל הִיא מִתְעַקֶּשֶׁת לֹא לָזוּז מִמְּקוֹמָהּ", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "גַּם כַּאֲשֶׁר הוּא נִסָּה לְהֵאָבֵק אִתִּי, לֹא וִתַּרְתִּי לוֹ", + "cloze_word_start": 27, + "cloze_word_end": 36, + "cloze_hint": null, + "cloze_guid": "nA?m4`9]WC" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -9967,6 +10049,16 @@ "text": "״ אוֹ: \"מַהוּ הַמַּאֲבָק עַל הַסֵּמֶל וּבְאֵיזֶה סֵמֶל מְדֻבָּר", "source": "time_tunnel_78", "match_method": "direct_prefix" + }, + { + "text": "בְּמַבָּט מְמֻקָּד הוּא סָקַר אֶת כֻּלָּנוּ וְאָמַר: \"זֶהוּ, הַמַּאֲבָק מַתְחִיל", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "\" שָׁרוֹן נִסְּתָה בְּכָל זֹאת, \"אַתָּה לֹא רוֹצֶה לָקַחַת חֵלֶק בַּמַּאֲבָק", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -10063,8 +10155,8 @@ "match_method": "direct" }, { - "text": "עַנְנֵי אָבָק הִתְרוֹמְמוּ מֵעַל מְנוֹרַת הַנֵּפְט שֶׁהָיְתָה מֻנַּחַת בְּמֶרְכַּז הָרְחָבָה שֶׁהָפְכָה לְמִגְרַשׁ מִסְדָּרִים", - "source": "time_tunnel_63", + "text": "אֲנִי מַרְגִּישׁ שֶׁאִם אֶשְׁאַף אָבָק, אֵחָנֵק", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -11085,6 +11177,11 @@ "text": "עַל הָאֲדָמָה הָיְתָה פְּרוּשָׂה שְׂמִיכָה צְבָאִית מְאֻבֶּקֶת", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "הַשְּׁטִיחִים בֶּאֱמֶת הָיוּ מְאֻבָּקִים מְאוֹד וְכָךְ גַּם הַשְּׂמִיכוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -15520,7 +15617,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יוֹם־יוֹם הָיְתָה יוֹצֵאת עִם אֲוָזֶיהָ לָאָחוּ הַיָּרֹק, לְיַד הָאֲגַם", + "source": "tree_dress", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "יוֹם־יוֹם הָיְתָה יוֹצֵאת עִם אֲוָזֶיהָ לָאָחוּ הַיָּרֹק, לְיַד הָאֲגַם", + "cloze_word_start": 64, + "cloze_word_end": 71, + "cloze_hint": null, + "cloze_guid": "mbIxI4qNkg" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֲגַם", @@ -17202,7 +17315,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם הִתְאַמְּנוּ וְאָגְרוּ נֶשֶׁק", + "source": "time_tunnel_76", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "הֵם הִתְאַמְּנוּ וְאָגְרוּ נֶשֶׁק", + "cloze_word_start": 17, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "mNhEG2uAHq" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -18718,7 +18847,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא הִתְחַבְּרָה עִם אַדְוָה וַאֲנִי הִרְגַּשְׁתִּי דֵּי מְיֻתָּר", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "בְּעֶצֶם, זוֹ לֹא הָיְתָה רַק שָׁרוֹן, אֶלָּא גַּם אַדְוָה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "שָׁמַעְתִּי אוֹתָהּ מִשְׁתַּעֶלֶת וְשָׁמַעְתִּי גַּם אֶת אַדְוָה מִשְׁתַּעֶלֶת", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הִיא הִתְחַבְּרָה עִם אַדְוָה וַאֲנִי הִרְגַּשְׁתִּי דֵּי מְיֻתָּר", + "cloze_word_start": 22, + "cloze_word_end": 29, + "cloze_hint": null, + "cloze_guid": "Hfj^V_AOq," + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אַדְוָה", @@ -18784,6 +18939,16 @@ "text": "הַאִם הִיא לֹא יוֹתֵר חֲשׁוּבָה מֵהַחֶשְׁבּוֹנוֹת שֶׁל אָדוֹן שָׁמֵן וְאָדֹם", "source": "little_prince", "match_method": "direct" + }, + { + "text": "עַכְשָׁיו רֹאשׁוֹ שֶׁל יִשְׂרָאֵל גָּלוּי וְהַכָּאפִיָה מֻנַּחַת עַל כְּתֵפָיו, \"אָדוֹן קְרָאוּזֶה", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "״ הַמְּעֻנָּב, כְּלוֹמַר אָדוֹן קְרָאוּזֶה, חוֹזֵר לָנוּעַ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -20634,15 +20799,15 @@ "examples": { "vetted": [ { - "text": "הַאִם הִיא לֹא יוֹתֵר חֲשׁוּבָה מֵהַחֶשְׁבּוֹנוֹת שֶׁל אָדוֹן שָׁמֵן וְאָדֹם", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "בִּקְשׁוּ מִפִּרְחֵי הַמְטַפֵּס הָאֲדֻמִּים אֶת הָאֹדֶם – וְעָשׂוּ גַג חָדָשׁ, אָדֹם וְיָפֶה", + "source": "ilana", + "match_method": "direct" } ], "cloze": { - "text": "הַאִם הִיא לֹא יוֹתֵר חֲשׁוּבָה מֵהַחֶשְׁבּוֹנוֹת שֶׁל אָדוֹן שָׁמֵן וְאָדֹם", - "cloze_word_start": 69, - "cloze_word_end": 76, + "text": "בִּקְשׁוּ מִפִּרְחֵי הַמְטַפֵּס הָאֲדֻמִּים אֶת הָאֹדֶם – וְעָשׂוּ גַג חָדָשׁ, אָדֹם וְיָפֶה", + "cloze_word_start": 79, + "cloze_word_end": 84, "cloze_hint": null, "cloze_guid": "l#Ss?OCQ]2" }, @@ -20715,21 +20880,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "וּמִי הִיא 'הַסּוֹכְנוּת הַיְהוּדִית' שֶׁקָּנְתָה אֶת אַדְמוֹת בְּאֵר־טוּבְיָה מִידֵי הַתּוֹשָׁבִים שֶׁפֻּנּוּ", + "source": "time_tunnel_70", + "match_method": "inflected" + }, { "text": "הוּא רָכַשׁ אֲדָמוֹת חַקְלָאִיּוֹת בִּכְפַר מֵירוֹן וְיִשֵּׁב בַּמָּקוֹם מִשְׁפָּחוֹת שֶׁל יְהוּדִים", "source": "time_tunnel_75", "match_method": "inflected" }, { - "text": "הוּא מְנַעֵר רִגְבֵי אֲדָמָה מֵהַגְּלִימָה הַקְּרוּעָה שֶׁהוּא לוֹבֵשׁ, \"הַשּׁוֹטְרִים קָשְׁרוּ אוֹתְךָ", + "text": "\" הִיא מִתְיַשֶּׁבֶת בִּכְבֵדוּת עַל אַדְמַת הַמְּעָרָה", "source": "time_tunnel_82", - "match_method": "direct" + "match_method": "inflected" } ], "cloze": { - "text": "הוּא רָכַשׁ אֲדָמוֹת חַקְלָאִיּוֹת בִּכְפַר מֵירוֹן וְיִשֵּׁב בַּמָּקוֹם מִשְׁפָּחוֹת שֶׁל יְהוּדִים", - "cloze_word_start": 12, - "cloze_word_end": 20, + "text": "וּמִי הִיא 'הַסּוֹכְנוּת הַיְהוּדִית' שֶׁקָּנְתָה אֶת אַדְמוֹת בְּאֵר־טוּבְיָה מִידֵי הַתּוֹשָׁבִים שֶׁפֻּנּוּ", + "cloze_word_start": 54, + "cloze_word_end": 62, "cloze_hint": null, "cloze_guid": "IN6_}Ec/Fi" }, @@ -20815,13 +20985,13 @@ "match_method": "conjugated" }, { - "text": "פָּנָיו שֶׁל הַלוּטֶנֶנְט שֶׁרָאָה אֶת הַחֲגוֹרָה שֶׁקָּשְׁרָה אֶת יָדִי אֶל מֵאֲחוֹרֵי גַּבִּי הֶאֱדִימוּ", - "source": "time_tunnel_63", + "text": "\" פָּנָיו שֶׁל הַקָּצִין מַאֲדִימוֹת מִכַּעַס", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "״ פָּנֶיהָ שֶׁל שָׁרוֹן הֶאֱדִימוּ", - "source": "time_tunnel_silver_train", + "text": "פָּנָיו שֶׁל הַלוּטֶנֶנְט שֶׁרָאָה אֶת הַחֲגוֹרָה שֶׁקָּשְׁרָה אֶת יָדִי אֶל מֵאֲחוֹרֵי גַּבִּי הֶאֱדִימוּ", + "source": "time_tunnel_63", "match_method": "conjugated" } ], @@ -21265,7 +21435,16 @@ "אֹדֶם|Noun|ruby (gem)" ], "confusables_guid": "PU=ml;M0Ug", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּקְשׁוּ מִפִּרְחֵי הַמְטַפֵּס הָאֲדֻמִּים אֶת הָאֹדֶם – וְעָשׂוּ גַג חָדָשׁ, אָדֹם וְיָפֶה", + "source": "ilana", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֹדֶם", @@ -21521,6 +21700,11 @@ "text": "בְּיָמִים חַמִּים זֶה כֵּיף אַדִּיר", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "עַתָּה מִתְכּוֹנֵן הָאוֹיֵב לַעֲלוֹת עַל לִילִיפּוּטְיָה בְּצִי אַדִּיר, וְעַל הָאָדָם־הָהָר לַעֲזֹר לַנַּנָּסִים לְהִתְגּוֹנֵן מִפְּנֵיהֶם", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { @@ -21643,7 +21827,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל אִיז'וֹ נִרְאָה לְגַמְרֵי אָדִישׁ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "״ זוֹהֵיר מַמְשִׁיךְ לְהֵרָאוֹת אָדִישׁ, \"נִרְאֶה לְךָ שֶׁאַתָּה עוֹשֶׂה לִי טוֹבָה שֶׁאֲנִי שׁוֹמֵר עַל הַחַוָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֲבָל אִיז'וֹ נִרְאָה לְגַמְרֵי אָדִישׁ", + "cloze_word_start": 32, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "Nu.N1*zDV8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -22160,7 +22365,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִתְפַּלֵּא מְאוֹד חַמְדִּי לְמַרְאֵה עֵינָיו, וּמִיָּד הִתְאַהֵב בָּרוֹעָה הַיָּפָה, שֶׁכָּמוֹהָ לֹא רָאָה מֵעוֹלָם", + "source": "tree_dress", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הִתְפַּלֵּא מְאוֹד חַמְדִּי לְמַרְאֵה עֵינָיו, וּמִיָּד הִתְאַהֵב בָּרוֹעָה הַיָּפָה, שֶׁכָּמוֹהָ לֹא רָאָה מֵעוֹלָם", + "cloze_word_start": 56, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "A#Y0r.CGqc" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -22660,6 +22881,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אֵין זֺאת, כִּי אָהֲבוּ הָעִזִּים אַהֲבָה רַבָּה אֶת הַמֶּרְחָב וְאֶת הַדְּרוֹר", + "source": "kid_on_mountain", + "match_method": "direct" + }, { "text": "גַּם בִּרְגָעִים אֵלּוּ, כְּשֶׁאֲנִי כּוֹתֶבֶת לָכֶם, עוֹלוֹת דְּמָעוֹת בְּעֵינַי מֵרֹב אַהֲבָה לַנָּסִיךְ הַקָּטָן", "source": "little_prince", @@ -22667,11 +22893,11 @@ } ], "cloze": { - "text": "גַּם בִּרְגָעִים אֵלּוּ, כְּשֶׁאֲנִי כּוֹתֶבֶת לָכֶם, עוֹלוֹת דְּמָעוֹת בְּעֵינַי מֵרֹב אַהֲבָה לַנָּסִיךְ הַקָּטָן", - "cloze_word_start": 88, - "cloze_word_end": 95, + "text": "אֵין זֺאת, כִּי אָהֲבוּ הָעִזִּים אַהֲבָה רַבָּה אֶת הַמֶּרְחָב וְאֶת הַדְּרוֹר", + "cloze_word_start": 34, + "cloze_word_end": 41, "cloze_hint": null, - "cloze_guid": "u3U5#;&{0$" + "cloze_guid": "o2@cF>Vi^[" }, "rejected_count": 0 }, @@ -24225,6 +24451,11 @@ "text": "הוּא אֲפִלּוּ קָרָא לִי אֶל אֹהֶל הַמִּפְקָדָה שֶׁלּוֹ, וּפָנָה אֵלַי בַּמִּלִּים: ״כְּבוֹד אֲדוֹנִי הַצָּעִיר״", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "הַמָּקוֹם נִרְאֶה כְּמוֹ הַחוֹף הֲכִי מַגְנִיב בָּאָרֶץ, הַחוֹף שֶׁבּוֹ הָיִיתָ רוֹצֶה לְהָקִים אֹהֶל וּלְבַלּוֹת סוֹפְשָׁבוּעַ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -24590,7 +24821,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָיֹה הָיְתָה בַּחֲצַר הַמֶּלֶךְ רוֹעַת אֲוָזִים קְטַנָּה", + "source": "tree_dress", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הָיֹה הָיְתָה בַּחֲצַר הַמֶּלֶךְ רוֹעַת אֲוָזִים קְטַנָּה", + "cloze_word_start": 40, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "IbPbC}*6&o" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֲוָז", @@ -25540,7 +25787,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "– הוֹי שׁוּב פַּעַם בָּא אוֹטוֹ", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "– הוֹי שׁוּב פַּעַם בָּא אוֹטוֹ", + "cloze_word_start": 25, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "f(LE0ai#:q" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אוֹטוֹ", @@ -26943,6 +27206,11 @@ "text": "פִּתְאוֹם הָיִינוּ בְּתוֹךְ אוּלָם בֵּין הֲמוֹן אֲנָשִׁים", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "לְבַסּוֹף עֲזָבוּהוּ כֹּחוֹתָיו כָּלִיל וְהוּא חָדַל לִשְׂחוֹת, אוּלָם בְּצָלְלוֹ נָגְעוּ רַגְלָיו בַּקַּרְקַע", + "source": "gulliver", + "match_method": "direct" } ], "rejected_count": 0 @@ -26982,7 +27250,21 @@ "אוּלָם|Noun" ], "confusables_guid": "G9vt8k:?9)", - "examples": null, + "examples": { + "vetted": [ + { + "text": "חָלַפְנוּ עַל פְּנֵיהֶם וְצָעַדְנוּ אֶל הַמִּסְדְּרוֹן הַמּוֹבִיל אֶל אוּלַם הַהַמְתָּנָה שֶׁל הַמְּבַקְּרִים", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "אוּלַם רַבִּים מִן הַתּוֹשָׁבִים הִתְמָרְדוּ נֶגֶד הַחֹק הַזֶּה, וּמִלְחֶמֶת אַחִים אַכְזָרִית פָּרְצָה בָּאָרֶץ", + "source": "gulliver", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אוּלָם", @@ -27102,7 +27384,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּלְאַחַר שֶׁאָמַר עַמִי “כֵּן” הוֹצִיא אַבָּא אוֹלָר מִכִּיסוֹ וּפָתַח אֶת הַפְּקַעַת שֶׁבְּיָדוֹ", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "וּלְאַחַר שֶׁאָמַר עַמִי “כֵּן” הוֹצִיא אַבָּא אוֹלָר מִכִּיסוֹ וּפָתַח אֶת הַפְּקַעַת שֶׁבְּיָדוֹ", + "cloze_word_start": 47, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "Eks7q{{>ws" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אוֹלָר", @@ -27212,6 +27510,16 @@ "text": "הִרְגַּשְׁתִּי חֲסַר אוֹנִים, לֹא יָדַעְתִּי אֵיךְ לְהַגִּיעַ אֵלָיו אוֹ אֵיךְ לְהַרְגִּיעַ אוֹתוֹ", "source": "little_prince", "match_method": "inflected" + }, + { + "text": "\" יוֹנָתָן נִרְאֶה חֲסַר אוֹנִים", + "source": "time_tunnel_77", + "match_method": "inflected" + }, + { + "text": "\" שָׁרוֹן, שֶׁרַק לִפְנֵי זְמַן קָצָר נִרְאֲתָה כָּל כָּךְ בְּטוּחָה בְּעַצְמָהּ, נִרְאֵית עַכְשָׁיו חַסְרַת אוֹנִים", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { @@ -27342,7 +27650,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה נִרְאָה עַל פְּנֵי לְשׁוֹן־הַיָּם הַזֹּאת צִי שֶׁל חֲמִשִּׁים אֳנִיּוֹת קָרֵב אֶל חוֹפֵי לִילִיפּוּטְיָה", + "source": "gulliver", + "match_method": "inflected" + }, + { + "text": "הוּא קָפַץ עַל רַגְלָיו, וּלְשִׂמְחָתוֹ הָרַבָּה רָאָה, כִּי אֳנִיָּה עוֹגֶנֶת מִמּוּל לָאִי, וְהַצּוֹפֶה הִשְׁגִּיחַ בּוֹ", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְהִנֵּה נִרְאָה עַל פְּנֵי לְשׁוֹן־הַיָּם הַזֹּאת צִי שֶׁל חֲמִשִּׁים אֳנִיּוֹת קָרֵב אֶל חוֹפֵי לִילִיפּוּטְיָה", + "cloze_word_start": 71, + "cloze_word_end": 80, + "cloze_hint": null, + "cloze_guid": "m<30m0|3_k" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֳנִיָּה", @@ -29844,7 +30173,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא תּוֹפֵס בְּיָדָהּ שֶׁל שָׁרוֹן וּמוֹשֵׁךְ אוֹתָהּ אֵלָיו, אֶל מָקוֹם מוּאָר יוֹתֵר", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הוּא תּוֹפֵס בְּיָדָהּ שֶׁל שָׁרוֹן וּמוֹשֵׁךְ אוֹתָהּ אֵלָיו, אֶל מָקוֹם מוּאָר יוֹתֵר", + "cloze_word_start": 74, + "cloze_word_end": 80, + "cloze_hint": null, + "cloze_guid": "kf*6z6AuN#" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -32133,7 +32478,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּתְּחִלָּה הִסֵּס הַמֶּלֶךְ, אַךְ לְבַסּוֹף נֵאוֹת לְבַקָּשָׁתוֹ", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בַּתְּחִלָּה הִסֵּס הַמֶּלֶךְ, אַךְ לְבַסּוֹף נֵאוֹת לְבַקָּשָׁתוֹ", + "cloze_word_start": 46, + "cloze_word_end": 52, + "cloze_hint": null, + "cloze_guid": "tuY8B*-x;i" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -36066,6 +36427,11 @@ "text": "הַצְּעָקוֹת הָלְכוּ וְנִהְיוּ מַחְרִישׁוֹת אָזְנַיִם, וּבֵינֵיהֶן הָיְתָה גַּם הַצְּעָקָה שֶׁל שָׁרוֹן: \"אוֹ־מַיי־גוֹד", "source": "time_tunnel_75", "match_method": "inflected" + }, + { + "text": "אָזְנֵי גּוּלִיבֶר הָמוּ לְשֵׁמַע הָרַעַשׁ, וְהוּא מִהֵר וְנִכְנַס בִּזְחִילָה לְתוֹךְ הַמִּגְדָּל, אֲשֶׁר נוֹעַד בִּשְׁבִילוֹ", + "source": "gulliver", + "match_method": "inflected" } ], "cloze": { @@ -36212,7 +36578,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לָכֶם אֲנִי יָכוֹל לְגַלּוֹת שֶׁהִיא נִרְאֵית לִי לְגַמְרֵי לֹא מְאֻזֶּנֶת", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "לָכֶם אֲנִי יָכוֹל לְגַלּוֹת שֶׁהִיא נִרְאֵית לִי לְגַמְרֵי לֹא מְאֻזֶּנֶת", + "cloze_word_start": 64, + "cloze_word_end": 74, + "cloze_hint": null, + "cloze_guid": "Iaw)fXF/#F" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -37564,7 +37946,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נֹעָה גּוֹזֶרֶת גַּם אֶת הָאֲזִיקוֹנִים שֶׁלָּהֶן", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "הָאֲזִיקוֹנִים שֶׁלָּהּ הָיוּ כַּנִּרְאֶה מְהֻדָּקִים מִדַּי וְהוֹתִירוּ סִימָנִים אֲדֻמִּים", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "יוֹאָב מְסַלֵּק אֶת הָאֲזִיקוֹנִים הַצִּדָּה", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "נֹעָה גּוֹזֶרֶת גַּם אֶת הָאֲזִיקוֹנִים שֶׁלָּהֶן", + "cloze_word_start": 25, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "m$(s=^@>b%" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֲזִיקוֹן", @@ -38069,8 +38477,8 @@ "match_method": "direct" }, { - "text": "אֲבָל כָּאן, בַּמִּדְבָּר הַלּוֹהֵט הַזֶּה, רַק הַמַּחְשָׁבָה עַל אֵזוֹר מְמֻגָּן גָּרְמָה לִי לִצְחוֹק", - "source": "time_tunnel_63", + "text": "יוּבַל הִצְלִיחַ לְשַׁכְנֵעַ אֶת אִיז'וֹ לָבוֹא אִתּוֹ אֶל אֵזוֹר הַתָּאִים", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -41818,7 +42226,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יוֹם־יוֹם הָיְתָה יוֹצֵאת עִם אֲוָזֶיהָ לָאָחוּ הַיָּרֹק, לְיַד הָאֲגַם", + "source": "tree_dress", + "match_method": "direct_prefix" + }, + { + "text": "לִפְעָמִים הָיְתָה הָרוֹעֶה יוֹשֶׁבֶת בֵּין אֲוָזֶיהָ בָּאָחוּ וּבוֹכָה עַל גּוֹרָלָהּ הַמַּר", + "source": "tree_dress", + "match_method": "direct_prefix" + }, + { + "text": "יוֹם אֶחָד עָבַר בָּאָחוּ חַיָּט זָקֵן, נוֹשֵׂא עַל גַּבּוֹ שַׂק רֵיק, וְרָאָה אוֹתָהּ בּוֹכָה", + "source": "tree_dress", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "יוֹם־יוֹם הָיְתָה יוֹצֵאת עִם אֲוָזֶיהָ לָאָחוּ הַיָּרֹק, לְיַד הָאֲגַם", + "cloze_word_start": 40, + "cloze_word_end": 47, + "cloze_hint": null, + "cloze_guid": "O7j_KqB1M6" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אָחוּ", @@ -41881,20 +42315,15 @@ "examples": { "vetted": [ { - "text": "אֲנִי יוֹדַעַת שֶׁיֵּשׁ לְךָ אָח וּשְׁמוֹ יוֹסֵף, וְאָחוֹת שֶׁשְּׁמָהּ עַצְמוֹנָה", - "source": "time_tunnel_75", - "match_method": "direct_prefix" - }, - { - "text": "\"וּבְכֵן, שְׁלֹש הָאֲחָיוֹת הַקְּטַנּוֹת הָאֵלֶּה – הֵן לָמְדוּ לִשְׂחוֹת, אַתְּ יוֹדַעַת—\" \"לִסְחוֹט מָה", - "source": "alice_wonderland", - "match_method": "inflected_prefix" + "text": "בַּחַוָה הַזּוֹ לֹא נִמְצָא רוֹפֵא, אֲבָל נִמְצֵאת בָּהּ אָחוֹת", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "אֲנִי יוֹדַעַת שֶׁיֵּשׁ לְךָ אָח וּשְׁמוֹ יוֹסֵף, וְאָחוֹת שֶׁשְּׁמָהּ עַצְמוֹנָה", - "cloze_word_start": 50, - "cloze_word_end": 58, + "text": "בַּחַוָה הַזּוֹ לֹא נִמְצָא רוֹפֵא, אֲבָל נִמְצֵאת בָּהּ אָחוֹת", + "cloze_word_start": 57, + "cloze_word_end": 63, "cloze_hint": null, "cloze_guid": "dU=WrtwBR=" }, @@ -42430,6 +42859,11 @@ "text": "נֶאֱחַזְתִּי בָּעֵצִים, הִתְרוֹמַמְתִּי וְהִתְקַדַּמְתִּי לְעֵבֶר הַחַלּוֹן", "source": "time_tunnel_78", "match_method": "conjugated" + }, + { + "text": "כֵּיוָן שֶׁהַכּוֹחוֹת שֶׁלִּי דֵּי מְעַטִּים, אֲנִי נֶאֱחָז בְּזִיז שֶׁבּוֹלֵט מֵהַקִּיר", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -43006,22 +43440,27 @@ "examples": { "vetted": [ { - "text": "\" \"מֵאָה אָחוּז,\" אֲנִי עוֹנֶה", - "source": "time_tunnel_82", - "match_method": "direct" + "text": "\" קָרָא הָעַכְבָּר, כֻּלּוֹ אֲחוּז רַעַד עַד לִקְצֵה זְנָבוֹ", + "source": "alice_wonderland", + "match_method": "inflected" }, { - "text": "הֲרֵי בְּדָבָר אֶחָד אֲנִי בָּטוּחַ בְּמֵאָה אָחוּז: מִבְצַע 'מַרְבַד הַקְּסָמִים' הָיָה אַחֲרֵי הֲקָמַת מְדִינַת יִשְׂרָאֵל", + "text": "\" אָמַר הַלּוֹרִי, אֲחוּז צְמַרְמֹרֶת", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "\" \"מֵאָה אָחוּז,\" אֲנִי עוֹנֶה", "source": "time_tunnel_82", "match_method": "direct" } ], "cloze": { - "text": "\" \"מֵאָה אָחוּז,\" אֲנִי עוֹנֶה", - "cloze_word_start": 9, - "cloze_word_end": 15, + "text": "\" קָרָא הָעַכְבָּר, כֻּלּוֹ אֲחוּז רַעַד עַד לִקְצֵה זְנָבוֹ", + "cloze_word_start": 28, + "cloze_word_end": 34, "cloze_hint": null, - "cloze_guid": "G|q?VO*D|b" + "cloze_guid": "JY}oQG(/q9" }, "rejected_count": 0 }, @@ -47735,20 +48174,20 @@ "confusables_guid": "j8!{pIFL5]", "examples": { "vetted": [ + { + "text": "\"כְּשֶׁיַּתְחִיל הַבָּלָגָן, אֲנִי אַחְרַאי עַל קְבוּצַת נֹעַר,\" הוּא הִסְבִּיר, \"אִמְּנוּ אוֹתִי", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "אַתֶּם תִּהְיוּ אַחְרָאִים עַל מַחְסַן הַנֶּשֶׁק צָפוֹן־שְׁתַּיִם", + "source": "time_tunnel_76", + "match_method": "inflected" + }, { "text": "אַתָּה אַחְרַאי לְעוֹלָם לְאֵלֶּה שֶׁאִלַּפְתָּ", "source": "little_prince", "match_method": "direct" - }, - { - "text": "\" \"אֲנִי אַחְרַאי לַשּׁוֹשַׁנָּה שֶׁלִּי", - "source": "little_prince", - "match_method": "direct" - }, - { - "text": "אַתָּה אַחְרַאי לַשּׁוֹשַׁנָּה שֶׁלְּךָ", - "source": "little_prince", - "match_method": "direct" } ], "rejected_count": 0 @@ -47835,13 +48274,13 @@ "match_method": "direct_prefix" }, { - "text": "הַקִּיר הָאֲחוֹרִי שֶׁל הַמְּעָרָה הִתְחִיל מַמָּשׁ לְהִתְפּוֹרֵר וַאֲבָנִים קְטַנּוֹת נָפְלוּ מִמֶּנּוּ אֶל הַשָּׁטִיחַ", - "source": "time_tunnel_75", + "text": "הַחֵלֶק הַקִּדְמִי שֶׁלָּהּ בְּתוֹךְ הֶחָבִית הָרִאשׁוֹנָה, וְהַחֵלֶק הָאֲחוֹרִי שֶׁלָּהּ מֻפְנֶה אֵלַי", + "source": "time_tunnel_77", "match_method": "direct_prefix" }, { - "text": "שְׁנֵי בָּנִים יָשְׁבוּ בַּמּוֹשָׁב הָאֲחוֹרִי וּלְיַד הַדֶּלֶת יָשְׁבָה אִשָּׁה שֶׁבְּהֶחְלֵט נִרְאֲתָה כְּמוֹ סַבְתָּא שֶׁלָּהֶם", - "source": "time_tunnel_silver_train", + "text": "הַקִּיר הָאֲחוֹרִי שֶׁל הַמְּעָרָה הִתְחִיל מַמָּשׁ לְהִתְפּוֹרֵר וַאֲבָנִים קְטַנּוֹת נָפְלוּ מִמֶּנּוּ אֶל הַשָּׁטִיחַ", + "source": "time_tunnel_75", "match_method": "direct_prefix" } ], @@ -47931,6 +48370,11 @@ "confusables_guid": "e,>eeqaKLc", "examples": { "vetted": [ + { + "text": "בִּשְׁעַת לַיְלָה מְאֻחֶרֶת כִּבּוּ הַדַיָג וְאִשְׁתּוֹ אֶת הַמְנוֹרָה וְשָׁכְבוּ לִישׁוֹן", + "source": "shell_story", + "match_method": "conjugated" + }, { "text": "נִרְאֶה לָכֶם שֶׁאָבוֹא הַבַּיְתָה וְאַגִּיד: אִמָּא, הִתְעַכַּבְתִּי אֵצֶל הַתֵּימָנִים הָעוֹלִים בְּתָמָר, וְלָכֵן אִחַרְתִּי", "source": "time_tunnel_82", @@ -49352,6 +49796,16 @@ "text": "הַהִתְקָרְבוּת נִרְאֲתָה לִי אִטִּית מְאוֹד, כְּאִלּוּ אֲנִי צוֹפֶה בְּסֶרֶט בְּהִלּוּךְ אִטִּי", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "שׁוּב הָיָה נִדְמֶה לִי שֶׁדְּבָרִים קוֹרִים בְּהִלּוּךְ אִטִּי", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לָמָּה הַמּוֹחַ שֶׁלִּי נִהְיָה אִטִּי כָּל כָּךְ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -49425,25 +49879,20 @@ "examples": { "vetted": [ { - "text": "לְאַט לְאַט נִפְעַר חוֹר בַּקִּיר", - "source": "מנהרת הזמן 82", - "match_method": "direct_prefix" + "text": "אַט אַט הֵחֵלּוּ מוֹשְׁכִים בִּקְצוֹת הַחֲבָלִים שֶׁבְּיָדָם", + "source": "gulliver", + "match_method": "direct" }, { - "text": "אֲנַחְנוּ הוֹלְכִים לְאַט לְעֵבֶר הַמְּעָרָה", - "source": "מנהרת הזמן 82", - "match_method": "direct_prefix" - }, - { - "text": "הוּא בָּחַר בִּקְפִידָה אֶת צְבָעָיו, הוּא הִתְלַבֵּשׁ לְאַט, הִתְאִים אֶת עֲלֵי הַכּוֹתֶרֶת שֶׁלּוֹ אֶחָד־אֶחָד", - "source": "הנסיך הקטן", - "match_method": "direct_prefix" + "text": "אַט אַט הָלְכָה הַמַחֲרֹזֶת אֲשֶׁר בְּיָדָהּ וְהִתְאָרְכָה", + "source": "shell_story", + "match_method": "direct" } ], "cloze": { - "text": "לְאַט לְאַט נִפְעַר חוֹר בַּקִּיר", + "text": "אַט אַט הֵחֵלּוּ מוֹשְׁכִים בִּקְצוֹת הַחֲבָלִים שֶׁבְּיָדָם", "cloze_word_start": 0, - "cloze_word_end": 5, + "cloze_word_end": 3, "cloze_hint": null, "cloze_guid": "zN~c7>/o3p" }, @@ -50276,7 +50725,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"בָּדוּק,״ הִיא מַכָּה עַל הַקִּיר, \"אוּלַי הָאֲנָשִׁים שֶׁנִּמְצָאִים שָׁם אָטְמוּ אֶת הַפֶּתַח", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "שָׁרוֹן אוֹטֶמֶת אֶת אַפָּהּ", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "״ \"בָּדוּק,״ הִיא מַכָּה עַל הַקִּיר, \"אוּלַי הָאֲנָשִׁים שֶׁנִּמְצָאִים שָׁם אָטְמוּ אֶת הַפֶּתַח", + "cloze_word_start": 78, + "cloze_word_end": 85, + "cloze_hint": null, + "cloze_guid": "vah`9PAUa:" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -50903,6 +51373,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"בַּהֹוֶה בֶּאֱמֶת הַמְּעָרָה לֹא הָיְתָה נֶאֱטֶמֶת כָּכָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "הַבֶּקַע שֶׁקִּשֵּׁר בֵּינֵינוּ לְבֵין הַחוֹפְרִים נֶאֱטַם, וְשָׁרוֹן שׁוּב צָעֲקָה, כִּי אֲנִי שׁוּב דָּרַכְתִּי עָלֶיהָ", "source": "time_tunnel_78", @@ -50910,9 +51385,9 @@ } ], "cloze": { - "text": "הַבֶּקַע שֶׁקִּשֵּׁר בֵּינֵינוּ לְבֵין הַחוֹפְרִים נֶאֱטַם, וְשָׁרוֹן שׁוּב צָעֲקָה, כִּי אֲנִי שׁוּב דָּרַכְתִּי עָלֶיהָ", - "cloze_word_start": 51, - "cloze_word_end": 58, + "text": "\"בַּהֹוֶה בֶּאֱמֶת הַמְּעָרָה לֹא הָיְתָה נֶאֱטֶמֶת כָּכָה", + "cloze_word_start": 42, + "cloze_word_end": 51, "cloze_hint": null, "cloze_guid": "t0~aMYLMjF" }, @@ -53439,6 +53914,11 @@ "text": "אֵם יַכְרִיזוּ עַל יַעֲקֹב וְאַף אֶחָד לֹא יָקוּם, אַתְּ וַאֲנִי נָקוּם", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "שְׁתֵּי אִמָּהוֹת עִם תִּינוֹקוֹת מְשׂוֹחֲחוֹת", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { @@ -53523,14 +54003,9 @@ "examples": { "vetted": [ { - "text": "\"נִרְאֶה לְךָ שֶׁאֲנִי אֶבָּהֵל מֵאִיּוּמִים שֶׁל יֶלֶד", - "source": "time_tunnel_82", - "match_method": "inflected_prefix" - }, - { - "text": "אַתָּה נִבְהָל מֵאִיּוּמִים שֶׁל יֶלֶד", - "source": "time_tunnel_82", - "match_method": "inflected_prefix" + "text": "אָמְנָם \"שְׁבוּעַ הַזַּעַם\" חָלַף, אַךְ עַתָּה מְרַחֵף אִיּוּם חָדָשׁ שֶׁל 21 יְמֵי שְׁבִיתָה כְּלָלִית בָּרְצוּעָה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "rejected_count": 0 @@ -55273,6 +55748,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הַבַּיִת נִרְאֶה כְּמוֹ אִיּוּר מִסִּפְרֵי יְלָדִים", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "מִצָּרְפָתִית: תַּלְמָה אַלְיָגוֹן־רוֹז עִם אִיּוּרִים מֵאֵת הַמְּחַבֵּר Antoine de Saint-Exupéry LE PETIT PRINCE Illustrations by the author Hebrew Language Copyright © 2015 Kinneret, Zmora-Bitan, Dvir – Publishing House Ltd", "source": "little_prince", @@ -55280,9 +55760,9 @@ } ], "cloze": { - "text": "מִצָּרְפָתִית: תַּלְמָה אַלְיָגוֹן־רוֹז עִם אִיּוּרִים מֵאֵת הַמְּחַבֵּר Antoine de Saint-Exupéry LE PETIT PRINCE Illustrations by the author Hebrew Language Copyright © 2015 Kinneret, Zmora-Bitan, Dvir – Publishing House Ltd", - "cloze_word_start": 44, - "cloze_word_end": 54, + "text": "הַבַּיִת נִרְאֶה כְּמוֹ אִיּוּר מִסִּפְרֵי יְלָדִים", + "cloze_word_start": 24, + "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "r0tUxt&jWw" }, @@ -56078,6 +56558,11 @@ "text": "״ ״הַדַרְדָנֶלִים הֵם מְצָרֵי יָם שֶׁמַּפְרִידִים בֵּין אֵירוֹפָּה לְאַסְיָה, הֵם נִמְצָאִים בִּצְפוֹן־מַעֲרַב טוּרְקְיָה", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "\" \"כִּי אֲנַחְנוּ 'יְצִיאַת אֵירוֹפָּה'", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -58476,6 +58961,11 @@ "text": "הוּא נִרְאֶה מְאֻכְזָב מְאוֹד", "source": "time_tunnel_82", "match_method": "direct" + }, + { + "text": "רוּחַ קַלָּה נוֹשֶׁבֶת וְהַיָּם מִתְנַהֵג כְּאִלּוּ הוּא מְאֻכְזָב שֶׁאַף אֶחָד לֹא בָּא לְבַקֵּר אוֹתוֹ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -58555,15 +59045,15 @@ "source": "time_tunnel_silver_train", "match_method": "conjugated" }, + { + "text": "\"תַּגִּידוּ,\" הִיא נִשְׁמַעַת מְאֻכְזֶבֶת מִיְּכֹלֶת הַהֲבָנָה שֶׁלָּנוּ, \"אַתֶּם עִוְרִים אוֹ מָה", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "יֵשׁ לָךְ לֵב לְאַכְזֵב אֶת הָאֲנָשִׁים הַמַּדְהִימִים הָאֵלֶּה, שֶׁיָּצְאוּ לַדֶּרֶךְ בָּרֶגֶל מִתֵּימָן לְאֶרֶץ־יִשְׂרָאֵל", "source": "time_tunnel_82", "match_method": "direct" - }, - { - "text": "״ הִיא נִשְׁמְעָה מְאֻכְזֶבֶת", - "source": "time_tunnel_63", - "match_method": "conjugated" } ], "cloze": { @@ -60446,7 +60936,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבֵינְתַיִם הַוִילוֹן כְּבָר אֵינֶנּוּ, הוּא נֶאֱכַל כֻּלּוֹ", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וּבֵינְתַיִם הַוִילוֹן כְּבָר אֵינֶנּוּ, הוּא נֶאֱכַל כֻּלּוֹ", + "cloze_word_start": 46, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "wn3$&rsL,Q" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -61862,7 +62368,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּמַה טּוֹב הוּא לְמַאֲכָל", + "source": "kid_on_mountain", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "וּמַה טּוֹב הוּא לְמַאֲכָל", + "cloze_word_start": 17, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "tK@#yCmyqO" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַאֲכָל", @@ -65879,6 +66401,16 @@ "text": "אִכָּרִים לָמְדוּ מִמֶּנָּה אֵיךְ לְטַפֵּחַ אֶת הַפָּרוֹת בָּרְפָתוֹת", "source": "time_tunnel_70", "match_method": "inflected" + }, + { + "text": "וְהוּא הִפְקִיד אוֹתָנוּ בְּיָדָיו שֶׁל אִכָּר אֶחָד שֶׁשְּׁמוֹ נֹחַ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "הוּא חָשַׁב שֶׁשּׁוּם אִכָּר עֲרָבִי וְשׁוּם בֶּדוּאִי לֹא יָעֵז לְהִתְגָּרוֹת בַּצֶּ'רְקֶסִים", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -66281,28 +66813,11 @@ "examples": { "vetted": [ { - "text": "בְּעֵינֵי אֵלֶּה שֶׁיּוֹצְאִים לְמַסָּעוֹת, הַכּוֹכָבִים הֵם סִימָנֵי דֶּרֶךְ", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "\"אֵלֶּה בָּטוּחַ גּוֹיִים,\" הַנַּעַר אוֹמֵר לְשָׁלוֹם, \"אֵיפֹה הַפֵּאוֹת שֶׁלָּהֶם", - "source": "מנהרת הזמן 82", - "vetted": true - }, - { - "text": "אֵלֶּה לֹא כּוֹבָעִים שֶׁל שׁוֹטְרֵי מִשְׁטֶרֶת יִשְׂרָאֵל", - "source": "מנהרת הזמן 82", - "vetted": true + "text": "אַךְ כָּל אֵלֶה הָיוּ הִרְהוּרִים בִּלְבַד", + "source": "silkworms", + "match_method": "direct" } ], - "cloze": { - "text": "בְּעֵינֵי אֵלֶּה שֶׁיּוֹצְאִים לְמַסָּעוֹת, הַכּוֹכָבִים הֵם סִימָנֵי דֶּרֶךְ", - "cloze_word_start": 10, - "cloze_word_end": 16, - "cloze_hint": null, - "cloze_guid": "Q`g2;0|#9Z" - }, "rejected_count": 0 }, "noun_inflection": null, @@ -69380,15 +69895,15 @@ "examples": { "vetted": [ { - "text": "הִיא אִחֲלָה לָנוּ הַצְלָחָה וְאָמְרָה שֶׁהִיא בְּטוּחָה שֶׁנַּצְלִיחַ וְנִהְיֶה הָאַלּוּפִים", - "source": "time_tunnel_78", - "match_method": "inflected_prefix" + "text": "\"בִּגְלַל זֶה רָצִיתִי לְהוֹסִיף עוֹד מַשֶּׁהוּ, כִּי אֲנִי יוֹדַעַת שֶׁאַתֶּם אַלּוּפֵי הִיסְטוֹרְיָה", + "source": "time_tunnel_75", + "match_method": "inflected" } ], "cloze": { - "text": "הִיא אִחֲלָה לָנוּ הַצְלָחָה וְאָמְרָה שֶׁהִיא בְּטוּחָה שֶׁנַּצְלִיחַ וְנִהְיֶה הָאַלּוּפִים", - "cloze_word_start": 81, - "cloze_word_end": 93, + "text": "\"בִּגְלַל זֶה רָצִיתִי לְהוֹסִיף עוֹד מַשֶּׁהוּ, כִּי אֲנִי יוֹדַעַת שֶׁאַתֶּם אַלּוּפֵי הִיסְטוֹרְיָה", + "cloze_word_start": 79, + "cloze_word_end": 88, "cloze_hint": null, "cloze_guid": "EWI`O2auJW" }, @@ -69463,7 +69978,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "cloze_word_start": 28, + "cloze_word_end": 38, + "cloze_hint": null, + "cloze_guid": "8F5l9t#Ra" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -75339,16 +75870,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "נִדְמֶה לִי שֶׁאֲנִי רוֹאֶה אוֹתָם מִתְאַמְּנִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, { "text": "אֲנִי חוֹבֵב כַּדּוּרֶגֶל, מִתְאַמֵּן בְּקָרָאטֶה, וּכְשֶׁמְּשַׁעֲמֵם לִי אֲנִי גּוֹלֵשׁ בָּאִינְטֶרְנֶט אוֹ מְשַׂחֵק בַּמַּחְשֵׁב", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "כִּי מִנְהָג יָשָׁן הוּא בַּמְּדִינָה, וְכָל יוֹשְׁבֶיהָ מִתְאַמְּנִים מִימֵי יַלְדוּתָם בִּקְפִיצָה עַל חֶבֶל", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { - "text": "אֲנִי חוֹבֵב כַּדּוּרֶגֶל, מִתְאַמֵּן בְּקָרָאטֶה, וּכְשֶׁמְּשַׁעֲמֵם לִי אֲנִי גּוֹלֵשׁ בָּאִינְטֶרְנֶט אוֹ מְשַׂחֵק בַּמַּחְשֵׁב", - "cloze_word_start": 27, - "cloze_word_end": 37, + "text": "נִדְמֶה לִי שֶׁאֲנִי רוֹאֶה אוֹתָם מִתְאַמְּנִים", + "cloze_word_start": 35, + "cloze_word_end": 48, "cloze_hint": null, "cloze_guid": "qX2Qc/;BLu" }, @@ -76237,7 +76778,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נַפְתָּלִי לֹא לָחַץ עָלַי לַעֲנוֹת, חָזַר לְאִמּוּנֵי הַכּוֹחַ שֶׁלּוֹ וְעָבַר לְתַרְגִּילֵי בֶּטֶן", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + }, + { + "text": "הָאִמּוּנִים הִתְמַקְּדוּ בְּפֵרוּק הַסֻּלָּמוֹת", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "נַפְתָּלִי לֹא לָחַץ עָלַי לַעֲנוֹת, חָזַר לְאִמּוּנֵי הַכּוֹחַ שֶׁלּוֹ וְעָבַר לְתַרְגִּילֵי בֶּטֶן", + "cloze_word_start": 43, + "cloze_word_end": 54, + "cloze_hint": null, + "cloze_guid": "J/dlmU9/w$" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אִמּוּן", @@ -76616,7 +77178,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"אִם תַּסְכִּימִי, אֲנַחְנוּ יְכוֹלִים לְהִשָּׁבַע לָךְ שְׁבוּעַת אֱמוּנִים", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "״ \"בַּחֶדֶר שֶׁבּוֹ הֵם נִשְׁבְּעוּ אֱמוּנִים,״ קוֹלָהּ רוֹעֵד מֵהִתְרַגְּשׁוּת, \"אַתָּה קוֹלֵט אֶת זֶה", + "source": "time_tunnel_81", + "match_method": "inflected" + } + ], + "cloze": { + "text": "״ \"אִם תַּסְכִּימִי, אֲנַחְנוּ יְכוֹלִים לְהִשָּׁבַע לָךְ שְׁבוּעַת אֱמוּנִים", + "cloze_word_start": 68, + "cloze_word_end": 77, + "cloze_hint": null, + "cloze_guid": "gv]HBoc$VK" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֵמוּן", @@ -77133,7 +77716,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"כְּשֶׁיַּתְחִיל הַבָּלָגָן, אֲנִי אַחְרַאי עַל קְבוּצַת נֹעַר,\" הוּא הִסְבִּיר, \"אִמְּנוּ אוֹתִי", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"כְּשֶׁיַּתְחִיל הַבָּלָגָן, אֲנִי אַחְרַאי עַל קְבוּצַת נֹעַר,\" הוּא הִסְבִּיר, \"אִמְּנוּ אוֹתִי", + "cloze_word_start": 82, + "cloze_word_end": 90, + "cloze_hint": null, + "cloze_guid": "gCs73xLdhC" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -79042,6 +79641,11 @@ "source": "time_tunnel_63", "match_method": "direct" }, + { + "text": "הֲרֵי אַתֶּם מַכִּירִים אוֹתִי, וְיוֹדְעִים שֶׁאֲנִי לֹא הַיֶּלֶד הֲכִי אַמִּיץ בָּעוֹלָם", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "יֶלֶד אַחֵר, אַמִּיץ יוֹתֵר מִמֶּנִּי, אוּלַי הָיָה נִכְנָס לְבַדּוֹ לְתוֹךְ הַמִּנְהָרָה הָאֲפֵלָה שֶׁהִתְגַּלְּתָה שָׁם", "source": "time_tunnel_63", @@ -79214,6 +79818,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"מִצְטַעֵר,\" הַהֲבָנָה שֶׁמִּנְהֶרֶת־הַזְּמַן מְעֹרֶבֶת בָּאֵרוּעַ הַזֶּה מְפִיחָה בִּי אֹמֶץ", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "\"אוֹקֵיי,\" הִיא מַפְגִּינָה אֹמֶץ", "source": "time_tunnel_82", @@ -79221,9 +79830,9 @@ } ], "cloze": { - "text": "\"אוֹקֵיי,\" הִיא מַפְגִּינָה אֹמֶץ", - "cloze_word_start": 28, - "cloze_word_end": 33, + "text": "\" \"מִצְטַעֵר,\" הַהֲבָנָה שֶׁמִּנְהֶרֶת־הַזְּמַן מְעֹרֶבֶת בָּאֵרוּעַ הַזֶּה מְפִיחָה בִּי אֹמֶץ", + "cloze_word_start": 90, + "cloze_word_end": 95, "cloze_hint": null, "cloze_guid": "G[,1Q5a^=W" }, @@ -79370,6 +79979,11 @@ "text": "מַייק אִמֵּץ אֶת הַתְּמוּנָה אֶל לִבּוֹ", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "\" אֲנִי שׁוֹתֵק וּמְנַסֶּה לְאַמֵּץ אֶת זִכְרוֹנִי כְּכָל הָאֶפְשָׁר", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -83258,6 +83872,11 @@ "text": "וְעוֹד הִתְבָּרֵר לָנוּ שֶׁכָּל מָה שֶׁנֹּגַהּ סִפְּרָה הָיָה אֱמֶת", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "\"אֲבָל כָּל מָה שֶׁאָמַרְתִּי לָכֶם זוֹ אֱמֶת", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -83513,7 +84132,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "זֹאת אַנְדַּרְטָה שֶׁמֻּצֶּבֶת בְּרֹאשׁ הַגִּבְעָה לְיַד הַגַּן הַלְּאֻמִּי", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "זֹאת אַנְדַּרְטָה שֶׁמֻּצֶּבֶת בְּרֹאשׁ הַגִּבְעָה לְיַד הַגַּן הַלְּאֻמִּי", + "cloze_word_start": 5, + "cloze_word_end": 17, + "cloze_hint": null, + "cloze_guid": "t7^g-=OR&|" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אַנְדַּרְטָה", @@ -83579,6 +84214,11 @@ "text": "וְכָךְ שָׁטִים אָנוּ בַּעֲלִיצוּת הַבַּיְתָה עַל רֶקַע שְׁקִיעָתָהּ שֶׁל הַחַמָּה", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "שְׁמִינִית: כְּנֶגֶד זֶה הִתְחַיַּבְנוּ אָנוּ לְהַמְצִיא לָאָדָם־הָהָר אֶת לֶחֶם חֻקּוֹ וְלָתֵת לוֹ אֶת כָּל מַחְסוֹרוֹ", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { @@ -88785,7 +89425,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבַהֶמְשֵׁךְ: אֲנַחְנוּ, קְבוּצַת יְלָדִים מִכָּל יִשּׁוּבֵי גּוּשׁ קָטִיף, רוֹצִים לִכְתּוֹב לְךָ מִכְתָּב אִישִׁי", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "וּבַהֶמְשֵׁךְ: אֲנַחְנוּ, קְבוּצַת יְלָדִים מִכָּל יִשּׁוּבֵי גּוּשׁ קָטִיף, רוֹצִים לִכְתּוֹב לְךָ מִכְתָּב אִישִׁי", + "cloze_word_start": 109, + "cloze_word_end": 116, + "cloze_hint": null, + "cloze_guid": "PopdRoel{(" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -90271,24 +90927,24 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "כָּךְ נוֹדַע לִי בַּיּוֹם הַשְּׁלִישִׁי עַל אֲסוֹן עֲצֵי הַבָּאוֹבַּבּ", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "\" \"כִּי חוֹקֵר שֶׁמְּשַׁקֵּר עָלוּל לִגְרֹם אָסוֹן בְּסִפְרֵי הַגֵּאוֹגְרַפְיָה", "source": "little_prince", "match_method": "direct" }, { - "text": "אִמָּא שֶׁל עֵדֶן כָּל כָּךְ בָּכְתָה, עַד שֶׁגַּם לִי הָיָה נִדְמֶה שֶׁקָּרָה אָסוֹן", - "source": "time_tunnel_70", - "match_method": "direct" - }, - { - "text": "אֲבָל אָז קָרָה אָסוֹן", - "source": "time_tunnel_70", + "text": "וְלָכֵן אִם תָּפֵר אוֹתָהּ, זֶה מַמָּשׁ לֹא יִהְיֶה אָסוֹן", + "source": "time_tunnel_81", "match_method": "direct" } ], "cloze": { - "text": "\" \"כִּי חוֹקֵר שֶׁמְּשַׁקֵּר עָלוּל לִגְרֹם אָסוֹן בְּסִפְרֵי הַגֵּאוֹגְרַפְיָה", + "text": "כָּךְ נוֹדַע לִי בַּיּוֹם הַשְּׁלִישִׁי עַל אֲסוֹן עֲצֵי הַבָּאוֹבַּבּ", "cloze_word_start": 44, "cloze_word_end": 50, "cloze_hint": null, @@ -91001,7 +91657,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כִּי הִנֵּה נֶאֶסְפוּ סְבִיבוֹ מַחֲנוֹת גַּמָּדִים חֲדָשִׁים", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "כִּי הִנֵּה נֶאֶסְפוּ סְבִיבוֹ מַחֲנוֹת גַּמָּדִים חֲדָשִׁים", + "cloze_word_start": 12, + "cloze_word_end": 21, + "cloze_hint": null, + "cloze_guid": "gwY3bo,K#^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -91942,7 +92614,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"זֹאת אֲסֵפָה סוֹדִית,״ הִיא לוֹחֶשֶׁת", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"זֹאת אֲסֵפָה סוֹדִית,״ הִיא לוֹחֶשֶׁת", + "cloze_word_start": 6, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "AI]dCG$@gc" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֲסֵפָה", @@ -92158,15 +92846,25 @@ "examples": { "vetted": [ { - "text": "\" עָנָה לוֹ הַמֶּלֶךְ וְאָסַף אֵלָיו בִּתְנוּעָה מַלְכוּתִית אֶת שֹוּלֶיהָ שֶׁל גְּלִימַת הַפַּרְוָה שֶׁלּוֹ", - "source": "little_prince", - "match_method": "conjugated_prefix" + "text": "גּוּלִיבֶר אָסַף לְכִיסוֹ אֶת הַפָּרוֹת, הַפָּרִים וְהַכְּבָשִׂים הַחַיִּים, וְעָלָה עַל הָאֳנִיָּה", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "עַד לִפְנֵי שָׁבוּעַ אָסַף בּוּלִים, מַמָשׁ הָיָה לָהוּט אַחֲרֵיהֶם", + "source": "silkworms", + "match_method": "conjugated" + }, + { + "text": "אֲבָל בֵּינְתַיִם לָמַד מִבֵּן דוֹדוֹ עִסוּק חָדָשׁ וּמְעַנְיֵן: הוּא הִתְחִיל לֶאֱסֹף סִפְרֵי הַרְפַּתְקָאוֹת", + "source": "silkworms", + "match_method": "direct" } ], "cloze": { - "text": "\" עָנָה לוֹ הַמֶּלֶךְ וְאָסַף אֵלָיו בִּתְנוּעָה מַלְכוּתִית אֶת שֹוּלֶיהָ שֶׁל גְּלִימַת הַפַּרְוָה שֶׁלּוֹ", - "cloze_word_start": 22, - "cloze_word_end": 29, + "text": "גּוּלִיבֶר אָסַף לְכִיסוֹ אֶת הַפָּרוֹת, הַפָּרִים וְהַכְּבָשִׂים הַחַיִּים, וְעָלָה עַל הָאֳנִיָּה", + "cloze_word_start": 11, + "cloze_word_end": 16, "cloze_hint": null, "cloze_guid": "DNDOe4#QNf" }, @@ -92789,6 +93487,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "כֻּלָּם כִּנּוּ אוֹתוֹ 'אֲסִיר הַמִּשְׁפָּחָה' וּבָאוּ לְבַקֵּר אוֹתוֹ בְּכָל הִזְדַּמְּנוּת", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, { "text": "הוּא לָבַשׁ בִּגְדֵי אֲסִירִים וּשְׂעָרוֹ הָיָה מְגֻלָּח", "source": "time_tunnel_silver_train", @@ -92796,8 +93499,8 @@ } ], "cloze": { - "text": "הוּא לָבַשׁ בִּגְדֵי אֲסִירִים וּשְׂעָרוֹ הָיָה מְגֻלָּח", - "cloze_word_start": 21, + "text": "כֻּלָּם כִּנּוּ אוֹתוֹ 'אֲסִיר הַמִּשְׁפָּחָה' וּבָאוּ לְבַקֵּר אוֹתוֹ בְּכָל הִזְדַּמְּנוּת", + "cloze_word_start": 24, "cloze_word_end": 30, "cloze_hint": null, "cloze_guid": "fK2uFQ>Mo~" @@ -93322,16 +94025,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "“אֲנִי אוֹסֵר עָלֶיךָ לַעֲשׂוֹת שְׁטוּיוֹת", + "source": "tree_dress", + "match_method": "conjugated" + }, { "text": "\"פִּהוּק בְּנוֹכְחוּת הַמֶּלֶךְ מְנֻגָּד לִכְלָלֵי הַנִּימוּס,\" אָמַר לוֹ הוֹד מַלְכוּתוֹ, \"אֲנִי אוֹסֵר זֹאת עָלֶיךָ", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "אַךְ לְבַסּוֹף עָלָה בְּיָדָם לִתְפֹּס שִׁשָּׁה מֵהֶם, אָסְרוּ אוֹתָם בַּחֲבָלִים וּבְרָמְחֵיהֶם הִגִּישׁוּם עַד לְקַרְסֻלֵּי גּוּלִיבֶר", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { - "text": "\"פִּהוּק בְּנוֹכְחוּת הַמֶּלֶךְ מְנֻגָּד לִכְלָלֵי הַנִּימוּס,\" אָמַר לוֹ הוֹד מַלְכוּתוֹ, \"אֲנִי אוֹסֵר זֹאת עָלֶיךָ", - "cloze_word_start": 98, - "cloze_word_end": 104, + "text": "“אֲנִי אוֹסֵר עָלֶיךָ לַעֲשׂוֹת שְׁטוּיוֹת", + "cloze_word_start": 7, + "cloze_word_end": 13, "cloze_hint": null, "cloze_guid": "o&Ekfr8LA^" }, @@ -93762,7 +94475,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"גַּם מַאֲסַר עוֹלָם זֶה מַשֶּׁהוּ שֶׁבִּכְלָל לֹא נָעִים,״ שָׁרוֹן הֵעִירָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + } + ], + "cloze": { + "text": "״ \"גַּם מַאֲסַר עוֹלָם זֶה מַשֶּׁהוּ שֶׁבִּכְלָל לֹא נָעִים,״ שָׁרוֹן הֵעִירָה", + "cloze_word_start": 8, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "k-bRDtNSJ;" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַאֲסָר", @@ -97838,7 +98567,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא אוֹחֵז בָּרִתְמָה שֶׁל הַסּוּסָה וּמְנַסֶּה, בַּעֲדִינוּת רַבָּה, לִגְרוֹר אוֹתָהּ פְּנִימָה לְתוֹךְ אֵיזֶשֶׁהוּ כּוּךְ אָפֵל", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "הִכְנִיס אֶת הַגְּדִי לְדִיר אָפֵל, סָגַר וְנָעַל אֶת הַדֶּלֶת, אֲבָל שָׁכַח כִּי יֵשׁ שָׁם חַלּוֹן", + "source": "kid_on_mountain", + "match_method": "direct" + } + ], + "cloze": { + "text": "הוּא אוֹחֵז בָּרִתְמָה שֶׁל הַסּוּסָה וּמְנַסֶּה, בַּעֲדִינוּת רַבָּה, לִגְרוֹר אוֹתָהּ פְּנִימָה לְתוֹךְ אֵיזֶשֶׁהוּ כּוּךְ אָפֵל", + "cloze_word_start": 125, + "cloze_word_end": 130, + "cloze_hint": null, + "cloze_guid": "NzU8G#V}&@" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -105201,6 +105951,11 @@ "text": "זֶה בֶּאֱמֶת נִרְאָה בִּלְתִּי אֶפְשָׁרִי", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "הַתְּנוּעוֹת שֶׁל הָאִישׁ וְשֶׁל הַסּוּסָה אִטִּיּוֹת בְּאֹפֶן בִּלְתִּי אֶפְשָׁרִי, וְכָךְ גַּם הַקּוֹלוֹת שֶׁלָּהֶם", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -105398,7 +106153,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבֶאֱמֶת, הַפְּרָדוֹת לֹא מְיֹעָדוֹת לִרְכִיבָה סְתָם, וְהַבְּעָלִים שֶׁלָּהֶן לֹא מִתְהַדְּרִים בָּאֲצִילוּת שֶׁלָּהֶן", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "וּבֶאֱמֶת, הַפְּרָדוֹת לֹא מְיֹעָדוֹת לִרְכִיבָה סְתָם, וְהַבְּעָלִים שֶׁלָּהֶן לֹא מִתְהַדְּרִים בָּאֲצִילוּת שֶׁלָּהֶן", + "cloze_word_start": 98, + "cloze_word_end": 110, + "cloze_hint": null, + "cloze_guid": "iAxLzkg" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בְּדִיקָה", @@ -147463,6 +148452,11 @@ "text": "הָאֶפְשָׁרוּת שֶׁמִּישֶׁהוּ זִהָה אֶת מִנְהֶרֶת־הַזְּמַן שֶׁלָּנוּ וּמִתְכַּוֵן לְהִכָּנֵס לְתוֹכָהּ, מַבְהִילָה אוֹתִי", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "״ הַצְּעָקָה שֶׁל שָׁרוֹן מַבְהִילָה אוֹתִי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "rejected_count": 0 @@ -148210,6 +149204,11 @@ "text": "הָאֶפְשָׁרוּת שֶׁמִּישֶׁהוּ זִהָה אֶת מִנְהֶרֶת־הַזְּמַן שֶׁלָּנוּ וּמִתְכַּוֵן לְהִכָּנֵס לְתוֹכָהּ, מַבְהִילָה אוֹתִי", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "״ הַצְּעָקָה שֶׁל שָׁרוֹן מַבְהִילָה אוֹתִי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "rejected_count": 0 @@ -148945,16 +149944,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "מֵרֹב בֶּהָלָה הִיא הִצְלִיחָה לְהָפִיק מִגְּרוֹנָהּ רַק הִמְהוּמִים לֹא מוּבָנִים", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "קֹדֶם כֹּל, שְׁלוֹשָׁה עֲטַלֵּפִים עָבְרוּ מֵהַצַּד שֶׁלָּנוּ אֶל הַצַּד שֶׁלָּהֶם, וְגָרְמוּ לָהֶם בֶּהָלָה רַבָּה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "וְהָיְתָה בֶּהָלָה גְדוֹלָה וּמְהוּמָה", + "source": "ilana", + "match_method": "direct" } ], "cloze": { - "text": "קֹדֶם כֹּל, שְׁלוֹשָׁה עֲטַלֵּפִים עָבְרוּ מֵהַצַּד שֶׁלָּנוּ אֶל הַצַּד שֶׁלָּהֶם, וְגָרְמוּ לָהֶם בֶּהָלָה רַבָּה", - "cloze_word_start": 100, - "cloze_word_end": 108, + "text": "מֵרֹב בֶּהָלָה הִיא הִצְלִיחָה לְהָפִיק מִגְּרוֹנָהּ רַק הִמְהוּמִים לֹא מוּבָנִים", + "cloze_word_start": 6, + "cloze_word_end": 14, "cloze_hint": null, "cloze_guid": "KYodX1Lv4{" }, @@ -150945,9 +151954,9 @@ "match_method": "conjugated" }, { - "text": "אוּלַי מוּטָב לֹא לִשְׂמוֹחַ מֻקְדָּם מִדַּי, וּלְהַמְשִׁיךְ לִשְׁכַּב כָּכָה בְּלִי לָזוּז עַד שֶׁהַמַּצָּב יִתְבַּהֵר", - "source": "time_tunnel_75", - "match_method": "conjugated" + "text": "בְּבַת אַחַת תּוֹקֶפֶת אוֹתִי צְמַרְמֹרֶת שֶׁל הִתְרַגְּשׁוּת, וְהָעֲרָפֶל שֶׁבְּמוֹחִי מַתְחִיל לְהִתְבַּהֵר", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -151456,6 +152465,11 @@ "text": "הוּא מַמָּשׁ לֹא נִרְאָה כְּמוֹ הַבֵּן שֶׁל יְהוּדִית, שֶׁהָיוּ לָהּ שַׂעֲרוֹת שֵׂיבָה וְעוֹר בָּהִיר מְאוֹד", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "וְאָז בְּיוֹם בָּהִיר אֶחָד, כְּמוֹ רַעַם, הַמֶּמְשָׁלָה הֶחְלִיטָה לְפַנּוֹת אֶת הָאֵזוֹר וּלְהַעֲבִיר אוֹתוֹ לְתוֹשָׁבֵי עַזָּה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -153801,7 +154815,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאִילָנָה תִּקְּנָה אֶת כָּל הַבֻּבּוֹת וְהַצַּעֲצוּעִים, וְגַם בְּגָדִים חֲדָשִׁים תָּפְרָה לַלֵּיצָן", + "source": "ilana", + "match_method": "inflected_prefix" + }, + { + "text": "וְהַבֻּבּוֹת וְהַצַּעֲצוּעִים הַמְתֻקָּנִים רָמְזוּ זֶה לָזֶה: – הָס", + "source": "ilana", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וְאִילָנָה תִּקְּנָה אֶת כָּל הַבֻּבּוֹת וְהַצַּעֲצוּעִים, וְגַם בְּגָדִים חֲדָשִׁים תָּפְרָה לַלֵּיצָן", + "cloze_word_start": 30, + "cloze_word_end": 40, + "cloze_hint": null, + "cloze_guid": "sqh32O0gkZ" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בֻּבָּה", @@ -153929,15 +154964,15 @@ "examples": { "vetted": [ { - "text": "\" אָמְרָה הַיּוֹנָה בְּנִימַת הַבּוּז הֶעָמֹק בְּיוֹתֵר", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "\" הַכַּעַס שֶׁלִּי כָּל כָּךְ בּוֹעֵר, עַד שֶׁאֲפִלּוּ אִם אֲנַסֶּה לְרַסֵּן אֶת עַצְמִי, לֹא אַצְלִיחַ, \"בּוּז", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\" אָמְרָה הַיּוֹנָה בְּנִימַת הַבּוּז הֶעָמֹק בְּיוֹתֵר", - "cloze_word_start": 30, - "cloze_word_end": 37, + "text": "\" הַכַּעַס שֶׁלִּי כָּל כָּךְ בּוֹעֵר, עַד שֶׁאֲפִלּוּ אִם אֲנַסֶּה לְרַסֵּן אֶת עַצְמִי, לֹא אַצְלִיחַ, \"בּוּז", + "cloze_word_start": 106, + "cloze_word_end": 111, "cloze_hint": null, "cloze_guid": "E$:qGow(Gf" }, @@ -154433,6 +155468,11 @@ "source": "time_tunnel_75", "match_method": "conjugated" }, + { + "text": "״ שָׁרוֹן פּוֹזֶלֶת אֵלַי, בָּרוּר שֶׁהַשְּׁאֵלָה מְבִיכָה אוֹתָהּ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "זֶה הָיָה קֶטַע מַמָּשׁ מֵבִיךְ", "source": "time_tunnel_70", @@ -155245,20 +156285,20 @@ "examples": { "vetted": [ { - "text": "\" נֹגַהּ נִרְאֲתָה נְבוֹכָה, וְחָשַׁבְתִּי שֶׁאֲנִי יוֹדֵעַ מִמָּה הַמְּבוּכָה שֶׁלָּהּ נוֹבַעַת", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "רַק לִפְנֵי שְׁנִיּוֹת הִיא נִרְאֲתָה מְלֵאַת חֲשִׁיבוּת, וּפִתְאוֹם הִשְׁתַּלְּטָה עָלֶיהָ מְבוּכָה", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "שָׁרוֹן הִסְמִיקָה בִּמְבוּכָה, יָכוֹל לִהְיוֹת שֶׁגַּם אֲנִי הִסְמַקְתִּי", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "זוֹ דְּמָמָה שֶׁל מְבוּכָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\" נֹגַהּ נִרְאֲתָה נְבוֹכָה, וְחָשַׁבְתִּי שֶׁאֲנִי יוֹדֵעַ מִמָּה הַמְּבוּכָה שֶׁלָּהּ נוֹבַעַת", - "cloze_word_start": 67, - "cloze_word_end": 78, + "text": "רַק לִפְנֵי שְׁנִיּוֹת הִיא נִרְאֲתָה מְלֵאַת חֲשִׁיבוּת, וּפִתְאוֹם הִשְׁתַּלְּטָה עָלֶיהָ מְבוּכָה", + "cloze_word_start": 92, + "cloze_word_end": 100, "cloze_hint": null, "cloze_guid": "dkJvsx!Hp8" }, @@ -155777,7 +156817,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "עַד כָּאן בֶּאֱמֶת הַכֹּל בּוּל, כְּמוֹ שֶׁשָּׁרוֹן אָמְרָה", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "עַד לִפְנֵי שָׁבוּעַ אָסַף בּוּלִים, מַמָשׁ הָיָה לָהוּט אַחֲרֵיהֶם", + "source": "silkworms", + "match_method": "inflected" + } + ], + "cloze": { + "text": "עַד כָּאן בֶּאֱמֶת הַכֹּל בּוּל, כְּמוֹ שֶׁשָּׁרוֹן אָמְרָה", + "cloze_word_start": 26, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "w.`8c^Fvz{" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בּוּל", @@ -156272,15 +157333,15 @@ "examples": { "vetted": [ { - "text": "כִּמְעַט לֹא דִּבַּרְנוּ כָּל הַזְּמַן הַזֶּה, הִרְגַּשְׁנוּ מְבֹאָסִים וּמוּבָסִים", - "source": "time_tunnel_silver_train", - "match_method": "conjugated_prefix" + "text": "\"הַנָּאצִים כְּבָר הוּבְסוּ בַּמִּלְחָמָה,\" הוּא מַזְכִּיר לָהּ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { - "text": "כִּמְעַט לֹא דִּבַּרְנוּ כָּל הַזְּמַן הַזֶּה, הִרְגַּשְׁנוּ מְבֹאָסִים וּמוּבָסִים", - "cloze_word_start": 72, - "cloze_word_end": 83, + "text": "\"הַנָּאצִים כְּבָר הוּבְסוּ בַּמִּלְחָמָה,\" הוּא מַזְכִּיר לָהּ", + "cloze_word_start": 19, + "cloze_word_end": 27, "cloze_hint": null, "cloze_guid": "qh&#EH~S4c" }, @@ -164198,8 +165259,8 @@ "match_method": "direct" }, { - "text": "בְּחִילָה נוֹרָאָה תָּקְפָה אוֹתִי", - "source": "time_tunnel_63", + "text": "לֹא עָנִיתִי לָהּ, כִּי חָטַפְתִּי בְּחִילָה נוֹרָאָה וְהִרְגַּשְׁתִּי שֶׁבְּעוֹד שְׁנִיָּה אֲנִי עוֹמֵד לְהָקִיא", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -168174,6 +169235,11 @@ "text": "בַּחוּרָה שֶׁצָּצָה מֵאַחַד הַשִּׂיחִים, סִמְּנָה לָהֶם מַשֶּׁהוּ בְּיָדָהּ", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "\"שָׁלוֹם יְלָדִים,״ בַּחוּרָה רָזָה נִכְנֶסֶת אֶל הַחֶדֶר שֶׁבּוֹ אֲנַחְנוּ נִמְצָאִים וּמְבִיאָה אִתָּהּ שְׂמִיכָה עָבָה, מְקֻפֶּלֶת", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -170195,7 +171261,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נִרְאָה שֶׁהוּא אֵינוֹ בּוֹטֵחַ בָּנוּ שֶׁאֲנַחְנוּ בֶּאֱמֶת מִתְרַחֲקִים", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "נִרְאָה שֶׁהוּא אֵינוֹ בּוֹטֵחַ בָּנוּ שֶׁאֲנַחְנוּ בֶּאֱמֶת מִתְרַחֲקִים", + "cloze_word_start": 23, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "Q`Nvx;6{fm" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -173097,7 +174179,16 @@ "לְהִתְבַּטֵּל|Verb|to idle, to mess around" ], "confusables_guid": "o0?9P033?>", - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁרוֹן וַאֲנִי שְׁרוּיִים בַּחֲשֵׁכָה מֻחְלֶטֶת, וְהָאֶפְשָׁרוּת לְהַדְלִיק נֵר מִתְבַּטֶּלֶת מִיָּד", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -175009,7 +176100,16 @@ "לְהִתְבַּטֵּל|Verb|to idle, to mess around" ], "confusables_guid": "o0?9P033?>", - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁרוֹן וַאֲנִי שְׁרוּיִים בַּחֲשֵׁכָה מֻחְלֶטֶת, וְהָאֶפְשָׁרוּת לְהַדְלִיק נֵר מִתְבַּטֶּלֶת מִיָּד", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -175433,7 +176533,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "עַמִי רָאָה כֵּיצַד מַתְחִילוֹת הַפְּקָעוֹת לְקַבֵּל צוּרָה שֶׁל בָּטְנִים מְעֻגָלִים וּצְהֻבִּים", + "source": "silkworms", + "match_method": "inflected" + } + ], + "cloze": { + "text": "עַמִי רָאָה כֵּיצַד מַתְחִילוֹת הַפְּקָעוֹת לְקַבֵּל צוּרָה שֶׁל בָּטְנִים מְעֻגָלִים וּצְהֻבִּים", + "cloze_word_start": 65, + "cloze_word_end": 74, + "cloze_hint": null, + "cloze_guid": "uN>PjzvJ|6" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בֹּטֶן", @@ -180107,20 +181223,15 @@ "examples": { "vetted": [ { - "text": "אֲבָל אֲנִי לֹא הָיִיתִי זָקוּק לַהֲבָנָה שֶׁלָּהּ, וְגַם לֹא לַהֲבָנָה שֶׁל הָעֲטַלֵּפִית הָאוֹרַחַת", - "source": "time_tunnel_78", - "match_method": "direct_prefix" - }, - { - "text": "לִפְעָמִים, הַהֲבָנָה שֶׁלְּךָ יְכוֹלָה לִהְיוֹת כָּל כָּךְ חֲזָקָה, עַד שֶׁשּׁוּם דָּבָר לֹא יָזִיז אוֹתְךָ מִמֶּנָּה", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "רַק לִפְנֵי זְמַן קָצָר הִיא אָמְרָה לִי לֹא לִדְאוֹג, וְעַכְשָׁיו הִיא מַבִּיטָה בִּי בְּחֹסֶר הֲבָנָה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "אֲבָל אֲנִי לֹא הָיִיתִי זָקוּק לַהֲבָנָה שֶׁלָּהּ, וְגַם לֹא לַהֲבָנָה שֶׁל הָעֲטַלֵּפִית הָאוֹרַחַת", - "cloze_word_start": 32, - "cloze_word_end": 41, + "text": "רַק לִפְנֵי זְמַן קָצָר הִיא אָמְרָה לִי לֹא לִדְאוֹג, וְעַכְשָׁיו הִיא מַבִּיטָה בִּי בְּחֹסֶר הֲבָנָה", + "cloze_word_start": 96, + "cloze_word_end": 103, "cloze_hint": null, "cloze_guid": "QJo2yqSXb>" }, @@ -181063,6 +182174,11 @@ "text": "בֶּטַח תֵּכֶף תְּסַפְּרִי לִי שֶׁמֵּעוֹלָם לֹא טָעַמְתְּ בֵּיצָה", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "כָּל אַחַת מֵהֶן הֵטִילָה הֲמוֹן בֵּיצִים", + "source": "silkworms", + "match_method": "inflected" } ], "rejected_count": 0 @@ -181162,7 +182278,16 @@ "בִּירָה|Noun|capital (city)" ], "confusables_guid": "L#PdOm~X9L", - "examples": null, + "examples": { + "vetted": [ + { + "text": "לוֹנְדוֹן הִיא בִּירַת פָּרִיז, וּפָּרִיז הִיא בִּירַת רוֹמָא, וְרוֹמָא", + "source": "alice_wonderland", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בִּירָה", @@ -181225,7 +182350,16 @@ "בִּירָה|Noun|capital (city)" ], "confusables_guid": "L#PdOm~X9L", - "examples": null, + "examples": { + "vetted": [ + { + "text": "לוֹנְדוֹן הִיא בִּירַת פָּרִיז, וּפָּרִיז הִיא בִּירַת רוֹמָא, וְרוֹמָא", + "source": "alice_wonderland", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בִּירָה", @@ -181807,6 +182941,11 @@ "text": "\"לֹא לְגַמְרֵי נָכוֹן, לְצַעֲרִי,\" אָמְרָה אַלִיס, מְבֻיֶּשֶׁת, \"חֵלֶק מֵהַמִּלִּים הִשְׁתַּנּוּ", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "וְהַכִּסְאוֹת עֲזוּבִים וְרֵיקִים וְהַשֻּׁלְחָנוֹת מְבֻיָּשִׁים", + "source": "ilana", + "match_method": "conjugated" } ], "cloze": { @@ -182545,6 +183684,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "כָּאן הֵרִיעַ אַחַד הַשַּׁרְקָנִים, וּמִיָּד דֻּכָּא בִּידֵי אֶחָד מִפְּקִידֵי בֵּית הַמִּשְׁפָּט", + "source": "alice_wonderland", + "match_method": "inflected" + }, { "text": "צָרִיךְ לוֹמַר לָהֶם, \"רָאִיתִי בַּיִת שֶׁעוֹלֶה שְׁלוֹשִׁים אֶלֶף פְרַנְק", "source": "little_prince", @@ -182554,19 +183698,14 @@ "text": "\" אָז הֵם יִקְרְאוּ בְּשִׂמְחָה, \"אֵיזֶה יֹפִי שֶׁל בַּיִת", "source": "little_prince", "match_method": "direct" - }, - { - "text": "לְפִי הַחֻקִּים שֶׁל הַטּוּרְקִים, נֶאֱסַר עֲלֵיהֶם לִבְנוֹת בָּתִּים חֲדָשִׁים בַּמּוֹשָׁבוֹת הַחֲדָשׁוֹת", - "source": "time_tunnel_70", - "match_method": "inflected" } ], "cloze": { - "text": "צָרִיךְ לוֹמַר לָהֶם, \"רָאִיתִי בַּיִת שֶׁעוֹלֶה שְׁלוֹשִׁים אֶלֶף פְרַנְק", - "cloze_word_start": 32, - "cloze_word_end": 38, + "text": "כָּאן הֵרִיעַ אַחַד הַשַּׁרְקָנִים, וּמִיָּד דֻּכָּא בִּידֵי אֶחָד מִפְּקִידֵי בֵּית הַמִּשְׁפָּט", + "cloze_word_start": 79, + "cloze_word_end": 84, "cloze_hint": null, - "cloze_guid": "t(~QG|f.;H" + "cloze_guid": "Ow!]a^QV%j" }, "rejected_count": 0 }, @@ -184513,6 +185652,11 @@ "text": "מֵהַמַּרְתֵּף שֶׁל הַבַּיִת בָּקַע בֶּכִי שֶׁל תִּינוֹק, וּמֵחַלּוֹן הַמִּטְבָּח עָלוּ רֵיחוֹת שֶׁל בִּשּׁוּלִים", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "הָעֲרֵמוֹת שֶׁל קֻפְסְאוֹת הַשִּׁמּוּרִים הוֹלְכוֹת וּקְטֵנוֹת, וְאֶת מְקוֹמָן שֶׁל הַצְּעָקוֹת תּוֹפְסִים פִּרְצֵי בֶּכִי", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -185408,7 +186552,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"תִּשְׁכַּח לְרֶגַע מֵהַחֹם,״ הִיא חַסְרַת סַבְלָנוּת, \"לֹא מַתְאִים לְךָ לְהִתְבַּכְיֵן", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "״ \"תִּשְׁכַּח לְרֶגַע מֵהַחֹם,״ הִיא חַסְרַת סַבְלָנוּת, \"לֹא מַתְאִים לְךָ לְהִתְבַּכְיֵן", + "cloze_word_start": 76, + "cloze_word_end": 90, + "cloze_hint": null, + "cloze_guid": "bCAC[Y/J/s" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -188091,6 +189251,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" אֲנִי מוֹדֶה שֶׁעַכְשָׁיו אֲנִי הִתְבַּלְבַּלְתִּי", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "לְרֶגַע עָלְתָה בְּדַעְתִּי הָאֶפְשָׁרוּת שֶׁאוּלַי הִתְבַּלְבַּלְתִּי, וּמִי שֶׁבָּאָה לְחַדְרִי בַּלַּיְלָה לֹא הָיְתָה מִנְהֶרֶת־הַזְּמַן", "source": "time_tunnel_70", @@ -188100,17 +189265,12 @@ "text": "״ \"אָז אֵיךְ הִתְבַּלְבַּלְתָּ כָּכָה", "source": "time_tunnel_78", "match_method": "conjugated" - }, - { - "text": "הַאִם מִישֶׁהוּ הִתְבַּלְבֵּל כָּאן", - "source": "time_tunnel_63", - "match_method": "conjugated" } ], "cloze": { - "text": "לְרֶגַע עָלְתָה בְּדַעְתִּי הָאֶפְשָׁרוּת שֶׁאוּלַי הִתְבַּלְבַּלְתִּי, וּמִי שֶׁבָּאָה לְחַדְרִי בַּלַּיְלָה לֹא הָיְתָה מִנְהֶרֶת־הַזְּמַן", - "cloze_word_start": 52, - "cloze_word_end": 70, + "text": "\" אֲנִי מוֹדֶה שֶׁעַכְשָׁיו אֲנִי הִתְבַּלְבַּלְתִּי", + "cloze_word_start": 34, + "cloze_word_end": 52, "cloze_hint": null, "cloze_guid": "wzv!tH61p:" }, @@ -188542,15 +189702,15 @@ "examples": { "vetted": [ { - "text": "הַבִּלְבּוּל תּוֹקֵעַ אוֹתִי בִּמְקוֹמִי", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "\" נִשְׁבָּע לָכֶם שֶׁאֲנִי מַרְגִּישׁ שֶׁאֲנִי עוֹמֵד לְהִשְׁתַּגֵּעַ מֵרֹב בִּלְבּוּל", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "הַבִּלְבּוּל תּוֹקֵעַ אוֹתִי בִּמְקוֹמִי", - "cloze_word_start": 0, - "cloze_word_end": 12, + "text": "\" נִשְׁבָּע לָכֶם שֶׁאֲנִי מַרְגִּישׁ שֶׁאֲנִי עוֹמֵד לְהִשְׁתַּגֵּעַ מֵרֹב בִּלְבּוּל", + "cloze_word_start": 76, + "cloze_word_end": 86, "cloze_hint": null, "cloze_guid": "I)_4G80:Gh" }, @@ -189344,6 +190504,16 @@ "text": "תַּגִּידוּ, אַתֶּם מַצְלִיחִים לְפַעְנֵחַ אֶת הַבָּלָגָן שֶׁהוֹלֵךְ פֹּה", "source": "time_tunnel_82", "match_method": "direct_prefix" + }, + { + "text": "\"כְּשֶׁיַּתְחִיל הַבָּלָגָן, אֲנִי אַחְרַאי עַל קְבוּצַת נֹעַר,\" הוּא הִסְבִּיר, \"אִמְּנוּ אוֹתִי", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "\" \"תִּשְׁתַּחְרְרוּ וְתִשְׁכְּחוּ אֶת כָּל הַבָּלָגָן", + "source": "time_tunnel_77", + "match_method": "direct_prefix" } ], "cloze": { @@ -194240,7 +195410,16 @@ "לִבְלוֹת" ], "confusables_guid": "EIg3)j%+IO", - "examples": null, + "examples": { + "vetted": [ + { + "text": "יָצָאנוּ מֵהַמַּעֲגָן בְּהֶרְצְלִיָּה שֶׁבּוֹ 'נוּרִית' מְבַלָּה אֶת רֹב זְמַנָּהּ, וְעַכְשָׁיו כְּבָר הָיִינוּ מוּל הָעִיר אַשְׁדּוֹד", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -196466,7 +197645,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "רַק וִילוֹן אֶחָד, קָרוּעַ, תָּלוּי עַל בְּלִימָה וּמִתְנוֹפֵף", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "רַק וִילוֹן אֶחָד, קָרוּעַ, תָּלוּי עַל בְּלִימָה וּמִתְנוֹפֵף", + "cloze_word_start": 40, + "cloze_word_end": 49, + "cloze_hint": null, + "cloze_guid": "Fn$DB3@6R3" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בְּלִימָה", @@ -196679,7 +197874,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "', אֲבָל תְּשׁוּבָתָהּ שֶׁל מְנָיָה בּוֹלֶמֶת אוֹתִי", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "', אֲבָל תְּשׁוּבָתָהּ שֶׁל מְנָיָה בּוֹלֶמֶת אוֹתִי", + "cloze_word_start": 36, + "cloze_word_end": 45, + "cloze_hint": null, + "cloze_guid": "b5RW2pa]R(" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -197561,8 +198772,13 @@ "match_method": "conjugated" }, { - "text": "\" צָעַקְתִּי, וְהַצְּעָקָה שֶׁלִּי נִבְלְעָה בִּתְרוּעוֹת הַחֲצוֹצְרוֹת וּבְמַנְגִּינוֹת הַכִּנּוֹרוֹת, וְהָיוּ שָׁם גַּם אָקוֹרְדְּיוֹן אֶחָד וּשְׁנֵי שׁוֹפָרוֹת", - "source": "time_tunnel_75", + "text": "הַאִם הֵם רָאוּ אוֹתִי נִבְלָע בְּתוֹךְ הַבּוֹר", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״ צַעֲקָתוֹ שֶׁל אָדוֹן קְרָאוּזֶה נִבְלַעַת בְּקוֹל שַׁעֲטַת פְּרָסוֹת, \"הוּא הָיָה אָמוּר לִשְׁמוֹר עַל הַחַוָה", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -200275,7 +201491,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נִרְאֶה לִי כְּאִלּוּ אֲנִי צוֹפֶה בְּסֶרֶט, שֶׁבּוֹ הַבַּמַּאי בָּחַר לְהַרְאוֹת לַצּוֹפִים קֶטַע בְּהִלּוּךְ אִטִּי", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "נִרְאֶה לִי כְּאִלּוּ אֲנִי צוֹפֶה בְּסֶרֶט, שֶׁבּוֹ הַבַּמַּאי בָּחַר לְהַרְאוֹת לַצּוֹפִים קֶטַע בְּהִלּוּךְ אִטִּי", + "cloze_word_start": 53, + "cloze_word_end": 63, + "cloze_hint": null, + "cloze_guid": "IsUM^GwqVH" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בַּמַּאי", @@ -200561,7 +201793,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַשְּׁנִיָּה שֶׁמַּבִּיעָה תַּרְעֹמֶת, אֲבָל בְּמַקְבִּיל גַּם מְקַבֶּלֶת הַחְלָטָה לְנַסּוֹת לַעֲשׂוֹת מַשֶּׁהוּ לְתִקּוּן הַמַּצָּב, הִיא שָׁרוֹן", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַשְּׁנִיָּה שֶׁמַּבִּיעָה תַּרְעֹמֶת, אֲבָל בְּמַקְבִּיל גַּם מְקַבֶּלֶת הַחְלָטָה לְנַסּוֹת לַעֲשׂוֹת מַשֶּׁהוּ לְתִקּוּן הַמַּצָּב, הִיא שָׁרוֹן", + "cloze_word_start": 45, + "cloze_word_end": 57, + "cloze_hint": null, + "cloze_guid": "lsP+cOVkT7" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -200698,25 +201946,25 @@ "examples": { "vetted": [ { - "text": "שָׁרוֹן לוֹמֶדֶת בַּכִּתָּה שֶׁלִּי, וְהִיא אַמִּיצָה יוֹתֵר מֵהַרְבֵּה בָּנִים שֶׁאֲנִי מַכִּיר", - "source": "time_tunnel_70", + "text": "וְהַמְּבֻגָּר הַזֶּה שָׂמַח מְאוֹד לְהַכִּיר בֶּן אָדָם נָבוֹן כָּל כָּךְ כָּמוֹנִי", + "source": "little_prince", "match_method": "inflected" }, { - "text": "״ קוֹל שֶׁל בֵּן עָנָה לוֹ", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "\" הֵם יִשְׁאֲלוּ אֶתְכֶם, \"בֶּן כַּמָּה הוּא", + "source": "little_prince", + "match_method": "inflected" }, { - "text": "הֵם הָיוּ חֲמִשָּׁה: שְׁתֵּי בָּנוֹת וּשְׁנֵי בָּנִים וְאִשָּׁה מְבֻגֶּרֶת", - "source": "time_tunnel_78", + "text": "וְכָל הַיּוֹם הוּא אוֹמֵר שׁוּב וָשׁוּב כָּמוֹךָ, ׳אֲנִי בֶּן אָדָם רְצִינִי", + "source": "little_prince", "match_method": "inflected" } ], "cloze": { - "text": "שָׁרוֹן לוֹמֶדֶת בַּכִּתָּה שֶׁלִּי, וְהִיא אַמִּיצָה יוֹתֵר מֵהַרְבֵּה בָּנִים שֶׁאֲנִי מַכִּיר", - "cloze_word_start": 72, - "cloze_word_end": 79, + "text": "וְהַמְּבֻגָּר הַזֶּה שָׂמַח מְאוֹד לְהַכִּיר בֶּן אָדָם נָבוֹן כָּל כָּךְ כָּמוֹנִי", + "cloze_word_start": 45, + "cloze_word_end": 49, "cloze_hint": null, "cloze_guid": "x1-T8LT_x*" }, @@ -200869,12 +202117,12 @@ "match_method": "conjugated" }, { - "text": "אֵין יֶלֶד בָּעוֹלָם שֶׁמְּסֻגָּל לִבְנוֹת דָּבָר מֻרְכָּב כָּל כָּךְ", + "text": " פֶּרֶק ד שֶׁבּוֹ חוֹשְׁדִים בָּנוּ שֶׁאֲנַחְנוּ יְלָדִים טוּרְקִים ״יָדַעְתִּי", "source": "time_tunnel_63", - "match_method": "direct" + "match_method": "conjugated" }, { - "text": " פֶּרֶק ד שֶׁבּוֹ חוֹשְׁדִים בָּנוּ שֶׁאֲנַחְנוּ יְלָדִים טוּרְקִים ״יָדַעְתִּי", + "text": "וְאִם הוּא יַהֲפֹךְ אוֹתָנוּ לַחֲשׁוּדִים, בְּמָה בְּדִיּוּק יַחְשְׁדוּ בָּנוּ", "source": "time_tunnel_63", "match_method": "conjugated" } @@ -201855,7 +203103,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהַיָּמִים עָבְרוּ, וְהַבַּנָּאִים בָּנוּ, וְהַנַּגָּרִים דָּפְקוּ – וְהִנֵּה הַבַּיִת מוּכָן", + "source": "ilana", + "match_method": "inflected_prefix" + }, + { + "text": "נִגְּשׁוּ הַבַּנָּאִים אֶל בִּנְיַן הַפְּלָאִים וּמִשְּׁשׁוּ אֶת הַקִּירוֹת: – בֶּטּוֹן", + "source": "ilana", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וְהַיָּמִים עָבְרוּ, וְהַבַּנָּאִים בָּנוּ, וְהַנַּגָּרִים דָּפְקוּ – וְהִנֵּה הַבַּיִת מוּכָן", + "cloze_word_start": 21, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "Ai]4S6a9[P" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בַּנַּאי", @@ -202879,20 +204148,15 @@ "examples": { "vetted": [ { - "text": "כְּשֶׁנִּכְנַסְתִּי לַבִּנְיָן, שַׂמְתִּי לֵב לְגִ'יפּ לָבָן שֶׁחָנָה מִמּוּל", - "source": "time_tunnel_silver_train", - "match_method": "direct_prefix" - }, - { - "text": "זֶהוּ, וְהִנֵּה אֲנִי כְּבָר יוֹצֵא הַחוּצָה, חוֹצֶה אֶת הַכְּבִישׁ וְנִכְנָס לַבִּנְיָן שֶׁבּוֹ גָּרָה שָׁרוֹן", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "נִגְּשׁוּ הַבַּנָּאִים אֶל בִּנְיַן הַפְּלָאִים וּמִשְּׁשׁוּ אֶת הַקִּירוֹת: – בֶּטּוֹן", + "source": "ilana", + "match_method": "inflected" } ], "cloze": { - "text": "כְּשֶׁנִּכְנַסְתִּי לַבִּנְיָן, שַׂמְתִּי לֵב לְגִ'יפּ לָבָן שֶׁחָנָה מִמּוּל", - "cloze_word_start": 20, - "cloze_word_end": 30, + "text": "נִגְּשׁוּ הַבַּנָּאִים אֶל בִּנְיַן הַפְּלָאִים וּמִשְּׁשׁוּ אֶת הַקִּירוֹת: – בֶּטּוֹן", + "cloze_word_start": 27, + "cloze_word_end": 35, "cloze_hint": null, "cloze_guid": "vCK^m(*pe873" }, @@ -214268,7 +215595,21 @@ "בֵּיצָה" ], "confusables_guid": "dAKM?_+8M~", - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מַיִם עוֹמְדִים, שְׁלוּלִית גְּדוֹלָה, בִּצָּה,״ לְרֶגַע הִיא עוֹצֶמֶת אֶת עֵינֶיהָ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "אֲנִי חוֹשֵׁב שֶׁעָבַרְנוּ לְיַד בִּצָּה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בִּצָּה", @@ -214552,7 +215893,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם לֹא מִתְבַּצְּרִים בַּבָּתִּים וּמְסָרְבִים לְהִתְפַּנּוֹת", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הֵם לֹא מִתְבַּצְּרִים בַּבָּתִּים וּמְסָרְבִים לְהִתְפַּנּוֹת", + "cloze_word_start": 8, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "r|" + "cloze_guid": "G;-%{jIuJT" }, "rejected_count": 0 }, @@ -247771,7 +249305,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּיִת יָפֶה וְגָדוֹל, בַּיִת גָּבֹהַּ וְלָבָן, וְחַלּוֹנוֹתָיו רַבִּים וְדַלְתוֹתָיו צְבוּעוֹת", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "בַּיִת יָפֶה וְגָדוֹל, בַּיִת גָּבֹהַּ וְלָבָן, וְחַלּוֹנוֹתָיו רַבִּים וְדַלְתוֹתָיו צְבוּעוֹת", + "cloze_word_start": 30, + "cloze_word_end": 38, + "cloze_hint": null, + "cloze_guid": "pwt!RLtHcm" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -253312,16 +254862,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "יוֹשְׁבִים עַל גִּבְעַת חוֹל, לֹא רוֹאִים דָּבָר, לֹא שׁוֹמְעִים דָּבָר", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "פֹּה וָשָׁם נִרְאֲתָה גִּבְעָה שֶׁהִתְגַּבְּהָה מְעַט מֵעַל הָאֲחֵרוֹת", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "מֵאֲחוֹרֵינוּ הָיְתָה גִּבְעָה קְטַנָּה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "פֹּה וָשָׁם נִרְאֲתָה גִּבְעָה שֶׁהִתְגַּבְּהָה מְעַט מֵעַל הָאֲחֵרוֹת", - "cloze_word_start": 22, - "cloze_word_end": 30, + "text": "יוֹשְׁבִים עַל גִּבְעַת חוֹל, לֹא רוֹאִים דָּבָר, לֹא שׁוֹמְעִים דָּבָר", + "cloze_word_start": 15, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "K{/r^`xfVj" }, @@ -253464,6 +255024,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "״ גוֹרְדוֹן הֵנִיף אֶת מְכַל הַתַּרְסִיס כְּאִלּוּ הוּא גְּבִיעַ יַיִן", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "הַבָּנוֹת רָקְדוּ סְבִיב שָׁרוֹן וְהַבָּנִים הֵרִימוּ אוֹתִי כְּאִלּוּ אֲנִי גָּבִיעַ", "source": "time_tunnel_78", @@ -253476,9 +255041,9 @@ } ], "cloze": { - "text": "הַבָּנוֹת רָקְדוּ סְבִיב שָׁרוֹן וְהַבָּנִים הֵרִימוּ אוֹתִי כְּאִלּוּ אֲנִי גָּבִיעַ", - "cloze_word_start": 77, - "cloze_word_end": 85, + "text": "״ גוֹרְדוֹן הֵנִיף אֶת מְכַל הַתַּרְסִיס כְּאִלּוּ הוּא גְּבִיעַ יַיִן", + "cloze_word_start": 56, + "cloze_word_end": 64, "cloze_hint": null, "cloze_guid": "D!Q1RSFW%a" }, @@ -253635,6 +255200,11 @@ "text": "אֲבָל הַיְּרִידָה נִמְשְׁכָה וְנִמְשְׁכָה, וּכְכָל שֶׁהִיא נִמְשְׁכָה, מְהִירוּת הַגְּלִישָׁה שֶׁלִּי גָּבְרָה", "source": "time_tunnel_78", "match_method": "conjugated" + }, + { + "text": "הַפִּרְדָּה דּוֹהֶרֶת, הַבְּחִילָה שֶׁלִּי גּוֹבֶרֶת וְהוּא מְמֻקָּד בַּמְּשִׂימָה שֶׁלּוֹ", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -254074,7 +255644,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא גִּבּוֹר וְקָשׁוּחַ וְ", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "הוּא גִּבּוֹר וְקָשׁוּחַ וְ", + "cloze_word_start": 5, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "d>.nUgCe]3" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גִּבּוֹר", @@ -254386,7 +255972,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְלֹא מְדֻבָּר רַק בְּסִפּוּרֵי גְּבוּרָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְלֹא מְדֻבָּר רַק בְּסִפּוּרֵי גְּבוּרָה", + "cloze_word_start": 32, + "cloze_word_end": 41, + "cloze_hint": null, + "cloze_guid": "m9rTY|3Q;3" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גְּבוּרָה", @@ -254459,6 +256061,16 @@ "text": "״ הִיא הֵאִיצָה בַּסּוּס לְהַגְבִּיר מְהִירוּת", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "כָּל שִׁעוּל מַגְבִּיר אֶת כְּאֵב הַגָּרוֹן שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "אֲנִי מַגְבִּיר אֶת קֶצֶב צְעָדַי", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -256963,13 +258575,13 @@ "match_method": "direct" }, { - "text": "לַטּוּרְקִים הָיָה עוֹד חֹק: אִם הֻנַּח גַּג עַל מִבְנֶה, הָיָה אָסוּר לַהֲרוֹס אוֹתוֹ", - "source": "time_tunnel_70", + "text": "מוּלִי נִמְצָא בַּיִת עִם גַּג רְעָפִים אָדוֹם", + "source": "time_tunnel_77", "match_method": "direct" }, { - "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", - "source": "time_tunnel_78", + "text": "וּבַחוּץ רָאֲתָה אֶת גַּג הַצְּרִיף וְהוּא כָּפוּף וְעָצוּב", + "source": "ilana", "match_method": "direct" } ], @@ -258722,15 +260334,15 @@ "examples": { "vetted": [ { - "text": "הַאִם יָכוֹל לִהְיוֹת שֶׁלֹּא כָּאן אָמוּר לִהְיוֹת הַמַּעֲבָר לַגָּדָה הַנֶּגְדִּית שֶׁל הַיַּרְדֵּן", + "text": "״אֲנִי חוֹשֵׁב שֶׁנַּמְתִּין פֹּה עַד שֶׁיִּתְבָּרֵר מָה קוֹרֶה שָׁם עַל גְּדַת הַיַּרְדֵּן", "source": "time_tunnel_63", - "match_method": "direct_prefix" + "match_method": "inflected" } ], "cloze": { - "text": "הַאִם יָכוֹל לִהְיוֹת שֶׁלֹּא כָּאן אָמוּר לִהְיוֹת הַמַּעֲבָר לַגָּדָה הַנֶּגְדִּית שֶׁל הַיַּרְדֵּן", - "cloze_word_start": 63, - "cloze_word_end": 71, + "text": "״אֲנִי חוֹשֵׁב שֶׁנַּמְתִּין פֹּה עַד שֶׁיִּתְבָּרֵר מָה קוֹרֶה שָׁם עַל גְּדַת הַיַּרְדֵּן", + "cloze_word_start": 73, + "cloze_word_end": 79, "cloze_hint": null, "cloze_guid": "N~0du:g/j9" }, @@ -258805,6 +260417,16 @@ "text": "זֹאת לֹא כִּבְשָׂה, זֶה גְּדִי, יֵשׁ לוֹ קַרְנַיִם", "source": "little_prince", "match_method": "direct" + }, + { + "text": "… בְּעַל־כָּרְחֲךָ 5 אַצִּיל אוֹתְךָ, גְּדִי פוֹחֵז", + "source": "kid_on_mountain", + "match_method": "direct" + }, + { + "text": "בְּכַוָּנָה קָנָה לוֹ הַפַּעַם גְּדִי רַךְ, לְמַעַן אֲשֶׁר יִגְדַּל בְּבֵיתוֹ וְיֶאֱהַב אֶת אֲדוֹנוֹ", + "source": "kid_on_mountain", + "match_method": "direct" } ], "cloze": { @@ -259596,25 +261218,25 @@ "examples": { "vetted": [ { - "text": "עֵדֶן צָעַד לְעֵבֶר הַמָּקוֹם שֶׁבּוֹ עָמַד הַמִּגְדָּל וְשָׁרוֹן וַאֲנִי הָלַכְנוּ בְּעִקְּבוֹתָיו", + "text": "זֶה בִּכְלָל לֹא הָיָה מִגְדַּל מַיִם", "source": "time_tunnel_70", - "match_method": "direct_prefix" + "match_method": "inflected" }, { - "text": "כְּשֶׁהִגַּעְנוּ אֶל הַמִּגְדָּל, הָיָה לִי בָּרוּר שֶׁזֶּה לֹא אוֹתוֹ מִגְדָּל שֶׁהוֹפִיעַ בַּוִיקִיפֶּדְיָה", + "text": "זֶה הָיָה מִגְדַּל עֵץ, שֶׁאוּלַי שִׁמֵּשׁ כְּמִגְדַּל שְׁמִירָה", "source": "time_tunnel_70", - "match_method": "direct_prefix" + "match_method": "inflected" }, { - "text": "״ ״הֵנָּה—״ גַּם אֲנִי הִצְבַּעְתִּי עַל הַמִּגְדָּל", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "זֶה הָיָה גַּל עֲנָק, שֶׁנִּרְאָה בְּגֹבַהּ שֶׁל מִגְדְּלֵי עַזְרִיאֵלִי בְּתֵל־אָבִיב", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { - "text": "עֵדֶן צָעַד לְעֵבֶר הַמָּקוֹם שֶׁבּוֹ עָמַד הַמִּגְדָּל וְשָׁרוֹן וַאֲנִי הָלַכְנוּ בְּעִקְּבוֹתָיו", - "cloze_word_start": 44, - "cloze_word_end": 55, + "text": "זֶה בִּכְלָל לֹא הָיָה מִגְדַּל מַיִם", + "cloze_word_start": 23, + "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "vM}-b&10()" }, @@ -268635,7 +270257,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהַחֻלְצָה שֶׁלּוֹ לְבָנָה וּמְגֹהֶצֶת, כְּאִלּוּ לִפְנֵי רֶגַע הוּא לָבַשׁ אוֹתָהּ", + "source": "time_tunnel_81", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "וְהַחֻלְצָה שֶׁלּוֹ לְבָנָה וּמְגֹהֶצֶת, כְּאִלּוּ לִפְנֵי רֶגַע הוּא לָבַשׁ אוֹתָהּ", + "cloze_word_start": 28, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "DTf1S)f,@}" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -270641,6 +272279,11 @@ "text": "אִם שׁוֹלְחִים לִי הוֹדָעָה, אֲנִי מֵגִיב", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "הַיֶּלֶד הָיָה מְרֻכָּז בַּדְּבָרִים שֶׁאָמַר לוֹ אָבִיו וְלֹא הֵגִיב", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -271379,15 +273022,15 @@ "examples": { "vetted": [ { - "text": "הַתְּגוּבָה הָרִאשׁוֹנָה שֶׁבָּקְעָה מֵהַטֶּלֶפוֹן, אַחֲרֵי שֶׁיָּצַרְתִּי קֶשֶׁר עִם אִמָּא, הָיְתָה מְעוֹדֶדֶת", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "כְּנִיסָה לֹא חֻקִּית לַתְּחוּם הַזֶּה תִּגְרֹר תְּגוּבָה חֲרִיפָה מִצִּדֵּנוּ", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "הַתְּגוּבָה הָרִאשׁוֹנָה שֶׁבָּקְעָה מֵהַטֶּלֶפוֹן, אַחֲרֵי שֶׁיָּצַרְתִּי קֶשֶׁר עִם אִמָּא, הָיְתָה מְעוֹדֶדֶת", - "cloze_word_start": 0, - "cloze_word_end": 11, + "text": "כְּנִיסָה לֹא חֻקִּית לַתְּחוּם הַזֶּה תִּגְרֹר תְּגוּבָה חֲרִיפָה מִצִּדֵּנוּ", + "cloze_word_start": 48, + "cloze_word_end": 57, "cloze_hint": null, "cloze_guid": "eetf]s;!MH" }, @@ -274572,7 +276215,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא שׁוֹמֶטֶת אֶת יָדֶיהָ לְצִדֵּי גּוּפָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הִיא שׁוֹמֶטֶת אֶת יָדֶיהָ לְצִדֵּי גּוּפָה", + "cloze_word_start": 36, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "J!<@p~}me(" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גּוּפָה", @@ -275681,6 +277340,16 @@ "text": "כְּדֵי שֶׁהַמְּקָרֵר יְקָרֵר, הָיָה צֹרֶךְ לְהַנִּיחַ בּוֹ גּוּשׁ קֶרֵח שֶׁנָּמַס לְאַט לְאַט", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "\" אֲנִי מַרְגִּישׁ מִין גּוּשׁ מוּזָר בַּגָּרוֹן שֶׁמְּאַיֵּם לַחְנוֹק אוֹתִי", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "כָּל הַסִּימָנִים הָיוּ כְּמוֹ כְּתֹבֶת עַל הַקִּיר: פִּנּוּי גּוּשׁ קָטִיף", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -279579,7 +281248,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא מִגֶּזַע מְיֻחָד, וְהוּא אוֹהֵב אוֹתָהּ כְּאִלּוּ הָיְתָה בִּתּוֹ", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הִיא מִגֶּזַע מְיֻחָד, וְהוּא אוֹהֵב אוֹתָהּ כְּאִלּוּ הָיְתָה בִּתּוֹ", + "cloze_word_start": 5, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "nU=zN!/t(F" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גֶּזַע", @@ -279921,7 +281606,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"יֵשׁ חֻלְיוֹת בּוֹגְרִים וְיֵשׁ חֻלְיוֹת יְלָדִים, וְכָל חֻלְיָה מְקַבֶּלֶת גִּזְרַת לְחִימָה,\" הוּא דִּבֵּר מַהֵר", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\" \"יֵשׁ חֻלְיוֹת בּוֹגְרִים וְיֵשׁ חֻלְיוֹת יְלָדִים, וְכָל חֻלְיָה מְקַבֶּלֶת גִּזְרַת לְחִימָה,\" הוּא דִּבֵּר מַהֵר", + "cloze_word_start": 79, + "cloze_word_end": 87, + "cloze_hint": null, + "cloze_guid": "dxg;?IYF.>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גִּזְרָה", @@ -280065,7 +281766,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נֹעָה גּוֹזֶרֶת גַּם אֶת הָאֲזִיקוֹנִים שֶׁלָּהֶן", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "נֹעָה גּוֹזֶרֶת גַּם אֶת הָאֲזִיקוֹנִים שֶׁלָּהֶן", + "cloze_word_start": 6, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "wd<Jc!I" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -280997,13 +282714,13 @@ "match_method": "conjugated" }, { - "text": "״שׁוּם בְּעִיטָה,״ הוּא גִּחֵךְ, ״קוּם", - "source": "time_tunnel_70", + "text": "\" אֲנִי מְגַחֵךְ כִּי הָאֶפְשָׁרוּת הַזּוֹ מְבַדַּחַת אוֹתִי, \"מִמָּתַי יֵשׁ יָם בִּירוּשָׁלַיִם", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "הַגְּרִיפוֹן הִתְיַשֵּׁב וְשִׁפְשֵׁף אֶת עֵינָיו; אַחַר הִתְבּוֹנֵן בַּמַּלְכָּה עַד שֶׁנֶּעֶלְמָה מִן הָעַיִן; וְאָז גִּחֵךְ", - "source": "alice_wonderland", + "text": "\" יוֹאָב מְגַחֵךְ בְּלִגְלוּג, \"אַתֶּם צוֹחֲקִים עָלֵינוּ", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -281870,6 +283587,11 @@ "source": "little_prince", "match_method": "direct" }, + { + "text": "אִלּוּ הָיִיתִי אֶחָד מֵהֶם, בְּוַדַּאי גַּם לִי הַמַּצָּב הָיָה נִרְאֶה מְגֻחָךְ", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "\" הִרְכַּנְתִּי אֶת רֹאשִׁי בְּיֵאוּשׁ: מְגֻחָךְ לְחַפֵּשׂ בְּאֵר, סְתָם כָּךְ, בְּמֶרְחֲבֵי הַמִּדְבָּר הָעֲצוּמִים", "source": "little_prince", @@ -283878,7 +285600,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"גֵּיא אוֹנִי הִיא רֹאשׁ־פִּנָּה,\" אִמָּא אָמְרָה", + "source": "time_tunnel_75", + "match_method": "inflected" + }, + { + "text": "שָׁמַעְתָּ עַל גֵּיא אוֹנִי", + "source": "time_tunnel_75", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\"גֵּיא אוֹנִי הִיא רֹאשׁ־פִּנָּה,\" אִמָּא אָמְרָה", + "cloze_word_start": 1, + "cloze_word_end": 6, + "cloze_hint": null, + "cloze_guid": "k>6?XVo~GA" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גַּיְא", @@ -284118,8 +285861,8 @@ "match_method": "conjugated" }, { - "text": "אֲבָל בְּאוֹתוֹ רֶגַע, בְּתוֹךְ עֲנַן הָאָבָק שֶׁמִּמֶּנּוּ הֵגִיחָה מַשָּׂאִית צְבָאִית, הִרְגַּשְׁתִּי שֶׁאֵין לִי מָה לְפַחֵד", - "source": "time_tunnel_70", + "text": "עַכְשָׁיו שׁוּב מְגִיחוֹת שְׁתֵּי יָדַיִם מִתּוֹךְ הֶחָבִית וְהַפַּעַם נִשְׁלָף מִמֶּנָּה יֶלֶד", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -285800,8 +287543,13 @@ "match_method": "direct_prefix" }, { - "text": "אֵין יֶלֶד בַּגִּיל שֶׁלָּנוּ שֶׁיִּהְיֶה מְסֻגָּל לִפְתּוֹר חִידָה כָּל כָּךְ קָשָׁה רַק עִם גוּגֶל", - "source": "time_tunnel_78", + "text": "כָּל הַיְּלָדִים מִגִּיל עֶשֶׂר וָמַעְלָה מִתְבַּקְּשִׁים לַעֲלוֹת לַסִּפּוּן", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "אֲנִי חוֹזֵר: כָּל הַיְּלָדִים מִגִּיל עֶשֶׂר וָמַעְלָה מִתְבַּקְּשִׁים לַעֲלוֹת לַסִּפּוּן", + "source": "time_tunnel_76", "match_method": "direct_prefix" } ], @@ -286001,6 +287749,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": " פֶּרֶק ח שֶׁבּוֹ הַנֹּעַר מְגֻיָּס לַקְּרָב \"הַקְשִׁיבוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "יָכוֹל לִהְיוֹת שֶׁהִיא הָיְתָה מְגַיֶּסֶת חָבֵר אַחֵר שֶׁיָּבוֹא אִתָּהּ לַמְּעָרָה וְיַחְזֹר אִתָּהּ אָחוֹרָה בַּזְּמַן", "source": "time_tunnel_70", @@ -286008,9 +287761,9 @@ } ], "cloze": { - "text": "יָכוֹל לִהְיוֹת שֶׁהִיא הָיְתָה מְגַיֶּסֶת חָבֵר אַחֵר שֶׁיָּבוֹא אִתָּהּ לַמְּעָרָה וְיַחְזֹר אִתָּהּ אָחוֹרָה בַּזְּמַן", - "cloze_word_start": 32, - "cloze_word_end": 42, + "text": " פֶּרֶק ח שֶׁבּוֹ הַנֹּעַר מְגֻיָּס לַקְּרָב \"הַקְשִׁיבוּ", + "cloze_word_start": 28, + "cloze_word_end": 36, "cloze_hint": null, "cloze_guid": "twcG;&]Kz8" }, @@ -289058,7 +290811,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"אוּלַי בִּמְקוֹם לִשְׁאוֹל אוֹתוֹ שְׁאֵלוֹת, תִּזְרְקִי לוֹ גַּלְגַּל הַצָּלָה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" הוּא הִשְׁלִיךְ גַּלְגַּל הַצָּלָה יָשָׁר לַכִּווּן שֶׁלִּי, \"תֵּכֶף נַגִּיעַ אֵלֶיךָ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "לְרֹעַ מַזָּלִי, גַּלְגַּל הַהַצָּלָה נִסְחַף דָּרוֹמָה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" \"אוּלַי בִּמְקוֹם לִשְׁאוֹל אוֹתוֹ שְׁאֵלוֹת, תִּזְרְקִי לוֹ גַּלְגַּל הַצָּלָה", + "cloze_word_start": 63, + "cloze_word_end": 72, + "cloze_hint": null, + "cloze_guid": "Cjt((Q|5!M" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גַּלְגַּל", @@ -292522,6 +294301,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "לְעֵינֵי גּוּלִיבֶר נִגְלְתָה תֵּבַת־זָהָב נוֹסַעַת עַל גַּלְגַּלִּים וּקְרֵבָה אֵלָיו", + "source": "gulliver", + "match_method": "conjugated" + }, { "text": "הֶחָתוּל חָשַׁב כַּנִּרְאֶה שֶׁדַּי בְּמָה שֶׁכְּבָר נִגְלָה מִמֶּנּוּ לָעַיִן, וְשׁוּם חֵלֶק מִמֶּנּוּ לֹא הוֹפִיעַ עוֹד", "source": "alice_wonderland", @@ -292529,9 +294313,9 @@ } ], "cloze": { - "text": "הֶחָתוּל חָשַׁב כַּנִּרְאֶה שֶׁדַּי בְּמָה שֶׁכְּבָר נִגְלָה מִמֶּנּוּ לָעַיִן, וְשׁוּם חֵלֶק מִמֶּנּוּ לֹא הוֹפִיעַ עוֹד", - "cloze_word_start": 53, - "cloze_word_end": 60, + "text": "לְעֵינֵי גּוּלִיבֶר נִגְלְתָה תֵּבַת־זָהָב נוֹסַעַת עַל גַּלְגַּלִּים וּקְרֵבָה אֵלָיו", + "cloze_word_start": 20, + "cloze_word_end": 29, "cloze_hint": null, "cloze_guid": "h_n)L3}>=v" }, @@ -293155,15 +294939,15 @@ "examples": { "vetted": [ { - "text": "הֵם אָמְנָם יָצְאוּ מֵהַגָּלוּת כְּדֵי לְהַגִּיעַ לְאֶרֶץ־יִשְׂרָאֵל, אֲבָל הַגָּלוּת הָיְתָה תֵּימָן", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "הֵם אָמְנָם יָצְאוּ מֵהַגָּלוּת כְּדֵי לְהַגִּיעַ לְאֶרֶץ־יִשְׂרָאֵל, אֲבָל הַגָּלוּת הָיְתָה תֵּימָן", - "cloze_word_start": 76, - "cloze_word_end": 85, + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "cloze_word_start": 47, + "cloze_word_end": 54, "cloze_hint": null, "cloze_guid": "y(Tc>y>qJ)" }, @@ -294890,6 +296674,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "עַכְשָׁיו רֹאשׁוֹ שֶׁל יִשְׂרָאֵל גָּלוּי וְהַכָּאפִיָה מֻנַּחַת עַל כְּתֵפָיו, \"אָדוֹן קְרָאוּזֶה", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "הוּא נִרְאָה גָּבוֹהַּ מִמֶּנּוּ וְהַרְבֵּה יוֹתֵר רָזֶה וְרֹאשׁוֹ לֹא הָיָה מְכֻסֶּה אֶלָּא גָּלוּי", "source": "time_tunnel_78", @@ -294897,9 +296686,9 @@ } ], "cloze": { - "text": "הוּא נִרְאָה גָּבוֹהַּ מִמֶּנּוּ וְהַרְבֵּה יוֹתֵר רָזֶה וְרֹאשׁוֹ לֹא הָיָה מְכֻסֶּה אֶלָּא גָּלוּי", - "cloze_word_start": 93, - "cloze_word_end": 100, + "text": "עַכְשָׁיו רֹאשׁוֹ שֶׁל יִשְׂרָאֵל גָּלוּי וְהַכָּאפִיָה מֻנַּחַת עַל כְּתֵפָיו, \"אָדוֹן קְרָאוּזֶה", + "cloze_word_start": 34, + "cloze_word_end": 41, "cloze_hint": null, "cloze_guid": "vb6Lj9zCIf" }, @@ -294986,8 +296775,8 @@ "match_method": "conjugated" }, { - "text": "\"   פֶּרֶק ט שֶׁבּוֹ מִתְגַּלָּה הַחוֹתֶמֶת דֶּלֶת הַחֶדֶר שֶׁזַּלְמָן נִכְנַס אֵלָיו, נִסְגְּרָה מֵאֲחוֹרֵי גַּבּוֹ", - "source": "time_tunnel_75", + "text": "הָאוֹר שֶׁהֵאִיר אוֹתוֹ מִתְקָרֵב אֵלָיו, וּמַהֵר מְאוֹד מִתְגַּלָּה אִשָּׁה שֶׁמַּחְזִיקָה בְּיָדָהּ מְנוֹרַת נֵפְט", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -295465,15 +297254,20 @@ "examples": { "vetted": [ { - "text": "בִּמְהִירוּת רַבָּה הִצְלַחְתִּי לִתְלוֹשׁ אֶת הַחֵלֶק הָעֶלְיוֹן שֶׁל הַגִּלָּיוֹן שֶׁל הָעִתּוֹן", - "source": "time_tunnel_silver_train", - "match_method": "direct_prefix" + "text": "הֵם מַתָּנָה בְּעִקָּר מִפְּנֵי שֶׁבְּרֹאשׁ כָּל גִּלְיוֹן עִתּוֹן מוֹפִיעַ תַּאֲרִיךְ", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "מָה מְסַפֶּרֶת לָנוּ שְׁנַת 1907 שֶׁהוֹפִיעָה בְּרֹאשׁ גִּלְיוֹן הָעִתּוֹן שֶׁעָטַף אֶת סֵפֶר הַתָּנָ\"ךְ שֶׁעָלָיו נִשְׁבַּעְנוּ", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { - "text": "בִּמְהִירוּת רַבָּה הִצְלַחְתִּי לִתְלוֹשׁ אֶת הַחֵלֶק הָעֶלְיוֹן שֶׁל הַגִּלָּיוֹן שֶׁל הָעִתּוֹן", - "cloze_word_start": 71, - "cloze_word_end": 83, + "text": "הֵם מַתָּנָה בְּעִקָּר מִפְּנֵי שֶׁבְּרֹאשׁ כָּל גִּלְיוֹן עִתּוֹן מוֹפִיעַ תַּאֲרִיךְ", + "cloze_word_start": 49, + "cloze_word_end": 58, "cloze_hint": null, "cloze_guid": "D::|bP.|MI" }, @@ -296788,20 +298582,25 @@ "examples": { "vetted": [ { - "text": "נַסֵּה לִשְׁמוֹעַ אֶת קוֹל הַגַּלִּים הַמִּתְנַפְּצִים עַל הַחוֹף", - "source": "time_tunnel_78", - "match_method": "inflected_prefix" + "text": "\" גַּל קָרָא שׁוּב וָשׁוּב וְהִתְכַּוֵן לַיַּכְטָה", + "source": "time_tunnel_77", + "match_method": "direct" }, { - "text": "רַעַשׁ הַגַּלִּים נֶעֱלַם וְאֶת מְקוֹמוֹ תָּפְסָה הֲמֻלָּה", - "source": "time_tunnel_silver_train", - "match_method": "inflected_prefix" + "text": "כֻּלָּנוּ כְּבָר קָלַטְנוּ שֶׁהַיַּכְטָה הַזּוֹ הִיא אֲהוּבָתוֹ שֶׁל גַּל", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" \"לֹא אֲנַחְנוּ הִבְטַחְנוּ,\" אִשְׁתּוֹ שֶׁל גַּל אָמְרָה, \"הַחַזָּאִים הִבְטִיחוּ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "נַסֵּה לִשְׁמוֹעַ אֶת קוֹל הַגַּלִּים הַמִּתְנַפְּצִים עַל הַחוֹף", - "cloze_word_start": 27, - "cloze_word_end": 37, + "text": "\" גַּל קָרָא שׁוּב וָשׁוּב וְהִתְכַּוֵן לַיַּכְטָה", + "cloze_word_start": 2, + "cloze_word_end": 6, "cloze_hint": null, "cloze_guid": "j9@Mv};5GJ" }, @@ -297999,7 +299798,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" שָׁרוֹן הִתְרַגְּזָה עָלַי, \"מָה עָמַדְתָּ שָׁם כְּמוֹ גֹּלֶם", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" שָׁרוֹן הִתְרַגְּזָה עָלַי, \"מָה עָמַדְתָּ שָׁם כְּמוֹ גֹּלֶם", + "cloze_word_start": 57, + "cloze_word_end": 63, + "cloze_hint": null, + "cloze_guid": "U5E4NJD|L" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גֹּלֶם", @@ -306347,6 +308162,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "עַכְשָׁו הוּא כְּבָר גָּמַר לְהִלָּחֵם וּבָא, סוֹף־סוֹף, הַבַּיְתָה אֶל אִילָנָה הַקְּטַנָּה שֶׁלּוֹ", + "source": "ilana", + "match_method": "conjugated" + }, { "text": "\"זֶהוּ, גָּמַרְנוּ עִם הַשַּׁרְקָנִים", "source": "alice_wonderland", @@ -306354,9 +308174,9 @@ } ], "cloze": { - "text": "\"זֶהוּ, גָּמַרְנוּ עִם הַשַּׁרְקָנִים", - "cloze_word_start": 8, - "cloze_word_end": 18, + "text": "עַכְשָׁו הוּא כְּבָר גָּמַר לְהִלָּחֵם וּבָא, סוֹף־סוֹף, הַבַּיְתָה אֶל אִילָנָה הַקְּטַנָּה שֶׁלּוֹ", + "cloze_word_start": 21, + "cloze_word_end": 27, "cloze_hint": null, "cloze_guid": "ibjzMSeBON" }, @@ -306858,6 +308678,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "״ \"בְּסֵדֶר גָּמוּר,״ זוֹהֵיר עוֹנֶה, \"תּוֹךְ שָׁעָה אֲנִי מְבָרֵר מִי גָּנַב אוֹתָהּ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "וּכְשֶׁהָיָה הַכֹּל גָּמוּר – אִי־אֶפְשָׁר הָיָה לְהַכִּיר אֶת הַצְּרִיף שֶׁל הַגַּן הַיָּשָׁן", + "source": "ilana", + "match_method": "direct" + }, { "text": "\" \"בְּסֵדֶר גָּמוּר,\" צְבִי אִשֵּׁר", "source": "time_tunnel_75", @@ -306865,7 +308695,7 @@ } ], "cloze": { - "text": "\" \"בְּסֵדֶר גָּמוּר,\" צְבִי אִשֵּׁר", + "text": "״ \"בְּסֵדֶר גָּמוּר,״ זוֹהֵיר עוֹנֶה, \"תּוֹךְ שָׁעָה אֲנִי מְבָרֵר מִי גָּנַב אוֹתָהּ", "cloze_word_start": 12, "cloze_word_end": 19, "cloze_hint": null, @@ -309151,6 +310981,16 @@ "text": "חוּץ מִזֶּה אֲנִי נִגְנָב מִסִּרְטֵי אֵימָה", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "וְהָאֵרוּעַ הַזֶּה שֶׁאֵלָיו חָזַרְנוּ, וְשֶׁבְּמַהֲלָכוֹ נִגְנְבָה סוּסָה, הוּא בִּכְלָל אֵרוּעַ חָשׁוּב", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "וְיֵשׁ לָנוּ סוּסָה שֶׁכַּנִּרְאֶה נִגְנְבָה מִמִּישֶׁהוּ, מֵאֵיזֶה אֵלִיָּהוּ אֶחָד, אֲבָל לֹא בָּרוּר לָנוּ לָמָּה", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -309593,6 +311433,11 @@ "text": "אֲנִי לֹא שָׁמַעְתִּי שֶׁהֵם דִּבְּרוּ עַל גְּנֵבָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "\"שָׁרוֹן,״ הַקּוֹל שֶׁלִּי צָרוּד, \"מָצָאת אֶת הַסִּפּוּר עַל גְּנֵבַת הַסּוּסָה אוֹ לֹא", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { @@ -309684,6 +311529,11 @@ "text": "\"סַבְתָּא שֶׁלָּנוּ מַגְנִיבָה שֶׁחֲבָל לָכֶם עַל הַזְּמַן", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "הַמָּקוֹם נִרְאֶה כְּמוֹ הַחוֹף הֲכִי מַגְנִיב בָּאָרֶץ, הַחוֹף שֶׁבּוֹ הָיִיתָ רוֹצֶה לְהָקִים אֹהֶל וּלְבַלּוֹת סוֹפְשָׁבוּעַ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -312917,6 +314767,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" הוּא גּוֹנֵחַ, \"אַתֶּם חוֹשְׁבִים שֶׁכְּשֶׁנַּחְזֹר לַהֹוֶה, זֶה עֲדַיִן יִכְאַב", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "שְׁלִישִׁית, בּוֹאוּ לֹא נִשְׁכַּח שֶׁאִמָּא שֶׁלִּי נִלְקְחָה מִבֵּית עַבּוֹ כְּשֶׁהִיא גּוֹנַחַת וּמִתְפַּתֶּלֶת מִכְּאֵבִים", "source": "time_tunnel_75", @@ -312924,9 +314779,9 @@ } ], "cloze": { - "text": "שְׁלִישִׁית, בּוֹאוּ לֹא נִשְׁכַּח שֶׁאִמָּא שֶׁלִּי נִלְקְחָה מִבֵּית עַבּוֹ כְּשֶׁהִיא גּוֹנַחַת וּמִתְפַּתֶּלֶת מִכְּאֵבִים", - "cloze_word_start": 89, - "cloze_word_end": 98, + "text": "\" הוּא גּוֹנֵחַ, \"אַתֶּם חוֹשְׁבִים שֶׁכְּשֶׁנַּחְזֹר לַהֹוֶה, זֶה עֲדַיִן יִכְאַב", + "cloze_word_start": 7, + "cloze_word_end": 15, "cloze_hint": null, "cloze_guid": "fib&^SRf2u" }, @@ -314954,7 +316809,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "עַתָּה מִתְכּוֹנֵן הָאוֹיֵב לַעֲלוֹת עַל לִילִיפּוּטְיָה בְּצִי אַדִּיר, וְעַל הָאָדָם־הָהָר לַעֲזֹר לַנַּנָּסִים לְהִתְגּוֹנֵן מִפְּנֵיהֶם", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "עַתָּה מִתְכּוֹנֵן הָאוֹיֵב לַעֲלוֹת עַל לִילִיפּוּטְיָה בְּצִי אַדִּיר, וְעַל הָאָדָם־הָהָר לַעֲזֹר לַנַּנָּסִים לְהִתְגּוֹנֵן מִפְּנֵיהֶם", + "cloze_word_start": 114, + "cloze_word_end": 127, + "cloze_hint": null, + "cloze_guid": "nrm&:o|m=3" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -315384,7 +317255,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יֵשׁ פֹּה גִּנּוֹת יָפוֹת, יֵשׁ פֹּה עֲצֵי פְּרִי וַעֲנָבִים מַטְרִיפִים", + "source": "time_tunnel_77", + "match_method": "inflected" + }, + { + "text": "שֶׁאֲנִי לֹא רוֹאֶה שֶׁחָיוּ כָּאן אֲנָשִׁים וְהֵקִימוּ מִפְעָלִים וְטִפְּחוּ גִּנּוֹת וְגִדְּלוּ יְלָדִים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "יֵשׁ פֹּה גִּנּוֹת יָפוֹת, יֵשׁ פֹּה עֲצֵי פְּרִי וַעֲנָבִים מַטְרִיפִים", + "cloze_word_start": 10, + "cloze_word_end": 18, + "cloze_hint": null, + "cloze_guid": "yLFmhIt_@C" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גִּנָּה", @@ -315458,7 +317350,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָרָהִיטִים לֹא טוֹבִים, הַקִּירוֹת סְדוּקִים, הַגַּג רָעוּעַ – נִבְנֶה גַּן חָדָשׁ", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "הִתְפַּלְּאָה אִילָנָה: לָמָּה צְרִיכִים גַּן חָדָשׁ", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "בֵּית שְׁעָרִים הוּא גַּן לְאֻמִּי", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הָרָהִיטִים לֹא טוֹבִים, הַקִּירוֹת סְדוּקִים, הַגַּג רָעוּעַ – נִבְנֶה גַּן חָדָשׁ", + "cloze_word_start": 72, + "cloze_word_end": 76, + "cloze_hint": null, + "cloze_guid": "xQ]40t|feo" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גַּן", @@ -317987,7 +319905,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "” – וְהָאֲוָזִים שֶׁנִּבְהֲלוּ הֵחֵלּוּ גַּם הֵם לְגַעְגֵּעַ", + "source": "tree_dress", + "match_method": "direct" + } + ], + "cloze": { + "text": "” – וְהָאֲוָזִים שֶׁנִּבְהֲלוּ הֵחֵלּוּ גַּם הֵם לְגַעְגֵּעַ", + "cloze_word_start": 49, + "cloze_word_end": 60, + "cloze_hint": null, + "cloze_guid": "nY38j!3V/m" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -318423,6 +320357,11 @@ "text": "אוּכַל לַעֲזֹר לְךָ בְּבוֹא הַיּוֹם, אִם תִּתְגַּעְגֵּעַ מְאוֹד לַכּוֹכָב שֶׁלְּךָ", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "תַּסְבִּירוּ לָהּ שֶׁיֵּשׁ פֹּה טַיָּס לְשֶׁעָבַר שֶׁל דָקוֹטָה, שֶׁמָּה־זֶה מִתְגַּעְגֵּעַ לָטוּס וְ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -319480,6 +321419,11 @@ "text": "״אִם זֹאת מְתִיחָה, זֶה מָה־זֶה קֶטַע מַגְעִיל", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "\"מָה שֶׁאַתָּה עוֹשֶׂה מַמָּשׁ מַגְעִיל,\" שָׁרוֹן מְסַנֶּנֶת", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -320645,6 +322589,11 @@ "source": "time_tunnel_78", "match_method": "conjugated" }, + { + "text": "\" הִיא גָּעֲרָה בָּהּ בְּיִידִישׁ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "״ הַשּׁוֹטֵר גָּעַר בִּי", "source": "time_tunnel_silver_train", @@ -322281,7 +324230,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "תִּרְאֶה אֶת הַגְּפָנִים הָאֵלֶּה,\" הִיא מַצְבִּיעָה הַצִּדָּה, \"לְהָבִיא לְךָ אֶשְׁכּוֹל", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "מִי שָׁתַל אֶת הַגְּפָנִים הָאֵלֶּה, אִם אֵין פֹּה אַף אֶחָד", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "\" אֶשְׁכּוֹלוֹת הָעֲנָבִים מִשְׁתַּלְשְׁלִים בֵּין זְמוֹרוֹת הַגְּפָנִים, וְנִרְאִים כְּאִלּוּ הֵם חֵלֶק מִתּוֹךְ צִיּוּר", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "תִּרְאֶה אֶת הַגְּפָנִים הָאֵלֶּה,\" הִיא מַצְבִּיעָה הַצִּדָּה, \"לְהָבִיא לְךָ אֶשְׁכּוֹל", + "cloze_word_start": 13, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "mZu|-_tbq/" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גֶּפֶן", @@ -323381,15 +325356,15 @@ "examples": { "vetted": [ { - "text": "נַעֲלֶיהָ אִבְּדוּ אֶת הַצֶּבַע שֶׁלָּהֶן וְהַגַּרְבַּיִם שֶׁלָּהּ לֹא הָיוּ זוּג", - "source": "time_tunnel_75", - "match_method": "inflected_prefix" + "text": "״ \"חֵלֶק מֵהַכֶּסֶף תַּכְנִיסוּ לְתוֹךְ גַּרְבֵּי נַיְלוֹן, שֶׁתִּכְרְכוּ סְבִיב הַגּוּף שֶׁל הַלּוֹחֲמוֹת שֶׁמִּשְׁתַּתְּפוֹת בַּמִּבְצָע", + "source": "time_tunnel_silver_train", + "match_method": "inflected" } ], "cloze": { - "text": "נַעֲלֶיהָ אִבְּדוּ אֶת הַצֶּבַע שֶׁלָּהֶן וְהַגַּרְבַּיִם שֶׁלָּהּ לֹא הָיוּ זוּג", - "cloze_word_start": 42, - "cloze_word_end": 57, + "text": "״ \"חֵלֶק מֵהַכֶּסֶף תַּכְנִיסוּ לְתוֹךְ גַּרְבֵּי נַיְלוֹן, שֶׁתִּכְרְכוּ סְבִיב הַגּוּף שֶׁל הַלּוֹחֲמוֹת שֶׁמִּשְׁתַּתְּפוֹת בַּמִּבְצָע", + "cloze_word_start": 40, + "cloze_word_end": 49, "cloze_hint": null, "cloze_guid": "k?EJ!K[Pa~" }, @@ -325165,7 +327140,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַגּוּף שֶׁלִּי רָטֹב מִזֵּעָה וְהַזֵּעָה מַדְבִּיקָה אֵלָיו אֶת גַּרְגִּירֵי הַחוֹל וּמְעוֹרֶרֶת בִּי צֹרֶךְ לְהִתְגָּרֵד", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַגּוּף שֶׁלִּי רָטֹב מִזֵּעָה וְהַזֵּעָה מַדְבִּיקָה אֵלָיו אֶת גַּרְגִּירֵי הַחוֹל וּמְעוֹרֶרֶת בִּי צֹרֶךְ לְהִתְגָּרֵד", + "cloze_word_start": 110, + "cloze_word_end": 122, + "cloze_hint": null, + "cloze_guid": "pp)@Jvdifr" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -325652,7 +327643,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"הָיָה לִי כְּאֵב גָּרוֹן חָזָק,״ אֲנִי מְדַוֵחַ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"הָיָה לִי כְּאֵב גָּרוֹן חָזָק,״ אֲנִי מְדַוֵחַ", + "cloze_word_start": 18, + "cloze_word_end": 25, + "cloze_hint": null, + "cloze_guid": "qF*S8M.KOV" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גָּרוֹן", @@ -327410,6 +329417,16 @@ "text": "'' \"אַל תִּתְגָּרֶה בִּי, יָא נָחָשׁ מְעַצְבֵּן,\" אֲנִי מִתְעַצְבֵּן", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "שָׁרוֹן נוֹתְרָה עוֹמֶדֶת שָׁם, וְהִנִּיחָה אֶת יָדֶיהָ עַל מָתְנֶיהָ בִּתְנוּעָה מִתְגָּרָה", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "הוּא חָשַׁב שֶׁשּׁוּם אִכָּר עֲרָבִי וְשׁוּם בֶּדוּאִי לֹא יָעֵז לְהִתְגָּרוֹת בַּצֶּ'רְקֶסִים", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -330709,7 +332726,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מַחֲזֵה הַקְּרָבוֹת גָּרַם הֲנָאָה מְרֻבָּה לַמֶּלֶךְ וְלַמַּלְכָּה, וְכָל הַיּוֹעֲצִים וְהַשָּׂרִים לֹא יָכְלוּ לִגְרֹעַ מִמֶּנּוּ עַיִן", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "מַחֲזֵה הַקְּרָבוֹת גָּרַם הֲנָאָה מְרֻבָּה לַמֶּלֶךְ וְלַמַּלְכָּה, וְכָל הַיּוֹעֲצִים וְהַשָּׂרִים לֹא יָכְלוּ לִגְרֹעַ מִמֶּנּוּ עַיִן", + "cloze_word_start": 113, + "cloze_word_end": 121, + "cloze_hint": null, + "cloze_guid": "r~}$no2>)Z" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -331146,8 +333179,8 @@ "match_method": "direct" }, { - "text": "\"בַּמִּקְרֶה הֲכִי גָּרוּעַ, אִם יִשְׁאֲלוּ אוֹתָנוּ אֵיךְ הִגַּעְנוּ לְפִתְרוֹן הַחִידָה, נַגִּיד אֶת הָאֱמֶת", - "source": "time_tunnel_78", + "text": "יִתָּכֵן שֶׁמַּצַּב הַמַּחֲלָה שֶׁלִּי גָּרוּעַ כָּל כָּךְ עַד שֶׁאֲנִי הוֹזֶה הֲזָיוֹת", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -333370,15 +335403,25 @@ "examples": { "vetted": [ { - "text": "הוּא נִגְרַר אַחֲרֵי הַנַּעַר", - "source": "time_tunnel_70", + "text": "יוּבַל בָּעַט בְּרַגְלָיו, אֲבָל נִגְרַר אַחֲרַי", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": " פֶּרֶק ז שֶׁבּוֹ חֲמִשָּׁה מִצְטוֹפְפִים עַל דַּרְגָּשׁ אֶחָד נִגְרַרְתִּי אַחֲרֵי יוּבַל", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "\"הֵם קָשְׁרוּ אוֹתָנוּ לִשְׁתֵּי מַשְׁחָתוֹת וַאֲנַחְנוּ נִגְרָרִים אֶל הַחוֹף,\" הוּא מְסַפֵּר לִי", + "source": "time_tunnel_76", "match_method": "conjugated" } ], "cloze": { - "text": "הוּא נִגְרַר אַחֲרֵי הַנַּעַר", - "cloze_word_start": 5, - "cloze_word_end": 12, + "text": "יוּבַל בָּעַט בְּרַגְלָיו, אֲבָל נִגְרַר אַחֲרַי", + "cloze_word_start": 33, + "cloze_word_end": 40, "cloze_hint": null, "cloze_guid": "K$S{,je%,4" }, @@ -334696,6 +336739,16 @@ "text": "נִחַשְׁתִּי שֶׁמִּישֶׁהוּ גָּרַר אֶת לוּחַ הָעֵץ שֶׁנָּפַל", "source": "time_tunnel_78", "match_method": "conjugated" + }, + { + "text": "כְּנִיסָה לֹא חֻקִּית לַתְּחוּם הַזֶּה תִּגְרֹר תְּגוּבָה חֲרִיפָה מִצִּדֵּנוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "הֵם גָּרְרוּ בְּכוֹחַ אֶת כָּל מִי שֶׁסֵּרֵב לָרֶדֶת מֵהָאוֹנִיָּה", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -335215,8 +337268,8 @@ "match_method": "conjugated" }, { - "text": "״אֲנַחְנוּ נִדְאַג לְגָרֵשׁ אֶת הַפּוֹרְעִים,״ זֶה הָיָה הַמִּשְׁפָּט הָאַחֲרוֹן שֶׁהוּא אָמַר לִפְנֵי שֶׁסָּגַר אֶת הַדֶּלֶת", - "source": "time_tunnel_70", + "text": "לַשָּׁוְא הִתְאַמְּצוּ הַשּׁוֹמְרִים לְגָרֵשׁ אֶת עַזֵּי־הַפָּנִים הָאֵלֶּה", + "source": "gulliver", "match_method": "direct" } ], @@ -336574,7 +338627,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנַחְנוּ חוֹצִים מִגְרָשׁ מָלֵא חָבִיּוֹת שֶׁמְּחֻבָּרוֹת זוֹ אֶל זוֹ בְּפִתְחֵיהֶן וְיוֹצְרוֹת נָחָשׁ מִתְפַּתֵּל", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" \"זֶה מַסְלוּל הַמְרָאָה שֶׁל מַחֲנֶה צְבָאִי,\" הוּא הֵשִׁיב, \"כָּאן לֹא מִגְרַשׁ מִשְׂחָקִים לִילָדִים", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "אֲנַחְנוּ חוֹצִים מִגְרָשׁ מָלֵא חָבִיּוֹת שֶׁמְּחֻבָּרוֹת זוֹ אֶל זוֹ בְּפִתְחֵיהֶן וְיוֹצְרוֹת נָחָשׁ מִתְפַּתֵּל", + "cloze_word_start": 18, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "EJ!&+ZsOTX" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִגְרָשׁ", @@ -347307,6 +349381,11 @@ "text": "הִיא נִדְבֶּקֶת אֶל שִׂיחַ שֶׁצּוֹמֵחַ סָמוּךְ לַפֶּתַח וְנִרְאֵית כְּמוֹ אַחַת שֶׁמְּנַסָּה לְהִבָּלַע בְּתוֹכוֹ", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "בָּרוּר שֶׁהִיא לֹא תָּעֵז לִשְׁתּוֹת מֵהַבַּקְבּוּק שֶׁלִּי, כִּי אָז יֵשׁ מַצָּב שֶׁהִיא תִּדָּבֵק מִמֶּנִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -348116,6 +350195,16 @@ "text": "קַרְנִי צָעֲדָה לְפָנַי, וַאֲנִי נִסִּיתִי לְהַדְבִּיק אֶת קֶצֶב הַהִתְקַדְּמוּת שֶׁלָּהּ", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "שָׁרוֹן הִשִּׂיגָה אֶת אַדְוָה וְאוֹתִי, וַאֲנִי מִתְאַמֵּץ לְהַדְבִּיק אוֹתָהּ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\"תִּרְאוּ,\" הִיא מַצְבִּיעָה עַל הַדֶּלֶת, \"הֵם הִדְבִּיקוּ כָּאן מַשֶּׁהוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -352083,7 +354172,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַכֹּל מִתְנַהֵל כְּאִלּוּ לֹא קָרָה דָּבָר בְּכָל הָאֵזוֹר,\" אוֹמֵר דּוֹבֵר יִשּׁוּבֵי גּוּשׁ קָטִיף", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַכֹּל מִתְנַהֵל כְּאִלּוּ לֹא קָרָה דָּבָר בְּכָל הָאֵזוֹר,\" אוֹמֵר דּוֹבֵר יִשּׁוּבֵי גּוּשׁ קָטִיף", + "cloze_word_start": 69, + "cloze_word_end": 76, + "cloze_hint": null, + "cloze_guid": "hR_}%G@N.8" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דּוֹבֵר", @@ -353731,8 +355836,8 @@ "match_method": "direct" }, { - "text": "\"אַבָּא שֶׁלִּי סִפֵּר לִי שֶׁמֵּעַל הַבַּיִת שֶׁל סַבָּא רַבָּא־רַבָּא שְׁמוּאֵל הִתְנוֹסֵס דֶּגֶל צָרְפַת", - "source": "time_tunnel_75", + "text": "לָמָּה הִיא עוֹמֶדֶת לְהַפְלִיג עִם דֶּגֶל יִשְׂרָאֵל", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -354455,6 +356560,11 @@ "text": "\"טוֹב, אֲנִי לֹא יָכוֹל לְהַדְגִּים לָךְ בְּעַצְמִי,\" אָמַר הַכְּמוֹ־צָב: \"אֲנִי נֻקְשֶׁה מִדַּי", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "הַמַּדְרִיךְ שֶׁלָּהֶם מַדְגִּים תַּרְגִּילִים, וְהֵם מְבַצְּעִים", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -355288,7 +357398,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אוֹמְרִים שֶׁהוּא הָיָה גֶּבֶר יְפֵה תֹּאַר, הַרְבֵּה יוֹתֵר יָפֶה מִכָּל הַדֻּגְמָנִים וְהַיְּדוּעָנִים שֶׁאַתֶּם מַכִּירִים", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "אוֹמְרִים שֶׁהוּא הָיָה גֶּבֶר יְפֵה תֹּאַר, הַרְבֵּה יוֹתֵר יָפֶה מִכָּל הַדֻּגְמָנִים וְהַיְּדוּעָנִים שֶׁאַתֶּם מַכִּירִים", + "cloze_word_start": 74, + "cloze_word_end": 87, + "cloze_hint": null, + "cloze_guid": "O0F4iG=D&" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דֻּגְמָן", @@ -357366,7 +359492,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּגָדָיו מְרֻפָּטִים, צְבָעָיו הַיָּפִים דָּהוּ וְכֻלּוֹ עָלוּב וּמִסְכֵּן", + "source": "ilana", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בְּגָדָיו מְרֻפָּטִים, צְבָעָיו הַיָּפִים דָּהוּ וְכֻלּוֹ עָלוּב וּמִסְכֵּן", + "cloze_word_start": 42, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "QOL]w]brf4" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -358314,13 +360456,13 @@ "match_method": "conjugated" }, { - "text": "\" הוּא הִבִּיט בִּי נִדְהָם", - "source": "little_prince", + "text": "\" שָׁרוֹן נִדְהֲמָה, \"אֵיךְ אַתָּה יוֹדֵעַ", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "זַ'בּוֹטִינְסְקִי לֹא הֶעֱמִיד פָּנִים כְּשֶׁהוּא נִדְהַם לִשְׁמוֹעַ שֶׁשָּׁרוֹן וַאֲנִי חֲבֵרִים שֶׁל בְּנוֹ עֵרִי", - "source": "time_tunnel_63", + "text": "\" הוּא הִבִּיט בִּי נִדְהָם", + "source": "little_prince", "match_method": "conjugated" } ], @@ -358846,6 +360988,16 @@ "text": "\"בֶּאֱמֶת חָזַרְנוּ לַהֹוֶה,\" נֹגַהּ עָנְתָה לִי וְחִיְּכָה, \"אֵיזוֹ חֲוָיָה מַדְהִימָה", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "בָּטוּחַ שֶׁלַּמִּשְׁפָּחָה שֶׁגָּרָה כָּאן הָיוּ חַיִּים מַדְהִימִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "\"אֲנָשִׁים חָיוּ כָּאן חַיִּים מַדְהִימִים", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -359591,13 +361743,13 @@ "match_method": "direct" }, { - "text": "מִמֶּרְחָק זֶה עָשָׂה רשֶׁם מַדְהִים", - "source": "little_prince", + "text": "אֲנִי שׁוֹכֵב לְבַדִּי עַל חוֹף יָם מַדְהִים, אֲבָל נָטוּשׁ", + "source": "time_tunnel_77", "match_method": "direct" }, { - "text": "'״ \"אֵיזֶה קֶטַע מַדְהִים", - "source": "time_tunnel_silver_train", + "text": "מִמֶּרְחָק זֶה עָשָׂה רשֶׁם מַדְהִים", + "source": "little_prince", "match_method": "direct" } ], @@ -359666,7 +361818,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַפִּרְדָּה דּוֹהֶרֶת, הַבְּחִילָה שֶׁלִּי גּוֹבֶרֶת וְהוּא מְמֻקָּד בַּמְּשִׂימָה שֶׁלּוֹ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "הָאֵזוֹר שֶׁבּוֹ אֲנַחְנוּ דּוֹהֲרִים שׁוֹמֵם לְגַמְרֵי, וְכַנִּרְאֶה זוֹ הַסִּבָּה שֶׁהוּא לֹא מֻכָּר לִי", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַפִּרְדָּה דּוֹהֶרֶת, הַבְּחִילָה שֶׁלִּי גּוֹבֶרֶת וְהוּא מְמֻקָּד בַּמְּשִׂימָה שֶׁלּוֹ", + "cloze_word_start": 12, + "cloze_word_end": 21, + "cloze_hint": null, + "cloze_guid": "B~Ghx6$&j+" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -360570,7 +362743,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" סָח לַשַּׁבְּלוּל דַּג קוֹד כְּסוּף־גַּב", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "מֵעוֹלָם לֹא קִבַּלְתִּי כָּל־כָּךְ הַרְבֵּה מֵידָע עַל דַּג הַקּוֹד עַד כֹּה", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "\"יָדוּעַ לָךְ לָמָּה קוֹרְאִים לוֹ דַּג קוֹד", + "source": "alice_wonderland", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\" סָח לַשַּׁבְּלוּל דַּג קוֹד כְּסוּף־גַּב", + "cloze_word_start": 20, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "fv5%}B|=b:" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דָּג", @@ -364062,7 +366261,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בֶּן דּוֹד שֶׁלִּי דּוֹר עָמַד לִנְסוֹעַ לְהוֹדוּ וְלִפְנֵי הַטִּיסָה הוּא בָּא לְבַקֵּר אוֹתָנוּ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "בֶּן דּוֹד שֶׁלִּי דּוֹר עָמַד לִנְסוֹעַ לְהוֹדוּ וְלִפְנֵי הַטִּיסָה הוּא בָּא לְבַקֵּר אוֹתָנוּ", + "cloze_word_start": 19, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "gew,B:SfSb" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דּוֹר", @@ -368152,25 +370367,25 @@ "examples": { "vetted": [ { - "text": "בִּמְקוֹם תְּשׁוּבָה נִדְחַפְתִּי בְּכֹחַ קָדִימָה", - "source": "time_tunnel_63", + "text": "אֲבָל הָאִשָּׁה שֶׁשָּׁרוֹן הִתְכַּוְנָה לְהִדָּחֵף לְפָנֶיהָ הָדְפָה אוֹתָהּ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "כַּמָּה אֲנָשִׁים דּוֹחֲפִים זֶה אֶת זֶה, וְגַם אֲנִי נִדְחָף", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "שָׁרוֹן נִדְחֶפֶת בֵּינִי לְבֵינוֹ", - "source": "time_tunnel_82", - "match_method": "conjugated" - }, - { - "text": "\" הִיא לֹא הִצְלִיחָה לְסַיֵּם אֶת הַמִּשְׁפָּט, כִּי אִשָּׁה שֶׁחִבְּקָה תִּינוֹק, נִדְחֲפָה אֵלֵינוּ וְהִפְרִידָה בֵּינָהּ לְבֵינֵינוּ", - "source": "time_tunnel_75", + "text": "נִדְחַפְתִּי לְיָמִין, אַחַר כָּךְ נִדְחַפְתִּי לִשְׂמֹאל, וְאָז זִהִיתִי אוֹתוֹ", + "source": "time_tunnel_76", "match_method": "conjugated" } ], "cloze": { - "text": "בִּמְקוֹם תְּשׁוּבָה נִדְחַפְתִּי בְּכֹחַ קָדִימָה", - "cloze_word_start": 21, - "cloze_word_end": 33, + "text": "אֲבָל הָאִשָּׁה שֶׁשָּׁרוֹן הִתְכַּוְנָה לְהִדָּחֵף לְפָנֶיהָ הָדְפָה אוֹתָהּ", + "cloze_word_start": 41, + "cloze_word_end": 51, "cloze_hint": null, "cloze_guid": "q5T0]#721n" }, @@ -368605,6 +370820,11 @@ "text": "הַרְבֵּה יוֹתֵר דָּחוּף לִי לְהָבִין מָה קוֹרֶה כָּאן וְאֵיפֹה בְּעֶצֶם אֲנַחְנוּ נִמְצָאִים", "source": "time_tunnel_82", "match_method": "direct" + }, + { + "text": "דָּחוּף לִי יוֹתֵר לִרְאוֹת מֵאֲשֶׁר לִשְׁמוֹעַ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -371084,8 +373304,8 @@ "match_method": "direct" }, { - "text": "\"דַּי, אֵין טַעַם לִבְכּוֹת כָּכָה", - "source": "alice_wonderland", + "text": "\" \"דַּי כְּבָר עִם הַ'נוּ' הַזֶּה", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -371405,7 +373625,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "עַל סֵדֶר הַדִּיּוּנִים עָמְדָה הַשְּׁאֵלָה מַה לַּעֲשׂוֹת בָּאָדָם־הָהָר", + "source": "gulliver", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "עַל סֵדֶר הַדִּיּוּנִים עָמְדָה הַשְּׁאֵלָה מַה לַּעֲשׂוֹת בָּאָדָם־הָהָר", + "cloze_word_start": 10, + "cloze_word_end": 23, + "cloze_hint": null, + "cloze_guid": "H%[GB[J^71" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דִּיּוּן", @@ -371578,8 +373814,8 @@ "match_method": "direct" }, { - "text": "הֲרֵי מְלָכִים וּמְלָכוֹת שֶׁל מְדִינוֹת רַבּוֹת מְאוֹד רָדְפוּ יְהוּדִים בְּמֶשֶׁךְ כָּל תְּקוּפוֹת הַהִיסְטוֹרְיָה", - "source": "time_tunnel_78", + "text": "הֲרֵי יַרְדֵּן הָיְתָה אָז מְדִינַת אוֹיֵב", + "source": "time_tunnel_82", "match_method": "inflected" } ], @@ -372215,8 +374451,8 @@ "match_method": "conjugated" }, { - "text": "״ ״קוֹלוֹנֶל פֶּטֶרְסוֹן,״ דִּיַּקְתִּי", - "source": "time_tunnel_63", + "text": "\"זֶה לֹא הָיָה תּוֹתָח,\" שָׁרוֹן מְדַיֶּקֶת, \"הַמִּנְהָרָה יָרְתָה אוֹתְךָ", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -384134,7 +386370,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "סְבִיב הַדְּמוּת שֶׁלּוֹ נִרְקְמוּ הֲמוֹן אַגָּדוֹת", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "סְבִיב הַדְּמוּת שֶׁלּוֹ נִרְקְמוּ הֲמוֹן אַגָּדוֹת", + "cloze_word_start": 7, + "cloze_word_end": 16, + "cloze_hint": null, + "cloze_guid": "jx4k@Nm,c}" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דְּמוּת", @@ -384218,6 +386470,11 @@ "text": "בַּלֵּב הִתְפַּלַּלְתִּי שֶׁאֲנִי טוֹעֶה, וְשֶׁהַחֲשָׁדוֹת שֶׁלִּי הֵם סְתָם דִּמְיוֹן", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "\"אַתֶּם בֶּטַח חוֹשְׁבִים שֶׁאֲנִי מְדַמְיֵן,\" הוּא אוֹמֵר, \"אֲבָל זֶה מַמָּשׁ לֹא דִּמְיוֹן", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -386405,9 +388662,9 @@ "match_method": "direct" }, { - "text": "תּוּכְלוּ לְדַמְיֵן כַּמָּה הֻפְתְּעָה, כְּשֶׁהָאַרְנָב הַלָּבָן קָרָא בְּקוֹל, מִמְּרוֹמֵי קוֹלוֹ הַקָּטָן וְהַצַּוְחָנִי, אֶת הַשֵּׁם \"אַלִיס", - "source": "alice_wonderland", - "match_method": "direct" + "text": "\"אַתֶּם בֶּטַח חוֹשְׁבִים שֶׁאֲנִי מְדַמְיֵן,\" הוּא אוֹמֵר, \"אֲבָל זֶה מַמָּשׁ לֹא דִּמְיוֹן", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -388139,6 +390396,11 @@ "text": "\" בְּעִקְבוֹת הַמִּלִּים הַלָּלוּ הִשְׂתָּרְרָה דּוּמִיָּה מְמֻשֶּׁכֶת, שֶׁנִּקְטְעָה מִדֵּי פַּעַם רַק בִּתְרוּעַת \"הֻצְ'קְרְרְע", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "\" בִּן רֶגַע הִשְׂתָּרְרָה שָׁם דּוּמִיַּת מָוֶת, וְאַלִיס חָשְׁבָה בְּלִבָּהּ, \"מְעַנְיֵן מָה הֵם יַעֲשׂוּ עַכְשָׁו", + "source": "alice_wonderland", + "match_method": "inflected" } ], "cloze": { @@ -388933,7 +391195,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי מֵרִים אֶת עֵינַי הַדּוֹמְעוֹת מֵהַמִּכְתָּב וּמַבִּיט בְּאַדְוָה, דְּמָעוֹת זוֹלְגוֹת מֵעֵינֶיהָ", + "source": "time_tunnel_77", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "אֲנִי מֵרִים אֶת עֵינַי הַדּוֹמְעוֹת מֵהַמִּכְתָּב וּמַבִּיט בְּאַדְוָה, דְּמָעוֹת זוֹלְגוֹת מֵעֵינֶיהָ", + "cloze_word_start": 24, + "cloze_word_end": 36, + "cloze_hint": null, + "cloze_guid": "IDn1vY<]{{" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -389358,25 +391636,25 @@ "examples": { "vetted": [ { - "text": "גַּם בִּרְגָעִים אֵלּוּ, כְּשֶׁאֲנִי כּוֹתֶבֶת לָכֶם, עוֹלוֹת דְּמָעוֹת בְּעֵינַי מֵרֹב אַהֲבָה לַנָּסִיךְ הַקָּטָן", - "source": "little_prince", + "text": "אֲנִי מֵרִים אֶת עֵינַי הַדּוֹמְעוֹת מֵהַמִּכְתָּב וּמַבִּיט בְּאַדְוָה, דְּמָעוֹת זוֹלְגוֹת מֵעֵינֶיהָ", + "source": "time_tunnel_77", "match_method": "inflected" }, { - "text": "\" קָרְאָה אַלִיס בְּפֶרֶץ דְּמָעוֹת פִּתְאוֹמִי, \"כַּמָּה הָיִיתִי רוֹצָה שֶׁבֶּאֱמֶת יַכְנִיסוּ אֶת הָרֹאשׁ לְכָאן", - "source": "alice_wonderland", + "text": "גַּם מֵעֵינֶיהָ שֶׁל שָׁרוֹן זוֹלְגוֹת דְּמָעוֹת", + "source": "time_tunnel_77", "match_method": "inflected" }, { - "text": "לֹא, לֹא הָיוּ דְּמָעוֹת", - "source": "alice_wonderland", - "match_method": "inflected" + "text": "״ אָדוֹן קְרָאוּזֶה שׁוֹלֵחַ אֶת יָדוֹ הַיְּמָנִית אֶל עֵינָיו, אוּלַי מוֹחֶה דִּמְעָה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "גַּם בִּרְגָעִים אֵלּוּ, כְּשֶׁאֲנִי כּוֹתֶבֶת לָכֶם, עוֹלוֹת דְּמָעוֹת בְּעֵינַי מֵרֹב אַהֲבָה לַנָּסִיךְ הַקָּטָן", - "cloze_word_start": 62, - "cloze_word_end": 71, + "text": "אֲנִי מֵרִים אֶת עֵינַי הַדּוֹמְעוֹת מֵהַמִּכְתָּב וּמַבִּיט בְּאַדְוָה, דְּמָעוֹת זוֹלְגוֹת מֵעֵינֶיהָ", + "cloze_word_start": 73, + "cloze_word_end": 82, "cloze_hint": null, "cloze_guid": "p@aj)u309G" }, @@ -389868,7 +392146,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"אֲנִי לֹא מְבִינָה מַשֶּׁהוּ,\" שָׁרוֹן מַמְתִּינָה עַד שֶׁמְּחִיאוֹת הַכַּפַּיִם יִדְעֲכוּ, \"בְּגֶרְמַנְיָה יְרַדְתֶּם בְּלִי הִתְנַגְּדוּת", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"אֲנִי לֹא מְבִינָה מַשֶּׁהוּ,\" שָׁרוֹן מַמְתִּינָה עַד שֶׁמְּחִיאוֹת הַכַּפַּיִם יִדְעֲכוּ, \"בְּגֶרְמַנְיָה יְרַדְתֶּם בְּלִי הִתְנַגְּדוּת", + "cloze_word_start": 82, + "cloze_word_end": 91, + "cloze_hint": null, + "cloze_guid": "Q&a{@+(:U8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -390573,6 +392867,11 @@ "source": "time_tunnel_silver_train", "match_method": "conjugated" }, + { + "text": "\" הַבָּחוּר הַמְּתֻלְתָּל מְדַפְדֵּף בַּעֲרֵמַת הַדַּפִּים עַד שֶׁהוּא מַגִּיעַ אֶל הָאוֹת פ'", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "הוּא דִּפְדֵּף בּוֹ, ״יַתּוּשֵׁי הַקַּדַּחַת הִפִּילוּ הַרְבֵּה מְאוֹד חֲלָלִים בַּחֲזִית הַזֹּאת,״ הוּא אָמַר", "source": "time_tunnel_63", @@ -391374,6 +393673,11 @@ "text": "לָכֵן מוּטָב לֹא לְהִסְתַּכֵּן וְלִלְבּוֹשׁ מַשֶּׁהוּ שֶׁיֵּרָאֶה יוֹצֵא דֹּפֶן", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "אֲנִי יוֹצֵא דֹּפֶן כָּאן, וְרָאוּי שֶׁאֲוַתֵּר לַנּוֹסְעִים הָאֲמִתִּיִּים", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -393412,6 +395716,16 @@ "text": "שׁוּב דָּפַק מִישֶׁהוּ עַל הַדֶּלֶת וְאָמַר בְּעִבְרִית: ״תִּפְתְּחוּ", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "וְהַיָּמִים עָבְרוּ, וְהַבַּנָּאִים בָּנוּ, וְהַנַּגָּרִים דָּפְקוּ – וְהִנֵּה הַבַּיִת מוּכָן", + "source": "ilana", + "match_method": "conjugated" + }, + { + "text": "קֹדֶם, לִפְנֵי שֶׁהִגַּעְתָּ, אַדְוָה דָּפְקָה עַל הַדֶּלֶת אֲבָל אַף אֶחָד לֹא פָּתַח לָהּ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -393942,7 +396256,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָאָחוֹת מוֹשֶׁכֶת אֵלֶיהָ אֶת יָדִי וּבוֹדֶקֶת דֹּפֶק", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הָאָחוֹת מוֹשֶׁכֶת אֵלֶיהָ אֶת יָדִי וּבוֹדֶקֶת דֹּפֶק", + "cloze_word_start": 48, + "cloze_word_end": 54, + "cloze_hint": null, + "cloze_guid": "Gie/CNsev." + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דֹּפֶק", @@ -395243,7 +397573,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּנְוֵה דְּקָלִים הָיָה מָלוֹן, וְזֶה הָיָה הַמָּלוֹן הַמֻעֲדָף עָלֵינוּ", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "בִּנְוֵה דְּקָלִים הָיָה מָלוֹן, וְזֶה הָיָה הַמָּלוֹן הַמֻעֲדָף עָלֵינוּ", + "cloze_word_start": 9, + "cloze_word_end": 18, + "cloze_hint": null, + "cloze_guid": "d87`F/Kn8F" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דֶּקֶל", @@ -396226,6 +398572,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אֲבָל סְדָקִים לֹא נוֹצְרוּ וְהַקִּיר רַק הָלַךְ וְנִהְיָה דַּק", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "הַנָּסִיךְ הַקָּטָן הִתְבּוֹנֵן בּוֹ זְמַן רַב: \"אַתָּה חַיָּה מְשֻׁנָּה,\" אָמַר לְבַסּוֹף, \"דַּק כְּמוֹ אֶצְבַּע", "source": "little_prince", @@ -396233,11 +398584,11 @@ } ], "cloze": { - "text": "הַנָּסִיךְ הַקָּטָן הִתְבּוֹנֵן בּוֹ זְמַן רַב: \"אַתָּה חַיָּה מְשֻׁנָּה,\" אָמַר לְבַסּוֹף, \"דַּק כְּמוֹ אֶצְבַּע", - "cloze_word_start": 93, - "cloze_word_end": 97, + "text": "אֲבָל סְדָקִים לֹא נוֹצְרוּ וְהַקִּיר רַק הָלַךְ וְנִהְיָה דַּק", + "cloze_word_start": 59, + "cloze_word_end": 63, "cloze_hint": null, - "cloze_guid": "N2-&S`<=pq" + "cloze_guid": "cPj)=p:bL9" }, "rejected_count": 0 }, @@ -396466,6 +398817,11 @@ "text": "מָשַׁכְתִּי אַחֲרַי אֶת שָׁרוֹן וְהִיא כָּעֲסָה עָלַי, כִּי הִיא נִשְׂרְטָה מֵעָנָף דּוֹקֵר", "source": "time_tunnel_78", "match_method": "conjugated" + }, + { + "text": "הַקּוֹצִים דּוֹקְרִים, אֲבָל הַסַּקְרָנוּת מַשְׁכִּיחָה אֶת הַכְּאֵב", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -398907,6 +401263,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "זָחַלְתִּי בְּמוֹרַד מַדְרְגוֹת וְשָׁרוֹן הֶחְלִיקָה אַחֲרַי", + "source": "time_tunnel_78", + "match_method": "inflected" + }, { "text": "קַרְנִי הוֹבִילָה אוֹתָנוּ אַחֲרֶיהָ אֶל מַדְרֵגוֹת שֶׁיָּרְדוּ לְקוֹמַת הַמַּרְתֵּף", "source": "time_tunnel_78", @@ -398914,9 +401275,9 @@ } ], "cloze": { - "text": "קַרְנִי הוֹבִילָה אוֹתָנוּ אַחֲרֶיהָ אֶל מַדְרֵגוֹת שֶׁיָּרְדוּ לְקוֹמַת הַמַּרְתֵּף", - "cloze_word_start": 41, - "cloze_word_end": 51, + "text": "זָחַלְתִּי בְּמוֹרַד מַדְרְגוֹת וְשָׁרוֹן הֶחְלִיקָה אַחֲרַי", + "cloze_word_start": 21, + "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "FO#S?{PaZH" }, @@ -399057,6 +401418,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אַחַד הַחַיָּלִים שֶׁנָּשָׂא עַל כְּתֵפָיו דַּרְגוֹת קָצִין צָעַד צַעַד אֶחָד קָדִימָה וְהִצְדִּיעַ", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "״ ״אָה,״ אַבָּא חִיֵּךְ, ״לוּטֶנֶנְט זוֹ דַּרְגָּה, כְּמוֹ סֶגֶן בְּצַהַ״ל", "source": "time_tunnel_63", @@ -399069,9 +401435,9 @@ } ], "cloze": { - "text": "״ ״אָה,״ אַבָּא חִיֵּךְ, ״לוּטֶנֶנְט זוֹ דַּרְגָּה, כְּמוֹ סֶגֶן בְּצַהַ״ל", - "cloze_word_start": 41, - "cloze_word_end": 50, + "text": "אַחַד הַחַיָּלִים שֶׁנָּשָׂא עַל כְּתֵפָיו דַּרְגוֹת קָצִין צָעַד צַעַד אֶחָד קָדִימָה וְהִצְדִּיעַ", + "cloze_word_start": 43, + "cloze_word_end": 52, "cloze_hint": null, "cloze_guid": "IE`H];ik5p", - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֵין זֺאת, כִּי אָהֲבוּ הָעִזִּים אַהֲבָה רַבָּה אֶת הַמֶּרְחָב וְאֶת הַדְּרוֹר", + "source": "kid_on_mountain", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דְּרוֹר", @@ -401424,6 +403799,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"הוּא נִמְצָא לְמַטָּה בַּחֲדַר הַחוֹלִים,\" נַפְתָּלִי מַדְרִיךְ אוֹתִי, \"אֲנִי בֶּאֱמֶת מִצְטַעֵר", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "״ \"תְּנַסִּי לְהָזִיז אֶת הַשִּׂיחַ,״ אֲנִי מַדְרִיךְ אוֹתָהּ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "\"לְפִי מָה שֶׁאֲנִי מֵבִין, אַתְּ אֲמוּרָה לְהַדְרִיךְ אוֹתָנוּ לְאָן לַחְזוֹר אָחוֹרָה בַּזְּמַן,״ אָמַרְתִּי", "source": "time_tunnel_silver_train", @@ -401431,9 +403816,9 @@ } ], "cloze": { - "text": "\"לְפִי מָה שֶׁאֲנִי מֵבִין, אַתְּ אֲמוּרָה לְהַדְרִיךְ אוֹתָנוּ לְאָן לַחְזוֹר אָחוֹרָה בַּזְּמַן,״ אָמַרְתִּי", - "cloze_word_start": 43, - "cloze_word_end": 54, + "text": "\"הוּא נִמְצָא לְמַטָּה בַּחֲדַר הַחוֹלִים,\" נַפְתָּלִי מַדְרִיךְ אוֹתִי, \"אֲנִי בֶּאֱמֶת מִצְטַעֵר", + "cloze_word_start": 55, + "cloze_word_end": 64, "cloze_hint": null, "cloze_guid": "okdR$$y|gv" }, @@ -403584,6 +405969,11 @@ "text": "הַכַּרְטִיסִים הָיוּ לָרַכֶּבֶת שֶׁאֲמוּרָה לָצֵאת מֵחֵיפָה וּמִשָּׁם לְהַמְשִׁיךְ דָּרוֹמָה לַחֲדֵרָה", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "\" כִּווּן הַהַפְלָגָה שֶׁלָּנוּ הָיָה דָּרוֹמָה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -404181,7 +406571,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "רְבִיעִית: בִּשְׁעַת טִיּוּלָיו עָלָיו לְהִזָּהֵר שֶׁלֹּא יִדְרֹס אֶת הָאֲנָשִׁים וְהַבְּהֵמוֹת", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "רְבִיעִית: בִּשְׁעַת טִיּוּלָיו עָלָיו לְהִזָּהֵר שֶׁלֹּא יִדְרֹס אֶת הָאֲנָשִׁים וְהַבְּהֵמוֹת", + "cloze_word_start": 58, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "G7t=k|`XGD" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -404688,8 +407094,8 @@ "match_method": "conjugated" }, { - "text": "בְּכָל פַּעַם שֶׁאֲנַחְנוּ חוֹזְרִים אָחוֹרָה בַּזְּמַן, מַגִּיעַ הָרֶגַע שֶׁבּוֹ אֲנַחְנוּ נִדְרָשִׁים לְהַסְבִּיר מִי אֲנַחְנוּ", - "source": "time_tunnel_70", + "text": "״ \"וְהֵם נִדְרְשׁוּ לְשַׁלֵּם כֹּפֶר", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -405127,7 +407533,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מְסוֹר לָהּ דְּרִישַׁת שָׁלוֹם מִמֶּנִּי,\" הִיא חִיְּכָה אֵלַי", + "source": "time_tunnel_75", + "match_method": "inflected" + }, + { + "text": "וְאַתְּ,״ הוּא פָּנָה לִיהוּדִית, \"מִסְרִי דְּרִישַׁת שָׁלוֹם לְכָל הַמִּשְׁפָּחָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "הִיא שָׁמְעָה אֶת חִלּוּפֵי הַדְּבָרִים בֵּינִי לְבֵין אִמָּא, וְרָצְתָה לָדַעַת מִי מָסְרָה לָהּ דְּרִישַׁת שָׁלוֹם", + "source": "time_tunnel_75", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\"מְסוֹר לָהּ דְּרִישַׁת שָׁלוֹם מִמֶּנִּי,\" הִיא חִיְּכָה אֵלַי", + "cloze_word_start": 13, + "cloze_word_end": 23, + "cloze_hint": null, + "cloze_guid": "gC.Y5*JG9d" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "דְּרִישָׁה", @@ -405852,15 +408284,15 @@ "examples": { "vetted": [ { - "text": "\" וְהוּא נִשְׁכַּב עַל הַדֶּשֶׁא וּבָכָה", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "\" וְהוּא נִשְׁכַּב עַל הַדֶּשֶׁא וּבָכָה", - "cloze_word_start": 23, - "cloze_word_end": 32, + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "cloze_word_start": 37, + "cloze_word_end": 44, "cloze_hint": null, "cloze_guid": "HFd5ETZ}!A" }, @@ -408443,7 +410875,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַבֵּן אֵינוֹ הַיֶּלֶד הַדָּתִי שֶׁהִדְבִּיק עִם שְׁתֵּי הַבָּנוֹת אֶת קֶטַע הָעִתּוֹן עַל הַדֶּלֶת", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הַבֵּן אֵינוֹ הַיֶּלֶד הַדָּתִי שֶׁהִדְבִּיק עִם שְׁתֵּי הַבָּנוֹת אֶת קֶטַע הָעִתּוֹן עַל הַדֶּלֶת", + "cloze_word_start": 23, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "KXAs:r$6|7" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -411568,6 +414016,11 @@ "text": "\" הֵד עָמוּם מַגִּיעַ אֵלַי מִמַּעֲמַקִּים", "source": "time_tunnel_82", "match_method": "direct" + }, + { + "text": "\" אֲנִי חוֹזֵר אַחֲרָיו כְּמוֹ הֵד", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -411704,13 +414157,13 @@ "match_method": "conjugated" }, { - "text": "בְּאָזְנַי עֲדַיִן הִדְהֲדָה שִׁירַת הַגַּלְגֶּלֶת, וּבְמֵימֵי הַדְּלִי, שֶׁהוֹסִיפוּ לִרְטֹט, רָאִיתִי אֶת הַשֶּׁמֶשׁ רוֹטֶטֶת", - "source": "little_prince", + "text": "לָמָּה נִדְמֶה לִי כְּאִלּוּ הַקּוֹלוֹת שֶׁלָּהֶם עֲדַיִן מְהַדְהֲדִים כָּאן", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "\" וּבְמֹחִי, וַאֲנִי לֹא מֵבִין אֵיךְ וְלָמָּה, מְהַדְהֵד הַפָּסוּק: \"אִם אֶשְׁכָּחֵךְ יְרוּשָׁלַיִם, תִּשְׁכַּח יְמִינִי\"", - "source": "time_tunnel_75", + "text": "בְּאָזְנַי עֲדַיִן הִדְהֲדָה שִׁירַת הַגַּלְגֶּלֶת, וּבְמֵימֵי הַדְּלִי, שֶׁהוֹסִיפוּ לִרְטֹט, רָאִיתִי אֶת הַשֶּׁמֶשׁ רוֹטֶטֶת", + "source": "little_prince", "match_method": "conjugated" } ], @@ -412522,6 +414975,11 @@ "text": "״ ״לֹא,״ אַבָּא אָמַר, ״הַטוּרְקִים הָדְפוּ אוֹתָם", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "אֲבָל הָאִשָּׁה שֶׁשָּׁרוֹן הִתְכַּוְנָה לְהִדָּחֵף לְפָנֶיהָ הָדְפָה אוֹתָהּ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -412967,8 +415425,8 @@ "match_method": "conjugated" }, { - "text": "אִמָּא נֶהֶדְפָה לְעֵבֶר סֵפֶר הַתּוֹרָה", - "source": "time_tunnel_75", + "text": "\" אֲנִי נֶהֱדָף לְאָחוֹר עַל יְדֵי הָאֲנָשִׁים שֶׁזּוֹרְמִים פְּנִימָה", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -413404,7 +415862,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אָז נָטַל גּוּלִיבֶר אֶת הָאֶקְדָּח, כִּוֵּן אֶת קָנֵהוּ לַחֲלַל הָאֲוִיר וְלָחַץ עַל הַהֶדֶק", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אָז נָטַל גּוּלִיבֶר אֶת הָאֶקְדָּח, כִּוֵּן אֶת קָנֵהוּ לַחֲלַל הָאֲוִיר וְלָחַץ עַל הַהֶדֶק", + "cloze_word_start": 86, + "cloze_word_end": 93, + "cloze_hint": null, + "cloze_guid": "FWC3I]UaCq" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הֶדֶק", @@ -413472,7 +415946,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ בְּפָנָיו שֶׁל קְרָאוּזֶה מִתְהַדְּקוֹת הַלְּסָתוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "״ בְּפָנָיו שֶׁל קְרָאוּזֶה מִתְהַדְּקוֹת הַלְּסָתוֹת", + "cloze_word_start": 28, + "cloze_word_end": 41, + "cloze_hint": null, + "cloze_guid": "l>E2$_PpUl" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -413965,9 +416455,14 @@ "match_method": "conjugated" }, { - "text": "אֶל אָזְנַי הִגִּיעַ קוֹל שַׁעֲטוֹת סוּס, וְהַנַּעֲלַיִם שֶׁהָיוּ סְבִיבִי, בִּמְקוֹם לְהַדֵּק אֶת הַמַּעְגָּל, הִרְחִיבוּ אוֹתוֹ", - "source": "time_tunnel_70", - "match_method": "direct" + "text": "הָאֲזִיקוֹנִים שֶׁלָּהּ הָיוּ כַּנִּרְאֶה מְהֻדָּקִים מִדַּי וְהוֹתִירוּ סִימָנִים אֲדֻמִּים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "גַּל הִדֵּק אֶת אֲחִיזָתוֹ בַּהֶגֶה", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -414921,7 +417416,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבֶאֱמֶת, הַפְּרָדוֹת לֹא מְיֹעָדוֹת לִרְכִיבָה סְתָם, וְהַבְּעָלִים שֶׁלָּהֶן לֹא מִתְהַדְּרִים בָּאֲצִילוּת שֶׁלָּהֶן", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וּבֶאֱמֶת, הַפְּרָדוֹת לֹא מְיֹעָדוֹת לִרְכִיבָה סְתָם, וְהַבְּעָלִים שֶׁלָּהֶן לֹא מִתְהַדְּרִים בָּאֲצִילוּת שֶׁלָּהֶן", + "cloze_word_start": 84, + "cloze_word_end": 97, + "cloze_hint": null, + "cloze_guid": "uM{>=ER4an" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -417364,7 +419875,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "– הוֹי שׁוּב פַּעַם בָּא אוֹטוֹ", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "– הוֹי שׁוּב פַּעַם בָּא אוֹטוֹ", + "cloze_word_start": 2, + "cloze_word_end": 6, + "cloze_hint": null, + "cloze_guid": "C^}8>w`rG/" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -418210,7 +420737,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּמְקוֹמָם לֹא הָיִיתִי מוֹכֵר בַּיִת כָּזֶה בְּעַד שׁוּם הוֹן שֶׁבָּעוֹלָם", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "בִּמְקוֹמָם לֹא הָיִיתִי מוֹכֵר בַּיִת כָּזֶה בְּעַד שׁוּם הוֹן שֶׁבָּעוֹלָם", + "cloze_word_start": 59, + "cloze_word_end": 63, + "cloze_hint": null, + "cloze_guid": "mRg,WSs@%o" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הוֹן", @@ -418998,12 +421541,17 @@ "examples": { "vetted": [ { - "text": "״בִּגְלַל הַחֹם הֵם הוֹזִים הֲזָיוֹת,״ הָאַנְגְּלִית שֶׁלּוֹ הָיְתָה עוֹד פָּחוֹת טוֹבָה מֵהָאַנְגְּלִית שֶׁלִּי", - "source": "time_tunnel_63", + "text": "אֲנִי רוֹאֶה נָכוֹן, אוֹ שֶׁאֲנִי הוֹזֶה", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "בַּשְּׁנִיָּה הָרִאשׁוֹנָה הֵבֵאתִי בְּחֶשְׁבּוֹן אֶפְשָׁרוּת שֶׁאֲנִי הוֹזֶה בִּגְלַל הַחֹם, אֲבָל עַד מְהֵרָה הֵבַנְתִּי שֶׁלֹּא", + "text": "יִתָּכֵן שֶׁמַּצַּב הַמַּחֲלָה שֶׁלִּי גָּרוּעַ כָּל כָּךְ עַד שֶׁאֲנִי הוֹזֶה הֲזָיוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "״בִּגְלַל הַחֹם הֵם הוֹזִים הֲזָיוֹת,״ הָאַנְגְּלִית שֶׁלּוֹ הָיְתָה עוֹד פָּחוֹת טוֹבָה מֵהָאַנְגְּלִית שֶׁלִּי", "source": "time_tunnel_63", "match_method": "conjugated" } @@ -421552,7 +424100,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בֶּקַע־יְהַבְג וּבֶקַע־יְכוּמָן – לָרִאשׁוֹנִים עֲקֵבִים גְּבוֹהִים לְנַעֲלֵיהֶם, וְהָאַחֲרוֹנִים – מְהַלְּכִים עַל עֲקֵבִים נְמוּכִים", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בֶּקַע־יְהַבְג וּבֶקַע־יְכוּמָן – לָרִאשׁוֹנִים עֲקֵבִים גְּבוֹהִים לְנַעֲלֵיהֶם, וְהָאַחֲרוֹנִים – מְהַלְּכִים עַל עֲקֵבִים נְמוּכִים", + "cloze_word_start": 100, + "cloze_word_end": 111, + "cloze_hint": null, + "cloze_guid": "IXntWAKv)a" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -422761,7 +425325,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אִם אֲטִימַת הַמְּעָרָה הָיְתָה מַעֲשֵׂה יְדֵי אָדָם, הַתַּהֲלִיךְ הָיָה בְּוַדַּאי נִמְשָׁךְ הַרְבֵּה יוֹתֵר זְמַן", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אִם אֲטִימַת הַמְּעָרָה הָיְתָה מַעֲשֵׂה יְדֵי אָדָם, הַתַּהֲלִיךְ הָיָה בְּוַדַּאי נִמְשָׁךְ הַרְבֵּה יוֹתֵר זְמַן", + "cloze_word_start": 54, + "cloze_word_end": 66, + "cloze_hint": null, + "cloze_guid": "BNl%&arYIT" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תַּהֲלִיךְ", @@ -422842,6 +425422,16 @@ "text": "הַהִתְקָרְבוּת נִרְאֲתָה לִי אִטִּית מְאוֹד, כְּאִלּוּ אֲנִי צוֹפֶה בְּסֶרֶט בְּהִלּוּךְ אִטִּי", "source": "time_tunnel_75", "match_method": "direct_prefix" + }, + { + "text": "אֲבָל כְּשֶׁאַתָּה צוֹפֶה בַּשֶּׁמֶשׁ הָעוֹלָה בְּהִלּוּךְ מָהִיר, זֶה כְּבָר מַשֶּׁהוּ אַחֵר לְגַמְרֵי", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "שׁוּב הָיָה נִדְמֶה לִי שֶׁדְּבָרִים קוֹרִים בְּהִלּוּךְ אִטִּי", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -423014,6 +425604,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" תַּהֲלוּכַת סֵפֶר הַתּוֹרָה מִצְּפַת לְמֵירוֹן", + "source": "time_tunnel_75", + "match_method": "inflected" + }, + { + "text": "נֹגַהּ הֶעֱבִירָה גַּם לְשָׁרוֹן אֶת הַשְּׁאֵלָה עַל תַּהֲלוּכַת סֵפֶר הַתּוֹרָה", + "source": "time_tunnel_75", + "match_method": "inflected" + }, { "text": "\"אֲנַחְנוּ לֹא יוֹדְעִים לְאֵיזוֹ תַּהֲלוּכָה אַתְּ מִתְכַּוֶנֶת", "source": "time_tunnel_75", @@ -423021,9 +425621,9 @@ } ], "cloze": { - "text": "\"אֲנַחְנוּ לֹא יוֹדְעִים לְאֵיזוֹ תַּהֲלוּכָה אַתְּ מִתְכַּוֶנֶת", - "cloze_word_start": 34, - "cloze_word_end": 45, + "text": "\" תַּהֲלוּכַת סֵפֶר הַתּוֹרָה מִצְּפַת לְמֵירוֹן", + "cloze_word_start": 2, + "cloze_word_end": 13, "cloze_hint": null, "cloze_guid": "I{kA%,y~Ky" }, @@ -423759,7 +426359,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"לִי יֵשׁ נְעָצִים,\" תְּהִלָּה מַצִּילָה אֶת הַמַּצָּב", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "תַּחְשְׁבוּ עַל זֶה: יוֹאָב וְנֹעָה, תְּהִלָּה וְיָרוֹן הָיוּ בֵּינֵיהֶם", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "הִנֵּה יוֹאָב, הִנֵּה נֹעָה, הִנֵּה תְּהִלָּה וְהִנֵּה יָרוֹן", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"לִי יֵשׁ נְעָצִים,\" תְּהִלָּה מַצִּילָה אֶת הַמַּצָּב", + "cloze_word_start": 21, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "G<=bKN9" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חַיִל", @@ -569870,6 +573111,16 @@ "text": "\"מָה שֶׁאֲנִי עוֹשָׂה פֹּה,\" שָׁרוֹן הִתְחַכְּמָה", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "\"תַּגִּיד,\" הַקָּצִין מְשַׂחֵק בְּמִשְׁקְפֵי הַשֶּׁמֶשׁ שֶׁלּוֹ, \"הֶחְלַטְתָּ בְּכָל זֹאת לְהִתְחַכֵּם", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "לָמָּה הֵם חוֹשְׁדִים בִּי שֶׁאֲנִי מִתְחַכֵּם", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -571231,9 +574482,9 @@ "examples": { "vetted": [ { - "text": "אִם תַּצְלִיחַ לִשְׁפֹּט בְּצֶדֶק אֶת עַצְמְךָ, זֶה אוֹמֵר שֶׁאַתָּה חָכָם בֶּאֱמֶת", - "source": "הנסיך הקטן", - "match_method": "direct" + "text": "פֶּרֶק חֲמִישִׁי: עֲצַת הַחֲכָמִים אוֹתוֹ עֶרֶב קָרָא הַמֶּלֶךְ לְכָל שָׂרָיו וְיוֹעֲצָיו לְהִתְיָעֲצוּת דְּחוּפָה", + "source": "gulliver", + "match_method": "inflected_prefix" } ], "rejected_count": 0 @@ -572945,15 +576196,20 @@ "examples": { "vetted": [ { - "text": ") \"אֲנִי מְקַוָה שֶׁיִּזְכְּרוּ לָתֵת לָהּ אֶת צְלוֹחִית הֶחָלָב שֶׁלָּהּ בִּשְׁעַת הַתֵּה", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": ") \"אֲנִי מְקַוָה שֶׁיִּזְכְּרוּ לָתֵת לָהּ אֶת צְלוֹחִית הֶחָלָב שֶׁלָּהּ בִּשְׁעַת הַתֵּה", - "cloze_word_start": 57, - "cloze_word_end": 64, + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "cloze_word_start": 21, + "cloze_word_end": 26, "cloze_hint": null, "cloze_guid": "Q[EdDnWaYk" }, @@ -574680,7 +577936,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְשֵׁמַע הַדְּבָרִים הָאֵלֶּה נִתְחַלְחֵל גּוּלִיבֶר", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "לְשֵׁמַע הַדְּבָרִים הָאֵלֶּה נִתְחַלְחֵל גּוּלִיבֶר", + "cloze_word_start": 30, + "cloze_word_end": 41, + "cloze_hint": null, + "cloze_guid": "rPOJ8<:IJP" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -576702,14 +579974,14 @@ "match_method": "direct" }, { - "text": "הַסַּמָּל, שֶׁהִבְחִין בַּגֶּבֶר הַמְּמֻשְׁקָף קִבֵּל כַּנִּרְאֶה הַחְלָטָה, וְשִׁחְרֵר אֶת יָדֶיהָ שֶׁל שָׁרוֹן מֵהַחֲגוֹרָה", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "כְּשֶׁאַתָּה מְבֻלְבָּל, קָשֶׁה לְךָ לְקַבֵּל הַחְלָטוֹת עַצְמָאִיּוֹת", + "source": "time_tunnel_76", + "match_method": "inflected" }, { - "text": "לְמַזָּלִי קִבַּלְתִּי הַחְלָטָה נְכוֹנָה, לְהִכָּנֵס", - "source": "time_tunnel_75", - "match_method": "direct" + "text": "הַחְלָטוֹת כָּאֵלֶּה צָרִיךְ לְהַעֲבִיר בַּמֶּמְשָׁלָה וּבַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { @@ -578734,8 +582006,18 @@ "examples": { "vetted": [ { - "text": "זֹאת כְּבָר חוֹלָה מִדַּי", - "source": "little_prince", + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״   \"גַּם הֵם חוֹלִים", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "\"מַמָּשׁ,״ שָׁרוֹן קוֹפֶצֶת עַל הַמְּצִיאָה וּמְמַהֶרֶת לְאַשֵּׁר, \"גַּם הֵם חוֹלִים, מְאוֹד", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -579601,6 +582883,11 @@ "text": "״ קָרָאתִי, \"אַתְּ לֹא יוֹדַעַת שֶׁעֲטַלֵּפִים מַעֲבִירִים מַחֲלוֹת", "source": "time_tunnel_78", "match_method": "inflected" + }, + { + "text": "הַכְּאֵב שֶׁהִרְגַּשְׁתִּי גִּלָּה לִי שֶׁכַּנִּרְאֶה מִתְפַּתַּחַת אֶצְלִי אֵיזוֹשֶׁהִי מַחֲלָה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -580176,6 +583463,16 @@ "text": "בָּרֶגַע הָרִאשׁוֹן אִמָּא שֶׁלִּי חָשְׁבָה שֶׁמִּישֶׁהוּ חוֹלֶה", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "לֹא הִרְגַּשְׁתִּי חוֹלֶה, הִרְגַּשְׁתִּי סְתָם חֲסַר מֶרֶץ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "אִם חָזַרְנוּ אָחוֹרָה בַּזְּמַן, אֵיךְ יָכוֹל לִהְיוֹת שֶׁאֲנִי עֲדַיִן מַרְגִּישׁ חוֹלֶה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -580265,15 +583562,15 @@ "source": "time_tunnel_78", "match_method": "direct" }, + { + "text": "עַל עֵץ שֶׁצּוֹמֵחַ בַּחֲזִיתוֹ מִישֶׁהוּ בָּנָה בֵּית־עֵץ עִם חַלּוֹנוֹת", + "source": "time_tunnel_77", + "match_method": "inflected" + }, { "text": "גַּם כַּאֲשֶׁר סַבָּא שֶׁל צְבִי פָּתַח לִרְוָחָה אֶת חַלּוֹן חַדְרוֹ, זַלְמָן לֹא נִרְאָה", "source": "time_tunnel_75", "match_method": "direct" - }, - { - "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", - "source": "time_tunnel_78", - "match_method": "inflected" } ], "cloze": { @@ -581768,6 +585065,16 @@ "text": "דֵּי מַהֵר הִיא הֵחֵלָּה מְאַמְלֶלֶת אוֹתוֹ בְּגַאַוְתָנוּתָהּ הַמִּתְפַּנֶּקֶת", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "אַט אַט הֵחֵלּוּ מוֹשְׁכִים בִּקְצוֹת הַחֲבָלִים שֶׁבְּיָדָם", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "וְהַחַיָּה הָרָעָה קָרְבָה אֶל הַגְּדִי, וְהַקַּרְנַיִם הַקְטַנּוֹת הֵחֵלּוּ לְנַגֵּחַ", + "source": "kid_on_mountain", + "match_method": "conjugated" } ], "cloze": { @@ -582519,15 +585826,15 @@ "examples": { "vetted": [ { - "text": "\" \"אֲנִי אֲסַפֵּר לָהּ,\" אָמַר הַכְּמוֹ־צָב בְּקוֹל עָמֹק וְחָלוּל", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "כְּשֶׁטִּפְּסוּ עָלָיו נִתְבָּרֵר לָהֶם, כִּי הַחֵפֶץ חָלוּל מִבִּפְנִים", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { - "text": "\" \"אֲנִי אֲסַפֵּר לָהּ,\" אָמַר הַכְּמוֹ־צָב בְּקוֹל עָמֹק וְחָלוּל", - "cloze_word_start": 58, - "cloze_word_end": 66, + "text": "כְּשֶׁטִּפְּסוּ עָלָיו נִתְבָּרֵר לָהֶם, כִּי הַחֵפֶץ חָלוּל מִבִּפְנִים", + "cloze_word_start": 54, + "cloze_word_end": 60, "cloze_hint": null, "cloze_guid": "P;@L62OfFj" }, @@ -582851,6 +586158,11 @@ "text": "״ \"זֶה בְּסֵדֶר,״ נִיב חִיֵּךְ, \"הִיא כְּבָר הֶחְלִימָה", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "\"וְכָכָה, בְּרֶגַע אֶחָד הוּא הֶחְלִים מִקַּדַּחַת", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -583592,20 +586904,25 @@ "examples": { "vetted": [ { - "text": "״חֲלוֹמוֹת וּסְרָטִים זֶה אוֹתוֹ דָּבָר,״ עֵדֶן אָמַר", - "source": "time_tunnel_70", + "text": "\" \"אוֹי, חָלַמְתִּי חֲלוֹם מוּזָר כָּל־כָּךְ", + "source": "alice_wonderland", "match_method": "inflected" }, { - "text": "אֲנִי בִּכְלָל לֹא זוֹכֵר חֲלוֹמוֹת", + "text": "הַצָּמָא הֶעֱלָה אֶת חֹם גּוּפִי וְרָאִיתִי אוֹתָם כְּמוֹ מִתּוֹךְ חֲלוֹם", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "״חֲלוֹמוֹת וּסְרָטִים זֶה אוֹתוֹ דָּבָר,״ עֵדֶן אָמַר", "source": "time_tunnel_70", "match_method": "inflected" } ], "cloze": { - "text": "״חֲלוֹמוֹת וּסְרָטִים זֶה אוֹתוֹ דָּבָר,״ עֵדֶן אָמַר", - "cloze_word_start": 1, - "cloze_word_end": 10, + "text": "\" \"אוֹי, חָלַמְתִּי חֲלוֹם מוּזָר כָּל־כָּךְ", + "cloze_word_start": 20, + "cloze_word_end": 26, "cloze_hint": null, "cloze_guid": "s:)57f47,!" }, @@ -585126,7 +588443,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא שָׁמְעָה אֶת חִלּוּפֵי הַדְּבָרִים בֵּינִי לְבֵין אִמָּא, וְרָצְתָה לָדַעַת מִי מָסְרָה לָהּ דְּרִישַׁת שָׁלוֹם", + "source": "time_tunnel_75", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הִיא שָׁמְעָה אֶת חִלּוּפֵי הַדְּבָרִים בֵּינִי לְבֵין אִמָּא, וְרָצְתָה לָדַעַת מִי מָסְרָה לָהּ דְּרִישַׁת שָׁלוֹם", + "cloze_word_start": 18, + "cloze_word_end": 27, + "cloze_hint": null, + "cloze_guid": "y6jST8eCko" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חִלּוּף", @@ -585214,6 +588547,11 @@ "text": "\"אֵלּוּ לֹא אוֹתָם אֲנָשִׁים,\" אָמַר הַפַּקָּח, \"הֵם הִתְחַלְּפוּ", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "אֲפִלּוּ מֶזֶג הָאֲוִיר הִתְחַלֵּף", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -587646,6 +590984,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "בְּשׁוּלֵי חֻלְצַת הַמַּדִּים שֶׁלּוֹ הוּא מָחָה אֶת הַזֵּעָה מִפָּנָיו", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "חֲמִשָּׁה אוֹ שִׁשָּׁה נְעָרִים בְּמַדֵּי צוֹפִים הִכּוּ מִישֶׁהוּ שֶׁלָּבַשׁ חֻלְצָה כְּתֻמָּה", "source": "time_tunnel_70", @@ -587655,17 +590998,12 @@ "text": "אֲנַחְנוּ חֲמִשָּׁה, אַרְבַּע בָּנוֹת וּבֵן, וְכֻלָּנוּ לוֹבְשִׁים חֻלְצוֹת לְבָנוֹת", "source": "time_tunnel_78", "match_method": "inflected" - }, - { - "text": "נֹגַהּ פָּתְחָה דֶּלֶת שֶׁל אָרוֹן וְשָׁלְפָה מִמֶּנּוּ חֻלְצָה וּמִכְנָסַיִם עֲבוּרִי וְשִׂמְלָה עֲבוּר שָׁרוֹן", - "source": "time_tunnel_75", - "match_method": "direct" } ], "cloze": { - "text": "חֲמִשָּׁה אוֹ שִׁשָּׁה נְעָרִים בְּמַדֵּי צוֹפִים הִכּוּ מִישֶׁהוּ שֶׁלָּבַשׁ חֻלְצָה כְּתֻמָּה", - "cloze_word_start": 78, - "cloze_word_end": 85, + "text": "בְּשׁוּלֵי חֻלְצַת הַמַּדִּים שֶׁלּוֹ הוּא מָחָה אֶת הַזֵּעָה מִפָּנָיו", + "cloze_word_start": 11, + "cloze_word_end": 18, "cloze_hint": null, "cloze_guid": "qxfd@eZv=^" }, @@ -587740,7 +591078,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מָתַי הִגִּיעוּ לָאָרֶץ הַחֲלוּצִים הָרִאשׁוֹנִים שֶׁאֲלֵיהֶם שָׁרוֹן מִתְכַּוֶנֶת", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "מָתַי הִגִּיעוּ לָאָרֶץ הַחֲלוּצִים הָרִאשׁוֹנִים שֶׁאֲלֵיהֶם שָׁרוֹן מִתְכַּוֶנֶת", + "cloze_word_start": 24, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "QZhD8P]u85" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חָלוּץ", @@ -589490,6 +592844,11 @@ "text": "״ יְהוּדִית מִלְמְלָה, \"לֹא תֵּאַרְתִּי לְעַצְמִי שֶׁזֶּה יֵלֵךְ כָּל כָּךְ חָלָק", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "כְּשֶׁיָּצָאנוּ הַיָּם הָיָה רָגוּעַ וְנִרְאָה חָלָק כְּמוֹ רְאִי, וּבְבַת אַחַת הַיָּם הִתְחִיל לְהִתְנַהֵג כְּמוֹ מְטֹרָף", + "source": "time_tunnel_77", + "match_method": "direct" } ], "rejected_count": 0 @@ -590483,7 +593842,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"חֲלֻקַּת מָזוֹן,\" הִיא הִכְרִיזָה, \"חֲלֻקַּת מָזוֹן", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\"חֲלֻקַּת מָזוֹן,\" הִיא הִכְרִיזָה, \"חֲלֻקַּת מָזוֹן", + "cloze_word_start": 1, + "cloze_word_end": 9, + "cloze_hint": null, + "cloze_guid": "iu~o;fx!h%" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חֲלֻקָּה", @@ -590995,7 +594370,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְמַרְאֵה הַכָּבוֹד הָרַב שֶׁהַכֹּל חָלְקוּ לוֹ, הֵבִין גּוּלִיבֶר כִּי הָרוֹכֵב הוּא מֶלֶךְ הַלִּילִיפּוּטִים בִּכְבוֹדוֹ וּבְעַצְמוֹ", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "לְמַרְאֵה הַכָּבוֹד הָרַב שֶׁהַכֹּל חָלְקוּ לוֹ, הֵבִין גּוּלִיבֶר כִּי הָרוֹכֵב הוּא מֶלֶךְ הַלִּילִיפּוּטִים בִּכְבוֹדוֹ וּבְעַצְמוֹ", + "cloze_word_start": 36, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "dQGR_i9sfR" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -591429,7 +594820,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"תַּגִּיד, הִתְחַלַּקְתָּ עַל הַשֵּׂכֶל", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"תַּגִּיד, הִתְחַלַּקְתָּ עַל הַשֵּׂכֶל", + "cloze_word_start": 11, + "cloze_word_end": 25, + "cloze_hint": null, + "cloze_guid": "tg.$[OHwR." + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -591867,7 +595274,12 @@ "vetted": [ { "text": "מַחְלֶקֶת הַיֶּשַׁע נִכְנֶסֶת לִצְפַת 22", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", + "match_method": "inflected" + }, + { + "text": "\" הַאִם אֵלֶּה הֵן הַסִּמְטָאוֹת שֶׁבָּהֶן צָעַדְנוּ יַחַד עִם מַחְלֶקֶת הַיֶּשַׁע שֶׁל הַפַּלְמָ\"ח שֶׁהִגִּיעָה לִצְפַת", + "source": "time_tunnel_75", "match_method": "inflected" } ], @@ -592035,7 +595447,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם הֵבִינוּ שֶׁבְּשָׁעָה כָּזוֹ, חִלּוּקֵי דֵּעוֹת פּוֹלִיטִיִּים בִּכְלָל לֹא חֲשׁוּבִים", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "אֵין לִי חִלּוּקֵי דֵּעוֹת אִתָּהּ", + "source": "time_tunnel_82", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הֵם הֵבִינוּ שֶׁבְּשָׁעָה כָּזוֹ, חִלּוּקֵי דֵּעוֹת פּוֹלִיטִיִּים בִּכְלָל לֹא חֲשׁוּבִים", + "cloze_word_start": 34, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "t->mF[NcId" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חִלּוּק", @@ -594204,20 +597637,15 @@ "examples": { "vetted": [ { - "text": "\"לֹא יָשַׁנְתִּי,\" אָמַר בְּקוֹל צָרוּד וְחַלָּשׁ, \"שָׁמַעְתִּי כָּל מִלָּה שֶׁכֻּלְּכֶם אֲמַרְתֶּם", - "source": "alice_wonderland", - "match_method": "direct_prefix" - }, - { - "text": "\" פָּתְחָה הַדֻּכָּסִית בְּקוֹל קָטָן וְחַלָּשׁ", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "לֹא בָּרוּר לִי אֵיךְ אֲנִי מַצְלִיחַ לִשְׁאוֹב כּוֹחַ, הֲרֵי אֲנִי חוֹלֶה וּמַרְגִּישׁ חַלָּשׁ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "\"לֹא יָשַׁנְתִּי,\" אָמַר בְּקוֹל צָרוּד וְחַלָּשׁ, \"שָׁמַעְתִּי כָּל מִלָּה שֶׁכֻּלְּכֶם אֲמַרְתֶּם", - "cloze_word_start": 40, - "cloze_word_end": 49, + "text": "לֹא בָּרוּר לִי אֵיךְ אֲנִי מַצְלִיחַ לִשְׁאוֹב כּוֹחַ, הֲרֵי אֲנִי חוֹלֶה וּמַרְגִּישׁ חַלָּשׁ", + "cloze_word_start": 88, + "cloze_word_end": 95, "cloze_hint": null, "cloze_guid": "w1JVKy&)" }, @@ -650845,8 +654493,8 @@ "match_method": "direct_prefix" }, { - "text": "\" הַתִּינוֹק שָׁב וְנָחַר, וְאַלִיס הִבִּיטָה בַּחֲרָדָה גְּדוֹלָה לְתוֹךְ פָּנָיו כְּדֵי לִרְאוֹת מָה מֵצִיק לוֹ", - "source": "alice_wonderland", + "text": "” נִבְהַל עַמִי וְלִבּוֹ הָלַם בַּחֲרָדָה", + "source": "silkworms", "match_method": "direct_prefix" } ], @@ -650929,7 +654577,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "” שׁוֹאֵל עַמִי; חָרֵד הִנֵהוּ, פֶּן יִפְרְשׂוּ לְפֶתַע אֶת כַּנְפֵיהֶם וְיִמָלְטוּ מִמֶנוּ", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "” שׁוֹאֵל עַמִי; חָרֵד הִנֵהוּ, פֶּן יִפְרְשׂוּ לְפֶתַע אֶת כַּנְפֵיהֶם וְיִמָלְטוּ מִמֶנוּ", + "cloze_word_start": 17, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "zEcYn^(b+<" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -652632,6 +656296,11 @@ "text": "״ ״דָּקְרוּ אוֹתִי בְּסַכִּינִים,״ הוּא חִרְחֵר", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "\"אֲנִי שׂוֹנֵאת יָם,\" הִיא חִרְחֲרָה, \"לֹא הִבְטַחְתֶּם לָנוּ שֶׁהַיָּם יִהְיֶה שָׁקֵט", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -654298,9 +657967,9 @@ "match_method": "direct" }, { - "text": "זֶה הָיָה רֶגַע כָּל כָּךְ מְיָאֵשׁ, עַד שֶׁהוּא אֲפִלּוּ גָּרַם לִי לְהִתְחָרֵט עַל כָּל הָעִנְיָן", - "source": "time_tunnel_silver_train", - "match_method": "direct" + "text": "כָּמוֹנִי, גַּם הִיא הִתְחָרְטָה עַל כָּךְ שֶׁהִיא הִסְכִּימָה לָבוֹא", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -655933,14 +659602,9 @@ "examples": { "vetted": [ { - "text": "בַּמַּצָּב הַזֶּה אֲנִי יָכוֹל לְהַבְחִין בַּחוֹרִים שֶׁנִּפְעֲרוּ בָּהּ", - "source": "time_tunnel_82", - "match_method": "conjugated_prefix" - }, - { - "text": "הַמַּרְאֶה שֶׁל הַחוֹרִים הָאֵלֶּה מֵצִיף אוֹתִי בְּכַעַס, כִּי לִקְרוֹעַ שְׂמִיכָה שֶׁלֹּא שֶׁלְּךָ זוֹ בֶּאֱמֶת חֻצְפָּה", - "source": "time_tunnel_82", - "match_method": "conjugated_prefix" + "text": "יוֹסִי נִקָה אֶת הַצְדָפִים וְנָקַב חוֹרִים בְּאֵלֶה שֶׁלֹא הָיוּ בָּהֶם נְקָבִים", + "source": "shell_story", + "match_method": "conjugated" } ], "rejected_count": 0 @@ -657730,7 +661394,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִבַּעַד לַחֲרַכֵּי הַתְּרִיס, בְּאוֹרוֹ שֶׁל הַיָּרֵחַ, נִרְאָה זַלְמָן", + "source": "time_tunnel_75", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "מִבַּעַד לַחֲרַכֵּי הַתְּרִיס, בְּאוֹרוֹ שֶׁל הַיָּרֵחַ, נִרְאָה זַלְמָן", + "cloze_word_start": 9, + "cloze_word_end": 19, + "cloze_hint": null, + "cloze_guid": "P~qGeGE&Y:" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חָרָךְ", @@ -659682,7 +663362,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּימֵי הַחֹרֶף הֵם בֶּטַח נִפְגְּשׁוּ בַּבָּתִּים, אוֹ בַּמַּתְנָ\"ס אוֹ", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "בִּימֵי הַחֹרֶף הֵם בֶּטַח נִפְגְּשׁוּ בַּבָּתִּים, אוֹ בַּמַּתְנָ\"ס אוֹ", + "cloze_word_start": 8, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "c$Zsmi0*Ve" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חֹרֶף", @@ -660244,7 +663940,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גּוּלִיבֶר פָּתַח אוֹתָהּ בְּקַלּוּת וְרֵיחַ הַטַּבָּק הֶחָרִיף עָלָה בִּנְחִירֵי הַנַּנָּסִים", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "גּוּלִיבֶר פָּתַח אוֹתָהּ בְּקַלּוּת וְרֵיחַ הַטַּבָּק הֶחָרִיף עָלָה בִּנְחִירֵי הַנַּנָּסִים", + "cloze_word_start": 55, + "cloze_word_end": 63, + "cloze_hint": null, + "cloze_guid": "n+jpG&;*I1" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -660819,15 +664531,25 @@ "examples": { "vetted": [ { - "text": "כַּנִּרְאֶה הַחֹם הַנּוֹרָא שִׁבֵּשׁ אֶת דַּעְתְּךָ וְהִתְחַרְפַנְתָּ", - "source": "time_tunnel_63", - "match_method": "conjugated_prefix" + "text": "\"אִם לֹא תָּבוֹא,\" הִיא אָמְרָה לִי, \"אֲנִי אֶתְחַרְפֵן לְגַמְרֵי", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "\" אָז בָּאתִי, כִּי לֹא הָיִיתִי מְסֻגָּל לִגְרוֹם לְכָךְ שֶׁשָּׁרוֹן תִּתְחַרְפֵן", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״ נִרְאֶה כְּאִלּוּ אָדוֹן קְרָאוּזֶה הִתְחַרְפֵן לְגַמְרֵי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "כַּנִּרְאֶה הַחֹם הַנּוֹרָא שִׁבֵּשׁ אֶת דַּעְתְּךָ וְהִתְחַרְפַנְתָּ", - "cloze_word_start": 52, - "cloze_word_end": 69, + "text": "\"אִם לֹא תָּבוֹא,\" הִיא אָמְרָה לִי, \"אֲנִי אֶתְחַרְפֵן לְגַמְרֵי", + "cloze_word_start": 44, + "cloze_word_end": 55, "cloze_hint": null, "cloze_guid": "lRZGn={eW;" }, @@ -662297,7 +666019,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ קוֹלוֹ שֶׁל אָדוֹן קְרָאוּזֶה כְּבָר חוֹרֵק מֵרֹב צְעָקוֹת, \"עָיֵף", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "״ קוֹלוֹ שֶׁל אָדוֹן קְרָאוּזֶה כְּבָר חוֹרֵק מֵרֹב צְעָקוֹת, \"עָיֵף", + "cloze_word_start": 39, + "cloze_word_end": 45, + "cloze_hint": null, + "cloze_guid": "f>[[YFVI?q" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -663677,7 +667415,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "צְמַרְמֹרֶת חוֹרֶשֶׁת אֶת כָּל גּוּפִי", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "צְמַרְמֹרֶת חוֹרֶשֶׁת אֶת כָּל גּוּפִי", + "cloze_word_start": 12, + "cloze_word_end": 21, + "cloze_hint": null, + "cloze_guid": "MXYC&|R1R?" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -664105,7 +667859,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִסְכְּנָה הָיְתָה וּדְווּיָה, וְהָיוּ הָעֲבָדִים מַכִּים אוֹתָהּ וּמַעֲלִיבִים אוֹתָהּ וְהִיא מַחֲרִישָׁה", + "source": "tree_dress", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "מִסְכְּנָה הָיְתָה וּדְווּיָה, וְהָיוּ הָעֲבָדִים מַכִּים אוֹתָהּ וּמַעֲלִיבִים אוֹתָהּ וְהִיא מַחֲרִישָׁה", + "cloze_word_start": 95, + "cloze_word_end": 106, + "cloze_hint": null, + "cloze_guid": "cNxZAn2!im" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -669595,16 +673365,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הַמָּקוֹם נֶחְשָׁב לַאֲתַר מוֹרֶשֶׁת לְאֻמִּית, כִּי הוּא אֲתָר אַרְכֵאוֹלוֹגִי", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "לָמַדְתִּי שֶׁבְּאֵר־טוּבְיָה נֶחְשְׁבָה לְמוֹשָׁב, וְזֶה לַמְרוֹת שֶׁכַּאֲשֶׁר הַמָּקוֹם הוּקַם בַּפַּעַם הָרִאשׁוֹנָה הוּא הָיָה מוֹשָׁבָה", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "לְגַבֵּי חוֹבְבֵי הַסּוּסִים הָאֲצִילִים (אֵלִיָּהוּ קְרָאוּזֶה נִרְאָה אֶחָד מֵהֶם) הֵן אֲפִלּוּ לֹא נֶחְשָׁבוֹת כִּקְרוֹבוֹת מִשְׁפָּחָה", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "לָמַדְתִּי שֶׁבְּאֵר־טוּבְיָה נֶחְשְׁבָה לְמוֹשָׁב, וְזֶה לַמְרוֹת שֶׁכַּאֲשֶׁר הַמָּקוֹם הוּקַם בַּפַּעַם הָרִאשׁוֹנָה הוּא הָיָה מוֹשָׁבָה", - "cloze_word_start": 30, - "cloze_word_end": 40, + "text": "הַמָּקוֹם נֶחְשָׁב לַאֲתַר מוֹרֶשֶׁת לְאֻמִּית, כִּי הוּא אֲתָר אַרְכֵאוֹלוֹגִי", + "cloze_word_start": 10, + "cloze_word_end": 18, "cloze_hint": null, "cloze_guid": "J~u;d[{=qX" }, @@ -670817,6 +674597,11 @@ "text": "הוּא הִתְיַחֵס בִּרְצִינוּת לִדְבָרִים חַסְרֵי חֲשִׁיבוּת שֶׁאָמְרָה, וְהָיָה אֻמְלָל מְאוֹד", "source": "little_prince", "match_method": "direct" + }, + { + "text": "רַק לִפְנֵי שְׁנִיּוֹת הִיא נִרְאֲתָה מְלֵאַת חֲשִׁיבוּת, וּפִתְאוֹם הִשְׁתַּלְּטָה עָלֶיהָ מְבוּכָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -673540,13 +677325,13 @@ "match_method": "inflected" }, { - "text": "לֹא רָצִיתִי לְעוֹרֵר חֲשָׁד מְיֻתָּר", - "source": "time_tunnel_70", + "text": "אֲנִי הַיּוֹדֵעַ שֶׁאָסוּר לָנוּ לְעוֹרֵר חֲשָׁד", + "source": "time_tunnel_76", "match_method": "direct" }, { - "text": " פֶּרֶק א שֶׁבּוֹ מִתְעוֹרֵר חֲשָׁד שֶׁמִּישֶׁהוּ בִּקֵּר בַּמִּנְהָרָה שֶׁלָּנוּ גְּלַשְׁתֶּם פַּעַם בְּמַגְלֵשַׁת מַיִם", - "source": "time_tunnel_63", + "text": "לֹא רָצִיתִי לְעוֹרֵר חֲשָׁד מְיֻתָּר", + "source": "time_tunnel_70", "match_method": "direct" } ], @@ -674243,7 +678028,16 @@ "לַחְשֹׂךְ" ], "confusables_guid": "E?uKUi,*>S", - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁרוֹן וַאֲנִי שְׁרוּיִים בַּחֲשֵׁכָה מֻחְלֶטֶת, וְהָאֶפְשָׁרוּת לְהַדְלִיק נֵר מִתְבַּטֶּלֶת מִיָּד", + "source": "time_tunnel_81", + "match_method": "conjugated_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -677745,7 +681539,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְחוּץ מִזֶּה לָאֲנָשִׁים הָאֵלֶּה שֶׁנִּשְׁבְּעוּ שָׁם לֹא הָיָה חַשְׁמַל וְלֹא הָיוּ פָּנָסִים", + "source": "time_tunnel_81", + "match_method": "inflected" + } + ], + "cloze": { + "text": "וְחוּץ מִזֶּה לָאֲנָשִׁים הָאֵלֶּה שֶׁנִּשְׁבְּעוּ שָׁם לֹא הָיָה חַשְׁמַל וְלֹא הָיוּ פָּנָסִים", + "cloze_word_start": 66, + "cloze_word_end": 74, + "cloze_hint": null, + "cloze_guid": "y8{`hQ^g$R" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חַשְׁמָל", @@ -679095,7 +682905,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שִׁעַרְתִּי שֶׁכַּאֲשֶׁר הָרַגְלַיִם שֶׁלָּנוּ יִגְּעוּ בַּקַּרְקַע, נִמְצָא אֶת עַצְמֵנוּ בְּעִצּוּמָהּ שֶׁל מִלְחָמָה וְנֵחָשֵׂף לְמַרְאוֹת קָשִׁים", + "source": "time_tunnel_76", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "שִׁעַרְתִּי שֶׁכַּאֲשֶׁר הָרַגְלַיִם שֶׁלָּנוּ יִגְּעוּ בַּקַּרְקַע, נִמְצָא אֶת עַצְמֵנוּ בְּעִצּוּמָהּ שֶׁל מִלְחָמָה וְנֵחָשֵׂף לְמַרְאוֹת קָשִׁים", + "cloze_word_start": 120, + "cloze_word_end": 130, + "cloze_hint": null, + "cloze_guid": "knPzjpQ4u>" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -680405,7 +684231,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִסְכַּמְתִּי, אֲפִלּוּ שֶׁלָּלֶכֶת לַמְּעָרָה לֹא הָיָה לִי חֵשֶׁק", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הִסְכַּמְתִּי, אֲפִלּוּ שֶׁלָּלֶכֶת לַמְּעָרָה לֹא הָיָה לִי חֵשֶׁק", + "cloze_word_start": 61, + "cloze_word_end": 67, + "cloze_hint": null, + "cloze_guid": "mO~4(_DWKw" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "חֵשֶׁק", @@ -682578,25 +686420,20 @@ "examples": { "vetted": [ { - "text": "אַלִיס נִגְּשָׁה בַּחֲשָׁשׁ אֶל הַדֶּלֶת, וְדָפְקָה", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "“לֹא, אַל חֲשָׁשׁ”, צָחַק אַבָּא, “מַתְחִילָה תְּקוּפַת הַהִתְגַלְמוּת שֶׁלָהֶן”", + "source": "silkworms", + "match_method": "direct" }, { - "text": "אֲנַחְנוּ מַתְחִילִים לְהִתְרַחֵק, וַאֲנִי מַרְגִּישׁ שֶׁשִּׂמְחַת הַשִּׁחְרוּר שֶׁלִּי מֵהַחֲבָלִים מִתְעַרְבֶּבֶת בַּחֲשָׁשׁ", - "source": "time_tunnel_82", - "match_method": "direct_prefix" - }, - { - "text": "וּבְכָל זֹאת, הַחֲשָׁשׁ שֶׁלִּי אוֹטוֹמָטִי", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "״ מַנְיָה מַסְתִּירָה אֶת פִּיהָ בְּיָדָהּ, אוּלַי מִתּוֹךְ חֲשָׁשׁ שֶׁלֹּא תּוּכַל לַעֲצוֹר חִיּוּךְ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "אַלִיס נִגְּשָׁה בַּחֲשָׁשׁ אֶל הַדֶּלֶת, וְדָפְקָה", - "cloze_word_start": 17, - "cloze_word_end": 27, + "text": "“לֹא, אַל חֲשָׁשׁ”, צָחַק אַבָּא, “מַתְחִילָה תְּקוּפַת הַהִתְגַלְמוּת שֶׁלָהֶן”", + "cloze_word_start": 10, + "cloze_word_end": 17, "cloze_hint": null, "cloze_guid": "f52Kd[b[Dl" }, @@ -682874,6 +686711,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" הוּא צָעַק אֶל נוּרִיתִי, \"תַּחְתְּכִי אוֹתָם", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, { "text": "אִם הֵבֵאתָ עוּגָה, הַבּוֹדֵק חָתַךְ אוֹתָהּ לִפְרוּסוֹת, כְּדֵי לְוַדֵּא שֶׁלֹּא הֻסְתַּר שׁוּם דָּבָר בְּתוֹכָהּ", "source": "time_tunnel_silver_train", @@ -682886,9 +686728,9 @@ } ], "cloze": { - "text": "אִם הֵבֵאתָ עוּגָה, הַבּוֹדֵק חָתַךְ אוֹתָהּ לִפְרוּסוֹת, כְּדֵי לְוַדֵּא שֶׁלֹּא הֻסְתַּר שׁוּם דָּבָר בְּתוֹכָהּ", - "cloze_word_start": 30, - "cloze_word_end": 36, + "text": "\" הוּא צָעַק אֶל נוּרִיתִי, \"תַּחְתְּכִי אוֹתָם", + "cloze_word_start": 29, + "cloze_word_end": 40, "cloze_hint": null, "cloze_guid": "P38tjx~uLG" }, @@ -686764,7 +690606,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַפְּקֻדָּה נֶחְתְּמָה בְּחוֹתֶמֶת הַמֶּלֶךְ בַּיּוֹם הַשְּׁנֵים־עָשָׂר לַחֹדֶשׁ הַתִּשְׁעִים וּשְׁנַיִם לְמַלְכוּתֵנוּ", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַפְּקֻדָּה נֶחְתְּמָה בְּחוֹתֶמֶת הַמֶּלֶךְ בַּיּוֹם הַשְּׁנֵים־עָשָׂר לַחֹדֶשׁ הַתִּשְׁעִים וּשְׁנַיִם לְמַלְכוּתֵנוּ", + "cloze_word_start": 12, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "Cr3V7(c70a" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -687714,9 +691572,9 @@ "match_method": "direct" }, { - "text": "הֲרֵי זוֹ הַמַּשְׁמָעוּת שֶׁל חֲתֻנָּה", + "text": "\"זֶה בְּדִיּוּק הַפִּתְרוֹן לַמִּשְׁפָּט הָרִאשׁוֹן בִּכְתַב הַחִידָה: 'חֲתֻנַּת הַמֶּלֶךְ וְהַמַּלְכָּה הֵבִיאָה לְאִחוּד'", "source": "time_tunnel_78", - "match_method": "direct" + "match_method": "inflected" } ], "cloze": { @@ -691075,8 +694933,8 @@ "match_method": "direct_prefix" }, { - "text": "מֵהַמַּרְתֵּף שֶׁל הַבַּיִת בָּקַע בֶּכִי שֶׁל תִּינוֹק, וּמֵחַלּוֹן הַמִּטְבָּח עָלוּ רֵיחוֹת שֶׁל בִּשּׁוּלִים", - "source": "time_tunnel_75", + "text": "הִיא עוֹמֶדֶת בַּמָּקוֹם שֶׁבּוֹ כַּנִּרְאֶה הָיָה הַמִּטְבָּח", + "source": "time_tunnel_77", "match_method": "direct_prefix" } ], @@ -692494,7 +696352,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "” וְאָמְנָם, לֹא הִטְבִּילוּ אוֹתָן", + "source": "silkworms", + "match_method": "conjugated" + }, + { + "text": "’ אַחַר־כָּךְ הִקְדִיר פָּנָיו וְאָמַר: “לֹא אַרְשֶׁה כִּי יַטְבִּילוּ אֶת הַפְּקָעוֹת שֶׁלִּי בְּמַיִם רוֹתְחִים", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "” וְאָמְנָם, לֹא הִטְבִּילוּ אוֹתָן", + "cloze_word_start": 17, + "cloze_word_end": 28, + "cloze_hint": null, + "cloze_guid": "iaw" + "cloze_guid": "HPDSJd1;Za" }, "rejected_count": 0 }, @@ -702128,7 +706012,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאַבָּא הִסְבִּיר: “לְאַחַר שֶׁטוֹבְלִים פְּקַעַת בְּמַיִם רוֹתְחִים מֵת הַגֹלֶם, וְאָז טוֹוִים אֶת חוּטֵי הַמֶשִׁי", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וְאַבָּא הִסְבִּיר: “לְאַחַר שֶׁטוֹבְלִים פְּקַעַת בְּמַיִם רוֹתְחִים מֵת הַגֹלֶם, וְאָז טוֹוִים אֶת חוּטֵי הַמֶשִׁי", + "cloze_word_start": 89, + "cloze_word_end": 96, + "cloze_hint": null, + "cloze_guid": "la{K3-a__d" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -703344,6 +707244,16 @@ "text": "מִשּׁוּם כָּךְ הָיִיתִי חַיָּב לִמְצֹא לְעַצְמִי מִקְצוֹעַ אַחֵר, אָז לָמַדְתִּי לְהָטִיס מְטוֹסִים", "source": "little_prince", "match_method": "direct" + }, + { + "text": "\"כְּשֶׁהָיִיתִי טַיָּס צָעִיר בְּחֵיל הָאֲוִיר, הֵטַסְתִּי מָטוֹס כָּזֶה", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "הוּא הֵטִיס צַנְחָנִים לְסִינַי בְּדָקוֹטָה", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -704089,9 +707999,14 @@ "match_method": "direct" }, { - "text": "טַסְתִּי כִּמְעַט בְּכָל הָעוֹלָם", - "source": "little_prince", - "match_method": "conjugated" + "text": "\"הֵם מְסֻגָּלִים לְהַחְזִיר אוֹתְךָ לָטוּס בַּמָּטוֹס הַזֶּה—\" הוּא מַצְבִּיעַ עַל הַדָּקוֹטָה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "תַּסְבִּירוּ לָהּ שֶׁיֵּשׁ פֹּה טַיָּס לְשֶׁעָבַר שֶׁל דָקוֹטָה, שֶׁמָּה־זֶה מִתְגַּעְגֵּעַ לָטוּס וְ", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -704532,6 +708447,16 @@ "text": "מִשּׁוּם כָּךְ הָיִיתִי חַיָּב לִמְצֹא לְעַצְמִי מִקְצוֹעַ אַחֵר, אָז לָמַדְתִּי לְהָטִיס מְטוֹסִים", "source": "little_prince", "match_method": "inflected" + }, + { + "text": "\"כְּשֶׁהָיִיתִי טַיָּס צָעִיר בְּחֵיל הָאֲוִיר, הֵטַסְתִּי מָטוֹס כָּזֶה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הוּא טָס מֵעָלֵינוּ, אֲבָל לֹא הָלַךְ וְהִתְרַחֵק כְּמוֹ מָטוֹס חוֹלֵף", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -704610,7 +708535,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"וְאִם אֲנִי אוֹכִיחַ לְךָ שֶׁהַמָּטוֹס יָכוֹל לַחְזוֹר לִהְיוֹת כָּשִׁיר לְטִיסָה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "נִדְמֶה לִי שֶׁהֵם מַזְכִּירִים זֶה לָזֶה כָּל מִינֵי אֵרוּעִים שֶׁקָּרוּ לָהֶם בְּמַהֲלַךְ הַטִּיסוֹת", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + }, + { + "text": "בֶּן דּוֹד שֶׁלִּי דּוֹר עָמַד לִנְסוֹעַ לְהוֹדוּ וְלִפְנֵי הַטִּיסָה הוּא בָּא לְבַקֵּר אוֹתָנוּ", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "\" \"וְאִם אֲנִי אוֹכִיחַ לְךָ שֶׁהַמָּטוֹס יָכוֹל לַחְזוֹר לִהְיוֹת כָּשִׁיר לְטִיסָה", + "cloze_word_start": 76, + "cloze_word_end": 84, + "cloze_hint": null, + "cloze_guid": "MQ>BP}4,V?" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "טִיסָה", @@ -708133,15 +712084,25 @@ "examples": { "vetted": [ { - "text": "אֲנָשִׁים שֶׁחָבְשׁוּ כּוֹבָעִים הֵסִירוּ אוֹתָם וְנוֹפְפוּ בָּהֶם לַטַּיָּס", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "\"כְּשֶׁהָיִיתִי טַיָּס צָעִיר בְּחֵיל הָאֲוִיר, הֵטַסְתִּי מָטוֹס כָּזֶה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "תַּסְבִּירוּ לָהּ שֶׁיֵּשׁ פֹּה טַיָּס לְשֶׁעָבַר שֶׁל דָקוֹטָה, שֶׁמָּה־זֶה מִתְגַּעְגֵּעַ לָטוּס וְ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הוּא לָבַשׁ סַרְבָּל שֶׁל טַיָּסִים וְלָכֵן הוּא נִרְאָה קְצָת מְגֻשָּׁם", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { - "text": "אֲנָשִׁים שֶׁחָבְשׁוּ כּוֹבָעִים הֵסִירוּ אוֹתָם וְנוֹפְפוּ בָּהֶם לַטַּיָּס", - "cloze_word_start": 67, - "cloze_word_end": 76, + "text": "\"כְּשֶׁהָיִיתִי טַיָּס צָעִיר בְּחֵיל הָאֲוִיר, הֵטַסְתִּי מָטוֹס כָּזֶה", + "cloze_word_start": 16, + "cloze_word_end": 22, "cloze_hint": null, "cloze_guid": "z)j!Hwp,_3" }, @@ -720641,6 +724602,11 @@ "text": "וְשׁוּב הִתְלַבֵּט: \"עָשִׂיתָ טָעוּת שֶׁבָּאתָ, זֶה מְאוֹד יְצַעֵר אוֹתְךָ", "source": "little_prince", "match_method": "direct" + }, + { + "text": "זוֹ הָיְתָה טָעוּת אֲיֻמָּה לַעֲצוֹר", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -721915,7 +725881,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָאֹכֶל הָיָה דַּוְקָא טָעִים, וְהַבְּרִיטִים הִשְׁתַּדְּלוּ לִהְיוֹת נֶחְמָדִים", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "אֲנִי מַרְגִּישׁ שֶׁזֶּה הַתֵּה הֲכִי טָעִים שֶׁשָּׁתִיתִי בַּחַיִּים", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הָאֹכֶל הָיָה דַּוְקָא טָעִים, וְהַבְּרִיטִים הִשְׁתַּדְּלוּ לִהְיוֹת נֶחְמָדִים", + "cloze_word_start": 23, + "cloze_word_end": 29, + "cloze_hint": null, + "cloze_guid": "Me91{`A|mF" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -723420,7 +727407,16 @@ "מַטְעֵן" ], "confusables_guid": "vCLgnc%l^Y", - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִיָּד אַחֲרֵי שֶׁאִיז'וֹ הַטַּיָּס הִתְיַשֵּׁב בְּתָא הַטַּיָּס, הִצְטָרְפוּ אֵלָיו שְׁלוֹשָׁה גְּבָרִים נוֹסָפִים וְהִתְיַשְּׁבוּ בְּתָא הַמִּטְעָן", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִטְעָן", @@ -723635,7 +727631,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִשֶּׁהֻשְׁלְמָה מְלֶאכֶת הַטְּעִינָה, עָרַךְ הַמֶּלֶךְ לִכְבוֹדוֹ מְסִבַּת־פְּרֵדָה", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "מִשֶּׁהֻשְׁלְמָה מְלֶאכֶת הַטְּעִינָה, עָרַךְ הַמֶּלֶךְ לִכְבוֹדוֹ מְסִבַּת־פְּרֵדָה", + "cloze_word_start": 26, + "cloze_word_end": 37, + "cloze_hint": null, + "cloze_guid": "Hh^a|(j5NF" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "טְעִינָה", @@ -725028,7 +729040,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"שְׁמוֹר עַל עַצְמְךָ, חָבֵר,\" הוּא טוֹפֵחַ עַל כְּתֵפִי, \"שָׂמַחְתִּי לְהַכִּיר אוֹתְךָ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"שְׁמוֹר עַל עַצְמְךָ, חָבֵר,\" הוּא טוֹפֵחַ עַל כְּתֵפִי, \"שָׂמַחְתִּי לְהַכִּיר אוֹתְךָ", + "cloze_word_start": 36, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "lh<^A<8_%_" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -725460,6 +729488,16 @@ "text": "אִכָּרִים לָמְדוּ מִמֶּנָּה אֵיךְ לְטַפֵּחַ אֶת הַפָּרוֹת בָּרְפָתוֹת", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "לָמָּה לַעֲקוֹר אֶת הָעֵצִים הַמְּלַבְלְבִים מֵהַגִּנּוֹת שֶׁאֲנַחְנוּ טִפַּחְנוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -726422,8 +730460,8 @@ "match_method": "inflected_prefix" }, { - "text": "גַּם שְׂעָרָהּ הָיָה עָטוּף בְּמִטְפַּחַת", - "source": "time_tunnel_75", + "text": "רֹאשָׁהּ הָיָה עָטוּף בְּמִטְפַּחַת וְהִיא נִרְאֲתָה רָזָה כְּמוֹ שֶׁלֶד", + "source": "time_tunnel_76", "match_method": "direct_prefix" } ], @@ -727382,7 +731420,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵבֵאתִי אֶתְכֶם לְמֶסְחָה, וַאֲנִי יָכוֹל פָּשׁוּט לְהַשְׁאִיר אֶתְכֶם כָּאן לְטִפּוּל שֶׁל אַנְשֵׁי הַמָּקוֹם", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הֵבֵאתִי אֶתְכֶם לְמֶסְחָה, וַאֲנִי יָכוֹל פָּשׁוּט לְהַשְׁאִיר אֶתְכֶם כָּאן לְטִפּוּל שֶׁל אַנְשֵׁי הַמָּקוֹם", + "cloze_word_start": 78, + "cloze_word_end": 87, + "cloze_hint": null, + "cloze_guid": "uu|;*]@m{{" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "טִפּוּל", @@ -730357,6 +734411,16 @@ "text": "\" \"אֲפִלּוּ לֹא טִפָּה,\" אָמַר הַזַּחַל", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "אֲבָל הוּא הוֹסִיף בְּלִי טִפַּת רַחֲמִים: \"אַתָּה מְעַרְבֵּב הַכֹּל", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { @@ -730874,14 +734938,14 @@ "match_method": "conjugated" }, { - "text": "\" \"אֲנִי מִצְטַעֶרֶת נוֹרָא שֶׁהָיִית כֹּה מֻטְרֶדֶת,\" אָמְרָה אַלִיס, שֶׁהִתְחִילָה לְהָבִין אֶת כַּוָּנָתָהּ", - "source": "alice_wonderland", + "text": "אֲבָל הָאוֹרוֹת הִטְרִידוּ אוֹתִי יוֹתֵר וְיוֹתֵר", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "אַתָּה נִרְאֶה כְּאִלּוּ זֶה לֹא מַטְרִיד אוֹתְךָ שֶׁיְּלָדִים זָרִים הִשְׁתַּלְּטוּ לָנוּ עַל הַמְּעָרָה", - "source": "time_tunnel_82", - "match_method": "conjugated" + "text": "בָּרוּר שֶׁלֹּא נָעִים לִי לְהַטְרִיד אֶת הַצָּבָא", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -734224,6 +738288,11 @@ "text": "״ קַרְנִי דָּחֲפָה מַשֶּׁהוּ לְתוֹךְ הַמַּרְתֵּף וַאֲנִי הֵרַחְתִּי רֵיחַ שֶׁל לֶחֶם טָרִי", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "נִרְאֶה שֶׁהִרְגִישׁוּ בְּחוּשׁ, כִּי מָזוֹן טָרִי יוֹתֵר הוּבָא לָהֶן", + "source": "silkworms", + "match_method": "direct" } ], "cloze": { @@ -734961,8 +739030,8 @@ "match_method": "conjugated" }, { - "text": "\" וְלִפְעָמִים, \"עֲטַלֵּפִים טוֹרְפִים חֲתוּלִים", - "source": "alice_wonderland", + "text": "וְהִיא נִלְחֲמָה עִם הַזְּאֵב כָּל הַלַּיְלָה… וּכְאוֹר הַבֺּקֶר טָרַף אוֹתָהּ הַזְּאֵב", + "source": "kid_on_mountain", "match_method": "conjugated" } ], @@ -735917,6 +739986,11 @@ "text": "\" אַלִיס לֹא חָשְׁבָה שֶׁזֹּאת הוֹכָחָה בִּכְלָל; עִם זֹאת, הִמְשִׁיכָה: \"וְאֵיךְ אַתָּה יוֹדֵעַ שֶׁאַתָּה מְטֹרָף", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "כְּשֶׁיָּצָאנוּ הַיָּם הָיָה רָגוּעַ וְנִרְאָה חָלָק כְּמוֹ רְאִי, וּבְבַת אַחַת הַיָּם הִתְחִיל לְהִתְנַהֵג כְּמוֹ מְטֹרָף", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -735990,7 +740064,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יֵשׁ פֹּה גִּנּוֹת יָפוֹת, יֵשׁ פֹּה עֲצֵי פְּרִי וַעֲנָבִים מַטְרִיפִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "יֵשׁ פֹּה גִּנּוֹת יָפוֹת, יֵשׁ פֹּה עֲצֵי פְּרִי וַעֲנָבִים מַטְרִיפִים", + "cloze_word_start": 61, + "cloze_word_end": 72, + "cloze_hint": null, + "cloze_guid": "CHL%pmzaZ^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -741545,6 +745635,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"אֲנִי בֶּאֱמֶת לֹא יוֹדֵעַ,\" אֲנִי מַרְגִּישׁ מְיֹאָשׁ", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "״ הִרְגַּשְׁתִּי מַמָּשׁ מְיֹאָשׁ", "source": "time_tunnel_63", @@ -741552,9 +745647,9 @@ } ], "cloze": { - "text": "״ הִרְגַּשְׁתִּי מַמָּשׁ מְיֹאָשׁ", - "cloze_word_start": 25, - "cloze_word_end": 33, + "text": "\" \"אֲנִי בֶּאֱמֶת לֹא יוֹדֵעַ,\" אֲנִי מַרְגִּישׁ מְיֹאָשׁ", + "cloze_word_start": 49, + "cloze_word_end": 57, "cloze_hint": null, "cloze_guid": "KJVB82EO$e" }, @@ -745220,7 +749315,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא נִרְאֶה כְּמוֹ אֵיזוֹ יַבֶּלֶת שֶׁמִּתְרוֹמֶמֶת מִתּוֹךְ הַמִּישׁוֹר", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הוּא נִרְאֶה כְּמוֹ אֵיזוֹ יַבֶּלֶת שֶׁמִּתְרוֹמֶמֶת מִתּוֹךְ הַמִּישׁוֹר", + "cloze_word_start": 27, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "FLO5zl7mtX" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יַבֶּלֶת", @@ -746353,6 +750464,11 @@ "text": "\"אַתָּה לֹא יָכוֹל לְהִתְיַבֵּשׁ, כִּי עֲדַיִן בִּכְלָל לֹא נוֹלַדְתָּ,״ הִיא הִזְכִּירָה לִי", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "הַמּוֹחוֹת שֶׁלָּכֶם בֶּאֱמֶת הִתְיַבְּשׁוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -747247,7 +751363,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְלִפְעָמִים הָיוּ תּוֹלִים עָלֶיהָ לְיִבּוּשׁ קְדֵרוֹת אוֹ מַחֲבַתּוֹת", + "source": "tree_dress", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "וְלִפְעָמִים הָיוּ תּוֹלִים עָלֶיהָ לְיִבּוּשׁ קְדֵרוֹת אוֹ מַחֲבַתּוֹת", + "cloze_word_start": 36, + "cloze_word_end": 46, + "cloze_hint": null, + "cloze_guid": "Na^`wmP#g_" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יִבּוּשׁ", @@ -747475,7 +751607,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְבַסּוֹף עָלָה עַל הַיַּבָּשָׁה וְצָנַח מֵרֹב עֲיֵפוּת אַרְצָה, הִנִּיחַ אֶת יָדָיו לִמְרַאֲשׁוֹתָיו וְנִרְדַּם תַּרְדֵּמָה עֲמֻקָּה", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "לְבַסּוֹף עָלָה עַל הַיַּבָּשָׁה וְצָנַח מֵרֹב עֲיֵפוּת אַרְצָה, הִנִּיחַ אֶת יָדָיו לִמְרַאֲשׁוֹתָיו וְנִרְדַּם תַּרְדֵּמָה עֲמֻקָּה", + "cloze_word_start": 20, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "q.f/[n%btx" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יַבָּשָׁה", @@ -751329,6 +755477,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "נוֹצְרוּ יַחֲסֵי יְדִידוּת בֵּין עֲרָבִים לִיהוּדִים, וּמָה לַעֲשׂוֹת כְּשֶׁהַתְּנָאִים בַּצַּד הַשֵּׁנִי מִשְׁתַּנִּים", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "דַּוְקָא בְּאֵר־טוּבְיָה, שֶׁהָרוֹפֵא הַיְּהוּדִי שֶׁלָּהּ טִפֵּל גַּם בַּעֲרָבִים וְגַם בִּיהוּדִים וְנִסָּה לִבְנוֹת יַחֲסֵי יְדִידוּת", "source": "time_tunnel_70", @@ -751336,9 +755489,9 @@ } ], "cloze": { - "text": "דַּוְקָא בְּאֵר־טוּבְיָה, שֶׁהָרוֹפֵא הַיְּהוּדִי שֶׁלָּהּ טִפֵּל גַּם בַּעֲרָבִים וְגַם בִּיהוּדִים וְנִסָּה לִבְנוֹת יַחֲסֵי יְדִידוּת", - "cloze_word_start": 127, - "cloze_word_end": 136, + "text": "נוֹצְרוּ יַחֲסֵי יְדִידוּת בֵּין עֲרָבִים לִיהוּדִים, וּמָה לַעֲשׂוֹת כְּשֶׁהַתְּנָאִים בַּצַּד הַשֵּׁנִי מִשְׁתַּנִּים", + "cloze_word_start": 17, + "cloze_word_end": 26, "cloze_hint": null, "cloze_guid": "CKDqm@CCWU" }, @@ -752902,7 +757055,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֲמוֹנִים־הֲמוֹנִים הִתְרוֹצְצוּ הַנַּנָּסִים סָבִיב, הִסְתַּכְּלוּ בּוֹ מִכָּל עֵבֶר וְיִדּוּ בּוֹ אֲבָנִים בְּתַחֲרֻיּוֹת קְלִיעָה", + "source": "gulliver", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "הֲמוֹנִים־הֲמוֹנִים הִתְרוֹצְצוּ הַנַּנָּסִים סָבִיב, הִסְתַּכְּלוּ בּוֹ מִכָּל עֵבֶר וְיִדּוּ בּוֹ אֲבָנִים בְּתַחֲרֻיּוֹת קְלִיעָה", + "cloze_word_start": 86, + "cloze_word_end": 94, + "cloze_hint": null, + "cloze_guid": "wn]^cO5~eo" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -753644,7 +757813,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מוֹדָעָה קְרוּעָה מַכְרִיזָה שֶׁחוּג קָרָאטֶה לְמַתְחִילִים עוֹמֵד לְהִפָּתַח", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "מוֹדָעָה קְרוּעָה מַכְרִיזָה שֶׁחוּג קָרָאטֶה לְמַתְחִילִים עוֹמֵד לְהִפָּתַח", + "cloze_word_start": 0, + "cloze_word_end": 8, + "cloze_hint": null, + "cloze_guid": "pwchD2RIQ}" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מוֹדָעָה", @@ -755704,6 +759889,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הֵן פּוֹעֲלוֹת עַל דַּעַת עַצְמָן, כְּאִלּוּ אֵין לִי כָּל שְׁלִיטָה עֲלֵיהֶן", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "כָּךְ לָמַדְתִּי לִקְרוֹא בְּגִיל צָעִיר מְאֹד (וְגַם הִפְנַמְתִּי מִבְּלִי דַּעַת אֶת כְּלָלֵי הַנִּקּוּד וְהַדִּקְדּוּק)", "source": "alice_wonderland", @@ -755711,9 +759901,9 @@ } ], "cloze": { - "text": "כָּךְ לָמַדְתִּי לִקְרוֹא בְּגִיל צָעִיר מְאֹד (וְגַם הִפְנַמְתִּי מִבְּלִי דַּעַת אֶת כְּלָלֵי הַנִּקּוּד וְהַדִּקְדּוּק)", - "cloze_word_start": 76, - "cloze_word_end": 82, + "text": "הֵן פּוֹעֲלוֹת עַל דַּעַת עַצְמָן, כְּאִלּוּ אֵין לִי כָּל שְׁלִיטָה עֲלֵיהֶן", + "cloze_word_start": 19, + "cloze_word_end": 25, "cloze_hint": null, "cloze_guid": "K#aVsPJ^JY" }, @@ -755795,7 +759985,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לָכֵן, דַּוְקָא בִּגְלַל הַיְּדִיעוֹת הָאֵלֶּה, כָּרֶגַע אֲנִי לֹא מַצְלִיחַ לִקְלוֹט אֶת הָאֵרוּעַ הַזֶּה", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + }, + { + "text": "הַיְּדִיעָה שֶׁבְּעוֹד זְמַן קָצָר כֵּלִים כְּבֵדִים יַהַרְסוּ אֶת הַבָּתִּים שֶׁלָּהֶם, גּוֹרֶמֶת לִי לְמַחְנָק בַּגָּרוֹן", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "לָכֵן, דַּוְקָא בִּגְלַל הַיְּדִיעוֹת הָאֵלֶּה, כָּרֶגַע אֲנִי לֹא מַצְלִיחַ לִקְלוֹט אֶת הָאֵרוּעַ הַזֶּה", + "cloze_word_start": 25, + "cloze_word_end": 37, + "cloze_hint": null, + "cloze_guid": "znQUn^WC#8" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יְדִיעָה", @@ -756067,9 +760278,9 @@ "match_method": "inflected" }, { - "text": "גַּם הוּא הִשְׁמִיעַ צְלִיל הוֹדָעָה שֶׁל ווֹטְסְאַפּ", + "text": "הַטֶּלֶפוֹן שֶׁלִּי הִשְׁמִיעַ אֶת הַצְּלִיל הַמֻּכָּר שֶׁל הוֹדָעַת ווֹטְסְאַפּ שֶׁהִגִּיעָה", "source": "time_tunnel_75", - "match_method": "direct" + "match_method": "inflected" } ], "cloze": { @@ -757589,7 +761800,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"כְּלוֹמַר, בֶּאֱמֶת גָּנְבוּ לוֹ אֶת הַסּוּסָה, וְכָכָה שִׁכְנְעוּ אוֹתוֹ לְהַעֲבִיר אֶת הַשְּׁמִירָה לְיָדַיִם יְהוּדִיּוֹת", + "source": "time_tunnel_81", + "match_method": "inflected" + } + ], + "cloze": { + "text": "״ \"כְּלוֹמַר, בֶּאֱמֶת גָּנְבוּ לוֹ אֶת הַסּוּסָה, וְכָכָה שִׁכְנְעוּ אוֹתוֹ לְהַעֲבִיר אֶת הַשְּׁמִירָה לְיָדַיִם יְהוּדִיּוֹת", + "cloze_word_start": 115, + "cloze_word_end": 127, + "cloze_hint": null, + "cloze_guid": "yDGv0ISDA(" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יְהוּדִיָּה", @@ -758076,15 +762303,15 @@ "source": "alice_wonderland", "match_method": "inflected" }, + { + "text": "\"זֹאת מְסִבַּת הַתֵּה הֲכִי טִפְּשִׁית שֶׁהָיִיתִי בָּהּ בְּכָל יְמֵי חַיַּי", + "source": "alice_wonderland", + "match_method": "inflected" + }, { "text": "\"אֵיזֶה – אֵיזֶה יוֹם יָפֶה הַיּוֹם", "source": "alice_wonderland", "match_method": "direct" - }, - { - "text": "הָיוּ לִי מֵי שְׁתִיָּה בְּקשִׁי לִשְׁמוֹנָה יָמִים", - "source": "little_prince", - "match_method": "inflected" } ], "cloze": { @@ -758235,6 +762462,11 @@ "text": " סוֹף דָּבָר יוֹמַיִם אַחֲרֵי ל\"ג בָּעֹמֶר נֹגַהּ הִגִּיעָה אֵלֵינוּ", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "אֲבָל אָמַרְנוּ לְעַצְמֵנוּ שֶׁקַּפְרִיסִין אֵינָהּ רְחוֹקָה, וְשֶׁנַּגִּיעַ אֵלֶיהָ הֲכִי הַרְבֵּה תּוֹךְ יוֹמַיִם", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -758779,25 +763011,25 @@ "examples": { "vetted": [ { - "text": "\" אָמְרָה הַיּוֹנָה בְּנִימַת הַבּוּז הֶעָמֹק בְּיוֹתֵר", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "\" הוּא קָרָא, \"בּוֹאִי הֵנָּה וְהָבִיאִי אִתָּךְ גַּם אֶת יוֹנָה", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "\" \"אֲנִי לֹא מַאֲמִינָה לְזֶה,\" אָמְרָה הַיּוֹנָה", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "\" חַנָּה'לֶה נִרְאֲתָה בְּעֶרֶךְ בְּגִילֵנוּ, יוֹנָה נִרְאֲתָה מְבֻגֶּרֶת יוֹתֵר", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "\" אָמְרָה הַיּוֹנָה בְּנִימָה זוֹעֶפֶת, בְּעוֹדָהּ שָׁבָה וּמִתְמַקֶּמֶת בְּתוֹךְ הַקֵּן שֶׁלָּהּ", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "\" \"זֶה שֶׁהִגִּיעַ עִם הַמַּשָּׂאִיּוֹת שֶׁל הַצָּבָא הָאָמֶרִיקָאִי,\" יוֹנָה הִתְעָרְבָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\" אָמְרָה הַיּוֹנָה בְּנִימַת הַבּוּז הֶעָמֹק בְּיוֹתֵר", - "cloze_word_start": 10, - "cloze_word_end": 19, + "text": "\" הוּא קָרָא, \"בּוֹאִי הֵנָּה וְהָבִיאִי אִתָּךְ גַּם אֶת יוֹנָה", + "cloze_word_start": 58, + "cloze_word_end": 64, "cloze_hint": null, "cloze_guid": "KZS-WHrOnf8dJ7Y~" }, @@ -805246,6 +809653,11 @@ "text": "הַמִּשְׁפָּחָה שֶׁלָּנוּ תָּמִיד שָׂנְאָה חֲתוּלִים: יְצוּרִים מַגְעִילִים, שְׁפָלִים וְגַסֵּי־רוּחַ", "source": "alice_wonderland", "match_method": "inflected" + }, + { + "text": "מְבַצְּעִים אֶת הַהַכְלָאָה הַזּוֹ כְּדֵי לְהָבִיא לָעוֹלָם יְצוּר חָזָק הַמַּתְאִים לַעֲבוֹדָה קָשָׁה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "rejected_count": 0 @@ -806376,7 +810788,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "קַיִץ עַכְשָׁיו וְהַשֶּׁמֶשׁ יוֹקֶדֶת", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "קַיִץ עַכְשָׁיו וְהַשֶּׁמֶשׁ יוֹקֶדֶת", + "cloze_word_start": 29, + "cloze_word_end": 37, + "cloze_hint": null, + "cloze_guid": "P/o1WkO+2K" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -809496,7 +813924,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "חָבֵר יָקָר, תּוֹדָה שֶׁקָּרָאתָָ אֶת הַמִּכְתָּב הַזֶּה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\"חָבֵר יָקָר,\" כָּךְ נִפְתָּח הַמִּכְתָּב", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "חָבֵר יָקָר, תּוֹדָה שֶׁקָּרָאתָָ אֶת הַמִּכְתָּב הַזֶּה", + "cloze_word_start": 6, + "cloze_word_end": 11, + "cloze_hint": null, + "cloze_guid": "Mpo;s4PJF@" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -810440,7 +814889,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם הֵבִינוּ, כִּי חֶסֶד רַב עָשָׂה עִמָּהֶם הָאָדָם־הָהָר, וְכִי אֵין לָהֶם לִירֹא עוֹד מֵהַלִּילִיפּוּטִים", + "source": "gulliver", + "match_method": "direct" + }, + { + "text": "יָרֵא אֲנִי, כִּי תְנַתֵּק אֶת הַחֶבֶל וְתִבְרַח, וְלָכֵן אֶסְגּר אוֹתְךָ בַדִּיר 6 וְשָׁם תֵּשֵׁב כָּל הַיָּמִים", + "source": "kid_on_mountain", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הֵם הֵבִינוּ, כִּי חֶסֶד רַב עָשָׂה עִמָּהֶם הָאָדָם־הָהָר, וְכִי אֵין לָהֶם לִירֹא עוֹד מֵהַלִּילִיפּוּטִים", + "cloze_word_start": 77, + "cloze_word_end": 83, + "cloze_hint": null, + "cloze_guid": "M<0I{hBg89" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -815493,25 +819963,15 @@ "examples": { "vetted": [ { - "text": "\" תַּהֲלוּכַת סֵפֶר הַתּוֹרָה מִצְּפַת לְמֵירוֹן", - "source": "time_tunnel_75", - "match_method": "direct_prefix" - }, - { - "text": "נֹגַהּ הֶעֱבִירָה גַּם לְשָׁרוֹן אֶת הַשְּׁאֵלָה עַל תַּהֲלוּכַת סֵפֶר הַתּוֹרָה", - "source": "time_tunnel_75", - "match_method": "direct_prefix" - }, - { - "text": "תִּרְאוּ אֶת הַפְּרָחִים שֶׁמְּקַשְּׁטִים אֶת סֵפֶר הַתּוֹרָה", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "אֲבָל עַל פִּי תּוֹרַת הַמִּמְשָׁל שֶׁלִּי, אֲנִי אַמְתִּין לָרֶגַע שֶׁהַתְּנָאִים לְכָךְ יַבְשִׁילוּ", + "source": "little_prince", + "match_method": "inflected" } ], "cloze": { - "text": "\" תַּהֲלוּכַת סֵפֶר הַתּוֹרָה מִצְּפַת לְמֵירוֹן", - "cloze_word_start": 20, - "cloze_word_end": 29, + "text": "אֲבָל עַל פִּי תּוֹרַת הַמִּמְשָׁל שֶׁלִּי, אֲנִי אַמְתִּין לָרֶגַע שֶׁהַתְּנָאִים לְכָךְ יַבְשִׁילוּ", + "cloze_word_start": 15, + "cloze_word_end": 22, "cloze_hint": null, "cloze_guid": "FU8B.syCI~" }, @@ -815589,20 +820049,25 @@ "examples": { "vetted": [ { - "text": "מֵהַמָּטוֹס שֶׁהִנְמִיךְ נוֹרוּ יְרִיּוֹת", - "source": "time_tunnel_70", + "text": "מֵהַצִּנּוֹרוֹת נוֹרִים לְעֵבֶר הַבְּרִיטִים סִילוֹנֵי מַיִם וְשֶׁמֶן", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "אַחַר כָּךְ נוֹרוּ יְרִיּוֹת שֶׁל מְכוֹנַת יְרִיָּה מֵהָאֲוִירוֹן, וְיָכֹלְנוּ לִשְׁמוֹעַ אֶת קְרִיאוֹת הַבֶּהָלָה שֶׁל הַפּוֹרְעִים", + "text": "כִּשְׁלֹשִׁים אֶלֶף חִצִּים נוֹרוּ עָלָיו, וְרַבִּים מֵהֶם פָּגְעוּ בְּפָנָיו וּבְיָדָיו", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "מֵהַמָּטוֹס שֶׁהִנְמִיךְ נוֹרוּ יְרִיּוֹת", "source": "time_tunnel_70", "match_method": "conjugated" } ], "cloze": { - "text": "מֵהַמָּטוֹס שֶׁהִנְמִיךְ נוֹרוּ יְרִיּוֹת", - "cloze_word_start": 25, - "cloze_word_end": 31, + "text": "מֵהַצִּנּוֹרוֹת נוֹרִים לְעֵבֶר הַבְּרִיטִים סִילוֹנֵי מַיִם וְשֶׁמֶן", + "cloze_word_start": 16, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "j?8jrR<]%<" }, @@ -816450,7 +820915,16 @@ "יָרָק" ], "confusables_guid": ",!^KYYF!O", - "examples": null, + "examples": { + "vetted": [ + { + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יָרָק", @@ -817836,7 +822310,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִכָּל הַבָּתִּים וְהַבִּנְיָנִים – אֶת צְרִיף גַּן־הַיְלָדִים עִם הַגַּג הָאָדֹם וְהַמְטַפֵּס הַיָּרֹק", + "source": "ilana", + "match_method": "direct_prefix" + }, + { + "text": "יוֹם־יוֹם הָיְתָה יוֹצֵאת עִם אֲוָזֶיהָ לָאָחוּ הַיָּרֹק, לְיַד הָאֲגַם", + "source": "tree_dress", + "match_method": "direct_prefix" + }, + { + "text": "וְהַמְטַפֵּס הַיָּרֹק הֵצִיץ פְּנִימָה, לְתוֹךְ הַחֲדָרִים, וְלָחַשׁ: – גַּם אֲנִי לֹא אֶעֱזֹב אוֹתְךָ", + "source": "ilana", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "מִכָּל הַבָּתִּים וְהַבִּנְיָנִים – אֶת צְרִיף גַּן־הַיְלָדִים עִם הַגַּג הָאָדֹם וְהַמְטַפֵּס הַיָּרֹק", + "cloze_word_start": 95, + "cloze_word_end": 103, + "cloze_hint": null, + "cloze_guid": "n=_M&h^8l+" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -817990,7 +822490,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל אַחֲרֵי שֶׁהוּא נִפְטַר, הַיּוֹרְשִׁים שֶׁלּוֹ תָּמְכוּ גַּם בְּמוֹשָׁבוֹת בְּאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_81", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "אֲבָל אַחֲרֵי שֶׁהוּא נִפְטַר, הַיּוֹרְשִׁים שֶׁלּוֹ תָּמְכוּ גַּם בְּמוֹשָׁבוֹת בְּאֶרֶץ־יִשְׂרָאֵל", + "cloze_word_start": 31, + "cloze_word_end": 44, + "cloze_hint": null, + "cloze_guid": "HS+fix.(%{" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": true, @@ -819798,25 +824314,15 @@ "examples": { "vetted": [ { - "text": "זוֹ הָיְתָה סִבָּה אַחַת שֶׁבִּגְלָלָהּ נָטְשׁוּ הַתּוֹשָׁבִים הַיְּהוּדִים אֶת הַמּוֹשָׁבָה בַּפַּעַם הָרִאשׁוֹנָה", - "source": "time_tunnel_70", - "match_method": "inflected_prefix" - }, - { - "text": "כָּאן אֲנִי דַּוְקָא מֵבִין אֶת הַתּוֹשָׁבִים", - "source": "time_tunnel_70", - "match_method": "inflected_prefix" - }, - { - "text": "אֵלֶּה הָיוּ הַתּוֹשָׁבִים הַיְּהוּדִים מִכְּפָרִים אֲחֵרִים בַּסְּבִיבָה, שֶׁגַּם עֲלֵיהֶם הִתְנַפְּלוּ פּוֹרְעִים עֲרָבִים", - "source": "time_tunnel_70", - "match_method": "inflected_prefix" + "text": "תּוֹשָׁבִים הִגִּיעוּ אֶל הַמֶּרְכָּז הַזֶּה וְעָרְכוּ קְנִיּוֹת", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { - "text": "זוֹ הָיְתָה סִבָּה אַחַת שֶׁבִּגְלָלָהּ נָטְשׁוּ הַתּוֹשָׁבִים הַיְּהוּדִים אֶת הַמּוֹשָׁבָה בַּפַּעַם הָרִאשׁוֹנָה", - "cloze_word_start": 49, - "cloze_word_end": 62, + "text": "תּוֹשָׁבִים הִגִּיעוּ אֶל הַמֶּרְכָּז הַזֶּה וְעָרְכוּ קְנִיּוֹת", + "cloze_word_start": 0, + "cloze_word_end": 11, "cloze_hint": null, "cloze_guid": "Lx;of~|eri" }, @@ -822320,7 +826826,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי מִתְרוֹמֵם לְמַצַּב יְשִׁיבָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֲנִי מִתְרוֹמֵם לְמַצַּב יְשִׁיבָה", + "cloze_word_start": 26, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "g_;|hF=D?j" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "יְשִׁיבָה", @@ -822545,20 +827067,20 @@ "examples": { "vetted": [ { - "text": "יוֹשְׁבִים עַל גִּבְעַת חוֹל, לֹא רוֹאִים דָּבָר, לֹא שׁוֹמְעִים דָּבָר", - "source": "הנסיך הקטן", + "text": "שְׁבִיעִית: הָאָדָם־הָהָר מַבְטִיחַ לִהְיוֹת לָנוּ לְבֶן־בְּרִית וּלְהִלָּחֵם בְּאוֹיְבֵינוּ יוֹשְׁבֵי הָאִי בְּלִיפּוֹסְקוֹ וּלְהַשְׁמִיד אֶת אֳנִיּוֹתֵיהֵם", + "source": "gulliver", "match_method": "inflected" }, { - "text": "אֲנִי יוֹדֵעַ אֶת זֶה כִּי בַּחֲזִית שֶׁל אֶחָד מֵהֶם יוֹשֵׁב עֲרָבִי וּמְעַשֵּׁן נַרְגִּילָה", - "source": "מנהרת הזמן 82", - "match_method": "direct" + "text": "אֲשֶׁר לַשּׂוֹנְאִים מִחוּץ – הִמְשִׁיךְ נוֹבֶל סַחְנֵפּ לְסַפֵּר – הֲרֵי אֵלֶּה הֵם יוֹשְׁבֵי אִי חֶלְזוֹנְיָה הַסָּמוּךְ לְלִילִיפּוּטְיָה", + "source": "gulliver", + "match_method": "inflected" } ], "cloze": { - "text": "יוֹשְׁבִים עַל גִּבְעַת חוֹל, לֹא רוֹאִים דָּבָר, לֹא שׁוֹמְעִים דָּבָר", - "cloze_word_start": 0, - "cloze_word_end": 10, + "text": "שְׁבִיעִית: הָאָדָם־הָהָר מַבְטִיחַ לִהְיוֹת לָנוּ לְבֶן־בְּרִית וּלְהִלָּחֵם בְּאוֹיְבֵינוּ יוֹשְׁבֵי הָאִי בְּלִיפּוֹסְקוֹ וּלְהַשְׁמִיד אֶת אֳנִיּוֹתֵיהֵם", + "cloze_word_start": 93, + "cloze_word_end": 102, "cloze_hint": null, "cloze_guid": "uRAhMXZflZ" }, @@ -824999,7 +829521,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל כָּל הַיְלָדִים לֹא כָּל־כָּךְ שָׁמְרוּ עַל הַלֵּיצָן, וְהוּא כְּבָר יָשָׁן וְקָרוּעַ", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "וְגַם צְרִיף גַּן־הַיְלָדִים כְּבָר אֵינוֹ חָדָשׁ כְּשֶׁהָיָה, גַּם הוּא קְצָת יָשָׁן כְּבָר", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "הוּא רַק קְצָת־קְצָת יָשָׁן וְזֶה לֹא אִכְפַּת", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֲבָל כָּל הַיְלָדִים לֹא כָּל־כָּךְ שָׁמְרוּ עַל הַלֵּיצָן, וְהוּא כְּבָר יָשָׁן וְקָרוּעַ", + "cloze_word_start": 75, + "cloze_word_end": 81, + "cloze_hint": null, + "cloze_guid": "B(Tn{x5y(J" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -826990,20 +831538,20 @@ "examples": { "vetted": [ { - "text": "מַחְלֶקֶת הַיֶּשַׁע נִכְנֶסֶת לִצְפַת 22", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "\"אִם אַתֶּם כָּל כָּךְ מִסְכֵּנִים וְחַסְרֵי יֶשַׁע", + "source": "time_tunnel_77", + "match_method": "direct" }, { - "text": "\" הַאִם אֵלֶּה הֵן הַסִּמְטָאוֹת שֶׁבָּהֶן צָעַדְנוּ יַחַד עִם מַחְלֶקֶת הַיֶּשַׁע שֶׁל הַפַּלְמָ\"ח שֶׁהִגִּיעָה לִצְפַת", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "\" הִיא מַמָּשׁ לֹא הִסְכִּימָה לִהְיוֹת מֻצֶּגֶת כְּמִסְכֵּנָה וְחַסְרַת יֶשַׁע", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "מַחְלֶקֶת הַיֶּשַׁע נִכְנֶסֶת לִצְפַת 22", - "cloze_word_start": 10, - "cloze_word_end": 19, + "text": "\"אִם אַתֶּם כָּל כָּךְ מִסְכֵּנִים וְחַסְרֵי יֶשַׁע", + "cloze_word_start": 45, + "cloze_word_end": 51, "cloze_hint": null, "cloze_guid": "G3}" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִישׁוֹר", @@ -830300,19 +834864,14 @@ "examples": { "vetted": [ { - "text": "\" לָכֵן לְיֶתֶר בִּטָּחוֹן הוּא גָּרַף גַּם אֶת לֹעוֹ", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "– קָרְאוּ גַם יֶתֶר הַיְלָדִים, אַךְ מִיָּד שָׁכְחוּ כִּי הָיוּ עֲסוּקִים בַּאֲרִיזָה וּבְהַעֲבָרָה", + "source": "ilana", + "match_method": "direct" }, { - "text": "\"עֶרֶב טוֹב,\" אָמַר הַנָּסִיךְ הַקָּטָן, לְיֶתֶר בִּטָּחוֹן", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "״ ״לְיֶתֶר בִּטָּחוֹן לֹא נִצְעַק 'עֵרָן',״ שָׁרוֹן אָמְרָה, ״נִצְעַק 'מִי שָׁם", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "לְבַסּוֹף נָטְלוּ הַשּׁוֹמְרִים מִגּוּלִיבֶר אֶת הָאֶקְדָּח, אֶת הַכַּדּוּרִים וְאֶת הָאוֹלָר, וְאֶת יֶתֶר הַחֲפָצִים הִשְׁאִירוּ בְּיָדוֹ", + "source": "gulliver", + "match_method": "direct" } ], "rejected_count": 0 @@ -830396,19 +834955,14 @@ "examples": { "vetted": [ { - "text": "\" לָכֵן לְיֶתֶר בִּטָּחוֹן הוּא גָּרַף גַּם אֶת לֹעוֹ", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "– קָרְאוּ גַם יֶתֶר הַיְלָדִים, אַךְ מִיָּד שָׁכְחוּ כִּי הָיוּ עֲסוּקִים בַּאֲרִיזָה וּבְהַעֲבָרָה", + "source": "ilana", + "match_method": "direct" }, { - "text": "\"עֶרֶב טוֹב,\" אָמַר הַנָּסִיךְ הַקָּטָן, לְיֶתֶר בִּטָּחוֹן", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "״ ״לְיֶתֶר בִּטָּחוֹן לֹא נִצְעַק 'עֵרָן',״ שָׁרוֹן אָמְרָה, ״נִצְעַק 'מִי שָׁם", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "לְבַסּוֹף נָטְלוּ הַשּׁוֹמְרִים מִגּוּלִיבֶר אֶת הָאֶקְדָּח, אֶת הַכַּדּוּרִים וְאֶת הָאוֹלָר, וְאֶת יֶתֶר הַחֲפָצִים הִשְׁאִירוּ בְּיָדוֹ", + "source": "gulliver", + "match_method": "direct" } ], "rejected_count": 0 @@ -830486,7 +835040,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵחֵל גּוּלִיבֶר מַפְנֶה מַבָּטוֹ לְכָאן וּלְכָאן, וּלְתִמְהוֹנוֹ הָרַב רָאָה וְהִנֵּה אָסוּר הוּא בְּמֵיתָרִים דַּקִּים וַחֲזָקִים", + "source": "gulliver", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "הֵחֵל גּוּלִיבֶר מַפְנֶה מַבָּטוֹ לְכָאן וּלְכָאן, וּלְתִמְהוֹנוֹ הָרַב רָאָה וְהִנֵּה אָסוּר הוּא בְּמֵיתָרִים דַּקִּים וַחֲזָקִים", + "cloze_word_start": 99, + "cloze_word_end": 111, + "cloze_hint": null, + "cloze_guid": "qA1R&Uas81" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מֵיתָר", @@ -831406,6 +835976,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הִיא הִתְחַבְּרָה עִם אַדְוָה וַאֲנִי הִרְגַּשְׁתִּי דֵּי מְיֻתָּר", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "לֹא רָצִיתִי לְעוֹרֵר חֲשָׁד מְיֻתָּר", "source": "time_tunnel_70", @@ -831413,9 +835988,9 @@ } ], "cloze": { - "text": "לֹא רָצִיתִי לְעוֹרֵר חֲשָׁד מְיֻתָּר", - "cloze_word_start": 29, - "cloze_word_end": 37, + "text": "הִיא הִתְחַבְּרָה עִם אַדְוָה וַאֲנִי הִרְגַּשְׁתִּי דֵּי מְיֻתָּר", + "cloze_word_start": 58, + "cloze_word_end": 66, "cloze_hint": null, "cloze_guid": "r5O9Y>j>)d" }, @@ -832027,6 +836602,11 @@ "text": "״ פְּקֻדָּתוֹ הָיְתָה מְיֻתֶּרֶת", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "הוּא מוֹנֶה פַּעַם אַחַת וְחוֹזֵר וּמוֹנֶה פַּעַם נוֹסֶפֶת וְאָז אוֹמֵר: \"יֵשׁ כָּאן שְׁלוֹשָׁה מְיֻתָּרִים", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -833365,6 +837945,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הָיִיתִי חַיָּב לְהַרְגִּיעַ אֶת כְּאֵבֵי הַבֶּטֶן", + "source": "time_tunnel_78", + "match_method": "inflected" + }, { "text": "וְאַף עַל פִּי כֵן, בָּרֶגַע הַבָּא אֲנִי מַרְגִּישׁ כְּאֵבִים חֲזָקִים", "source": "time_tunnel_82", @@ -833374,17 +837959,12 @@ "text": "גַּם כְּשֶׁאַתָּה לֹא קַיָּם, מַכָּה הִיא מַכָּה וּכְאֵב הוּא כְּאֵב", "source": "time_tunnel_82", "match_method": "direct" - }, - { - "text": "הוּא לֹא הָיָה יָכוֹל לְשַׁחְרֵר אוֹתִי בְּעַצְמוֹ וְלַחְסוֹךְ לִי כְּאֵבִים מִתְמַשְּׁכִים", - "source": "time_tunnel_82", - "match_method": "inflected" } ], "cloze": { - "text": "וְאַף עַל פִּי כֵן, בָּרֶגַע הַבָּא אֲנִי מַרְגִּישׁ כְּאֵבִים חֲזָקִים", - "cloze_word_start": 53, - "cloze_word_end": 62, + "text": "הָיִיתִי חַיָּב לְהַרְגִּיעַ אֶת כְּאֵבֵי הַבֶּטֶן", + "cloze_word_start": 33, + "cloze_word_end": 41, "cloze_hint": null, "cloze_guid": "iFk2|6Y0+o" }, @@ -834894,15 +839474,20 @@ "examples": { "vetted": [ { - "text": "\" שֶׁל הַגְּרִיפוֹן, וּבַהִתְיַפְּחוּת הַכְּבֵדָה וְהַמַּתְמֶדֶת שֶׁל הַכְּמוֹ־צָב", - "source": "alice_wonderland", - "match_method": "conjugated_prefix" + "text": "אֲנִי יוֹדֵעַ שֶׁאֲנִי חַיָּב לִבְרוֹחַ, אֲבָל רַגְלַי כְּבֵדוֹת", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "הָרַגְלַיִם שֶׁלִּי הוֹלְכוֹת וְנִהְיוֹת כְּבֵדוֹת יוֹתֵר וְיוֹתֵר וְהָעֵינַיִם שֶׁלִּי שׂוֹרְפוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "\" שֶׁל הַגְּרִיפוֹן, וּבַהִתְיַפְּחוּת הַכְּבֵדָה וְהַמַּתְמֶדֶת שֶׁל הַכְּמוֹ־צָב", - "cloze_word_start": 39, - "cloze_word_end": 49, + "text": "אֲנִי יוֹדֵעַ שֶׁאֲנִי חַיָּב לִבְרוֹחַ, אֲבָל רַגְלַי כְּבֵדוֹת", + "cloze_word_start": 55, + "cloze_word_end": 64, "cloze_hint": null, "cloze_guid": "en9O.V8,Kt" }, @@ -835287,16 +839872,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "״כְּבוֹד אֲדוֹנִי הַצָּעִיר, אֲנִי לֹא מֵבִין אֶת דְּבָרֶיךָ,״ זַ'בּוֹטִינְסְקִי הִבִּיט בִּי בְּמַבָּט חוֹדֵר", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "אֵיכְשֶׁהוּ הִרְגַּשְׁתִּי מִין כָּבוֹד כָּזֶה אֵלָיו, כַּנִּרְאֶה כִּי הוּא נִרְאָה לִי מְפַקֵּד חָשׁוּב", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "הוּא אֲפִלּוּ קָרָא לִי אֶל אֹהֶל הַמִּפְקָדָה שֶׁלּוֹ, וּפָנָה אֵלַי בַּמִּלִּים: ״כְּבוֹד אֲדוֹנִי הַצָּעִיר״", + "source": "time_tunnel_63", + "match_method": "inflected" } ], "cloze": { - "text": "אֵיכְשֶׁהוּ הִרְגַּשְׁתִּי מִין כָּבוֹד כָּזֶה אֵלָיו, כַּנִּרְאֶה כִּי הוּא נִרְאָה לִי מְפַקֵּד חָשׁוּב", - "cloze_word_start": 32, - "cloze_word_end": 39, + "text": "״כְּבוֹד אֲדוֹנִי הַצָּעִיר, אֲנִי לֹא מֵבִין אֶת דְּבָרֶיךָ,״ זַ'בּוֹטִינְסְקִי הִבִּיט בִּי בְּמַבָּט חוֹדֵר", + "cloze_word_start": 1, + "cloze_word_end": 8, "cloze_hint": null, "cloze_guid": "K#!6Ga|" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּיּוֹר", @@ -863057,7 +867751,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁלוֹם וְהַנַּעַר מִתְנַפְּלִים עַל כִּכְּרוֹת הַלֶּחֶם", + "source": "time_tunnel_82", + "match_method": "inflected" + } + ], + "cloze": { + "text": "שָׁלוֹם וְהַנַּעַר מִתְנַפְּלִים עַל כִּכְּרוֹת הַלֶּחֶם", + "cloze_word_start": 37, + "cloze_word_end": 47, + "cloze_hint": null, + "cloze_guid": "lSsu<9O(Ks" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּכָּר", @@ -865159,8 +869869,13 @@ "match_method": "direct" }, { - "text": "בְּיָמִים חַמִּים זֶה כֵּיף אַדִּיר", - "source": "time_tunnel_63", + "text": "\" \"אַתְּ נִשְׁמַעַת כְּאִלּוּ זֶה כֵּיף,\" אֲנִי אוֹמֵר", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\"זֶה כֵּיף רַק כְּשֶׁנִּמְצָאִים בִּתְקוּפָה אַחֶרֶת וְעָפִים", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -865284,6 +869999,11 @@ "text": "\" שׁוּב חַשְׁתִּי כֵּיצַד מַקְפִּיאָה אוֹתִי הַתְּחוּשָׁה שֶׁנֶּזֶק בִּלְתִּי הָפִיךְ נִגְרַם", "source": "little_prince", "match_method": "direct" + }, + { + "text": "עַמִי רָאָה כֵּיצַד מַתְחִילוֹת הַפְּקָעוֹת לְקַבֵּל צוּרָה שֶׁל בָּטְנִים מְעֻגָלִים וּצְהֻבִּים", + "source": "silkworms", + "match_method": "direct" } ], "cloze": { @@ -870072,16 +874792,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"טוֹב,\" צְבִי נִכְנַע, \"הֵם שָׁם-\" הוּא כַּנִּרְאֶה הִצְבִּיעַ לְכִווּן אַרְגַּז כְּלֵי הַמִּטָּה", + "source": "time_tunnel_75", + "match_method": "inflected" + }, { "text": "\"נָכוֹן,״ הִסְכַּמְתִּי אִתָּהּ, \"וְזֶה לְגַמְרֵי הוֹגֵן שֶׁלְּכֻלָּם יִהְיוּ אוֹתָם כֵּלִים", "source": "time_tunnel_78", "match_method": "inflected" + }, + { + "text": "הֵנַחְתִּי אֶת כְּלֵי הָעֲבוֹדָה", + "source": "little_prince", + "match_method": "inflected" } ], "cloze": { - "text": "\"נָכוֹן,״ הִסְכַּמְתִּי אִתָּהּ, \"וְזֶה לְגַמְרֵי הוֹגֵן שֶׁלְּכֻלָּם יִהְיוּ אוֹתָם כֵּלִים", - "cloze_word_start": 85, - "cloze_word_end": 92, + "text": "\"טוֹב,\" צְבִי נִכְנַע, \"הֵם שָׁם-\" הוּא כַּנִּרְאֶה הִצְבִּיעַ לְכִווּן אַרְגַּז כְּלֵי הַמִּטָּה", + "cloze_word_start": 81, + "cloze_word_end": 87, "cloze_hint": null, "cloze_guid": "vq>bgVovEk" }, @@ -872169,9 +876899,9 @@ "match_method": "direct" }, { - "text": "\" הַמֶּלֶךְ לֹא עָנָה כְּלָל", - "source": "little_prince", - "match_method": "direct" + "text": "״לֹא הִקְפַּדְתֶּם עַל כְּלָלֵי הַזְּהִירוּת, הַמְּפַקֵּד", + "source": "time_tunnel_63", + "match_method": "inflected" } ], "cloze": { @@ -872416,25 +877146,25 @@ "examples": { "vetted": [ { - "text": "\" \"קֹדֶם כֹּל,\" אָמַר הֶחָתוּל, \"כֶּלֶב הוּא לֹא מְטֹרָף", + "text": "אוֹי וַאֲבוֹי, כַּמָּה כָּל זֶה מְבַלְבֵּל", "source": "alice_wonderland", - "match_method": "direct" + "match_method": "inflected" }, { - "text": "קֹדֶם כֹּל הוּא לֹא הֵבִין אֵיךְ אֲנִי יוֹדֵעַ לְפָנָיו מַשֶּׁהוּ שֶׁקָּשׁוּר אֵלָיו", - "source": "time_tunnel_70", - "match_method": "direct" + "text": "נִרְאֶה אִם אֲנִי יוֹדַעַת אֶת כָּל הַדְּבָרִים שֶׁתָּמִיד יָדַעְתִּי", + "source": "alice_wonderland", + "match_method": "inflected" }, { - "text": "\"לְדַעְתִּי, קֹדֶם כֹּל נִצְטָרֵךְ לְחַפֵּשׂ בָּאִינְטֶרְנֶט", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "הוּא אוֹמֵר שֶׁהוּא הוֹרֵג אֶת כָּל הָעַכְבְּרוֹשִׁים וְ", + "source": "alice_wonderland", + "match_method": "inflected" } ], "cloze": { - "text": "\" \"קֹדֶם כֹּל,\" אָמַר הֶחָתוּל, \"כֶּלֶב הוּא לֹא מְטֹרָף", - "cloze_word_start": 9, - "cloze_word_end": 13, + "text": "אוֹי וַאֲבוֹי, כַּמָּה כָּל זֶה מְבַלְבֵּל", + "cloze_word_start": 23, + "cloze_word_end": 27, "cloze_hint": null, "cloze_guid": "b?1xAg~g%z" }, @@ -872560,7 +877290,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְבַסּוֹף עֲזָבוּהוּ כֹּחוֹתָיו כָּלִיל וְהוּא חָדַל לִשְׂחוֹת, אוּלָם בְּצָלְלוֹ נָגְעוּ רַגְלָיו בַּקַּרְקַע", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "לְבַסּוֹף עֲזָבוּהוּ כֹּחוֹתָיו כָּלִיל וְהוּא חָדַל לִשְׂחוֹת, אוּלָם בְּצָלְלוֹ נָגְעוּ רַגְלָיו בַּקַּרְקַע", + "cloze_word_start": 32, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "Ms/s$%q8y2" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -873943,27 +878689,17 @@ "examples": { "vetted": [ { - "text": "הָיָה אֶפְשָׁר לְרַכֵּז אֶת הָאֱנוֹשׁוּת כֻּלָּהּ עַל אַחַד הָאִיִּים הַקְּטַנִּים בָּאוֹקְיָנוֹס הַשָּׁקֵט", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "שָׁרוֹן כְּבָר נִמְצֵאת כֻּלָּהּ בְּתוֹךְ הַמְּעָרָה, אֲבָל אֲנִי עֲדַיִן רַק חֶלְקִית בִּפְנִים", - "source": "מנהרת הזמן 82", - "vetted": true - }, - { - "text": "וְעוֹד הָיָה נִדְמֶה לִי שֶׁאֵין מַשֶּׁהוּ עָדִין וְשָׁבִיר כְּמוֹתוֹ עַל פְּנֵי הָאֲדָמָה כֻּלָּהּ", - "source": "הנסיך הקטן", - "vetted": true + "text": "רַק אִם תָּבִיא לְכָאן כַּלָּה יְפֵהפִיָּה, אַרְשֶׁה לְךָ לְהִתְחַתֵּן", + "source": "tree_dress", + "match_method": "direct" } ], "cloze": { - "text": "הָיָה אֶפְשָׁר לְרַכֵּז אֶת הָאֱנוֹשׁוּת כֻּלָּהּ עַל אַחַד הָאִיִּים הַקְּטַנִּים בָּאוֹקְיָנוֹס הַשָּׁקֵט", - "cloze_word_start": 41, - "cloze_word_end": 49, + "text": "רַק אִם תָּבִיא לְכָאן כַּלָּה יְפֵהפִיָּה, אַרְשֶׁה לְךָ לְהִתְחַתֵּן", + "cloze_word_start": 23, + "cloze_word_end": 30, "cloze_hint": null, - "cloze_guid": "z2JJTz" }, "rejected_count": 0 }, @@ -877168,7 +881904,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁוֶה כֹּחוֹ כְּנֶגֶד חֲמִשָּׁה מִבְצָרִים", + "source": "gulliver", + "match_method": "direct" + }, + { + "text": "שְׁמִינִית: כְּנֶגֶד זֶה הִתְחַיַּבְנוּ אָנוּ לְהַמְצִיא לָאָדָם־הָהָר אֶת לֶחֶם חֻקּוֹ וְלָתֵת לוֹ אֶת כָּל מַחְסוֹרוֹ", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "שָׁוֶה כֹּחוֹ כְּנֶגֶד חֲמִשָּׁה מִבְצָרִים", + "cloze_word_start": 14, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "pB>TRP^U^A" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -877304,7 +882061,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יִתָּכֵן שֶׁכַּאֲשֶׁר הוּא הָיָה יֶלֶד, הָיָה לוֹ כִּנּוּי אַחֵר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "אֲבָל אִם הָיָה לוֹ כִּנּוּי אַחֵר, אֵיךְ הוּא עָנָה לָנוּ מִיָּד כְּשֶׁקָּרָאנוּ בִּשְׁמוֹ", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "יִתָּכֵן שֶׁכַּאֲשֶׁר הוּא הָיָה יֶלֶד, הָיָה לוֹ כִּנּוּי אַחֵר", + "cloze_word_start": 50, + "cloze_word_end": 58, + "cloze_hint": null, + "cloze_guid": "e=0Jlgc/!L" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּנּוּי", @@ -879716,6 +884494,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "וְאַבָּא שֶׁלִּי הֵקִים בֵּית כְּנֶסֶת", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "רַק בֵּית כְּנֶסֶת נִשְׁאָר", "source": "time_tunnel_82", @@ -879723,11 +884506,11 @@ } ], "cloze": { - "text": "רַק בֵּית כְּנֶסֶת נִשְׁאָר", - "cloze_word_start": 10, - "cloze_word_end": 18, + "text": "וְאַבָּא שֶׁלִּי הֵקִים בֵּית כְּנֶסֶת", + "cloze_word_start": 30, + "cloze_word_end": 38, "cloze_hint": null, - "cloze_guid": "xK`tCe&&5O" + "cloze_guid": "m!PxR0F,W8" }, "rejected_count": 0 }, @@ -879810,20 +884593,15 @@ "examples": { "vetted": [ { - "text": "וְהֵם מֵעוֹלָם לֹא טָעוּ בְּסֵדֶר הַכְּנִיסָה לַבָּמָה", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "כִּי כְּשֶׁאַתָּה יְהוּדִי, יֵשׁ לְךָ מְזוּזָה בַּכְּנִיסָה לַבַּיִת", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "כְּנִיסָה לֹא חֻקִּית לַתְּחוּם הַזֶּה תִּגְרֹר תְּגוּבָה חֲרִיפָה מִצִּדֵּנוּ", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "וְהֵם מֵעוֹלָם לֹא טָעוּ בְּסֵדֶר הַכְּנִיסָה לַבָּמָה", - "cloze_word_start": 34, - "cloze_word_end": 45, + "text": "כְּנִיסָה לֹא חֻקִּית לַתְּחוּם הַזֶּה תִּגְרֹר תְּגוּבָה חֲרִיפָה מִצִּדֵּנוּ", + "cloze_word_start": 0, + "cloze_word_end": 9, "cloze_hint": null, "cloze_guid": "iU&i;H3Ow0" }, @@ -881755,9 +886533,9 @@ "match_method": "direct" }, { - "text": "הוּא לָבַשׁ מִכְנָסַיִם בְּהִירִים", - "source": "time_tunnel_70", - "match_method": "direct" + "text": "הַבֵּן חוֹבֵשׁ כִּפָּה, בַּת אַחַת לוֹבֶשֶׁת חֲצָאִית וּבַת אַחַת עִם מִכְנְסֵי גִ'ינְס", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { @@ -881842,15 +886620,15 @@ "examples": { "vetted": [ { - "text": "הֵם פָּחֲדוּ שֶׁשְּׁלִיחִים שֶׁל הַמַּלְכָּה אוֹ שֶׁל הַכְּנֵסִיָּה יְחַפְּשׂוּ בְּבָתֵּיהֶם", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "וְגַם הַמִּגְדָּל שֶׁנִּמְצָא בְּמִתְחַם כְּנֵסִיַּת אוֹגוּסְטָה וִיקְטוֹרְיָה, אֵינֶנּוּ", + "source": "time_tunnel_82", + "match_method": "inflected" } ], "cloze": { - "text": "הֵם פָּחֲדוּ שֶׁשְּׁלִיחִים שֶׁל הַמַּלְכָּה אוֹ שֶׁל הַכְּנֵסִיָּה יְחַפְּשׂוּ בְּבָתֵּיהֶם", - "cloze_word_start": 54, - "cloze_word_end": 67, + "text": "וְגַם הַמִּגְדָּל שֶׁנִּמְצָא בְּמִתְחַם כְּנֵסִיַּת אוֹגוּסְטָה וִיקְטוֹרְיָה, אֵינֶנּוּ", + "cloze_word_start": 41, + "cloze_word_end": 52, "cloze_hint": null, "cloze_guid": "f]ns1])eAr" }, @@ -883439,6 +888217,11 @@ "text": "״ בִּמְקוֹם תְּשׁוּבָה שָׁמַעְתִּי מֵעָלַי מַשַּׁק כְּנָפַיִם", "source": "time_tunnel_78", "match_method": "inflected" + }, + { + "text": "״ שָׁאַלְתִּי אֶת קַרְנִי שֶׁיָּצְאָה מִתּוֹךְ כַּנְפֵי הָעֲטַלֵּף", + "source": "time_tunnel_78", + "match_method": "inflected" } ], "cloze": { @@ -885285,6 +890068,11 @@ "text": "סִיר לְלֹא מִכְסֶה הָיָה מֻנָּח עַל הַשֻּׁלְחָן וְעָלוּ מִמֶּנּוּ אֵדִים שֶׁל תַּבְשִׁיל טוֹב", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "נָחוּץ לְחַמֵּם אוֹתוֹ מְעַט וּלְהוֹצִיא מִתַּחַת מִכְסֵה הַשֶּׁלֶג אֶת הַנִּצָּנִים הָרַכִּים, הַהוֹלְכִים וְנִצְמָתִים שָׁם מִקּוֹר", + "source": "the_spirits", + "match_method": "inflected" } ], "rejected_count": 0 @@ -888650,25 +893438,15 @@ "examples": { "vetted": [ { - "text": "\" עַכְשָׁו הָיָה הַנָּסִיךְ הַקָּטָן חִוֵּר מִכַּעַס", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "\" פָּנָיו שֶׁל בּוּרָאט מַאֲדִימוֹת מִכַּעַס", - "source": "time_tunnel_82", - "match_method": "direct_prefix" - }, - { - "text": "דַּוְקָא בִּגְלַל שֶׁהַשִּׁחְרוּר הָיָה כָּל כָּךְ פָּשׁוּט, הַכַּעַס שֶׁלִּי עַל שָׁלוֹם מִתְעַצֵּם", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "כָּעַס הַסּוֹחֵר כַּעַס נוֹרָא וְקָרָא לַמִּשְׁטָרָה", + "source": "ilana", + "match_method": "direct" } ], "cloze": { - "text": "\" עַכְשָׁו הָיָה הַנָּסִיךְ הַקָּטָן חִוֵּר מִכַּעַס", - "cloze_word_start": 44, - "cloze_word_end": 52, + "text": "כָּעַס הַסּוֹחֵר כַּעַס נוֹרָא וְקָרָא לַמִּשְׁטָרָה", + "cloze_word_start": 17, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "tQk[=3d]Fo" }, @@ -888802,6 +893580,11 @@ "text": "הַבִּטָּחוֹן שֶׁבּוֹ הִיא אוֹמֶרֶת אֶת הַמִּלִּים \"זֶהוּ, לֹא כּוֹאֵב יוֹתֵר\" מַכְעִיס אוֹתִי", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "בִּמְקוֹם לְהַכְעִיס אֶת אַלֶכְּסַנְדֶר זַיְיד, הָיִיתִי רוֹצֶה לְסַפֵּר לוֹ עַל הַפֶּסֶל שֶׁהוּקַם לְזִכְרוֹ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -893555,7 +898338,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מְכוֹפְפִים אֶת הַגַּב כַּמָּה שֶׁאֶפְשָׁר וְנִצְמָדִים לַשִּׂיחִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "מְכוֹפְפִים אֶת הַגַּב כַּמָּה שֶׁאֶפְשָׁר וְנִצְמָדִים לַשִּׂיחִים", + "cloze_word_start": 0, + "cloze_word_end": 11, + "cloze_hint": null, + "cloze_guid": "dir?UP>Vq^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -894758,6 +899557,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "וְתַעֲזֹב כְּבָר אֶת כִּפַּת הַזְּכוּכִית הַזֹּאת", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "זֶה הָיָה מִין כּוֹבַע שֶׁנִּרְאָה כְּמוֹ כִּפָּה גְּדוֹלָה", "source": "time_tunnel_75", @@ -894767,17 +899571,12 @@ "text": "הַיְּלָדִים חוֹבְשִׁים כִּפּוֹת וּמִשְּׁנֵי הַצְּדָדִים שֶׁל פְּנֵיהֶם מִשְׁתַּלְשְׁלות פֵּאוֹת", "source": "time_tunnel_82", "match_method": "inflected" - }, - { - "text": "\" הוּא מַנִּיחַ יָד עַל רֹאשׁוֹ בְּצוּרָה שֶׁל כִּפָּה", - "source": "time_tunnel_82", - "match_method": "direct" } ], "cloze": { - "text": "זֶה הָיָה מִין כּוֹבַע שֶׁנִּרְאָה כְּמוֹ כִּפָּה גְּדוֹלָה", - "cloze_word_start": 42, - "cloze_word_end": 49, + "text": "וְתַעֲזֹב כְּבָר אֶת כִּפַּת הַזְּכוּכִית הַזֹּאת", + "cloze_word_start": 21, + "cloze_word_end": 28, "cloze_hint": null, "cloze_guid": "y#Lf~Wx;(4" }, @@ -895187,7 +899986,16 @@ "כָּפוּף|Adjective|subordinate, subject to (ל־)" ], "confusables_guid": "k08dH+`]F+", - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבַחוּץ רָאֲתָה אֶת גַּג הַצְּרִיף וְהוּא כָּפוּף וְעָצוּב", + "source": "ilana", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -895467,7 +900275,16 @@ "כָּפוּף|Adjective|subordinate, subject to (ל־)" ], "confusables_guid": "k08dH+`]F+", - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבַחוּץ רָאֲתָה אֶת גַּג הַצְּרִיף וְהוּא כָּפוּף וְעָצוּב", + "source": "ilana", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -896904,7 +901721,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "זֶה שָׁלוֹשׁ שָׁנִים אַחֲרֵי מִלְחֶמֶת יוֹם הַכִּפּוּרִים, לֹא", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "זֶה שָׁלוֹשׁ שָׁנִים אַחֲרֵי מִלְחֶמֶת יוֹם הַכִּפּוּרִים, לֹא", + "cloze_word_start": 44, + "cloze_word_end": 57, + "cloze_hint": null, + "cloze_guid": "BFgH>|tMwG" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּפּוּר", @@ -896970,6 +901803,16 @@ "text": "אֲבָל לֹא הָיָה שָׁם שׁוּם כְּפָר, וַאֲנִי תָּהִיתִי אִם חָלַמְתִּי", "source": "little_prince", "match_method": "direct" + }, + { + "text": "\" אֲנִי קוֹטֵעַ אוֹתָהּ, \"אָז הַמָּקוֹם שֶׁבּוֹ הָיִינוּ הוּא כְּפַר הַשִּׁלוֹחַ", + "source": "time_tunnel_82", + "match_method": "inflected" + }, + { + "text": "הָיִינוּ בְּנֹפֶשׁ בַּצָּפוֹן וְנָסַעְנוּ לְמֶסְחָה, כְּלוֹמַר לְמָה שֶׁהַיּוֹם כְּפַר תָּבוֹר", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { @@ -898635,7 +903478,16 @@ "לִכְפּוֹת" ], "confusables_guid": "bPB;^QbR[n", - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ בְּדִמְיוֹנִי אֲנִי כְּבָר רוֹאֶה אֶת הָאִישׁ כּוֹפֵת אוֹתָנוּ", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -900271,15 +905123,25 @@ "examples": { "vetted": [ { - "text": "זֶה אוֹתוֹ נוֹף כְּמוֹ בָּעַמּוּד הַקּוֹדֵם, אֲבָל צִיַּרְתִּי אוֹתוֹ שׁוּב כְּדֵי לְהַרְאוֹת לָכֶם אוֹתוֹ כָּרָאוּי", - "source": "little_prince", + "text": "בָּגַדְתִּי בָּאֵמוּן שֶׁל מִי שֶׁסָּמַךְ עָלַי שֶׁאֲבַצֵּעַ אֶת הַמְּשִׂימָה כָּרָאוּי", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אוּלַי הָאֶפְשָׁרוּת שֶׁשְּׁלוֹשְׁתֵּנוּ בָּאנוּ מֵהַיָּם, פֵּרוּשָׁהּ שֶׁהוּא לֹא מִלֵּא אֶת תַּפְקִידוֹ כָּרָאוּי", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אַף־עַל־פִּי שֶׁהוֹסִיף הַגֹלֶם לִשְׁכַּב בִּדְמָמָה, כָּרָאוּי לְגֹלֶם, הָיָה מַרְאֵהוּ מַפְחִיד בְּמִקְצָת", + "source": "silkworms", "match_method": "direct" } ], "cloze": { - "text": "זֶה אוֹתוֹ נוֹף כְּמוֹ בָּעַמּוּד הַקּוֹדֵם, אֲבָל צִיַּרְתִּי אוֹתוֹ שׁוּב כְּדֵי לְהַרְאוֹת לָכֶם אוֹתוֹ כָּרָאוּי", - "cloze_word_start": 107, - "cloze_word_end": 116, + "text": "בָּגַדְתִּי בָּאֵמוּן שֶׁל מִי שֶׁסָּמַךְ עָלַי שֶׁאֲבַצֵּעַ אֶת הַמְּשִׂימָה כָּרָאוּי", + "cloze_word_start": 78, + "cloze_word_end": 87, "cloze_hint": null, "cloze_guid": "jT>.Yl^[rz" }, @@ -901222,7 +906084,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִגַּעְנוּ לָאָרֶץ רַק אַחֲרֵי הַכְרָזַת הַמְּדִינָה, כָּל אֶחָד בְּאֹפֶן אַחֵר, וְנִפְגַּשְׁנוּ בַּצָּבָא, בְּחֵיל הָאֲוִיר", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הִגַּעְנוּ לָאָרֶץ רַק אַחֲרֵי הַכְרָזַת הַמְּדִינָה, כָּל אֶחָד בְּאֹפֶן אַחֵר, וְנִפְגַּשְׁנוּ בַּצָּבָא, בְּחֵיל הָאֲוִיר", + "cloze_word_start": 31, + "cloze_word_end": 40, + "cloze_hint": null, + "cloze_guid": "mHTVxT~f$T" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הַכְרָזָה", @@ -902383,8 +907261,8 @@ "match_method": "conjugated" }, { - "text": "אֲנִי מַכְרִיחַ אוֹתָהּ לְהוֹצִיא אֶת הָרֹאשׁ הַחוּצָה, וְיַחַד אִתָּהּ מוֹצִיא הַחוּצָה גַּם אֶת הָרֹאשׁ שֶׁלִּי", - "source": "time_tunnel_82", + "text": "\"תַּגִּידִי,\" מָשַׁכְתִּי אֶת שָׁרוֹן בְּיָדָהּ וּמַמָּשׁ הִכְרַחְתִּי אוֹתָהּ לְהִתְכּוֹפֵף, \"אַתְּ חוֹשֶׁבֶת שֶׁאֲנַחְנוּ עוֹמְדִים לָטוּס", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -903123,7 +908001,12 @@ "match_method": "inflected" }, { - "text": "אֲבָל אַחֲרֵי שֶׁכְּבָר הִגַּעְנוּ אֶל שְׁנַת 1946, וְיֵשׁ לָנוּ כַּרְטִיסִים לָרַכֶּבֶת", + "text": "הַאִם לַחֵץ הַזֶּה יֵשׁ קֶשֶׁר לָעֲרָבִי שֶׁנָּתַן לִי שִׁשָּׁה כַּרְטִיסֵי רַכֶּבֶת לַחֲדֵרָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "הֶעֱבַרְתִּי אֶת כַּרְטִיסֵי הָרַכֶּבֶת מִיָּד לְיָד וְסִדַּרְתִּי אוֹתָם כְּאִלּוּ הֵם קְלָפִים", "source": "time_tunnel_silver_train", "match_method": "inflected" } @@ -904399,6 +909282,11 @@ "text": "\"אִם יֵשׁ לִי צָעִיף, אֲנִי יָכוֹל לִכְרֹךְ אוֹתוֹ סְבִיב הַצַּוָּאר וְלָשֵׂאת אוֹתוֹ אִתִּי", "source": "little_prince", "match_method": "direct" + }, + { + "text": "לְיָדִי עוֹמֵד גֶּבֶר שֶׁהִתְעַטֵּף בְּטַלִּית לִקְרַאת תְּפִלַּת שַׁחֲרִית וְהוּא כּוֹרֵךְ תְּפִלִּין עַל זְרוֹעוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -905806,7 +910694,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "רַבִּים מֵהֶם עָלוּ עַל חָזֵהוּ וְהֵחֵלּוּ מְרַקְּדִים וּמְכַרְכְּרִים עָלָיו בִּמְשׁוּבָה", + "source": "gulliver", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "רַבִּים מֵהֶם עָלוּ עַל חָזֵהוּ וְהֵחֵלּוּ מְרַקְּדִים וּמְכַרְכְּרִים עָלָיו בִּמְשׁוּבָה", + "cloze_word_start": 55, + "cloze_word_end": 70, + "cloze_hint": null, + "cloze_guid": "tuoUTXsWGJ" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -906677,7 +911581,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַזְחָלִים הוֹסִיפוּ לְכַרְסֵם אֶת הֶעָלִים כְּאִלוּ לֹא אִכְפַּת לָהֶם כָּל אוֹתוֹ מַסָע שֶׁהֵם עוֹשִׂים", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַזְחָלִים הוֹסִיפוּ לְכַרְסֵם אֶת הֶעָלִים כְּאִלוּ לֹא אִכְפַּת לָהֶם כָּל אוֹתוֹ מַסָע שֶׁהֵם עוֹשִׂים", + "cloze_word_start": 21, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "d;-9R@Yc_I" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -907472,7 +912392,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "דָבָר לֹא יָדְעוּ בְּחַיֵיהֶם זוּלַת הַכִּרְסוּם", + "source": "silkworms", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "דָבָר לֹא יָדְעוּ בְּחַיֵיהֶם זוּלַת הַכִּרְסוּם", + "cloze_word_start": 37, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "oe.!UHJH,7" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּרְסוּם", @@ -908825,6 +913761,16 @@ "text": "אֲנַחְנוּ יוֹצְאִים מֵהַמְּכוֹנִית וְצוֹעֲדִים לְעֵבֶר כִּכַּר עַבּוֹ", "source": "time_tunnel_75", "match_method": "direct_prefix" + }, + { + "text": "״ אֲנִי חוֹזֵר וּמַנִּיחַ אֶת רֹאשִׁי עַל הַכַּר", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "הַמּוֹשָׁבָה נִמְצֵאת סָמוּךְ לְהַר תָּבוֹר, וּכְשֶׁטִּיַּלְנוּ בָּהּ, צָעַדְנוּ לְאֹרֶךְ רְחוֹב הַמְּיַסְּדִים וְהִצְטַלַּמְנוּ לְיַד כִּכַּר הַשּׁוֹמֵר", + "source": "time_tunnel_81", + "match_method": "direct_prefix" } ], "cloze": { @@ -915215,7 +920161,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"וְאִם אֲנִי אוֹכִיחַ לְךָ שֶׁהַמָּטוֹס יָכוֹל לַחְזוֹר לִהְיוֹת כָּשִׁיר לְטִיסָה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הוּא לֹא כָּשִׁיר לְטִיסָה", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" \"וְאִם אֲנִי אוֹכִיחַ לְךָ שֶׁהַמָּטוֹס יָכוֹל לַחְזוֹר לִהְיוֹת כָּשִׁיר לְטִיסָה", + "cloze_word_start": 67, + "cloze_word_end": 75, + "cloze_hint": null, + "cloze_guid": "fX]u54U|T#" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -915830,7 +920797,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גַּם הַחֲבֵרִים הָאֲחֵרִים שֶׁלָּבְשׁוּ אֶת הַטִישֶׁרְט עִם הַכִּתּוּב 'מִתְּקוּמָה לַשְּׁחָקִים' נֶעֶלְמוּ", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "גַּם הַחֲבֵרִים הָאֲחֵרִים שֶׁלָּבְשׁוּ אֶת הַטִישֶׁרְט עִם הַכִּתּוּב 'מִתְּקוּמָה לַשְּׁחָקִים' נֶעֶלְמוּ", + "cloze_word_start": 60, + "cloze_word_end": 70, + "cloze_hint": null, + "cloze_guid": "uRo_)U1F?Y" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "כִּתּוּב", @@ -915928,8 +920911,8 @@ "match_method": "conjugated" }, { - "text": "חַלּוֹן קָטָן הָיָה קָבוּעַ מִתַּחַת לַשֶּׁלֶט וּלְצִדּוֹ, בְּאוֹתִיּוֹת קְטַנּוֹת נִכְתַּב: אֶשְׁנַב הֲצָצָה \"אֶשְׁנַב הֲצָצָה", - "source": "time_tunnel_silver_train", + "text": "\"תְּנוּ לָעָם לְהַחְלִיט\" נִכְתַּב עַל הַצְּמִידִים", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -916826,15 +921809,15 @@ "examples": { "vetted": [ { - "text": "וְכַמָּה מְשֻׁנֶּה תֵּרָאֶה הַכְּתֹבֶת לְמִשְׁלוֹחַ", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "כָּל הַסִּימָנִים הָיוּ כְּמוֹ כְּתֹבֶת עַל הַקִּיר: פִּנּוּי גּוּשׁ קָטִיף", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "וְכַמָּה מְשֻׁנֶּה תֵּרָאֶה הַכְּתֹבֶת לְמִשְׁלוֹחַ", - "cloze_word_start": 28, - "cloze_word_end": 38, + "text": "כָּל הַסִּימָנִים הָיוּ כְּמוֹ כְּתֹבֶת עַל הַקִּיר: פִּנּוּי גּוּשׁ קָטִיף", + "cloze_word_start": 31, + "cloze_word_end": 39, "cloze_hint": null, "cloze_guid": "ho;m.69^/G" }, @@ -917492,14 +922475,14 @@ "match_method": "direct" }, { - "text": "יַלְדֵי הַמְּעָרוֹת יִרְאֶה אוֹר בְּקָרוֹב: מִנְהֶרֶת־הַזְּמַן 83 מִכְתָּבִים לְאָנָה פְרַנְק רוֹצִים לָדַעַת יוֹתֵר", - "source": "time_tunnel_82", - "match_method": "inflected" + "text": "תַּחְשְׁבוּ עַל זֶה: אַתָּה כּוֹתֵב מִכְתָּב לְמִי שֶׁעוֹמֵד לַהֲרוֹס אֶת הַבַּיִת שֶׁלְּךָ", + "source": "time_tunnel_77", + "match_method": "direct" }, { - "text": "סוֹף לְהִתְרָאוֹת בְּסֵפֶר הַבָּא: מִנְהֶרֶת־הַזְּמַן 83 מִכְתָּבִים לְאָנָה פְרַנְק סִפְרֵי 'מִנְהֶרֶת־הַזְּמַן' שֶׁרָאוּ אוֹר עַד עַתָּה: 1", - "source": "time_tunnel_82", - "match_method": "inflected" + "text": "\" שָׁרוֹן מַפְצִירָה בּוֹ, \"זֶה לֹא מִכְתָּב אָרֹךְ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -917601,18 +922584,21 @@ "examples": { "vetted": [ { - "text": "סנט־אכזופרי כתב ואייר את הנסיך הקטן במקומות שונים בניו יורק", - "source": "הנסיך הקטן", - "vetted": true + "text": "אִבַּדְתִּי גַּם אֶת הַיְּכֹלֶת לְקַשֵּׁר בֵּין מָה שֶׁקּוֹרֶה סְבִיבִי לְבֵין כְּתַב הַחִידָה", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "\"בּוֹא,״ הִיא הוֹסִיפָה, \"נַחְזֹר לַהֹוֶה וְנִפְתֹּר יַחַד אֶת כְּתַב הַחִידָה", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "״ רוֹנָה קָרְאָה, \"פִּעְנַחְנוּ כִּמְעַט אֶת כָּל כְּתַב הַחִידָה", + "source": "time_tunnel_78", + "match_method": "inflected" } ], - "cloze": { - "text": "סנט־אכזופרי כתב ואייר את הנסיך הקטן במקומות שונים בניו יורק", - "cloze_word_start": 12, - "cloze_word_end": 15, - "cloze_hint": null, - "cloze_guid": "s2$Qn#q-j(" - }, "rejected_count": 0 }, "noun_inflection": { @@ -919705,7 +924691,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מֵאָה וּשְׁלוֹשִׁים אֶלֶף אִישׁ חִבְּרוּ אֶת גּוּשׁ קָטִיף לַכֹּתֶל הַמַּעֲרָבִי, הָיִיתָ מַאֲמִין", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "\"מֵאָה וּשְׁלוֹשִׁים אֶלֶף אִישׁ חִבְּרוּ אֶת גּוּשׁ קָטִיף לַכֹּתֶל הַמַּעֲרָבִי, הָיִיתָ מַאֲמִין", + "cloze_word_start": 60, + "cloze_word_end": 68, + "cloze_hint": null, + "cloze_guid": "L" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "לוּחִית", @@ -947221,7 +952460,16 @@ "מָלוֹן" ], "confusables_guid": "PHqRe$Ue8&", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּנְוֵה דְּקָלִים הָיָה מָלוֹן, וְזֶה הָיָה הַמָּלוֹן הַמֻעֲדָף עָלֵינוּ", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מָלוֹן", @@ -947365,7 +952613,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה מְלוּנָה שֶׁל כֶּלֶב, אֲבָל גַּם כְּלָבִים אֵין כָּאן", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְהִנֵּה מְלוּנָה שֶׁל כֶּלֶב, אֲבָל גַּם כְּלָבִים אֵין כָּאן", + "cloze_word_start": 9, + "cloze_word_end": 17, + "cloze_hint": null, + "cloze_guid": "wf7bd,v|h@" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מְלוּנָה", @@ -949451,7 +954715,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "… רַק לַחֲמוֹר וּלְשׁוֹר נָאֶה לְלַחֵךְ עֵשֶׂב בֶּחָצֵר", + "source": "kid_on_mountain", + "match_method": "direct" + }, + { + "text": "גְּדִי־הָעִזִּים הָיָה שָׂמֵחַ, לִחֵךְ 2 אֶת הָעֵשֶׂב לְתֵאָבוֹן 3 , וְרַבִּי יוֹסֵי רָאָה וְלִבּוֹ מָלֵא גִיל אַף הוּא", + "source": "kid_on_mountain", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "… רַק לַחֲמוֹר וּלְשׁוֹר נָאֶה לְלַחֵךְ עֵשֶׂב בֶּחָצֵר", + "cloze_word_start": 31, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "f~+&Up+Y|-" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -951456,7 +956741,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"יֵשׁ חֻלְיוֹת בּוֹגְרִים וְיֵשׁ חֻלְיוֹת יְלָדִים, וְכָל חֻלְיָה מְקַבֶּלֶת גִּזְרַת לְחִימָה,\" הוּא דִּבֵּר מַהֵר", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" \"יֵשׁ חֻלְיוֹת בּוֹגְרִים וְיֵשׁ חֻלְיוֹת יְלָדִים, וְכָל חֻלְיָה מְקַבֶּלֶת גִּזְרַת לְחִימָה,\" הוּא דִּבֵּר מַהֵר", + "cloze_word_start": 88, + "cloze_word_end": 96, + "cloze_hint": null, + "cloze_guid": "BibXH(4bEr" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "לְחִימָה", @@ -951700,8 +957001,13 @@ "match_method": "direct" }, { - "text": "״מִלְחָמוֹת תָּמִיד פּוֹרְצוֹת בִּגְלַל אֵיזֶשֶׁהוּ אֵרוּעַ, שֶׁגּוֹרֵם לְמַצָּב מָתוּחַ לִהְיוֹת עוֹד יוֹתֵר מָתוּחַ,״ אַבָּא הֵשִׁיב", - "source": "time_tunnel_63", + "text": "מִלְחֶמֶת שֵׁשֶׁת הַיָּמִים הָיְתָה בִּשְׁנַת 1967", + "source": "time_tunnel_82", + "match_method": "inflected" + }, + { + "text": "גַּם תְּשׁוּבָה לַשְּׁאֵלָה הַזֹּאת יֵשׁ לִי: זֶה קָרָה בְּמַהֲלַךְ מִלְחֶמֶת הָעוֹלָם הָרִאשׁוֹנָה", + "source": "time_tunnel_82", "match_method": "inflected" } ], @@ -952663,7 +957969,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מְעַנְיֵן אִם לוֹחֲמֵי הַמַּחְתָּרוֹת יָדְעוּ עָלֶיהָ", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "\"בָּרוּר,״ נִיב הִסְכִּים אִתָּהּ, \"אֲבָל לוֹחֲמֵי הַמַּחְתָּרוֹת תָּמִיד תִּכְנְנוּ בְּרִיחוֹת", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "לָכֵן לוֹחֲמֵי הַמַּחְתָּרוֹת הֶחְרִימוּ מִמַּחֲנוֹת הַצָּבָא הַבְּרִיטִיִּים אֶת רֹב הַנֶּשֶׁק שֶׁבּוֹ הֵם הִשְׁתַּמְּשׁוּ", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\"מְעַנְיֵן אִם לוֹחֲמֵי הַמַּחְתָּרוֹת יָדְעוּ עָלֶיהָ", + "cloze_word_start": 15, + "cloze_word_end": 23, + "cloze_hint": null, + "cloze_guid": "imt}g^t>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "לוֹחֵם", @@ -954053,6 +959385,11 @@ "source": "time_tunnel_78", "match_method": "direct" }, + { + "text": "מֵרֹב לַחַץ אֲנִי בְּקֹשִי נוֹשֵׁם", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "\"טוֹב,״ שָׁרוֹן אָמְרָה אַחֲרֵי שֶׁיְּהוּדָה סִיֵּם עִם הַמַּנְעוּל הַשְּׁלִישִׁי, \"זֹאת הַהִזְדַּמְּנוּת לַחְשׁוֹב קְצָת בְּלִי לַחַץ", "source": "time_tunnel_78", @@ -954979,13 +960316,13 @@ "match_method": "conjugated" }, { - "text": "כָּמוֹנִי, גַּם הִיא נִלְחֲצָה מֵהַשְּׁאֵלָה", - "source": "time_tunnel_70", + "text": "אִם הֲיִיתֶם שָׁם בִּמְקוֹמִי, לֹא הֲיִיתֶם נִלְחָצִים", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "שָׁרוֹן נִלְחֲצָה לֹא פָּחוֹת מִמֶּנִּי", - "source": "time_tunnel_78", + "text": "כָּמוֹנִי, גַּם הִיא נִלְחֲצָה מֵהַשְּׁאֵלָה", + "source": "time_tunnel_70", "match_method": "conjugated" } ], @@ -955882,8 +961219,8 @@ "match_method": "conjugated" }, { - "text": "״ נִצַּלְתִּי אֶת הַהִזְדַּמְּנוּת שֶׁרַבִּי מַיְמוֹן וְאִשְׁתּוֹ הִתְלַחֲשׁוּ בֵּינֵיהֶם סָמוּךְ לַדֶּלֶת וּפָנִיתִי אֶל שָׁרוֹן", - "source": "time_tunnel_78", + "text": "הֵם מִתְלַחֲשִׁים, וְלָכֵן אִי אֶפְשָׁר לְהָבִין מָה הֵם אוֹמְרִים", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -959373,19 +964710,24 @@ "examples": { "vetted": [ { - "text": "\"עָלֶיךָ לְקַיֵּם אֶת הַהַבְטָחָה שֶׁלְּךָ,\" אָמַר לִי בְּרַכּוּת הַנָּסִיךְ הַקָּטָן שֶׁשּׁוּב הִתְיַשֵּׁב לְיָדִי", - "source": "הנסיך הקטן", - "vetted": true + "text": "״ הִיא נִשְׁמַעַת מְאֻשֶּׁרֶת, \"הָאִרְגּוּן שֶׁהֶחְלִיט לְהַעֲבִיר אֶת הַשְּׁמִירָה עַל הַמּוֹשָׁבוֹת הָעִבְרִיּוֹת לִידֵי הַיְּהוּדִים", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "הוּא הָיָה בָּטוּחַ שֶׁאִם הַגַּנָּבִים יֵדְעוּ שֶׁהַשְּׁמִירָה נִמְסְרָה לִידֵי הַצֶּ'רְקֶסִים, הֵם לֹא יָבוֹאוּ עוֹד לִגְנוֹב", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "\"עָלֶיךָ לְקַיֵּם אֶת הַהַבְטָחָה שֶׁלְּךָ,\" אָמַר לִי בְּרַכּוּת הַנָּסִיךְ הַקָּטָן שֶׁשּׁוּב הִתְיַשֵּׁב לְיָדִי", - "cloze_word_start": 108, - "cloze_word_end": 115, + "text": "״ הִיא נִשְׁמַעַת מְאֻשֶּׁרֶת, \"הָאִרְגּוּן שֶׁהֶחְלִיט לְהַעֲבִיר אֶת הַשְּׁמִירָה עַל הַמּוֹשָׁבוֹת הָעִבְרִיּוֹת לִידֵי הַיְּהוּדִים", + "cloze_word_start": 116, + "cloze_word_end": 122, "cloze_hint": null, - "cloze_guid": "pED556@fCz" + "cloze_guid": "z~RIy`R}]Q" }, - "rejected_count": 1 + "rejected_count": 0 }, "noun_inflection": null, "conjugation": null, @@ -959537,6 +964879,11 @@ "text": "״כִּמְעַט כָּל לַיְלָה הֵם יוֹצְאִים לְשָׁם וּנְסוֹגִים", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "בַּחוּץ הָיָה חשֶׁךְ וְלָכֵן הִנַּחְתִּי שֶׁעַכְשָׁיו לַיְלָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -960728,6 +966075,11 @@ "text": "עַכְשָׁיו הֵם לֹא נִרְאִים שׁוֹטְרִים, אֶלָּא כְּמוֹ שְׁנֵי לֵיצָנִים שֶׁמְּשַׂחֲקִים בְּהַצָּגַת יְלָדִים", "source": "time_tunnel_82", "match_method": "inflected" + }, + { + "text": "לִפְנֵי שָׁנָה, בְּיוֹם־הַהֻלֶּדֶת שֶׁל אִילָנָה, שָׁלַח אַבָּא לֵיצָן גָּדוֹל וְיָפֶה לְגַן־הַיְלָדִים", + "source": "ilana", + "match_method": "direct" } ], "cloze": { @@ -960839,8 +966191,8 @@ "match_method": "direct" }, { - "text": "\"הַגִּישִׁי אוֹתוֹ לְכָאן,\" אָמַר הַדּוֹדוֹ", - "source": "alice_wonderland", + "text": "כִּי מָה פֵּרוּשׁ 'לְכָאן', הֲרֵי אֵין לָנוּ שׁוּם מֻשָּׂג מַהוּ הַ'כָּאן' הַזֶּה", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -961982,7 +967334,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "דּוֹמֶה כְּאִלּוּ נִלְכַּד בְּרֶשֶׁת גְּדוֹלָה", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "דּוֹמֶה כְּאִלּוּ נִלְכַּד בְּרֶשֶׁת גְּדוֹלָה", + "cloze_word_start": 18, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "ErZar:)f[f" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -963584,6 +968952,11 @@ "text": "הִיא מְלֻכְלֶכֶת כְּאִלּוּ נָפְלָה לְתוֹךְ אַמְבַּטְיָה שֶׁל בֹּץ", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "\" מִבְּלִי לְהָסִיר אֶת עֵינַי מֵהַיָּדַיִם שֶׁנִּשְׁלָחוֹת הַחוּצָה מִתּוֹךְ הַבּוֹר, מְלֻכְלָכוֹת בְּחוֹל, אֲנִי מַצְבִּיעַ לְאָחוֹר", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -966505,15 +971878,15 @@ "examples": { "vetted": [ { - "text": "״ הִיא דִּבְּרָה אֵלַי כְּאִלּוּ הִיא הַמּוֹרָה וַאֲנִי הַתַּלְמִיד שֶׁלָּהּ", + "text": "״ אֵלֶּה הָיוּ הַצְּעָקוֹת שֶׁהִשְׁמִיעוּ תַּלְמִידֵי הַכִּתָּה שֶׁלָּנוּ", "source": "time_tunnel_78", - "match_method": "direct_prefix" + "match_method": "inflected" } ], "cloze": { - "text": "״ הִיא דִּבְּרָה אֵלַי כְּאִלּוּ הִיא הַמּוֹרָה וַאֲנִי הַתַּלְמִיד שֶׁלָּהּ", - "cloze_word_start": 56, - "cloze_word_end": 67, + "text": "״ אֵלֶּה הָיוּ הַצְּעָקוֹת שֶׁהִשְׁמִיעוּ תַּלְמִידֵי הַכִּתָּה שֶׁלָּנוּ", + "cloze_word_start": 42, + "cloze_word_end": 53, "cloze_hint": null, "cloze_guid": "GHZpd4]>Q*" }, @@ -967859,6 +973232,11 @@ "text": "בֶּאֱמֶת, יֵשׁ פֹּה בְּקֹשִי מָקוֹם בִּשְׁבִילֵךְ, וְשׁוּם מָקוֹם בִּכְלָל בִּשְׁבִיל סִפְרֵי לִמּוּד", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "וּבֶאֱמֶת לִמּוּדֵי הַגֵּאוֹגְרַפְיָה עָזְרוּ לִי מְאוֹד", + "source": "little_prince", + "match_method": "inflected" } ], "cloze": { @@ -968114,6 +973492,16 @@ "text": "לְמָחֳרָת בַּבֹּקֶר, כְּשֶׁפָּגַשְׁתִּי אֶת שָׁרוֹן, הִיא סִפְּרָה לִי שֶׁגַּם הִיא לֹא נִרְדְּמָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "לְמָחֳרָת, בַּחַג עַצְמוֹ, אֲנַחְנוּ אַף פַּעַם לֹא נִשְׁאָרִים בַּבַּיִת", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לְמָחֳרָת הַיּוֹם בָּאוּ שְׁלִיחֵי חֶלְזוֹנְיָה לְבַקֵּשׁ מֵאֵת מֶלֶךְ לִילִיפּוּטְיָה שֶׁיִּכְרֹת עִמָּם בְּרִית", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { @@ -968162,6 +973550,16 @@ "confusables_guid": "d?f&pp5`qJ", "examples": { "vetted": [ + { + "text": "הַאִם לְמַעַן בִּטְחוֹנֵנוּ עָדִיף שֶׁנַּגִּיד שֶׁאֲנַחְנוּ צֶ'רְקֶסִים", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "בְּכַוָּנָה קָנָה לוֹ הַפַּעַם גְּדִי רַךְ, לְמַעַן אֲשֶׁר יִגְדַּל בְּבֵיתוֹ וְיֶאֱהַב אֶת אֲדוֹנוֹ", + "source": "kid_on_mountain", + "match_method": "direct" + }, { "text": "הַבַּחוּרִים הַנּוֹעָזִים הָאֵלֶּה לֹא הֶחְמִיצוּ שׁוּם הִזְדַּמְּנוּת לִפְעוֹל לְמַעַן עַם יִשְׂרָאֵל, וְאַתָּה יוֹדֵעַ מָה", "source": "time_tunnel_silver_train", @@ -968248,7 +973646,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ בְּפָנָיו שֶׁל קְרָאוּזֶה מִתְהַדְּקוֹת הַלְּסָתוֹת", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "״ בְּפָנָיו שֶׁל קְרָאוּזֶה מִתְהַדְּקוֹת הַלְּסָתוֹת", + "cloze_word_start": 42, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "ypu4M1WXXb" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "לֶסֶת", @@ -968317,6 +973731,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"מַמָּשׁ לֹא,״ הִיא אוֹמֶרֶת, \"וְאַל תִּלְעַג לָהֶם", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "\"הִיא הָיְתָה מִשְׁתַּעֶלֶת לְלֹא הֶפְסֵק וּמַעֲמִידָה פְּנֵי גּוֹסֶסֶת, רַק כְּדֵי שֶׁלֹּא יִלְעֲגוּ לָהּ", "source": "little_prince", @@ -968324,9 +973743,9 @@ } ], "cloze": { - "text": "\"הִיא הָיְתָה מִשְׁתַּעֶלֶת לְלֹא הֶפְסֵק וּמַעֲמִידָה פְּנֵי גּוֹסֶסֶת, רַק כְּדֵי שֶׁלֹּא יִלְעֲגוּ לָהּ", - "cloze_word_start": 92, - "cloze_word_end": 101, + "text": "\"מַמָּשׁ לֹא,״ הִיא אוֹמֶרֶת, \"וְאַל תִּלְעַג לָהֶם", + "cloze_word_start": 37, + "cloze_word_end": 45, "cloze_hint": null, "cloze_guid": "hkV{%u>]s" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1014769,7 +1020470,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁרוֹן, שֶׁרַק לִפְנֵי רֶגַע אָמְרָה שֶׁמָּה שֶׁאֲנִי עוֹשֶׂה מַמָּשׁ מַגְעִיל, חוֹטֶפֶת מִיָּדִי אֶת הַמִּכְתָּב", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "שָׁרוֹן, שֶׁרַק לִפְנֵי רֶגַע אָמְרָה שֶׁמָּה שֶׁאֲנִי עוֹשֶׂה מַמָּשׁ מַגְעִיל, חוֹטֶפֶת מִיָּדִי אֶת הַמִּכְתָּב", + "cloze_word_start": 90, + "cloze_word_end": 98, + "cloze_hint": null, + "cloze_guid": "fGEIkc`1K1" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1014884,26 +1020601,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"הַפְּרָחִים מְגַדְּלִים קוֹצִים כְּבָר מִילְיוֹנֵי שָׁנִים", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "וּבְכָל זֹאת הַכְּבָשִׂים אוֹכְלוֹת אֶת הַפְּרָחִים כְּבָר מִילְיוֹנֵי שָׁנִים", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "\" \"חֲמֵשׁ מֵאוֹת מִילְיוֹן שֶׁל מָה", "source": "little_prince", "match_method": "direct" - }, - { - "text": "\" \"חֲמֵשׁ מֵאוֹת וְאֶחָד מִילְיוֹן שֶׁל מָה", - "source": "little_prince", - "match_method": "direct" - }, - { - "text": "אִם כֵּן, כְּמוֹ שֶׁאָמַרְתִּי, חֲמֵשׁ מֵאוֹת וְאֶחָד מִילְיוֹן", - "source": "little_prince", - "match_method": "direct" } ], "cloze": { - "text": "\" \"חֲמֵשׁ מֵאוֹת מִילְיוֹן שֶׁל מָה", - "cloze_word_start": 17, - "cloze_word_end": 26, + "text": "\"הַפְּרָחִים מְגַדְּלִים קוֹצִים כְּבָר מִילְיוֹנֵי שָׁנִים", + "cloze_word_start": 40, + "cloze_word_end": 51, "cloze_hint": null, "cloze_guid": "vsM4e[S@#D" }, @@ -1015030,14 +1020747,14 @@ "match_method": "direct" }, { - "text": "\"אַךְ מָה שֶׁהֵם מְחַפְּשִׂים עָשׂוּי לְהִמָּצֵא בְּשׁוֹשַׁנָּה אַחַת אוֹ בִּמְעַט מַיִם", + "text": "הָיוּ לִי מֵי שְׁתִיָּה בְּקשִׁי לִשְׁמוֹנָה יָמִים", "source": "little_prince", - "match_method": "direct" + "match_method": "inflected" }, { - "text": "כְּשֶׁהֵם הָיוּ יְלָדִים, הֵם נֶהֱנוּ מְאוֹד מִמַּגְלֵשׁוֹת מַיִם", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "מֵי הַשְּׁתִיָּה הָלְכוּ וְאָזְלוּ, וַאֲנִי הִתְחַלְתִּי לַחְשׁשׁ מֵהַגָּרוּעַ מִכֹּל", + "source": "little_prince", + "match_method": "inflected" } ], "cloze": { @@ -1016841,6 +1022558,11 @@ "source": "time_tunnel_78", "match_method": "direct" }, + { + "text": "בִּזְכוּת הַקִּיר שֶׁמַּסְתִּיר אוֹתָהּ, הִיא נִרְאֵית כְּמוֹ מִישֶׁהִי שֶׁמַּרְשָׁה לְעַצְמָהּ לְהֵרָאוֹת מְרֻצָּה וַאֲפִלּוּ מְאֻשֶּׁרֶת", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "'\" \"מִישֶׁהִי אָמְרָה,\" לָחֲשָׁה אַלִיס, \"שֶׁמָּה שֶׁמְּסוֹבֵב אֶת הָעוֹלָם הוּא אֲנָשִׁים שֶׁמִּתְעַסְּקִים רַק בָּעִנְיָנִים שֶׁל עַצְמָם", "source": "alice_wonderland", @@ -1018580,6 +1024302,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"יָכוֹל לִהְיוֹת שֶׁכָּל הַבָּתִּים בַּיִּשּׁוּב הַזֶּה עוֹמְדִים לִמְכִירָה", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + }, { "text": "\"אֲנִי מַחְזִיק אוֹתָם לִמְכִירָה,\" הוֹסִיף הַכּוֹבְעָן בְּתוֹר הֶסְבֵּר, \"אֵין לִי שׁוּם כּוֹבַע מִשֶּׁלִּי", "source": "alice_wonderland", @@ -1018587,9 +1024314,9 @@ } ], "cloze": { - "text": "\"אֲנִי מַחְזִיק אוֹתָם לִמְכִירָה,\" הוֹסִיף הַכּוֹבְעָן בְּתוֹר הֶסְבֵּר, \"אֵין לִי שׁוּם כּוֹבַע מִשֶּׁלִּי", - "cloze_word_start": 23, - "cloze_word_end": 33, + "text": "\"יָכוֹל לִהְיוֹת שֶׁכָּל הַבָּתִּים בַּיִּשּׁוּב הַזֶּה עוֹמְדִים לִמְכִירָה", + "cloze_word_start": 66, + "cloze_word_end": 76, "cloze_hint": null, "cloze_guid": "w3~=H5h" }, @@ -1029482,6 +1035271,11 @@ "text": "אֲנִי לֹא מַמְלִיץ לְאַף אֶחָד לַעֲמוֹד בְּמַצָּב שֶׁבּוֹ עָמַדְתִּי בְּאוֹתוֹ רֶגַע", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "אִם לֹא, אֲנִי מַמְלִיץ לָכֶם לְבַקֵּר בַּמָּקוֹם", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1033188,8 +1038982,8 @@ "match_method": "direct" }, { - "text": "הַגְּרִיפוֹן הִתְיַשֵּׁב וְשִׁפְשֵׁף אֶת עֵינָיו; אַחַר הִתְבּוֹנֵן בַּמַּלְכָּה עַד שֶׁנֶּעֶלְמָה מִן הָעַיִן; וְאָז גִּחֵךְ", - "source": "alice_wonderland", + "text": "הוּא יִהְיֶה פִּי אֶלֶף יוֹתֵר יָפֶה מִן הַצְּרִיף", + "source": "ilana", "match_method": "direct" } ], @@ -1034568,7 +1040362,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "', אֲבָל תְּשׁוּבָתָהּ שֶׁל מְנָיָה בּוֹלֶמֶת אוֹתִי", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "', אֲבָל תְּשׁוּבָתָהּ שֶׁל מְנָיָה בּוֹלֶמֶת אוֹתִי", + "cloze_word_start": 28, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "t*reQ^76Cv" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מְנָיָה", @@ -1047428,7 +1053238,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא הָיָה בָּטוּחַ שֶׁאִם הַגַּנָּבִים יֵדְעוּ שֶׁהַשְּׁמִירָה נִמְסְרָה לִידֵי הַצֶּ'רְקֶסִים, הֵם לֹא יָבוֹאוּ עוֹד לִגְנוֹב", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הוּא הָיָה בָּטוּחַ שֶׁאִם הַגַּנָּבִים יֵדְעוּ שֶׁהַשְּׁמִירָה נִמְסְרָה לִידֵי הַצֶּ'רְקֶסִים, הֵם לֹא יָבוֹאוּ עוֹד לִגְנוֹב", + "cloze_word_start": 64, + "cloze_word_end": 73, + "cloze_hint": null, + "cloze_guid": "hvk=9B/B/I" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1050891,7 +1056717,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַדָגִים הִתְמַעֲטוּ בַּשָׁבוּעוֹת הָאַחֲרוֹנִים", + "source": "shell_story", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַדָגִים הִתְמַעֲטוּ בַּשָׁבוּעוֹת הָאַחֲרוֹנִים", + "cloze_word_start": 9, + "cloze_word_end": 20, + "cloze_hint": null, + "cloze_guid": "BN#:G`fl0^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1054167,6 +1060009,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "שִׁשָּׁה סוּסִים לְבָנִים רְתוּמִים אֵלֶיהָ וּלְצִדָּהּ רָכַב נַנָּס חָבוּשׁ קוֹבַע־זָהָב וְלָבוּשׁ מְעִיל נוֹצֵץ", + "source": "gulliver", + "match_method": "direct" + }, { "text": "הֲרֵי הָיִינוּ בְּעִצּוּמוֹ שֶׁל קַיִץ, וּבְיוֹם כָּל כָּךְ חַם, מִי סוֹחֵב אִתּוֹ בַּתַּרְמִיל מְעִיל", "source": "time_tunnel_70", @@ -1054174,9 +1060021,9 @@ } ], "cloze": { - "text": "הֲרֵי הָיִינוּ בְּעִצּוּמוֹ שֶׁל קַיִץ, וּבְיוֹם כָּל כָּךְ חַם, מִי סוֹחֵב אִתּוֹ בַּתַּרְמִיל מְעִיל", - "cloze_word_start": 96, - "cloze_word_end": 102, + "text": "שִׁשָּׁה סוּסִים לְבָנִים רְתוּמִים אֵלֶיהָ וּלְצִדָּהּ רָכַב נַנָּס חָבוּשׁ קוֹבַע־זָהָב וְלָבוּשׁ מְעִיל נוֹצֵץ", + "cloze_word_start": 100, + "cloze_word_end": 106, "cloze_hint": null, "cloze_guid": "dJq:x07OKy" }, @@ -1058123,7 +1063970,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל כַּוָנוֹת טוֹבוֹת לְחוּד וּמְצִיאוּת לְחוּד", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "\" אַדְוָה קוֹטַעַת אוֹתָהּ, \"כִּי בַּמְּצִיאוּת דְּבָרִים כָּאֵלֶּה לֹא קוֹרִים", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אֲבָל כַּוָנוֹת טוֹבוֹת לְחוּד וּמְצִיאוּת לְחוּד", + "cloze_word_start": 31, + "cloze_word_end": 42, + "cloze_hint": null, + "cloze_guid": "F0*K~SJo[L" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מְצִיאוּת", @@ -1059759,6 +1065627,16 @@ "text": "אַל תִּשְׁאֲלוּ אוֹתִי אֵיךְ חָזַרְנוּ וְנִכְנַסְנוּ אֵלָיו, כִּי אִבַּדְתִּי אֶת הַיְּכֹלֶת לְהִתְמַצֵּא", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "הֲרֵי עִם נִסָּיוֹן כָּל כָּךְ עָשִׁיר, הָיִיתִי אָמוּר לְהִתְמַצֵּא הַרְבֵּה יוֹתֵר טוֹב", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "״ וּמִזֶּה הֵבַנְתִּי שֶׁהִיא מִתְמַצֵּאת בָּעִנְיָנִים לֹא פָּחוֹת מִמֶּנִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1060200,7 +1066078,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מַמָּשׁ,״ שָׁרוֹן קוֹפֶצֶת עַל הַמְּצִיאָה וּמְמַהֶרֶת לְאַשֵּׁר, \"גַּם הֵם חוֹלִים, מְאוֹד", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "\"מַמָּשׁ,״ שָׁרוֹן קוֹפֶצֶת עַל הַמְּצִיאָה וּמְמַהֶרֶת לְאַשֵּׁר, \"גַּם הֵם חוֹלִים, מְאוֹד", + "cloze_word_start": 32, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "q1q9pz!37k" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מְצִיאָה", @@ -1065133,7 +1071027,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַאִם כָּךְ נָהַג הַצָּבָא הַמִּצְרִי בְּמִבְצַע סִינַי", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הַאִם כָּךְ נָהַג הַצָּבָא הַמִּצְרִי בְּמִבְצַע סִינַי", + "cloze_word_start": 27, + "cloze_word_end": 37, + "cloze_hint": null, + "cloze_guid": "m*_yBi>I#Z" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1065188,6 +1071098,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "זֶה הָיָה תְּמוּרַת שָׁלוֹם, כְּמוֹ כְּשֶׁפִּנּוּ אֶת סִינַי וְקִבַּלְנוּ שָׁלוֹם עִם מִצְרַיִם", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "הַסִּפּוּר הַהוּא הִתְחִיל כְּשֶׁשָּׁרוֹן וַאֲנִי בִּקַּשְׁנוּ מִמִּנְהֶרֶת־הַזְּמַן לְהַחְזִיר אוֹתָנוּ בַּזְּמַן אֶל יְמֵי יְצִיאַת מִצְרַיִם", "source": "time_tunnel_82", @@ -1065195,11 +1071110,11 @@ } ], "cloze": { - "text": "הַסִּפּוּר הַהוּא הִתְחִיל כְּשֶׁשָּׁרוֹן וַאֲנִי בִּקַּשְׁנוּ מִמִּנְהֶרֶת־הַזְּמַן לְהַחְזִיר אוֹתָנוּ בַּזְּמַן אֶל יְמֵי יְצִיאַת מִצְרַיִם", - "cloze_word_start": 134, - "cloze_word_end": 143, + "text": "זֶה הָיָה תְּמוּרַת שָׁלוֹם, כְּמוֹ כְּשֶׁפִּנּוּ אֶת סִינַי וְקִבַּלְנוּ שָׁלוֹם עִם מִצְרַיִם", + "cloze_word_start": 86, + "cloze_word_end": 95, "cloze_hint": null, - "cloze_guid": "y)}`U;w]nA" + "cloze_guid": "xS${B||VUd" }, "rejected_count": 0 }, @@ -1065866,8 +1071781,8 @@ "match_method": "conjugated" }, { - "text": "\" מִקַּדְתִּי אֶת הַמַּבָּט בַּמַּפְתֵּחַ", - "source": "time_tunnel_75", + "text": "אֲבָל אַחֲרֵי שֶׁיּוּבַל שָׁאַל אִם הוּא צָרִיךְ לְהַסְבִּיר לִי, חָזַרְתִּי לִהְיוֹת מְמֻקָּד", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1067222,6 +1073137,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אֲנִי מְנַסֶּה לְשַׁחְזֵר אֶת נְתִיב הַשַּׁיִט שֶׁלָּנוּ כְּדֵי שֶׁאוּכַל לְמַקֵּם אֶת עַצְמִי", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "אֲנִי מַעֲבִיר אֶת הָעֲשָׁשִׁית מִיַּד יָמִין לְיַד שְׂמֹאל וּמְנַסֶּה לְמַקֵּם אֶת עַצְמִי בַּזְּמַן", "source": "time_tunnel_silver_train", @@ -1067234,9 +1073154,9 @@ } ], "cloze": { - "text": "אֲנִי מַעֲבִיר אֶת הָעֲשָׁשִׁית מִיַּד יָמִין לְיַד שְׂמֹאל וּמְנַסֶּה לְמַקֵּם אֶת עַצְמִי בַּזְּמַן", - "cloze_word_start": 71, - "cloze_word_end": 79, + "text": "אֲנִי מְנַסֶּה לְשַׁחְזֵר אֶת נְתִיב הַשַּׁיִט שֶׁלָּנוּ כְּדֵי שֶׁאוּכַל לְמַקֵּם אֶת עַצְמִי", + "cloze_word_start": 74, + "cloze_word_end": 82, "cloze_hint": null, "cloze_guid": "L^_O!N[85%" }, @@ -1070326,7 +1076246,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אַף־עַל־פִּי שֶׁהוֹסִיף הַגֹלֶם לִשְׁכַּב בִּדְמָמָה, כָּרָאוּי לְגֹלֶם, הָיָה מַרְאֵהוּ מַפְחִיד בְּמִקְצָת", + "source": "silkworms", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אַף־עַל־פִּי שֶׁהוֹסִיף הַגֹלֶם לִשְׁכַּב בִּדְמָמָה, כָּרָאוּי לְגֹלֶם, הָיָה מַרְאֵהוּ מַפְחִיד בְּמִקְצָת", + "cloze_word_start": 98, + "cloze_word_end": 108, + "cloze_hint": null, + "cloze_guid": "ibz$g2uA!a" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִקְצָת", @@ -1072197,7 +1078133,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מְטוֹסִים מַמְרִיאִים לַשְּׁחָקִים וּתְקוּמָה", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"מְטוֹסִים מַמְרִיאִים לַשְּׁחָקִים וּתְקוּמָה", + "cloze_word_start": 11, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "n?J_y^g.=E" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1072622,15 +1078574,15 @@ "examples": { "vetted": [ { - "text": "בְּבֹקֶר הַהַמְרָאָה הוּא דָּאַג לְהַשְׁאִיר אֶת הַכּוֹכָב שֶׁלּוֹ נָקִי וּמְסֻדָּר", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "\" \"זֶה מַסְלוּל הַמְרָאָה שֶׁל מַחֲנֶה צְבָאִי,\" הוּא הֵשִׁיב, \"כָּאן לֹא מִגְרַשׁ מִשְׂחָקִים לִילָדִים", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "בְּבֹקֶר הַהַמְרָאָה הוּא דָּאַג לְהַשְׁאִיר אֶת הַכּוֹכָב שֶׁלּוֹ נָקִי וּמְסֻדָּר", - "cloze_word_start": 9, - "cloze_word_end": 20, + "text": "\" \"זֶה מַסְלוּל הַמְרָאָה שֶׁל מַחֲנֶה צְבָאִי,\" הוּא הֵשִׁיב, \"כָּאן לֹא מִגְרַשׁ מִשְׂחָקִים לִילָדִים", + "cloze_word_start": 16, + "cloze_word_end": 25, "cloze_hint": null, "cloze_guid": "bXfwT;x#:w" }, @@ -1073129,7 +1079081,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אוּלַם רַבִּים מִן הַתּוֹשָׁבִים הִתְמָרְדוּ נֶגֶד הַחֹק הַזֶּה, וּמִלְחֶמֶת אַחִים אַכְזָרִית פָּרְצָה בָּאָרֶץ", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אוּלַם רַבִּים מִן הַתּוֹשָׁבִים הִתְמָרְדוּ נֶגֶד הַחֹק הַזֶּה, וּמִלְחֶמֶת אַחִים אַכְזָרִית פָּרְצָה בָּאָרֶץ", + "cloze_word_start": 33, + "cloze_word_end": 44, + "cloze_hint": null, + "cloze_guid": "q%tq5R;A#^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1079978,7 +1085946,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לֹא הִרְגַּשְׁתִּי חוֹלֶה, הִרְגַּשְׁתִּי סְתָם חֲסַר מֶרֶץ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "לֹא הִרְגַּשְׁתִּי חוֹלֶה, הִרְגַּשְׁתִּי סְתָם חֲסַר מֶרֶץ", + "cloze_word_start": 54, + "cloze_word_end": 59, + "cloze_hint": null, + "cloze_guid": "dV#>d[!6F&" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מֶרֶץ", @@ -1080909,12 +1086893,12 @@ "match_method": "direct" }, { - "text": "נֹא־־־־כַל כָּל הָ־עֶ־־־־רֶב מָרָק יְרַקְרַק, יְרַקְרַק", + "text": "זַמֵּר לָהּ אֶת 'מְרַק צַבִּים', בְּסֵדֶר, בָּחוּרְצִ'יק", "source": "alice_wonderland", - "match_method": "direct" + "match_method": "inflected" }, { - "text": "בּוֹא, מָרָק יְרַקְרַק, בְּצַלַּחַת חַמָּה", + "text": "נֹא־־־־כַל כָּל הָ־עֶ־־־־רֶב מָרָק יְרַקְרַק, יְרַקְרַק", "source": "alice_wonderland", "match_method": "direct" } @@ -1084783,7 +1090767,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בָּזֶה אַחַר זֶה הִתְחִילוּ הַזְחָלִים עוֹטְפִים עַצְמָם בְּקוּרֵי מֶשִׁי דַקִיקִים וַאֲרֻכִּים שֶׁיָצְאוּ מִתּוֹךְ פִּיהֶם", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "בָּזֶה אַחַר זֶה הִתְחִילוּ הַזְחָלִים עוֹטְפִים עַצְמָם בְּקוּרֵי מֶשִׁי דַקִיקִים וַאֲרֻכִּים שֶׁיָצְאוּ מִתּוֹךְ פִּיהֶם", + "cloze_word_start": 67, + "cloze_word_end": 73, + "cloze_hint": null, + "cloze_guid": "j5{H)z0NFH" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מֶשִׁי", @@ -1090466,15 +1096466,15 @@ "examples": { "vetted": [ { - "text": "הוּא נִשְׁלַח מִטַּעַם הַמֶּמְשָׁלָה", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "\" אִמָּא אוֹמֶרֶת בִּכְאֵב, \"אַף מֶמְשָׁלָה לֹא מְקִימָה יִשּׁוּבִים כְּדֵי לַהֲרוֹס אוֹתָם", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "הוּא נִשְׁלַח מִטַּעַם הַמֶּמְשָׁלָה", - "cloze_word_start": 23, - "cloze_word_end": 36, + "text": "\" אִמָּא אוֹמֶרֶת בִּכְאֵב, \"אַף מֶמְשָׁלָה לֹא מְקִימָה יִשּׁוּבִים כְּדֵי לַהֲרוֹס אוֹתָם", + "cloze_word_start": 33, + "cloze_word_end": 43, "cloze_hint": null, "cloze_guid": "oQSZKHHsyE" }, @@ -1091818,6 +1097818,16 @@ "text": "הִיא יָלְדָה אֶת הַבַּת, וְהִמְשִׁיכָה לְנַהֵל לְבַדָּהּ אֶת הַמֶּשֶׁק", "source": "time_tunnel_70", "match_method": "direct_prefix" + }, + { + "text": "בָּאוּ שׁוֹטְרִים וְחִפְּשׂוּ בְּכָל הַמֶּשֶׁק וּבַשָּׂדוֹת – וְלֹא מָצְאוּ אֶת הַצְּרִיף הַזֶּה", + "source": "ilana", + "match_method": "direct_prefix" + }, + { + "text": "אוּלַי הָיָה צְרִיף כָּזֶה בְּמֶשֶׁק אַחֵר", + "source": "ilana", + "match_method": "direct_prefix" } ], "cloze": { @@ -1093391,6 +1099401,11 @@ "source": "time_tunnel_70", "match_method": "conjugated" }, + { + "text": "כַּאֲשֶׁר הִיא מוֹתַחַת אֶת רַגְלֶיהָ, הַנַּעַל שֶׁלָּהּ נוֹגַעַת בַּנַּעַל שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "אֲנִי מוֹתֵחַ אֶת זְרוֹעוֹתַי וּמוֹתֵחַ אֶת אֶצְבְּעוֹתַי כְּדֵי לְהַחְזִיר לְכָל אֵיבָרַי אֶת זְרִימַת הַדָּם הַתַּקִּינָה", "source": "time_tunnel_82", @@ -1093908,7 +1099923,21 @@ "מֶתַח|Noun|tension, stretch; voltage" ], "confusables_guid": "i-U<9hxo0/", - "examples": null, + "examples": { + "vetted": [ + { + "text": "יַחַד עִם הַכֵּיף הָיָה גַּם מֶתַח", + "source": "time_tunnel_78", + "match_method": "direct" + }, + { + "text": "\"אֲבָל אִם הַהִתְיַשְּׁבוּת בְּגוּשׁ קָטִיף יָצְרָה מֶתַח, לָמָּה הָלְכוּ לְהִתְיַשֵּׁב שָׁם בִּכְלָל", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מֶתַח", @@ -1094057,6 +1100086,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" זֶה הָיָה רֶגַע מָתוּחַ בִּמְיֻחָד", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "עֵינֶיהָ מְאִירוֹת כְּאִלּוּ הִיא גִּלְּתָה אוֹצָר, וְחִיּוּךְ רָחָב מָתוּחַ עַל פָּנֶיהָ", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "״מִלְחָמוֹת תָּמִיד פּוֹרְצוֹת בִּגְלַל אֵיזֶשֶׁהוּ אֵרוּעַ, שֶׁגּוֹרֵם לְמַצָּב מָתוּחַ לִהְיוֹת עוֹד יוֹתֵר מָתוּחַ,״ אַבָּא הֵשִׁיב", "source": "time_tunnel_63", @@ -1094064,9 +1100103,9 @@ } ], "cloze": { - "text": "״מִלְחָמוֹת תָּמִיד פּוֹרְצוֹת בִּגְלַל אֵיזֶשֶׁהוּ אֵרוּעַ, שֶׁגּוֹרֵם לְמַצָּב מָתוּחַ לִהְיוֹת עוֹד יוֹתֵר מָתוּחַ,״ אַבָּא הֵשִׁיב", - "cloze_word_start": 81, - "cloze_word_end": 88, + "text": "\" זֶה הָיָה רֶגַע מָתוּחַ בִּמְיֻחָד", + "cloze_word_start": 18, + "cloze_word_end": 25, "cloze_hint": null, "cloze_guid": "Q<8(jC&Ck6" }, @@ -1097976,7 +1104015,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אַךְ הַגִּידִי נָא לִי גַם אַתְּ, חֲבֶרְתִּי, לְאָן מְגַמַּת־פָּנָיִךְ", + "source": "the_spirits", + "match_method": "direct" + } + ], + "cloze": { + "text": "אַךְ הַגִּידִי נָא לִי גַם אַתְּ, חֲבֶרְתִּי, לְאָן מְגַמַּת־פָּנָיִךְ", + "cloze_word_start": 15, + "cloze_word_end": 18, + "cloze_hint": null, + "cloze_guid": "vZdQK@9-tp" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -1098073,7 +1104128,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "… רַק לַחֲמוֹר וּלְשׁוֹר נָאֶה לְלַחֵךְ עֵשֶׂב בֶּחָצֵר", + "source": "kid_on_mountain", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "… רַק לַחֲמוֹר וּלְשׁוֹר נָאֶה לְלַחֵךְ עֵשֶׂב בֶּחָצֵר", + "cloze_word_start": 25, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "kXY_7`X2/!" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1105065,7 +1111136,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּפִרְחֵי הַמְטַפֵּס חִוְרִים כְּנוֹבְלִים", + "source": "ilana", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "וּפִרְחֵי הַמְטַפֵּס חִוְרִים כְּנוֹבְלִים", + "cloze_word_start": 30, + "cloze_word_end": 42, + "cloze_hint": null, + "cloze_guid": "B=i]!BR/{I" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1106085,20 +1112172,20 @@ "examples": { "vetted": [ { - "text": "לְפִי הַהַבָּעָה בְּעֵינֶיהָ שֶׁל שָׁרוֹן אֲנִי יוֹדֵעַ שֶׁגַּם הִיא לֹא מְבִינָה כְּלוּם", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "הַבָּעַת פָּנֶיהָ הֵעִידָה עַל אַכְזָבָה", + "source": "time_tunnel_70", + "match_method": "inflected" }, { - "text": "דְּבוֹרָה הִבִּיטָה בּוֹ, וּלְפִי הַהַבָּעָה שֶׁלָּהּ הָיָה לִי בָּרוּר שֶׁהִיא לֹא רוֹאָה אוֹתוֹ", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "הַבָּעַת פָּנֶיהָ הָיְתָה מֻדְאֶגֶת", + "source": "time_tunnel_75", + "match_method": "inflected" } ], "cloze": { - "text": "לְפִי הַהַבָּעָה בְּעֵינֶיהָ שֶׁל שָׁרוֹן אֲנִי יוֹדֵעַ שֶׁגַּם הִיא לֹא מְבִינָה כְּלוּם", - "cloze_word_start": 6, - "cloze_word_end": 16, + "text": "הַבָּעַת פָּנֶיהָ הֵעִידָה עַל אַכְזָבָה", + "cloze_word_start": 0, + "cloze_word_end": 8, "cloze_hint": null, "cloze_guid": "h7uN`yRMT4" }, @@ -1107819,7 +1113906,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" מַגֶּבֶת רְטֻבָּה נִדְחֶפֶת לְיָדִי", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" מַגֶּבֶת רְטֻבָּה נִדְחֶפֶת לְיָדִי", + "cloze_word_start": 2, + "cloze_word_end": 10, + "cloze_hint": null, + "cloze_guid": "OW8efX7klr" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַגֶּבֶת", @@ -1108039,9 +1114142,9 @@ "match_method": "direct" }, { - "text": "״ נִגַּבְתִּי אֶת שְׂפָתַי בְּמַפִּית", - "source": "time_tunnel_78", - "match_method": "conjugated" + "text": "\"תְּנַסֶּה לְנַגֵּב אֶת הַפָּנִים,\" הִיא מַצִּיעָה לִי, \"כָּכָה לְפָחוֹת תּוּכַל לִרְאוֹת אוֹתִי", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1108971,9 +1115074,14 @@ "match_method": "direct" }, { - "text": "\" \"אֵין נְמֵרִים עַל הַכּוֹכָב שֶׁלִּי,\" הִתְנַגֵּד הַנָּסִיךְ הַקָּטָן, \"וְחוּץ מִזֶּה, נְמֵרִים לֹא אוֹכְלִים עֵשֶׂב", - "source": "little_prince", - "match_method": "conjugated" + "text": "בַּשָּׁלָב הַזֶּה כְּבָר לֹא יָכֹלְתִּי לְהִתְנַגֵּד", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\"בָּרוּר שֶׁהָיוּ גַּם כַּמָּה נִסְיוֹנוֹת לְהִתְנַגֵּד בְּכוֹחַ לַפִּנּוּי", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1109422,6 +1115530,11 @@ "text": "כְּשֶׁהוּא הִגִּיעַ לַגֶּשֶׁר, כְּבָר לֹא הָיְתָה שָׁם הִתְנַגְּדוּת", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "\"אֲנִי לֹא מְבִינָה מַשֶּׁהוּ,\" שָׁרוֹן מַמְתִּינָה עַד שֶׁמְּחִיאוֹת הַכַּפַּיִם יִדְעֲכוּ, \"בְּגֶרְמַנְיָה יְרַדְתֶּם בְּלִי הִתְנַגְּדוּת", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -1109594,6 +1115707,11 @@ "source": "little_prince", "match_method": "direct" }, + { + "text": "סְבִיב הַדְּמוּת שֶׁלּוֹ נִרְקְמוּ הֲמוֹן אַגָּדוֹת", + "source": "time_tunnel_81", + "match_method": "inflected" + }, { "text": "תִּמְצְאוּ גַּם סִפּוּרֵי אַגָּדוֹת, וַאֲפִלּוּ אֶת מֶלֶךְ וּמַלְכַּת הַבִּיקִינִי שֶׁל סִדְרַת הַטֶּלֶוִיזְיָה 'הִשָּׂרְדוּת'", "source": "time_tunnel_78", @@ -1115568,7 +1121686,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַמַּגָּע עִם הַמַּיִם הָיָה בְּהֶחְלֵט לֹא נָעִים", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הַמַּגָּע עִם הַמַּיִם הָיָה בְּהֶחְלֵט לֹא נָעִים", + "cloze_word_start": 0, + "cloze_word_end": 9, + "cloze_hint": null, + "cloze_guid": "n2Il}8(jt1" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַגָּע", @@ -1118853,6 +1124987,11 @@ "text": "זָכַרְתִּי אֶת הַסִּפּוּר עַל הַצְּרִיפִים שֶׁהֵכִינוּ הַנַּגָּרִים בְּרִאשׁוֹן־לְצִיּוֹן לִקְרַאת הֲקָמַת הַמּוֹשָׁבָה", "source": "time_tunnel_70", "match_method": "inflected_prefix" + }, + { + "text": "וְהַיָּמִים עָבְרוּ, וְהַבַּנָּאִים בָּנוּ, וְהַנַּגָּרִים דָּפְקוּ – וְהִנֵּה הַבַּיִת מוּכָן", + "source": "ilana", + "match_method": "inflected_prefix" } ], "cloze": { @@ -1121936,6 +1128075,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" הוּא לֹא הִצְלִיחַ לְסַיֵּם אֶת דְּבָרָיו, כִּי הָאוֹנִיָּה שׁוּב הִתְנַגְּשָׁה בְּמַשֶּׁהוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "נִסִּיתִי לָקוּם, אֲבָל הִתְנַגַּשְׁתִּי בָּהּ", "source": "time_tunnel_78", @@ -1121943,9 +1128087,9 @@ } ], "cloze": { - "text": "נִסִּיתִי לָקוּם, אֲבָל הִתְנַגַּשְׁתִּי בָּהּ", - "cloze_word_start": 24, - "cloze_word_end": 40, + "text": "\" הוּא לֹא הִצְלִיחַ לְסַיֵּם אֶת דְּבָרָיו, כִּי הָאוֹנִיָּה שׁוּב הִתְנַגְּשָׁה בְּמַשֶּׁהוּ", + "cloze_word_start": 68, + "cloze_word_end": 81, "cloze_hint": null, "cloze_guid": "MjFf,Tmudh" }, @@ -1122379,7 +1128523,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גַּם הַגִּישָׁה מֵהַיָּם חֲסוּמָה", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "גַּם הַגִּישָׁה מֵהַיָּם חֲסוּמָה", + "cloze_word_start": 5, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "k~iMt=[>6S" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "גִּישָׁה", @@ -1122454,6 +1128614,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הִיא נוֹשֵׂאת אֶת הַשְּׂמִיכָה כְּאִלּוּ הִיא מַגָּשׁ, \"אֲנִי שָׂרָה, הָאָחוֹת שֶׁל הַחַוָה", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "בְּיָדָיו הוּא הֶחְזִיק מַגָּשׁ", "source": "time_tunnel_75", @@ -1122461,9 +1128626,9 @@ } ], "cloze": { - "text": "בְּיָדָיו הוּא הֶחְזִיק מַגָּשׁ", - "cloze_word_start": 24, - "cloze_word_end": 31, + "text": "הִיא נוֹשֵׂאת אֶת הַשְּׂמִיכָה כְּאִלּוּ הִיא מַגָּשׁ, \"אֲנִי שָׂרָה, הָאָחוֹת שֶׁל הַחַוָה", + "cloze_word_start": 46, + "cloze_word_end": 53, "cloze_hint": null, "cloze_guid": "f]cj<(egTr" }, @@ -1122542,6 +1128707,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "שְׁלִיחִים מֵאֶרֶץ־יִשְׂרָאֵל וְכָל מִינֵי מִתְנַדְּבִים הֵבִיאוּ לָנוּ בָּאגֶטִים טְרִיִּים וְאֹכֶל צָרְפָתִי", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "\"מָה שֶׁאֲנִי מְנַסֶּה לְהַגִּיד לְךָ זֶה שֶׁאֲנִי מוּכָן לְהִתְנַדֵּב לִמְשׁוֹךְ אֵלַי אֶת הַחַיָּלִים", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "הִרְגַּשְׁתִּי שֶׁאַחֲרֵי שֶׁהִיא הִתְנַדְּבָה לְהַסִּיעַ אֶת שָׁרוֹן וְאוֹתִי לִצְפַת, מַמָּשׁ לֹא הוֹגֵן לְהַפְקִיר אוֹתָהּ כָּכָה", "source": "time_tunnel_75", @@ -1122549,9 +1128724,9 @@ } ], "cloze": { - "text": "הִרְגַּשְׁתִּי שֶׁאַחֲרֵי שֶׁהִיא הִתְנַדְּבָה לְהַסִּיעַ אֶת שָׁרוֹן וְאוֹתִי לִצְפַת, מַמָּשׁ לֹא הוֹגֵן לְהַפְקִיר אוֹתָהּ כָּכָה", - "cloze_word_start": 34, - "cloze_word_end": 46, + "text": "שְׁלִיחִים מֵאֶרֶץ־יִשְׂרָאֵל וְכָל מִינֵי מִתְנַדְּבִים הֵבִיאוּ לָנוּ בָּאגֶטִים טְרִיִּים וְאֹכֶל צָרְפָתִי", + "cloze_word_start": 43, + "cloze_word_end": 56, "cloze_hint": null, "cloze_guid": "k%dI`1zqid" }, @@ -1127198,8 +1133373,8 @@ "match_method": "direct" }, { - "text": "נִדְמֶה לִי שֶׁהַסֻּלָּם מִתְנַדְנֵד", - "source": "time_tunnel_78", + "text": "הָאוֹנִיָּה הִתְנַדְנְדָה, וּלְרֶגַע עָלְתָה בְּדַעְתִּי הָאֶפְשָׁרוּת שֶׁהִיא עוֹמֶדֶת לִטְבּוֹעַ", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1134366,21 +1140541,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הֶגְיוֹנִי שֶׁהַתְּנוּעָה תִּתְנַהֵל בְּקֶצֶב רָגִיל וְלֹא בְּקֶצֶב אִטִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "\"הַמִּשְׂחָק מִתְנַהֵל קְצָת יוֹתֵר טוֹב עַכְשָׁו,\" אָמְרָה, כְּדֵי לִתְרוֹם אֶת חֶלְקָהּ לַשִּׂיחָה אֵיכְשֶׁהוּ", "source": "alice_wonderland", "match_method": "conjugated" }, { - "text": "בַּהַתְחָלָה, כְּלוֹמַר בְּרֶגַע שֶׁנִּכְנַסְנוּ וְזָכִינוּ לְקַבָּלַת הַפָּנִים הַחֲשׁוּכָה הַמֻּכֶּרֶת, הָיָה נִדְמֶה לָנוּ שֶׁהַכֹּל מִתְנַהֵל כָּרָגִיל", - "source": "time_tunnel_63", + "text": "הַכֹּל מִתְנַהֵל כְּאִלּוּ לֹא קָרָה דָּבָר בְּכָל הָאֵזוֹר,\" אוֹמֵר דּוֹבֵר יִשּׁוּבֵי גּוּשׁ קָטִיף", + "source": "time_tunnel_77", "match_method": "conjugated" } ], "cloze": { - "text": "\"הַמִּשְׂחָק מִתְנַהֵל קְצָת יוֹתֵר טוֹב עַכְשָׁו,\" אָמְרָה, כְּדֵי לִתְרוֹם אֶת חֶלְקָהּ לַשִּׂיחָה אֵיכְשֶׁהוּ", - "cloze_word_start": 13, - "cloze_word_end": 22, + "text": "הֶגְיוֹנִי שֶׁהַתְּנוּעָה תִּתְנַהֵל בְּקֶצֶב רָגִיל וְלֹא בְּקֶצֶב אִטִּי", + "cloze_word_start": 26, + "cloze_word_end": 36, "cloze_hint": null, "cloze_guid": "M>&_716M,h" }, @@ -1136191,6 +1142371,11 @@ "text": "אֵין זֶה מִתַּפְקִידוֹ שֶׁל הַגֵּאוֹגְרָף לָצֵאת לַשֶּׁטַח וְלִסְקֹר עָרִים, נְהָרוֹת, הָרִים, יַמִּים, אוֹקְיָנוֹסִים וּמִדְבָּרִיּוֹת", "source": "little_prince", "match_method": "inflected" + }, + { + "text": "זֶה כְּדֵי שֶׁהֵם יוּכְלוּ לְהַעֲבִיר אֶת הַצָּבָא מֵעַל נְהַר הַיַּרְדֵּן וְלִכְבּוֹשׁ אֶת עֵבֶר־הַיַּרְדֵּן,״ אֶרִיךְ אָמַר", + "source": "time_tunnel_63", + "match_method": "inflected" } ], "cloze": { @@ -1139872,14 +1146057,14 @@ "match_method": "direct" }, { - "text": "הוּא רָצָה לַעֲזֹר לַחֲבֵרוֹ: \"אַתָּה יוֹדֵעַ, יֵשׁ לִי רַעְיוֹן אֵיךְ תּוּכַל לָנוּחַ כְּשֶׁתִּרְצֶה", - "source": "little_prince", + "text": "\"אֵין בְּעָיָה,״ הִיא מִתְכּוֹפֶפֶת אֵלַי, \"אֶתֵּן לְךָ לָנוּחַ וְאֵלֵךְ הַבַּיְתָה", + "source": "time_tunnel_81", "match_method": "direct" }, { - "text": "כְּשֶׁתִּרְצֶה לָנוּחַ פָּשׁוּט תִּצְעַד", - "source": "little_prince", - "match_method": "direct" + "text": "הַיָם נָח שָׁקֵט וְרוֹגֵעַ, כְּאִלוּ גַם הוּא עֲדַיִן לֹא הִתְעוֹרֵר מִשְׁנָתוֹ", + "source": "shell_story", + "match_method": "conjugated" } ], "cloze": { @@ -1140403,6 +1146588,11 @@ "confusables_guid": "Ebfn{.k;|f", "examples": { "vetted": [ + { + "text": "” הוֹצִיא הַחַיָּט הַזָּקֵן מֵהַשַּׂק הָרֵיק שִׂמְלַת עֵץ, הֵנִיחַ אוֹתָהּ עַל הָרוֹעָה", + "source": "tree_dress", + "match_method": "conjugated" + }, { "text": "הֵנַחְתִּי אֶת כְּלֵי הָעֲבוֹדָה", "source": "little_prince", @@ -1142164,6 +1148354,11 @@ "text": "מִצַּד שֵׁנִי, לֹא הִרְגַּשְׁתִּי נוֹחַ לְרַמּוֹת אֶת הַקוֹלוֹנֶל, וְאַל תִּשְׁאֲלוּ אוֹתִי לָמָּה", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "הַרְבֵּה יוֹתֵר נוֹחַ לִשְׁהוֹת בִּתְקוּפָה אַחֶרֶת, כְּשֶׁאַתָּה בִּלְתִּי נִרְאֶה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -1143898,7 +1150093,21 @@ "נָוֶה|Noun" ], "confusables_guid": "p^O7ow+J=e", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּנְוֵה דְּקָלִים הָיָה מָלוֹן, וְזֶה הָיָה הַמָּלוֹן הַמֻעֲדָף עָלֵינוּ", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "\"אֲנַחְנוּ גָּרִים בִּנְוֵה דָּנִיֵּאל", + "source": "time_tunnel_75", + "match_method": "inflected_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נָוֶה", @@ -1148234,7 +1154443,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵן חָדְלוּ לֶאֱכֹל, אֲחָדוֹת הִתְנוֹעֲעוּ בִּכְבֵדוּת וַאֲחֵרוֹת הָיוּ שְׁרוּיוֹת בְּמִין רִפְיוֹן מוּזָר", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הֵן חָדְלוּ לֶאֱכֹל, אֲחָדוֹת הִתְנוֹעֲעוּ בִּכְבֵדוּת וַאֲחֵרוֹת הָיוּ שְׁרוּיוֹת בְּמִין רִפְיוֹן מוּזָר", + "cloze_word_start": 30, + "cloze_word_end": 42, + "cloze_hint": null, + "cloze_guid": "A3?/wW6ot2" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1148661,26 +1154886,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" וּלְבַסּוֹף שָׁבָה וּפָשְׁטָה אֶת יָדָהּ, וּבִצְּעָה עוֹד תְּנוּעַת חֲטִיפָה בָּאֲוִיר", + "source": "alice_wonderland", + "match_method": "inflected" + }, { "text": "״אֲנִי רוֹאֶה תְּנוּעָה חֲשׁוּדָה,״ זַ'בּוֹטִינְסְקִי לָחַשׁ", "source": "time_tunnel_63", "match_method": "direct" }, { - "text": "תְּנוּעוֹת הַצָּבָא הַזֶּה הָיוּ מְתֻזְמָרוֹת וַעֲרוּכוֹת בְּסֵדֶר מוֹפְתִי, כְּמוֹ לַהֲקַת רַקְדָנִיּוֹת בְּמוֹפַע בָּלֵט", - "source": "little_prince", + "text": "לְפִי תְּנוּעוֹת שְׂפָתָיו וְאֶצְבָּעוֹ הַמּוֹרָה אֶפְשָׁר לְהָבִין שֶׁהוּא מוֹנֶה אוֹתָנוּ", + "source": "time_tunnel_76", "match_method": "inflected" - }, - { - "text": "הוּא קָפָא בִּמְקוֹמוֹ לְלֹא תְּנוּעָה", - "source": "little_prince", - "match_method": "direct" } ], "cloze": { - "text": "״אֲנִי רוֹאֶה תְּנוּעָה חֲשׁוּדָה,״ זַ'בּוֹטִינְסְקִי לָחַשׁ", - "cloze_word_start": 14, - "cloze_word_end": 23, + "text": "\" וּלְבַסּוֹף שָׁבָה וּפָשְׁטָה אֶת יָדָהּ, וּבִצְּעָה עוֹד תְּנוּעַת חֲטִיפָה בָּאֲוִיר", + "cloze_word_start": 60, + "cloze_word_end": 69, "cloze_hint": null, "cloze_guid": "to(2mB!;oJ" }, @@ -1151315,14 +1157540,14 @@ "match_method": "direct" }, { - "text": "הִיא מוֹצִיאָה מִמֶּנּוּ שְׁתֵּי עֲשָׁשִׁיּוֹת, מְנוֹרוֹת כָּאֵלֶּה שֶׁפּוֹעֲלוֹת עַל נֵפְט", - "source": "time_tunnel_silver_train", + "text": "לְאוֹרָהּ הַקָּלוּשׁ שֶׁל מְנוֹרַת נֵפְט שֶׁדָּלְקָה בַּחֶדֶר, רָאִיתִי אוֹתָהּ", + "source": "time_tunnel_75", "match_method": "inflected" }, { - "text": "״מָגֵן־דָּוִד וְאַחַר כָּךְ גַּם מְנוֹרָה", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "הִיא מוֹצִיאָה מִמֶּנּוּ שְׁתֵּי עֲשָׁשִׁיּוֹת, מְנוֹרוֹת כָּאֵלֶּה שֶׁפּוֹעֲלוֹת עַל נֵפְט", + "source": "time_tunnel_silver_train", + "match_method": "inflected" } ], "cloze": { @@ -1151411,6 +1157636,11 @@ "text": "נֵר שֶׁנִּצַּב בְּתוֹךְ פָּמוֹט הֵאִיר אֶת הַחֶדֶר בְּאוֹר קָלוּשׁ", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "שָׁרוֹן וַאֲנִי שְׁרוּיִים בַּחֲשֵׁכָה מֻחְלֶטֶת, וְהָאֶפְשָׁרוּת לְהַדְלִיק נֵר מִתְבַּטֶּלֶת מִיָּד", + "source": "time_tunnel_81", + "match_method": "direct" } ], "rejected_count": 0 @@ -1155438,6 +1161668,11 @@ "text": "״ הַשּׁוֹטֵר שֶׁחָסַם אֶת דַּרְכִּי נָזַף בִּי", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "\"תַּפְסִיק,\" שָׁרוֹן נוֹזֶפֶת בִּי, \"זֶה בִּכְלָל לֹא מַצְחִיק", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1155999,6 +1162234,11 @@ "text": "אָז הוּא מִתְמַתֵּחַ וְדוֹחֵף בַּעֲדִינוּת לְעֵבֶר הַשֶּׁמֶשׁ נֶבֶט צִיץ קָטָן, מַקְסִים וְלֹא מַזִּיק", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "\" \"הָרַעֲיוֹנוֹת שֶׁלְּךָ רַק מַזִּיקִים", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1157898,7 +1164138,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּזְמַן הַמִּלְחָמָה לֹא הִסְתַּתַּרְתִּי בְּמִנְזָר וְלֹא הָיִיתִי בַּיְּעָרוֹת", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "בִּזְמַן הַמִּלְחָמָה לֹא הִסְתַּתַּרְתִּי בְּמִנְזָר וְלֹא הָיִיתִי בַּיְּעָרוֹת", + "cloze_word_start": 43, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "P4W696H?1~" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִנְזָר", @@ -1160999,7 +1167255,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּקְפִיצָה אַחַת פָּסַח 7 עַל הַנַּחַל הָעוֹבֵר שָׁם", + "source": "kid_on_mountain", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "בִּקְפִיצָה אַחַת פָּסַח 7 עַל הַנַּחַל הָעוֹבֵר שָׁם", + "cloze_word_start": 31, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "jnpyx2BrW<" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נַחַל", @@ -1161151,7 +1167423,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"טוֹב,״ שָׁרוֹן אוֹמֶרֶת, \"לְפָחוֹת יֵשׁ דָּבָר אֶחָד מְנַחֵם", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"טוֹב,״ שָׁרוֹן אוֹמֶרֶת, \"לְפָחוֹת יֵשׁ דָּבָר אֶחָד מְנַחֵם", + "cloze_word_start": 54, + "cloze_word_end": 61, + "cloze_hint": null, + "cloze_guid": "IfIL)FHS:`" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1163164,7 +1169452,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נָחוּץ לְחַמֵּם אוֹתוֹ מְעַט וּלְהוֹצִיא מִתַּחַת מִכְסֵה הַשֶּׁלֶג אֶת הַנִּצָּנִים הָרַכִּים, הַהוֹלְכִים וְנִצְמָתִים שָׁם מִקּוֹר", + "source": "the_spirits", + "match_method": "direct" + } + ], + "cloze": { + "text": "נָחוּץ לְחַמֵּם אוֹתוֹ מְעַט וּלְהוֹצִיא מִתַּחַת מִכְסֵה הַשֶּׁלֶג אֶת הַנִּצָּנִים הָרַכִּים, הַהוֹלְכִים וְנִצְמָתִים שָׁם מִקּוֹר", + "cloze_word_start": 0, + "cloze_word_end": 6, + "cloze_hint": null, + "cloze_guid": "N7y2LZIb|%" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1163668,16 +1169972,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "גּוּלִיבֶר פָּתַח אוֹתָהּ בְּקַלּוּת וְרֵיחַ הַטַּבָּק הֶחָרִיף עָלָה בִּנְחִירֵי הַנַּנָּסִים", + "source": "gulliver", + "match_method": "inflected_prefix" + }, { "text": "לְפִי הָרֵיחוֹת שֶׁהִגִּיעוּ אֶל הַנְּחִירַיִם שֶׁלָּנוּ, יָכֹלְנוּ לָדַעַת שֶׁאֶל הַחֶדֶר הֻכְנַס גַּם תַּבְשִׁיל מְעוֹרֵר תֵּאָבוֹן", "source": "time_tunnel_78", "match_method": "inflected_prefix" + }, + { + "text": "דּוֹקְטוֹר קִיזְלֶר דּוֹחֵף אֶת הַמָּטוֹשׁ לַפֶּה שֶׁלִּי וְאַחַר כָּךְ הוּא מַחְדִּיר אוֹתוֹ לְאַחַד הַנְּחִירַיִם שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" } ], "cloze": { - "text": "לְפִי הָרֵיחוֹת שֶׁהִגִּיעוּ אֶל הַנְּחִירַיִם שֶׁלָּנוּ, יָכֹלְנוּ לָדַעַת שֶׁאֶל הַחֶדֶר הֻכְנַס גַּם תַּבְשִׁיל מְעוֹרֵר תֵּאָבוֹן", - "cloze_word_start": 33, - "cloze_word_end": 46, + "text": "גּוּלִיבֶר פָּתַח אוֹתָהּ בְּקַלּוּת וְרֵיחַ הַטַּבָּק הֶחָרִיף עָלָה בִּנְחִירֵי הַנַּנָּסִים", + "cloze_word_start": 70, + "cloze_word_end": 81, "cloze_hint": null, "cloze_guid": "Li%u1{q=~b" }, @@ -1163912,7 +1170226,7 @@ "match_method": "direct" }, { - "text": "בְּרֹאשׁ זָקוּף עָמַד לוֹ אֶחָד מֵאוֹתָם נְחָשִׁים צְהֻבִּים שֶׁמְּחַסְּלִים אוֹתְךָ בִּשְׁלוֹשִׁים שְׁנִיּוֹת", + "text": "בַּצִּיּוּר רָאוּ נְחַשׁ בּוֹאָה בּוֹלֵעַ חַיָּה גְּדוֹלָה", "source": "little_prince", "match_method": "inflected" } @@ -1166181,7 +1172495,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּמֵאַחַר וְיוֹרֵשׁ־הָעֶצֶר נְמוּךְ־קוֹמָה הוּא, הֲרֵי הוּא נוֹטֶה לְמִפְלֶגֶת בֶּקַע־יְכוּמָן, וּבַמְּדִינָה עֲלוּלָה לִפְרֹץ מַהְפֵּכָה", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וּמֵאַחַר וְיוֹרֵשׁ־הָעֶצֶר נְמוּךְ־קוֹמָה הוּא, הֲרֵי הוּא נוֹטֶה לְמִפְלֶגֶת בֶּקַע־יְכוּמָן, וּבַמְּדִינָה עֲלוּלָה לִפְרֹץ מַהְפֵּכָה", + "cloze_word_start": 60, + "cloze_word_end": 66, + "cloze_hint": null, + "cloze_guid": "l3mnl>^Ez/" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1168012,7 +1174342,7 @@ "vetted": [ { "text": "זֶה קוֹרֶה כְּמוֹ בְּמַטֵּה קֶסֶם, וְזוֹ כְּבָר הַפַּעַם הַשְּׁנִיָּה", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected_prefix" } ], @@ -1168285,15 +1174615,25 @@ "examples": { "vetted": [ { - "text": "הוּא הוֹרָה לָהֶם לָקוּם וְלָבוֹא אַחֲרָיו וְנָטַל בִּזְרוֹעוֹתָיו אֶת אַחַד הַתִּינוֹקוֹת", - "source": "time_tunnel_75", - "match_method": "conjugated_prefix" + "text": "נָטַל שְׁנֵי עָלִים וַעֲלֵיהֶם כִּתְרֵיסַר זְחָלִים", + "source": "silkworms", + "match_method": "conjugated" + }, + { + "text": "אָז נָטַל גּוּלִיבֶר אֶת הָאֶקְדָּח, כִּוֵּן אֶת קָנֵהוּ לַחֲלַל הָאֲוִיר וְלָחַץ עַל הַהֶדֶק", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "הַשְׁנַיִם פָּנוּ אֶל הַמַחְסָן שֶׁבֶּחָצֵר, אַבָּא נָטַל אֶת הַקֻפְסָה וְהִנִיחַ אוֹתָהּ עַל הָאִצְטַבָּה הַתַּחְתּוֹנָה", + "source": "silkworms", + "match_method": "conjugated" } ], "cloze": { - "text": "הוּא הוֹרָה לָהֶם לָקוּם וְלָבוֹא אַחֲרָיו וְנָטַל בִּזְרוֹעוֹתָיו אֶת אַחַד הַתִּינוֹקוֹת", - "cloze_word_start": 43, - "cloze_word_end": 50, + "text": "נָטַל שְׁנֵי עָלִים וַעֲלֵיהֶם כִּתְרֵיסַר זְחָלִים", + "cloze_word_start": 0, + "cloze_word_end": 5, "cloze_hint": null, "cloze_guid": "NU;#&MWa[&" }, @@ -1168724,7 +1175064,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "רִאשׁוֹנָה: הָאָדָם־הָהָר הִתְחַיֵּב לֹא לַעֲזֹב אֶת אַרְצֵנוּ לְלֹא נְטִילַת רְשׁוּת מֵאֵת הַמֶּלֶךְ", + "source": "gulliver", + "match_method": "inflected" + } + ], + "cloze": { + "text": "רִאשׁוֹנָה: הָאָדָם־הָהָר הִתְחַיֵּב לֹא לַעֲזֹב אֶת אַרְצֵנוּ לְלֹא נְטִילַת רְשׁוּת מֵאֵת הַמֶּלֶךְ", + "cloze_word_start": 69, + "cloze_word_end": 77, + "cloze_hint": null, + "cloze_guid": "d*-cS]*qg#" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נְטִילָה", @@ -1175100,6 +1181456,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אֲנִי שׁוֹכֵב לְבַדִּי עַל חוֹף יָם מַדְהִים, אֲבָל נָטוּשׁ", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "בָּאנוּ וְהִשְׁתַּלַּטְנוּ עַל גֶּשֶׁר נָטוּשׁ", "source": "time_tunnel_63", @@ -1175107,9 +1181468,9 @@ } ], "cloze": { - "text": "בָּאנוּ וְהִשְׁתַּלַּטְנוּ עַל גֶּשֶׁר נָטוּשׁ", - "cloze_word_start": 39, - "cloze_word_end": 46, + "text": "אֲנִי שׁוֹכֵב לְבַדִּי עַל חוֹף יָם מַדְהִים, אֲבָל נָטוּשׁ", + "cloze_word_start": 52, + "cloze_word_end": 59, "cloze_hint": null, "cloze_guid": "ePi[4?/]?C" }, @@ -1176046,6 +1182407,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "מָה שֶׁגּוֹרֵם לִי לְהִדָּרֵךְ זֶה נְיַר הָעִתּוֹן", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "עַל הָרִצְפָּה מְפֻזָּרִים נְיָרוֹת", + "source": "time_tunnel_77", + "match_method": "inflected" + }, { "text": "אִם שָׁרוֹן הָיְתָה מַפִּילָה כָּכָה אֶת עַצְמָהּ וְתוֹלֶשֶׁת פִּסַּת נְיָר מֵהָעִתּוֹן, הָיִיתִי מַעֲנִיק לָהּ מֶדַלְיָה", "source": "time_tunnel_silver_train", @@ -1176053,9 +1182424,9 @@ } ], "cloze": { - "text": "אִם שָׁרוֹן הָיְתָה מַפִּילָה כָּכָה אֶת עַצְמָהּ וְתוֹלֶשֶׁת פִּסַּת נְיָר מֵהָעִתּוֹן, הָיִיתִי מַעֲנִיק לָהּ מֶדַלְיָה", - "cloze_word_start": 70, - "cloze_word_end": 75, + "text": "מָה שֶׁגּוֹרֵם לִי לְהִדָּרֵךְ זֶה נְיַר הָעִתּוֹן", + "cloze_word_start": 35, + "cloze_word_end": 40, "cloze_hint": null, "cloze_guid": "wekzlVvr*=" }, @@ -1176466,6 +1182837,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "יוֹתֵר מֵהַשְּׁאֵלוֹת שֶׁלָּהֶם, מְבַלְבֶּלֶת אוֹתִי נוֹכְחוּת הַיָּדַיִם", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "נוֹכְחוּת הַנְּעָרִים בְּמַדֵּי הַצּוֹפִים לֹא הִסְתַּדְּרָה בְּשׁוּם אֹפֶן עִם מָה שֶׁקָּרָאתִי עַל הַהִתְיַשְּׁבוּת הָרִאשׁוֹנָה בְּקוֹסְטִינָה", "source": "time_tunnel_70", @@ -1176473,9 +1182849,9 @@ } ], "cloze": { - "text": "נוֹכְחוּת הַנְּעָרִים בְּמַדֵּי הַצּוֹפִים לֹא הִסְתַּדְּרָה בְּשׁוּם אֹפֶן עִם מָה שֶׁקָּרָאתִי עַל הַהִתְיַשְּׁבוּת הָרִאשׁוֹנָה בְּקוֹסְטִינָה", - "cloze_word_start": 0, - "cloze_word_end": 9, + "text": "יוֹתֵר מֵהַשְּׁאֵלוֹת שֶׁלָּהֶם, מְבַלְבֶּלֶת אוֹתִי נוֹכְחוּת הַיָּדַיִם", + "cloze_word_start": 53, + "cloze_word_end": 62, "cloze_hint": null, "cloze_guid": "EH3.J3tiDe" }, @@ -1177693,27 +1184069,22 @@ "examples": { "vetted": [ { - "text": "הַ\"בּוּם\" הַזֶּה לֹא נוֹעַד לְתָאֵר מַכָּה שֶׁקִּבַּלְתִּי אוֹ רַעַשׁ חִיצוֹנִי, אֶלָּא הִתְבַּהֲרוּת", - "source": "מנהרת הזמן 82", - "match_method": "direct" + "text": "רַק מַכַּת הַחֹם הַזֹּאת שֶׁחָטַפְנוּ אָז הָיְתָה דּוֹמָה לַחֹם שֶׁבּוֹ הָיִיתִי עַכְשָׁיו", + "source": "time_tunnel_63", + "match_method": "inflected" }, { - "text": "גַּם כְּשֶׁאַתָּה לֹא קַיָּם, מַכָּה הִיא מַכָּה וּכְאֵב הוּא כְּאֵב", - "source": "מנהרת הזמן 82", - "match_method": "direct" - }, - { - "text": "כְּשֶׁאַתָּה חַי וְקַיָּם וְחוֹטֵף מַכָּה, אֲפִלּוּ לְךָ קָשֶׁה לְהַאֲמִין לָאֶפְשָׁרוּת שֶׁאַתָּה בִּכְלָל לֹא קַיָּם", - "source": "מנהרת הזמן 82", - "match_method": "direct" + "text": "מִישֶׁהוּ הִנְחִית עָלַי מַכַּת אֶגְרוֹף", + "source": "time_tunnel_silver_train", + "match_method": "inflected" } ], "cloze": { - "text": "הַ\"בּוּם\" הַזֶּה לֹא נוֹעַד לְתָאֵר מַכָּה שֶׁקִּבַּלְתִּי אוֹ רַעַשׁ חִיצוֹנִי, אֶלָּא הִתְבַּהֲרוּת", - "cloze_word_start": 36, - "cloze_word_end": 42, + "text": "רַק מַכַּת הַחֹם הַזֹּאת שֶׁחָטַפְנוּ אָז הָיְתָה דּוֹמָה לַחֹם שֶׁבּוֹ הָיִיתִי עַכְשָׁיו", + "cloze_word_start": 4, + "cloze_word_end": 10, "cloze_hint": null, - "cloze_guid": "Pu4?yn[dw9" + "cloze_guid": "I%zA:H8[#j" }, "rejected_count": 0 }, @@ -1180398,7 +1186769,7 @@ "vetted": [ { "text": "עַל כֵּן הִשְׁקַעְתִּי מַאֲמָץ גָּדוֹל בְּהַכָּרַת הַנּוֹשֵׂא לָעֹמֶק", - "source": "הנסיך הקטן", + "source": "little_prince", "match_method": "inflected_prefix" } ], @@ -1181410,6 +1187781,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "נִכָּר בָּהֶם שֶׁהַהִתְעַנְיְנוּת שֶׁלָּנוּ בֶּעָבָר שֶׁלָּהֶם מְשַׂמַּחַת אוֹתָם", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "נִכָּר הָיָה בְּחַיָּלֵי הַפְּלֻגָּה שֶׁהֵם יוֹדְעִים בְּדִיּוּק בְּמָה מְדֻבָּר וְאֵין לָהֶם צֹרֶךְ בְּהֶסְבֵּרִים נוֹסָפִים", "source": "time_tunnel_63", @@ -1181422,7 +1187798,7 @@ } ], "cloze": { - "text": "נִכָּר הָיָה בְּחַיָּלֵי הַפְּלֻגָּה שֶׁהֵם יוֹדְעִים בְּדִיּוּק בְּמָה מְדֻבָּר וְאֵין לָהֶם צֹרֶךְ בְּהֶסְבֵּרִים נוֹסָפִים", + "text": "נִכָּר בָּהֶם שֶׁהַהִתְעַנְיְנוּת שֶׁלָּנוּ בֶּעָבָר שֶׁלָּהֶם מְשַׂמַּחַת אוֹתָם", "cloze_word_start": 0, "cloze_word_end": 6, "cloze_hint": null, @@ -1185767,7 +1192143,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"נָחַתְנוּ לְיַד נָמֵל, לֹא שַׂמְתֶּם לֵב", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\" \"אֲנִי רָאִיתִי אוֹרוֹת,\" יוּבַל אִשֵּׁר, \"אֲבָל נָמֵל", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לְפִי מָה אַתְּ קוֹבַעַת שֶׁהָאוֹרוֹת הֵם אוֹרוֹת שֶׁל נָמֵל", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"נָחַתְנוּ לְיַד נָמֵל, לֹא שַׂמְתֶּם לֵב", + "cloze_word_start": 17, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "OqRVM[g`@A" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נָמֵל", @@ -1188218,7 +1194620,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּצָהֳרֵי הַיּוֹם נִתְאַסְּפוּ מִסָּבִיב לְגוּלִיבֶר הֲמוֹנֵי נַנָּסִים, שֶׁבָּאוּ לִרְאוֹתוֹ מִכָּל חֶלְקֵי הָאָרֶץ", + "source": "gulliver", + "match_method": "inflected" + }, + { + "text": "שִׁשָּׁה סוּסִים לְבָנִים רְתוּמִים אֵלֶיהָ וּלְצִדָּהּ רָכַב נַנָּס חָבוּשׁ קוֹבַע־זָהָב וְלָבוּשׁ מְעִיל נוֹצֵץ", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "בְּצָהֳרֵי הַיּוֹם נִתְאַסְּפוּ מִסָּבִיב לְגוּלִיבֶר הֲמוֹנֵי נַנָּסִים, שֶׁבָּאוּ לִרְאוֹתוֹ מִכָּל חֶלְקֵי הָאָרֶץ", + "cloze_word_start": 63, + "cloze_word_end": 72, + "cloze_hint": null, + "cloze_guid": "Bx7" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1206086,14 +1212608,14 @@ "match_method": "direct" }, { - "text": "חֲמִשָּׁה אוֹ שִׁשָּׁה נְעָרִים בְּמַדֵּי צוֹפִים הִכּוּ מִישֶׁהוּ שֶׁלָּבַשׁ חֻלְצָה כְּתֻמָּה", + "text": "לָכֵן, בָּרֶגַע שֶׁרָאִינוּ מֵרָחוֹק נַעֲרֵי צוֹפִים שֶׁמְּאוֹתְתִים בִּדְגָלִים, בְּאֹפֶן טִבְעִי הִרְגַּשְׁנוּ בַּבַּיִת", "source": "time_tunnel_70", "match_method": "inflected" }, { - "text": "בְּעֶצֶם הוּא לֹא בְּדִיּוּק יֶלֶד, הוּא נַעַר", - "source": "time_tunnel_82", - "match_method": "direct" + "text": "חֲמִשָּׁה אוֹ שִׁשָּׁה נְעָרִים בְּמַדֵּי צוֹפִים הִכּוּ מִישֶׁהוּ שֶׁלָּבַשׁ חֻלְצָה כְּתֻמָּה", + "source": "time_tunnel_70", + "match_method": "inflected" } ], "cloze": { @@ -1206180,8 +1212702,13 @@ "vetted": [ { "text": "בְּיוֹם חֲמִישִׁי הֵם רוֹקְדִים עִם נַעֲרוֹת הַכְּפָר", - "source": "הנסיך הקטן", + "source": "little_prince", "match_method": "inflected" + }, + { + "text": "” “אֲבָל אִילָנִית הִיא נַעֲרָה יְפֵהפִיָּה", + "source": "tree_dress", + "match_method": "direct" } ], "cloze": { @@ -1207087,7 +1213614,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְעֻמָּתֵנוּ, הַסּוּסָה נוֹפַחַת שׁוּב, וְהַפַּעַם הִיא עוֹשָׂה אֶת זֶה בְּקוֹל תְּרוּעָה רָמָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "לְעֻמָּתֵנוּ, הַסּוּסָה נוֹפַחַת שׁוּב, וְהַפַּעַם הִיא עוֹשָׂה אֶת זֶה בְּקוֹל תְּרוּעָה רָמָה", + "cloze_word_start": 24, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "LsGvM:_W]H" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1209048,6 +1215591,11 @@ "text": "הִיא מוֹצִיאָה מִמֶּנּוּ שְׁתֵּי עֲשָׁשִׁיּוֹת, מְנוֹרוֹת כָּאֵלֶּה שֶׁפּוֹעֲלוֹת עַל נֵפְט", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "עָמְדָה שָׁם מְנוֹרַת נֵפְט עַל הָרִצְפָּה, מַמָּשׁ לְיַד הָאִישׁ שֶׁדִּבֵּר", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1210462,6 +1217010,11 @@ "text": "\" אָמְרָה אַלִיס בְּלִבָּהּ, \"אַחֲרֵי נְפִילָה כָּזֹאת, כְּבָר לֹא יִהְיֶה אִכְפַּת לִי לְהִתְגַּלְגֵּל בְּמוֹרַד הַמַּדְרֵגוֹת", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "אִם אֲנִי יָכוֹל לִמְנוֹעַ מֵהֶן נְפִילָה בִּידֵי הַחַמַאס, עָלַי לַעֲשׂוֹת הַכֹּל כְּדֵי שֶׁזֶּה מָה שֶׁיִּקְרֶה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1210555,8 +1217108,8 @@ "match_method": "conjugated" }, { - "text": "הוּא דִּפְדֵּף בּוֹ, ״יַתּוּשֵׁי הַקַּדַּחַת הִפִּילוּ הַרְבֵּה מְאוֹד חֲלָלִים בַּחֲזִית הַזֹּאת,״ הוּא אָמַר", - "source": "time_tunnel_63", + "text": "\" \"כִּי אִם הַחַיָּלִים מְגַלִּים אֶתְכֶם, זֶה מַפִּיל אֶת כֻּלָּנוּ", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -1211878,7 +1218431,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מָה זֶה הַנִּפְנוּף הַזֶּה", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "מָה זֶה הַנִּפְנוּף הַזֶּה", + "cloze_word_start": 8, + "cloze_word_end": 19, + "cloze_hint": null, + "cloze_guid": "GMe.u+?K/j" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נִפְנוּף", @@ -1216023,6 +1222592,11 @@ "text": "הֲרֵי אֵין כָּאן נֶפֶשׁ חַיָּה, כֻּלָּם נֶעֶלְמוּ", "source": "time_tunnel_82", "match_method": "direct" + }, + { + "text": "1 אִישׁ תָּם הָיָה רַבִּי יוֹסֵי וְלֺא יָדַע אֶת נֶפֶשׁ עִזָּיו, וְהוּא אָמַר בִּדְאָגָה: — בָּא הַקֵּץ", + "source": "kid_on_mountain", + "match_method": "direct" } ], "cloze": { @@ -1216520,7 +1223094,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שֶׁלֹּא תָּעֵזּוּ לְהִסְתּוֹבֵב, כִּי נַהֲפֹךְ אֶתְכֶם לִנְצִיבֵי מֶלַח, כְּמוֹ שֶׁקָּרָה לְאֵשֶׁת לוֹט", + "source": "time_tunnel_63", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "שֶׁלֹּא תָּעֵזּוּ לְהִסְתּוֹבֵב, כִּי נַהֲפֹךְ אֶתְכֶם לִנְצִיבֵי מֶלַח, כְּמוֹ שֶׁקָּרָה לְאֵשֶׁת לוֹט", + "cloze_word_start": 55, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "umM=d_$/,R" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נְצִיב", @@ -1216654,6 +1223244,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הֵם סִדְּרוּ לוֹ, וְכָכָה הָיוּ לוֹ כָּל מִינֵי זְכוּיוֹת מְיֻחָדוֹת שֶׁל נְצִיג צָרְפַת", + "source": "time_tunnel_75", + "match_method": "inflected" + }, { "text": "לֹא יָכֹלְנוּ לְהָבִיא אֶת כֻּלָּם, וְלָכֵן הֵבֵאנוּ נְצִיגִים מִכָּל מִשְׁפָּחָה,\" הִיא נָשְׁמָה עָמֹק", "source": "time_tunnel_silver_train", @@ -1216661,9 +1223256,9 @@ } ], "cloze": { - "text": "לֹא יָכֹלְנוּ לְהָבִיא אֶת כֻּלָּם, וְלָכֵן הֵבֵאנוּ נְצִיגִים מִכָּל מִשְׁפָּחָה,\" הִיא נָשְׁמָה עָמֹק", - "cloze_word_start": 53, - "cloze_word_end": 62, + "text": "הֵם סִדְּרוּ לוֹ, וְכָכָה הָיוּ לוֹ כָּל מִינֵי זְכוּיוֹת מְיֻחָדוֹת שֶׁל נְצִיג צָרְפַת", + "cloze_word_start": 74, + "cloze_word_end": 80, "cloze_hint": null, "cloze_guid": "zQ0i*9(KWB" }, @@ -1218693,6 +1225288,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "כְּשֶׁהוּא מַתְחִיל לִקְרוֹא, שָׁרוֹן מְסַמֶּנֶת לִי בְּאֶצְבְּעוֹתֶיהָ וִי שֶׁל נִצָּחוֹן", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "אֵיךְ הֻשַּׂג נִצָּחוֹן בְּתוֹךְ דְּמָמָה", "source": "time_tunnel_63", @@ -1218700,9 +1225300,9 @@ } ], "cloze": { - "text": "אֵיךְ הֻשַּׂג נִצָּחוֹן בְּתוֹךְ דְּמָמָה", - "cloze_word_start": 14, - "cloze_word_end": 23, + "text": "כְּשֶׁהוּא מַתְחִיל לִקְרוֹא, שָׁרוֹן מְסַמֶּנֶת לִי בְּאֶצְבְּעוֹתֶיהָ וִי שֶׁל נִצָּחוֹן", + "cloze_word_start": 81, + "cloze_word_end": 90, "cloze_hint": null, "cloze_guid": "hD1te~Qyt{" }, @@ -1219172,7 +1225772,26 @@ "הַצָּלָה" ], "confusables_guid": "xg/CRdLGny", - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל לְמַזָּלִי לָבַשְׁתִּי חֲגוֹרַת הַצָּלָה שֶׁהַבֵּן שֶׁל גַּל נָתַן לִי כְּשֶׁיָּצָאנוּ מֵהֶרְצְלִיָּה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" \"אוּלַי בִּמְקוֹם לִשְׁאוֹל אוֹתוֹ שְׁאֵלוֹת, תִּזְרְקִי לוֹ גַּלְגַּל הַצָּלָה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" הוּא הִשְׁלִיךְ גַּלְגַּל הַצָּלָה יָשָׁר לַכִּווּן שֶׁלִּי, \"תֵּכֶף נַגִּיעַ אֵלֶיךָ", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הַצָּלָה", @@ -1221072,14 +1227691,14 @@ "match_method": "conjugated" }, { - "text": "אֲנִי לֹא אֲנַצֵּל אֶת תּוֹרִי עַד שֶׁאָבִין מָה הִשְׁתַּבֵּשׁ וּמַדּוּעַ נֹגַהּ לֹא נֶעֶלְמָה", - "source": "time_tunnel_75", + "text": "\" אֲנִי מְנַצֵּל אֶת הַמֶּרְחָק בֵּינִי לְבֵין הַגִ'יפּ וְצוֹעֵק שׁוּב", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "\" \"אוּלַי לֹא,\" הֵשִׁיבָה אַלִיס בִּזְהִירוּת; \"אֲבָל לִמְּדוּ אוֹתִי שֶׁצָּרִיךְ לְנַצֵּל אֶת הַזְּמַן בִּתְבוּנָה", - "source": "alice_wonderland", - "match_method": "direct" + "text": "אֲנִי לֹא אֲנַצֵּל אֶת תּוֹרִי עַד שֶׁאָבִין מָה הִשְׁתַּבֵּשׁ וּמַדּוּעַ נֹגַהּ לֹא נֶעֶלְמָה", + "source": "time_tunnel_75", + "match_method": "conjugated" } ], "cloze": { @@ -1223780,13 +1230399,13 @@ "match_method": "conjugated" }, { - "text": "אֲבָל הַפַּעַם, אֲנִי חַיָּב לְצַיֵּן, שֶׁהַכּוֹכָבִים נָצְצוּ הַרְבֵּה יוֹתֵר מֵאֲשֶׁר בְּכָל הַמִּקְרִים הַקּוֹדְמִים", - "source": "time_tunnel_70", + "text": "וְאָז קָרְנוּ פָּנָיו שֶׁל יוֹסִי וְעֵינָיו נָצְצוּ", + "source": "shell_story", "match_method": "conjugated" }, { - "text": "טֶרְיֶר קָטָן עִם עֵינַיִם נוֹצְצוֹת, אַתָּה יוֹדֵעַ, עִם – אוֹי, כָּזֹאת פַּרְוָה אֲרֻכָּה, חוּמָה וּמְתֻלְתֶּלֶת", - "source": "alice_wonderland", + "text": "עַל צַוַאר הָאֵם הָיְתָה תְּלוּיָה הַמַחֲרֹזֶת הַיָפָה, וּבְכַף־יָדָהּ נָצְצָה פְּנִינָה וְרֻדָה וְנִפְלָאָה", + "source": "shell_story", "match_method": "conjugated" } ], @@ -1230164,7 +1236783,7 @@ "vetted": [ { "text": "\"אַחֲרֵי שֶׁמְּסַיְּמִים אֶת רַחֲצַת הַבֹּקֶר, צָרִיךְ לְהַקְפִּיד לִדְאֹג לְנִקְיוֹן הַכּוֹכָב", - "source": "הנסיך הקטן", + "source": "little_prince", "match_method": "inflected_prefix" } ], @@ -1237675,6 +1244294,11 @@ "text": "קְצָת מֵאֲחוֹרֵי הַגָּבִיעַ הָיָה נַרְתִּיק שֶׁל טַלִּית", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "הִיא שׁוֹלֶפֶת מֵחֻלְצָתָהּ נַרְתִּיק בַּד הַמְּחֻבָּר לִשְׂרוֹךְ שֶׁתָּלוּי עַל צַוָארָהּ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1240519,15 +1247143,25 @@ "examples": { "vetted": [ { - "text": "יְרוּשָׁלַיִם אָמְנָם הִשְׁתַּנְּתָה מְאוֹד, אֲבָל הָרוּחוֹת הַנּוֹשְׁבוֹת בָּהּ נִשְׁאֲרוּ אוֹתָן רוּחוֹת", - "source": "time_tunnel_82", - "match_method": "conjugated_prefix" + "text": "רוּחַ טוֹבָה נָשְׁבָה בַּמִּפְרָשִׂים וְהַסִּירָה גָלְשָׁה בִּמְהִירוּת עַל פְּנֵי גַלֵּי הַיָּם הַשְּׁקֵטִים", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "* * * פִּתְאֺם נָשַׁב רוּחַ קַר", + "source": "kid_on_mountain", + "match_method": "conjugated" + }, + { + "text": "אֲבָל אֵיךְ הָרוּחַ הָיְתָה יְכוֹלָה לְהַרְחִיק אוֹתָם, אִם בִּכְלָל לֹא נוֹשֶׁבֶת כָּאן רוּחַ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { - "text": "יְרוּשָׁלַיִם אָמְנָם הִשְׁתַּנְּתָה מְאוֹד, אֲבָל הָרוּחוֹת הַנּוֹשְׁבוֹת בָּהּ נִשְׁאֲרוּ אוֹתָן רוּחוֹת", - "cloze_word_start": 61, - "cloze_word_end": 74, + "text": "רוּחַ טוֹבָה נָשְׁבָה בַּמִּפְרָשִׂים וְהַסִּירָה גָלְשָׁה בִּמְהִירוּת עַל פְּנֵי גַלֵּי הַיָּם הַשְּׁקֵטִים", + "cloze_word_start": 13, + "cloze_word_end": 21, "cloze_hint": null, "cloze_guid": "q,~%hQ[eer" }, @@ -1251044,8 +1257678,8 @@ "match_method": "direct_prefix" }, { - "text": "אַחַר כָּךְ הִיא הֶעֱבִירָה אֶת הַנְּשִׁיקָה אֶל סֵפֶר הַתּוֹרָה, בְּדִיּוּק כְּמוֹ שֶׁעָשׂוּ אִמָּא שֶׁלִּי וְשָׁרוֹן", - "source": "time_tunnel_75", + "text": "לְבַסּוֹף נִפְרַד מִמֶּנּוּ בִּנְשִׁיקָה", + "source": "gulliver", "match_method": "direct_prefix" } ], @@ -1254984,7 +1261618,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי מְנַסֶּה לְשַׁחְזֵר אֶת נְתִיב הַשַּׁיִט שֶׁלָּנוּ כְּדֵי שֶׁאוּכַל לְמַקֵּם אֶת עַצְמִי", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "אֲנִי מְנַסֶּה לְשַׁחְזֵר אֶת נְתִיב הַשַּׁיִט שֶׁלָּנוּ כְּדֵי שֶׁאוּכַל לְמַקֵּם אֶת עַצְמִי", + "cloze_word_start": 30, + "cloze_word_end": 36, + "cloze_hint": null, + "cloze_guid": "u%GvQV~;~!" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "נָתִיב", @@ -1259340,7 +1265990,21 @@ "מַתָּן" ], "confusables_guid": "FH^u]?2R({", - "examples": null, + "examples": { + "vetted": [ + { + "text": "חָשַׁבְנוּ שֶׁאוּלַי תַּעֲדִיף שֶׁהוּא יֵצֵא לְחַפֵּשׂ אוֹתָהּ וִינַהֵל מַשָּׂא וּמַתָּן עִם הַגַּנָּבִים", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "אוֹמְרִים שֶׁמִּתְנַהֵל מַשָּׂא וּמַתָּן עִם קְרָאוּזֶה עַל הַפְקָדַת הַשְּׁמִירָה עַל סֶגֶ'רָה בִּידֵיכֶם", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַתָּן", @@ -1259423,8 +1266087,8 @@ "match_method": "conjugated" }, { - "text": "בְּאֶמְצָעוּת אִיתוּת בְּסֶמָפוֹר נִתָּן לְהַעֲבִיר הוֹדָעוֹת מִנְּקֻדָּה א' לִנְקֻדָּה ב' שֶׁרְחוֹקָה מִמֶּנָּה מְאוֹד", - "source": "time_tunnel_70", + "text": "הַסֻּלָּמוֹת שֶׁדַּרְכָּם נִתָּן לְטַפֵּס אֶל הָאוֹנִיָּה נִזְרָקִים לַיָּם", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1264330,6 +1270994,11 @@ "text": "הֵם מִתְיַשְּׁבִים עַל הָאֲדָמָה, הַוִכּוּחַ כַּנִּרְאֶה מַתִּישׁ אוֹתָם", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "זְרוֹעוֹתַי כָּאֲבוּ, הַשְּׁרִירִים שֶׁלִּי הָיוּ מֻתָּשִׁים", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1267024,6 +1273693,16 @@ "text": "חִכִּיתִי שֶׁצְּבִי יְסוֹבֵב אֶת הַמַּפְתֵּחַ כְּדֵי שֶׁאוּכַל לָצֵאת אֶל הַכִּכָּר", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "סוֹבַבְתִּי אֶת רֹאשִׁי וְסָקַרְתִּי אֶת כָּל הַכִּווּנִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "אֲנִי מְסוֹבֵב אֶת רֹאשִׁי וּמְחַפֵּשׂ אוֹתָהּ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1268315,7 +1274994,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"זֹאת מְסִבַּת הַתֵּה הֲכִי טִפְּשִׁית שֶׁהָיִיתִי בָּהּ בְּכָל יְמֵי חַיַּי", + "source": "alice_wonderland", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\"זֹאת מְסִבַּת הַתֵּה הֲכִי טִפְּשִׁית שֶׁהָיִיתִי בָּהּ בְּכָל יְמֵי חַיַּי", + "cloze_word_start": 6, + "cloze_word_end": 14, + "cloze_hint": null, + "cloze_guid": "AG&|/MUBa6" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מְסִבָּה", @@ -1270159,6 +1276854,11 @@ "text": "\" וְהַמֶּלֶךְ הִרְכִּיב אֶת מִשְׁקָפָיו וְהִתְבּוֹנֵן בַּחֲרָדָה סָבִיב, כְּדֵי לְזַהוֹת מִי מְדַבֵּר", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "בִּתְנוּעוֹת קְצוּבוֹת הִתְחִילוּ סוֹרְגִים סָבִיב לְגוּפָם פְּקַעַת־שֶׁל־הִתְבּוֹדְדוּת", + "source": "silkworms", + "match_method": "direct" } ], "cloze": { @@ -1272570,13 +1279270,13 @@ "match_method": "direct" }, { - "text": "\"צָרִיךְ הַרְבֵּה סַבְלָנוּת,\" עָנָה הַשּׁוּעָל", - "source": "little_prince", + "text": "״ \"תִּשְׁכַּח לְרֶגַע מֵהַחֹם,״ הִיא חַסְרַת סַבְלָנוּת, \"לֹא מַתְאִים לְךָ לְהִתְבַּכְיֵן", + "source": "time_tunnel_81", "match_method": "direct" }, { - "text": "אֲבָל נִיב הָיָה חֲסַר סַבְלָנוּת", - "source": "time_tunnel_silver_train", + "text": "\"צָרִיךְ הַרְבֵּה סַבְלָנוּת,\" עָנָה הַשּׁוּעָל", + "source": "little_prince", "match_method": "direct" } ], @@ -1272660,7 +1279360,16 @@ "סַבָּל" ], "confusables_guid": "Hf:QYnT_#V", - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי לֹא רוֹצֶה לִגְרוֹם לָכֶם סֵבֶל כָּזֶה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סֵבֶל", @@ -1279810,7 +1286519,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אַף אֶחָד מִשְּׁלוֹשְׁתָּם לֹא הִתְיַחֵס אֵלֶיהָ וְלֹא קָרָא בְּתַדְהֵמָה מַשֶּׁהוּ בְּסִגְנוֹן, 'הֵי, יֵשׁ פֹּה יַלְדָּה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אַף אֶחָד מִשְּׁלוֹשְׁתָּם לֹא הִתְיַחֵס אֵלֶיהָ וְלֹא קָרָא בְּתַדְהֵמָה מַשֶּׁהוּ בְּסִגְנוֹן, 'הֵי, יֵשׁ פֹּה יַלְדָּה", + "cloze_word_start": 84, + "cloze_word_end": 95, + "cloze_hint": null, + "cloze_guid": "z5!$Bpl]34" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סִגְנוֹן", @@ -1283861,8 +1290586,8 @@ "match_method": "direct" }, { - "text": "הַטֶּלֶפוֹן הָיָה סָגוּר בָּאָרוֹן שֶׁל הַמּוֹרָה\" נֹגַהּ הָיְתָה זְמִינָה וְתוֹךְ שְׁנִיָּה הִתְחִילָה לְהַקְלִיד", - "source": "time_tunnel_75", + "text": "\" \"כִּי הָאֵזוֹר הַזֶּה הוּא שֶׁטַח צְבָאִי סָגוּר", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -1285261,20 +1291986,15 @@ "examples": { "vetted": [ { - "text": "וְאַל תִּשְׁכַּח לְכַסּוֹת אֶת הָרֹאשׁ בַּסָּדִין", - "source": "time_tunnel_70", - "match_method": "direct_prefix" - }, - { - "text": "\" הוּא הֵרִים אֶת שׁוּלֵי הַסָּדִין, וְהִצְבִּיעַ אֶל הַמָּקוֹם שֶׁהוּא הִתְכַּוֵן אֵלָיו", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "סָדִין הִפְרִיד בֵּין עֶזְרַת הַנָּשִׁים לְעֶזְרַת הַגְּבָרִים", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "וְאַל תִּשְׁכַּח לְכַסּוֹת אֶת הָרֹאשׁ בַּסָּדִין", - "cloze_word_start": 39, - "cloze_word_end": 49, + "text": "סָדִין הִפְרִיד בֵּין עֶזְרַת הַנָּשִׁים לְעֶזְרַת הַגְּבָרִים", + "cloze_word_start": 0, + "cloze_word_end": 6, "cloze_hint": null, "cloze_guid": "C]E?&S:JK6" }, @@ -1285911,9 +1292631,14 @@ "match_method": "direct" }, { - "text": "״ בְּרֶגַע זֶה נִבְקַע סֶדֶק בְּאַחַד הַקִּירוֹת, וְאַחַר כָּךְ נִשְׁלְחָה יָד אֶל הַצַּד שֶׁלָּנוּ", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "אֲבָל סְדָקִים לֹא נוֹצְרוּ וְהַקִּיר רַק הָלַךְ וְנִהְיָה דַּק", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "הַמַּפֹּלֶת, לְפִי הַהִגָּיוֹן שֶׁלִּי, הָיְתָה אֲמוּרָה לִבְקוֹעַ סְדָקִים בַּקִּיר הַחוֹסֵם אֶת הַמַּעֲבָר לְמִנְהֶרֶת־הַזְּמַן", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { @@ -1287269,8 +1293994,13 @@ "match_method": "direct" }, { - "text": "\" הַמְּשָׁרֵת־צְפַרְדֵּעַ חָזַר אַחֲרָיו, בְּאוֹתָהּ נִימָה חֲגִיגִית, וְרַק שִׁנָּה מְעַט אֶת סֵדֶר הַמִּלִּים, \"מֵאֵת הַמַּלְכָּה", - "source": "alice_wonderland", + "text": "שׁוּב אֲנִי חַיָּב לְהִתְרַכֵּז כְּדֵי לַעֲשׂוֹת סֵדֶר אַחֵר בָּרֹאשׁ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אֲנִי מְנַסֶּה לַעֲשׂוֹת סֵדֶר בַּזִּכָּרוֹן שֶׁלִּי", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -1287356,15 +1294086,20 @@ "examples": { "vetted": [ { - "text": "כָּל מִי שֶׁקָּרָא סְפָרִים נוֹסָפִים בַּסִּדְרָה, אוּלַי זוֹכֵר שֶׁמִּקְרִים מוּזָרִים כָּאֵלֶּה כְּבָר קָרוּ לְשָׁרוֹן וְלִי", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "תִּמְצְאוּ גַּם סִפּוּרֵי אַגָּדוֹת, וַאֲפִלּוּ אֶת מֶלֶךְ וּמַלְכַּת הַבִּיקִינִי שֶׁל סִדְרַת הַטֶּלֶוִיזְיָה 'הִשָּׂרְדוּת'", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "סִדְרָה שֶׁל שִׁעוּלִים תּוֹקֶפֶת אוֹתִי", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "כָּל מִי שֶׁקָּרָא סְפָרִים נוֹסָפִים בַּסִּדְרָה, אוּלַי זוֹכֵר שֶׁמִּקְרִים מוּזָרִים כָּאֵלֶּה כְּבָר קָרוּ לְשָׁרוֹן וְלִי", - "cloze_word_start": 38, - "cloze_word_end": 49, + "text": "תִּמְצְאוּ גַּם סִפּוּרֵי אַגָּדוֹת, וַאֲפִלּוּ אֶת מֶלֶךְ וּמַלְכַּת הַבִּיקִינִי שֶׁל סִדְרַת הַטֶּלֶוִיזְיָה 'הִשָּׂרְדוּת'", + "cloze_word_start": 88, + "cloze_word_end": 95, "cloze_hint": null, "cloze_guid": "jt^QLYm;XcD" }, @@ -1307217,20 +1314104,15 @@ "examples": { "vetted": [ { - "text": "הוּא אָמַר שֶׁאִם לֹא נַגִּיד לוֹ מָה הַסִּיסְמָה, הוּא יִקַּח אוֹתָנוּ בַּשֶּׁבִי", - "source": "time_tunnel_63", - "match_method": "direct_prefix" - }, - { - "text": "לֹא יָדַעְנוּ מָה הַסִּיסְמָה, וְלָכֵן נָפַלְנוּ בַּשֶּׁבִי", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "״ הִיא צָעֲקָה לָהֶם אֶת סִיסְמַת הַצּוֹפִים, ״הֱיֵה נָכוֹן, נָכוֹן תָּמִיד", + "source": "time_tunnel_70", + "match_method": "inflected" } ], "cloze": { - "text": "הוּא אָמַר שֶׁאִם לֹא נַגִּיד לוֹ מָה הַסִּיסְמָה, הוּא יִקַּח אוֹתָנוּ בַּשֶּׁבִי", - "cloze_word_start": 38, - "cloze_word_end": 49, + "text": "״ הִיא צָעֲקָה לָהֶם אֶת סִיסְמַת הַצּוֹפִים, ״הֱיֵה נָכוֹן, נָכוֹן תָּמִיד", + "cloze_word_start": 25, + "cloze_word_end": 33, "cloze_hint": null, "cloze_guid": "DT_vO^=IRH" }, @@ -1310589,7 +1317471,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם הָיוּ מַגִּיעִים אֵלֵינוּ בְּסִירוֹת עֲמוּסוֹת", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + }, + { + "text": "לְפֶתַע־פִּתְאֹם גָּבְרָה הָרוּחַ וְגַל עָצוּם עָלָה עַל הַסִּירָה וַהֲפָכָהּ עַל פִּיהָ", + "source": "gulliver", + "match_method": "direct_prefix" + }, + { + "text": "וְהִנֵּה בְּהִתְהַלְּכוֹ כָּךְ וְעֵינָיו נְעוּצוֹת בַּמַּיִם, הִשְׁגִּיחַ לְפֶתַע בְּסִירָה צָפָה לִקְרַאת הָאִי", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הֵם הָיוּ מַגִּיעִים אֵלֵינוּ בְּסִירוֹת עֲמוּסוֹת", + "cloze_word_start": 30, + "cloze_word_end": 40, + "cloze_hint": null, + "cloze_guid": "hnih$oo.^i" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סִירָה", @@ -1310644,7 +1317552,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"אַתֶּם בְּסַךְ הַכֹּל חֲפִיסָה שֶׁל קְלָפִים", + "source": "alice_wonderland", + "match_method": "inflected_prefix" + }, + { + "text": "\" \"אַל תַּרְחִיק לֶכֶת בְּמַחְשְׁבוֹתֶיךָ,\" זַלְמָן בִּקֵּשׁ, \"הוּא בְּסַךְ הַכֹּל יֶלֶד", + "source": "time_tunnel_75", + "match_method": "inflected_prefix" + }, + { + "text": "בְּסַךְ הַכֹּל בָּאנוּ לְשַׁתֵּף אִתְּכֶם פְּעֻלָּה,״ הִיא אָמְרָה לְשָׁרוֹן", + "source": "time_tunnel_78", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "\"אַתֶּם בְּסַךְ הַכֹּל חֲפִיסָה שֶׁל קְלָפִים", + "cloze_word_start": 8, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "Gn$7iyEWxQ" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סָךְ", @@ -1317329,14 +1324263,14 @@ "match_method": "direct_prefix" }, { - "text": "\" \"הוּא לֹא מֵבִין בִּכְלָל אֶת הַסַּכָּנָה,\" חָשַׁבְתִּי בְּלִבִּי", + "text": "\"זֹאת אוֹמֶרֶת 'דְּבָרִים הַמְּצוּיִים בְּסַכָּנַת הֵעָלְמוּת בֶּעָתִיד'", "source": "little_prince", - "match_method": "direct_prefix" + "match_method": "inflected_prefix" }, { - "text": "״בַּמִּשְׁטָרָה לֹא מַאֲמִינִים לָנוּ שֶׁאֲנַחְנוּ בְּסַכָּנָה,״ אַהֲרֹן עָנָה", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "\" \"הַשּׁוֹשַׁנָּה שֶׁלִּי מְצוּיָה בְּסַכָּנַת הֵעָלְמוּת בֶּעָתִיד", + "source": "little_prince", + "match_method": "inflected_prefix" } ], "cloze": { @@ -1320164,15 +1327098,20 @@ "examples": { "vetted": [ { - "text": "הַסֻּכָּרִיָּה עֲדַיִן הָיְתָה בְּיָדִי", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "קָרָאתִי אֶת הַהַפְטָרָה וַאֲפִלּוּ זָרְקוּ עָלַי סֻכָּרִיּוֹת וְאַחַר כָּךְ", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "הֵם אֲפִלּוּ חִלְּקוּ סֻכָּרִיּוֹת לַיְּלָדִים", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { - "text": "הַסֻּכָּרִיָּה עֲדַיִן הָיְתָה בְּיָדִי", - "cloze_word_start": 0, - "cloze_word_end": 14, + "text": "קָרָאתִי אֶת הַהַפְטָרָה וַאֲפִלּוּ זָרְקוּ עָלַי סֻכָּרִיּוֹת וְאַחַר כָּךְ", + "cloze_word_start": 50, + "cloze_word_end": 62, "cloze_hint": null, "cloze_guid": "P0vcvl5v{P" }, @@ -1322494,7 +1329433,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לֹא קָשֶׁה לְנַחֵשׁ שֶׁהָיָה כָּאן פַּעַם סָלוֹן, אֲבָל הַכֻּרְסָאוֹת, הַסַּפּוֹת וְהַשְּׁטִיחִים נֶעֶלְמוּ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "גַּם הֶחָלָל הַגָּדוֹל הַזֶּה, שֶׁכַּנִּרְאֶה הָיָה פַּעַם סָלוֹן, כִּמְעַט רֵיק", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "לֹא קָשֶׁה לְנַחֵשׁ שֶׁהָיָה כָּאן פַּעַם סָלוֹן, אֲבָל הַכֻּרְסָאוֹת, הַסַּפּוֹת וְהַשְּׁטִיחִים נֶעֶלְמוּ", + "cloze_word_start": 42, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "m<+nuas<|a" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סָלוֹן", @@ -1323018,8 +1329978,8 @@ "match_method": "direct" }, { - "text": "\"סְלִיחָה,״ אֲנִי פּוֹנָה לִמְנַהֶלֶת בֵּית הַסֵּפֶר, \"אֲנַחְנוּ יְכוֹלִים לְהִשְׁתַּמֵּשׁ בַּמַּחְשֵׁב שֶׁל חֲדַר הַמּוֹרִים", - "source": "time_tunnel_78", + "text": "סְלִיחָה שְׁנִיָּה, מַמָּשׁ קָשֶׁה לִי לְתָאֵר לָכֶם אֶת זֶה", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -1323514,7 +1330474,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מֵהַמַּכָּה שֶׁקִּבַּלְתִּי בַּנְּחִיתָה הוּא נִרְאָה כְּמוֹ סָלַט טֶלֶפוֹן", + "source": "time_tunnel_63", + "match_method": "inflected" + } + ], + "cloze": { + "text": "מֵהַמַּכָּה שֶׁקִּבַּלְתִּי בַּנְּחִיתָה הוּא נִרְאָה כְּמוֹ סָלַט טֶלֶפוֹן", + "cloze_word_start": 61, + "cloze_word_end": 66, + "cloze_hint": null, + "cloze_guid": "py.[niqV2{" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סָלָט", @@ -1323589,6 +1330565,11 @@ "text": "\" אֲנִי לֹא מַצְלִיחַ לְהַמְשִׁיךְ, כִּי הַטֶּלֶפוֹן שֶׁלִּי כָּבָה, כַּנִּרְאֶה הַסּוֹלְלָה הִתְרוֹקְנָה", "source": "time_tunnel_82", "match_method": "direct_prefix" + }, + { + "text": "מִישֶׁהוּ שָׁם בְּסוֹלְלַת הַתּוֹתָחִים שֶׁל הַטוּרְקִים מַצְלִיחַ לְכַוֵן אוֹתָם יָשָׁר אֶל הַמָּקוֹם שֶׁבּוֹ הַמַּכְשִׁיר נִמְצָא", + "source": "time_tunnel_63", + "match_method": "inflected_prefix" } ], "cloze": { @@ -1324606,15 +1331587,25 @@ "examples": { "vetted": [ { - "text": "\"אֲנִי לָמַדְתִּי רַק בַּמַּסְלוּל הָרָגִיל", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "\"לֹא,\" הוּא אוֹמֵר, \"לִפְנֵי שֶׁהִתְגַּיַּסְנוּ כָּל אֶחָד מֵאִתָּנוּ עָשָׂה מַסְלוּל אַחֵר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\" \"כָּל אֶחָד עָשָׂה מַסְלוּל אַחֵר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\"אָמְנָם עָבַרְנוּ מַסְלוּל שׁוֹנֶה לְגַמְרֵי, אֲבָל בַּסּוֹף הִגַּעְנוּ אֶל אוֹתָהּ אוֹנִיַּת מַעְפִּילִים", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\"אֲנִי לָמַדְתִּי רַק בַּמַּסְלוּל הָרָגִיל", - "cloze_word_start": 22, - "cloze_word_end": 34, + "text": "\"לֹא,\" הוּא אוֹמֵר, \"לִפְנֵי שֶׁהִתְגַּיַּסְנוּ כָּל אֶחָד מֵאִתָּנוּ עָשָׂה מַסְלוּל אַחֵר", + "cloze_word_start": 77, + "cloze_word_end": 85, "cloze_hint": null, "cloze_guid": "kcd1Rli2:(" }, @@ -1325476,25 +1332467,15 @@ "examples": { "vetted": [ { - "text": "״ קַרְנִי צָעֲקָה, \"רְדוּ לְמַטָּה בַּסֻּלָּם", - "source": "time_tunnel_78", - "match_method": "direct_prefix" - }, - { - "text": "״ קַרְנִי מַמָּשׁ דָּחֲפָה אֶת שָׁרוֹן לְכִווּן הַסֻּלָּם", - "source": "time_tunnel_78", - "match_method": "direct_prefix" - }, - { - "text": "שָׁרוֹן שָׁלְחָה יָד אַחַת קָדִימָה וְאָחֲזָה בַּשָּׁלָב הָעֶלְיוֹן שֶׁל הַסֻּלָּם", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "אֵיפֹה הַיְּלָדִים שֶׁטִּפְּסוּ עַל סֻלַּם הַחֲבָלִים הַמִּשְׁתַּלְשֵׁל", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { - "text": "״ קַרְנִי צָעֲקָה, \"רְדוּ לְמַטָּה בַּסֻּלָּם", - "cloze_word_start": 35, - "cloze_word_end": 45, + "text": "אֵיפֹה הַיְּלָדִים שֶׁטִּפְּסוּ עַל סֻלַּם הַחֲבָלִים הַמִּשְׁתַּלְשֵׁל", + "cloze_word_start": 36, + "cloze_word_end": 42, "cloze_hint": null, "cloze_guid": "uN+j*KS@wz" }, @@ -1326816,6 +1333797,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"אֲנִי מְרַחֵם עָלֶיךָ, אַתָּה נִרְאֶה שַׁבְרִירִי כָּל כָּךְ כָּאן, עַל סַלְעֵי הַגְּרָנִיט הָאֵלֶּה", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "\" 20 לְבַסּוֹף, אַחֲרֵי שֶׁצָּעַד זְמַן רַב וְחָצָה חוֹלוֹת, סְלָעִים וְהָרִים מֻשְׁלָגִים, גִּלָּה הַנָּסִיךְ הַקָּטָן דֶּרֶךְ", "source": "little_prince", @@ -1326823,9 +1333809,9 @@ } ], "cloze": { - "text": "\" 20 לְבַסּוֹף, אַחֲרֵי שֶׁצָּעַד זְמַן רַב וְחָצָה חוֹלוֹת, סְלָעִים וְהָרִים מֻשְׁלָגִים, גִּלָּה הַנָּסִיךְ הַקָּטָן דֶּרֶךְ", - "cloze_word_start": 61, - "cloze_word_end": 69, + "text": "\"אֲנִי מְרַחֵם עָלֶיךָ, אַתָּה נִרְאֶה שַׁבְרִירִי כָּל כָּךְ כָּאן, עַל סַלְעֵי הַגְּרָנִיט הָאֵלֶּה", + "cloze_word_start": 73, + "cloze_word_end": 80, "cloze_hint": null, "cloze_guid": "N9~ibi7r%c" }, @@ -1332085,7 +1339071,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַשּוֹמְרִים, הַפָּרָשִׁים וְהָרַגְלִים הַנַּנָּסִים נָפְלוּ אַרְצָה, וְעָשָׁן סָמִיךְ כִּסָּה אוֹתָם", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַשּוֹמְרִים, הַפָּרָשִׁים וְהָרַגְלִים הַנַּנָּסִים נָפְלוּ אַרְצָה, וְעָשָׁן סָמִיךְ כִּסָּה אוֹתָם", + "cloze_word_start": 79, + "cloze_word_end": 86, + "cloze_hint": null, + "cloze_guid": "z)?s^+=)Ts" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1332168,8 +1339170,8 @@ "match_method": "direct" }, { - "text": "הִיא נִדְבֶּקֶת אֶל שִׂיחַ שֶׁצּוֹמֵחַ סָמוּךְ לַפֶּתַח וְנִרְאֵית כְּמוֹ אַחַת שֶׁמְּנַסָּה לְהִבָּלַע בְּתוֹכוֹ", - "source": "time_tunnel_82", + "text": "שְׁתֵּי חַיָּלוֹת מְזַנְּקוֹת מֵהַגִ'יפּ שֶׁנֶּעֱצָר סָמוּךְ אֵלֵינוּ", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -1333568,7 +1340570,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כַּנִּרְאֶה עָלַי לְהִסְתַּמֵּךְ עַל הַתְּחוּשׁוֹת הַפְּנִימִיּוֹת שֶׁלִּי, שֶׁאוֹמְרוֹת לִי שֶׁאַתֶּם בַּצַּד שֶׁלָּנוּ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "כַּנִּרְאֶה עָלַי לְהִסְתַּמֵּךְ עַל הַתְּחוּשׁוֹת הַפְּנִימִיּוֹת שֶׁלִּי, שֶׁאוֹמְרוֹת לִי שֶׁאַתֶּם בַּצַּד שֶׁלָּנוּ", + "cloze_word_start": 18, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "zg<~STPUBw" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1341765,6 +1348783,11 @@ "text": "וְעוֹד לִפְנֵי שֶׁהֵבַנְתִּי לְאָן נִשְׁאַבְתִּי, הִסְתַּנְוַרְתִּי מֵאוֹר הַשֶּׁמֶשׁ", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "אֲנִי חַיָּב לְהַאֲהִיל עֲלֵיהֶן בְּיָדִי כְּדֵי לֹא לְהִסְתַּנְוֵר", + "source": "time_tunnel_77", + "match_method": "direct" } ], "rejected_count": 0 @@ -1342268,8 +1349291,13 @@ "match_method": "conjugated" }, { - "text": "הִיא מְסוֹכֶכֶת בְּכַף יָדָהּ עַל עֵינֶיהָ כְּדֵי שֶׁהַשֶּׁמֶשׁ לֹא תְּסַנְוֵר אוֹתָהּ, \"בְּחַיַּי שֶׁאַתָּה צוֹדֵק", - "source": "time_tunnel_82", + "text": "אֲנִי עוֹצֵם עֵינַיִם וְחוֹזֵר וּפוֹקֵחַ אוֹתָן כְּאִלּוּ הַשֶּׁמֶשׁ מְסַנְוֶרֶת אוֹתִי", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״ \"לֹא, אֲנִי עוֹצֵם עֵינַיִם כִּי הָאוֹר מְסַנְוֵר אוֹתִי,״ אֲנִי אוֹמֵר לָהּ", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -1343020,6 +1350048,11 @@ "text": "וְעוֹד לִפְנֵי שֶׁהֵבַנְתִּי לְאָן נִשְׁאַבְתִּי, הִסְתַּנְוַרְתִּי מֵאוֹר הַשֶּׁמֶשׁ", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "אֲנִי חַיָּב לְהַאֲהִיל עֲלֵיהֶן בְּיָדִי כְּדֵי לֹא לְהִסְתַּנְוֵר", + "source": "time_tunnel_77", + "match_method": "direct" } ], "rejected_count": 0 @@ -1347851,7 +1354884,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "cloze_word_start": 9, + "cloze_word_end": 18, + "cloze_hint": null, + "cloze_guid": "h!X->Gcyn>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סְנִיף", @@ -1348543,7 +1355592,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"אָז זֹאת הַסִּבָּה שֶׁיֵּשׁ פֹּה כָּל־כָּךְ הַרְבֵּה דְּבָרִים לִסְעוּדַת הַתֵּה", + "source": "alice_wonderland", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "\"אָז זֹאת הַסִּבָּה שֶׁיֵּשׁ פֹּה כָּל־כָּךְ הַרְבֵּה דְּבָרִים לִסְעוּדַת הַתֵּה", + "cloze_word_start": 64, + "cloze_word_end": 74, + "cloze_hint": null, + "cloze_guid": "tAkTf70NLS" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סְעוּדָה", @@ -1349333,6 +1356398,16 @@ "text": "לְפֶתַע חָקַר אוֹתִי הַנָּסִיךְ הַקָּטָן, שֶׁהָיָה נִסְעָר מֵרֹב סְפֵקוֹת: \"נָכוֹן שֶׁכְּבָשִׂים אוֹכְלוֹת שִׂיחִים", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "אֲבָל לַיֶּלֶד לֹא אִכְפַּת מָה הֵם חוֹשְׁבִים, הוּא נִרְאֶה נִסְעָר מְאוֹד וְלֹא עוֹצֵר", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "״ הוּא נִרְאֶה נִסְעָר", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1350627,15 +1357702,20 @@ "examples": { "vetted": [ { - "text": "כָּל מִי שֶׁלִּוָה אוֹתָנוּ לַמִּפְגָּשׁ אִתּוֹ עַל סִפּוּן הַסְּפִינָה שֶׁנִּקְלְעָה לִסְעָרָה, בָּטוּחַ זוֹכֵר אוֹתוֹ", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "הָיְתָה סְעָרָה וַאֲנִי נָפַלְתִּי לַמַּיִם וְ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אַךְ הִנֵּה הִתְחוֹלְלָה סְעָרָה עַזָּה", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { - "text": "כָּל מִי שֶׁלִּוָה אוֹתָנוּ לַמִּפְגָּשׁ אִתּוֹ עַל סִפּוּן הַסְּפִינָה שֶׁנִּקְלְעָה לִסְעָרָה, בָּטוּחַ זוֹכֵר אוֹתוֹ", - "cloze_word_start": 86, - "cloze_word_end": 95, + "text": "הָיְתָה סְעָרָה וַאֲנִי נָפַלְתִּי לַמַּיִם וְ", + "cloze_word_start": 8, + "cloze_word_end": 15, "cloze_hint": null, "cloze_guid": "v:~s{W24nR" }, @@ -1350782,7 +1357862,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"הַיָּם נִהְיָה סוֹעֵר,\" אַבָּא שֶׁל שָׁרוֹן אָמַר, \"שִׁנּוּי קִיצוֹנִי כָּזֶה", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "מִי מְסֻגָּל לַחְתּוֹר בְּיָם סוֹעֵר כָּל כָּךְ", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "חָלַפְנוּ עַל פְּנֵי אַשְׁדּוֹד וּכְשֶׁהַיָּם סָעַר גַּל אָמַר שֶׁאֶפְשָׁר לַחְזוֹר לְאַשְׁקְלוֹן", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"הַיָּם נִהְיָה סוֹעֵר,\" אַבָּא שֶׁל שָׁרוֹן אָמַר, \"שִׁנּוּי קִיצוֹנִי כָּזֶה", + "cloze_word_start": 16, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "s|ZYsIyYSN" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1357207,7 +1364313,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא הִגִּיעַ לְאֶקְסוֹדוּס בְּמִסְגֶּרֶת 'עֲלִיַּת הַנֹּעַר', אַחֲרֵי שֶׁאִמּוֹ נִסְפְּתָה בַּשּׁוֹאָה, וּלְעֻמָּתוֹ שַׁעְיָה הִגִּיעַ עִם מִשְׁפַּחְתּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הוּא הִגִּיעַ לְאֶקְסוֹדוּס בְּמִסְגֶּרֶת 'עֲלִיַּת הַנֹּעַר', אַחֲרֵי שֶׁאִמּוֹ נִסְפְּתָה בַּשּׁוֹאָה, וּלְעֻמָּתוֹ שַׁעְיָה הִגִּיעַ עִם מִשְׁפַּחְתּוֹ", + "cloze_word_start": 81, + "cloze_word_end": 91, + "cloze_hint": null, + "cloze_guid": "z}V7!JEc%." + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1357787,6 +1364909,16 @@ "confusables_guid": "A/k=mYBNj<", "examples": { "vetted": [ + { + "text": "הוּא נִשְׁלַח לְאֶרֶץ־יִשְׂרָאֵל עַל סִפּוּן אוֹנִיַּת הַמַּעְפִּילִים אֶקְסוֹדוּס", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "בִּירִיַּת הַתּוֹתָח הוּא מַזְמִין אוֹתוֹ לַעֲלוֹת עַל סִפּוּן הָאֳנִיָּה", + "source": "gulliver", + "match_method": "direct" + }, { "text": "כָּל מִי שֶׁלִּוָה אוֹתָנוּ לַמִּפְגָּשׁ אִתּוֹ עַל סִפּוּן הַסְּפִינָה שֶׁנִּקְלְעָה לִסְעָרָה, בָּטוּחַ זוֹכֵר אוֹתוֹ", "source": "time_tunnel_78", @@ -1358429,20 +1365561,15 @@ "examples": { "vetted": [ { - "text": "\" \"אֲנִי יָכוֹל לָקַחַת אוֹתְךָ הַרְבֵּה יוֹתֵר רָחוֹק מִסְּפִינָה,\" אָמַר הַנָּחָשׁ", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "כָּל מִי שֶׁלִּוָה אוֹתָנוּ לַמִּפְגָּשׁ אִתּוֹ עַל סִפּוּן הַסְּפִינָה שֶׁנִּקְלְעָה לִסְעָרָה, בָּטוּחַ זוֹכֵר אוֹתוֹ", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "וְאִם לֹא אוֹנִיַּת מַעְפִּילִים, אָז אֵיזוֹ סְפִינַת מִפְרָשִׂים עַתִּיקָה מִתְּקוּפָה אַחֶרֶת", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { - "text": "\" \"אֲנִי יָכוֹל לָקַחַת אוֹתְךָ הַרְבֵּה יוֹתֵר רָחוֹק מִסְּפִינָה,\" אָמַר הַנָּחָשׁ", - "cloze_word_start": 55, - "cloze_word_end": 66, + "text": "וְאִם לֹא אוֹנִיַּת מַעְפִּילִים, אָז אֵיזוֹ סְפִינַת מִפְרָשִׂים עַתִּיקָה מִתְּקוּפָה אַחֶרֶת", + "cloze_word_start": 45, + "cloze_word_end": 53, "cloze_hint": null, "cloze_guid": "dUxsIaU52p" }, @@ -1359375,7 +1366502,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שְׁנֵינוּ הָיִינוּ עַל סַף בֶּכִי", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "שְׁנֵינוּ הָיִינוּ עַל סַף בֶּכִי", + "cloze_word_start": 23, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "b1~v0>so~]" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סַף", @@ -1362202,15 +1369345,25 @@ "examples": { "vetted": [ { - "text": "\"אִם הֵן לֹא יַחְזְרוּ, תִּתְקַשְּׁרִי לַסּוֹפֶרֶת שֶׁכּוֹתֶבֶת אֶת הַסִּפּוּרִים,״ הִתְבַּדַּחְתִּי, \"הִיא בָּטוּחַ תּוּכַל לַעֲזוֹר", - "source": "time_tunnel_78", - "match_method": "conjugated_prefix" + "text": "' סָפַרְתִּי בַּלֵּב וְזָרַקְתִּי אֶת עַצְמִי לְתוֹךְ הַבּוֹר שֶׁמִּמֶּנּוּ יָצְאוּ שְׁתֵּי הַיָּדַיִם", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "פָּשׁוּט, קָשֶׁה הָיָה לִסְפֹּר אוֹתָן, כָּל־כָּךְ רַבּוֹת הָיוּ", + "source": "silkworms", + "match_method": "direct" + }, + { + "text": "הַיַּלְדָּה סוֹפֶרֶת אֶת הַמַּעֲטָפוֹת", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { - "text": "\"אִם הֵן לֹא יַחְזְרוּ, תִּתְקַשְּׁרִי לַסּוֹפֶרֶת שֶׁכּוֹתֶבֶת אֶת הַסִּפּוּרִים,״ הִתְבַּדַּחְתִּי, \"הִיא בָּטוּחַ תּוּכַל לַעֲזוֹר", - "cloze_word_start": 39, - "cloze_word_end": 50, + "text": "' סָפַרְתִּי בַּלֵּב וְזָרַקְתִּי אֶת עַצְמִי לְתוֹךְ הַבּוֹר שֶׁמִּמֶּנּוּ יָצְאוּ שְׁתֵּי הַיָּדַיִם", + "cloze_word_start": 2, + "cloze_word_end": 12, "cloze_hint": null, "cloze_guid": "N9Bek-3Ese" }, @@ -1363394,15 +1370547,15 @@ "source": "alice_wonderland", "match_method": "direct" }, + { + "text": "בֶּאֱמֶת, יֵשׁ פֹּה בְּקֹשִי מָקוֹם בִּשְׁבִילֵךְ, וְשׁוּם מָקוֹם בִּכְלָל בִּשְׁבִיל סִפְרֵי לִמּוּד", + "source": "alice_wonderland", + "match_method": "inflected" + }, { "text": "\"קָרָאתִי אֶת זֶה בְּאֵיזֶה סֵפֶר, אֲבָל אֲנִי לֹא זוֹכֶרֶת אֵיפֹה", "source": "alice_wonderland", "match_method": "direct" - }, - { - "text": "גָּר שָׁם אִישׁ נִכְבָּד וְקָשִׁישׁ שֶׁכָּתַב סְפָרִים עֲצוּמִים בְּגָדְלָם", - "source": "little_prince", - "match_method": "inflected" } ], "rejected_count": 0 @@ -1368309,6 +1375462,11 @@ "source": "little_prince", "match_method": "direct" }, + { + "text": "הוּא אָמַר לוֹ שֶׁיֵּשׁ שָׁם מַשֶּׁהוּ שֶׁכְּדַאי לוֹ לִרְאוֹת, וְאִיז'וֹ הָיָה סַקְרָן וְנַעֲנָה", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "הָיִיתִי כָּל כָּךְ סַקְרָן לָדַעַת מָה קוֹרֶה שָׁם, שֶׁלֹּא הִתְאַפַּקְתִּי וְהֵזַזְתִּי מְעַט אֶת הַוִילוֹן", "source": "time_tunnel_78", @@ -1372866,15 +1380024,15 @@ "examples": { "vetted": [ { - "text": "\"בַּשְּׁנִיָּה שֶׁאֲנִי מַצְלִיחַ לְנַסֵּר אֶת הַסּוֹרְגִים הָאֵלֶּה, אַתֶּם פּוֹגְשִׁים אֶת מַייק", - "source": "time_tunnel_silver_train", - "match_method": "conjugated_prefix" + "text": "בִּתְנוּעוֹת קְצוּבוֹת הִתְחִילוּ סוֹרְגִים סָבִיב לְגוּפָם פְּקַעַת־שֶׁל־הִתְבּוֹדְדוּת", + "source": "silkworms", + "match_method": "conjugated" } ], "cloze": { - "text": "\"בַּשְּׁנִיָּה שֶׁאֲנִי מַצְלִיחַ לְנַסֵּר אֶת הַסּוֹרְגִים הָאֵלֶּה, אַתֶּם פּוֹגְשִׁים אֶת מַייק", - "cloze_word_start": 47, - "cloze_word_end": 59, + "text": "בִּתְנוּעוֹת קְצוּבוֹת הִתְחִילוּ סוֹרְגִים סָבִיב לְגוּפָם פְּקַעַת־שֶׁל־הִתְבּוֹדְדוּת", + "cloze_word_start": 34, + "cloze_word_end": 43, "cloze_hint": null, "cloze_guid": "Q7TUWz{bE." }, @@ -1374635,7 +1381793,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֵיזֶה סֵרָחוֹן יוֹצֵא מֵהַפֶּה שֶׁלָּהּ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "זֶה הָיָה סֵרָחוֹן נוֹרָא", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֵיזֶה סֵרָחוֹן יוֹצֵא מֵהַפֶּה שֶׁלָּהּ", + "cloze_word_start": 7, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "ws7JPL8rp`" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "סֵרָחוֹן", @@ -1375639,16 +1382818,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "חוּץ מִזֶּה אֲנִי אוֹהֵב סִרְטֵי אֵימָה", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "״ ״וְהוֹפְכוֹת אֲנָשִׁים לְזוֹמְבִּים,״ עֵרָן הִמְשִׁיךְ לִצְחוֹק, ״רָאִיתָ סֶרֶט עַל זֶה", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "לַמְרוֹת שֶׁאֲנִי אוֹהֵב לִרְאוֹת סִרְטֵי אֵימָה, הַפַּעַם דֵּי נִלְחַצְתִּי", + "source": "time_tunnel_70", + "match_method": "inflected" } ], "cloze": { - "text": "״ ״וְהוֹפְכוֹת אֲנָשִׁים לְזוֹמְבִּים,״ עֵרָן הִמְשִׁיךְ לִצְחוֹק, ״רָאִיתָ סֶרֶט עַל זֶה", - "cloze_word_start": 76, - "cloze_word_end": 81, + "text": "חוּץ מִזֶּה אֲנִי אוֹהֵב סִרְטֵי אֵימָה", + "cloze_word_start": 25, + "cloze_word_end": 32, "cloze_hint": null, "cloze_guid": "Mpg:taI_JW" }, @@ -1375881,6 +1383070,16 @@ "text": "הוּא הָיָה סַרְטָן זָקֵן וְחָמוּץ, זֶה מָה שֶׁהוּא הָיָה", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "\"וְאָז, כַּיָּדוּעַ,\" הִמְשִׁיךְ הַכְּמוֹ־צָב, \"זוֹרְקִים אֶת—\" \"סַרְטְנֵי הַיָּם", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "\"נוּכַל לְהִסְתַּדֵּר בְּלִי סַרְטְנֵי יָם, אַחֲרֵי הַכֹּל", + "source": "alice_wonderland", + "match_method": "inflected" } ], "cloze": { @@ -1382594,6 +1389793,11 @@ "source": "time_tunnel_78", "match_method": "direct_prefix" }, + { + "text": "כְּמוֹ שֶׁקָּרָאתָ בְּקִטְעֵי הָעִתּוֹנוּת שֶׁהִצְמַדְנוּ לְדַלְתוֹת הַבָּתִּים, לֹא הִגַּעְנוּ הֵנָּה בַּסֵּתֶר", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + }, { "text": "וְהֵם נִקְרְאוּ גַּם ״הַיְּהוּדִים הַנִּסְתָּרִים״, כִּי הֵם שָׁמְרוּ בַּסֵּתֶר אֶת מִצְווֹת הַדָּת הַיְּהוּדִית", "source": "time_tunnel_78", @@ -1385757,17 +1392961,17 @@ "examples": { "vetted": [ { - "text": "הוא עבד במהלך הקיץ והסתיו, ובחודש אוקטובר 1942 היה הספר מוכן", - "source": "הנסיך הקטן", - "vetted": true + "text": "מִסְכְּנָה הָיְתָה וּדְווּיָה, וְהָיוּ הָעֲבָדִים מַכִּים אוֹתָהּ וּמַעֲלִיבִים אוֹתָהּ וְהִיא מַחֲרִישָׁה", + "source": "tree_dress", + "match_method": "inflected_prefix" } ], "cloze": { - "text": "הוא עבד במהלך הקיץ והסתיו, ובחודש אוקטובר 1942 היה הספר מוכן", - "cloze_word_start": 4, - "cloze_word_end": 7, + "text": "מִסְכְּנָה הָיְתָה וּדְווּיָה, וְהָיוּ הָעֲבָדִים מַכִּים אוֹתָהּ וּמַעֲלִיבִים אוֹתָהּ וְהִיא מַחֲרִישָׁה", + "cloze_word_start": 39, + "cloze_word_end": 49, "cloze_hint": null, - "cloze_guid": "B-D=?W?&Nm" + "cloze_guid": "fxcHvF5ht1" }, "rejected_count": 0 }, @@ -1387260,6 +1394464,11 @@ "text": "נֹגַהּ פָּתְחָה דֶּלֶת שֶׁל אָרוֹן וְשָׁלְפָה מִמֶּנּוּ חֻלְצָה וּמִכְנָסַיִם עֲבוּרִי וְשִׂמְלָה עֲבוּר שָׁרוֹן", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "אֵיזוֹ תְּמוּרָה נְקַבֵּל עֲבוּר הַפִּנּוּי", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1387857,6 +1395066,11 @@ "text": "בְּמֶרְכָּזוֹ הָיְתָה צְלוֹחִית עִם רִבָּה וְהִקִּיפוּ אוֹתָהּ כַּמָּה פְּרוּסוֹת עָבוֹת שֶׁל לֶחֶם", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "\"שָׁלוֹם יְלָדִים,״ בַּחוּרָה רָזָה נִכְנֶסֶת אֶל הַחֶדֶר שֶׁבּוֹ אֲנַחְנוּ נִמְצָאִים וּמְבִיאָה אִתָּהּ שְׂמִיכָה עָבָה, מְקֻפֶּלֶת", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "rejected_count": 0 @@ -1390587,25 +1397801,25 @@ "examples": { "vetted": [ { - "text": "״ ״כַּנִּרְאֶה הוּא מִתְכַּוֵן לְמַעֲבָר,״ שָׁרוֹן עָזְרָה לִי", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "וְאָז קָלַטְתִּי שֶׁעֲנָת מְדַבֶּרֶת עַל מַעֲבַר דִּירָה", + "source": "time_tunnel_70", + "match_method": "inflected" }, { - "text": "הַאִם יָכוֹל לִהְיוֹת שֶׁלֹּא כָּאן אָמוּר לִהְיוֹת הַמַּעֲבָר לַגָּדָה הַנֶּגְדִּית שֶׁל הַיַּרְדֵּן", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "רַק לִפְנֵי מַעֲבַר הַחֲצָיָה אֲנַחְנוּ עוֹצְרִים וּמַמְתִּינִים לָאוֹר הַיָּרוֹק בָּרַמְזוֹר", + "source": "time_tunnel_82", + "match_method": "inflected" }, { - "text": "״ חֲבֵרוֹ נוֹתַר לַעֲמוֹד בִּמְקוֹמוֹ וְחָסַם אֶת הַמַּעֲבָר", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "הוּא הִצְנִיחַ אוֹתָם בְּמָקוֹם שֶׁנִּקְרָא מַעֲבַר הַמִּיתְלֶה לָכֵן", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { - "text": "״ ״כַּנִּרְאֶה הוּא מִתְכַּוֵן לְמַעֲבָר,״ שָׁרוֹן עָזְרָה לִי", - "cloze_word_start": 31, - "cloze_word_end": 40, + "text": "וְאָז קָלַטְתִּי שֶׁעֲנָת מְדַבֶּרֶת עַל מַעֲבַר דִּירָה", + "cloze_word_start": 41, + "cloze_word_end": 48, "cloze_hint": null, "cloze_guid": "Qa9;desL{c" }, @@ -1390966,15 +1398180,15 @@ "examples": { "vetted": [ { - "text": "״הֵם שׁוּב מִתְאַרְגְּנִים לָצֵאת לִכְבּוֹשׁ אֶת הַמַּעְבָּרָה,״ אֶת הַמִּלָּה הָאַחֲרוֹנָה הוּא אָמַר בְּעִבְרִית", + "text": "״לְפִיכָךְ אֲנִי מְקַוֶה שֶׁהַלַּיְלָה הַפְּלֻגָּה שֶׁל גְּדוּד 38 לְקַלָּעֵי הַמֶּלֶךְ תַּצְלִיחַ לִלְכּוֹד אֶת מַעְבֶּרֶת הַיַּרְדֵּן", "source": "time_tunnel_63", - "match_method": "direct_prefix" + "match_method": "inflected" } ], "cloze": { - "text": "״הֵם שׁוּב מִתְאַרְגְּנִים לָצֵאת לִכְבּוֹשׁ אֶת הַמַּעְבָּרָה,״ אֶת הַמִּלָּה הָאַחֲרוֹנָה הוּא אָמַר בְּעִבְרִית", - "cloze_word_start": 49, - "cloze_word_end": 62, + "text": "״לְפִיכָךְ אֲנִי מְקַוֶה שֶׁהַלַּיְלָה הַפְּלֻגָּה שֶׁל גְּדוּד 38 לְקַלָּעֵי הַמֶּלֶךְ תַּצְלִיחַ לִלְכּוֹד אֶת מַעְבֶּרֶת הַיַּרְדֵּן", + "cloze_word_start": 113, + "cloze_word_end": 123, "cloze_hint": null, "cloze_guid": "H_HY_|LxuK" }, @@ -1391061,7 +1398275,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהָעֲגָלָה הַזּוֹ שֶׁשִּׁמְּשָׁה לִנְשִׂיאַת הַקֶּרַח, שִׁמְּשָׁה גַּם לְהַעֲבָרַת נֶשֶׁק", + "source": "time_tunnel_silver_train", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וְהָעֲגָלָה הַזּוֹ שֶׁשִּׁמְּשָׁה לִנְשִׂיאַת הַקֶּרַח, שִׁמְּשָׁה גַּם לְהַעֲבָרַת נֶשֶׁק", + "cloze_word_start": 72, + "cloze_word_end": 83, + "cloze_hint": null, + "cloze_guid": "q!:;x<@VA2" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הַעֲבָרָה", @@ -1391143,7 +1398373,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "תַּסְבִּירוּ לָהּ שֶׁיֵּשׁ פֹּה טַיָּס לְשֶׁעָבַר שֶׁל דָקוֹטָה, שֶׁמָּה־זֶה מִתְגַּעְגֵּעַ לָטוּס וְ", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "תַּסְבִּירוּ לָהּ שֶׁיֵּשׁ פֹּה טַיָּס לְשֶׁעָבַר שֶׁל דָקוֹטָה, שֶׁמָּה־זֶה מִתְגַּעְגֵּעַ לָטוּס וְ", + "cloze_word_start": 39, + "cloze_word_end": 49, + "cloze_hint": null, + "cloze_guid": "mNOVG5m#!L" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -1395711,17 +1402957,17 @@ "examples": { "vetted": [ { - "text": "כְּשֶׁפָּרַשְׂתִּי שׁוּב אֶת הַשָּׁטִיחַ עַל הָאֲדָמָה, גִּלִּיתִי שֶׁלַּחוֹר שֶׁבַּקִּיר יֵשׁ צוּרָה שֶׁל עִגּוּל", - "source": "מנהרת הזמן 82", - "vetted": true + "text": "הוּא דּוֹחֵף אוֹתִי לְתוֹךְ מִנְהָרָה שֶׁפִּתְחָהּ עָגֹל וְהִיא צָרָה מְאוֹד וְשׁוֹנָה מְאוֹד מִמִּנְהֶרֶת־הַזְּמַן שֶׁלָּנוּ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "כְּשֶׁפָּרַשְׂתִּי שׁוּב אֶת הַשָּׁטִיחַ עַל הָאֲדָמָה, גִּלִּיתִי שֶׁלַּחוֹר שֶׁבַּקִּיר יֵשׁ צוּרָה שֶׁל עִגּוּל", - "cloze_word_start": 107, - "cloze_word_end": 114, + "text": "הוּא דּוֹחֵף אוֹתִי לְתוֹךְ מִנְהָרָה שֶׁפִּתְחָהּ עָגֹל וְהִיא צָרָה מְאוֹד וְשׁוֹנָה מְאוֹד מִמִּנְהֶרֶת־הַזְּמַן שֶׁלָּנוּ", + "cloze_word_start": 51, + "cloze_word_end": 56, "cloze_hint": null, - "cloze_guid": "s~J2{L?C[p" + "cloze_guid": "tTQ4/tuLQm" }, "rejected_count": 0 }, @@ -1396895,6 +1404141,11 @@ "text": "\" שִׁיר אַנְגְּלִי מֵאֵת הַמְּשׁוֹרֵר אַייזֶק וַּאטְס עַל גּוֹרָלוֹ הֶעָגוּם שֶׁל הָעַצְלָן", "source": "alice_wonderland", "match_method": "direct_prefix" + }, + { + "text": "אֵין לָנוּ צֹרֶךְ בְּדִווּחַ מִתָּא הַפִּקּוּד, כְּדֵי לְהָבִין אֶת מַצָּבֵנוּ הֶעָגוּם", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -1398312,7 +1405563,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"אֵיפֹה קַפְרִיסִין וְאֵיפֹה אֲנַחְנוּ,\" אִיז'וֹ מֵשִׁיב, \"עָבְרוּ יוֹמַיִם וְהָאוֹנִיָּה לֹא עוֹגֶנֶת", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "שְׁתֵּי אוֹנִיּוֹת גְּדוֹלוֹת עוֹגְנוֹת בּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "הוּא קָפַץ עַל רַגְלָיו, וּלְשִׂמְחָתוֹ הָרַבָּה רָאָה, כִּי אֳנִיָּה עוֹגֶנֶת מִמּוּל לָאִי, וְהַצּוֹפֶה הִשְׁגִּיחַ בּוֹ", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\"אֵיפֹה קַפְרִיסִין וְאֵיפֹה אֲנַחְנוּ,\" אִיז'וֹ מֵשִׁיב, \"עָבְרוּ יוֹמַיִם וְהָאוֹנִיָּה לֹא עוֹגֶנֶת", + "cloze_word_start": 94, + "cloze_word_end": 102, + "cloze_hint": null, + "cloze_guid": "ep3:7JHpKX" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1399424,8 +1406701,13 @@ "match_method": "conjugated" }, { - "text": "\"הֶחְלַטְנוּ לְשַׁתֵּף פְּעֻלָּה בְּפִתְרוֹן כְּתַב הַחִידָה,״ שָׁרוֹן עִדְכְּנָה אוֹתִי, \"נֵלֵךְ אֵלֶיךָ אוֹ אֵלַי", - "source": "time_tunnel_78", + "text": "\"זֹאת סוּסָה,״ שָׁרוֹן מְעַדְכֶּנֶת, כְּאִלּוּ לֹא הֵבַנְתִּי בְּעַצְמִי", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "בַּשָּׁנָה הַזּוֹ, כְּדַאי שֶׁתִּהְיוּ מְעֻדְכָּנִים, הַטּוּרְקִים שָׁלְטוּ בְּאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -1403707,7 +1410989,21 @@ "עֲדָשָׁה|Noun|lentil" ], "confusables_guid": "c@w:Q}F_p}=S" }, @@ -1435908,6 +1443329,11 @@ "text": "\"אַתְּ מַעֲלִיבָה אוֹתִי כְּשֶׁאַתְּ מְדַבֶּרֶת שְׁטוּיוֹת כָּאֵלֶּה", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "\" אִשְׁתּוֹ הִתְנַפְּלָה עָלָיו, \"תַּפְסִיק לְהַעֲלִיב אוֹתָנוּ וּתְדַבֵּר לָעִנְיָן", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1436647,7 +1444073,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְכָל אֶחָד מֵהַצְּרִיפִים נִרְאֶה עָלוּב יוֹתֵר מִשְּׁכֵנוֹ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "בְּגָדָיו מְרֻפָּטִים, צְבָעָיו הַיָּפִים דָּהוּ וְכֻלּוֹ עָלוּב וּמִסְכֵּן", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "אֵיזֶה זִכָּרוֹן עָלוּב יֵשׁ לִי", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְכָל אֶחָד מֵהַצְּרִיפִים נִרְאֶה עָלוּב יוֹתֵר מִשְּׁכֵנוֹ", + "cloze_word_start": 35, + "cloze_word_end": 41, + "cloze_hint": null, + "cloze_guid": "B2l<)7Uq]," + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1438389,6 +1445841,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"לְמָשָׁל לְאַנְשֵׁי עֲלִיַּת 'אֶעֱלֶה בְּתָמָר', שֶׁיָּצְאוּ בָּרֶגֶל לַדֶּרֶךְ מִתֵּימָן לְאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_82", + "match_method": "inflected" + }, { "text": "\" \"כֵּן,\" שָׁרוֹן מְאַשֶּׁרֶת, \"וּבֶאֱמֶת הָיְתָה עֲלִיָּה כָּזֹאת", "source": "time_tunnel_82", @@ -1438401,9 +1445858,9 @@ } ], "cloze": { - "text": "\" \"כֵּן,\" שָׁרוֹן מְאַשֶּׁרֶת, \"וּבֶאֱמֶת הָיְתָה עֲלִיָּה כָּזֹאת", - "cloze_word_start": 50, - "cloze_word_end": 58, + "text": "\" \"לְמָשָׁל לְאַנְשֵׁי עֲלִיַּת 'אֶעֱלֶה בְּתָמָר', שֶׁיָּצְאוּ בָּרֶגֶל לַדֶּרֶךְ מִתֵּימָן לְאֶרֶץ־יִשְׂרָאֵל", + "cloze_word_start": 23, + "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "E^iS5^ST{d" }, @@ -1439926,13 +1447383,13 @@ "match_method": "direct" }, { - "text": "״ \"מְעֻלֶּה,״ שָׁרוֹן הִסְכִּימָה אִתִּי", - "source": "time_tunnel_78", + "text": "אַךְ נִרְאָה שֶׁהַמֶּלֶךְ הָיָה רוֹכֵב מְעֻלֶּה, כִּי הִנֵּה הִרְגִּיעַ אֶת סוּסוֹ", + "source": "gulliver", "match_method": "direct" }, { - "text": "״ \"מְעֻלֶּה,״ שָׁרוֹן אָמְרָה", - "source": "time_tunnel_silver_train", + "text": "״ \"מְעֻלֶּה,״ שָׁרוֹן הִסְכִּימָה אִתִּי", + "source": "time_tunnel_78", "match_method": "direct" } ], @@ -1440021,15 +1447478,25 @@ "examples": { "vetted": [ { - "text": "צָנְחָה לָהּ עַל עֲרֵמַת מַקְלוֹת וְעָלִים יְבֵשִׁים, וּבְכָךְ תַּמָּה הַנְּפִילָה", - "source": "alice_wonderland", - "match_method": "inflected_prefix" + "text": "פֶּרַח וְלוֹ שְׁלוֹשָׁה עֲלֵי כּוֹתֶרֶת, סְתָם פֶּרַח", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "״ \"הוּא כָּתַב אֶת הַמִּלִּים לַשִּׁיר 'עֲלֵי בָּרִיקָדוֹת',״ יְהוּדִית הֵשִׁיבָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "הָעֵצִים הִתְחִילוּ מוֹצִיאִים עָלִים חֲדָשִׁים, שֶׁהִצְטָרְפוּ יַחַד לְשִׂמְלָה יְרֻקָה וּמְלַבְלֶבֶת", + "source": "silkworms", + "match_method": "inflected" } ], "cloze": { - "text": "צָנְחָה לָהּ עַל עֲרֵמַת מַקְלוֹת וְעָלִים יְבֵשִׁים, וּבְכָךְ תַּמָּה הַנְּפִילָה", - "cloze_word_start": 34, - "cloze_word_end": 42, + "text": "פֶּרַח וְלוֹ שְׁלוֹשָׁה עֲלֵי כּוֹתֶרֶת, סְתָם פֶּרַח", + "cloze_word_start": 24, + "cloze_word_end": 29, "cloze_hint": null, "cloze_guid": "s#fB#7qik_" }, @@ -1445256,6 +1452723,11 @@ "text": "\" \"הַשּׁוֹשַׁנָּה שֶׁלִּי מְצוּיָה בְּסַכָּנַת הֵעָלְמוּת בֶּעָתִיד", "source": "little_prince", "match_method": "direct" + }, + { + "text": "אוּלַי הֵעָלְמוּת הַפֶּתַח קְשׁוּרָה בַּמַּחֲלָה שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1451386,6 +1458858,11 @@ "text": "הַסּוּסִים עַצְמָם הֵבִינוּ שֶׁהֵם נִמְצָאִים בְּסַכָּנָה, וְנִסּוּ לִבְרוֹחַ מִתְּחוּם הַיְּנִיקָה שֶׁל עַמּוּד הָאָבָק", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "הֵן נִרְאוֹת כְּמוֹ חֵלֶק מִגַּן מִשְׂחָקִים, עֻבְדָּה שֶׁנִּצָּב כָּאן עַמּוּד שָׁבוּר שֶׁל נַדְנֵדָה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1451647,7 +1459124,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִמַּצָּב שֶׁל שְׁכִיבָה הוּא זִנֵּק לַעֲמִידָה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "מִמַּצָּב שֶׁל שְׁכִיבָה הוּא זִנֵּק לַעֲמִידָה", + "cloze_word_start": 37, + "cloze_word_end": 47, + "cloze_hint": null, + "cloze_guid": "g8,E$wM_P(" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עֲמִידָה", @@ -1451794,7 +1459287,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וַאֲנַחְנוּ רְגִילִים שֶׁאַף אֶחָד לֹא מִתְוַכֵּחַ עִם הָעֶמְדָּה הַזּוֹ", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "וַאֲנַחְנוּ רְגִילִים שֶׁאַף אֶחָד לֹא מִתְוַכֵּחַ עִם הָעֶמְדָּה הַזּוֹ", + "cloze_word_start": 55, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "vhUh.V(TJ[" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עֶמְדָּה", @@ -1453638,8 +1461147,8 @@ "match_method": "direct" }, { - "text": "הַבַּחוּרִים הַנּוֹעָזִים הָאֵלֶּה לֹא הֶחְמִיצוּ שׁוּם הִזְדַּמְּנוּת לִפְעוֹל לְמַעַן עַם יִשְׂרָאֵל, וְאַתָּה יוֹדֵעַ מָה", - "source": "time_tunnel_silver_train", + "text": "וְאָכֵן, הָיָה שָׁם עַם שָׁלֵם", + "source": "silkworms", "match_method": "direct" } ], @@ -1455348,7 +1462857,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּדִמְיוֹנִי אֲנִי כְּבָר רוֹאֶה אוֹתוֹ מַעֲמִיס אוֹתִי עַל גַּב הַסּוּסָה כְּמוֹ שַׂק", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בְּדִמְיוֹנִי אֲנִי כְּבָר רוֹאֶה אוֹתוֹ מַעֲמִיס אוֹתִי עַל גַּב הַסּוּסָה כְּמוֹ שַׂק", + "cloze_word_start": 41, + "cloze_word_end": 49, + "cloze_hint": null, + "cloze_guid": "x}Ho?N-JJ?" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1458118,7 +1465643,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כַּנִּרְאֶה בִּגְלָלָהּ אֲנִי רוֹאֶה כָּאן, מַמָּשׁ לְיָדִי, שֶׁקַע בַּחוֹל, וְהַשֶּׁקַע הוֹלֵךְ וּמִתְרַחֵב וּמַעֲמִיק, וְ", + "source": "time_tunnel_77", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "כַּנִּרְאֶה בִּגְלָלָהּ אֲנִי רוֹאֶה כָּאן, מַמָּשׁ לְיָדִי, שֶׁקַע בַּחוֹל, וְהַשֶּׁקַע הוֹלֵךְ וּמִתְרַחֵב וּמַעֲמִיק, וְ", + "cloze_word_start": 109, + "cloze_word_end": 119, + "cloze_hint": null, + "cloze_guid": "lBkCw]_[(-" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1458853,6 +1466394,16 @@ "text": "הִתְעַמַּקְתִּי בַּדְּבָרִים שֶׁל שָׁרוֹן וְהֵבַנְתִּי שֶׁהִיא צוֹדֶקֶת", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "״ כְּאֵב הָרֹאשׁ שֶׁלִּי הוֹלֵךְ וּמִתְעַצֵּם וְקָשֶׁה לִי לְהִתְעַמֵּק בַּדְּבָרִים שֶׁל שָׁרוֹן", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "אֲבָל גַּם בְּלִי לְהִתְעַמֵּק בָּהֶם, הֵם לֹא מִתְקַבְּלִים עַל דַּעְתִּי", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1459467,19 +1467018,24 @@ "examples": { "vetted": [ { - "text": "הֵם יְשֵׁנִים עָמֹק בָּאֲדָמָה, עַד שֶׁאֶחָד מֵהֶם מֵקִיץ מֵחֲלוֹמוֹתָיו", - "source": "הנסיך הקטן", - "vetted": true + "text": "הַגְּבָעוֹת הָאֵלֶּה מִשְׂתָּרְעוֹת בְּאֵזוֹר בֵּית שְׁעָרִים, קָרוֹב לְעֵמֶק יִזְרְעֶאל", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "כָּל הַיּוֹם לֺא עָלָה זִכְרוֹ עַל לִבּוֹ… וּבְרֶגַע זֶה נִשְׁמַע קוֹל־חֲצוֹצְרָה עוֹלֶה מִן הָעֵמֶק", + "source": "kid_on_mountain", + "match_method": "direct_prefix" } ], "cloze": { - "text": "הֵם יְשֵׁנִים עָמֹק בָּאֲדָמָה, עַד שֶׁאֶחָד מֵהֶם מֵקִיץ מֵחֲלוֹמוֹתָיו", - "cloze_word_start": 14, - "cloze_word_end": 19, + "text": "הַגְּבָעוֹת הָאֵלֶּה מִשְׂתָּרְעוֹת בְּאֵזוֹר בֵּית שְׁעָרִים, קָרוֹב לְעֵמֶק יִזְרְעֶאל", + "cloze_word_start": 70, + "cloze_word_end": 77, "cloze_hint": null, - "cloze_guid": "O4{$K-@" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עַצְמָאוּת", @@ -1482495,6 +1490165,11 @@ "text": "דַּוְקָא בִּגְלַל שֶׁהַשִּׁחְרוּר הָיָה כָּל כָּךְ פָּשׁוּט, הַכַּעַס שֶׁלִּי עַל שָׁלוֹם מִתְעַצֵּם", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "עָמֹק בְּתוֹכִי מִתְעַצֶּמֶת הַהַרְגָּשָׁה שֶׁהַמַּטָּרָה שֶׁל מִנְהֶרֶת־הַזְּמַן הִיא לְהַפְגִּישׁ אוֹתָנוּ עִם הַיְּלָדִים הָאֵלֶּה", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1482942,7 +1490617,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁאַפְתִּי אֲוִיר לוֹהֵט לְרֵאוֹתַי, וְצָעַקְתִּי בִּמְלוֹא עָצְמַת הַקּוֹל שֶׁלִּי", + "source": "time_tunnel_63", + "match_method": "inflected" + } + ], + "cloze": { + "text": "שָׁאַפְתִּי אֲוִיר לוֹהֵט לְרֵאוֹתַי, וְצָעַקְתִּי בִּמְלוֹא עָצְמַת הַקּוֹל שֶׁלִּי", + "cloze_word_start": 61, + "cloze_word_end": 68, + "cloze_hint": null, + "cloze_guid": "Pkm!@.[vc$" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עָצְמָה", @@ -1483023,19 +1490714,9 @@ "examples": { "vetted": [ { - "text": "\"כְּשֶׁהוּא יִשָּׁאֵר כָּאן, הוּא יִהְיֶה בְּעֶצֶם רַק קְלִפָּה יְשָׁנָה שֶׁזָּרְקוּ", - "source": "הנסיך הקטן", - "match_method": "direct_prefix" - }, - { - "text": "כְּשֶׁפָּגְשׁוּ אוֹתִי הַחֲבֵרִים, הֵם שָׂמְחוּ מֵעֶצֶם הָעֻבְדָּה שֶׁחָזַרְתִּי חַי", - "source": "הנסיך הקטן", - "match_method": "direct_prefix" - }, - { - "text": "הַרְבֵּה יוֹתֵר דָּחוּף לִי לְהָבִין מָה קוֹרֶה כָּאן וְאֵיפֹה בְּעֶצֶם אֲנַחְנוּ נִמְצָאִים", - "source": "מנהרת הזמן 82", - "match_method": "direct_prefix" + "text": "עֵינֵיהֶם שֶׁל שְׁנֵי הַטוּרְקִים הָיוּ שְׁקוּעוֹת עָמֹק וְעַצְמוֹת הַלְּחָיַיִם שֶׁלָּהֶם בָּלְטוּ", + "source": "time_tunnel_63", + "match_method": "inflected_prefix" } ], "rejected_count": 0 @@ -1483439,6 +1491120,11 @@ "text": "\" שָׁאֲלָה אַלִיס, שֶׁתָּמִיד גִּלְּתָה עִנְיָן עָצוּם בְּסוּגְיוֹת שֶׁל אֲכִילָה וּשְׁתִיָּה", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "לְפֶתַע־פִּתְאֹם גָּבְרָה הָרוּחַ וְגַל עָצוּם עָלָה עַל הַסִּירָה וַהֲפָכָהּ עַל פִּיהָ", + "source": "gulliver", + "match_method": "direct" } ], "rejected_count": 0 @@ -1483525,6 +1491211,11 @@ "text": "\" שָׁאֲלָה אַלִיס, שֶׁתָּמִיד גִּלְּתָה עִנְיָן עָצוּם בְּסוּגְיוֹת שֶׁל אֲכִילָה וּשְׁתִיָּה", "source": "alice_wonderland", "match_method": "direct" + }, + { + "text": "לְפֶתַע־פִּתְאֹם גָּבְרָה הָרוּחַ וְגַל עָצוּם עָלָה עַל הַסִּירָה וַהֲפָכָהּ עַל פִּיהָ", + "source": "gulliver", + "match_method": "direct" } ], "rejected_count": 0 @@ -1484284,7 +1491975,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" הַכַּעַס מַעֲצִים אֶת פְּעִימוֹת הַלֵּב הַמְּהִירוֹת שֶׁלִּי וַאֲנִי מַמָּשׁ רוֹעֵד, \"כָּכָה הֵם הִתְנַהֲגוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" הַכַּעַס מַעֲצִים אֶת פְּעִימוֹת הַלֵּב הַמְּהִירוֹת שֶׁלִּי וַאֲנִי מַמָּשׁ רוֹעֵד, \"כָּכָה הֵם הִתְנַהֲגוּ", + "cloze_word_start": 11, + "cloze_word_end": 19, + "cloze_hint": null, + "cloze_guid": "Qn<$dnn!`I" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1485007,7 +1492714,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" אָמְרָה אַלִיס, וְהִיא הִכְנִיסָה אוֹתָם לְתוֹךְ עֲצִיץ פְּרָחִים גָּדוֹל שֶׁעָמַד בְּסָמוּךְ", + "source": "alice_wonderland", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\" אָמְרָה אַלִיס, וְהִיא הִכְנִיסָה אוֹתָם לְתוֹךְ עֲצִיץ פְּרָחִים גָּדוֹל שֶׁעָמַד בְּסָמוּךְ", + "cloze_word_start": 51, + "cloze_word_end": 57, + "cloze_hint": null, + "cloze_guid": "tof>{J!ycy" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עָצִיץ", @@ -1486585,7 +1494308,16 @@ "עָקֵב|Noun|heel" ], "confusables_guid": "JmOnu2hA:`", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בֶּקַע־יְהַבְג וּבֶקַע־יְכוּמָן – לָרִאשׁוֹנִים עֲקֵבִים גְּבוֹהִים לְנַעֲלֵיהֶם, וְהָאַחֲרוֹנִים – מְהַלְּכִים עַל עֲקֵבִים נְמוּכִים", + "source": "gulliver", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עָקֵב", @@ -1487638,7 +1495370,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי מוֹחֶה אֶת הַדְּמָעוֹת בְּכַף יָדִי וְנִדְחָק לְעֵבֶר מַעֲקֵה הָאוֹנִיָּה", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "\" הִיא הִתְכּוֹפְפָה מֵעַל מַעֲקֵה הַסִּפּוּן וְצָרְחָה לַכִּווּן שֶׁלִּי, \"הֵי, אַתָּה", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "אֲנִי מוֹחֶה אֶת הַדְּמָעוֹת בְּכַף יָדִי וְנִדְחָק לְעֵבֶר מַעֲקֵה הָאוֹנִיָּה", + "cloze_word_start": 60, + "cloze_word_end": 67, + "cloze_hint": null, + "cloze_guid": "Hsp{CGv311" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַעֲקֶה", @@ -1492630,6 +1500383,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הִיא נוֹלְדָה בַּמּוֹשָׁבָה עֶקְרוֹן וְגָדְלָה בָּהּ, וְאָז קָרְאוּ לָהּ דְּבוֹרָה לֶוִין", + "source": "time_tunnel_70", + "match_method": "inflected" + }, { "text": "זֶה עִקָּרוֹן צוֹפִי מֶרְכָּזִי", "source": "time_tunnel_70", @@ -1492637,9 +1500395,9 @@ } ], "cloze": { - "text": "זֶה עִקָּרוֹן צוֹפִי מֶרְכָּזִי", - "cloze_word_start": 4, - "cloze_word_end": 13, + "text": "הִיא נוֹלְדָה בַּמּוֹשָׁבָה עֶקְרוֹן וְגָדְלָה בָּהּ, וְאָז קָרְאוּ לָהּ דְּבוֹרָה לֶוִין", + "cloze_word_start": 28, + "cloze_word_end": 36, "cloze_hint": null, "cloze_guid": "Lzk0kD+(_k" }, @@ -1492789,7 +1500547,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנַחְנוּ מִתְפַּלְּלִים שֶׁזּוֹ תִּהְיֶה הָעֲקִירָה הָאַחֲרוֹנָה שֶׁל יִשּׁוּב יְהוּדִי בְּאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אֲנַחְנוּ מִתְפַּלְּלִים שֶׁזּוֹ תִּהְיֶה הָעֲקִירָה הָאַחֲרוֹנָה שֶׁל יִשּׁוּב יְהוּדִי בְּאֶרֶץ־יִשְׂרָאֵל", + "cloze_word_start": 42, + "cloze_word_end": 52, + "cloze_hint": null, + "cloze_guid": "M?*TX;6I)y" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עֲקִירָה", @@ -1495771,7 +1503545,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נִרְאֶה לָךְ שֶׁאֶתֵּן לַחַמַאס לָקַחַת לִי אוֹתָהּ בְּתוֹר בַּת עֲרֻבָּה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אִם אַנְשֵׁי הַחַמַאס יַחְזִיקוּ אוֹתִי אֶצְלָם בְּתוֹר בֶּן עֲרֻבָּה, אִמָּא שֶׁלִּי תִּתְמוֹטֵט מֵחֲרָדָה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "נִרְאֶה לָךְ שֶׁאֶתֵּן לַחַמַאס לָקַחַת לִי אוֹתָהּ בְּתוֹר בַּת עֲרֻבָּה", + "cloze_word_start": 65, + "cloze_word_end": 73, + "cloze_hint": null, + "cloze_guid": "DfzjWeVj" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1503450,8 +1511244,13 @@ "match_method": "conjugated" }, { - "text": "\"בְּשׁוּנִי הָאֵצֶ\"ל עָרַךְ קוּרְסִים לִמְפַקְּדִים,״ הִיא לָחֲשָׁה לִי יָשָׁר לְתוֹךְ הָאֹזֶן, \"זֶה מָה שֶׁאֲנִי יוֹדַעַת", - "source": "time_tunnel_silver_train", + "text": "\"הֵם בּוֹחֲרִים מְפַקֵּד,״ אֲנִי מְדַוֵחַ, \"הֵם עוֹרְכִים הַצְבָּעָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "הֵם עָרְכוּ מִשְׁתֶּה גָדוֹל לִכְבוֹדוֹ וְשִׂמְּחוּ אֶת אוֹרְחָם", + "source": "gulliver", "match_method": "conjugated" } ], @@ -1505178,7 +1512977,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם חָשְׁבוּ שֶׁעֲקִירַת אֲנָשִׁים מִבָּתֵּיהֶם דּוֹרֶשֶׁת עֲרִיכַת מִשְׁאַל עַם, כְּדֵי לָדַעַת מָה הָאֶזְרָחִים חוֹשְׁבִים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הֵם חָשְׁבוּ שֶׁעֲקִירַת אֲנָשִׁים מִבָּתֵּיהֶם דּוֹרֶשֶׁת עֲרִיכַת מִשְׁאַל עַם, כְּדֵי לָדַעַת מָה הָאֶזְרָחִים חוֹשְׁבִים", + "cloze_word_start": 59, + "cloze_word_end": 67, + "cloze_hint": null, + "cloze_guid": "LYMy/}4,k{" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "עֲרִיכָה", @@ -1506081,26 +1513896,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "צָנְחָה לָהּ עַל עֲרֵמַת מַקְלוֹת וְעָלִים יְבֵשִׁים, וּבְכָךְ תַּמָּה הַנְּפִילָה", + "source": "alice_wonderland", + "match_method": "inflected" + }, { "text": "\" \"הוּא הוֹצִיא מֵהָאָרוֹן עֲרֵמָה שֶׁל דַּפִּים וְעַכְשָׁיו אֲנִי רוֹאֶה אֶת זַלְמָן", "source": "time_tunnel_75", "match_method": "direct" }, { - "text": "בִּמְקוֹמוֹ, לְיַד הַסִּירִים, יֵשׁ עֲרֵמָה שֶׁל עֵצִים", - "source": "time_tunnel_82", - "match_method": "direct" - }, - { - "text": "הוּא נָעַל אֶת כֻּלָּם וְהִשְׁאִיר אֶת שָׁרוֹן וְאוֹתִי בֵּין שְׁתֵּי עֲרֵמוֹת שֶׁל עֵצִים לְהַסָּקָה", + "text": "\"אֲנִי מַצִּיעַ שֶׁנַּחְזֹר לִכְתַב הַחִידָה,״ נִשְׁעַנְתִּי עַל עֲרֵמַת הָעֵצִים", "source": "time_tunnel_78", "match_method": "inflected" } ], "cloze": { - "text": "\" \"הוּא הוֹצִיא מֵהָאָרוֹן עֲרֵמָה שֶׁל דַּפִּים וְעַכְשָׁיו אֲנִי רוֹאֶה אֶת זַלְמָן", - "cloze_word_start": 27, - "cloze_word_end": 34, + "text": "צָנְחָה לָהּ עַל עֲרֵמַת מַקְלוֹת וְעָלִים יְבֵשִׁים, וּבְכָךְ תַּמָּה הַנְּפִילָה", + "cloze_word_start": 17, + "cloze_word_end": 24, "cloze_hint": null, "cloze_guid": "K=3s}Mq5fZ" }, @@ -1508219,7 +1516034,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה עַרְסָל, אֲנִי מַמָּשׁ מְדַמְיֵן אֶת הַיֶּלֶד שֶׁשּׁוֹכֵב עָלָיו", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְהִנֵּה עַרְסָל, אֲנִי מַמָּשׁ מְדַמְיֵן אֶת הַיֶּלֶד שֶׁשּׁוֹכֵב עָלָיו", + "cloze_word_start": 9, + "cloze_word_end": 16, + "cloze_hint": null, + "cloze_guid": "yN-&Het" }, @@ -1535387,7 +1543338,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַמְּשִׂימָה שֶׁלָּנוּ הָיְתָה לְהַפְגִּישׁ בֵּין אִיז'וֹ לְשַׁעְיָה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "אֲנִי חוֹשֵׁב עַל הַמַּאֲמַצִּים שֶׁהִשְׁקַעְנוּ כְּדֵי לְהַפְגִּישׁ אֶת שַׁעְיָה עִם אִיז'וֹ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "עָמֹק בְּתוֹכִי מִתְעַצֶּמֶת הַהַרְגָּשָׁה שֶׁהַמַּטָּרָה שֶׁל מִנְהֶרֶת־הַזְּמַן הִיא לְהַפְגִּישׁ אוֹתָנוּ עִם הַיְּלָדִים הָאֵלֶּה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַמְּשִׂימָה שֶׁלָּנוּ הָיְתָה לְהַפְגִּישׁ בֵּין אִיז'וֹ לְשַׁעְיָה", + "cloze_word_start": 31, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "r9LtjrsDEr" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1537107,7 +1545084,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל, אַתָּה יוֹדֵעַ, אִם אֶמְצָא אוֹתָהּ, תִּצְטָרֵךְ לִפְדּוֹת אוֹתָהּ בְּכֶסֶף", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֲבָל, אַתָּה יוֹדֵעַ, אִם אֶמְצָא אוֹתָהּ, תִּצְטָרֵךְ לִפְדּוֹת אוֹתָהּ בְּכֶסֶף", + "cloze_word_start": 56, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "N.OwwXlkY(" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1538750,14 +1546743,14 @@ "match_method": "direct" }, { - "text": "לֹעַ הַמִּנְהָרָה, שֶׁתָּמִיד הִמְתִּין לָנוּ פָּעוּר כְּמוֹ פֶּה, הָיָה סָגוּר", - "source": "time_tunnel_75", - "match_method": "direct" + "text": "הָיִיתִי צָרִיךְ לִשְׁפֹּט אוֹתָהּ עַל פִּי מַעֲשֶׂיהָ, וְלֹא עַל פִּי דְּבָרֶיהָ", + "source": "little_prince", + "match_method": "inflected" }, { - "text": "בַּכִּתָּה שֶׁלָּנוּ הֻחְלַט פֶּה אֶחָד שֶׁשָּׁרוֹן וַאֲנִי נִהְיֶה הַנְּצִיגִים", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "אֲבָל עַל פִּי תּוֹרַת הַמִּמְשָׁל שֶׁלִּי, אֲנִי אַמְתִּין לָרֶגַע שֶׁהַתְּנָאִים לְכָךְ יַבְשִׁילוּ", + "source": "little_prince", + "match_method": "inflected" } ], "rejected_count": 0 @@ -1540584,6 +1548577,11 @@ "text": "אֲבָל הַהַרְגָּשָׁה הַמְּעֻלָּה מִתְפּוֹגֶגֶת מַהֵר מְאוֹד כְּשֶׁאֲנִי מַבְחִין בְּנָחָשׁ שֶׁיּוֹצֵא מִתּוֹךְ הַשִּׂיחַ", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "הֲיִיתֶם מַאֲמִינִים שֶׁהַחוֹל שֶׁדָּבַק לְשַׂעֲרוֹתֵינוּ הִתְפּוֹגֵג", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1541152,7 +1549150,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"מִצְטַעֵר,\" הַהֲבָנָה שֶׁמִּנְהֶרֶת־הַזְּמַן מְעֹרֶבֶת בָּאֵרוּעַ הַזֶּה מְפִיחָה בִּי אֹמֶץ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" \"מִצְטַעֵר,\" הַהֲבָנָה שֶׁמִּנְהֶרֶת־הַזְּמַן מְעֹרֶבֶת בָּאֵרוּעַ הַזֶּה מְפִיחָה בִּי אֹמֶץ", + "cloze_word_start": 76, + "cloze_word_end": 84, + "cloze_hint": null, + "cloze_guid": "I}Ca@_rl" }, @@ -1566649,7 +1574766,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּמְּדִינָה עַצְמָהּ קַיָּמוֹת שְׁתֵּי מִפְלָגוֹת", + "source": "gulliver", + "match_method": "inflected" + } + ], + "cloze": { + "text": "בַּמְּדִינָה עַצְמָהּ קַיָּמוֹת שְׁתֵּי מִפְלָגוֹת", + "cloze_word_start": 40, + "cloze_word_end": 50, + "cloze_hint": null, + "cloze_guid": "cWnzp=C.Fi" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִפְלָגָה", @@ -1567612,8 +1575745,13 @@ "match_method": "conjugated" }, { - "text": "אַלִיס לֹא רָצְתָה לָשׁוּב וּלְהַעֲלִיב אֶת הַנַּמְנְמָן, וְלָכֵן פָּתְחָה בִּזְהִירוּת מֻפְלֶגֶת: \"אֲבָל אֲנִי לֹא מְבִינָה", - "source": "alice_wonderland", + "text": "לָמָּה הִיא עוֹמֶדֶת לְהַפְלִיג עִם דֶּגֶל יִשְׂרָאֵל", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הָאוֹנִיָּה הִפְלִיגָה מִנְּמַל סֶט", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1569884,7 +1578022,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לָמָּה הֵם צְרִיכִים לִהְיוֹת פְּלִיטִים, אִם לֹא מִתְרַחֶשֶׁת כָּאן מִלְחֶמֶת חוֹרְמָה", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "לָמָּה הֵם צְרִיכִים לִהְיוֹת פְּלִיטִים, אִם לֹא מִתְרַחֶשֶׁת כָּאן מִלְחֶמֶת חוֹרְמָה", + "cloze_word_start": 30, + "cloze_word_end": 40, + "cloze_hint": null, + "cloze_guid": "yb.bxuHiDx" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פָּלִיט", @@ -1569964,6 +1578118,11 @@ "text": "״ הַתְּשׁוּבָה הַזֹּאת נִפְלְטָה מִפִּי מַמָּשׁ בְּלִי שֶׁהִתְכַּוַנְתִּי", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "לְמַרְאֵה הָאוֹלָר נִפְלְטוּ קְרִיאוֹת־חֲרָדָה מִפִּי הַנַּנָּסִים, כִּי חָשְׁבוּ שֶׁהִנֵּה יִשְׁחַט אֶת הָאֲשֵׁמִים", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1570405,6 +1578564,11 @@ "text": "אַלִיס פָּלְטָה צְוָחָה קְטַנָּה שֶׁל צְחוֹק", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "\" \"כְּשֶׁהַיָּם פָּלַט אוֹתִי אֶל הַחוֹף", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1572682,15 +1580846,20 @@ "examples": { "vetted": [ { - "text": "הַתְּפִלָּה שֶׁלִּי הָיְתָה קְצָרָה", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "\" לְצִדּוֹ שֶׁל הַגֶּבֶר עָמַד יֶלֶד וְהֶחְזִיק בְּיָדוֹ סִדּוּר תְּפִלָּה פָּתוּחַ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לְיָדִי עוֹמֵד גֶּבֶר שֶׁהִתְעַטֵּף בְּטַלִּית לִקְרַאת תְּפִלַּת שַׁחֲרִית וְהוּא כּוֹרֵךְ תְּפִלִּין עַל זְרוֹעוֹ", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { - "text": "הַתְּפִלָּה שֶׁלִּי הָיְתָה קְצָרָה", - "cloze_word_start": 0, - "cloze_word_end": 11, + "text": "\" לְצִדּוֹ שֶׁל הַגֶּבֶר עָמַד יֶלֶד וְהֶחְזִיק בְּיָדוֹ סִדּוּר תְּפִלָּה פָּתוּחַ", + "cloze_word_start": 65, + "cloze_word_end": 74, "cloze_hint": null, "cloze_guid": "qGT/^,l^Ax" }, @@ -1572777,8 +1580946,8 @@ "match_method": "conjugated" }, { - "text": "״נִתְפַּלֵּל שֶׁהַשּׁוֹטְרִים יַעַצְרוּ אֶת הַהִתְנַפְּלוּת", - "source": "time_tunnel_70", + "text": "אֲנַחְנוּ מִתְפַּלְּלִים שֶׁזּוֹ תִּהְיֶה הָעֲקִירָה הָאַחֲרוֹנָה שֶׁל יִשּׁוּב יְהוּדִי בְּאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -1574005,7 +1582174,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאִישׁ לֹא יָדַע, וְאִישׁ לֹא פִּלֵּל וְלֹא נִחֵשׁ כִּי הַצְּרִיף הַיָּשָׁן בִּמְקוֹמוֹ עוֹמֵד", + "source": "ilana", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וְאִישׁ לֹא יָדַע, וְאִישׁ לֹא פִּלֵּל וְלֹא נִחֵשׁ כִּי הַצְּרִיף הַיָּשָׁן בִּמְקוֹמוֹ עוֹמֵד", + "cloze_word_start": 31, + "cloze_word_end": 38, + "cloze_hint": null, + "cloze_guid": "jS-/_M*+g;" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1574796,7 +1582981,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָיִיתִי חַיָּב לְפַלֵּס לְעַצְמִי דֶּרֶךְ תּוֹךְ כְּדֵי דְּחִיפַת אֲנָשִׁים", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הֲמוֹן נְעָרִים הָיוּ בָּאוֹנִיָּה וְגַם הֵם פִּלְּסוּ אֶת דַּרְכָּם אֶל הַסִּפּוּן", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "אִיז'וֹ הִצְלִיחַ לְפַלֵּס לְעַצְמוֹ דֶּרֶךְ אֵלֵינוּ", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "הָיִיתִי חַיָּב לְפַלֵּס לְעַצְמִי דֶּרֶךְ תּוֹךְ כְּדֵי דְּחִיפַת אֲנָשִׁים", + "cloze_word_start": 16, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "H8UI}r,r,d" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1580671,7 +1588882,16 @@ "פָּן" ], "confusables_guid": "ifAroZQ4fr", - "examples": null, + "examples": { + "vetted": [ + { + "text": "” שׁוֹאֵל עַמִי; חָרֵד הִנֵהוּ, פֶּן יִפְרְשׂוּ לְפֶתַע אֶת כַּנְפֵיהֶם וְיִמָלְטוּ מִמֶנוּ", + "source": "silkworms", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, @@ -1581494,7 +1589714,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"פִּנּוּי סִינַי,\" אֲנִי לֹא מִתְעַנְיֵן בְּקִטְעֵי הָעִתּוֹן, \"פִּנּוּי יָמִית", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "כָּל הַסִּימָנִים הָיוּ כְּמוֹ כְּתֹבֶת עַל הַקִּיר: פִּנּוּי גּוּשׁ קָטִיף", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "יֵשׁ לָנוּ כָּאן מִשְׁפָּחָה שֶׁקִּבְּלָה צַו פִּנּוּי וְכֻלָּם הִתְפַּנּוּ מֵרָצוֹן", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"פִּנּוּי סִינַי,\" אֲנִי לֹא מִתְעַנְיֵן בְּקִטְעֵי הָעִתּוֹן, \"פִּנּוּי יָמִית", + "cloze_word_start": 1, + "cloze_word_end": 9, + "cloze_hint": null, + "cloze_guid": "npz=._LeTy" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פִּנּוּי", @@ -1582659,9 +1590905,9 @@ "match_method": "direct" }, { - "text": "בִּרְחוֹבוֹת חִכּוּ לָהֶם עוֹד מְפֻנִּים", - "source": "time_tunnel_70", - "match_method": "conjugated" + "text": "הֵן בִּקְּשׁוּ מִכָּל אֵלֶּה שֶׁעָמְדוּ לְפָנֶיהָ בַּתּוֹר לְפַנּוֹת דֶּרֶךְ", + "source": "time_tunnel_76", + "match_method": "direct" } ], "rejected_count": 0 @@ -1584194,7 +1592440,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יֵשׁ לָנוּ כָּאן מִשְׁפָּחָה שֶׁקִּבְּלָה צַו פִּנּוּי וְכֻלָּם הִתְפַּנּוּ מֵרָצוֹן", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "הֵם לֹא מִתְבַּצְּרִים בַּבָּתִּים וּמְסָרְבִים לְהִתְפַּנּוֹת", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "יֵשׁ לָנוּ כָּאן מִשְׁפָּחָה שֶׁקִּבְּלָה צַו פִּנּוּי וְכֻלָּם הִתְפַּנּוּ מֵרָצוֹן", + "cloze_word_start": 64, + "cloze_word_end": 75, + "cloze_hint": null, + "cloze_guid": "E0SNx>g1)E" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1584893,14 +1593160,14 @@ "match_method": "direct" }, { - "text": "אֲבָל בֵּין אֵלֶּה שֶׁהִתְנַצְּרוּ הָיוּ רַבִּים מְאוֹד שֶׁרַק הֶעֱמִידוּ פָּנִים", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "בְּנֵי הָאָדָם תּוֹפְסִים שֶׁטַח קָטָן מְאוֹד עַל פְּנֵי הָאֲדָמָה", + "source": "little_prince", + "match_method": "inflected" }, { - "text": "אֲנִי מַסְכִּים שֶׁעָדִיף לְהַעֲמִיד פָּנִים שֶׁאֲנַחְנוּ סְתָם מְטַיְּלִים כָּאן", - "source": "time_tunnel_82", - "match_method": "direct" + "text": "וְכָךְ, כְּשֶׁנָּחַת עַל פְּנֵי הָאֲדָמָה, הֻפְתַּע הַנָּסִיךְ הַקָּטָן לְאַחַר שֶׁלֹּא רָאָה אִישׁ", + "source": "little_prince", + "match_method": "inflected" } ], "rejected_count": 0 @@ -1585919,7 +1594186,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲבָל אֲנִי זוֹכֶרֶת הֵיטֵב שֶׁזּוֹ הָיְתָה מַמָּשׁ פְּנִינָה", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "עַל צַוַאר הָאֵם הָיְתָה תְּלוּיָה הַמַחֲרֹזֶת הַיָפָה, וּבְכַף־יָדָהּ נָצְצָה פְּנִינָה וְרֻדָה וְנִפְלָאָה", + "source": "shell_story", + "match_method": "direct" + } + ], + "cloze": { + "text": "אֲבָל אֲנִי זוֹכֶרֶת הֵיטֵב שֶׁזּוֹ הָיְתָה מַמָּשׁ פְּנִינָה", + "cloze_word_start": 52, + "cloze_word_end": 61, + "cloze_hint": null, + "cloze_guid": "O/GFPH.A._" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פְּנִינָה", @@ -1585987,13 +1594275,13 @@ "match_method": "inflected" }, { - "text": "״אֲבָל אֲנִי לֹא מַחְזִיק שׁוּם פָּנָס,״ עָנִיתִי לָהּ, ״הַפָּנָס שֶׁלִּי בַּתַּרְמִיל", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "כַּאֲשֶׁר הוּא מְכַבֶּה אֶת פָּנַס הָרְחוֹב, הַפֶּרַח אוֹ הַכּוֹכָב נִרְדָּמִים", + "source": "little_prince", + "match_method": "inflected" }, { - "text": "״ הִיא שָׁאֲלָה, \"לַחֲבֵרוֹת שֶׁלָּךְ יֵשׁ פָּנָסִים שֶׁעוֹבְדִים בֶּעָבָר", - "source": "time_tunnel_78", + "text": "\" וְהוּא הִדְלִיק שׁוּב אֶת פָּנַס הָרְחוֹב", + "source": "little_prince", "match_method": "inflected" } ], @@ -1588313,7 +1596601,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּקְפִיצָה אַחַת פָּסַח 7 עַל הַנַּחַל הָעוֹבֵר שָׁם", + "source": "kid_on_mountain", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בִּקְפִיצָה אַחַת פָּסַח 7 עַל הַנַּחַל הָעוֹבֵר שָׁם", + "cloze_word_start": 18, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "rNl>[8>7os" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1592557,8 +1600861,8 @@ "match_method": "conjugated" }, { - "text": "',\" חָשְׁבָה אַלִיס, בְּעוֹדָהּ פּוֹסַעַת אַחֲרָיו בְּאִטִּיּוּת: \"מֵעוֹלָם לֹא קִבַּלְתִּי כָּל־כָּךְ הַרְבֵּה פְּקֻדּוֹת בַּחַיִּים שֶׁלִּי, מֵעוֹלָם", - "source": "alice_wonderland", + "text": "גּוּלִיבֶר עָבַר מֵעַל הַחוֹמָה הַמַּקִּיפָה אֶת הָעִיר, וּבִזְהִירוּת רַבָּה פָּסַע בְּחוּצוֹתֶיהָ", + "source": "gulliver", "match_method": "conjugated" } ], @@ -1594558,18 +1602862,21 @@ "examples": { "vetted": [ { - "text": "יֵשׁ לִדְרשׁ מִכָּל אָדָם רַק מָה שֶׁהוּא מְסֻגָּל לַעֲשׂוֹת,\" פָּסַק הַמֶּלֶךְ", - "source": "הנסיך הקטן", - "vetted": true + "text": "\" \"שִׁקְלוּ אֶת פְּסַק הַדִּין שֶׁלָּכֶם,\" אָמַר הַמֶּלֶךְ לַמֻּשְׁבָּעִים", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "\"שִׁקְלוּ אֶת פְּסַק הַדִּין שֶׁלָּכֶם,\" אָמַר לַמֻּשְׁבָּעִים, בְּקוֹל נָמוּךְ וְרוֹעֵד", + "source": "alice_wonderland", + "match_method": "inflected" + }, + { + "text": "\"קֹדֶם גְּזַר הַדִּין – פְּסַק הַדִּין אַחַר כָּךְ", + "source": "alice_wonderland", + "match_method": "inflected" } ], - "cloze": { - "text": "יֵשׁ לִדְרשׁ מִכָּל אָדָם רַק מָה שֶׁהוּא מְסֻגָּל לַעֲשׂוֹת,\" פָּסַק הַמֶּלֶךְ", - "cloze_word_start": 63, - "cloze_word_end": 69, - "cloze_hint": null, - "cloze_guid": "FXsV>l_jv2" - }, "rejected_count": 0 }, "noun_inflection": { @@ -1594818,7 +1603125,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ אָדוֹן קְרָאוּזֶה מַפְסִיק לָנוּעַ וּמַפְסִיק לְנוֹפֵף בַּמְּנִיפָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "״ אָדוֹן קְרָאוּזֶה מַפְסִיק לָנוּעַ וּמַפְסִיק לְנוֹפֵף בַּמְּנִיפָה", + "cloze_word_start": 20, + "cloze_word_end": 28, + "cloze_hint": null, + "cloze_guid": "l9q%>^Z~[S" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1597808,7 +1606131,21 @@ "פּוֹעֵל" ], "confusables_guid": "s6XWPl9jZ2", - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"כְּדֵי שֶׁהַתָּכְנִית תֵּצֵא לַפֹּעַל, אֲנַחְנוּ אֲמוּרִים לִהְיוֹת בִּלְתִּי נִרְאִים", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "בַּשָּׁלָב הַזֶּה הֵם בְּוַדַּאי עֲדַיִן מְקַוִים שֶׁהַפִּנּוּי לֹא יֵצֵא אֶל הַפֹּעַל", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פֹּעַל", @@ -1597886,6 +1606223,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "לָמָּה אִי אֶפְשָׁר לְהָאִיץ עוֹד יוֹתֵר אֶת פְּעֻלַּת הַמֹּחַ", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "\"אִם הָיִיתִי מַצְלִיחָה, הָיִיתִי מְנַסָּה לְשַׁתֵּף אִתְּכֶם פְּעֻלָּה", "source": "time_tunnel_78", @@ -1597895,17 +1606237,12 @@ "text": "אֲבָל יוֹתֵר מִזֶּה לֹא אֲסַפֵּר לָכֶם, עַד שֶׁתִּתְחַיְּבוּ לְשַׁתֵּף אִתָּנוּ פְּעֻלָּה\" \"אִתָּנוּ", "source": "time_tunnel_78", "match_method": "direct" - }, - { - "text": "בְּסַךְ הַכֹּל בָּאנוּ לְשַׁתֵּף אִתְּכֶם פְּעֻלָּה,״ הִיא אָמְרָה לְשָׁרוֹן", - "source": "time_tunnel_78", - "match_method": "direct" } ], "cloze": { - "text": "\"אִם הָיִיתִי מַצְלִיחָה, הָיִיתִי מְנַסָּה לְשַׁתֵּף אִתְּכֶם פְּעֻלָּה", - "cloze_word_start": 63, - "cloze_word_end": 72, + "text": "לָמָּה אִי אֶפְשָׁר לְהָאִיץ עוֹד יוֹתֵר אֶת פְּעֻלַּת הַמֹּחַ", + "cloze_word_start": 45, + "cloze_word_end": 54, "cloze_hint": null, "cloze_guid": "HQob+Z~Yi{" }, @@ -1598072,7 +1606409,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שֶׁאֲנִי לֹא רוֹאֶה שֶׁחָיוּ כָּאן אֲנָשִׁים וְהֵקִימוּ מִפְעָלִים וְטִפְּחוּ גִּנּוֹת וְגִדְּלוּ יְלָדִים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "שֶׁאֲנִי לֹא רוֹאֶה שֶׁחָיוּ כָּאן אֲנָשִׁים וְהֵקִימוּ מִפְעָלִים וְטִפְּחוּ גִּנּוֹת וְגִדְּלוּ יְלָדִים", + "cloze_word_start": 56, + "cloze_word_end": 66, + "cloze_hint": null, + "cloze_guid": "PJR*_i!lI*" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִפְעָל", @@ -1598303,7 +1606656,7 @@ "vetted": [ { "text": "\"בְּנוֹסָף לַעֲבוֹדָתוֹ הָעִתּוֹנָאִית,\" הִיא קוֹרֵאת, \"פְרוּמְקִין הָיָה פְּעִיל צִבּוּר וְסִיֵּעַ רַבּוֹת לְנִזְקָקִים", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected" } ], @@ -1601137,6 +1609490,16 @@ "text": "הָיָה נִדְמֶה לִי שֶׁאֲנִי שׁוֹמֵעַ אֶת פְּעִימוֹת לִבּוֹ שֶׁל צְבִי", "source": "time_tunnel_75", "match_method": "inflected" + }, + { + "text": "פְּעִימוֹת הַלֵּב שֶׁלִּי מְהִירוֹת וַאֲנִי מַרְגִּישׁ צְרִיבָה בְּעֵינַיִם", + "source": "time_tunnel_77", + "match_method": "inflected" + }, + { + "text": "אֲנִי מִתְכַּוֵץ, פְּעִימוֹת הַלֵּב שֶׁלִּי נִהְיוֹת מְהִירוֹת", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { @@ -1608276,6 +1616639,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"בּוֹאוּ נְתָאֵם מַסְלוּלִים,\" שָׁרוֹן מִתְקָרֶבֶת אֵלַי, מִתְנַשֶּׁפֶת, וְאַדְוָה אַחֲרֶיהָ, \"נִגְרֹם לָהֶם לְהִתְפַּצֵּל", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": " פֶּרֶק ח שֶׁבּוֹ אֲנַחְנוּ מִתְפַּצְּלִים אַחֲרֵי שֶׁזַּלְמָן וְאִמָּא שֶׁלִּי עָזְבוּ אֶת הַמָּקוֹם, הַשַּׁחַר הִתְחִיל לַעֲלוֹת", "source": "time_tunnel_75", @@ -1608283,9 +1616651,9 @@ } ], "cloze": { - "text": " פֶּרֶק ח שֶׁבּוֹ אֲנַחְנוּ מִתְפַּצְּלִים אַחֲרֵי שֶׁזַּלְמָן וְאִמָּא שֶׁלִּי עָזְבוּ אֶת הַמָּקוֹם, הַשַּׁחַר הִתְחִיל לַעֲלוֹת", - "cloze_word_start": 29, - "cloze_word_end": 43, + "text": "\"בּוֹאוּ נְתָאֵם מַסְלוּלִים,\" שָׁרוֹן מִתְקָרֶבֶת אֵלַי, מִתְנַשֶּׁפֶת, וְאַדְוָה אַחֲרֶיהָ, \"נִגְרֹם לָהֶם לְהִתְפַּצֵּל", + "cloze_word_start": 109, + "cloze_word_end": 122, "cloze_hint": null, "cloze_guid": "05c3=QMV$" }, @@ -1613385,6 +1621753,16 @@ "text": "הָיִיתִי כָּל כָּךְ נִרְגָּשׁ, עַד שֶׁהַלֵּב שֶׁלִּי כִּמְעַט הִתְפּוֹצֵץ מֵעָצְמַת פְּעִימוֹתָיו", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "״ נִרְאֶה שֶׁבְּעוֹד רֶגַע אֵלִיָּהוּ קְרָאוּזֶה יִתְפּוֹצֵץ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "הוּא נִרְאֶה כְּאִלּוּ הוּא עוֹמֵד לְהִתְפּוֹצֵץ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1614242,15 +1622620,20 @@ "examples": { "vetted": [ { - "text": "יְהוּדִית מְקָרֶבֶת אֵלֵינוּ צַלַּחַת עִם עוּגִיּוֹת וּמַפְצִירָה בָּנוּ לִטְעוֹם מֵהֶן", - "source": "time_tunnel_silver_train", - "match_method": "conjugated_prefix" + "text": "\" שָׁרוֹן מַפְצִירָה בּוֹ, \"זֶה לֹא מִכְתָּב אָרֹךְ", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״ הָאִישׁ מַפְצִיר בָּהּ בְּטוֹן רַךְ", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "יְהוּדִית מְקָרֶבֶת אֵלֵינוּ צַלַּחַת עִם עוּגִיּוֹת וּמַפְצִירָה בָּנוּ לִטְעוֹם מֵהֶן", - "cloze_word_start": 53, - "cloze_word_end": 65, + "text": "\" שָׁרוֹן מַפְצִירָה בּוֹ, \"זֶה לֹא מִכְתָּב אָרֹךְ", + "cloze_word_start": 10, + "cloze_word_end": 20, "cloze_hint": null, "cloze_guid": "HHTvzc;NQ~" }, @@ -1616985,6 +1625368,16 @@ "text": "\" \"לֹא, אֲבָל אֶפְשָׁר לְהַפְקִיד אוֹתָם בַּבַּנְק", "source": "little_prince", "match_method": "direct" + }, + { + "text": "וְהוּא הִפְקִיד אוֹתָנוּ בְּיָדָיו שֶׁל אִכָּר אֶחָד שֶׁשְּׁמוֹ נֹחַ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "לְבַסּוֹף הִנִּיחוּ אוֹתוֹ לְנַפְשׁוֹ, וְהוּא נוֹתַר קָשׁוּר בְּשַׁרְשְׁרוֹתָיו אֶל מִגְדָּלוֹ, כְּשֶׁשְּׁמִירָה מְעֻלָּה מֻפְקֶדֶת עָלָיו", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1618160,7 +1626553,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כָּאן הֵרִיעַ אַחַד הַשַּׁרְקָנִים, וּמִיָּד דֻּכָּא בִּידֵי אֶחָד מִפְּקִידֵי בֵּית הַמִּשְׁפָּט", + "source": "alice_wonderland", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "כָּאן הֵרִיעַ אַחַד הַשַּׁרְקָנִים, וּמִיָּד דֻּכָּא בִּידֵי אֶחָד מִפְּקִידֵי בֵּית הַמִּשְׁפָּט", + "cloze_word_start": 67, + "cloze_word_end": 78, + "cloze_hint": null, + "cloze_guid": "lUHk!b@KSw" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פָּקִיד", @@ -1618462,6 +1626871,11 @@ "source": "time_tunnel_63", "match_method": "conjugated" }, + { + "text": "לָכֵן אֲנִי עוֹצֵם עֵינַיִם וּפוֹקֵחַ אוֹתָן, וְשׁוּב עוֹצֵם וְשׁוּב פּוֹקֵחַ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "הַנַּמְנְמָן פָּקַח אֶת עֵינָיו בְּאִטִּיּוּת", "source": "alice_wonderland", @@ -1620209,7 +1628623,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" עֵינָיו שֶׁל יוֹבֵל נִפְקָחוֹת", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" עֵינָיו שֶׁל יוֹבֵל נִפְקָחוֹת", + "cloze_word_start": 22, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "BVO.iblV`z" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1623836,6 +1632266,11 @@ "source": "time_tunnel_70", "match_method": "conjugated" }, + { + "text": "אֲנִי לֹא יָכוֹל לְהַפְקִיר אוֹתָן", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "הִרְגַּשְׁתִּי שֶׁאַחֲרֵי שֶׁהִיא הִתְנַדְּבָה לְהַסִּיעַ אֶת שָׁרוֹן וְאוֹתִי לִצְפַת, מַמָּשׁ לֹא הוֹגֵן לְהַפְקִיר אוֹתָהּ כָּכָה", "source": "time_tunnel_75", @@ -1624990,7 +1633425,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גּוּלִיבֶר אָסַף לְכִיסוֹ אֶת הַפָּרוֹת, הַפָּרִים וְהַכְּבָשִׂים הַחַיִּים, וְעָלָה עַל הָאֳנִיָּה", + "source": "gulliver", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "גּוּלִיבֶר אָסַף לְכִיסוֹ אֶת הַפָּרוֹת, הַפָּרִים וְהַכְּבָשִׂים הַחַיִּים, וְעָלָה עַל הָאֳנִיָּה", + "cloze_word_start": 41, + "cloze_word_end": 50, + "cloze_hint": null, + "cloze_guid": "MC>@03Y8-R" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פַּר", @@ -1626819,6 +1635270,16 @@ "text": "הַאִם יִתָּכֵן שֶׁמִּנְהֶרֶת־הַזְּמַן הִפְרִידָה בֵּינֵינוּ וְהֶחְזִירָה כָּל אֶחָד מֵאִתָּנוּ לִזְמַן אַחֵר", "source": "time_tunnel_75", "match_method": "conjugated" + }, + { + "text": "סָדִין הִפְרִיד בֵּין עֶזְרַת הַנָּשִׁים לְעֶזְרַת הַגְּבָרִים", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "פֶּרֶק תְּשִׁיעִי: הַמְנַצֵּחַ בּוֹרֵחַ לְשׁוֹן־יָם רְחָבָה מַפְרִידָה בֵּין חֶלְזוֹנְיָה לְבֵין לִילִיפּוּטְיָה", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1627700,7 +1636161,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה מִתְקָרֵב אֵלֵינוּ עוֹד פֶּרֶד, וְרוֹכֵב עָלָיו בָּחוּר מְזֻקָּן", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "אוּלַי מוֹטְל פְרַדְקִין הַזֶּה עוֹד לֹא הִגִּיעַ לְמֶסְחָה וַעֲדַיִן לֹא הֵרִים שׁוּם פֶּרֶד", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "אֲבָל לֹא, זֶה פֶּרֶד", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְהִנֵּה מִתְקָרֵב אֵלֵינוּ עוֹד פֶּרֶד, וְרוֹכֵב עָלָיו בָּחוּר מְזֻקָּן", + "cloze_word_start": 33, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "BVoVWX{Pn?" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פֶּרֶד", @@ -1627821,6 +1636308,11 @@ "text": "אִכָּרִים לָמְדוּ מִמֶּנָּה אֵיךְ לְטַפֵּחַ אֶת הַפָּרוֹת בָּרְפָתוֹת", "source": "time_tunnel_70", "match_method": "inflected_prefix" + }, + { + "text": "גּוּלִיבֶר אָסַף לְכִיסוֹ אֶת הַפָּרוֹת, הַפָּרִים וְהַכְּבָשִׂים הַחַיִּים, וְעָלָה עַל הָאֳנִיָּה", + "source": "gulliver", + "match_method": "inflected_prefix" } ], "cloze": { @@ -1630477,7 +1638969,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי אֲכַסֶּה אוֹתְךָ מִסָּבִיב־בְּעָלַי הַיְרֻקִּים וְאַפְרִיחַ אֶת פְּרָחַי הָאֲדֻמִּים וְתִהְיֶה יָפֶה מִכָּל הַבָּתִּים הַחֲדָשִׁים", + "source": "ilana", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "אֲנִי אֲכַסֶּה אוֹתְךָ מִסָּבִיב־בְּעָלַי הַיְרֻקִּים וְאַפְרִיחַ אֶת פְּרָחַי הָאֲדֻמִּים וְתִהְיֶה יָפֶה מִכָּל הַבָּתִּים הַחֲדָשִׁים", + "cloze_word_start": 54, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "B*sGCXA4{!" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1631205,7 +1639713,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"וְהַתַּרְנְגוֹלִים הָאֵלֶּה קְשׁוּרִים לָאֶפְרוֹחַ", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "״ \"וְהַתַּרְנְגוֹלִים הָאֵלֶּה קְשׁוּרִים לָאֶפְרוֹחַ", + "cloze_word_start": 42, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "O?6#Ma8}r>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֶפְרוֹחַ", @@ -1631510,6 +1640034,11 @@ "text": "״הַמִּנְהָרָה הַזֹּאת הִיא שֶׁטַח פְּרָטִי שֶׁלָּנוּ", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "לְאַף אֶחָד לֹא הָיָה רְכוּשׁ פְּרָטִי מִשֶּׁלּוֹ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1632337,9 +1640866,9 @@ "match_method": "direct" }, { - "text": "וְאַף שֶׁעָבְדָה כָּל כָּךְ קָשֶׁה וְהִקְפִּידָה עַל כָּל פְּרָט, אָמְרָה תּוֹךְ כְּדֵי פִּהוּק, \"אָה", - "source": "little_prince", - "match_method": "direct" + "text": "מְאֻחָר יוֹתֵר הִיא סִפְּרָה לִי עַל כָּל פְּרָטֵי הַשִּׂיחָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" } ], "cloze": { @@ -1635604,6 +1644133,16 @@ "text": "לְרֶגַע הָיָה נִדְמֶה שֶׁהַנֶּחְרָצוּת שֶׁלָּהּ תָּנִיב פֵּרוֹת, אֲבָל לֹא", "source": "time_tunnel_75", "match_method": "inflected" + }, + { + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "יֵשׁ פֹּה גִּנּוֹת יָפוֹת, יֵשׁ פֹּה עֲצֵי פְּרִי וַעֲנָבִים מַטְרִיפִים", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1644096,6 +1652635,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הַדָּבָר הָאַחֲרוֹן שֶׁאֲנִי רוֹצֶה הוּא שֶׁאַלֶכְּסַנְדֶר זַיְיד, הַשּׁוֹמֵר הַמְּפֻרְסָם, יַחְשֹׁב שֶׁאֲנִי שַׁקְרָן", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, { "text": "אֲפִלּוּ הַמִּגְדָּל הַמְּפֻרְסָם שֶׁבִּשְׁכוּנַת אָ־טוּר, שֶׁאוֹתוֹ נִתָּן לִרְאוֹת מֵרָחוֹק כְּשֶׁעוֹלִים לִירוּשָׁלַיִם מִכִּווּן יַם הַמֶּלַח, אֵינֶנּוּ", "source": "time_tunnel_82", @@ -1644103,9 +1652647,9 @@ } ], "cloze": { - "text": "אֲפִלּוּ הַמִּגְדָּל הַמְּפֻרְסָם שֶׁבִּשְׁכוּנַת אָ־טוּר, שֶׁאוֹתוֹ נִתָּן לִרְאוֹת מֵרָחוֹק כְּשֶׁעוֹלִים לִירוּשָׁלַיִם מִכִּווּן יַם הַמֶּלַח, אֵינֶנּוּ", - "cloze_word_start": 21, - "cloze_word_end": 33, + "text": "הַדָּבָר הָאַחֲרוֹן שֶׁאֲנִי רוֹצֶה הוּא שֶׁאַלֶכְּסַנְדֶר זַיְיד, הַשּׁוֹמֵר הַמְּפֻרְסָם, יַחְשֹׁב שֶׁאֲנִי שַׁקְרָן", + "cloze_word_start": 78, + "cloze_word_end": 90, "cloze_hint": null, "cloze_guid": "bNn{hEU>wE" }, @@ -1648980,6 +1657524,11 @@ "text": "\" \"לֹא סוֹבֶלֶת רוּחַ פְּרָצִים", "source": "little_prince", "match_method": "inflected" + }, + { + "text": "הָעֲרֵמוֹת שֶׁל קֻפְסְאוֹת הַשִּׁמּוּרִים הוֹלְכוֹת וּקְטֵנוֹת, וְאֶת מְקוֹמָן שֶׁל הַצְּעָקוֹת תּוֹפְסִים פִּרְצֵי בֶּכִי", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { @@ -1650075,7 +1658624,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" פַּרְצוּף שֶׁל יֶלֶד מוֹפִיעַ בְּעִגּוּל, שֶׁהוּא הַפֶּתַח שֶׁל הַחַדְרוֹן הַקָּטָן הַזֶּה, \"וּקְחוּ אִתְּכֶם אֶת הַתַּרְמִיל", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" פַּרְצוּף שֶׁל יֶלֶד מוֹפִיעַ בְּעִגּוּל, שֶׁהוּא הַפֶּתַח שֶׁל הַחַדְרוֹן הַקָּטָן הַזֶּה, \"וּקְחוּ אִתְּכֶם אֶת הַתַּרְמִיל", + "cloze_word_start": 2, + "cloze_word_end": 11, + "cloze_hint": null, + "cloze_guid": "c)a6>u,FF$" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פַּרְצוּף", @@ -1650158,6 +1658723,11 @@ "text": "הַנַּגָּרִים שֶׁבָּנוּ אֶת הַצְּרִיפִים פֵּרְקוּ אוֹתָם", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "נְפָרֵק אֶת הַסֻּלָּמוֹת כְּדֵי שֶׁהַחַיָּלִים הַבְּרִיטִים לֹא יוּכְלוּ לְטַפֵּס עֲלֵיהֶם", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1653993,6 +1662563,16 @@ "text": "מִסְּבִיבִי הָיְתָה דְּמָמָה וְרַק זִמְזוּם שֶׁל יַתּוּשִׁים הֵפֵר אוֹתָהּ", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "וְלָכֵן אִם תָּפֵר אוֹתָהּ, זֶה מַמָּשׁ לֹא יִהְיֶה אָסוֹן", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "אֲבָל לָמָּה לִי לְהָפֵר אוֹתָהּ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1654919,8 +1663499,8 @@ "match_method": "direct" }, { - "text": "\"מָצָא שֶׁמִּן,\" עָנָה הָעַכְבָּר דֵּי בְּרֹגֶז: \"אַתָּה הֲרֵי יוֹדֵעַ מָה פֵּרוּשׁ הַמִּלָּה 'שֶׁמִּן'", - "source": "alice_wonderland", + "text": "הֲרֵי זֶה פֵּרוּשׁ הַמִּלָּה \"תְּקוּמָה\", כְּאִלּוּ מֵתִים קָמוּ וְשָׁבוּ לְחַיִּים", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -1655773,7 +1664353,16 @@ "פָּרָשׁ" ], "confusables_guid": "A}k&o,c0@5", - "examples": null, + "examples": { + "vetted": [ + { + "text": "פִּתְאֹם עָלָה גְדוּד פָּרָשִׁים, וּבִקְרִיאוֹת הֵחֵלּוּ לְפַזֵּר אֶת הֲמוֹנֵי הַנַּנָּסִים וּלְפַנּוֹת דֶּרֶךְ לִפְנֵי מִרְכֶּבֶת־הַמֶּלֶךְ", + "source": "gulliver", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פָּרָשׁ", @@ -1655919,7 +1664508,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאִם לֹא אוֹנִיַּת מַעְפִּילִים, אָז אֵיזוֹ סְפִינַת מִפְרָשִׂים עַתִּיקָה מִתְּקוּפָה אַחֶרֶת", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "וְאִם לֹא אוֹנִיַּת מַעְפִּילִים, אָז אֵיזוֹ סְפִינַת מִפְרָשִׂים עַתִּיקָה מִתְּקוּפָה אַחֶרֶת", + "cloze_word_start": 54, + "cloze_word_end": 65, + "cloze_hint": null, + "cloze_guid": "G;4pciwLl/" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִפְרָשׂ", @@ -1658554,6 +1667159,11 @@ "text": "הֵם פּוֹרְשִׂים לִרְוָחָה אֶת הַשְּׂמִיכָה הַקְּרוּעָה, כַּנִּרְאֶה כְּדֵי לְנַעֵר אוֹתָהּ", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "פָּרַשְׂתִּי יָדַיִם לַצְּדָדִים כְּאִלּוּ אֲנִי צִפּוֹר", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "rejected_count": 0 @@ -1659724,7 +1668334,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שׁוּם כּוֹחַ שֶׁבָּעוֹלָם לֹא יוּכַל לִפְשֹׁט מִמֵּךְ אֶת שִׂמְלָתֵךְ", + "source": "tree_dress", + "match_method": "direct" + } + ], + "cloze": { + "text": "שׁוּם כּוֹחַ שֶׁבָּעוֹלָם לֹא יוּכַל לִפְשֹׁט מִמֵּךְ אֶת שִׂמְלָתֵךְ", + "cloze_word_start": 37, + "cloze_word_end": 45, + "cloze_hint": null, + "cloze_guid": "x5e7!.{Vu6" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1668025,7 +1676651,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בָּעֶרֶב, עֵת עוֹלֶה הַיָּרֵחַ, הָיוּ יוֹשְׁבוֹת חָדִיגָ’ה וְהַיַּלְדָּה אֶסְתֵּר יַחְדָּיו עַל הַחוֹל הַפּוֹשֵׁר בֶּחָצֵר", + "source": "tree_dress", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "בָּעֶרֶב, עֵת עוֹלֶה הַיָּרֵחַ, הָיוּ יוֹשְׁבוֹת חָדִיגָ’ה וְהַיַּלְדָּה אֶסְתֵּר יַחְדָּיו עַל הַחוֹל הַפּוֹשֵׁר בֶּחָצֵר", + "cloze_word_start": 103, + "cloze_word_end": 113, + "cloze_hint": null, + "cloze_guid": "OfpoKeFMF9" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1669546,7 +1678188,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גּוּלִיבֶר לֹא הֵבִין אֶת שְׂפָתָם וְלֹא יָדַע מַה פֵּשֶׁר הַקְּרִיאָה הַזֹּאת", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "גּוּלִיבֶר לֹא הֵבִין אֶת שְׂפָתָם וְלֹא יָדַע מַה פֵּשֶׁר הַקְּרִיאָה הַזֹּאת", + "cloze_word_start": 51, + "cloze_word_end": 58, + "cloze_hint": null, + "cloze_guid": "Dj@|TozJfw" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פֵּשֶׁר", @@ -1670840,7 +1679498,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַכְּאֵב שֶׁהִרְגַּשְׁתִּי גִּלָּה לִי שֶׁכַּנִּרְאֶה מִתְפַּתַּחַת אֶצְלִי אֵיזוֹשֶׁהִי מַחֲלָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַכְּאֵב שֶׁהִרְגַּשְׁתִּי גִּלָּה לִי שֶׁכַּנִּרְאֶה מִתְפַּתַּחַת אֶצְלִי אֵיזוֹשֶׁהִי מַחֲלָה", + "cloze_word_start": 54, + "cloze_word_end": 67, + "cloze_hint": null, + "cloze_guid": "kRRNjWtQd^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1671553,15 +1680227,25 @@ "examples": { "vetted": [ { - "text": "\" בְּעוֹדָהּ אוֹמֶרֶת זֹאת, הִגִּיעָה לְפֶתַע אֶל מָקוֹם פָּתוּחַ, וּבוֹ בַּיִת קָטָן, כְּמֶטֶר וְעֶשְׂרִים גָּבְהוֹ", - "source": "alice_wonderland", + "text": "\" לְצִדּוֹ שֶׁל הַגֶּבֶר עָמַד יֶלֶד וְהֶחְזִיק בְּיָדוֹ סִדּוּר תְּפִלָּה פָּתוּחַ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הָרוּחַ הַבָּאָה מֵהַיָּם חוֹדֶרֶת מֵהַחַלּוֹן הַגָּדוֹל שֶׁנִּשְׁאַר פָּתוּחַ וּמְנִיעָה אוֹתוֹ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\"גַּם הַבַּיִת הַזֶּה פָּתוּחַ,\" הִיא מוֹדִיעָה לִי אַחֲרֵי שֶׁהִיא פּוֹתַחַת אֶת הַדֶּלֶת", + "source": "time_tunnel_77", "match_method": "direct" } ], "cloze": { - "text": "\" בְּעוֹדָהּ אוֹמֶרֶת זֹאת, הִגִּיעָה לְפֶתַע אֶל מָקוֹם פָּתוּחַ, וּבוֹ בַּיִת קָטָן, כְּמֶטֶר וְעֶשְׂרִים גָּבְהוֹ", - "cloze_word_start": 57, - "cloze_word_end": 65, + "text": "\" לְצִדּוֹ שֶׁל הַגֶּבֶר עָמַד יֶלֶד וְהֶחְזִיק בְּיָדוֹ סִדּוּר תְּפִלָּה פָּתוּחַ", + "cloze_word_start": 75, + "cloze_word_end": 83, "cloze_hint": null, "cloze_guid": "O4AxkWo6=" }, @@ -1671646,8 +1680330,8 @@ "match_method": "conjugated" }, { - "text": "אֲנִי מִהַרְתִּי בְּעִקְּבוֹתֶיהָ, אֲבָל עוֹד לִפְנֵי שֶׁהִצְלַחְתִּי לִמְשׁוֹךְ אֶת רַגְלַי פְּנִימָה, דֶּלֶת הַחֶדֶר נִפְתְּחָה", - "source": "time_tunnel_75", + "text": "מִנְהֶרֶת־הַזְּמַן לֹא נִפְתַּחַת כְּשֶׁאֲנַחְנוּ מְנַסִּים לְשַׁכְנֵעַ אוֹתָהּ לְהִפָּתַח", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1672540,7 +1681224,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי לֹא עָמַדְתִּי בַּפִּתּוּי וּפָתַחְתִּי אֶת הַמַּעֲטָפָה", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אֲנִי לֹא עָמַדְתִּי בַּפִּתּוּי וּפָתַחְתִּי אֶת הַמַּעֲטָפָה", + "cloze_word_start": 21, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "MtizQlY!kP" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "פִּתּוּי", @@ -1677580,6 +1686280,11 @@ "text": "״ \"אֵיזֶה צָבָא בָּרֹאשׁ שֶׁלָּכֶם", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "\" \"חַיָּלִים שֶׁל אֵיזֶה צָבָא", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1677656,7 +1686361,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "source": "time_tunnel_81", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "' וּמִישֶׁהוּ אַחֵר אָמַר, 'אַלְפַּיִם שְׁנוֹת גָּלוּת לֹא יַפְרִידוּ בֵּינֵינוּ לְבֵין הַמַּצְבִּיאִים הַנּוֹעָזִים שֶׁל עַמֵּנוּ'", + "cloze_word_start": 88, + "cloze_word_end": 103, + "cloze_hint": null, + "cloze_guid": "qhDtk/@>vw" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1678378,20 +1687099,25 @@ "examples": { "vetted": [ { - "text": "זְאֵב זַ'בּוֹטִינְסְקִי צָעַד בְּקֶצֶב צְבָאִי, הֵנִיף אֶת יָדָיו וְהֵרִים אֶת רַגְלָיו וְהִתְיַצֵּב מוּלָם", - "source": "time_tunnel_63", + "text": "תָּמִיד נוֹסְעִים עִם הַהוֹרִים לְאֵיזֶשֶׁהוּ בָּסִיס צְבָאִי שֶׁפָּתוּחַ לַקָּהָל לִכְבוֹד הַחַג", + "source": "time_tunnel_76", "match_method": "direct" }, { - "text": "״ עָנִיתִי לוֹ בְּטוֹן צְבָאִי", - "source": "time_tunnel_63", + "text": "אֵיךְ הָפַךְ מוּזֵאוֹן חֵיל הָאֲוִיר בַּחֲצֵרִים לִהְיוֹת מַחֲנֶה צְבָאִי", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\" בִּמְקוֹם תְּשׁוּבָה, אֲנִי מַבְחִין בְּגִ'יפּ צְבָאִי שֶׁמַּתְחִיל לִדְהוֹר לְעֶבְרִי מִכִּווּן הַיִּשּׁוּב", + "source": "time_tunnel_77", "match_method": "direct" } ], "cloze": { - "text": "זְאֵב זַ'בּוֹטִינְסְקִי צָעַד בְּקֶצֶב צְבָאִי, הֵנִיף אֶת יָדָיו וְהֵרִים אֶת רַגְלָיו וְהִתְיַצֵּב מוּלָם", - "cloze_word_start": 39, - "cloze_word_end": 46, + "text": "תָּמִיד נוֹסְעִים עִם הַהוֹרִים לְאֵיזֶשֶׁהוּ בָּסִיס צְבָאִי שֶׁפָּתוּחַ לַקָּהָל לִכְבוֹד הַחַג", + "cloze_word_start": 54, + "cloze_word_end": 61, "cloze_hint": null, "cloze_guid": "f{R`-e*Zga" }, @@ -1678558,8 +1687284,8 @@ "match_method": "conjugated" }, { - "text": "הָאֶצְבָּעוֹת שֶׁלּוֹ מַמָּשׁ צוֹבְטוֹת אוֹתִי", - "source": "time_tunnel_82", + "text": "״ שָׁרוֹן תּוֹפֶסֶת אוֹתִי בִּזְרוֹעִי, מַמָּשׁ צוֹבֶטֶת אוֹתִי, \"אֲנִי יוֹדַעַת מִי זֶה", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -1679771,8 +1688497,8 @@ "match_method": "direct" }, { - "text": "לָכֵן קָנִיתִי קֻפְסַת צְבָעִים וְעֶפְרוֹנוֹת", - "source": "little_prince", + "text": "וּמֵרָחוֹק נִרְאוּ גַנִּים וְשָׂדוֹת שֶׁדָּמוּ לִשְׁטִיחִים נִפְלָאִים וַעֲשִׁירֵי צְבָעִים", + "source": "gulliver", "match_method": "inflected" } ], @@ -1679861,6 +1688587,11 @@ "source": "little_prince", "match_method": "direct" }, + { + "text": "וְאַחַר־כָּךְ עוֹד צָבַע הַלֵּיצָן אֶת כָּל הָרָהִיטִים בִּפְנִים", + "source": "ilana", + "match_method": "conjugated" + }, { "text": "\"תּוּכְלוּ לְהַגִּיד לִי בְּבַקָּשָׁה,\" אָמְרָה אַלִיס, קְצָת בְּבַיְשָׁנוּת, \"לָמָּה אַתֶּם צוֹבְעִים אֶת הַוְּרָדִים הָאֵלֶּה", "source": "alice_wonderland", @@ -1680411,6 +1689142,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אַתְּ יוֹדַעַת לִשְׁרוֹק בִּשְׁתֵּי אֶצְבָּעוֹת", + "source": "time_tunnel_77", + "match_method": "inflected" + }, { "text": "בְּדִיּוּק כְּשֶׁמִּקַּדְתִּי אֶת מַבָּטִי בַּמַּפָּה, הַשּׁוּלַיִם שֶׁלָּהּ זָזוּ וְרָאִיתִי אֶצְבָּעוֹת שֶׁל יָד אוֹחֲזוֹת בָּהּ", "source": "time_tunnel_75", @@ -1680420,17 +1689156,12 @@ "text": "\"אַחְלָה,״ נִיב שִׁלֵּב אֶצְבָּעוֹת, \"אָז כְּמוֹ שֶׁאַתֶּם בֶּטַח יוֹדְעִים, לִפְנֵי נִתּוּחַ מַרְדִּימִים אֶת הַמְּנֻתָּח", "source": "time_tunnel_silver_train", "match_method": "inflected" - }, - { - "text": "\" הוּא הִבִּיט בִּי, פַּטִּישׁ בְּיָדִי, אֶצְבָּעוֹת שְׁחֹרוֹת מִשֶּׁמֶן, רָכוּן עַל חֵפֶץ שֶׁנִּרְאָה בְּעֵינָיו מְכֹעָר לְהַפְלִיא", - "source": "little_prince", - "match_method": "inflected" } ], "cloze": { - "text": "בְּדִיּוּק כְּשֶׁמִּקַּדְתִּי אֶת מַבָּטִי בַּמַּפָּה, הַשּׁוּלַיִם שֶׁלָּהּ זָזוּ וְרָאִיתִי אֶצְבָּעוֹת שֶׁל יָד אוֹחֲזוֹת בָּהּ", - "cloze_word_start": 94, - "cloze_word_end": 105, + "text": "אַתְּ יוֹדַעַת לִשְׁרוֹק בִּשְׁתֵּי אֶצְבָּעוֹת", + "cloze_word_start": 36, + "cloze_word_end": 47, "cloze_hint": null, "cloze_guid": "C829e}},D~" }, @@ -1686506,7 +1695237,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "“זְרוֹק אֶת זֶה, יוֹסִי”, אָמְרָה רִנָה, “זֶהוּ צֶדֶף לֹא יָפֶה", + "source": "shell_story", + "match_method": "direct" + } + ], + "cloze": { + "text": "“זְרוֹק אֶת זֶה, יוֹסִי”, אָמְרָה רִנָה, “זֶהוּ צֶדֶף לֹא יָפֶה", + "cloze_word_start": 48, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "tBkqboZ*%>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צֶדֶף", @@ -1690036,13 +1698783,13 @@ "match_method": "conjugated" }, { - "text": "״ סַמָּל ג'וֹ צָהַל", - "source": "time_tunnel_63", + "text": "\" יוּבַל צָהַל, \"אֵיזֶה קֶטַע", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "וְאָז, פִּתְאוֹם, אַחַד הַסּוּסִים צוֹהֵל וְזוֹקֵף אֶת צַוָארוֹ וְאֶת אָזְנָיו, כְּאִלּוּ קָלַט אֵיזֶשֶׁהוּ שֶׁדֶר", - "source": "time_tunnel_82", + "text": "״ הַסּוּסָה צוֹהֶלֶת, אֲבָל הָאִטִּיּוּת שֶׁבָּהּ אֲנִי שׁוֹמֵעַ אֶת הַצָּהֳלָה שֶׁלָּהּ מַפְתִּיעָה אוֹתִי", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -1691273,7 +1700020,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּצָהֳרֵי הַיּוֹם נִתְאַסְּפוּ מִסָּבִיב לְגוּלִיבֶר הֲמוֹנֵי נַנָּסִים, שֶׁבָּאוּ לִרְאוֹתוֹ מִכָּל חֶלְקֵי הָאָרֶץ", + "source": "gulliver", + "match_method": "inflected_prefix" + }, + { + "text": "כָּל הַיּוֹם וְכָל הַלַּיְלָה נִמְשַׁךְ הַמַּסָּע, וְרַק בְּצָהֳרֵי יוֹם הַמָּחֳרָת הִגִּיעוּ אֶל שַׁעֲרֵי הַבִּירָה", + "source": "gulliver", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "בְּצָהֳרֵי הַיּוֹם נִתְאַסְּפוּ מִסָּבִיב לְגוּלִיבֶר הֲמוֹנֵי נַנָּסִים, שֶׁבָּאוּ לִרְאוֹתוֹ מִכָּל חֶלְקֵי הָאָרֶץ", + "cloze_word_start": 0, + "cloze_word_end": 10, + "cloze_hint": null, + "cloze_guid": "D~Q76v6PW," + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צֹהַר", @@ -1693472,16 +1702240,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "יֵשׁ לָנוּ כָּאן מִשְׁפָּחָה שֶׁקִּבְּלָה צַו פִּנּוּי וְכֻלָּם הִתְפַּנּוּ מֵרָצוֹן", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "בְּסוֹף חֹדֶשׁ אַפְּרִיל, לִפְנֵי יוֹתֵר מֵחֲמֵשׁ מֵאוֹת שָׁנִים, חָתְמוּ פֶרְדִינַנְד וְאִיזַבֶּלָה עַל צַו", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "עַל אֵיזֶה צַו הוּא מְדַבֵּר", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "בְּסוֹף חֹדֶשׁ אַפְּרִיל, לִפְנֵי יוֹתֵר מֵחֲמֵשׁ מֵאוֹת שָׁנִים, חָתְמוּ פֶרְדִינַנְד וְאִיזַבֶּלָה עַל צַו", - "cloze_word_start": 105, - "cloze_word_end": 108, + "text": "יֵשׁ לָנוּ כָּאן מִשְׁפָּחָה שֶׁקִּבְּלָה צַו פִּנּוּי וְכֻלָּם הִתְפַּנּוּ מֵרָצוֹן", + "cloze_word_start": 42, + "cloze_word_end": 45, "cloze_hint": null, "cloze_guid": "kX3dCmL{9." }, @@ -1694071,6 +1702849,11 @@ "text": "הוּא יָכוֹל לְצַוּוֹת עָלַי, לְמָשָׁל, לַעֲזֹב בְּתוֹךְ דַּקָּה", "source": "little_prince", "match_method": "direct" + }, + { + "text": "גַּם בְּגָדִים חֲדָשִׁים צִוָּה הַמֶּלֶךְ לַעֲשׂוֹת בִּשְׁבִיל הָאָדָם־הָהָר", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1695902,13 +1704685,13 @@ "match_method": "conjugated" }, { - "text": "וּפִתְאוֹם הָיְתָה לִי מִין תְּחוּשָׁה חֲזָקָה כָּזֹאת שֶׁהַפְּרָטִים מַתְחִילִים לְהִסְתַּדֵּר וְהִתְרַגְּשׁוּת הֵצִיפָה אוֹתִי", - "source": "time_tunnel_78", + "text": "קָשֶׁה לְהַסְבִּיר אֵיזוֹ הִתְרַגְּשׁוּת הֵצִיפָה אֶת כֻּלָּם", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "מַחְשָׁבוֹת עֲצוּבוֹת הֵצִיפוּ אוֹתִי", - "source": "time_tunnel_78", + "text": "כָּל הַסִּפּוּרִים שֶׁשָּׁמַעְתִּי עָלָיו הֵצִיפוּ אוֹתִי", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -1697536,6 +1706319,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "שָׁרוֹן מְמַהֶרֶת לְהַצְמִיד עַיִן אַחַת אֶל הַחוֹר כְּאִלּוּ מְדֻבָּר בְּעֵינִית הֲצָצָה שֶׁקְּבוּעָה בַּדֶּלֶת", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "חַלּוֹן קָטָן הָיָה קָבוּעַ מִתַּחַת לַשֶּׁלֶט וּלְצִדּוֹ, בְּאוֹתִיּוֹת קְטַנּוֹת נִכְתַּב: אֶשְׁנַב הֲצָצָה \"אֶשְׁנַב הֲצָצָה", "source": "time_tunnel_silver_train", @@ -1697543,9 +1706331,9 @@ } ], "cloze": { - "text": "חַלּוֹן קָטָן הָיָה קָבוּעַ מִתַּחַת לַשֶּׁלֶט וּלְצִדּוֹ, בְּאוֹתִיּוֹת קְטַנּוֹת נִכְתַּב: אֶשְׁנַב הֲצָצָה \"אֶשְׁנַב הֲצָצָה", - "cloze_word_start": 102, - "cloze_word_end": 109, + "text": "שָׁרוֹן מְמַהֶרֶת לְהַצְמִיד עַיִן אַחַת אֶל הַחוֹר כְּאִלּוּ מְדֻבָּר בְּעֵינִית הֲצָצָה שֶׁקְּבוּעָה בַּדֶּלֶת", + "cloze_word_start": 82, + "cloze_word_end": 89, "cloze_hint": null, "cloze_guid": "niB+--EMVv" }, @@ -1698073,6 +1706861,11 @@ "source": "time_tunnel_82", "match_method": "conjugated" }, + { + "text": "הָרֹאשׁ שֶׁלִּי כָּבֵד, הַנְּשִׁימָה שֶׁלִּי קָשָׁה, הַגֵּרוּי בַּגָּרוֹן מֵצִיק לִי וְהַצֹּרֶךְ לְהִשְׁתַּעֵל הוֹלֵךְ וְגוֹבֵר", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, { "text": "\" הַתִּינוֹק שָׁב וְנָחַר, וְאַלִיס הִבִּיטָה בַּחֲרָדָה גְּדוֹלָה לְתוֹךְ פָּנָיו כְּדֵי לִרְאוֹת מָה מֵצִיק לוֹ", "source": "alice_wonderland", @@ -1699811,6 +1708604,11 @@ "text": "שְׁנֵינוּ נֶעֱמַדְנוּ מִתַּחַת לַחַלּוֹן הַמַּלְבְּנִי שֶׁמִּמֶּנּוּ חָדַר אֲוִיר צַח פְּנִימָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "אֲנִי זָקוּק לְמִטָּה, לִשְׁתִיָּה, לַאֲוִיר צַח", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1699959,15 +1708757,15 @@ "examples": { "vetted": [ { - "text": "אַחַר כָּךְ הִתְקַלַּחְתִּי וְצִחְצַחְתִּי שִׁנַּיִם", - "source": "time_tunnel_70", - "match_method": "conjugated_prefix" + "text": "יֵשׁ לָהּ דַּוְקָא שִׁנַּיִם יָפוֹת, כְּאִלּוּ מִישֶׁהוּ טוֹרֵחַ לְצַחְצֵחַ לָהּ אוֹתָן בְּאֹפֶן קָבוּעַ, אֲבָל פִיכְס", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "אַחַר כָּךְ הִתְקַלַּחְתִּי וְצִחְצַחְתִּי שִׁנַּיִם", - "cloze_word_start": 28, - "cloze_word_end": 42, + "text": "יֵשׁ לָהּ דַּוְקָא שִׁנַּיִם יָפוֹת, כְּאִלּוּ מִישֶׁהוּ טוֹרֵחַ לְצַחְצֵחַ לָהּ אוֹתָן בְּאֹפֶן קָבוּעַ, אֲבָל פִיכְס", + "cloze_word_start": 65, + "cloze_word_end": 75, "cloze_hint": null, "cloze_guid": "geue|HH~*1" }, @@ -1704723,7 +1713521,28 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה נִרְאָה עַל פְּנֵי לְשׁוֹן־הַיָּם הַזֹּאת צִי שֶׁל חֲמִשִּׁים אֳנִיּוֹת קָרֵב אֶל חוֹפֵי לִילִיפּוּטְיָה", + "source": "gulliver", + "match_method": "direct" + }, + { + "text": "לָקַח גּוּלִיבֶר חֲבָלִים, קָשַׁר אֲלֵיהֶם קְרָסִים חֲזָקִים וְהִתְחִיל חוֹצֶה בְּמֵי לְשׁוֹן־הַיָּם לְעֵבֶר צִי הָאוֹיֵב", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְהִנֵּה נִרְאָה עַל פְּנֵי לְשׁוֹן־הַיָּם הַזֹּאת צִי שֶׁל חֲמִשִּׁים אֳנִיּוֹת קָרֵב אֶל חוֹפֵי לִילִיפּוּטְיָה", + "cloze_word_start": 51, + "cloze_word_end": 54, + "cloze_hint": null, + "cloze_guid": "xfdzY:}.8H" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צִי", @@ -1704888,6 +1713707,16 @@ "text": "״הַמַּכְשִׁיר הַמְּצַפְצֵף,״ הַחַיָּל הֵשִׁיב, ״מִישֶׁהוּ צִיֵּד אֶתְכֶם בַּמַּכְשִׁיר", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "כֻּלָּם כַּמּוּבָן מְצֻיָּדִים בְּפַטִּישֵׁי פְּלַסְטִיק וְכָל הָאֲבִיזָרִים הַמֻּכָּרִים", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "״ וְדוֹר חִיֵּךְ וְאָמַר: \"אַל תִּדְאַג, דּוֹד, אֲנִי מְצֻיָּד הֵיטֵב", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1708022,7 +1716851,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מַדּוּעַ נִדְמֶה לִי שֶׁאֲפִלּוּ צִפּוֹרִים לֹא מְצַיְּצוֹת בַּחוּץ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "מַדּוּעַ נִדְמֶה לִי שֶׁאֲפִלּוּ צִפּוֹרִים לֹא מְצַיְּצוֹת בַּחוּץ", + "cloze_word_start": 48, + "cloze_word_end": 59, + "cloze_hint": null, + "cloze_guid": "Fk$5]!/GLu" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1709660,12 +1718505,12 @@ "match_method": "direct" }, { - "text": "אִבַּדְתִּי אֶת הַבִּטָּחוֹן אַחֲרֵי הַכִּשָּׁלוֹן הַצּוֹרֵב שֶׁל צִיּוּרִים מס' 1 וּמס' 2 שֶׁלִּי", - "source": "little_prince", + "text": "וְגַם צִיּוּרִים רַבִּים צִיְּרָה וְתָלְתָה אוֹתָם עַל הַקִּירוֹת מִסָּבִיב", + "source": "ilana", "match_method": "inflected" }, { - "text": "אוּלַי תִּשְׁאֲלוּ אֶת עַצְמְכֶם: מַדּוּעַ אֵין בַּסֵּפֶר עוֹד צִיּוּרִים מַרְשִׁימִים כְּמוֹ הַצִּיּוּר שֶׁל עֲצֵי הַבָּאוֹבַּבּ", + "text": "אִבַּדְתִּי אֶת הַבִּטָּחוֹן אַחֲרֵי הַכִּשָּׁלוֹן הַצּוֹרֵב שֶׁל צִיּוּרִים מס' 1 וּמס' 2 שֶׁלִּי", "source": "little_prince", "match_method": "inflected" } @@ -1712268,6 +1721113,11 @@ "text": "הִיא אִחֲלָה לָנוּ הַצְלָחָה וְאָמְרָה שֶׁהִיא בְּטוּחָה שֶׁנַּצְלִיחַ וְנִהְיֶה הָאַלּוּפִים", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "\" הִיא נֶעֱמֶדֶת, מִתְכּוֹפֶפֶת וּמְנַסָּה לְלֹא הַצְלָחָה לְנַעֵר אֶת הַחוֹל מִשַּׂעֲרוֹתֶיהָ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1712354,6 +1721204,11 @@ "text": "חִפַּשְׂתִּי מַשֶּׁהוּ מֻצְלָח לְהַגִּיד, וְלֹא מָצָאתִי", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "בְּשָׁלוֹשׁ מִלִּים הוּא עָזַר לִי לָתֵת לוֹ וְלָאֲחֵרִים הֶסְבֵּר מֻצְלָח לַשְּׁאֵלָה מִי אֲנַחְנוּ", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -1714904,15 +1723759,15 @@ "examples": { "vetted": [ { - "text": "מָה קָרָה לַצּוֹלֶלֶת דַּקָּר 70", - "source": "time_tunnel_82", - "match_method": "conjugated_prefix" + "text": "הֵם צָלְלוּ, תָּפְסוּ גַּלִּים וְשִׂחֲקוּ בְּמַטְקוֹת", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { - "text": "מָה קָרָה לַצּוֹלֶלֶת דַּקָּר 70", - "cloze_word_start": 10, - "cloze_word_end": 21, + "text": "הֵם צָלְלוּ, תָּפְסוּ גַּלִּים וְשִׂחֲקוּ בְּמַטְקוֹת", + "cloze_word_start": 4, + "cloze_word_end": 11, "cloze_hint": null, "cloze_guid": "wxi?FBbEq-" }, @@ -1715361,9 +1724216,9 @@ "match_method": "inflected" }, { - "text": "וַאֲנִי אֹהַב אֶת צְלִיל הָרוּחַ עַל פְּנֵי הַשִּׁבּוֹלִים", + "text": "הַצְּעָדִים שֶׁלְּךָ יִמְשְׁכוּ אוֹתִי הַחוּצָה, כְּמוֹ צְלִילֵי מוּזִיקָה", "source": "little_prince", - "match_method": "direct" + "match_method": "inflected" } ], "cloze": { @@ -1715449,7 +1724304,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא מַנִּיחַ אוֹתִי בַּצֵּל, עַל הַשְּׁבִיל, וְאָז עוֹזֵר לְשָׁרוֹן לָרֶדֶת", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "אֲנִי שׁוֹכֵב עַל הַשְּׁבִיל, בַּצֵּל", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הוּא מַנִּיחַ אוֹתִי בַּצֵּל, עַל הַשְּׁבִיל, וְאָז עוֹזֵר לְשָׁרוֹן לָרֶדֶת", + "cloze_word_start": 21, + "cloze_word_end": 28, + "cloze_hint": null, + "cloze_guid": "rKS=91[.@B" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צֵל", @@ -1715535,6 +1724411,11 @@ "text": "״ מִמִּלָּה לְמִלָּה הַקּוֹל שֶׁלִּי נִהְיָה צָלוּל יוֹתֵר וְהִרְגַּשְׁתִּי שֶׁמָּצָאתִי אֶת הַדֶּרֶךְ הַנְּכוֹנָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "\" הַמַּיִם שֶׁאֲנִי שׁוֹתֶה מַשְׁפִּיעִים עָלַי לְטוֹבָה וְקוֹלִי צָלוּל יוֹתֵר, \"אַתֶּם בּוֹנִים כָּאן מַשֶּׁהוּ", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1715688,7 +1724569,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא הֵצֵלָּה בְּכַף יָדָהּ עַל מִצְחָהּ וְהִבִּיטָה לַמֶּרְחָק", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הִיא הֵצֵלָּה בְּכַף יָדָהּ עַל מִצְחָהּ וְהִבִּיטָה לַמֶּרְחָק", + "cloze_word_start": 5, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "GKTF}y[HUU" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1717093,7 +1725990,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִצְטַלַּמְתִּי לְיַד הַפֶּסֶל, הִקְשַׁבְתִּי לַסִּפּוּרִים שֶׁסֻּפְּרוּ עַל אַלֶכְּסַנְדֶר זַיְיד", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הִצְטַלַּמְתִּי לְיַד הַפֶּסֶל, הִקְשַׁבְתִּי לַסִּפּוּרִים שֶׁסֻּפְּרוּ עַל אַלֶכְּסַנְדֶר זַיְיד", + "cloze_word_start": 0, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "iapB1D_Q3m" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": true, @@ -1717776,6 +1726689,11 @@ "text": "כַּמָּה חֲבָל שֶׁלֹּא הָיְתָה לִי מַצְלֵמָה", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "\" בְּאוֹתוֹ רֶגַע הִצְטַעַרְתִּי שֶׁלֹּא הָיְתָה לִי מַצְלֵמָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -1717931,17 +1726849,17 @@ "examples": { "vetted": [ { - "text": "אין לשכפל, להעתיק, לצלם, להקליט, לתרגם, לאחסן במאגר", - "source": "אליס בארץ הפלאות", - "vetted": true + "text": "הָעִתּוֹנָאִים שֶׁמְּלַוִים אֶת אֶקְסוֹדוּס וּמְצַלְּמִים כָּל דָּבָר, לֹא מַרְתִּיעִים אוֹתָם", + "source": "time_tunnel_76", + "match_method": "conjugated_prefix" } ], "cloze": { - "text": "אין לשכפל, להעתיק, לצלם, להקליט, לתרגם, לאחסן במאגר", - "cloze_word_start": 19, - "cloze_word_end": 23, + "text": "הָעִתּוֹנָאִים שֶׁמְּלַוִים אֶת אֶקְסוֹדוּס וּמְצַלְּמִים כָּל דָּבָר, לֹא מַרְתִּיעִים אוֹתָם", + "cloze_word_start": 44, + "cloze_word_end": 57, "cloze_hint": null, - "cloze_guid": "vn-/ZxyHGm" + "cloze_guid": "PpUdx[oiBC" }, "rejected_count": 0 }, @@ -1720519,6 +1729437,16 @@ "text": "'\" \"הִיא הִכְנִיסָה לַמַּלְכָּה סְטִירָה מְצַלְצֶלֶת—\" פָּתַח הָאַרְנָב", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "– וְרָצוּ מַהֵר לְצַלְצֵל בַּפַּעֲמוֹן", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "צִלְצְלוּ כְּמוֹ בִּשְׁעַת שְׂרֵפָה", + "source": "ilana", + "match_method": "conjugated" } ], "cloze": { @@ -1722199,25 +1731127,25 @@ "examples": { "vetted": [ { - "text": "הֵם הִכּוּ בַּנַּעֲלַיִם בַּקַּרְקַע וְהִצְמִידוּ אֶת רַגְלֵיהֶם", - "source": "time_tunnel_63", - "match_method": "conjugated_prefix" + "text": "גַּם אֲנִי מַצְמִיד עַיִן אַחַת אֶל הַחוֹר", + "source": "time_tunnel_81", + "match_method": "conjugated" }, { - "text": "שָׁרוֹן נִשְׁכְּבָה עַל הַצַּד וְהִצְמִידָה אֶת הָאֹזֶן שֶׁלָּהּ אֶל הָאֲדָמָה", - "source": "time_tunnel_63", - "match_method": "conjugated_prefix" + "text": "שָׁרוֹן מְמַהֶרֶת לְהַצְמִיד עַיִן אַחַת אֶל הַחוֹר כְּאִלּוּ מְדֻבָּר בְּעֵינִית הֲצָצָה שֶׁקְּבוּעָה בַּדֶּלֶת", + "source": "time_tunnel_81", + "match_method": "direct" }, { - "text": "הִתְכּוֹפַפְתִּי וְהִצְמַדְתִּי עַיִן אֶל חוֹר הַמַּנְעוּל", - "source": "time_tunnel_75", - "match_method": "conjugated_prefix" + "text": "שְׁלוֹשָׁה אַרְגָּזִים הֻצְמְדוּ זֶה לָזֶה וַעֲלֵיהֶם הֻנַּח מַצָּע שֶׁל קַשׁ, שֶׁעָלָיו שְׂמִיכָה בְּלוּיָה", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "הֵם הִכּוּ בַּנַּעֲלַיִם בַּקַּרְקַע וְהִצְמִידוּ אֶת רַגְלֵיהֶם", - "cloze_word_start": 37, - "cloze_word_end": 49, + "text": "גַּם אֲנִי מַצְמִיד עַיִן אַחַת אֶל הַחוֹר", + "cloze_word_start": 11, + "cloze_word_end": 19, "cloze_hint": null, "cloze_guid": "KM8M^{w?KK" }, @@ -1723401,7 +1732329,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"תְּנוּ לָעָם לְהַחְלִיט\" נִכְתַּב עַל הַצְּמִידִים", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "הֲרֵי עַד הַיּוֹם הֵם שׁוֹמְרִים אֶת הַצְּמִידִים הַכְּתֻמִּים", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "\"תְּנוּ לָעָם לְהַחְלִיט\" נִכְתַּב עַל הַצְּמִידִים", + "cloze_word_start": 39, + "cloze_word_end": 51, + "cloze_hint": null, + "cloze_guid": "zP(BwQ*2ts" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צָמִיד", @@ -1723619,6 +1732568,11 @@ "text": "\" שׁוֹאֶלֶת יַלְדָּה עִם צַמּוֹת שְׁחוֹרוֹת", "source": "time_tunnel_82", "match_method": "inflected" + }, + { + "text": "יַלְדָּה בַּעֲלַת צַמָּה בְּהִירָה שׁוֹלֶפֶת אֶת עַצְמָהּ מֵהֶחָבִית אֶל הַחַדְרוֹן", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1723769,6 +1732723,11 @@ "text": "וְאָכֵן, עַל הַכּוֹכָב שֶׁל הַנָּסִיךְ הַקָּטָן צָמְחוּ נְבָטִים נוֹרָאִיִּים", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "וּבֶאֱמֶת, מֵאִרְגּוּן 'הַשּׁוֹמֵר' צָמַח אִרְגּוּן 'הַהֲגָנָה'", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1725244,8 +1734203,8 @@ "match_method": "conjugated" }, { - "text": "\" עֵינֶיהָ שֶׁל שָׁרוֹן מִצְטַמְצְמוֹת", - "source": "time_tunnel_82", + "text": "עֵינָיו שֶׁל אִיז'וֹ הִצְטַמְצְמוּ כְּאִלּוּ הוּא מִתְאַמֵּץ לְזַהוֹת אֶת שַׁעְיָה", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -1725757,6 +1734716,11 @@ "text": "צִמְצַמְתִּי אֶת עֵינַי כֵּיוָן שֶׁהַשֶּׁמֶשׁ סִנְוְרָה אוֹתִי וְסוֹבַבְתִּי מְעַט אֶת הָרֹאשׁ יָמִינָה", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "\"אֲבָל אִרְגּוּן 'בַּר גִּיּוֹרָא' הָיָה מְצֻמְצָם", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1731558,13 +1740522,13 @@ "match_method": "conjugated" }, { - "text": "גַּם שָׁרוֹן צָנְחָה עַל הָאֲדָמָה", - "source": "time_tunnel_75", + "text": "וְאָז כְּשֶׁנִּפְתְּחָה הַדֶּלֶת שֶׁל הַמָּטוֹס, צָנַחְנוּ אִתָּם", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "הַפַּעַם הָרִאשׁוֹנָה הָיְתָה לִפְנֵי עֶשְׂרִים וּשְׁתַּיִם שָׁנִים, כְּשֶׁחִפּוּשִׁית מוּזָרָה צָנְחָה לְכָאן, הַשֵּׁד יוֹדֵעַ מֵאֵיפֹה", - "source": "little_prince", + "text": "גַּם שָׁרוֹן צָנְחָה עַל הָאֲדָמָה", + "source": "time_tunnel_75", "match_method": "conjugated" } ], @@ -1732001,7 +1740965,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" שְׁנֵי צַנְחָנִים הִתְקָרְבוּ אֵלַי וְכִמְעַט דָּרְכוּ עָלַי", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "\" צַנְחָן נוֹסָף נִדְחַק אֵלֵינוּ: \"הֶחְלַטְתֶּם לְשַׂחֵק בְּהַרְפַּתְקָאוֹת", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "הוּא הֵטִיס צַנְחָנִים לְסִינַי בְּדָקוֹטָה", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\" שְׁנֵי צַנְחָנִים הִתְקָרְבוּ אֵלַי וְכִמְעַט דָּרְכוּ עָלַי", + "cloze_word_start": 9, + "cloze_word_end": 19, + "cloze_hint": null, + "cloze_guid": "s5Znr4fFYl" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צַנְחָן", @@ -1732145,7 +1741135,16 @@ "מַצְנֵחַ" ], "confusables_guid": "g}P_F+1PLc", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֲרֵי לֹא הָיוּ לָנוּ מַצְנְחִים", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מַצְנֵחַ", @@ -1732214,7 +1741213,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא הִצְנִיחַ אוֹתָם בְּמָקוֹם שֶׁנִּקְרָא מַעֲבַר הַמִּיתְלֶה לָכֵן", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הוּא הִצְנִיחַ אוֹתָם בְּמָקוֹם שֶׁנִּקְרָא מַעֲבַר הַמִּיתְלֶה לָכֵן", + "cloze_word_start": 5, + "cloze_word_end": 14, + "cloze_hint": null, + "cloze_guid": "roXt_WJ5z8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1733642,6 +1742657,16 @@ "text": "\" \"אֲנִי לֹא מְצֻנֶּנֶת עַד כְּדֵי כָּךְ", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "״ הוּא מְנוֹפֵף בִּמְנִיפָה מוּל פָּנָיו כְּדֵי לְצַנֵּן אֶת הַחֹם", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "\"אִם שָׁרוֹן בִּלְתִּי נִרְאֵית, זֶה לֹא מוֹכִיחַ שֶׁגַּם אַתָּה בִּלְתִּי נִרְאֶה,\" צִנַּנְתִּי אֶת הַהִתְלַהֲבוּת שֶׁלּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1735606,7 +1744631,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֶחְלִיט עַמִי לִהְיוֹת צָנוּעַ", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֶחְלִיט עַמִי לִהְיוֹת צָנוּעַ", + "cloze_word_start": 24, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "dM{$,pUV8w" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1742129,7 +1751170,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נִשְׁאֲרוּ כַּמָּה צַעֲצוּעִים שְׁבוּרִים וּבֻבּוֹת קְרוּעוֹת", + "source": "ilana", + "match_method": "inflected" + } + ], + "cloze": { + "text": "נִשְׁאֲרוּ כַּמָּה צַעֲצוּעִים שְׁבוּרִים וּבֻבּוֹת קְרוּעוֹת", + "cloze_word_start": 19, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "NnqAG!NelJ" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צַעֲצוּעַ", @@ -1745360,6 +1754417,11 @@ "source": "time_tunnel_63", "match_method": "direct" }, + { + "text": "אֲבָל אָז קָרָה דָּבָר בִּלְתִּי צָפוּי: מִבַּעַד לַדֶּלֶת הַפְּתוּחָה שֶׁל הַדָּקוֹטָה נִרְאֲתָה יָד שֶׁנּוֹפְפָה לְמִישֶׁהוּ", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "\" זֶה בֶּאֱמֶת הָיָה קֶטַע בִּלְתִּי צָפוּי, וַאֲנִי לֹא יָכֹלְתִּי שֶׁלֹּא לִכְעוֹס עַל עַצְמִי שֶׁשָּׁכַחְתִּי מֵהֶם", "source": "time_tunnel_78", @@ -1747321,7 +1756383,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנַחְנוּ יוֹדְעִים שֶׁיֵּשׁ לָהֶם תַּצְפִּיתָנִים שֶׁצּוֹפִים עַל הַבָּתִּים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "אֲנַחְנוּ יוֹדְעִים שֶׁיֵּשׁ לָהֶם תַּצְפִּיתָנִים שֶׁצּוֹפִים עַל הַבָּתִּים", + "cloze_word_start": 35, + "cloze_word_end": 50, + "cloze_hint": null, + "cloze_guid": "tFqxnfBz{n" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תַּצְפִּיתָן", @@ -1748480,6 +1757558,16 @@ "text": "תָּאֲרוּ לָכֶם שֶׁהַהוֹרִים שֶׁלִּי הָיוּ קָמִים בַּבֹּקֶר וּמוֹדִיעִים לִי שֶׁאֲנַחְנוּ עוֹבְרִים לַצָּפוֹן", "source": "time_tunnel_70", "match_method": "direct_prefix" + }, + { + "text": "הָיִינוּ בְּנֹפֶשׁ בַּצָּפוֹן וְנָסַעְנוּ לְמֶסְחָה, כְּלוֹמַר לְמָה שֶׁהַיּוֹם כְּפַר תָּבוֹר", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "בְּכִלְיוֹן־עֵינַיִם מְחַכִּים לִי כְבָר יוֹשְׁבֵי הַצָּפוֹן, כִּי עַל כֵּן אָנֹכִי מְמַהֶרֶת שָׁמָּה כָּל־כַּךְ", + "source": "the_spirits", + "match_method": "direct_prefix" } ], "cloze": { @@ -1748638,6 +1757726,16 @@ "text": "\" אֲנִי נֶעֱמָד עַל אֶבֶן, מַשְׁקִיף אֶל הָאֹפֶק, צָפוֹנָה, מִזְרָחָה, דָּרוֹמָה, מַעֲרָבָה", "source": "time_tunnel_82", "match_method": "direct" + }, + { + "text": "\" \"לְכִווּן מַעֲרָב וְאַחַר כָּךְ צָפוֹנָה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "– הוֹסִיפָה רוּחַ הַדָּרוֹם וַתֵּפֶן צָפוֹנָה", + "source": "the_spirits", + "match_method": "direct" } ], "cloze": { @@ -1749627,7 +1758725,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַצְּפִיפוּת וְהַמַּחֲנָק גָּרְמוּ לִי לְאַבֵּד אֶת תְּחוּשַׁת הַזְּמַן", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "כֻּלָּנוּ עָפִים לְאָחוֹר, וְאִם אֲנַחְנוּ לֹא נוֹפְלִים וְנֶחְבָּלִים, זֶה רַק בִּזְכוּת הַצְּפִיפוּת", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הַצְּפִיפוּת וְהַמַּחֲנָק גָּרְמוּ לִי לְאַבֵּד אֶת תְּחוּשַׁת הַזְּמַן", + "cloze_word_start": 0, + "cloze_word_end": 12, + "cloze_hint": null, + "cloze_guid": "C.uZ|3HHpg" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "צְפִיפוּת", @@ -1750508,6 +1759627,16 @@ "text": "\" הַשֻּׁלְחָן הָיָה גָּדוֹל, אֲבָל כָּל הַשְּׁלוֹשָׁה הִצְטוֹפְפוּ בְּפִנָּה אַחַת מִפִּנּוֹתָיו", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "\"הַשָּׁלִיחַ אָמַר לָנוּ שֶׁאִם נַסְכִּים לְהִצְטוֹפֵף יַחַד, זֶה בְּסֵדֶר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": " פֶּרֶק ז שֶׁבּוֹ חֲמִשָּׁה מִצְטוֹפְפִים עַל דַּרְגָּשׁ אֶחָד נִגְרַרְתִּי אַחֲרֵי יוּבַל", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1752547,25 +1761676,20 @@ "examples": { "vetted": [ { - "text": "\"אֲנִי הַבַּת שֶׁל דֹּב וּצְפִירָה,״ יְהוּדִית חָזְרָה", - "source": "time_tunnel_silver_train", - "match_method": "direct_prefix" + "text": "אַךְ לְפֶתַע פִּתְאֹם נִשְׁמְעָה צְפִירַת מְכוֹנִית בֶּחָצֵר", + "source": "ilana", + "match_method": "inflected" }, { - "text": "\"לְדֹב וְלִצְפִירָה אֵין שׁוּם בַּת,״ הוּא סִנֵּן בְּכַעַס, \"הֵם הִתְחַתְּנוּ לֹא מִזְּמַן", - "source": "time_tunnel_silver_train", - "match_method": "direct_prefix" - }, - { - "text": "אֲנַחְנוּ יְהוּדִים, אֲנִי הַבַּת שֶׁל דֹּב וּצְפִירָה", - "source": "time_tunnel_silver_train", - "match_method": "direct_prefix" + "text": "צְפִירָה רָמָה מְאֹד הַנִּשְׁמַעַת לְמֵרָחוֹק", + "source": "ilana", + "match_method": "direct" } ], "cloze": { - "text": "\"אֲנִי הַבַּת שֶׁל דֹּב וּצְפִירָה,״ יְהוּדִית חָזְרָה", - "cloze_word_start": 24, - "cloze_word_end": 34, + "text": "אַךְ לְפֶתַע פִּתְאֹם נִשְׁמְעָה צְפִירַת מְכוֹנִית בֶּחָצֵר", + "cloze_word_start": 33, + "cloze_word_end": 41, "cloze_hint": null, "cloze_guid": "F=U}x*d/O4" }, @@ -1753122,15 +1762246,20 @@ "examples": { "vetted": [ { - "text": "אִבַּדְתִּי אֶת הַבִּטָּחוֹן אַחֲרֵי הַכִּשָּׁלוֹן הַצּוֹרֵב שֶׁל צִיּוּרִים מס' 1 וּמס' 2 שֶׁלִּי", - "source": "little_prince", - "match_method": "conjugated_prefix" + "text": "בִּזְכוּתָהּ, וְלַמְרוֹת שֶׁבָּלַעְתִּי הֲמוֹן מַיִם וְהַמֶּלַח צָרַב לִי בַּגָּרוֹן, עָלִיתִי לְמַעְלָה", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "הָעֵינַיִם שֶׁלִּי צוֹרְבוֹת וַאֲנִי רוֹאֶה אוֹתָהּ מְטֻשְׁטֶשֶׁת", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { - "text": "אִבַּדְתִּי אֶת הַבִּטָּחוֹן אַחֲרֵי הַכִּשָּׁלוֹן הַצּוֹרֵב שֶׁל צִיּוּרִים מס' 1 וּמס' 2 שֶׁלִּי", - "cloze_word_start": 51, - "cloze_word_end": 60, + "text": "בִּזְכוּתָהּ, וְלַמְרוֹת שֶׁבָּלַעְתִּי הֲמוֹן מַיִם וְהַמֶּלַח צָרַב לִי בַּגָּרוֹן, עָלִיתִי לְמַעְלָה", + "cloze_word_start": 64, + "cloze_word_end": 69, "cloze_hint": null, "cloze_guid": "dww:C`n]+j" }, @@ -1756446,7 +1765575,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא הִנִּיחָה עַל הָאֲדָמָה אֶת הַשַּׂקִּית עִם הַמִּצְרָכִים וְשָׁלְחָה אֶת הַיָּד אֶל הַמֵּצַח שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "הִיא הִנִּיחָה עַל הָאֲדָמָה אֶת הַשַּׂקִּית עִם הַמִּצְרָכִים וְשָׁלְחָה אֶת הַיָּד אֶל הַמֵּצַח שֶׁלִּי", + "cloze_word_start": 49, + "cloze_word_end": 62, + "cloze_hint": null, + "cloze_guid": "JcH#O{/h9[" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִצְרָךְ", @@ -1757835,7 +1766980,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" הַקּוֹל שֶׁלָּהּ צוֹרֵם לִי, \"הֵבַנְתִּי", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "״ מֵחוֹר הַמַּנְעוּל מַגִּיעַ לְאָזְנַי צְלִיל צוֹרֵם שֶׁל חֲרִיקָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "״ חֲרִיקָה צוֹרֶמֶת קוֹטַעַת אֶת דְּבָרֶיהָ", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" הַקּוֹל שֶׁלָּהּ צוֹרֵם לִי, \"הֵבַנְתִּי", + "cloze_word_start": 19, + "cloze_word_end": 25, + "cloze_hint": null, + "cloze_guid": "KT2H`Wo`x3" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1759588,20 +1768759,25 @@ "examples": { "vetted": [ { - "text": "הַנַּגָּרִים שֶׁבָּנוּ אֶת הַצְּרִיפִים פֵּרְקוּ אוֹתָם", + "text": "הוּא הִזְמִין צְרִיפֵי עֵץ מֵהַנַּגָּרִיּוֹת שֶׁהָיוּ בַּמּוֹשָׁבָה רִאשׁוֹן־לְצִיּוֹן", "source": "time_tunnel_70", - "match_method": "inflected_prefix" + "match_method": "inflected" }, { - "text": "זָכַרְתִּי אֶת הַסִּפּוּר עַל הַצְּרִיפִים שֶׁהֵכִינוּ הַנַּגָּרִים בְּרִאשׁוֹן־לְצִיּוֹן לִקְרַאת הֲקָמַת הַמּוֹשָׁבָה", - "source": "time_tunnel_70", - "match_method": "inflected_prefix" + "text": "מִכָּל הַבָּתִּים וְהַבִּנְיָנִים – אֶת צְרִיף גַּן־הַיְלָדִים עִם הַגַּג הָאָדֹם וְהַמְטַפֵּס הַיָּרֹק", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "וְגַם צְרִיף גַּן־הַיְלָדִים כְּבָר אֵינוֹ חָדָשׁ כְּשֶׁהָיָה, גַּם הוּא קְצָת יָשָׁן כְּבָר", + "source": "ilana", + "match_method": "direct" } ], "cloze": { - "text": "הַנַּגָּרִים שֶׁבָּנוּ אֶת הַצְּרִיפִים פֵּרְקוּ אוֹתָם", - "cloze_word_start": 27, - "cloze_word_end": 39, + "text": "הוּא הִזְמִין צְרִיפֵי עֵץ מֵהַנַּגָּרִיּוֹת שֶׁהָיוּ בַּמּוֹשָׁבָה רִאשׁוֹן־לְצִיּוֹן", + "cloze_word_start": 14, + "cloze_word_end": 22, "cloze_hint": null, "cloze_guid": "Q1)Y.gik$)" }, @@ -1760237,7 +1769413,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שְׁלִיחִים מֵאֶרֶץ־יִשְׂרָאֵל וְכָל מִינֵי מִתְנַדְּבִים הֵבִיאוּ לָנוּ בָּאגֶטִים טְרִיִּים וְאֹכֶל צָרְפָתִי", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "שְׁלִיחִים מֵאֶרֶץ־יִשְׂרָאֵל וְכָל מִינֵי מִתְנַדְּבִים הֵבִיאוּ לָנוּ בָּאגֶטִים טְרִיִּים וְאֹכֶל צָרְפָתִי", + "cloze_word_start": 101, + "cloze_word_end": 110, + "cloze_hint": null, + "cloze_guid": "p.;vMAUKsg" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1763738,13 +1772930,13 @@ "match_method": "conjugated" }, { - "text": "אַךְ מִכֵּיוָן שֶׁהָיָה טוֹב לֵב בִּמְיֻחָד, הוּא הִקְפִּיד לָתֵת רַק פְּקֻדּוֹת מִתְקַבְּלוֹת עַל הַדַּעַת", - "source": "little_prince", + "text": "פִּתְאוֹם הַהֶסְבֵּר שֶׁל שָׁרוֹן נִשְׁמָע לִי מִתְקַבֵּל עַל הַדַּעַת", + "source": "time_tunnel_76", "match_method": "conjugated" }, { - "text": "אֶפְשָׁרוּת שְׁנִיָּה, שֶׁבְּהֶחְלֵט מִתְקַבֶּלֶת עַל דַּעְתִּי, שֶׁנִּכָּנֵס וּנְגַלֶּה שֶׁלֹּא מְדֻבָּר בְּמִנְהֶרֶת־זְמַן אֶלָּא בִּסְתָם כּוּךְ", - "source": "time_tunnel_82", + "text": "הֲכִי מִתְקַבֵּל עַל הַדַּעַת שֶׁחָלַמְתִּי חֲלוֹם", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -1764265,17 +1773457,17 @@ "examples": { "vetted": [ { - "text": "מְדִינַת יִשְׂרָאֵל הָעַצְמָאִית הֶעֶלְתָה אֵלֶיהָ אֶת הַיְּהוּדִים מִתֵּימָן, קִבְּלָה אֶת פְּנֵיהֶם וְדָאֲגָה לָהֶם", - "source": "מנהרת הזמן 82", - "vetted": true + "text": "וּקְצִין הַמִּשְׁטָרָה, לַמְרוֹת שֶׁנִּסָּה לְהִתְעַקֵּשׁ עַל קַבָּלַת הַנֶּשֶׁק, וִתֵּר", + "source": "time_tunnel_70", + "match_method": "inflected" } ], "cloze": { - "text": "מְדִינַת יִשְׂרָאֵל הָעַצְמָאִית הֶעֶלְתָה אֵלֶיהָ אֶת הַיְּהוּדִים מִתֵּימָן, קִבְּלָה אֶת פְּנֵיהֶם וְדָאֲגָה לָהֶם", - "cloze_word_start": 79, - "cloze_word_end": 87, + "text": "וּקְצִין הַמִּשְׁטָרָה, לַמְרוֹת שֶׁנִּסָּה לְהִתְעַקֵּשׁ עַל קַבָּלַת הַנֶּשֶׁק, וִתֵּר", + "cloze_word_start": 62, + "cloze_word_end": 70, "cloze_hint": null, - "cloze_guid": "w:Rj3%16]k" + "cloze_guid": "yr,,n@oa]]" }, "rejected_count": 0 }, @@ -1766373,6 +1775565,11 @@ "text": "חַלּוֹן קָטָן הָיָה קָבוּעַ מִתַּחַת לַשֶּׁלֶט וּלְצִדּוֹ, בְּאוֹתִיּוֹת קְטַנּוֹת נִכְתַּב: אֶשְׁנַב הֲצָצָה \"אֶשְׁנַב הֲצָצָה", "source": "time_tunnel_silver_train", "match_method": "direct" + }, + { + "text": "יֵשׁ לָהּ דַּוְקָא שִׁנַּיִם יָפוֹת, כְּאִלּוּ מִישֶׁהוּ טוֹרֵחַ לְצַחְצֵחַ לָהּ אוֹתָן בְּאֹפֶן קָבוּעַ, אֲבָל פִיכְס", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1768667,26 +1777864,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הַאִם קְבוּצַת הַחַיָּלִים הָאֵלֶּה הִיא פְּלֻגָּה", + "source": "time_tunnel_63", + "match_method": "inflected" + }, { "text": "פַּטְרִיאַרְךְ הוּא כְּמוֹ רַב רָאשִׁי שֶׁל קְבוּצוֹת מְסֻיָּמוֹת שֶׁל נוֹצְרִים", "source": "time_tunnel_82", "match_method": "inflected" }, { - "text": "אֶלֶף בְּכָל קְבוּצָה,\" אָמַר הַפַּקָּח", - "source": "little_prince", - "match_method": "direct" - }, - { - "text": "״ בֵּין הָאֹהָלִים נִצְּבָה קְבוּצָה לֹא גְּדוֹלָה שֶׁל חַיָּלִים שֶׁנָּשְׂאוּ רוֹבִים עַל כִּתְפֵיהֶם", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "—\" הוּא מַצְבִּיעַ עַל קְבוּצַת הַגְּבָרִים", + "source": "time_tunnel_76", + "match_method": "inflected" } ], "cloze": { - "text": "פַּטְרִיאַרְךְ הוּא כְּמוֹ רַב רָאשִׁי שֶׁל קְבוּצוֹת מְסֻיָּמוֹת שֶׁל נוֹצְרִים", - "cloze_word_start": 44, - "cloze_word_end": 53, + "text": "הַאִם קְבוּצַת הַחַיָּלִים הָאֵלֶּה הִיא פְּלֻגָּה", + "cloze_word_start": 6, + "cloze_word_end": 14, "cloze_hint": null, "cloze_guid": "h5}TTLen~W" }, @@ -1770061,7 +1779258,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "קָהָל רַב הִתְקַבֵּץ סְבִיבֵנוּ וּבוֹלְטִים בּוֹ כַּמּוּבָן לוֹבְשֵׁי הַטִּישֶׁרְט עִם הַלּוֹגוֹ 'מִתְּקוּמָה לַשְּׁחָקִים'", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "קָהָל רַב הִתְקַבֵּץ סְבִיבֵנוּ וּבוֹלְטִים בּוֹ כַּמּוּבָן לוֹבְשֵׁי הַטִּישֶׁרְט עִם הַלּוֹגוֹ 'מִתְּקוּמָה לַשְּׁחָקִים'", + "cloze_word_start": 10, + "cloze_word_end": 20, + "cloze_hint": null, + "cloze_guid": "z]^a#7#HK7" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1770489,7 +1779702,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּבְדִיּוּק הַיּוֹם אֲנַחְנוּ נוֹסְעִים לְמוּזֵאוֹן חֵיל הָאֲוִיר שֶׁנִּמְצָא לְיַד קִבּוּץ חֲצֵרִים בַּנֶּגֶב", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "וּבְדִיּוּק הַיּוֹם אֲנַחְנוּ נוֹסְעִים לְמוּזֵאוֹן חֵיל הָאֲוִיר שֶׁנִּמְצָא לְיַד קִבּוּץ חֲצֵרִים בַּנֶּגֶב", + "cloze_word_start": 84, + "cloze_word_end": 91, + "cloze_hint": null, + "cloze_guid": "Cwf5vV^Uyb" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קִבּוּץ", @@ -1771411,7 +1780640,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּמִּקְרֶה הֲכִי גָּרוּעַ, הַפָּנִים שֶׁלִּי יִקָּבְרוּ בַּחוֹל לְמֶשֶׁךְ כַּמָּה דַּקּוֹת וְלֹא אוּכַל לִנְשׁוֹם", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "הַאִם אֲנִי נִקְבָּר בַּחוֹל", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בַּמִּקְרֶה הֲכִי גָּרוּעַ, הַפָּנִים שֶׁלִּי יִקָּבְרוּ בַּחוֹל לְמֶשֶׁךְ כַּמָּה דַּקּוֹת וְלֹא אוּכַל לִנְשׁוֹם", + "cloze_word_start": 46, + "cloze_word_end": 56, + "cloze_hint": null, + "cloze_guid": "gHpm]3Km3Z" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1771836,7 +1781086,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַאִם יִתָּכֵן שֶׁמִּישֶׁהוּ קָבוּר שָׁם", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "זוֹ יָד שֶׁמְּבַצְבֶּצֶת מִתּוֹךְ הַבּוֹר, אוֹ אוּלַי זֶהוּ אֵיזֶשֶׁהוּ סַרְטָן שֶׁהָיָה קָבוּר בּוֹ וּמְנַסֶּה לָצֵאת", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַאִם יִתָּכֵן שֶׁמִּישֶׁהוּ קָבוּר שָׁם", + "cloze_word_start": 29, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "P/%)J_-tj8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1771898,7 +1781169,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא הוּא הָאִישׁ שֶׁגִּלָּה אֶת מְעָרוֹת הַקְּבוּרָה בָּאֵזוֹר, בִּזְכוּתוֹ הִתְחִילוּ אַרְכֵיאוֹלוֹגִים לַחְפּוֹר בְּבֵית שְׁעָרִים", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "הוּא הוּא הָאִישׁ שֶׁגִּלָּה אֶת מְעָרוֹת הַקְּבוּרָה בָּאֵזוֹר, בִּזְכוּתוֹ הִתְחִילוּ אַרְכֵיאוֹלוֹגִים לַחְפּוֹר בְּבֵית שְׁעָרִים", + "cloze_word_start": 42, + "cloze_word_end": 53, + "cloze_hint": null, + "cloze_guid": "vT,|zKtpz6" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קְבוּרָה", @@ -1773252,6 +1782539,16 @@ "text": "אַתָּה יוֹדֵעַ כַּמָּה חַיָּלִים מֵתוּ לָנוּ פֹּה בִּגְלַל קַדַּחַת", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "״ \"אוּלַי זוֹ לֹא הָיְתָה קַדַּחַת", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "\"אִם לֹא הָיְתָה לוֹ קַדַּחַת, לָמָּה הַהוֹרִים שֶׁלּוֹ שָׁלְחוּ אוֹתוֹ הֵנָּה אֵלֵינוּ", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1773334,7 +1782631,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ קוֹלוֹ צָרוּד, \"הוּא קוֹדֵחַ", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "\"שָׁרוֹן, אֲנִי קוֹדֵחַ מֵחֹם", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "״ קוֹלוֹ צָרוּד, \"הוּא קוֹדֵחַ", + "cloze_word_start": 23, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "q.*VW]>n[q" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1773842,8 +1783160,13 @@ "match_method": "direct" }, { - "text": "קֹדֶם, כְּשֶׁזַּלְמָן נִכְנַס לַחֶדֶר וְסַבָּא שֶׁל צְבִי הוֹצִיא קְעָרָה מֵהָאָרוֹן, הָיִיתִי בָּטוּחַ שֶׁיֵּשׁ בָּהּ אֶקְדָּח", - "source": "time_tunnel_75", + "text": "לְמָתְנֶיהָ הִיא חוֹגֶרֶת חֲגוֹרָה רְחָבָה וּבָהּ נָעוּץ אֶקְדָּח", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "״ הַפַּעַם הוּא מְדַבֵּר בַּעֲרָבִית, \"יֵשׁ לִי אֶקְדָּח וַאֲנִי לֹא אֲהַסֵּס לִירוֹת", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -1775885,6 +1785208,16 @@ "text": "וְשׁוּב רַגְלַי בָּאֲוִיר, וְגַם הַחֵלֶק הַקִּדְמִי שֶׁל גּוּפִי תָּלוּי בָּאֲוִיר", "source": "time_tunnel_82", "match_method": "direct_prefix" + }, + { + "text": "מֵהַחַלּוֹן הַקִּדְמִי שֶׁל הַגִ'יפּ נִשְׁלַחַת הַחוּצָה יָד", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + }, + { + "text": "הַחֵלֶק הַקִּדְמִי שֶׁלָּהּ בְּתוֹךְ הֶחָבִית הָרִאשׁוֹנָה, וְהַחֵלֶק הָאֲחוֹרִי שֶׁלָּהּ מֻפְנֶה אֵלַי", + "source": "time_tunnel_77", + "match_method": "direct_prefix" } ], "cloze": { @@ -1776127,7 +1785460,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מָה שֶׁכָּתַבְתִּי עַד כָּאן הָיָה מִין הַקְדָּמָה", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "מָה שֶׁכָּתַבְתִּי עַד כָּאן הָיָה מִין הַקְדָּמָה", + "cloze_word_start": 40, + "cloze_word_end": 50, + "cloze_hint": null, + "cloze_guid": "xGsg,}ED/?" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "הַקְדָּמָה", @@ -1777287,9 +1786636,9 @@ "match_method": "direct" }, { - "text": "אִמָּא הֶעֱרִיכָה שֶׁהַרְבֵּה אֲנָשִׁים יַגִּיעוּ לַתַּהֲלוּכָה וְשֶׁתִּהְיֶה לָנוּ בְּעָיַת חֲנָיָה וְלָכֵן עָדִיף לְהַקְדִּים רְפוּאָה לְמַכָּה", - "source": "time_tunnel_75", - "match_method": "direct" + "text": "\"הָאוֹנִיָּה תֵּצֵא מֵהַנָּמֵל,\" נַפְתָּלִי הִקְדִּים אֶת שָׁרוֹן, \"וְקָדִימָה - יוֹצְאִים לְאֶרֶץ־יִשְׂרָאֵל", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1778130,6 +1787479,11 @@ "text": "אֵלֶּה הָיוּ מַדִּים בְּרִיטִיִּים שֶׁכְּבָר הִכַּרְנוּ מִבִּקּוּרִים קוֹדְמִים שֶׁלָּנוּ בֶּעָבָר", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "בְּגָדָיו הִזְכִּירוּ אֶת בִּגְדֵיהֶם שֶׁל הַיְּלָדִים הַיְּהוּדִים מֵהַגּוֹלָה, שֶׁפָּגַשְׁנוּ בַּחֲזָרוֹת קוֹדְמוֹת לֶעָבָר", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1783856,8 +1793210,8 @@ "match_method": "direct" }, { - "text": "\" צוֹהֶלֶת מַקְהֵלָה, כֻּלָּהּ מְתֹם", - "source": "alice_wonderland", + "text": "\" מַקְהֵלָה שֶׁל צְעִירִים מְגִיבָה לְהוֹרָאוֹתָיו שֶׁל הַקָּצִין הַבְּרִיטִי, \"הָלְאָה הַבְּרִיטִים", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -1784440,25 +1793794,15 @@ "examples": { "vetted": [ { - "text": "\"קוּם,\" הִיא אוֹמֶרֶת, \"נְפַזֵּר אֶת הַקָּהָל וְנֵלֵךְ לְהָבִיא אֶת פְרוּמְקִין", - "source": "time_tunnel_82", - "match_method": "direct_prefix" - }, - { - "text": "\" מִתּוֹךְ הַקָּהָל יוֹצֵא אָדָם מְבֻגָּר צָנוּם מְאוֹד", - "source": "time_tunnel_82", - "match_method": "direct_prefix" - }, - { - "text": "תּוֹךְ שְׁנִיּוֹת כְּבָר קָשֶׁה לְהַבְחִין בָּהֶם, כִּי הַקָּהָל הָרַב מַסְתִּיר אוֹתָם", - "source": "time_tunnel_82", - "match_method": "direct_prefix" + "text": "קָהָל רַב הִתְקַבֵּץ סְבִיבֵנוּ וּבוֹלְטִים בּוֹ כַּמּוּבָן לוֹבְשֵׁי הַטִּישֶׁרְט עִם הַלּוֹגוֹ 'מִתְּקוּמָה לַשְּׁחָקִים'", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\"קוּם,\" הִיא אוֹמֶרֶת, \"נְפַזֵּר אֶת הַקָּהָל וְנֵלֵךְ לְהָבִיא אֶת פְרוּמְקִין", - "cloze_word_start": 37, - "cloze_word_end": 45, + "text": "קָהָל רַב הִתְקַבֵּץ סְבִיבֵנוּ וּבוֹלְטִים בּוֹ כַּמּוּבָן לוֹבְשֵׁי הַטִּישֶׁרְט עִם הַלּוֹגוֹ 'מִתְּקוּמָה לַשְּׁחָקִים'", + "cloze_word_start": 0, + "cloze_word_end": 5, "cloze_hint": null, "cloze_guid": "sJ>sXxMJ|." }, @@ -1785808,6 +1795152,11 @@ "source": "alice_wonderland", "match_method": "direct_prefix" }, + { + "text": "וְרַק לְפִי הַשְּׁקֵדִיָּה הָעוֹמֶדֶת קָרוֹב־קָרוֹב הִכִּירָה אִילָנָה אֶת הַצְּרִף הַקּוֹדֵם", + "source": "ilana", + "match_method": "direct_prefix" + }, { "text": "זֶה אוֹתוֹ נוֹף כְּמוֹ בָּעַמּוּד הַקּוֹדֵם, אֲבָל צִיַּרְתִּי אוֹתוֹ שׁוּב כְּדֵי לְהַרְאוֹת לָכֶם אוֹתוֹ כָּרָאוּי", "source": "little_prince", @@ -1788827,25 +1798176,15 @@ "examples": { "vetted": [ { - "text": "\" \"אֲנָשִׁים תָּמִיד לֹא מְרֻצִּים מִמְּקוֹמָם,\" אָמַר הַפַּקָּח", - "source": "little_prince", - "match_method": "conjugated_prefix" - }, - { - "text": "\" \"מָה אַתָּה הָיִיתָ עוֹשֶׂה בִּמְקוֹמָם", - "source": "time_tunnel_75", - "match_method": "conjugated_prefix" - }, - { - "text": "בִּמְקוֹמָם הִגִּיעוּ לְאָזְנֵינוּ קוֹלוֹת וְאָז זִהִינוּ שֶׁאֵלֶּה קוֹלוֹת שֶׁל חֲפִירָה", - "source": "time_tunnel_78", - "match_method": "conjugated_prefix" + "text": "“זֶה יִהְיֶה מְקוֹמָם”, אָמַר וְהוֹסִיף: “וּזְכֹר לָתֵת לָהֶם כָּל יוֹם עָלִים חֲדָשִׁים", + "source": "silkworms", + "match_method": "conjugated" } ], "cloze": { - "text": "\" \"אֲנָשִׁים תָּמִיד לֹא מְרֻצִּים מִמְּקוֹמָם,\" אָמַר הַפַּקָּח", - "cloze_word_start": 35, - "cloze_word_end": 46, + "text": "“זֶה יִהְיֶה מְקוֹמָם”, אָמַר וְהוֹסִיף: “וּזְכֹר לָתֵת לָהֶם כָּל יוֹם עָלִים חֲדָשִׁים", + "cloze_word_start": 13, + "cloze_word_end": 21, "cloze_hint": null, "cloze_guid": "g)#m%gZh%X" }, @@ -1789647,7 +1798986,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" אֲנִי מִתְקוֹמֵם, \"אֵיךְ יָכֹלְתִּי לָדַעַת לְאָן הִגַּעְנוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" אֲנִי מִתְקוֹמֵם, \"אֵיךְ יָכֹלְתִּי לָדַעַת לְאָן הִגַּעְנוּ", + "cloze_word_start": 8, + "cloze_word_end": 18, + "cloze_hint": null, + "cloze_guid": "EV(0>h6)p8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": true, @@ -1790212,7 +1799567,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֲרֵי זֶה פֵּרוּשׁ הַמִּלָּה \"תְּקוּמָה\", כְּאִלּוּ מֵתִים קָמוּ וְשָׁבוּ לְחַיִּים", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֲרֵי זֶה פֵּרוּשׁ הַמִּלָּה \"תְּקוּמָה\", כְּאִלּוּ מֵתִים קָמוּ וְשָׁבוּ לְחַיִּים", + "cloze_word_start": 30, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "g+X[dXTQ*x" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תְּקוּמָה", @@ -1790377,25 +1799748,20 @@ "examples": { "vetted": [ { - "text": "\"אַתְּ הָיִית אוֹהֶבֶת חֲתוּלִים אִלּוּ הָיִית בִּמְקוֹמִי", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "עָזַבְתִּי אֶת מְקוֹמִי וְהִצְטָרַפְתִּי אֵלֶיהָ", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "\" זִנַּקְתִּי מִמְּקוֹמִי בְּבֶהָלָה כְּמֻכֵּה בָּרָק", - "source": "little_prince", - "match_method": "direct_prefix" - }, - { - "text": "\" קָפָאתִי בִּמְקוֹמִי, לִבִּי נִצְבַּט, אַךְ עֲדַיִן לֹא הֵבַנְתִּי", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "הֶחְלַטְתִּי שֶׁאִם מִישֶׁהוּ יִתְפֹּס אֶת מְקוֹמִי, אֲוַתֵּר לוֹ וְאֶמְצָא לִי מָקוֹם עַל הָרִצְפָּה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "\"אַתְּ הָיִית אוֹהֶבֶת חֲתוּלִים אִלּוּ הָיִית בִּמְקוֹמִי", - "cloze_word_start": 47, - "cloze_word_end": 58, + "text": "עָזַבְתִּי אֶת מְקוֹמִי וְהִצְטָרַפְתִּי אֵלֶיהָ", + "cloze_word_start": 15, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "s!K)=7fa_J" }, @@ -1790548,15 +1799914,25 @@ "examples": { "vetted": [ { - "text": "הֲרֵי בְּדָבָר אֶחָד אֲנִי בָּטוּחַ בְּמֵאָה אָחוּז: מִבְצַע 'מַרְבַד הַקְּסָמִים' הָיָה אַחֲרֵי הֲקָמַת מְדִינַת יִשְׂרָאֵל", - "source": "מנהרת הזמן 82", + "text": "זָכַרְתִּי אֶת הַסִּפּוּר עַל הַצְּרִיפִים שֶׁהֵכִינוּ הַנַּגָּרִים בְּרִאשׁוֹן־לְצִיּוֹן לִקְרַאת הֲקָמַת הַמּוֹשָׁבָה", + "source": "time_tunnel_70", + "match_method": "inflected" + }, + { + "text": "לִפְנֵי הֲקָמַת אִרְגּוּן 'הַשּׁוֹמֵר', אוֹ אַחֲרֶיהָ", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "״אֲנִי אֲפִלּוּ יוֹדֵעַ שֶׁהוּא וּטְרוּמְפֶּלְדוֹר יָזְמוּ הֲקָמַת גְּדוּדִים עִבְרִיִּים, שֶׁיִּלָּחֲמוּ יַחַד עִם אַנְגְּלִיָה נֶגֶד טוּרְקְיָה", + "source": "time_tunnel_63", "match_method": "inflected" } ], "cloze": { - "text": "הֲרֵי בְּדָבָר אֶחָד אֲנִי בָּטוּחַ בְּמֵאָה אָחוּז: מִבְצַע 'מַרְבַד הַקְּסָמִים' הָיָה אַחֲרֵי הֲקָמַת מְדִינַת יִשְׂרָאֵל", - "cloze_word_start": 97, - "cloze_word_end": 104, + "text": "זָכַרְתִּי אֶת הַסִּפּוּר עַל הַצְּרִיפִים שֶׁהֵכִינוּ הַנַּגָּרִים בְּרִאשׁוֹן־לְצִיּוֹן לִקְרַאת הֲקָמַת הַמּוֹשָׁבָה", + "cloze_word_start": 99, + "cloze_word_end": 106, "cloze_hint": null, "cloze_guid": "t*}H;ppNm7" }, @@ -1790713,7 +1800089,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "קַרְנִי הוֹבִילָה אוֹתָנוּ אַחֲרֶיהָ אֶל מַדְרֵגוֹת שֶׁיָּרְדוּ לְקוֹמַת הַמַּרְתֵּף", + "source": "time_tunnel_78", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "קַרְנִי הוֹבִילָה אוֹתָנוּ אַחֲרֶיהָ אֶל מַדְרֵגוֹת שֶׁיָּרְדוּ לְקוֹמַת הַמַּרְתֵּף", + "cloze_word_start": 64, + "cloze_word_end": 72, + "cloze_hint": null, + "cloze_guid": "btR&ug0?Rt" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קוֹמָה", @@ -1791734,7 +1801126,33 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "source": "time_tunnel_77", + "match_method": "inflected_prefix" + }, + { + "text": "כָּל מָה שֶׁהֵם הִרְוִיחוּ הֵם שָׂמוּ בְּקֻפָּה מְשֻׁתֶּפֶת", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "דּוֹקְטוֹר קִיזְלֶר הוּא רוֹפֵא הַמִּשְׁפָּחָה שֶׁלָּנוּ מִקֻּפַּת חוֹלִים, וְהַנּוֹכְחוּת שֶׁלּוֹ כָּאן מְבַלְבֶּלֶת אוֹתִי", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וְהִנֵּה הַסְּנִיף שֶׁל טִפַּת חָלָב, וְקֻפַּת חוֹלִים, וּבֵית הַכְּנֶסֶת", + "cloze_word_start": 38, + "cloze_word_end": 46, + "cloze_hint": null, + "cloze_guid": "jV@))iv.c;" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קֻפָּה", @@ -1791797,15 +1801215,25 @@ "examples": { "vetted": [ { - "text": "זַזְתִּי הַצִּדָּה כְּדֵי שֶׁכָּל מִי שֶׁנִּדְחַק לְעֵבֶר הַקֻּפְסָה לְחַפֵּשׂ אֶת הַטֶּלֶפוֹן שֶׁלּוֹ, לֹא יִדְחַף אוֹתִי", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "הִיא הֵכִינָה לָהּ לִימוֹנָדָה וְהִגִּישָׁה לָהּ קֻפְסַת טִישׁוּ", + "source": "time_tunnel_70", + "match_method": "inflected" + }, + { + "text": "\" יוּבַל פָּתַח קֻפְסַת חַלְבָה וְהִתְחִיל לֶאֱכוֹל", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "\" \"הַשְּׁלִיחִים,\" הוּא פָּתַח קֻפְסָה שֶׁל עוּגִיּוֹת וְהִתְחִיל לֶאֱכוֹל", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "זַזְתִּי הַצִּדָּה כְּדֵי שֶׁכָּל מִי שֶׁנִּדְחַק לְעֵבֶר הַקֻּפְסָה לְחַפֵּשׂ אֶת הַטֶּלֶפוֹן שֶׁלּוֹ, לֹא יִדְחַף אוֹתִי", - "cloze_word_start": 58, - "cloze_word_end": 68, + "text": "הִיא הֵכִינָה לָהּ לִימוֹנָדָה וְהִגִּישָׁה לָהּ קֻפְסַת טִישׁוּ", + "cloze_word_start": 49, + "cloze_word_end": 56, "cloze_hint": null, "cloze_guid": "g#?t:E4f:" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קִרְבָה", @@ -1859517,7 +1869302,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוּא קֵרֵחַ וּמַרְכִּיב מִשְׁקָפַיִם, גַּבָּה אַחַת שֶׁלּוֹ מוּרֶמֶת יוֹתֵר מֵהָאַחֶרֶת", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הוּא קֵרֵחַ וּמַרְכִּיב מִשְׁקָפַיִם, גַּבָּה אַחַת שֶׁלּוֹ מוּרֶמֶת יוֹתֵר מֵהָאַחֶרֶת", + "cloze_word_start": 5, + "cloze_word_end": 11, + "cloze_hint": null, + "cloze_guid": "bTk22]Sg:=" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1862366,25 +1872167,20 @@ "examples": { "vetted": [ { - "text": "הַכּוֹבַע שֶׁלָּהּ הִתְחַכֵּךְ בַּתִּקְרָה, אֲבָל הִיא לֹא הֵסִירָה אוֹתוֹ", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "״ הִיא הֵרִימָה אֶת עֵינֶיהָ אֶל תִּקְרַת הַמְּעָרָה וְהַבָּעָתָהּ נִרְאֲתָה מְבֹהֶלֶת, \"יוּאוּ", + "source": "time_tunnel_78", + "match_method": "inflected" }, { - "text": "זֹאת הָיְתָה כַּמּוּבָן שְׁטוּת, כִּי מִי יְכוֹלָה לָשֶׁבֶת עַל הַתִּקְרָה וּלְדַבֵּר אֵלַי", - "source": "time_tunnel_70", - "match_method": "direct_prefix" - }, - { - "text": "״אֲנִי לֹא עַל הַתִּקְרָה,״ הַקּוֹל חָזַר לְהִשָּׁמַע", - "source": "time_tunnel_70", - "match_method": "direct_prefix" + "text": "שְׁלוֹשֶׁת הָעֲטַלֵּפִים שֶׁנִּצְמְדוּ קֹדֶם אֶל תִּקְרַת הַמְּעָרָה, עָבְרוּ גַּם הֵם דֶּרֶךְ הַפֶּתַח אֶל הַמִּנְהָרָה", + "source": "time_tunnel_78", + "match_method": "inflected" } ], "cloze": { - "text": "הַכּוֹבַע שֶׁלָּהּ הִתְחַכֵּךְ בַּתִּקְרָה, אֲבָל הִיא לֹא הֵסִירָה אוֹתוֹ", - "cloze_word_start": 31, - "cloze_word_end": 42, + "text": "״ הִיא הֵרִימָה אֶת עֵינֶיהָ אֶל תִּקְרַת הַמְּעָרָה וְהַבָּעָתָהּ נִרְאֲתָה מְבֹהֶלֶת, \"יוּאוּ", + "cloze_word_start": 33, + "cloze_word_end": 41, "cloze_hint": null, "cloze_guid": "rRSw3(Rp%H" }, @@ -1865113,7 +1874909,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאָז קָרְנוּ פָּנָיו שֶׁל יוֹסִי וְעֵינָיו נָצְצוּ", + "source": "shell_story", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וְאָז קָרְנוּ פָּנָיו שֶׁל יוֹסִי וְעֵינָיו נָצְצוּ", + "cloze_word_start": 6, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "t2xs:>u&>E" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1865711,6 +1875523,16 @@ "text": "זֹאת לֹא כִּבְשָׂה, זֶה גְּדִי, יֵשׁ לוֹ קַרְנַיִם", "source": "little_prince", "match_method": "inflected" + }, + { + "text": "קַרְנֵי הַשֶּׁמֶשׁ מְסַנְוְרוֹת אוֹתִי", + "source": "time_tunnel_77", + "match_method": "inflected" + }, + { + "text": "רַק לִפְנֵי דַּקָּה חָדְרוּ פְּנִימָה קַרְנֵי שֶׁמֶשׁ וְהֵאִירוּ אֶת הֶחָלָל, וּבְבַת אַחַת הֵן נֶעֶלְמוּ", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "rejected_count": 0 @@ -1866002,7 +1875824,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי מַרְגִּישׁ כְּאִלּוּ בִּכְלָל לֹא הָיִיתִי חוֹלֶה, וְהַהַרְגָּשָׁה הַזּוֹ כַּנִּרְאֶה מֻקְרֶנֶת מִמֶּנִּי וְעוֹבֶרֶת אֶל מַנְיָה", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אֲנִי מַרְגִּישׁ כְּאִלּוּ בִּכְלָל לֹא הָיִיתִי חוֹלֶה, וְהַהַרְגָּשָׁה הַזּוֹ כַּנִּרְאֶה מֻקְרֶנֶת מִמֶּנִּי וְעוֹבֶרֶת אֶל מַנְיָה", + "cloze_word_start": 92, + "cloze_word_end": 101, + "cloze_hint": null, + "cloze_guid": "QjW3y7bbOS" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1867275,6 +1877113,11 @@ "text": "לֹא הָיָה שׁוּם סִימָן, רַק מַשֶּׁהוּ צָהֹב שֶׁהִבְהֵב לְיַד הַקַּרְסֹל שֶׁלּוֹ", "source": "little_prince", "match_method": "direct_prefix" + }, + { + "text": "אַךְ לְבַסּוֹף עָלָה בְּיָדָם לִתְפֹּס שִׁשָּׁה מֵהֶם, אָסְרוּ אוֹתָם בַּחֲבָלִים וּבְרָמְחֵיהֶם הִגִּישׁוּם עַד לְקַרְסֻלֵּי גּוּלִיבֶר", + "source": "gulliver", + "match_method": "inflected_prefix" } ], "cloze": { @@ -1867803,7 +1877646,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "רַק וִילוֹן אֶחָד, קָרוּעַ, תָּלוּי עַל בְּלִימָה וּמִתְנוֹפֵף", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "רַק וִילוֹן אֶחָד, קָרוּעַ, תָּלוּי עַל בְּלִימָה וּמִתְנוֹפֵף", + "cloze_word_start": 19, + "cloze_word_end": 26, + "cloze_hint": null, + "cloze_guid": "ltaeSC-0ne" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1867953,7 +1877812,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי לְמָשָׁל נִגְרַרְתִּי וְהַבְּגָדִים שֶׁלִּי נִקְרְעוּ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אֲנִי לְמָשָׁל נִגְרַרְתִּי וְהַבְּגָדִים שֶׁלִּי נִקְרְעוּ", + "cloze_word_start": 50, + "cloze_word_end": 59, + "cloze_hint": null, + "cloze_guid": "o>@p]?}I=g" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1870601,19 +1880476,14 @@ "examples": { "vetted": [ { - "text": "\"לָמָּה הֵן חָיוּ בְּקַרְקָעִית שֶׁל בּוֹר", - "source": "alice_wonderland", - "match_method": "direct_prefix" - }, - { - "text": "\" \"לֹא יִתָּכֵן שֶׁנִּזְקַקְתֶּם לְזֶה בִּמְיֻחָד,\" אָמְרָה אַלִיס, \"הֲרֵי חֲיִיתֶם בְּקַרְקָעִית הַיָּם", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "הִיא נִשְׁכְּבָה עַל קַרְקָעִית הַיַּכְטָה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "\"לָמָּה הֵן חָיוּ בְּקַרְקָעִית שֶׁל בּוֹר", - "cloze_word_start": 18, + "text": "הִיא נִשְׁכְּבָה עַל קַרְקָעִית הַיַּכְטָה", + "cloze_word_start": 21, "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "qts|.RF`)1" @@ -1873738,6 +1883608,11 @@ "source": "time_tunnel_silver_train", "match_method": "direct" }, + { + "text": "* * * פִּתְאֺם נָשַׁב רוּחַ קַר", + "source": "kid_on_mountain", + "match_method": "direct" + }, { "text": "קַר מְאוֹד כָּאן אֶצְלְךָ", "source": "little_prince", @@ -1874814,7 +1884689,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מוֹבִילִים לְבֵנִים וְחוֹל, מוֹבִילִים קְרָשִׁים וּבַרְזֶל", + "source": "ilana", + "match_method": "inflected" + } + ], + "cloze": { + "text": "מוֹבִילִים לְבֵנִים וְחוֹל, מוֹבִילִים קְרָשִׁים וּבַרְזֶל", + "cloze_word_start": 39, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "eOO|[#8,P<" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קֶרֶשׁ", @@ -1877852,6 +1887743,11 @@ "text": "אֲבָל מַשֶּׁהוּ בַּנְּחִישׁוּת שֶׁלָּהּ כַּנִּרְאֶה פָּעַל עָלָיו וְהַמַּבָּט הַקָּשׁוּחַ שֶׁבְּעֵינָיו הִתְרַכֵּךְ", "source": "time_tunnel_silver_train", "match_method": "direct_prefix" + }, + { + "text": "הוּא גִּבּוֹר וְקָשׁוּחַ וְ", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -1881844,9 +1891740,9 @@ "match_method": "direct" }, { - "text": "\" \"שָׁלוֹשׁ שְׁאֵלוֹת – זֶה דַּי וְהוֹתֵר,\" סָח אָבִיו; \"הֵן קִשְׁקַשְׁתָּ בְּלִי סוֹף", - "source": "alice_wonderland", - "match_method": "conjugated" + "text": "״ \"תָּבִיאִי לִי מַיִם בִּמְקוֹם לְקַשְׁקֵשׁ עַל הַפֶּרֶד הַזֶּה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1882849,17 +1892745,17 @@ "examples": { "vetted": [ { - "text": "הִיא הוֹפֶכֶת אוֹתִי מִצַּד לְצַד כְּאִלּוּ אֲנִי קוֹרַת עֵץ וּמְחַפֶּשֶׂת אֶת הַקֶּשֶׁר", - "source": "מנהרת הזמן 82", - "vetted": true + "text": "\"שׁוּם דָּבָר,״ שָׁרוֹן מוֹדָה, \"אוּלַי שָׁמַעְתִּי פַּעַם אֶת הַשֵּׁם, אֲבָל אֲנִי לֹא זוֹכֶרֶת בְּאֵיזֶה הֶקְשֵׁר", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "הִיא הוֹפֶכֶת אוֹתִי מִצַּד לְצַד כְּאִלּוּ אֲנִי קוֹרַת עֵץ וּמְחַפֶּשֶׂת אֶת הַקֶּשֶׁר", - "cloze_word_start": 79, - "cloze_word_end": 88, + "text": "\"שׁוּם דָּבָר,״ שָׁרוֹן מוֹדָה, \"אוּלַי שָׁמַעְתִּי פַּעַם אֶת הַשֵּׁם, אֲבָל אֲנִי לֹא זוֹכֶרֶת בְּאֵיזֶה הֶקְשֵׁר", + "cloze_word_start": 107, + "cloze_word_end": 115, "cloze_hint": null, - "cloze_guid": "y>2GP2n8>S" + "cloze_guid": "njNEx=HR%Q" }, "rejected_count": 0 }, @@ -1883039,6 +1892935,11 @@ "text": "הָיָה לָהֶם שַׂק קַנְבָס גָּדוֹל, שֶׁפִּתְחוֹ נִקְשַׁר בְּחוּטִים", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "בְּרֶגַע שֶׁהָאוֹנִיָּה תִּקָּשֵׁר אֶל הָרְצִיף, תִּתְבַּקְּשׁוּ לָרֶדֶת מִמֶּנָּה וְלַעֲבוֹר אֶל הָאוֹנִיּוֹת שֶׁמַּמְתִּינוֹת לָכֶם שָׁם", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1886098,7 +1895999,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא מְרַחְרַחַת אוֹתוֹ כְּאִלּוּ הוּא קַשׁ, וְ", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "נִרְאֶה שֶׁהִיא מִתְכַּוֶנֶת לֶאֱכוֹל אֶת הַוִילוֹן כְּאִלּוּ הוּא קַשׁ אוֹ עֵשֶׂב", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "שְׁלוֹשָׁה אַרְגָּזִים הֻצְמְדוּ זֶה לָזֶה וַעֲלֵיהֶם הֻנַּח מַצָּע שֶׁל קַשׁ, שֶׁעָלָיו שְׂמִיכָה בְּלוּיָה", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "הִיא מְרַחְרַחַת אוֹתוֹ כְּאִלּוּ הוּא קַשׁ, וְ", + "cloze_word_start": 39, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "EZ1S~rlZ]Y" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "קַשׁ", @@ -1886168,20 +1896095,20 @@ "examples": { "vetted": [ { - "text": "גָּר שָׁם אִישׁ נִכְבָּד וְקָשִׁישׁ שֶׁכָּתַב סְפָרִים עֲצוּמִים בְּגָדְלָם", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "אִיז'וֹ שֶׁיָּצָא מֵהַדָּקוֹטָה הָיָה בָּחוּר צָעִיר וְאִיז'וֹ שֶׁדִּבֵּר אִתָּנוּ הָיָה קָשִׁישׁ", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "\" שָׁאַל אוֹתוֹ הָאָדוֹן הַקָּשִׁישׁ", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "\" הַטַּיָּס שֶׁאֲנַחְנוּ לֹא מַכִּירִים וְשֶׁנִּרְאָה אֲפִלּוּ יוֹתֵר קָשִׁישׁ מִסַּבָּא שֶׁלִּי, מִתְקָרֵב אֶל הַדָקוֹטָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "גָּר שָׁם אִישׁ נִכְבָּד וְקָשִׁישׁ שֶׁכָּתַב סְפָרִים עֲצוּמִים בְּגָדְלָם", - "cloze_word_start": 25, - "cloze_word_end": 35, + "text": "אִיז'וֹ שֶׁיָּצָא מֵהַדָּקוֹטָה הָיָה בָּחוּר צָעִיר וְאִיז'וֹ שֶׁדִּבֵּר אִתָּנוּ הָיָה קָשִׁישׁ", + "cloze_word_start": 89, + "cloze_word_end": 97, "cloze_hint": null, "cloze_guid": "CB%*P6}nWB" }, @@ -1887277,7 +1897204,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "גַּם בַּחֲגוֹרָתָהּ נָעוּץ אֶקְדָּח, וְהִיא מַרְכִּיבָה מִשְׁקְפֵי רְאִיָּה בַּעֲלֵי עֲדָשׁוֹת עֲגֻלּוֹת", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "גַּם בַּחֲגוֹרָתָהּ נָעוּץ אֶקְדָּח, וְהִיא מַרְכִּיבָה מִשְׁקְפֵי רְאִיָּה בַּעֲלֵי עֲדָשׁוֹת עֲגֻלּוֹת", + "cloze_word_start": 67, + "cloze_word_end": 75, + "cloze_hint": null, + "cloze_guid": "yBE_Lo;hn6" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רְאִיָּה", @@ -1888572,15 +1898515,15 @@ "examples": { "vetted": [ { - "text": "כֻּלִּי תִּקְוָה שֶׁהִצְלַחְתִּי לַעֲמוֹד בַּמְּשִׂימָה בַּכָּבוֹד הָרָאוּי לִיצִירָה גְּאוֹנִית וְנִצְחִית זוֹ", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "בְּכָל זֹאת, לֹא רָאוּי לְהִשָּׁבַע בִּשְׁכִיבָה, זֶה לֹא מְכֻבָּד", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "כֻּלִּי תִּקְוָה שֶׁהִצְלַחְתִּי לַעֲמוֹד בַּמְּשִׂימָה בַּכָּבוֹד הָרָאוּי לִיצִירָה גְּאוֹנִית וְנִצְחִית זוֹ", - "cloze_word_start": 67, - "cloze_word_end": 75, + "text": "בְּכָל זֹאת, לֹא רָאוּי לְהִשָּׁבַע בִּשְׁכִיבָה, זֶה לֹא מְכֻבָּד", + "cloze_word_start": 17, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "P_Xs28iFi#" }, @@ -1889383,9 +1899326,9 @@ "match_method": "direct" }, { - "text": "סוֹף לְהִתְרָאוֹת בְּסֵפֶר הַבָּא: מִנְהֶרֶת־הַזְּמַן 83 מִכְתָּבִים לְאָנָה פְרַנְק סִפְרֵי 'מִנְהֶרֶת־הַזְּמַן' שֶׁרָאוּ אוֹר עַד עַתָּה: 1", - "source": "time_tunnel_82", - "match_method": "direct" + "text": "\"וְאִם לֹא נִתְרָאֶה בְּאֶרֶץ־יִשְׂרָאֵל, אָז כַּנִּרְאֶה נִתְרָאֶה בְּקַפְרִיסִין,\" הוּא מוֹסִיף", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1889827,7 +1899770,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִמֵּי הַבְּרֵכָה הַקְּטַנָּה, הַשְּׁקוּפִים כְּמוֹ רְאִי זְכוּכִית – קִבְּלוּ שְׁמָשׁוֹת וְקָבְעוּ חַלּוֹנוֹת בְּהִירִים וְיָפִים", + "source": "ilana", + "match_method": "direct" + }, + { + "text": "כְּשֶׁיָּצָאנוּ הַיָּם הָיָה רָגוּעַ וְנִרְאָה חָלָק כְּמוֹ רְאִי, וּבְבַת אַחַת הַיָּם הִתְחִיל לְהִתְנַהֵג כְּמוֹ מְטֹרָף", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "מִמֵּי הַבְּרֵכָה הַקְּטַנָּה, הַשְּׁקוּפִים כְּמוֹ רְאִי זְכוּכִית – קִבְּלוּ שְׁמָשׁוֹת וְקָבְעוּ חַלּוֹנוֹת בְּהִירִים וְיָפִים", + "cloze_word_start": 52, + "cloze_word_end": 57, + "cloze_hint": null, + "cloze_guid": "m)+le5I$dY" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רְאִי", @@ -1891052,7 +1901016,16 @@ "בְּרֵאשִׁית|Noun|the very beginning; creation of the world (biblical)" ], "confusables_guid": "c-n`~^RAF-", - "examples": null, + "examples": { + "vetted": [ + { + "text": "יֶלֶד קָטָן הוּא עַמִי, וְאֵין לוֹ עֲדַיִן הַכֹּחַ הַדָרוּשׁ לְהַתְחִיל מַשֶׁהוּ שׁוּב מִבְּרֵאשִׁית", + "source": "silkworms", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בְּרֵאשִׁית", @@ -1891237,15 +1901210,15 @@ "source": "little_prince", "match_method": "direct" }, + { + "text": "הַנָּסִיךְ הַקָּטָן הִבְחִין בָּהֶן וּפָרַץ בִּצְחוֹק: \"עֲצֵי הַבָּאוֹבַּבּ שֶׁלְּךָ מַזְכִּירִים רָאשֵׁי כְּרוּב", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "הוּא הִבִּיט בִּי בְּכֹבֶד רֹאשׁ וְכָרַךְ אֶת זְרוֹעוֹתָיו סְבִיב צַוָּארִי", "source": "little_prince", "match_method": "direct" - }, - { - "text": "הֵם נוֹרָא אוֹהֲבִים לַעֲרוֹף רָאשִׁים כָּאן; הַפֶּלֶא הַגָּדוֹל הוּא שֶׁמִּישֶׁהוּ עֲדַיִן נִשְׁאַר פֹּה בַּחַיִּים", - "source": "alice_wonderland", - "match_method": "inflected" } ], "cloze": { @@ -1891424,7 +1901397,16 @@ "בְּרֵאשִׁית|Noun|the very beginning; creation of the world (biblical)" ], "confusables_guid": "c-n`~^RAF-", - "examples": null, + "examples": { + "vetted": [ + { + "text": "יֶלֶד קָטָן הוּא עַמִי, וְאֵין לוֹ עֲדַיִן הַכֹּחַ הַדָרוּשׁ לְהַתְחִיל מַשֶׁהוּ שׁוּב מִבְּרֵאשִׁית", + "source": "silkworms", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "בְּרֵאשִׁית", @@ -1891809,8 +1901791,8 @@ "match_method": "direct" }, { - "text": "לָכֵן לוֹחֲמֵי הַמַּחְתָּרוֹת הֶחְרִימוּ מִמַּחֲנוֹת הַצָּבָא הַבְּרִיטִיִּים אֶת רֹב הַנֶּשֶׁק שֶׁבּוֹ הֵם הִשְׁתַּמְּשׁוּ", - "source": "time_tunnel_silver_train", + "text": "אִיז'וֹ וַחֲבֵרָיו מֵ'עֲלִיַּת הַנֹּעַר' הָיוּ רֹב הַזְּמַן עַל הַסִּפּוּן", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -1893364,17 +1903346,17 @@ "vetted": [ { "text": "\" \"הֵם לֹא נִרְאִים בְּדִיּוּק כְּמוֹ הָעוֹלִים הַתֵּימָנִים שֶׁפָּגַשְׁנוּ בְּמִבְצַע 'מַרְבַד הַקְּסָמִים'", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected" }, { "text": "חָשַׁבְתָּ שֶׁהֵם הוּבְאוּ לָאָרֶץ בְּמִבְצַע 'מַרְבַד הַקְּסָמִים', וְזֶה לְגַמְרֵי לֹא נָכוֹן", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected" }, { "text": "הֲרֵי בְּדָבָר אֶחָד אֲנִי בָּטוּחַ בְּמֵאָה אָחוּז: מִבְצַע 'מַרְבַד הַקְּסָמִים' הָיָה אַחֲרֵי הֲקָמַת מְדִינַת יִשְׂרָאֵל", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected" } ], @@ -1897350,7 +1907332,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "כָּל מִי שֶׁהִכָּה אוֹתָהּ וּבָעַט בָּהּ – כָּאֲבוּ יָדָיו וְרַגְלָיו כְּאִלּוּ הִרְבִּיץ לְשֻּׁלְחָן אוֹ בָּעַט בְּאָרוֹן", + "source": "tree_dress", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "כָּל מִי שֶׁהִכָּה אוֹתָהּ וּבָעַט בָּהּ – כָּאֲבוּ יָדָיו וְרַגְלָיו כְּאִלּוּ הִרְבִּיץ לְשֻּׁלְחָן אוֹ בָּעַט בְּאָרוֹן", + "cloze_word_start": 80, + "cloze_word_end": 89, + "cloze_hint": null, + "cloze_guid": "v_&Uq31[N|" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1898497,15 +1908495,15 @@ "examples": { "vetted": [ { - "text": "אִם לְרֶגַע עָלְתָה בְּדַעְתִּי הָאֶפְשָׁרוּת שֶׁמְּדֻבָּר בְּאֶבֶן אוֹ בְּרֶגֶב עָפָר גָּדוֹל, טָעִיתִי", + "text": "הוּא מְנַעֵר רִגְבֵי אֲדָמָה מֵהַגְּלִימָה הַקְּרוּעָה שֶׁהוּא לוֹבֵשׁ, \"הַשּׁוֹטְרִים קָשְׁרוּ אוֹתְךָ", "source": "time_tunnel_82", - "match_method": "direct_prefix" + "match_method": "inflected" } ], "cloze": { - "text": "אִם לְרֶגַע עָלְתָה בְּדַעְתִּי הָאֶפְשָׁרוּת שֶׁמְּדֻבָּר בְּאֶבֶן אוֹ בְּרֶגֶב עָפָר גָּדוֹל, טָעִיתִי", - "cloze_word_start": 72, - "cloze_word_end": 80, + "text": "הוּא מְנַעֵר רִגְבֵי אֲדָמָה מֵהַגְּלִימָה הַקְּרוּעָה שֶׁהוּא לוֹבֵשׁ, \"הַשּׁוֹטְרִים קָשְׁרוּ אוֹתְךָ", + "cloze_word_start": 13, + "cloze_word_end": 20, "cloze_hint": null, "cloze_guid": "f8h]{u]GhY" }, @@ -1899461,6 +1909459,16 @@ "text": "עַל הָרִצְפָּה בְּמֶרְכַּז הַחֶדֶר הָיָה מֻנָּח אַרְגָּז רֵיק", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "מִתַּחַת לַמִּטָּה הָיָה אַרְגַּז מַצָּעִים, וְהִיא נִדְחֲקָה בֵּין שְׂמִיכוֹת וְכָרִים", + "source": "time_tunnel_75", + "match_method": "inflected" + }, + { + "text": "\" יִתָּכֵן שֶׁצְּבִי נִכְנַע וְהִצְבִּיעַ עַל אַרְגַּז הַמַּצָּעִים שֶׁנִּמְצָא מִתַּחַת לַמִּטָּה שֶׁלּוֹ", + "source": "time_tunnel_75", + "match_method": "inflected" } ], "cloze": { @@ -1899540,7 +1909548,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּנִּסָּיוֹן הַבָּא, אִשָּׁה בְּהֵרָיוֹן צָעֲקָה עָלֵינוּ, וּכְדֵי לֹא לְהַרְגִּיז אוֹתָהּ וִתַּרְנוּ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לָכֵן אָסוּר לָנוּ לְהַרְגִּיז אוֹתָם אוֹ לְעוֹרֵר אֶת הַחֲשָׁד שֶׁלָּהֶם, שֶׁמַּשֶּׁהוּ לֹא בְּסֵדֶר אִתָּנוּ", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "בַּנִּסָּיוֹן הַבָּא, אִשָּׁה בְּהֵרָיוֹן צָעֲקָה עָלֵינוּ, וּכְדֵי לֹא לְהַרְגִּיז אוֹתָהּ וִתַּרְנוּ", + "cloze_word_start": 72, + "cloze_word_end": 83, + "cloze_hint": null, + "cloze_guid": "B-k#12R.i[" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1900970,9 +1910999,9 @@ "match_method": "direct" }, { - "text": "״ אַבָּא שִׁלֵּב רֶגֶל עַל רֶגֶל", - "source": "time_tunnel_63", - "match_method": "direct" + "text": "בֵּי\"ת, תַּרְגּוּם חָדָשׁ מִטֶּבַע הַדְּבָרִים דּוֹחֵק אֶת רַגְלֵי הַתַּרְגּוּם הַקּוֹדֵם", + "source": "alice_wonderland", + "match_method": "inflected" } ], "cloze": { @@ -1901058,15 +1911087,15 @@ "examples": { "vetted": [ { - "text": "3\" שֶׁהָיָה הַמִּשְׁפָּט הָרִאשׁוֹן בְּחוֹבֶרֶת הַתַּרְגִּילִים שֶׁלָּהּ בְּצָרְפָתִית", - "source": "alice_wonderland", - "match_method": "inflected_prefix" + "text": "הַמַּדְרִיךְ שֶׁלָּהֶם מַדְגִּים תַּרְגִּילִים, וְהֵם מְבַצְּעִים", + "source": "time_tunnel_77", + "match_method": "inflected" } ], "cloze": { - "text": "3\" שֶׁהָיָה הַמִּשְׁפָּט הָרִאשׁוֹן בְּחוֹבֶרֶת הַתַּרְגִּילִים שֶׁלָּהּ בְּצָרְפָתִית", - "cloze_word_start": 48, - "cloze_word_end": 63, + "text": "הַמַּדְרִיךְ שֶׁלָּהֶם מַדְגִּים תַּרְגִּילִים, וְהֵם מְבַצְּעִים", + "cloze_word_start": 33, + "cloze_word_end": 46, "cloze_hint": null, "cloze_guid": "t@OuF:d6La" }, @@ -1901890,7 +1911919,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָיָה כַּמּוּבָן גַּם נַפְתָּלִי, שֶׁהַקְּרִיאָה עָצְרָה אֶת תַּרְגִּילִי הַכֹּשֶר שֶׁלּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הָיָה כַּמּוּבָן גַּם נַפְתָּלִי, שֶׁהַקְּרִיאָה עָצְרָה אֶת תַּרְגִּילִי הַכֹּשֶר שֶׁלּוֹ", + "cloze_word_start": 61, + "cloze_word_end": 73, + "cloze_hint": null, + "cloze_guid": "um>&H4SkT&" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1904544,17 +1914589,27 @@ "examples": { "vetted": [ { - "text": "\" אֲבָל לֹא הָיִיתִי רָגוּעַ", - "source": "little_prince", + "text": "כְּשֶׁאַתָּה רָגוּעַ, אַתָּה יָכוֹל לֵהָנוֹת מֵהָאֲוִיר הַצָּלוּל וּמֵהָרִחוּף", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "\" גַּל שָׁאַל כְּאִלּוּ רַק אֲנַחְנוּ לְחוּצִים וְהוּא לְגַמְרֵי רָגוּעַ", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "הֲרֵי הוּא הָיָה צָרִיךְ לִהְיוֹת רָגוּעַ, וְתִרְאוּ אוֹתוֹ", + "source": "time_tunnel_77", "match_method": "direct" } ], "cloze": { - "text": "\" אֲבָל לֹא הָיִיתִי רָגוּעַ", - "cloze_word_start": 21, - "cloze_word_end": 28, + "text": "כְּשֶׁאַתָּה רָגוּעַ, אַתָּה יָכוֹל לֵהָנוֹת מֵהָאֲוִיר הַצָּלוּל וּמֵהָרִחוּף", + "cloze_word_start": 13, + "cloze_word_end": 20, "cloze_hint": null, - "cloze_guid": "p3X2AtKAxM" + "cloze_guid": "Mytfk#EJzv" }, "rejected_count": 0 }, @@ -1905930,7 +1915985,16 @@ "רוֹגֵעַ" ], "confusables_guid": "sa9HI!qMe$", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַיָם נָח שָׁקֵט וְרוֹגֵעַ, כְּאִלוּ גַם הוּא עֲדַיִן לֹא הִתְעוֹרֵר מִשְׁנָתוֹ", + "source": "shell_story", + "match_method": "direct_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1906566,8 +1916630,8 @@ "match_method": "direct" }, { - "text": "\" לְפֶתַע נִמְלָא הַגֵּאוֹגְרָף הִתְרַגְּשׁוּת", - "source": "little_prince", + "text": "בְּבַת אַחַת תּוֹקֶפֶת אוֹתִי צְמַרְמֹרֶת שֶׁל הִתְרַגְּשׁוּת, וְהָעֲרָפֶל שֶׁבְּמוֹחִי מַתְחִיל לְהִתְבַּהֵר", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -1907615,7 +1917679,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲנִי הָרַסְתִּי מְשִׂימָה כָּל כָּךְ יָפֶָה, כָּל כָּךְ עֲצוּבָה, כָּל כָּךְ מְרַגֶּשֶׁת", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "\" אִמָּא מְחַיֶּכֶת כְּאִלּוּ הִיא נִזְכֶּרֶת בְּאֵרוּעַ מְרַגֵּשׁ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אֲנִי הָרַסְתִּי מְשִׂימָה כָּל כָּךְ יָפֶָה, כָּל כָּךְ עֲצוּבָה, כָּל כָּךְ מְרַגֶּשֶׁת", + "cloze_word_start": 78, + "cloze_word_end": 89, + "cloze_hint": null, + "cloze_guid": "O:(`qfI.}!" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1910547,7 +1920632,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְבַסּוֹף עָלָה עַל הַיַּבָּשָׁה וְצָנַח מֵרֹב עֲיֵפוּת אַרְצָה, הִנִּיחַ אֶת יָדָיו לִמְרַאֲשׁוֹתָיו וְנִרְדַּם תַּרְדֵּמָה עֲמֻקָּה", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "לְבַסּוֹף עָלָה עַל הַיַּבָּשָׁה וְצָנַח מֵרֹב עֲיֵפוּת אַרְצָה, הִנִּיחַ אֶת יָדָיו לִמְרַאֲשׁוֹתָיו וְנִרְדַּם תַּרְדֵּמָה עֲמֻקָּה", + "cloze_word_start": 113, + "cloze_word_end": 124, + "cloze_hint": null, + "cloze_guid": "CDyLS`ZZCa" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תַּרְדֵּמָה", @@ -1912957,6 +1923058,11 @@ "text": "זֶה הָיָה חִזָּיוֹן מַרְהִיב", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "כַּמָּה מֵהֶם הִרְהִיבוּ עֹז בְּנַפְשָׁם וְהֵחֵלּוּ יוֹרִים בּוֹ חִצִּים, שֶׁנִּנְעֲצוּ בְּפָנָיו וְיָדָיו כִּמְחָטִים דּוֹקְרוֹת", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1913766,16 +1923872,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "וְשָׁם, מִמּוּל, עָמַד הַבַּיִת הַגָּדוֹל, הַיָּפֶה וְכֻלּוֹ מָלֵא רָהִיטִים חֲדָשִׁים וְצַעֲצוּעִים נֶהְדָּרִים", + "source": "ilana", + "match_method": "inflected" + }, { "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "– יְלָדִים, – הִסְבִּירָה אֶסְתֵּר – בַּבַּיִת הֶחָדָשׁ יֵשׁ לָנוּ רָהִיטִים חֲדָשִׁים וְצַעֲצוּעִים חֲדָשִׁים", + "source": "ilana", + "match_method": "inflected" } ], "cloze": { - "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", - "cloze_word_start": 81, - "cloze_word_end": 87, + "text": "וְשָׁם, מִמּוּל, עָמַד הַבַּיִת הַגָּדוֹל, הַיָּפֶה וְכֻלּוֹ מָלֵא רָהִיטִים חֲדָשִׁים וְצַעֲצוּעִים נֶהְדָּרִים", + "cloze_word_start": 67, + "cloze_word_end": 76, "cloze_hint": null, "cloze_guid": "I1oB2DeS)`" }, @@ -1915295,7 +1925411,16 @@ "מִרְוָח" ], "confusables_guid": "byR6NjJhLB", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָאוּלָם שֶׁבּוֹ הָיָה מְרֻוָּח לְמַדַּי, וְגוּלִיבֶר יָכֹל לִשְׁכַּב בּוֹ", + "source": "gulliver", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1922656,7 +1932781,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" צָעֲקָה הַמַּלְכָּה מִמְּרוֹמֵי קוֹלָהּ", + "source": "alice_wonderland", + "match_method": "inflected_prefix" + }, + { + "text": "תּוּכְלוּ לְדַמְיֵן כַּמָּה הֻפְתְּעָה, כְּשֶׁהָאַרְנָב הַלָּבָן קָרָא בְּקוֹל, מִמְּרוֹמֵי קוֹלוֹ הַקָּטָן וְהַצַּוְחָנִי, אֶת הַשֵּׁם \"אַלִיס", + "source": "alice_wonderland", + "match_method": "inflected_prefix" + }, + { + "text": "מִשָּׁעָה לְשָׁעָה נָשָׂא הַגְּדִי עֵינָיו לַמָּרוֹם וְרָאָה אֶת הַכּוֹכָבִים מְפַזְּזִים 10 עַל פְּנֵי הַשָּׁמַיִם הַבְּהִירִים", + "source": "kid_on_mountain", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "\" צָעֲקָה הַמַּלְכָּה מִמְּרוֹמֵי קוֹלָהּ", + "cloze_word_start": 22, + "cloze_word_end": 33, + "cloze_hint": null, + "cloze_guid": "eOvR`l`,OH" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מָרוֹם", @@ -1922822,6 +1932973,11 @@ "text": "כָּאן הֵרִיעַ הַשַּׁרְקָן הַשֵּׁנִי, וְחִישׁ קַל דֻּכָּא", "source": "alice_wonderland", "match_method": "conjugated" + }, + { + "text": "כֵּהֶה־מַדָּאָה, הֵרִיעוּ לִכְבוֹדוֹ, כְּאוֹמְרִים: בָּרוּךְ תִּהְיֶה, הָאָדָם־הָהָר", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -1924030,9 +1934186,9 @@ "match_method": "conjugated" }, { - "text": "הֲמוֹן אֶפְשָׁרוּיוֹת מִתְרוֹצְצוֹת בְּמוֹחִי", - "source": "time_tunnel_82", - "match_method": "conjugated" + "text": "״ הוּא מַמְשִׁיךְ לְהִתְרוֹצֵץ, \"אֵיפֹה זוֹהֵיר", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1924477,6 +1934633,16 @@ "text": "מוּסְטָפָה עַצְמוֹ בָּרַח וְתוֹךְ כְּדֵי רִיצָה צָעַק בַּעֲרָבִית: ״רוּצוּ כֻּלָּם", "source": "time_tunnel_70", "match_method": "direct" + }, + { + "text": "גַּם תּוֹךְ כְּדֵי רִיצָה אֲנִי רוֹאֶה כַּמָּה יָפֶה כָּאן", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" אֲנִי צוֹעֵק לָהּ תּוֹךְ כְּדֵי רִיצָה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -1925771,6 +1935937,11 @@ "text": "״ \"אַל תִּדְאַג, הִיא רָזָה,״ אוֹרִי הִרְגִּיעַ אוֹתִי", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "רֹאשָׁהּ הָיָה עָטוּף בְּמִטְפַּחַת וְהִיא נִרְאֲתָה רָזָה כְּמוֹ שֶׁלֶד", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1926275,13 +1936446,13 @@ "match_method": "direct" }, { - "text": "הוּא נִרְאָה גָּבוֹהַּ מִמֶּנּוּ וְהַרְבֵּה יוֹתֵר רָזֶה וְרֹאשׁוֹ לֹא הָיָה מְכֻסֶּה אֶלָּא גָּלוּי", - "source": "time_tunnel_78", + "text": "לְחָיָיו שֶׁל הָאִישׁ שְׁקוּעוֹת, הוּא רָזֶה מְאוֹד", + "source": "time_tunnel_81", "match_method": "direct" }, { - "text": "דָּבָר אֶחָד בָּטוּחַ, גַּם לוֹ יֵשׁ פֵּאוֹת אֲרֻכּוֹת וְהוּא רָזֶה מְאוֹד וְחוֹבֵשׁ כִּפָּה מוּזָרָה", - "source": "time_tunnel_82", + "text": "כְּמוֹ שֶׁהוּא רָזֶה אֶצְלוֹ יָדַיִם חֲזָקוֹת, אַחחחחח", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -1928053,7 +1938224,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "חָצֵר רַחֲבַת יָדַיִם, עֲצֵי פְּרִי, דֶּשֶׁא מְטֻפָּח, פְּרָחִים", + "cloze_word_start": 6, + "cloze_word_end": 13, + "cloze_hint": null, + "cloze_guid": "D6=2vKevDA" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רְחָבָה", @@ -1928373,6 +1938560,11 @@ "text": "אֲפִלּוּ פָּנָסֵי רְחוֹב לֹא הֵאִירוּ", "source": "time_tunnel_75", "match_method": "direct" + }, + { + "text": "הַמּוֹשָׁבָה נִמְצֵאת סָמוּךְ לְהַר תָּבוֹר, וּכְשֶׁטִּיַּלְנוּ בָּהּ, צָעַדְנוּ לְאֹרֶךְ רְחוֹב הַמְּיַסְּדִים וְהִצְטַלַּמְנוּ לְיַד כִּכַּר הַשּׁוֹמֵר", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -1928460,15 +1938652,15 @@ "examples": { "vetted": [ { - "text": "\" הִרְכַּנְתִּי אֶת רֹאשִׁי בְּיֵאוּשׁ: מְגֻחָךְ לְחַפֵּשׂ בְּאֵר, סְתָם כָּךְ, בְּמֶרְחֲבֵי הַמִּדְבָּר הָעֲצוּמִים", - "source": "הנסיך הקטן", - "match_method": "inflected_prefix" + "text": "… אַךְ בְּנֵי־הָעִזִּים אוֹהֲבִים מֶרְחָב", + "source": "kid_on_mountain", + "match_method": "direct" } ], "cloze": { - "text": "\" הִרְכַּנְתִּי אֶת רֹאשִׁי בְּיֵאוּשׁ: מְגֻחָךְ לְחַפֵּשׂ בְּאֵר, סְתָם כָּךְ, בְּמֶרְחֲבֵי הַמִּדְבָּר הָעֲצוּמִים", - "cloze_word_start": 80, - "cloze_word_end": 92, + "text": "… אַךְ בְּנֵי־הָעִזִּים אוֹהֲבִים מֶרְחָב", + "cloze_word_start": 34, + "cloze_word_end": 41, "cloze_hint": null, "cloze_guid": "AfW.$nkUTc" }, @@ -1929438,20 +1939630,25 @@ "examples": { "vetted": [ { - "text": "הִיא רִחֲמָה עָלָיו בְּכָל מְאֹדָהּ", - "source": "alice_wonderland", + "text": "הוּא נִרְאֶה מְאוֹד אֻמְלָל, וַאֲנִי מְרַחֵם עָלָיו", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "\"אֲנִי מְרַחֵם עָלֶיךָ, אַתָּה נִרְאֶה שַׁבְרִירִי כָּל כָּךְ כָּאן, עַל סַלְעֵי הַגְּרָנִיט הָאֵלֶּה", - "source": "little_prince", + "text": "רִחֲמָה אִילָנָה מְאֹד עַל הַצְּרִיף הַיָּשָׁן", + "source": "ilana", + "match_method": "conjugated" + }, + { + "text": "הִיא רִחֲמָה עָלָיו בְּכָל מְאֹדָהּ", + "source": "alice_wonderland", "match_method": "conjugated" } ], "cloze": { - "text": "הִיא רִחֲמָה עָלָיו בְּכָל מְאֹדָהּ", - "cloze_word_start": 5, - "cloze_word_end": 12, + "text": "הוּא נִרְאֶה מְאוֹד אֻמְלָל, וַאֲנִי מְרַחֵם עָלָיו", + "cloze_word_start": 37, + "cloze_word_end": 44, "cloze_hint": null, "cloze_guid": "op[X7Q4g,+" }, @@ -1930765,6 +1940962,11 @@ "text": "הַסַּמָּל, שֶׁפָּנָיו הִלְבִּינוּ לְגַמְרֵי מֵהַגַּרְגִּירִים הַזְּעִירִים שֶׁעֲדַיִן רִחֲפוּ בָּאֲוִיר, נִעֵר אֶת הָאָבָק מִמִּכְנָסָיו", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "אָמְנָם \"שְׁבוּעַ הַזַּעַם\" חָלַף, אַךְ עַתָּה מְרַחֵף אִיּוּם חָדָשׁ שֶׁל 21 יְמֵי שְׁבִיתָה כְּלָלִית בָּרְצוּעָה", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -1933304,7 +1943506,7 @@ "match_method": "direct_prefix" }, { - "text": "מַבָּטוֹ הָיָה רְצִינִי וְשׁוֹטֵט אֵי־שָׁם בַּמֶּרְחַקִּים", + "text": "\" הָיִיתִי בְּמֶרְחַק עֶשְׂרִים מֶטְרִים מֵהַחוֹמָה, וַעֲדַיִן לֹא רָאִיתִי דָּבָר", "source": "little_prince", "match_method": "inflected_prefix" } @@ -1933398,9 +1943600,14 @@ "match_method": "conjugated" }, { - "text": "הֵם עָזְבוּ,״ הִיא הִצְבִּיעָה שְׂמֹאלָה, לַכִּווּן שֶׁהָיָה אָמוּר לְהַרְחִיק אוֹתָנוּ מֵהַמִּרְדָּף הַמּוּזָר שֶׁהִתְקַיֵּם מִיָּמִין לָנוּ", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "\" \"אֲנִי יוּבַל זֶהָבִי,\" הַיֶּלֶד מַרְחִיק אֶת הָאֹזֶן שֶׁלּוֹ מִמֶּנִּי, \"וְ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "וְאוּלַי הָרוּחַ הִרְחִיקָה אֶת הַמַּצְנְחִים לְמָקוֹם אַחֵר, וְרַק אֲנַחְנוּ נָחַתְנוּ כָּאן", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -1935461,6 +1945668,11 @@ "text": "כְּמוֹ כֶּלֶב רִחְרַחְתִּי אֶת הָאוֹתִיּוֹת הָאֲדֻמּוֹת", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "הִיא מְרַחְרַחַת אוֹתוֹ כְּאִלּוּ הוּא קַשׁ, וְ", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -1936204,6 +1946416,11 @@ "text": "הַמַּחְשָׁבוֹת שֶׁלִּי רוֹחֲשׁוֹת כְּמוֹ דְּבוֹרִים בְּכַוֶרֶת", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "עַל הֶעָלִים רָחֲשׁוּ הֲמוֹנֵי תּוֹלָעִים זְעִירוֹת", + "source": "silkworms", + "match_method": "conjugated" } ], "cloze": { @@ -1937296,7 +1947513,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בִּמְקוֹם לְהֵרָטֵב, הִתְמַלֵּאנוּ חוֹל, בָּלַעְנוּ חוֹל, נָשַׁמְנוּ חוֹל", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "בִּמְקוֹם לְהֵרָטֵב, הִתְמַלֵּאנוּ חוֹל, בָּלַעְנוּ חוֹל, נָשַׁמְנוּ חוֹל", + "cloze_word_start": 10, + "cloze_word_end": 19, + "cloze_hint": null, + "cloze_guid": "q5,SNmx@Mw" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1938150,6 +1948383,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הַגּוּף שֶׁלִּי רָטֹב מִזֵּעָה וְהַזֵּעָה מַדְבִּיקָה אֵלָיו אֶת גַּרְגִּירֵי הַחוֹל וּמְעוֹרֶרֶת בִּי צֹרֶךְ לְהִתְגָּרֵד", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "דְּבוֹרָה הִנִּיחָה אֶת הַמַּעְדֵּר, פָּתְחָה אֶת הַדֶּלֶת וְהִכְנִיסָה פְּנִימָה בָּחוּר צָעִיר נוֹסָף שֶׁהָיָה רָטֹב מִזֵּעָה", "source": "time_tunnel_70", @@ -1938157,9 +1948395,9 @@ } ], "cloze": { - "text": "דְּבוֹרָה הִנִּיחָה אֶת הַמַּעְדֵּר, פָּתְחָה אֶת הַדֶּלֶת וְהִכְנִיסָה פְּנִימָה בָּחוּר צָעִיר נוֹסָף שֶׁהָיָה רָטֹב מִזֵּעָה", - "cloze_word_start": 113, - "cloze_word_end": 118, + "text": "הַגּוּף שֶׁלִּי רָטֹב מִזֵּעָה וְהַזֵּעָה מַדְבִּיקָה אֵלָיו אֶת גַּרְגִּירֵי הַחוֹל וּמְעוֹרֶרֶת בִּי צֹרֶךְ לְהִתְגָּרֵד", + "cloze_word_start": 16, + "cloze_word_end": 21, "cloze_hint": null, "cloze_guid": "Ab5vtTDKw2" }, @@ -1941863,15 +1952101,15 @@ "examples": { "vetted": [ { - "text": "אוֹמְרִים שֶׁנְּשִׁימוֹת עֲמֻקּוֹת מְמַלְּאוֹת אֶת הָרֵאוֹת לֹא רַק בַּאֲוִיר אֶלָּא גַּם בְּאֹמֶץ", - "source": "time_tunnel_82", - "match_method": "inflected_prefix" + "text": "״ \"מָה פִּתְאוֹם רֵאוֹת", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { - "text": "אוֹמְרִים שֶׁנְּשִׁימוֹת עֲמֻקּוֹת מְמַלְּאוֹת אֶת הָרֵאוֹת לֹא רַק בַּאֲוִיר אֶלָּא גַּם בְּאֹמֶץ", - "cloze_word_start": 51, - "cloze_word_end": 59, + "text": "״ \"מָה פִּתְאוֹם רֵאוֹת", + "cloze_word_start": 17, + "cloze_word_end": 23, "cloze_hint": null, "cloze_guid": "em,vseh!Na" }, @@ -1943394,6 +1953632,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אַחֲרֵי־כֵן הֶעֱלוּ כַּמָּה חָבִיּוֹת יַיִן וְגַם אוֹתָן הֵרִיק", + "source": "gulliver", + "match_method": "conjugated" + }, { "text": "אָחִי הוּא אָרִיק אֶשְׁבָּל וְדַרְכּוֹ מַמְשִׁיךְ שֵׁם הַמִּשְׁפָּחָה שֶׁלָּכֶם,״ הִיא שָׁמְטָה אֶת יָדָהּ מִנִּיב", "source": "time_tunnel_silver_train", @@ -1943401,9 +1953644,9 @@ } ], "cloze": { - "text": "אָחִי הוּא אָרִיק אֶשְׁבָּל וְדַרְכּוֹ מַמְשִׁיךְ שֵׁם הַמִּשְׁפָּחָה שֶׁלָּכֶם,״ הִיא שָׁמְטָה אֶת יָדָהּ מִנִּיב", - "cloze_word_start": 11, - "cloze_word_end": 17, + "text": "אַחֲרֵי־כֵן הֶעֱלוּ כַּמָּה חָבִיּוֹת יַיִן וְגַם אוֹתָן הֵרִיק", + "cloze_word_start": 57, + "cloze_word_end": 63, "cloze_hint": null, "cloze_guid": "r1=q!Sva,6h" }, @@ -1959449,6 +1969713,11 @@ "text": "מִצַּד שֵׁנִי, לֹא הִרְגַּשְׁתִּי נוֹחַ לְרַמּוֹת אֶת הַקוֹלוֹנֶל, וְאַל תִּשְׁאֲלוּ אוֹתִי לָמָּה", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "אֲבָל הֵם חָשְׁדוּ שֶׁאֲנִי מְנַסֶּה לְרַמּוֹת אוֹתָם, כִּי לְדַעְתָּם לֹא יָכֹלְתִּי לְהַגִּיעַ הֵנָּה מִירוּשָׁלַיִם", + "source": "time_tunnel_77", + "match_method": "direct" } ], "rejected_count": 0 @@ -1960181,6 +1970450,11 @@ "text": "שְׁנֵי תַּרְמִילִים תְּלוּיִים בִּרְצוּעוֹת עַל הַכְּתֵפַיִם שֶׁלָּנוּ", "source": "time_tunnel_63", "match_method": "inflected" + }, + { + "text": "סוֹף דָּבָר מִחוּץ לַמְּעָרָה שֶׁלָּנוּ, הַמְּעָרָה שֶׁנִּמְצֵאת בַּהֹוֶה, מַמְתִּינִים לָנוּ תַּרְמִילֵי בֵּית הַסֵּפֶר", + "source": "time_tunnel_82", + "match_method": "inflected" } ], "cloze": { @@ -1961101,6 +1971375,16 @@ "text": "שָׁרוֹן הִפְעִילָה אֶת הָרַמְקוֹל, כְּדֵי שֶׁגַּם אֲנִי אוּכַל לִשְׁמוֹעַ אֶת הַשִּׂיחָה", "source": "time_tunnel_75", "match_method": "direct_prefix" + }, + { + "text": "\" קוֹל גַּבְרִי צָרוּד דִּבֵּר בְּעִבְרִית בָּרַמְקוֹל, \"הַקְשִׁיבוּ", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "הָיוּ בֵּינֵינוּ רַבִּים שֶׁהַקְּרִיאָה בָּרַמְקוֹל הֵעִירָה אוֹתָם מִשֵּׁנָה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -1964181,7 +1974465,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" הַכַּעַס שֶׁלִּי כָּל כָּךְ בּוֹעֵר, עַד שֶׁאֲפִלּוּ אִם אֲנַסֶּה לְרַסֵּן אֶת עַצְמִי, לֹא אַצְלִיחַ, \"בּוּז", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "cloze": { + "text": "\" הַכַּעַס שֶׁלִּי כָּל כָּךְ בּוֹעֵר, עַד שֶׁאֲפִלּוּ אִם אֲנַסֶּה לְרַסֵּן אֶת עַצְמִי, לֹא אַצְלִיחַ, \"בּוּז", + "cloze_word_start": 68, + "cloze_word_end": 76, + "cloze_hint": null, + "cloze_guid": "pus&YmZC/W" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1969258,6 +1979558,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "מָה הִרְעִיד כָּכָה אֶת הַחַדְרוֹן הַקָּטָן שֶׁבּוֹ אֲנַחְנוּ נִמְצָאִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, { "text": "אֲבָל פִּתְאוֹם הִרְעִידָה אוֹתִי צְעָקָה שֶׁחָדְרָה פְּנִימָה מֵאַחַד הָאֶשְׁנַבִּים הַקְּטַנִּים שֶׁהָיוּ בָּרֶפֶת: ״הָרוֹפֵא חוֹזֵר בְּרִיצָה", "source": "time_tunnel_70", @@ -1969265,9 +1979570,9 @@ } ], "cloze": { - "text": "אֲבָל פִּתְאוֹם הִרְעִידָה אוֹתִי צְעָקָה שֶׁחָדְרָה פְּנִימָה מֵאַחַד הָאֶשְׁנַבִּים הַקְּטַנִּים שֶׁהָיוּ בָּרֶפֶת: ״הָרוֹפֵא חוֹזֵר בְּרִיצָה", - "cloze_word_start": 16, - "cloze_word_end": 26, + "text": "מָה הִרְעִיד כָּכָה אֶת הַחַדְרוֹן הַקָּטָן שֶׁבּוֹ אֲנַחְנוּ נִמְצָאִים", + "cloze_word_start": 4, + "cloze_word_end": 12, "cloze_hint": null, "cloze_guid": "vXP;]+m5K}" }, @@ -1970478,7 +1980783,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בֶּטַח לֹא הָיְתָה לָכֶם כַּוָנָה רָעָה", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "רוּחַ רָעָה עָבְרָה עָלָיו", + "source": "kid_on_mountain", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בֶּטַח לֹא הָיְתָה לָכֶם כַּוָנָה רָעָה", + "cloze_word_start": 34, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "G)38}9hATo" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1972781,16 +1983107,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "לְפֶתַע נִשְׁמַע קוֹל רַעַם חָזָק", + "source": "gulliver", + "match_method": "direct" + }, { "text": "אַלִיס נָשְׂאָה אֶת עֵינֶיהָ, וְהִנֵּה עָמְדָה לִפְנֵיהֶן הַמַּלְכָּה, זְרוֹעוֹתֶיהָ שְׁלוּבוֹת, זוֹעֶפֶת כְּמוֹ סוּפַת רְעָמִים", "source": "alice_wonderland", "match_method": "inflected" + }, + { + "text": "וְאָז בְּיוֹם בָּהִיר אֶחָד, כְּמוֹ רַעַם, הַמֶּמְשָׁלָה הֶחְלִיטָה לְפַנּוֹת אֶת הָאֵזוֹר וּלְהַעֲבִיר אוֹתוֹ לְתוֹשָׁבֵי עַזָּה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "אַלִיס נָשְׂאָה אֶת עֵינֶיהָ, וְהִנֵּה עָמְדָה לִפְנֵיהֶן הַמַּלְכָּה, זְרוֹעוֹתֶיהָ שְׁלוּבוֹת, זוֹעֶפֶת כְּמוֹ סוּפַת רְעָמִים", - "cloze_word_start": 120, - "cloze_word_end": 128, + "text": "לְפֶתַע נִשְׁמַע קוֹל רַעַם חָזָק", + "cloze_word_start": 22, + "cloze_word_end": 27, "cloze_hint": null, "cloze_guid": "oj-ho(Wf(," }, @@ -1975240,15 +1985576,15 @@ "examples": { "vetted": [ { - "text": "אֲוִיר הַלַּיְלָה הָרַעֲנָן יַעֲשֶׂה לִי רַק טוֹב", - "source": "little_prince", - "match_method": "direct_prefix" + "text": "רַעֲנָן הוּא, נָעִים הוּא, עָרֵב הוּא… אֵין זֶה הֶחָצִיר הַיָּבֵשׁ אֲשֶׁר בֶּחָצֵר", + "source": "kid_on_mountain", + "match_method": "direct" } ], "cloze": { - "text": "אֲוִיר הַלַּיְלָה הָרַעֲנָן יַעֲשֶׂה לִי רַק טוֹב", - "cloze_word_start": 18, - "cloze_word_end": 27, + "text": "רַעֲנָן הוּא, נָעִים הוּא, עָרֵב הוּא… אֵין זֶה הֶחָצִיר הַיָּבֵשׁ אֲשֶׁר בֶּחָצֵר", + "cloze_word_start": 0, + "cloze_word_end": 7, "cloze_hint": null, "cloze_guid": "Db9s8?D&h4" }, @@ -1976554,6 +1986890,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "לְרֹעַ מַזָּלִי, גַּלְגַּל הַהַצָּלָה נִסְחַף דָּרוֹמָה", + "source": "time_tunnel_77", + "match_method": "direct_prefix" + }, { "text": "לְרֹעַ הַמַּזָּל, צָרְפַת רְחוֹקָה מִדַּי", "source": "little_prince", @@ -1976561,7 +1986902,7 @@ } ], "cloze": { - "text": "לְרֹעַ הַמַּזָּל, צָרְפַת רְחוֹקָה מִדַּי", + "text": "לְרֹעַ מַזָּלִי, גַּלְגַּל הַהַצָּלָה נִסְחַף דָּרוֹמָה", "cloze_word_start": 0, "cloze_word_end": 6, "cloze_hint": null, @@ -1976631,7 +1986972,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָרָהִיטִים לֹא טוֹבִים, הַקִּירוֹת סְדוּקִים, הַגַּג רָעוּעַ – נִבְנֶה גַּן חָדָשׁ", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "הָרָהִיטִים לֹא טוֹבִים, הַקִּירוֹת סְדוּקִים, הַגַּג רָעוּעַ – נִבְנֶה גַּן חָדָשׁ", + "cloze_word_start": 54, + "cloze_word_end": 61, + "cloze_hint": null, + "cloze_guid": "HDMcUH@Oj;" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -1976690,7 +1987047,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מוּלִי נִמְצָא בַּיִת עִם גַּג רְעָפִים אָדוֹם", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "מוּלִי נִמְצָא בַּיִת עִם גַּג רְעָפִים אָדוֹם", + "cloze_word_start": 31, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "CDnkgeeG?8" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רַעַף", @@ -1983758,7 +1994131,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּגָדָיו מְרֻפָּטִים, צְבָעָיו הַיָּפִים דָּהוּ וְכֻלּוֹ עָלוּב וּמִסְכֵּן", + "source": "ilana", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בְּגָדָיו מְרֻפָּטִים, צְבָעָיו הַיָּפִים דָּהוּ וְכֻלּוֹ עָלוּב וּמִסְכֵּן", + "cloze_word_start": 10, + "cloze_word_end": 21, + "cloze_hint": null, + "cloze_guid": "PLp2Nhud{!" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1985501,7 +1995890,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵן חָדְלוּ לֶאֱכֹל, אֲחָדוֹת הִתְנוֹעֲעוּ בִּכְבֵדוּת וַאֲחֵרוֹת הָיוּ שְׁרוּיוֹת בְּמִין רִפְיוֹן מוּזָר", + "source": "silkworms", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֵן חָדְלוּ לֶאֱכֹל, אֲחָדוֹת הִתְנוֹעֲעוּ בִּכְבֵדוּת וַאֲחֵרוֹת הָיוּ שְׁרוּיוֹת בְּמִין רִפְיוֹן מוּזָר", + "cloze_word_start": 91, + "cloze_word_end": 99, + "cloze_hint": null, + "cloze_guid": "qd9L0;01gX" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רִפְיוֹן", @@ -1987551,7 +1997956,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְהַמְטַפֵּס כִּסָּה אֶת הָעַמּוּדִים הַלְּבָנִים שֶׁל הַמִּרְפָּסוֹת בְּעָלָיו הַיְרֻקִּים וּבִפְרָחָיו הָאֲדֻמִּים", + "source": "ilana", + "match_method": "inflected_prefix" + }, + { + "text": "בִּקְשׁוּ מִן הַשְּׁבִילִים בַּגִּנָּה אֲבָנִים וְחוֹל וְהֵקִימוּ עַמּוּדִים יָפִים וּמִרְפָּסוֹת גְּדוֹלוֹת מִכָּל הַצְּדָדִים", + "source": "ilana", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וְהַמְטַפֵּס כִּסָּה אֶת הָעַמּוּדִים הַלְּבָנִים שֶׁל הַמִּרְפָּסוֹת בְּעָלָיו הַיְרֻקִּים וּבִפְרָחָיו הָאֲדֻמִּים", + "cloze_word_start": 55, + "cloze_word_end": 69, + "cloze_hint": null, + "cloze_guid": "PlXx6%Uvbt" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִרְפֶּסֶת", @@ -1988379,6 +1998805,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "אֲנִי נִשְׁעָן עַל הַמַּרְפֵּק וְעוֹצֵם עֵינַיִם", + "source": "time_tunnel_81", + "match_method": "direct_prefix" + }, + { + "text": "אֲנִי נִשְׁעָן עַל הַמַּרְפְּקִים שֶׁלִּי וּפוֹתֵחַ אֶת הַפֶּה", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + }, { "text": "\" \"זֶה לֹא הָיָה בְּאַשְׁמָתִי,\" אָמַר חָמֵשׁ בְּנִימָה זוֹעֶפֶת, \"שֶׁבַע הֵעִיף לִי אֶת הַמַּרְפֵּק", "source": "alice_wonderland", @@ -1988386,9 +1998822,9 @@ } ], "cloze": { - "text": "\" \"זֶה לֹא הָיָה בְּאַשְׁמָתִי,\" אָמַר חָמֵשׁ בְּנִימָה זוֹעֶפֶת, \"שֶׁבַע הֵעִיף לִי אֶת הַמַּרְפֵּק", - "cloze_word_start": 89, - "cloze_word_end": 100, + "text": "אֲנִי נִשְׁעָן עַל הַמַּרְפֵּק וְעוֹצֵם עֵינַיִם", + "cloze_word_start": 19, + "cloze_word_end": 30, "cloze_hint": null, "cloze_guid": "vUu4y|||``" }, @@ -1988882,7 +1999318,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מְרַפְרֵף הַפַּרְפָּר בִּכְנָפָיו, אַךְ אֵינֶנוּ עָף", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "מְרַפְרֵף הַפַּרְפָּר בִּכְנָפָיו, אַךְ אֵינֶנוּ עָף", + "cloze_word_start": 0, + "cloze_word_end": 9, + "cloze_hint": null, + "cloze_guid": "oc?-&8&]c+" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1990816,7 +2001268,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אִמָּא שֶׁלִּי נִרְצְחָה בַּשּׁוֹאָה, וְהוּא הִגִּיעַ עִם הַמִּשְׁפָּחָה שֶׁלּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אִמָּא שֶׁלִּי נִרְצְחָה בַּשּׁוֹאָה, וְהוּא הִגִּיעַ עִם הַמִּשְׁפָּחָה שֶׁלּוֹ", + "cloze_word_start": 15, + "cloze_word_end": 24, + "cloze_hint": null, + "cloze_guid": "c9+l>O&.9F" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -1992179,6 +2002647,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "לֹא לָמַדְתָּ מֵהַנִּסָּיוֹן שֶׁלָּנוּ בַּחֲזָרוֹת אָחוֹרָה בַּזְּמַן, שֶׁיֵּשׁ לָהּ רָצוֹן מִשֶּׁלָּהּ", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "לְמִנְהֶרֶת־הַזְּמַן יֵשׁ רָצוֹן מִשֶּׁלָּהּ וְהִיא מַחְלִיטָה מָתַי לְהַחְזִיר אוֹתָנוּ לֶעָבָר", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "בֵּינְתַיִם סַבָּא שֶׁל צְבִי יָצָא אֶל הֶחָצֵר וְהִסְתּוֹבֵב בָּהּ וְעַל פָּנָיו חִיּוּךְ שֶׁל שְׂבִיעוּת רָצוֹן", "source": "time_tunnel_75", @@ -1992186,9 +2002664,9 @@ } ], "cloze": { - "text": "בֵּינְתַיִם סַבָּא שֶׁל צְבִי יָצָא אֶל הֶחָצֵר וְהִסְתּוֹבֵב בָּהּ וְעַל פָּנָיו חִיּוּךְ שֶׁל שְׂבִיעוּת רָצוֹן", - "cloze_word_start": 107, - "cloze_word_end": 113, + "text": "לֹא לָמַדְתָּ מֵהַנִּסָּיוֹן שֶׁלָּנוּ בַּחֲזָרוֹת אָחוֹרָה בַּזְּמַן, שֶׁיֵּשׁ לָהּ רָצוֹן מִשֶּׁלָּהּ", + "cloze_word_start": 85, + "cloze_word_end": 91, "cloze_hint": null, "cloze_guid": "r_(y-Dv0$^" }, @@ -1994498,16 +2004976,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "שָׁכַחְתִּי לְצָרֵף רְצוּעַת עוֹר לַמַּחְסוֹם שֶׁצִּיַּרְתִּי לַנָּסִיךְ הַקָּטָן", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "הֵסַרְתִּי אֶת רְצוּעוֹת הַתַּרְמִיל מִגַּבִּי וּפָתַחְתִּי אוֹתוֹ", "source": "time_tunnel_63", "match_method": "inflected" + }, + { + "text": "מַייק תָּלָה אֶת רְצוּעַת הָרוֹבֶה עַל כְּתֵפוֹ", + "source": "time_tunnel_silver_train", + "match_method": "inflected" } ], "cloze": { - "text": "הֵסַרְתִּי אֶת רְצוּעוֹת הַתַּרְמִיל מִגַּבִּי וּפָתַחְתִּי אוֹתוֹ", - "cloze_word_start": 15, - "cloze_word_end": 24, + "text": "שָׁכַחְתִּי לְצָרֵף רְצוּעַת עוֹר לַמַּחְסוֹם שֶׁצִּיַּרְתִּי לַנָּסִיךְ הַקָּטָן", + "cloze_word_start": 20, + "cloze_word_end": 28, "cloze_hint": null, "cloze_guid": "PFlp?|~,F." }, @@ -1994657,15 +2005145,25 @@ "examples": { "vetted": [ { - "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", + "text": "הוֹשַׁטְתִּי אֶת יָדִי אֶל רִצְפַּת הַחֶדֶר וּמָשַׁכְתִּי אֶת הַחֵלֶק הָאַחֲרוֹן שֶׁל גּוּפִי", "source": "time_tunnel_78", - "match_method": "direct" + "match_method": "inflected" + }, + { + "text": "\" הִתְיַשַּׁבְתִּי עַל רִצְפַּת הַמַּרְתֵּף", + "source": "time_tunnel_75", + "match_method": "inflected" + }, + { + "text": "שָׁרוֹן הִתְיַשְּׁבָה עַל רִצְפַּת הַמִּנְהָרָה", + "source": "time_tunnel_78", + "match_method": "inflected" } ], "cloze": { - "text": "הָיוּ קִירוֹת וְהָיְתָה רִצְפָּה וְהָיָה גַּג וְהָיוּ חַלּוֹנוֹת, אֲבָל אֲפִלּוּ רָהִיט אֶחָד לֹא נִרְאָה", - "cloze_word_start": 24, - "cloze_word_end": 32, + "text": "הוֹשַׁטְתִּי אֶת יָדִי אֶל רִצְפַּת הַחֶדֶר וּמָשַׁכְתִּי אֶת הַחֵלֶק הָאַחֲרוֹן שֶׁל גּוּפִי", + "cloze_word_start": 27, + "cloze_word_end": 35, "cloze_hint": null, "cloze_guid": "i:O{,*cQyQ" }, @@ -1994744,7 +2005242,16 @@ "רָצִיף|Noun" ], "confusables_guid": "qnKh&:,t6t", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּרֶגַע שֶׁהָאוֹנִיָּה תִּקָּשֵׁר אֶל הָרְצִיף, תִּתְבַּקְּשׁוּ לָרֶדֶת מִמֶּנָּה וְלַעֲבוֹר אֶל הָאוֹנִיּוֹת שֶׁמַּמְתִּינוֹת לָכֶם שָׁם", + "source": "time_tunnel_76", + "match_method": "inflected_prefix" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רָצִיף", @@ -1998749,24 +2009256,19 @@ "examples": { "vetted": [ { - "text": "בְּיוֹם חֲמִישִׁי הֵם רוֹקְדִים עִם נַעֲרוֹת הַכְּפָר", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "הַקְּצָווֹת שֶׁל הַשָּׂפָם שֶׁל בַּעַל הַשָּׂפָם רוֹקְדִים כְּשֶׁהוּא מְדַבֵּר, וְזֶה מַמָּשׁ קֶטַע", - "source": "מנהרת הזמן 82", - "vetted": true + "text": "רַבִּים מֵהֶם עָלוּ עַל חָזֵהוּ וְהֵחֵלּוּ מְרַקְּדִים וּמְכַרְכְּרִים עָלָיו בִּמְשׁוּבָה", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { - "text": "בְּיוֹם חֲמִישִׁי הֵם רוֹקְדִים עִם נַעֲרוֹת הַכְּפָר", - "cloze_word_start": null, - "cloze_word_end": null, + "text": "רַבִּים מֵהֶם עָלוּ עַל חָזֵהוּ וְהֵחֵלּוּ מְרַקְּדִים וּמְכַרְכְּרִים עָלָיו בִּמְשׁוּבָה", + "cloze_word_start": 43, + "cloze_word_end": 54, "cloze_hint": null, - "cloze_guid": "O714gsKyu(" + "cloze_guid": "gk}hnb~O~)" }, - "rejected_count": 1 + "rejected_count": 0 }, "noun_inflection": null, "conjugation": { @@ -2001097,7 +2011599,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "סְבִיב הַדְּמוּת שֶׁלּוֹ נִרְקְמוּ הֲמוֹן אַגָּדוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "סְבִיב הַדְּמוּת שֶׁלּוֹ נִרְקְמוּ הֲמוֹן אַגָּדוֹת", + "cloze_word_start": 25, + "cloze_word_end": 34, + "cloze_hint": null, + "cloze_guid": "G[pzAYC.h^" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2001522,7 +2012040,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הִיא צִיְּרָה צִיּוּרִים וְשָׁלְחָה וּכְרִיכָה יָפֶה לְסֵפֶר רָקְמָה וְשָׁלְחָה, וְגַם תִּיק קָטָן תָּפְרָה לוֹ בְּעַצְמָהּ", + "source": "ilana", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הִיא צִיְּרָה צִיּוּרִים וְשָׁלְחָה וּכְרִיכָה יָפֶה לְסֵפֶר רָקְמָה וְשָׁלְחָה, וְגַם תִּיק קָטָן תָּפְרָה לוֹ בְּעַצְמָהּ", + "cloze_word_start": 61, + "cloze_word_end": 68, + "cloze_hint": null, + "cloze_guid": "B.KY~*nz(," + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2002965,6 +2013499,11 @@ "text": "בָּלַטְנוּ מְאוֹד עַל רֶקַע הַשְּׁמָמָה, וְהָאִישׁ שֶׁרָכַב בָּרֹאשׁ הִבְחִין בָּנוּ", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "עַל רֶקַע הַשָּׂדוֹת נִרְאוּ הַבָּתִּים זְעִירִים עַד מְאֹד; בְּעֵינָיו הָיְתָה זוֹ עִיר־צַעֲצוּעִים", + "source": "gulliver", + "match_method": "direct" } ], "cloze": { @@ -2004333,8 +2014872,13 @@ "match_method": "direct" }, { - "text": "בַּלַּיְלָה הָאַחֲרוֹן שֶׁל עֵדֶן בִּירוּשָׁלַיִם, הוּא הֶחְרִים אֶת הוֹרָיו וּבִקֵּשׁ רְשׁוּת לִישׁוֹן אֶצְלִי", - "source": "time_tunnel_70", + "text": "״שֶׁלֹּא תָּעֵז לְהַשְׁמִיעַ קוֹל עַד שֶׁנִּתֵּן לְךָ רְשׁוּת,\" הַיֶּלֶד אוֹמֵר", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "רִאשׁוֹנָה: הָאָדָם־הָהָר הִתְחַיֵּב לֹא לַעֲזֹב אֶת אַרְצֵנוּ לְלֹא נְטִילַת רְשׁוּת מֵאֵת הַמֶּלֶךְ", + "source": "gulliver", "match_method": "direct" } ], @@ -2005334,7 +2015878,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּכָל בְּאֵר־טוּבְיָה יֵשׁ לָנוּ רַק חָבֵר אֶחָד עִם רוֹבֶה בְּרִשְׁיוֹן", + "source": "time_tunnel_70", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "בְּכָל בְּאֵר־טוּבְיָה יֵשׁ לָנוּ רַק חָבֵר אֶחָד עִם רוֹבֶה בְּרִשְׁיוֹן", + "cloze_word_start": 61, + "cloze_word_end": 73, + "cloze_hint": null, + "cloze_guid": "b*^+D&)OAO" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רִשָּׁיוֹן", @@ -2006850,6 +2017410,16 @@ "text": "\"וְאִלּוּ אֶצְלֵנוּ הָיָה רָשׁוּם בִּקְצֵה הָרְשִׁימָה, 'הַעֲשָׁרָה – צָרְפָתִית, מוּזִיקָה, וְגַם כְּבִיסָה'", "source": "alice_wonderland", "match_method": "direct_prefix" + }, + { + "text": "\"שֵׁם מִשְׁפָּחָה,\" הַבָּחוּר חוֹזֵר וְהַפַּעַם בְּיִידִישׁ, \"אֲנִי צָרִיךְ לִבְדּוֹק אִם אַתֶּם בָּרְשִׁימָה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" + }, + { + "text": "מַבָּטוֹ מִתְעַכֵּב עַל הַשֵּׁמוֹת שֶׁמּוֹפִיעִים בָּרְשִׁימָה", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], "cloze": { @@ -2007035,7 +2017605,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "חוּג הַג'וּדוֹ הִזְמִין אוֹתָם לָבוֹא לְהֵרָשֵׁם", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "חוּג הַג'וּדוֹ הִזְמִין אוֹתָם לָבוֹא לְהֵרָשֵׁם", + "cloze_word_start": 38, + "cloze_word_end": 48, + "cloze_hint": null, + "cloze_guid": "lL@p,c1!of" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2012021,7 +2022607,23 @@ "shared_roots": [], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "דּוֹמֶה כְּאִלּוּ נִלְכַּד בְּרֶשֶׁת גְּדוֹלָה", + "source": "gulliver", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "דּוֹמֶה כְּאִלּוּ נִלְכַּד בְּרֶשֶׁת גְּדוֹלָה", + "cloze_word_start": 27, + "cloze_word_end": 36, + "cloze_hint": null, + "cloze_guid": "cf76j@s{6z" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "רֶשֶׁת", @@ -2012090,7 +2022692,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאַבָּא הִסְבִּיר: “לְאַחַר שֶׁטוֹבְלִים פְּקַעַת בְּמַיִם רוֹתְחִים מֵת הַגֹלֶם, וְאָז טוֹוִים אֶת חוּטֵי הַמֶשִׁי", + "source": "silkworms", + "match_method": "conjugated" + }, + { + "text": "’ אַחַר־כָּךְ הִקְדִיר פָּנָיו וְאָמַר: “לֹא אַרְשֶׁה כִּי יַטְבִּילוּ אֶת הַפְּקָעוֹת שֶׁלִּי בְּמַיִם רוֹתְחִים", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "וְאַבָּא הִסְבִּיר: “לְאַחַר שֶׁטוֹבְלִים פְּקַעַת בְּמַיִם רוֹתְחִים מֵת הַגֹלֶם, וְאָז טוֹוִים אֶת חוּטֵי הַמֶשִׁי", + "cloze_word_start": 60, + "cloze_word_end": 69, + "cloze_hint": null, + "cloze_guid": "c#>c>hb3+8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2012940,7 +2023563,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ אֲנִי רוֹתֵחַ עָלֶיהָ, \"אֵיזֶה שִׁיר בָּרֹאשׁ שֶׁלָּךְ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "״ אֲנִי רוֹתֵחַ עָלֶיהָ, \"אֵיזֶה שִׁיר בָּרֹאשׁ שֶׁלָּךְ", + "cloze_word_start": 8, + "cloze_word_end": 15, + "cloze_hint": null, + "cloze_guid": "FK/v,!rIhs" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -2015498,6 +2026137,11 @@ "text": "גַּם הַפְּרָדוֹת וְהַסּוּסִים שֶׁאֲלֵיהֶם נִרְתְּמוּ הָעֲגָלוֹת הָיוּ גְּנוּבִים", "source": "time_tunnel_70", "match_method": "conjugated" + }, + { + "text": "אֶלֶף וַחֲמֵשׁ מֵאוֹת סוּסִים שֶׁגָּדְלָם כְּעַכְבָּרִים נִרְתְּמוּ בָּהּ – וְהֵם מְשָׁכוּהָ בַּדֶּרֶךְ הָעוֹלָה לְבִירַת הַמֶּלֶךְ", + "source": "gulliver", + "match_method": "conjugated" } ], "cloze": { @@ -2016373,7 +2027017,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָעִתּוֹנָאִים שֶׁמְּלַוִים אֶת אֶקְסוֹדוּס וּמְצַלְּמִים כָּל דָּבָר, לֹא מַרְתִּיעִים אוֹתָם", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הָעִתּוֹנָאִים שֶׁמְּלַוִים אֶת אֶקְסוֹדוּס וּמְצַלְּמִים כָּל דָּבָר, לֹא מַרְתִּיעִים אוֹתָם", + "cloze_word_start": 75, + "cloze_word_end": 87, + "cloze_hint": null, + "cloze_guid": "blc=Y5tyrZ" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2018056,6 +2028716,11 @@ "source": "time_tunnel_78", "match_method": "conjugated" }, + { + "text": "בַּהַתְחָלָה עַפְתִּי בָּאֲוִיר, כְּאִלּוּ הַשָּׁמַיִם שָׁאֲבוּ אוֹתִי", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, { "text": "מִנְהֶרֶת־הַזְּמַן שָׁאֲבָה אוֹתָן בַּשְּׁנִיָּה שֶׁהָאֶצְבַּע הַיְּמָנִית שֶׁל כָּל אַחַת מֵהֶן נָגְעָה בְּסֵפֶר הַתּוֹרָה", "source": "time_tunnel_75", @@ -2018505,6 +2029170,11 @@ "text": "וְעוֹד לִפְנֵי שֶׁהֵבַנְתִּי לְאָן נִשְׁאַבְתִּי, הִסְתַּנְוַרְתִּי מֵאוֹר הַשֶּׁמֶשׁ", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "כֵּיוָן שֶׁאֲנַחְנוּ לֹא הָיִינוּ קְשׁוּרִים, נִשְׁאַבְנוּ בְּכוֹחַ לְכִווּן הַפֶּתַח", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { @@ -2019079,13 +2029749,13 @@ "match_method": "conjugated" }, { - "text": "\" שָׁאַג הַגְּרִיפוֹן בְּכָל כּוֹחוֹ", - "source": "alice_wonderland", + "text": "״ הוּא שׁוֹאֵג, \"לְכָל הָרוּחוֹת, אֵיפֹה זוֹ־הֵי־רררררר", + "source": "time_tunnel_81", "match_method": "conjugated" }, { - "text": "\" הַשּׁוֹטֵר שׁוֹאֵג עָלַי בַּעֲרָבִית", - "source": "time_tunnel_82", + "text": "״ אֵלִיָּהוּ שׁוֹאֵג, \"אַל תְּבַזְבְּזוּ אַף רֶגַע", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -2019944,25 +2030614,25 @@ "examples": { "vetted": [ { - "text": "״אַתָּה חוֹשֵׁב שֶׁאֲנַחְנוּ בַּתְּקוּפָה שֶׁל הַשּׁוֹאָה", - "source": "time_tunnel_63", - "match_method": "direct_prefix" + "text": "\" \"כֻּלָּנוּ שוֹרְדֵי שׁוֹאָה,\" הוּא עוֹנֶה לָהּ, \"כֻּלָּנוּ נוֹלַדְנוּ בַּגּוֹלָה", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "\"הִיטְלֶר הֵבִיא לַשּׁוֹאָה,״ אֲנִי מְדַבֵּר לְאַט, \"אֲבָל הוּא לֹא הָיָה מֶלֶךְ", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "רַק בְּמַהֲלַךְ הַשֵּׁרוּת גִּלִּינוּ שֶׁיֵּשׁ לֹא מְעַט שׂוֹרְדֵי שׁוֹאָה שֶׁנִּהְיוּ לְטַיָּסִים", + "source": "time_tunnel_76", + "match_method": "direct" }, { - "text": "יוֹצֵא מִזֶּה שֶׁכָּל הַחֲנֻכִּיּוֹת שֶׁהֻחְבְּאוּ בַּשּׁוֹאָה כְּדֵי שֶׁהַנָּאצִים לֹא יִמְצְאוּ אוֹתָן, לֹא קְשׁוּרוֹת לַחִידָה", - "source": "time_tunnel_78", - "match_method": "direct_prefix" + "text": "הֲרֵי אֲנִי לֹא עָבַרְתִּי מָה שֶׁהָאֲחֵרִים עָבְרוּ, אֲנִי לֹא שׂוֹרֵד שׁוֹאָה", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { - "text": "״אַתָּה חוֹשֵׁב שֶׁאֲנַחְנוּ בַּתְּקוּפָה שֶׁל הַשּׁוֹאָה", - "cloze_word_start": 47, - "cloze_word_end": 57, + "text": "\" \"כֻּלָּנוּ שוֹרְדֵי שׁוֹאָה,\" הוּא עוֹנֶה לָהּ, \"כֻּלָּנוּ נוֹלַדְנוּ בַּגּוֹלָה", + "cloze_word_start": 22, + "cloze_word_end": 29, "cloze_hint": null, "cloze_guid": "HY{,E*6N;l" }, @@ -2020530,6 +2031200,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\"  פֶּרֶק ב שֶׁבּוֹ נִשְׁאֶלֶת הַשְּׁאֵלָה: אֵיךְ מַעֲבִירִים בַּקָּשָׁה לְמִנְהֶרֶת־הַזְּמַן", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "״  פֶּרֶק ב שֶׁבּוֹ נִשְׁאֶלֶת הַשְּׁאֵלָה: נֵלֵךְ לַמִּנְהָרָה אוֹ נְוַתֵּר עַל הַתַּחֲרוּת", "source": "time_tunnel_78", @@ -2020537,7 +2031212,7 @@ } ], "cloze": { - "text": "״  פֶּרֶק ב שֶׁבּוֹ נִשְׁאֶלֶת הַשְּׁאֵלָה: נֵלֵךְ לַמִּנְהָרָה אוֹ נְוַתֵּר עַל הַתַּחֲרוּת", + "text": "\"  פֶּרֶק ב שֶׁבּוֹ נִשְׁאֶלֶת הַשְּׁאֵלָה: אֵיךְ מַעֲבִירִים בַּקָּשָׁה לְמִנְהֶרֶת־הַזְּמַן", "cloze_word_start": 21, "cloze_word_end": 31, "cloze_hint": null, @@ -2021148,7 +2031823,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם חָשְׁבוּ שֶׁעֲקִירַת אֲנָשִׁים מִבָּתֵּיהֶם דּוֹרֶשֶׁת עֲרִיכַת מִשְׁאַל עַם, כְּדֵי לָדַעַת מָה הָאֶזְרָחִים חוֹשְׁבִים", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "הֵם חָשְׁבוּ שֶׁעֲקִירַת אֲנָשִׁים מִבָּתֵּיהֶם דּוֹרֶשֶׁת עֲרִיכַת מִשְׁאַל עַם, כְּדֵי לָדַעַת מָה הָאֶזְרָחִים חוֹשְׁבִים", + "cloze_word_start": 68, + "cloze_word_end": 76, + "cloze_hint": null, + "cloze_guid": "qi5MKpvb-r" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִשְׁאָל", @@ -2022323,6 +2033014,16 @@ "text": "שָׁאַפְתִּי אֲוִיר לוֹהֵט לְרֵאוֹתַי, וְצָעַקְתִּי בִּמְלוֹא עָצְמַת הַקּוֹל שֶׁלִּי", "source": "time_tunnel_63", "match_method": "conjugated" + }, + { + "text": "אֲנִי מַרְגִּישׁ שֶׁאִם אֶשְׁאַף אָבָק, אֵחָנֵק", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "שָׁרוֹן שׁוֹאֶפֶת שְׁאִיפָה עֲמֻקָּה", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2023181,7 +2033882,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "שָׁרוֹן שׁוֹאֶפֶת שְׁאִיפָה עֲמֻקָּה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "שָׁרוֹן שׁוֹאֶפֶת שְׁאִיפָה עֲמֻקָּה", + "cloze_word_start": 18, + "cloze_word_end": 27, + "cloze_hint": null, + "cloze_guid": "C<+2G~tXI," + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁאִיפָה", @@ -2024696,7 +2035413,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַגְּדִי הַלָּבָן חָגַר שְׁאֵרִית כֺּחוֹ", + "source": "kid_on_mountain", + "match_method": "direct" + } + ], + "cloze": { + "text": "הַגְּדִי הַלָּבָן חָגַר שְׁאֵרִית כֺּחוֹ", + "cloze_word_start": 24, + "cloze_word_end": 33, + "cloze_hint": null, + "cloze_guid": "z6pT07].bW" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁאֵרִית", @@ -2029020,7 +2039753,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "עַתָּה הָיוּ מְכַלוֹת בְּקַלוּת רַבָּה עָלִים גְדוֹלִים בְּיוֹתֵר וְלֹא יָדְעוּ שָׂבְעָה", + "source": "silkworms", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "עַתָּה הָיוּ מְכַלוֹת בְּקַלוּת רַבָּה עָלִים גְדוֹלִים בְּיוֹתֵר וְלֹא יָדְעוּ שָׂבְעָה", + "cloze_word_start": 80, + "cloze_word_end": 88, + "cloze_hint": null, + "cloze_guid": "nwe<>x+pb5" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2029515,7 +2040264,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"אִם תַּסְכִּימִי, אֲנַחְנוּ יְכוֹלִים לְהִשָּׁבַע לָךְ שְׁבוּעַת אֱמוּנִים", + "source": "time_tunnel_81", + "match_method": "inflected" + }, + { + "text": "כְּשֶׁאַתָּה חוֹזֵר לִתְקוּפָה שֶׁבָּהּ עֲדַיִן לֹא נוֹלַדְתָּ, כָּל שְׁבוּעָה שֶׁלְּךָ הִיא בְּעֶצֶם לֹא שְׁבוּעָה אֲמִתִּית", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "״ \"אִם תַּסְכִּימִי, אֲנַחְנוּ יְכוֹלִים לְהִשָּׁבַע לָךְ שְׁבוּעַת אֱמוּנִים", + "cloze_word_start": 58, + "cloze_word_end": 67, + "cloze_hint": null, + "cloze_guid": "q`oKx|9Ow=" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁבוּעָה", @@ -2029594,6 +2040364,16 @@ "text": "בְּחַיַּי, לֹא עָצַמְתִּי עַיִן לָרֶגַע כְּבָר שְׁלוֹשָׁה שָׁבוּעוֹת", "source": "alice_wonderland", "match_method": "inflected" + }, + { + "text": "\"שְׁלוֹשָׁה שָׁבוּעוֹת הָיִינוּ עַל שְׁלוֹשׁ אוֹנִיּוֹת הַגֵּרוּשׁ בַּנָּמֵל הַצָּרְפָתִי", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "עַד לִפְנֵי שָׁבוּעַ אָסַף בּוּלִים, מַמָשׁ הָיָה לָהוּט אַחֲרֵיהֶם", + "source": "silkworms", + "match_method": "direct" } ], "cloze": { @@ -2029815,13 +2040595,13 @@ "match_method": "conjugated" }, { - "text": "״ נִשְׁבָּע לָכֶם שֶׁלֹּא הֵבַנְתִּי", - "source": "time_tunnel_70", + "text": "\" נִשְׁבָּע לָכֶם שֶׁאֲנִי מַרְגִּישׁ שֶׁאֲנִי עוֹמֵד לְהִשְׁתַּגֵּעַ מֵרֹב בִּלְבּוּל", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "אֲנִי נִשְׁבָּע לָכֶם שֶׁרָאִיתִי אוֹתָם", - "source": "time_tunnel_70", + "text": "״ \"עַכְשָׁיו אַתָּה,״ הָאִשָּׁה פּוֹנָה אֵלַי אַחֲרֵי שֶׁשָּׁרוֹן נִשְׁבַּעַת", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -2031847,8 +2042627,8 @@ "match_method": "direct" }, { - "text": "הָעֶרֶב בַּשָּׁעָה שֶׁבַע וְאַרְבָּעִים בְּעֵרֶךְ", - "source": "little_prince", + "text": "\"שֶׁבַע,\" הִיא אוֹמֶרֶת לַיֶּלֶד, \"זֶה לֹא יַסְפִּיק", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -2034859,7 +2045639,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵן נִרְאוֹת כְּמוֹ חֵלֶק מִגַּן מִשְׂחָקִים, עֻבְדָּה שֶׁנִּצָּב כָּאן עַמּוּד שָׁבוּר שֶׁל נַדְנֵדָה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֵן נִרְאוֹת כְּמוֹ חֵלֶק מִגַּן מִשְׂחָקִים, עֻבְדָּה שֶׁנִּצָּב כָּאן עַמּוּד שָׁבוּר שֶׁל נַדְנֵדָה", + "cloze_word_start": 80, + "cloze_word_end": 87, + "cloze_hint": null, + "cloze_guid": "g+v{xdtRU6" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": null, "adjective_inflection": { @@ -2036391,8 +2047187,13 @@ "match_method": "conjugated" }, { - "text": "אֲנִי לֹא אֲנַצֵּל אֶת תּוֹרִי עַד שֶׁאָבִין מָה הִשְׁתַּבֵּשׁ וּמַדּוּעַ נֹגַהּ לֹא נֶעֶלְמָה", - "source": "time_tunnel_75", + "text": "אוּלַי גַּם הַשְּׁמִיעָה שֶׁלִּי הִשְׁתַּבְּשָׁה כִּי אָזְנַי הִתְמַלְּאוּ חוֹל", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "אִם אֶתְעַכֵּב, כָּל הַתָּכְנִית שֶׁלִּי תִּשְׁתַּבֵּשׁ", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -2037576,7 +2048377,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אָמְנָם \"שְׁבוּעַ הַזַּעַם\" חָלַף, אַךְ עַתָּה מְרַחֵף אִיּוּם חָדָשׁ שֶׁל 21 יְמֵי שְׁבִיתָה כְּלָלִית בָּרְצוּעָה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "אָמְנָם \"שְׁבוּעַ הַזַּעַם\" חָלַף, אַךְ עַתָּה מְרַחֵף אִיּוּם חָדָשׁ שֶׁל 21 יְמֵי שְׁבִיתָה כְּלָלִית בָּרְצוּעָה", + "cloze_word_start": 84, + "cloze_word_end": 93, + "cloze_hint": null, + "cloze_guid": "e!<1(`dfL0" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁבִיתָה", @@ -2041093,6 +2051910,11 @@ "source": "time_tunnel_silver_train", "match_method": "direct" }, + { + "text": "\" גֶּבֶר אֶחָד, כַּנִּרְאֶה בַּעֲלָהּ, הִשְׁתּוֹלֵל כְּמוֹ מְשֻׁגָּע, \"פַּנּוּ דֶּרֶךְ", + "source": "time_tunnel_76", + "match_method": "direct" + }, { "text": "' וְהֵם יַחְשְׁבוּ שֶׁאַתָּה מְשֻׁגָּע", "source": "little_prince", @@ -2041176,13 +2051998,13 @@ "match_method": "conjugated" }, { - "text": "\" אֲנִי צוֹעֵק, \"הִשְׁתַּגַּעְתְּ לְגַמְרֵי", - "source": "time_tunnel_82", - "match_method": "conjugated" + "text": "\" נִשְׁבָּע לָכֶם שֶׁאֲנִי מַרְגִּישׁ שֶׁאֲנִי עוֹמֵד לְהִשְׁתַּגֵּעַ מֵרֹב בִּלְבּוּל", + "source": "time_tunnel_77", + "match_method": "direct" }, { - "text": "״ יְהוּדִית צָעֲקָה בִּכְאֵב, \"הִשְׁתַּגַּעְתָּ", - "source": "time_tunnel_silver_train", + "text": "כָּל הַנּוֹכְחִים פָּרְצוּ בִּצְחוֹק גָּדוֹל, “בֶּן־הַמֶּלֶךְ הִשְׁתַּגֵּעַ", + "source": "tree_dress", "match_method": "conjugated" } ], @@ -2042571,7 +2053393,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "יָכוֹל לִהְיוֹת שֶׁמִּישֶׁהוּ מְשַׁגֵּר פְּגָזִים לַכִּווּן שֶׁלָּנוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "יָכוֹל לִהְיוֹת שֶׁמִּישֶׁהוּ מְשַׁגֵּר פְּגָזִים לַכִּווּן שֶׁלָּנוּ", + "cloze_word_start": 30, + "cloze_word_end": 39, + "cloze_hint": null, + "cloze_guid": "vE]yUOI?~?" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2045420,15 +2056258,25 @@ "examples": { "vetted": [ { - "text": "כַּאֲשֶׁר הִתְכּוֹפַפְתִּי וּמִשַּׁשְׁתִּי אֶת סְבִיבָתִי כְּמוֹ עִוֵר, קְצוֹת אֶצְבְּעוֹתַי נָגְעוּ בְּשִׂיחִים וְנִחַשְׁתִּי שֶׁאֲנִי נִמְצָא בְּשָׂדֶה", - "source": "time_tunnel_75", - "match_method": "direct_prefix" + "text": "אַתָּה רוֹאֶה שָׁם אֶת שְׂדוֹת הַחִטָּה", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "שְׂדוֹת הַחִטָּה לֹא מַזְכִּירִים לִי כְּלוּם", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "״הַעֲבִירוּ פְּקֻדָּה לִקְצִין הַפְּלֻגָּה בָּרֶנְס לְהַפְגִּיז אֶת שְׂדֵה הַקּוֹצִים בַּמִּדְרוֹן", + "source": "time_tunnel_63", + "match_method": "inflected" } ], "cloze": { - "text": "כַּאֲשֶׁר הִתְכּוֹפַפְתִּי וּמִשַּׁשְׁתִּי אֶת סְבִיבָתִי כְּמוֹ עִוֵר, קְצוֹת אֶצְבְּעוֹתַי נָגְעוּ בְּשִׂיחִים וְנִחַשְׁתִּי שֶׁאֲנִי נִמְצָא בְּשָׂדֶה", - "cloze_word_start": 144, - "cloze_word_end": 153, + "text": "אַתָּה רוֹאֶה שָׁם אֶת שְׂדוֹת הַחִטָּה", + "cloze_word_start": 23, + "cloze_word_end": 30, "cloze_hint": null, "cloze_guid": "oKv[d3t=X)" }, @@ -2046905,6 +2057753,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "הָאֹכֶל הָיָה דַּוְקָא טָעִים, וְהַבְּרִיטִים הִשְׁתַּדְּלוּ לִהְיוֹת נֶחְמָדִים", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "לְעֻמַּת זֹאת, כְּשֶׁצִּיַּרְתִּי אֶת עֲצֵי הַבָּאוֹבַּבּ, הִשְׁתַּדַּלְתִּי בִּמְיֻחָד כִּי הִרְגַּשְׁתִּי שֶׁמְּדֻבָּר בְּמַצַּב חֵרוּם", "source": "little_prince", @@ -2046917,9 +2057770,9 @@ } ], "cloze": { - "text": "לְעֻמַּת זֹאת, כְּשֶׁצִּיַּרְתִּי אֶת עֲצֵי הַבָּאוֹבַּבּ, הִשְׁתַּדַּלְתִּי בִּמְיֻחָד כִּי הִרְגַּשְׁתִּי שֶׁמְּדֻבָּר בְּמַצַּב חֵרוּם", - "cloze_word_start": 59, - "cloze_word_end": 76, + "text": "הָאֹכֶל הָיָה דַּוְקָא טָעִים, וְהַבְּרִיטִים הִשְׁתַּדְּלוּ לִהְיוֹת נֶחְמָדִים", + "cloze_word_start": 46, + "cloze_word_end": 60, "cloze_hint": null, "cloze_guid": "vhLW-f;mzl" }, @@ -2050524,7 +2061377,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַרְבֵּה יוֹתֵר נוֹחַ לִשְׁהוֹת בִּתְקוּפָה אַחֶרֶת, כְּשֶׁאַתָּה בִּלְתִּי נִרְאֶה", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "כֻּלָּנוּ יַחַד פִּלַּסְנוּ דֶּרֶךְ אֶל הַמָּקוֹם שָׁבוּ שָׁהוּ שַׁעְיָה וְאָבִיו", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַרְבֵּה יוֹתֵר נוֹחַ לִשְׁהוֹת בִּתְקוּפָה אַחֶרֶת, כְּשֶׁאַתָּה בִּלְתִּי נִרְאֶה", + "cloze_word_start": 22, + "cloze_word_end": 31, + "cloze_hint": null, + "cloze_guid": "O@E{~FsN:/" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2055726,7 +2066600,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "לְשִׁיטַת הָאִיתוּת הַזּוֹ קוֹרְאִים סֶמָפוֹר", + "source": "time_tunnel_70", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "לְשִׁיטַת הָאִיתוּת הַזּוֹ קוֹרְאִים סֶמָפוֹר", + "cloze_word_start": 0, + "cloze_word_end": 9, + "cloze_hint": null, + "cloze_guid": "su:)!`~" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שׁוֹר", @@ -2064884,7 +2075852,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "נִדְמֶה כְּאִלּוּ הוּא נִרְדַּם וּמִשְׁתַּזֵּף בַּשֶּׁמֶשׁ", + "source": "time_tunnel_77", + "match_method": "conjugated_prefix" + } + ], + "cloze": { + "text": "נִדְמֶה כְּאִלּוּ הוּא נִרְדַּם וּמִשְׁתַּזֵּף בַּשֶּׁמֶשׁ", + "cloze_word_start": 32, + "cloze_word_end": 46, + "cloze_hint": null, + "cloze_guid": "O`P" }, @@ -2073985,7 +2085016,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "״ \"שַׂחְקַן הַכַּדּוּרֶגֶל דָּוִיד וַיינְבֶּרְג, שֶׁמְּשָׁרֵת בְּמִשְׁטֶרֶת הָרַכָּבוֹת בַּחֲדֵרָה,״ יְהוּדִית עָנְתָה", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + } + ], + "cloze": { + "text": "״ \"שַׂחְקַן הַכַּדּוּרֶגֶל דָּוִיד וַיינְבֶּרְג, שֶׁמְּשָׁרֵת בְּמִשְׁטֶרֶת הָרַכָּבוֹת בַּחֲדֵרָה,״ יְהוּדִית עָנְתָה", + "cloze_word_start": 3, + "cloze_word_end": 11, + "cloze_hint": null, + "cloze_guid": "yd-~s>>)R<" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שַׂחְקָן", @@ -2076316,9 +2087363,9 @@ "match_method": "direct" }, { - "text": "\"אִם אַתְּ רוֹצָה לְהִשְׁתַּחְרֵר, תִּתְחַיְּבִי", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "הִשְׁתַּחְרַרְתִּי מִגַּלְגַּל הַהַצָּלָה וְצָעַדְתִּי אֶל הַחוֹף", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2076755,6 +2087802,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "שְׁנַיִם מֵהֶם אֲפִלּוּ מְשָׁרְתִים אִתִּי בַּיְּחִידָה, אֲבָל הֵם קִבְּלוּ שִׁחְרוּר מֵהַפִּנּוּי", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": "זוֹ הַרְגָּשַׁת שִׁחְרוּר נֶהֱדֶרֶת", "source": "time_tunnel_82", @@ -2076762,9 +2087814,9 @@ } ], "cloze": { - "text": "זוֹ הַרְגָּשַׁת שִׁחְרוּר נֶהֱדֶרֶת", - "cloze_word_start": 16, - "cloze_word_end": 25, + "text": "שְׁנַיִם מֵהֶם אֲפִלּוּ מְשָׁרְתִים אִתִּי בַּיְּחִידָה, אֲבָל הֵם קִבְּלוּ שִׁחְרוּר מֵהַפִּנּוּי", + "cloze_word_start": 76, + "cloze_word_end": 85, "cloze_hint": null, "cloze_guid": "jeXw2zYoXd" }, @@ -2079776,7 +2090828,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וּמֵרָחוֹק נִרְאוּ גַנִּים וְשָׂדוֹת שֶׁדָּמוּ לִשְׁטִיחִים נִפְלָאִים וַעֲשִׁירֵי צְבָעִים", + "source": "gulliver", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "וּמֵרָחוֹק נִרְאוּ גַנִּים וְשָׂדוֹת שֶׁדָּמוּ לִשְׁטִיחִים נִפְלָאִים וַעֲשִׁירֵי צְבָעִים", + "cloze_word_start": 47, + "cloze_word_end": 59, + "cloze_hint": null, + "cloze_guid": "q:#N(qHfT?" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שָׁטִיחַ", @@ -2085671,6 +2096739,11 @@ "text": "\"עַד עַכְשָׁו אֲנַחְנוּ כְּבָר מְשׂוֹחֲחִים בְּמֶשֶׁךְ חֹדֶשׁ שָׁלֵם", "source": "little_prince", "match_method": "conjugated" + }, + { + "text": "שְׁתֵּי אִמָּהוֹת עִם תִּינוֹקוֹת מְשׂוֹחֲחוֹת", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2086416,6 +2097489,11 @@ "source": "time_tunnel_75", "match_method": "direct" }, + { + "text": "\" זוֹ הָיְתָה שִׂיחָה מְעַצְבֶּנֶת", + "source": "time_tunnel_77", + "match_method": "direct" + }, { "text": " פֶּרֶק ב שֶׁבּוֹ אֲנִי מְנַהֵל שִׂיחָה מוּזָרָה בְּאֶמְצַע הַלַּיְלָה בַּאֲרוּחַת הָעֶרֶב אַבָּא לֹא הָיָה", "source": "time_tunnel_70", @@ -2090014,7 +2101092,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בֵּין כָּל הַחֲפָצִים שֶׁהֻצְּגוּ בּוֹ הָיְתָה חֲנֻכִּיָּה וְהִיא מָשְׁכָה אֶת תְּשׂוּמַת לִבִּי", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "הַאִם עָלַי לְהַפְנוֹת אֶת תְּשׂוּמַת לִבָּם שֶׁל הַחַיָּלִים אֶל הַיָּדַיִם הָאֵלֶּה", + "source": "time_tunnel_77", + "match_method": "inflected" + }, + { + "text": "בַּשָּׁלָב הַזֶּה אֵין לִי כַּוָנָה לִמְשׁוֹךְ אֶת תְּשׂוּמַת לִבּוֹ שֶׁל הָאִישׁ", + "source": "time_tunnel_81", + "match_method": "inflected" + } + ], + "cloze": { + "text": "בֵּין כָּל הַחֲפָצִים שֶׁהֻצְּגוּ בּוֹ הָיְתָה חֲנֻכִּיָּה וְהִיא מָשְׁכָה אֶת תְּשׂוּמַת לִבִּי", + "cloze_word_start": 79, + "cloze_word_end": 89, + "cloze_hint": null, + "cloze_guid": "v2Jis9Um*D" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תְּשׂוּמָה", @@ -2092246,7 +2103350,12 @@ "vetted": [ { "text": "בְּאָזְנַי עֲדַיִן הִדְהֲדָה שִׁירַת הַגַּלְגֶּלֶת, וּבְמֵימֵי הַדְּלִי, שֶׁהוֹסִיפוּ לִרְטֹט, רָאִיתִי אֶת הַשֶּׁמֶשׁ רוֹטֶטֶת", - "source": "הנסיך הקטן", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "\"הָיָה בֵּינֵינוּ יֶלֶד שֶׁבֹּקֶר אֶחָד, תּוֹךְ כְּדֵי שִׁירַת 'הַתִּקְוָה' עַל הַסִּפּוּן, טִפֵּס עַל הַתֹּרֶן", + "source": "time_tunnel_76", "match_method": "inflected" } ], @@ -2097129,7 +2108238,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֵיךְ בְּבַת אַחַת נִשְׁכְּחוּ מִמֶּנּוּ כָּל הַחֲזָרוֹת בַּזְּמַן לַתְּקוּפָה הַזּוֹ", + "source": "time_tunnel_76", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אֵיךְ בְּבַת אַחַת נִשְׁכְּחוּ מִמֶּנּוּ כָּל הַחֲזָרוֹת בַּזְּמַן לַתְּקוּפָה הַזּוֹ", + "cloze_word_start": 19, + "cloze_word_end": 30, + "cloze_hint": null, + "cloze_guid": "i{g9?.S&b&" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2097556,7 +2108681,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הַקּוֹצִים דּוֹקְרִים, אֲבָל הַסַּקְרָנוּת מַשְׁכִּיחָה אֶת הַכְּאֵב", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "הַקּוֹצִים דּוֹקְרִים, אֲבָל הַסַּקְרָנוּת מַשְׁכִּיחָה אֶת הַכְּאֵב", + "cloze_word_start": 43, + "cloze_word_end": 55, + "cloze_hint": null, + "cloze_guid": "P9zM6S>GUf" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2100277,7 +2111418,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֲחֵרִים, שֶׁהָיוּ כַּנִּרְאֶה מַשְׂכִּילִים וְיוֹדְעֵי־סֵפֶר, הִתְוַכְּחוּ בֵּינֵיהֶם בִּדְבַר מוֹצָאוֹ שֶׁל הָאָדָם־הָהָר", + "source": "gulliver", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אֲחֵרִים, שֶׁהָיוּ כַּנִּרְאֶה מַשְׂכִּילִים וְיוֹדְעֵי־סֵפֶר, הִתְוַכְּחוּ בֵּינֵיהֶם בִּדְבַר מוֹצָאוֹ שֶׁל הָאָדָם־הָהָר", + "cloze_word_start": 31, + "cloze_word_end": 44, + "cloze_hint": null, + "cloze_guid": "HJ&C1S]}H4" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2101005,7 +2112162,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "תִּרְאֶה אֶת הַגְּפָנִים הָאֵלֶּה,\" הִיא מַצְבִּיעָה הַצִּדָּה, \"לְהָבִיא לְךָ אֶשְׁכּוֹל", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "אַדְוָה לֹא מַמְתִּינָה עַד שֶׁאָשִׁיב, הִיא תּוֹלֶשֶׁת אֶשְׁכּוֹל וּמְבִיאָה לִי", + "source": "time_tunnel_77", + "match_method": "direct" + }, + { + "text": "\" אֶשְׁכּוֹלוֹת הָעֲנָבִים מִשְׁתַּלְשְׁלִים בֵּין זְמוֹרוֹת הַגְּפָנִים, וְנִרְאִים כְּאִלּוּ הֵם חֵלֶק מִתּוֹךְ צִיּוּר", + "source": "time_tunnel_77", + "match_method": "inflected" + } + ], + "cloze": { + "text": "תִּרְאֶה אֶת הַגְּפָנִים הָאֵלֶּה,\" הִיא מַצְבִּיעָה הַצִּדָּה, \"לְהָבִיא לְךָ אֶשְׁכּוֹל", + "cloze_word_start": 79, + "cloze_word_end": 89, + "cloze_hint": null, + "cloze_guid": "w&$Bz==bBM" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "אֶשְׁכּוֹל", @@ -2102561,7 +2113744,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "” לְמָחֳרָת הִשְׁכִּים חַמְדִּי לָבוֹא לִקְצֵה הַיַּעַר", + "source": "tree_dress", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "” לְמָחֳרָת הִשְׁכִּים חַמְדִּי לָבוֹא לִקְצֵה הַיַּעַר", + "cloze_word_start": 12, + "cloze_word_end": 22, + "cloze_hint": null, + "cloze_guid": "As5Wv7L,]>" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2104304,18 +2115503,18 @@ "vetted": [ { "text": "\" אֲנִי מַצְבִּיעַ לְעֵבֶר שְׁכוּנַת רָמוֹת, \"שָׁם אֲנַחְנוּ גָּרִים", - "source": "מנהרת הזמן 82", + "source": "time_tunnel_82", "match_method": "inflected" }, { - "text": "\" שָׁרוֹן מַבִּיטָה סְבִיבָהּ, \"אַתָּה לֹא רוֹאֶה שֶׁזֶּה לֹא הַשָּׂדֶה שֶׁל שְׁכוּנַת רָמוֹת", - "source": "מנהרת הזמן 82", - "match_method": "inflected" + "text": "וְאוּלַי הַיִּשּׁוּב הַזֶּה הוּא שְׁכוּנָה שֶׁל אַשְׁקְלוֹן", + "source": "time_tunnel_77", + "match_method": "direct" }, { - "text": "אֲנִי גָּר בִּשְׁכוּנַת רָמוֹת בִּירוּשָׁלַיִם", - "source": "מנהרת הזמן 82", - "match_method": "inflected_prefix" + "text": "אַתֶּם רוֹאִים אֶת שְׁכוּנַת רָמוֹת", + "source": "time_tunnel_63", + "match_method": "inflected" } ], "cloze": { @@ -2108789,15 +2119988,15 @@ "examples": { "vetted": [ { - "text": "הַכֶּסֶף שֶׁהָיָה מְיֹעָד לְמַשְׂכּוֹרוֹת לַבְּרִיטִים הֻחְרַם", - "source": "time_tunnel_silver_train", - "match_method": "inflected_prefix" + "text": "הוּא מֵסִיר אֶת מִשְׁקָפָיו וּמְנַקֶּה אֶת עַדְשֹׁותֵיהֶם בְּשׁוּלֵי חֻלְצָתוֹ, \"אֲנִי מְשַׁלֵּם לוֹ מַשְׂכֹּרֶת עֲבוּר הַשְּׁמִירָה", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { - "text": "הַכֶּסֶף שֶׁהָיָה מְיֹעָד לְמַשְׂכּוֹרוֹת לַבְּרִיטִים הֻחְרַם", - "cloze_word_start": 26, - "cloze_word_end": 41, + "text": "הוּא מֵסִיר אֶת מִשְׁקָפָיו וּמְנַקֶּה אֶת עַדְשֹׁותֵיהֶם בְּשׁוּלֵי חֻלְצָתוֹ, \"אֲנִי מְשַׁלֵּם לוֹ מַשְׂכֹּרֶת עֲבוּר הַשְּׁמִירָה", + "cloze_word_start": 101, + "cloze_word_end": 112, "cloze_hint": null, "cloze_guid": "GqNb.OMEe~" }, @@ -2115211,7 +2126410,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אַתֶּם קוֹלְטִים מַהִי הַמְּשִׂימָה שֶׁבָּהּ הִשְׁתַּלַּבְנוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "אַתֶּם קוֹלְטִים מַהִי הַמְּשִׂימָה שֶׁבָּהּ הִשְׁתַּלַּבְנוּ", + "cloze_word_start": 45, + "cloze_word_end": 61, + "cloze_hint": null, + "cloze_guid": "k95dWyUI;x" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2116029,6 +2127244,11 @@ "text": "שְׁנֵיהֶם נִרְאִים כְּמוֹ שְׁלָדִים שֶׁכֻּסּוּ בְּעוֹר", "source": "time_tunnel_82", "match_method": "inflected" + }, + { + "text": "רֹאשָׁהּ הָיָה עָטוּף בְּמִטְפַּחַת וְהִיא נִרְאֲתָה רָזָה כְּמוֹ שֶׁלֶד", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -2119590,25 +2130810,25 @@ "examples": { "vetted": [ { - "text": "\" שָׁאַלְתִּי, אֲבָל לֹא הָיָה שׁוּם סִימַ‏ן 1 שֶׁהַהוֹדָעָה נִשְׁלְחָה וְגַם הַפֶּרַח נֶעֱלַם", - "source": "time_tunnel_78", + "text": "מֵהַחַלּוֹן הַקִּדְמִי שֶׁל הַגִ'יפּ נִשְׁלַחַת הַחוּצָה יָד", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "שֶׁאִם צוֹפִים הָיוּ מִתְנַפְּלִים עָלֵינוּ, הָיִינוּ מְטַלְפְּנִים לַמִּשְׁטָרָה, וְתוֹךְ שְׁנִיָּה הָיְתָה נִשְׁלַחַת לְכָאן נַיֶּדֶת", - "source": "time_tunnel_70", + "text": "שְׁתֵּי יָדַיִם נִשְׁלָחוֹת אֶל הַשַּׂק הַמְּכַסֶּה אֶת רֹאשִׁי", + "source": "time_tunnel_77", "match_method": "conjugated" }, { - "text": "״ בְּרֶגַע זֶה נִבְקַע סֶדֶק בְּאַחַד הַקִּירוֹת, וְאַחַר כָּךְ נִשְׁלְחָה יָד אֶל הַצַּד שֶׁלָּנוּ", - "source": "time_tunnel_78", + "text": "\" יָד נִשְׁלַחַת הַחוּצָה מִתּוֹךְ הֶחָבִית", + "source": "time_tunnel_77", "match_method": "conjugated" } ], "cloze": { - "text": "\" שָׁאַלְתִּי, אֲבָל לֹא הָיָה שׁוּם סִימַ‏ן 1 שֶׁהַהוֹדָעָה נִשְׁלְחָה וְגַם הַפֶּרַח נֶעֱלַם", - "cloze_word_start": 61, - "cloze_word_end": 71, + "text": "מֵהַחַלּוֹן הַקִּדְמִי שֶׁל הַגִ'יפּ נִשְׁלַחַת הַחוּצָה יָד", + "cloze_word_start": 37, + "cloze_word_end": 47, "cloze_hint": null, "cloze_guid": "gOYMFd6EXx" }, @@ -2123692,7 +2134912,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵן פּוֹעֲלוֹת עַל דַּעַת עַצְמָן, כְּאִלּוּ אֵין לִי כָּל שְׁלִיטָה עֲלֵיהֶן", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֵן פּוֹעֲלוֹת עַל דַּעַת עַצְמָן, כְּאִלּוּ אֵין לִי כָּל שְׁלִיטָה עֲלֵיהֶן", + "cloze_word_start": 59, + "cloze_word_end": 68, + "cloze_hint": null, + "cloze_guid": "@iq.,.(c@" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁלִיטָה", @@ -2126996,8 +2138232,13 @@ "match_method": "conjugated" }, { - "text": "בָּרֹאשׁ שֶׁלִּי הַמַּחְשָׁבוֹת מַמָּשׁ הִשְׁתּוֹלְלוּ", - "source": "time_tunnel_78", + "text": "\" גֶּבֶר אֶחָד, כַּנִּרְאֶה בַּעֲלָהּ, הִשְׁתּוֹלֵל כְּמוֹ מְשֻׁגָּע, \"פַּנּוּ דֶּרֶךְ", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "\"וּקְרָאוּזֶה הַזֶּה,״ מַנְיָה מְלַטֶּפֶת אֶת הָאֶקְדָּח שֶׁבַּחֲגוֹרָתָהּ, \"רָאִית אוֹתוֹ, אֵיךְ הוּא הִשְׁתּוֹלֵל", + "source": "time_tunnel_81", "match_method": "conjugated" } ], @@ -2128600,7 +2139841,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"מַיִם עוֹמְדִים, שְׁלוּלִית גְּדוֹלָה, בִּצָּה,״ לְרֶגַע הִיא עוֹצֶמֶת אֶת עֵינֶיהָ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"מַיִם עוֹמְדִים, שְׁלוּלִית גְּדוֹלָה, בִּצָּה,״ לְרֶגַע הִיא עוֹצֶמֶת אֶת עֵינֶיהָ", + "cloze_word_start": 18, + "cloze_word_end": 28, + "cloze_hint": null, + "cloze_guid": "yjJU3v9B&_" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁלוּלִית", @@ -2128673,7 +2139930,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אוּלָם עַמִי הֵנִיעַ בְּרֹאשׁוֹ לִשְׁלִילָה: “לֹא, אֵינֶנִי רוֹצֶה בְּתוֹלְעֵי־מֶשִׁי חֲדָשׁוֹת", + "source": "silkworms", + "match_method": "direct_prefix" + } + ], + "cloze": { + "text": "אוּלָם עַמִי הֵנִיעַ בְּרֹאשׁוֹ לִשְׁלִילָה: “לֹא, אֵינֶנִי רוֹצֶה בְּתוֹלְעֵי־מֶשִׁי חֲדָשׁוֹת", + "cloze_word_start": 32, + "cloze_word_end": 43, + "cloze_hint": null, + "cloze_guid": "iX#=m@&eR9" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁלִילָה", @@ -2129263,6 +2140536,11 @@ "text": "הֲיִיתֶם מַאֲמִינִים שֶׁמִּלָּה אַחַת תִּפְתֹּר תַּעֲלוּמָה שְׁלֵמָה", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "אִם הוּא לֹא הָיָה מִתְעַקֵּשׁ לְהַמְשִׁיךְ לָשׁוּט, הָיִינוּ עַכְשָׁיו שְׁלֵמִים וּבְרִיאִים בַּמַּעֲגָן בְּהֶרְצְלִיָּה", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2129768,8 +2141046,8 @@ "match_method": "direct" }, { - "text": "כְּשֶׁתַּחְזֹר לַהֹוֶה, הַטֶלֶפוֹן שֶׁלְּךָ יַחְזֹר אֵלֶיךָ שָׁלֵם וְתַקִּין, כְּמוֹ שֶׁכְּבָר קָרָה לְךָ לֹא פַּעַם", - "source": "time_tunnel_63", + "text": "אֲנִי מְקַוֶה שֶׁאֶהְיֶה שָׁלֵם עִם הַפְּקֻדּוֹת שֶׁאֲקַבֵּל", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -2130537,9 +2141815,9 @@ "match_method": "conjugated" }, { - "text": "אֶצְטָרֵךְ לְהַשְׁלִים כָּל־כָּךְ הַרְבֵּה שִׁעוּרִים", - "source": "alice_wonderland", - "match_method": "direct" + "text": "\"תִּרְאוּ,״ אַלֶכְּסַנְדֶר זַיְיד מְלַטֵּף אֶת שְׂפָמוֹ, \"בְּעֶצֶם, אֶת הַתַּפְקִיד שֶׁלִּי אֲנִי הִשְׁלַמְתִּי", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -2131298,9 +2142576,9 @@ "match_method": "conjugated" }, { - "text": "וְהֵם כָּל הַזְּמַן חָשְׁשׁוּ שֶׁהַזָּהָב שֶׁלָּהֶם לֹא יַסְפִּיק כְּדֵי לְשַׁלֵּם לַמַּבְרִיחִים שֶׁיַּעֲבִירוּ אוֹתָם לְצָרְפַת", - "source": "time_tunnel_78", - "match_method": "direct" + "text": "״ \"אֲנִי מְשַׁלֵּם לְךָ כְּדֵי שֶׁתִּהְיֶה עָיֵף, אוֹ כְּדֵי שֶׁתִּשְׁמֹר עַל הַחַוָה", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -2132186,6 +2143464,11 @@ "text": "עוֹד שַׁבְרִיר שְׁנִיָּה, וּמִתּוֹךְ הַגּוּשׁ נִשְׁלָפוֹת רַגְלַיִם", "source": "time_tunnel_82", "match_method": "conjugated" + }, + { + "text": "עַכְשָׁיו שׁוּב מְגִיחוֹת שְׁתֵּי יָדַיִם מִתּוֹךְ הֶחָבִית וְהַפַּעַם נִשְׁלָף מִמֶּנָּה יֶלֶד", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2134638,7 +2145921,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" אֶשְׁכּוֹלוֹת הָעֲנָבִים מִשְׁתַּלְשְׁלִים בֵּין זְמוֹרוֹת הַגְּפָנִים, וְנִרְאִים כְּאִלּוּ הֵם חֵלֶק מִתּוֹךְ צִיּוּר", + "source": "time_tunnel_77", + "match_method": "conjugated" + }, + { + "text": "חֲבָלִים מִשְׁתַּלְשְׁלִים מִשְּׁנֵי עֲנָפִים", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "\" אֶשְׁכּוֹלוֹת הָעֲנָבִים מִשְׁתַּלְשְׁלִים בֵּין זְמוֹרוֹת הַגְּפָנִים, וְנִרְאִים כְּאִלּוּ הֵם חֵלֶק מִתּוֹךְ צִיּוּר", + "cloze_word_start": 27, + "cloze_word_end": 44, + "cloze_hint": null, + "cloze_guid": "lL,[G&-Uw8" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2135991,8 +2147295,8 @@ "match_method": "direct" }, { - "text": "\"יֵשׁ לוֹ שֵׁם טוֹב בָּעוֹלָם", - "source": "little_prince", + "text": "\" אֲנִי פּוֹנֶה אֶל הַבָּחוּר הַמְּתֻלְתָּל, מְנַסֶּה לְהַרְוִיחַ זְמַן וְלִמְצוֹא שֵׁם", + "source": "time_tunnel_76", "match_method": "direct" } ], @@ -2136202,8 +2147506,8 @@ "match_method": "direct" }, { - "text": "\"אֲנִי שׁוֹלֵחַ לְדַרְכָּן אֶת הָרַכָּבוֹת שֶׁמּוֹבִילוֹת אוֹתָם, לִפְעָמִים מִכִּוּוּן יָמִין וְלִפְעָמִים מִכִּוּוּן שְׂמֹאל", - "source": "little_prince", + "text": "שָׁרוֹן מַצְבִּיעָה בִּשְׁתֵּי יָדֶיהָ, יַד יָמִין לְכִווּן מַעֲרָב וְיַד שְׂמֹאל לְכִווּן מִזְרָח", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -2136282,8 +2147586,8 @@ "match_method": "direct" }, { - "text": "אֲבָל לָמָּה לֹא נִפְנֶה שְׂמֹאלָה", - "source": "time_tunnel_63", + "text": "\" הוּא צוֹעֵק אֶל אַחַת מֵהֶן, \"אֲנִי אֶקַּח שְׂמֹאלָה", + "source": "time_tunnel_77", "match_method": "direct" } ], @@ -2136828,6 +2148132,11 @@ "text": "וְאוּלַי בִּמְקוֹם לִמְכּוֹר אוֹתָם אוֹ לְהַשְׁמִיד אוֹתָם, הֵם הֶחְבִּיאוּ אוֹתָם", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "עָשִׂינוּ הַכֹּל כְּדֵי לְמַגֵּר אֶת הַנָּאצִים שֶׁבִּקְּשׁוּ לְהַשְׁמִיד אֶתְכֶם", + "source": "time_tunnel_76", + "match_method": "direct" } ], "cloze": { @@ -2138500,6 +2149809,11 @@ "source": "time_tunnel_63", "match_method": "conjugated" }, + { + "text": "נִכָּר בָּהֶם שֶׁהַהִתְעַנְיְנוּת שֶׁלָּנוּ בֶּעָבָר שֶׁלָּהֶם מְשַׂמַּחַת אוֹתָם", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, { "text": "\" \"יֹפִי, זֶה מְשַׂמֵּחַ אוֹתִי", "source": "little_prince", @@ -2139039,8 +2150353,8 @@ "match_method": "direct" }, { - "text": "הוּא אָמַר לִי: \"אֲנִי שָׂמֵחַ שֶׁגִּלִּיתָ מָה הִתְקַלְקֵל בַּמָּנוֹעַ, עַכְשָׁו תּוּכַל לַחְזֹר הַבַּיְתָה", - "source": "little_prince", + "text": "אֲנִי בָּטוּחַ שֶׁהוּא הָיָה שָׂמֵחַ לָדַעַת אֶת הַדְּבָרִים הָאֵלֶּה", + "source": "time_tunnel_81", "match_method": "direct" } ], @@ -2141158,6 +2152472,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"שְׁחָקִים זֶה שָׁמַיִם,\" הוּא מַסְבִּיר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "שָׁמַיִם בְּהִירִים פְּרוּשִׂים הָיוּ מֵעָל וּמִסָּבִיב רַק מַיִם וָמַיִם", + "source": "gulliver", + "match_method": "direct" + }, { "text": "״שָׁמַיִם כְּחֻלִּים,״ הִיא אָמְרָה", "source": "time_tunnel_63", @@ -2141165,9 +2152489,9 @@ } ], "cloze": { - "text": "״שָׁמַיִם כְּחֻלִּים,״ הִיא אָמְרָה", - "cloze_word_start": 1, - "cloze_word_end": 9, + "text": "\" \"שְׁחָקִים זֶה שָׁמַיִם,\" הוּא מַסְבִּיר", + "cloze_word_start": 17, + "cloze_word_end": 25, "cloze_hint": null, "cloze_guid": "x];ODng5BV" }, @@ -2141223,6 +2152547,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"שְׁחָקִים זֶה שָׁמַיִם,\" הוּא מַסְבִּיר", + "source": "time_tunnel_76", + "match_method": "direct" + }, + { + "text": "שָׁמַיִם בְּהִירִים פְּרוּשִׂים הָיוּ מֵעָל וּמִסָּבִיב רַק מַיִם וָמַיִם", + "source": "gulliver", + "match_method": "direct" + }, { "text": "״שָׁמַיִם כְּחֻלִּים,״ הִיא אָמְרָה", "source": "time_tunnel_63", @@ -2141230,9 +2152564,9 @@ } ], "cloze": { - "text": "״שָׁמַיִם כְּחֻלִּים,״ הִיא אָמְרָה", - "cloze_word_start": 1, - "cloze_word_end": 9, + "text": "\" \"שְׁחָקִים זֶה שָׁמַיִם,\" הוּא מַסְבִּיר", + "cloze_word_start": 17, + "cloze_word_end": 25, "cloze_hint": null, "cloze_guid": "s`kzoFT#^x" }, @@ -2141383,17 +2152717,27 @@ "examples": { "vetted": [ { - "text": "\" כְּשֶׁהִיא מְנוֹפֶפֶת בַּמַּקֵּל, אֲנִי מַבְחִין שֶׁהִיא לוֹבֶשֶׁת שִׂמְלָה קְרוּעָה וְשַׂעֲרוֹתֶיהָ עֲטוּפוֹת בְּמִטְפַּחַת", - "source": "time_tunnel_82", - "match_method": "direct" + "text": "לְהֵפֶךְ, כְּכָל שֶׁיַּכּוּ אוֹתָךְ, כֵּן תִּתְחַזֵּק עָלַיִךְ שִׂמְלַת הָעֵץ", + "source": "tree_dress", + "match_method": "inflected" + }, + { + "text": "” הוֹצִיא הַחַיָּט הַזָּקֵן מֵהַשַּׂק הָרֵיק שִׂמְלַת עֵץ, הֵנִיחַ אוֹתָהּ עַל הָרוֹעָה", + "source": "tree_dress", + "match_method": "inflected" + }, + { + "text": "הַמְּשָׁרְתִים הִמְשִׁיכוּ לְהַכּוֹת אוֹתָהּ וְלִבְעֹט בָּהּ, אֲבָל שִׂמְלַת הָעֵץ הֵגֵנָּה עַל גּוּפָהּ", + "source": "tree_dress", + "match_method": "inflected" } ], "cloze": { - "text": "\" כְּשֶׁהִיא מְנוֹפֶפֶת בַּמַּקֵּל, אֲנִי מַבְחִין שֶׁהִיא לוֹבֶשֶׁת שִׂמְלָה קְרוּעָה וְשַׂעֲרוֹתֶיהָ עֲטוּפוֹת בְּמִטְפַּחַת", - "cloze_word_start": 69, - "cloze_word_end": 77, + "text": "לְהֵפֶךְ, כְּכָל שֶׁיַּכּוּ אוֹתָךְ, כֵּן תִּתְחַזֵּק עָלַיִךְ שִׂמְלַת הָעֵץ", + "cloze_word_start": 63, + "cloze_word_end": 71, "cloze_hint": null, - "cloze_guid": "jRJp&ieH_7" + "cloze_guid": "K/4m)^){#s" }, "rejected_count": 0 }, @@ -2141468,6 +2152812,11 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "— קָרָא הַגְּדִי הַקָּטָן וְעָמַד מִשְׁתּוֹמֵם", + "source": "kid_on_mountain", + "match_method": "conjugated" + }, { "text": "אֲבָל הַנָּסִיךְ הַקָּטָן הִשְׁתּוֹמֵם", "source": "little_prince", @@ -2141475,9 +2152824,9 @@ } ], "cloze": { - "text": "אֲבָל הַנָּסִיךְ הַקָּטָן הִשְׁתּוֹמֵם", - "cloze_word_start": 26, - "cloze_word_end": 38, + "text": "— קָרָא הַגְּדִי הַקָּטָן וְעָמַד מִשְׁתּוֹמֵם", + "cloze_word_start": 34, + "cloze_word_end": 46, "cloze_hint": null, "cloze_guid": "P><8+sBR:y" }, @@ -2143212,7 +2154561,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בַּעֲרֹב הַיּוֹם הִגִּיעַ גּוּלִיבֶר לְאִי שׁוֹמֵם", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "הָאֵזוֹר שֶׁבּוֹ אֲנַחְנוּ דּוֹהֲרִים שׁוֹמֵם לְגַמְרֵי, וְכַנִּרְאֶה זוֹ הַסִּבָּה שֶׁהוּא לֹא מֻכָּר לִי", + "source": "time_tunnel_81", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "בַּעֲרֹב הַיּוֹם הִגִּיעַ גּוּלִיבֶר לְאִי שׁוֹמֵם", + "cloze_word_start": 43, + "cloze_word_end": 50, + "cloze_hint": null, + "cloze_guid": "Fr8<1PRcI(" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2144260,19 +2155630,12 @@ "examples": { "vetted": [ { - "text": "הַאִם הִיא לֹא יוֹתֵר חֲשׁוּבָה מֵהַחֶשְׁבּוֹנוֹת שֶׁל אָדוֹן שָׁמֵן וְאָדֹם", - "source": "הנסיך הקטן", - "vetted": true + "text": "מֵהַצִּנּוֹרוֹת נוֹרִים לְעֵבֶר הַבְּרִיטִים סִילוֹנֵי מַיִם וְשֶׁמֶן", + "source": "time_tunnel_76", + "match_method": "direct_prefix" } ], - "cloze": { - "text": "הַאִם הִיא לֹא יוֹתֵר חֲשׁוּבָה מֵהַחֶשְׁבּוֹנוֹת שֶׁל אָדוֹן שָׁמֵן וְאָדֹם", - "cloze_word_start": 62, - "cloze_word_end": 68, - "cloze_hint": null, - "cloze_guid": "P*r:TZ_5zH" - }, - "rejected_count": 2 + "rejected_count": 0 }, "noun_inflection": { "singular": { @@ -2150585,7 +2161948,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" \"לְמָשָׁל יְסוּד־הַמַּעֲלָה וּמִשְׁמַר הַיַּרְדֵּן", + "source": "time_tunnel_75", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "\" \"לְמָשָׁל יְסוּד־הַמַּעֲלָה וּמִשְׁמַר הַיַּרְדֵּן", + "cloze_word_start": 30, + "cloze_word_end": 40, + "cloze_hint": null, + "cloze_guid": "DHOf-:GziI" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִשְׁמָר", @@ -2151471,7 +2162850,16 @@ "שׁוֹמֵר" ], "confusables_guid": "G>v}U47me*", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הָאִישׁ הוּא אַלֶכְּסַנְדֶר זַיְיד, שֶׁהָיָה בֵּין שׁוֹמְרֵי שֵׁיח' אַבְּרֵיק", + "source": "time_tunnel_81", + "match_method": "inflected" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שׁוֹמֵר", @@ -2151624,17 +2163012,17 @@ "examples": { "vetted": [ { - "text": "אֲבָל תִּתֵּן לוֹ חֲנִינָה, מִטַּעֲמֵי חִסָּכוֹן, כְּדֵי לִשְׁמֹר עָלָיו", - "source": "הנסיך הקטן", - "vetted": true + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { - "text": "אֲבָל תִּתֵּן לוֹ חֲנִינָה, מִטַּעֲמֵי חִסָּכוֹן, כְּדֵי לִשְׁמֹר עָלָיו", - "cloze_word_start": 57, - "cloze_word_end": 65, + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "cloze_word_start": 27, + "cloze_word_end": 36, "cloze_hint": null, - "cloze_guid": "bzY}HW$;}~" + "cloze_guid": "Ixp]:/G.#j" }, "rejected_count": 0 }, @@ -2152374,7 +2163762,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\" בְּעִקְּבוֹת הַצְּעִירָה הִגִּיעוּ כַּמָּה בַּחוּרִים שֶׁנָּשְׂאוּ אַרְגָּזִים מְלֵאִים בְּקֻפְסְאוֹת שִׁמּוּרִים", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "חַלְבָה, שׁוֹקוֹלָד, חָלָב מְשֻׁמָּר, בִּיסְקְוִיטִים, שִׁמּוּרֵי יְרָקוֹת", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "הָיוּ אֲחֵרִים שֶׁהַקְּרִיאָה תָּפְסָה אוֹתָם בְּאֶמְצַע אֲרוּחַת הַבֹּקֶר, בִּיסְקְוִיטִים וְחַלְבָה מִקֻּפְסְאוֹת שִׁמּוּרִים", + "source": "time_tunnel_76", + "match_method": "inflected" + } + ], + "cloze": { + "text": "\" בְּעִקְּבוֹת הַצְּעִירָה הִגִּיעוּ כַּמָּה בַּחוּרִים שֶׁנָּשְׂאוּ אַרְגָּזִים מְלֵאִים בְּקֻפְסְאוֹת שִׁמּוּרִים", + "cloze_word_start": 104, + "cloze_word_end": 115, + "cloze_hint": null, + "cloze_guid": "w|(/RAI?*d" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שִׁמּוּר", @@ -2153374,7 +2164788,33 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מֵעַל דֶּלֶת הַחֲנוּת נִכְתַּב: ״מִיכָה - תַּשְׁמִישֵׁי קְדֻשָּׁה״", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "אוּלַי הֵם נֶאֶלְצוּ לְהַחְבִּיא אֶת כָּל תַּשְׁמִישֵׁי הַקְּדֻשָּׁה שֶׁלָּהֶם", + "source": "time_tunnel_78", + "match_method": "inflected" + }, + { + "text": "\"הַיַּעַד שֶׁלָּנוּ הוּא מָקוֹם שֶׁבּוֹ הֻחְבְּאוּ תַּשְׁמִישֵׁי קְדֻשָּׁה יְהוּדִיִּים", + "source": "time_tunnel_78", + "match_method": "inflected" + } + ], + "cloze": { + "text": "מֵעַל דֶּלֶת הַחֲנוּת נִכְתַּב: ״מִיכָה - תַּשְׁמִישֵׁי קְדֻשָּׁה״", + "cloze_word_start": 42, + "cloze_word_end": 55, + "cloze_hint": null, + "cloze_guid": "B6sh]|KLN4" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "תַּשְׁמִישׁ", @@ -2154285,7 +2165725,7 @@ "vetted": [ { "text": "רַק הַיְּלָדִים מוֹעֲכִים אֶת אַפֵּיהֶם אֶל שִׁמְשַׁת הַחַלּוֹן", - "source": "הנסיך הקטן", + "source": "little_prince", "match_method": "inflected" } ], @@ -2157594,12 +2169034,12 @@ "match_method": "direct" }, { - "text": "וְכַמָּה מְשֻׁנֶּה תֵּרָאֶה הַכְּתֹבֶת לְמִשְׁלוֹחַ", - "source": "alice_wonderland", + "text": "\" \"לְדַעְתִּי קוֹרֶה פֹּה דָּבָר מְשֻׁנֶּה בְּיוֹתֵר", + "source": "time_tunnel_76", "match_method": "direct" }, { - "text": "הַכֹּל מְשֻׁנֶּה כָּל־כָּךְ הַיּוֹם", + "text": "וְכַמָּה מְשֻׁנֶּה תֵּרָאֶה הַכְּתֹבֶת לְמִשְׁלוֹחַ", "source": "alice_wonderland", "match_method": "direct" } @@ -2157786,15 +2169226,15 @@ "examples": { "vetted": [ { - "text": "\" הַמְּשָׁרֵת חָשַׁב כַּנִּרְאֶה שֶׁזּוֹ הִזְדַּמְּנוּת טוֹבָה לַחְזוֹר עַל הַהֶעָרָה שֶׁלּוֹ, בְּשִׁנּוּיִים קַלִּים", - "source": "alice_wonderland", - "match_method": "inflected_prefix" + "text": "\"הַיָּם נִהְיָה סוֹעֵר,\" אַבָּא שֶׁל שָׁרוֹן אָמַר, \"שִׁנּוּי קִיצוֹנִי כָּזֶה", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { - "text": "\" הַמְּשָׁרֵת חָשַׁב כַּנִּרְאֶה שֶׁזּוֹ הִזְדַּמְּנוּת טוֹבָה לַחְזוֹר עַל הַהֶעָרָה שֶׁלּוֹ, בְּשִׁנּוּיִים קַלִּים", - "cloze_word_start": 95, - "cloze_word_end": 109, + "text": "\"הַיָּם נִהְיָה סוֹעֵר,\" אַבָּא שֶׁל שָׁרוֹן אָמַר, \"שִׁנּוּי קִיצוֹנִי כָּזֶה", + "cloze_word_start": 53, + "cloze_word_end": 61, "cloze_hint": null, "cloze_guid": "Q/QJYN-Mh7" }, @@ -2159125,6 +2170565,16 @@ "text": "אַחַר כָּךְ הִתְקַלַּחְתִּי וְצִחְצַחְתִּי שִׁנַּיִם", "source": "time_tunnel_70", "match_method": "inflected" + }, + { + "text": "\" גֶּבֶר לְלֹא שִׁנַּיִם צָעַק עַל הַיֶּלֶד שֶׁפִּנָּה לָנוּ מָקוֹם, \"אַל תִּתֵּן לָהֶם לְהִדָּחֵף", + "source": "time_tunnel_76", + "match_method": "inflected" + }, + { + "text": "יֵשׁ לָהּ דַּוְקָא שִׁנַּיִם יָפוֹת, כְּאִלּוּ מִישֶׁהוּ טוֹרֵחַ לְצַחְצֵחַ לָהּ אוֹתָן בְּאֹפֶן קָבוּעַ, אֲבָל פִיכְס", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { @@ -2168440,8 +2179890,13 @@ "match_method": "inflected" }, { - "text": "\" \"אֵיזוֹ מַעֲרֶכֶת שָׁעוֹת מוּזָרָה", - "source": "alice_wonderland", + "text": "\"כַּנִּרְאֶה לְכֶלֶא עַכּוֹ,״ יְהוּדִית הֵשִׁיבָה, \"לְפִי דַּעְתִּי זוֹ שְׁעַת בִּקּוּר", + "source": "time_tunnel_silver_train", + "match_method": "inflected" + }, + { + "text": "\" הַמְּתֻלְתָּל מַכְרִיז, \"הִגִּיעָה שְׁעַת הָאֱמֶת", + "source": "time_tunnel_76", "match_method": "inflected" } ], @@ -2168523,7 +2179978,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "\"בְּעֵרֶךְ לִפְנֵי שְׁעָתַיִם,״ הִיא מִתְיַשֶּׁבֶת בְּשׁוּלֵי הַמִּטָּה שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "\"בְּעֵרֶךְ לִפְנֵי שְׁעָתַיִם,״ הִיא מִתְיַשֶּׁבֶת בְּשׁוּלֵי הַמִּטָּה שֶׁלִּי", + "cloze_word_start": 19, + "cloze_word_end": 29, + "cloze_hint": null, + "cloze_guid": "JHDW)Je8)V" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׁעָתַיִם", @@ -2169323,8 +2180794,8 @@ "match_method": "direct" }, { - "text": "\"הִיא הָיְתָה מִשְׁתַּעֶלֶת לְלֹא הֶפְסֵק וּמַעֲמִידָה פְּנֵי גּוֹסֶסֶת, רַק כְּדֵי שֶׁלֹּא יִלְעֲגוּ לָהּ", - "source": "little_prince", + "text": "שָׁמַעְתִּי אוֹתָהּ מִשְׁתַּעֶלֶת וְשָׁמַעְתִּי גַּם אֶת אַדְוָה מִשְׁתַּעֶלֶת", + "source": "time_tunnel_77", "match_method": "conjugated" } ], @@ -2169766,6 +2181237,11 @@ "source": "time_tunnel_82", "match_method": "direct" }, + { + "text": "כָּל שִׁעוּל מַגְבִּיר אֶת כְּאֵב הַגָּרוֹן שֶׁלִּי", + "source": "time_tunnel_81", + "match_method": "direct" + }, { "text": "״ הִיא הִשְׁתַּעֲלָה שִׁעוּל חָנוּק", "source": "time_tunnel_78", @@ -2171439,6 +2182915,11 @@ "text": "הִשְׁעַנְתִּי אֶת רֹאשִׁי לְאָחוֹר כְּאִלּוּ אֲנִי עוֹמֵד לְהֵרָדֵם", "source": "time_tunnel_silver_train", "match_method": "conjugated" + }, + { + "text": "אֲנִי מַשְׁעִין אֶת גַּבִּי עַל קִיר הַמְּעָרָה", + "source": "time_tunnel_81", + "match_method": "conjugated" } ], "cloze": { @@ -2172951,6 +2184432,11 @@ "text": "אֲבָל לְךָ יֵשׁ שֵׂעָר שֶׁצִּבְעוֹ זָהָב", "source": "little_prince", "match_method": "direct" + }, + { + "text": "יֵשׁ לוֹ שֵׂעָר שָׁחוֹר וְזָקָן קָטָן וּמְחֻדָּד", + "source": "time_tunnel_81", + "match_method": "direct" } ], "cloze": { @@ -2173755,6 +2185241,11 @@ "text": "הִיא כַּנִּרְאֶה נִסְּתָה לִקְלוֹט רְחָשִׁים, וְכָךְ לְשַׁעֵר אִם יֵשׁ אֲנָשִׁים בַּסְּבִיבָה", "source": "time_tunnel_63", "match_method": "direct" + }, + { + "text": "לְפִי הַגֹּבַהּ שֶׁלָּהֶם אֲנִי מְשַׁעֵר שֶׁהֵם בְּעֵרֶךְ בַּגִּיל שֶׁלָּנוּ", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2177219,26 +2188710,26 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "וְלָמָּה נִזְכַּרְתִּי פִּתְאוֹם לְסַפֵּר לָכֶם עַל בְּנֵי מִשְׁפַּחַת עַמִּיקָם", + "source": "time_tunnel_70", + "match_method": "inflected" + }, { "text": "בְּבֵית־הַסֵּפֶר הַמְּקוֹמִי הֻקְצָה חֶדֶר לְכָל מִשְׁפָּחָה", "source": "time_tunnel_70", "match_method": "direct" }, { - "text": "הוּא רָכַשׁ אֲדָמוֹת חַקְלָאִיּוֹת בִּכְפַר מֵירוֹן וְיִשֵּׁב בַּמָּקוֹם מִשְׁפָּחוֹת שֶׁל יְהוּדִים", + "text": "ב', הוּא לֹא יוֹדֵעַ שׁוּם דָּבָר עַל מִשְׁפַּחַת עַבּוֹ", "source": "time_tunnel_75", "match_method": "inflected" - }, - { - "text": "אַחֲרֵי שֶׁקְּרוֹב מִשְׁפָּחָה נִפְטָר, יוֹשְׁבִים שִׁבְעָה", - "source": "time_tunnel_78", - "match_method": "direct" } ], "cloze": { - "text": "בְּבֵית־הַסֵּפֶר הַמְּקוֹמִי הֻקְצָה חֶדֶר לְכָל מִשְׁפָּחָה", - "cloze_word_start": 49, - "cloze_word_end": 60, + "text": "וְלָמָּה נִזְכַּרְתִּי פִּתְאוֹם לְסַפֵּר לָכֶם עַל בְּנֵי מִשְׁפַּחַת עַמִּיקָם", + "cloze_word_start": 59, + "cloze_word_end": 70, "cloze_hint": null, "cloze_guid": "l-~{oS?6)t" }, @@ -2180828,7 +2192319,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "בָּרֶגַע הָרִאשׁוֹן נִרְאֵית לִי הַפְּקֻדָּה הַזּוֹ כְּמוֹ נִסְיוֹן הַשְׁפָּלָה", + "source": "time_tunnel_77", + "match_method": "direct" + } + ], + "cloze": { + "text": "בָּרֶגַע הָרִאשׁוֹן נִרְאֵית לִי הַפְּקֻדָּה הַזּוֹ כְּמוֹ נִסְיוֹן הַשְׁפָּלָה", + "cloze_word_start": 68, + "cloze_word_end": 79, + "cloze_hint": null, + "cloze_guid": "F|h-pqo}NJq" + "cloze_guid": "D1F7qor]09" }, - "rejected_count": 1 + "rejected_count": 0 }, "noun_inflection": { "singular": { @@ -2198106,6 +2209655,11 @@ "text": "אֲנִי עֲדַיִן שָׁקוּעַ בְּחִפּוּשׂ הַהֶבְדֵּלִים בֵּין דּוֹדָה לְבֵין מִנְהָרָה", "source": "time_tunnel_78", "match_method": "direct" + }, + { + "text": "כַּאֲשֶׁר שָׁטָה בֵּין אֲוָזֶיהָ גִּלְּתָה אֶת חַמְדִּי שָׁקוּעַ עַל גַּבּוֹ בְּמַיִם", + "source": "tree_dress", + "match_method": "direct" } ], "cloze": { @@ -2198933,6 +2210487,16 @@ "confusables_guid": null, "examples": { "vetted": [ + { + "text": "\" \"אִם כָּךְ, מָה עִם שְׁקִיעַת הַשֶּׁמֶשׁ שֶׁלִּי", + "source": "little_prince", + "match_method": "inflected" + }, + { + "text": "הוּא הִצְטַעֵר עַל שְׁקִיעַת הַשֶּׁמֶשׁ שֶׁלֹּא קָרְתָה", + "source": "little_prince", + "match_method": "inflected" + }, { "text": "כְּשֶׁעֲצוּבִים מְאוֹד, נָעִים לִרְאוֹת שְׁקִיעוֹת", "source": "little_prince", @@ -2198940,9 +2210504,9 @@ } ], "cloze": { - "text": "כְּשֶׁעֲצוּבִים מְאוֹד, נָעִים לִרְאוֹת שְׁקִיעוֹת", - "cloze_word_start": 40, - "cloze_word_end": 50, + "text": "\" \"אִם כָּךְ, מָה עִם שְׁקִיעַת הַשֶּׁמֶשׁ שֶׁלִּי", + "cloze_word_start": 22, + "cloze_word_end": 31, "cloze_hint": null, "cloze_guid": "p^aMF.j5o,D>" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִשְׂרָה", @@ -2209156,7 +2220814,16 @@ "לִשְׂרוֹת" ], "confusables_guid": "BTpm)jG1ua", - "examples": null, + "examples": { + "vetted": [ + { + "text": "בְּיָמִים טוֹבִים הָיָה הַדַיָג מַעֲלֶה דָגִים רַבִּים בְּרִשְׁתּוֹ, וְאָז הָיְתָה הַשִׂמְחָה שׁוֹרָה בְּבֵיתוֹ הַקָטָן", + "source": "shell_story", + "match_method": "conjugated" + } + ], + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2212161,7 +2223828,16 @@ "שָׂרוּךְ" ], "confusables_guid": "kH<&uS{c1n", - "examples": null, + "examples": { + "vetted": [ + { + "text": "הוֹפָעָתָהּ שֶׁל צְעִירָה שֶׁלָּבְשָׁה חֻלְצָה כְּחֻלָּה שֶׁל אֵיזוֹ תְּנוּעַת נֹעַר, אֲבָל בְּלִי שְׂרוֹךְ, קָטְעָה אוֹתִי", + "source": "time_tunnel_76", + "match_method": "direct" + } + ], + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׂרוֹךְ", @@ -2213145,20 +2224821,25 @@ "examples": { "vetted": [ { - "text": "אֲנִי מַבִּיט לְכִווּן יְרוּשָׁלַיִם שֶׁאֲנִי מַכִּיר, זֹאת שֶׁבַּהֹוֶה מִשְׂתָּרַעַת עַל הֶהָרִים, וְהִיא אֵינֶנָּה", - "source": "time_tunnel_82", + "text": "הַגְּבָעוֹת הָאֵלֶּה מִשְׂתָּרְעוֹת בְּאֵזוֹר בֵּית שְׁעָרִים, קָרוֹב לְעֵמֶק יִזְרְעֶאל", + "source": "time_tunnel_81", "match_method": "conjugated" }, { - "text": "כְּמוֹ שֶׁאַתָּה יָכוֹל לְהָבִין מִשְּׁמָהּ, הִיא הִשְׂתָּרְעָה בֵּין הַשְּׁאָר עַל הַשְּׁטָחִים שֶׁהַיּוֹם שַׁיָּכִים לְאוֹסְטְרִיָה וּלְהוּנְגַרְיָה", - "source": "time_tunnel_63", + "text": "לְנֶגֶד עֵינָיו הִשְׂתָּרְעָה עִיר יָפָה לְהַפְלִיא", + "source": "gulliver", + "match_method": "conjugated" + }, + { + "text": "אֲנִי מַבִּיט לְכִווּן יְרוּשָׁלַיִם שֶׁאֲנִי מַכִּיר, זֹאת שֶׁבַּהֹוֶה מִשְׂתָּרַעַת עַל הֶהָרִים, וְהִיא אֵינֶנָּה", + "source": "time_tunnel_82", "match_method": "conjugated" } ], "cloze": { - "text": "אֲנִי מַבִּיט לְכִווּן יְרוּשָׁלַיִם שֶׁאֲנִי מַכִּיר, זֹאת שֶׁבַּהֹוֶה מִשְׂתָּרַעַת עַל הֶהָרִים, וְהִיא אֵינֶנָּה", - "cloze_word_start": 72, - "cloze_word_end": 85, + "text": "הַגְּבָעוֹת הָאֵלֶּה מִשְׂתָּרְעוֹת בְּאֵזוֹר בֵּית שְׁעָרִים, קָרוֹב לְעֵמֶק יִזְרְעֶאל", + "cloze_word_start": 21, + "cloze_word_end": 35, "cloze_hint": null, "cloze_guid": "Ndo},7K-4G" }, @@ -2213650,15 +2225331,25 @@ "examples": { "vetted": [ { - "text": "״הֵם בְּתוֹךְ הַמּוֹשָׁבָה, שׁוֹדְדִים אֶת הָעֲדָרִים שֶׁלָּנוּ וְשׂוֹרְפִים הַכֹּל", - "source": "time_tunnel_70", - "match_method": "conjugated_prefix" + "text": "הָרַגְלַיִם שֶׁלִּי הוֹלְכוֹת וְנִהְיוֹת כְּבֵדוֹת יוֹתֵר וְיוֹתֵר וְהָעֵינַיִם שֶׁלִּי שׂוֹרְפוֹת", + "source": "time_tunnel_81", + "match_method": "conjugated" + }, + { + "text": "גַּם אִם הָיִיתִי רוֹצֶה לְהַגִּיד מַשֶּׁהוּ, לֹא הָיִיתִי מְסֻגָּל, כִּי הַגָּרוֹן שֶׁלִּי שׂוֹרֵף וְחָנוּק", + "source": "time_tunnel_76", + "match_method": "conjugated" + }, + { + "text": "שׂוֹרֵף מֵהַצְּעָקוֹת וְחָנוּק מִדְּמָעוֹת", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { - "text": "״הֵם בְּתוֹךְ הַמּוֹשָׁבָה, שׁוֹדְדִים אֶת הָעֲדָרִים שֶׁלָּנוּ וְשׂוֹרְפִים הַכֹּל", - "cloze_word_start": 64, - "cloze_word_end": 76, + "text": "הָרַגְלַיִם שֶׁלִּי הוֹלְכוֹת וְנִהְיוֹת כְּבֵדוֹת יוֹתֵר וְיוֹתֵר וְהָעֵינַיִם שֶׁלִּי שׂוֹרְפוֹת", + "cloze_word_start": 88, + "cloze_word_end": 98, "cloze_hint": null, "cloze_guid": "BNewm3jYG-" }, @@ -2214529,7 +2226220,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "צִלְצְלוּ כְּמוֹ בִּשְׁעַת שְׂרֵפָה", + "source": "ilana", + "match_method": "direct" + } + ], + "cloze": { + "text": "צִלְצְלוּ כְּמוֹ בִּשְׁעַת שְׂרֵפָה", + "cloze_word_start": 27, + "cloze_word_end": 35, + "cloze_hint": null, + "cloze_guid": "yv5CgP?1CI" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שְׂרֵפָה", @@ -2216993,15 +2228700,15 @@ "examples": { "vetted": [ { - "text": "\"אַל תֵּלֵךְ, אֲנִי אֲמַנֶּה אוֹתְךָ לְשַׂר", - "source": "הנסיך הקטן", - "match_method": "inflected_prefix" + "text": "בְּנוֹסָף עַל כָּל זֶה, הוּא גַּם עוֹנֵב עֲנִיבָה וְנִרְאֶה כְּמוֹ שַׂר בַּמֶּמְשָׁלָה", + "source": "time_tunnel_81", + "match_method": "inflected" } ], "cloze": { - "text": "\"אַל תֵּלֵךְ, אֲנִי אֲמַנֶּה אוֹתְךָ לְשַׂר", - "cloze_word_start": 37, - "cloze_word_end": 43, + "text": "בְּנוֹסָף עַל כָּל זֶה, הוּא גַּם עוֹנֵב עֲנִיבָה וְנִרְאֶה כְּמוֹ שַׂר בַּמֶּמְשָׁלָה", + "cloze_word_start": 67, + "cloze_word_end": 71, "cloze_hint": null, "cloze_guid": "l`Hfy.7lQh" }, @@ -2220021,24 +2231728,14 @@ "examples": { "vetted": [ { - "text": "\"הוּא חָשַׁב שֶׁאֲנִי הַמְּשָׁרֶתֶת שֶׁלּוֹ,\" אָמְרָה לְעַצְמָהּ בְּעוֹדָהּ רָצָה", - "source": "alice_wonderland", - "match_method": "conjugated_prefix" - }, - { - "text": "\"אֵין שׁוּם סוּג שֶׁל תּוֹעֶלֶת בְּלִדְפּוֹק,\" אָמַר הַמְּשָׁרֵת, \"וְזֶה בִּגְלַל שְׁתֵּי סִבּוֹת", - "source": "alice_wonderland", - "match_method": "conjugated_prefix" - }, - { - "text": "\"כָּל מָה שֶׁמִּתְחַשֵּׁק לָךְ,\" אָמַר הַמְּשָׁרֵת, וְהִתְחִיל לִשְׁרוֹק", - "source": "alice_wonderland", - "match_method": "conjugated_prefix" + "text": "שְׁנַיִם מֵהֶם אֲפִלּוּ מְשָׁרְתִים אִתִּי בַּיְּחִידָה, אֲבָל הֵם קִבְּלוּ שִׁחְרוּר מֵהַפִּנּוּי", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { - "text": "\"הוּא חָשַׁב שֶׁאֲנִי הַמְּשָׁרֶתֶת שֶׁלּוֹ,\" אָמְרָה לְעַצְמָהּ בְּעוֹדָהּ רָצָה", - "cloze_word_start": 22, + "text": "שְׁנַיִם מֵהֶם אֲפִלּוּ מְשָׁרְתִים אִתִּי בַּיְּחִידָה, אֲבָל הֵם קִבְּלוּ שִׁחְרוּר מֵהַפִּנּוּי", + "cloze_word_start": 24, "cloze_word_end": 35, "cloze_hint": null, "cloze_guid": "gEu3Mv-/1P" @@ -2221422,6 +2233119,11 @@ "text": "הָיוּ לִי מֵי שְׁתִיָּה בְּקשִׁי לִשְׁמוֹנָה יָמִים", "source": "little_prince", "match_method": "direct" + }, + { + "text": "\" אֲנִי קוֹרֵא לְשָׁרוֹן וּלְאַדְוָה וּמַצְבִּיעַ עַל מִתְקַן שְׁתִיָּה, \"יֵשׁ כָּאן מַיִם", + "source": "time_tunnel_77", + "match_method": "direct" } ], "cloze": { @@ -2221566,7 +2233268,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "הֵם עָרְכוּ מִשְׁתֶּה גָדוֹל לִכְבוֹדוֹ וְשִׂמְּחוּ אֶת אוֹרְחָם", + "source": "gulliver", + "match_method": "direct" + } + ], + "cloze": { + "text": "הֵם עָרְכוּ מִשְׁתֶּה גָדוֹל לִכְבוֹדוֹ וְשִׂמְּחוּ אֶת אוֹרְחָם", + "cloze_word_start": 12, + "cloze_word_end": 21, + "cloze_hint": null, + "cloze_guid": "m4S_on7!;-" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "מִשְׁתֶּה", @@ -2222119,7 +2233837,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "מִי שָׁתַל אֶת הַגְּפָנִים הָאֵלֶּה, אִם אֵין פֹּה אַף אֶחָד", + "source": "time_tunnel_77", + "match_method": "conjugated" + } + ], + "cloze": { + "text": "מִי שָׁתַל אֶת הַגְּפָנִים הָאֵלֶּה, אִם אֵין פֹּה אַף אֶחָד", + "cloze_word_start": 4, + "cloze_word_end": 10, + "cloze_hint": null, + "cloze_guid": "z1,it.SPCa" + }, + "rejected_count": 0 + }, "noun_inflection": null, "conjugation": { "in_conjugation_deck": false, @@ -2224764,7 +2236498,28 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "וְאִם מַנְיָה שֻׁתָּפָה לַגְּנֵבָה, כַּנִּרְאֶה גַּם בַּעֲלָהּ יִשְׂרָאֵל שֻׁתָּף", + "source": "time_tunnel_81", + "match_method": "direct" + }, + { + "text": "וְאִם יִשְׂרָאֵל שׁוֹחַט שֻׁתָּף לַגְּנֵבָה, כַּנִּרְאֶה גַּם לָאִרְגּוּן הַסּוֹדִי 'בַּר גִּיּוֹרָא' יֵשׁ חֵלֶק בַּגְּנֵבָה הַזּוֹ", + "source": "time_tunnel_81", + "match_method": "direct" + } + ], + "cloze": { + "text": "וְאִם מַנְיָה שֻׁתָּפָה לַגְּנֵבָה, כַּנִּרְאֶה גַּם בַּעֲלָהּ יִשְׂרָאֵל שֻׁתָּף", + "cloze_word_start": 74, + "cloze_word_end": 81, + "cloze_hint": null, + "cloze_guid": "HGTiX(%0,r" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שֻׁתָּף", @@ -2225345,7 +2237100,23 @@ ], "confusable_group": null, "confusables_guid": null, - "examples": null, + "examples": { + "vetted": [ + { + "text": "אֶפְשָׁר לְהַגִּיעַ לְשִׁתּוּפֵי פְּעֻלָּה עִם אֲחֵרִים, אֲבָל לְהִשָּׁעֵן עֲלֵיהֶם", + "source": "time_tunnel_81", + "match_method": "inflected_prefix" + } + ], + "cloze": { + "text": "אֶפְשָׁר לְהַגִּיעַ לְשִׁתּוּפֵי פְּעֻלָּה עִם אֲחֵרִים, אֲבָל לְהִשָּׁעֵן עֲלֵיהֶם", + "cloze_word_start": 20, + "cloze_word_end": 32, + "cloze_hint": null, + "cloze_guid": "j{7SB?M21;" + }, + "rejected_count": 0 + }, "noun_inflection": { "singular": { "nikkud": "שִׁתּוּף", @@ -2227391,27 +2239162,17 @@ "examples": { "vetted": [ { - "text": "כִּי הִיא זֹאת שֶׁהִקְשַׁבְתִּי לָהּ כְּשֶׁהִתְלוֹנְנָה אוֹ כְּשֶׁהִתְפָּאֲרָה אוֹ כְּשֶׁסְּתָם שָׁתְקָה", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "\" לֹא הֵבַנְתִּי אֶת תְּשׁוּבָתוֹ, אַךְ שָׁתַקְתִּי", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "\" אָז, אַחֲרֵי שְׁתִיקָה אֲרֻכָּה, הוֹסִיף: \"נָחַתִּי לֹא רָחוֹק מִכָּאן", - "source": "הנסיך הקטן", - "vetted": true + "text": "אֲבָל הַמַּבָּט שֶׁיּוּבַל נָעַץ בִּי שִׁתֵּק אוֹתִי", + "source": "time_tunnel_76", + "match_method": "conjugated" } ], "cloze": { - "text": "כִּי הִיא זֹאת שֶׁהִקְשַׁבְתִּי לָהּ כְּשֶׁהִתְלוֹנְנָה אוֹ כְּשֶׁהִתְפָּאֲרָה אוֹ כְּשֶׁסְּתָם שָׁתְקָה", - "cloze_word_start": null, - "cloze_word_end": null, + "text": "אֲבָל הַמַּבָּט שֶׁיּוּבַל נָעַץ בִּי שִׁתֵּק אוֹתִי", + "cloze_word_start": 38, + "cloze_word_end": 45, "cloze_hint": null, - "cloze_guid": "gHh+/})UE$" + "cloze_guid": "j7XGH^.>[n" }, "rejected_count": 0 }, @@ -2228156,8 +2239917,8 @@ "match_method": "direct" }, { - "text": "לָכֵן הִנַּחְתִּי עַל הַשֻּׁלְחָן הַצָּמוּד לַמִּטָּה אֶת מַכְשִׁיר הַטֶּלֶפוֹן, וְשָׁלוֹשׁ פְּעָמִים בָּדַקְתִּי שֶׁהוּא לֹא מֻשְׁתָּק", - "source": "time_tunnel_70", + "text": "\" שָׁרוֹן הִשְׁתִּיקָה אוֹתִי, \"אַתָּה רוֹצֶה שֶׁיְּגַלּוּ אוֹתָנוּ", + "source": "time_tunnel_76", "match_method": "conjugated" } ], @@ -2231288,6 +2243049,11 @@ "text": "אֵיכְשֶׁהוּ הַשְּׁנַיִם הָאֲחֵרִים תֵּאֲמוּ בֵּינֵיהֶם אֶת הַתְּנוּעוֹת", "source": "time_tunnel_78", "match_method": "conjugated" + }, + { + "text": "\"בּוֹאוּ נְתָאֵם מַסְלוּלִים,\" שָׁרוֹן מִתְקָרֶבֶת אֵלַי, מִתְנַשֶּׁפֶת, וְאַדְוָה אַחֲרֶיהָ, \"נִגְרֹם לָהֶם לְהִתְפַּצֵּל", + "source": "time_tunnel_77", + "match_method": "conjugated" } ], "cloze": { @@ -2240510,15 +2252276,15 @@ "examples": { "vetted": [ { - "text": "\"זֶה הִתְחִיל עִם הַתָּו,\" הֵשִׁיב הַכּוֹבְעָן", - "source": "alice_wonderland", - "match_method": "direct_prefix" + "text": "בַּחֹשֶךְ לֹא יָכֹלְתִּי לִרְאוֹת אֶת תָּוֵי פָּנָיו, אֲבָל הַצְּלָלִית שֶׁלּוֹ הָיְתָה צְלָלִית שֶׁל גֶּבֶר", + "source": "time_tunnel_75", + "match_method": "inflected" } ], "cloze": { - "text": "\"זֶה הִתְחִיל עִם הַתָּו,\" הֵשִׁיב הַכּוֹבְעָן", - "cloze_word_start": 18, - "cloze_word_end": 24, + "text": "בַּחֹשֶךְ לֹא יָכֹלְתִּי לִרְאוֹת אֶת תָּוֵי פָּנָיו, אֲבָל הַצְּלָלִית שֶׁלּוֹ הָיְתָה צְלָלִית שֶׁל גֶּבֶר", + "cloze_word_start": 38, + "cloze_word_end": 44, "cloze_hint": null, "cloze_guid": "G?)E!|lYQ;" }, @@ -2242570,25 +2254336,25 @@ "examples": { "vetted": [ { - "text": "\" אֲנִי רוֹצֶה לְהַגִּיד לָאִשָּׁה שֶׁכְּאֵבִים לֹא חוֹלְפִים תּוֹךְ שְׁנִיּוֹת", - "source": "מנהרת הזמן 82", + "text": "\"אוּלַי נְשַׁנֶּה נוֹשֵׂא,\" קָטַע אוֹתָם אַרְנַב־הָאָבִיב, תּוֹךְ כְּדֵי פִּהוּק", + "source": "alice_wonderland", "match_method": "inflected" }, { - "text": "תּוֹךְ שְׁנִיּוֹת כְּבָר קָשֶׁה לְהַבְחִין בָּהֶם, כִּי הַקָּהָל הָרַב מַסְתִּיר אוֹתָם", - "source": "מנהרת הזמן 82", + "text": "\" צָעַק הַגְּרִיפוֹן, תּוֹךְ נִתּוּר בָּאֲוִיר", + "source": "alice_wonderland", "match_method": "inflected" }, { - "text": "\" אֲנִי צוֹעֵק אֶל תּוֹךְ הַבּוֹר, \"אַתְּ שָׁם", - "source": "מנהרת הזמן 82", + "text": "״ שָׁרוֹן לָחֲשָׁה לִי תּוֹךְ כְּדֵי הֲלִיכָה", + "source": "time_tunnel_63", "match_method": "inflected" } ], "cloze": { - "text": "\" אֲנִי רוֹצֶה לְהַגִּיד לָאִשָּׁה שֶׁכְּאֵבִים לֹא חוֹלְפִים תּוֹךְ שְׁנִיּוֹת", - "cloze_word_start": 62, - "cloze_word_end": 68, + "text": "\"אוּלַי נְשַׁנֶּה נוֹשֵׂא,\" קָטַע אוֹתָם אַרְנַב־הָאָבִיב, תּוֹךְ כְּדֵי פִּהוּק", + "cloze_word_start": 59, + "cloze_word_end": 65, "cloze_hint": null, "cloze_guid": "jZs.V(,[ display name def _discover_epubs() -> dict[str, str]: - """Auto-discover all .epub files in EPUB_DIR, returning {filepath: display_name}.""" + """Auto-discover all .epub and .txt files in EPUB_DIR, returning {filepath: display_name}.""" if not EPUB_DIR.exists(): return {} books: dict[str, str] = {} @@ -50,6 +50,9 @@ def _discover_epubs() -> dict[str, str]: else: name = stem_stripped[:40] books[str(path)] = name + # Also discover plain-text files (e.g. Ben Yehuda downloads) + for path in sorted(EPUB_DIR.glob("*.txt")): + books[str(path)] = path.stem return books @@ -196,6 +199,20 @@ def extract_sentences_from_epub(epub_path: Path, book_name: str) -> list[dict]: return _split_into_sentences(full_text, book_name) +def extract_sentences_from_text(text_path: Path, book_name: str) -> list[dict]: + """Extract sentences from a plain-text file (e.g. Ben Yehuda downloads). + + Args: + text_path: Path to the .txt file. + book_name: Human-readable book name used as the ``source`` field. + + Returns: + List of ``{"text": str, "source": str}`` dicts. + """ + full_text = text_path.read_text(encoding="utf-8") + return _split_into_sentences(full_text, book_name) + + # ── Sentence splitting ─────────────────────────────────────────── # Hebrew sentence terminators: period, exclamation, question mark, sof pasuk @@ -480,7 +497,12 @@ def _build_nikkud_index(words: dict) -> dict[str, list[tuple[str, str]]]: for field in ("singular", "plural", "construct_singular", "construct_plural"): sub = noun.get(field) or {} - _add(sub.get("nikkud"), unique_key, "inflected") + form = sub.get("nikkud") + _add(form, unique_key, "inflected") + # Index construct forms without maqaf too — modern text often + # writes smichut as two space-separated words without maqaf + if form and form.endswith("־"): + _add(form[:-1], unique_key, "inflected") pronominal = noun.get("pronominal_suffixes") or {} for _person, sub in pronominal.items(): @@ -720,7 +742,10 @@ def run(words: dict) -> dict: for filepath, book_name in _discover_epubs().items(): path = Path(filepath) - sentences = extract_sentences_from_epub(path, book_name) + if path.suffix == ".txt": + sentences = extract_sentences_from_text(path, book_name) + else: + sentences = extract_sentences_from_epub(path, book_name) book_counts[book_name] = len(sentences) all_sentences.extend(sentences) logger.info(f" {book_name}: {len(sentences)} sentences") diff --git a/pealim_detail_scrape.py b/pealim_detail_scrape.py index 36730ba..e3c83ea 100644 --- a/pealim_detail_scrape.py +++ b/pealim_detail_scrape.py @@ -459,15 +459,29 @@ def _parse_noun_gender_mishkal(soup: BeautifulSoup) -> tuple[str, str]: """ Extract (gender, mishkal) from the PoS section of the detail page. Returns ("masculine"|"feminine"|"", mishkal_english|""). + + Pealim HTML structure: +

Noun – ketel pattern, masculine

+ The mishkal is in the tag (k-notation, e.g. "ketel") or the nm= URL param (q-notation). + Some nouns have no mishkal link:

Noun – masculine

""" gender = "" mishkal = "" - # Try various selectors that pealim uses for PoS info - pos_section = soup.find("div", class_="pos") or soup.find("p", class_="pos") + # Find the PoS

tag — on pealim detail pages it's a bare

like + # "Noun – ketel pattern, masculine" or "Adjective – katul pattern" + pos_section = None + for p in soup.find_all("p"): + text = p.get_text(" ", strip=True) + if re.match(r"^(Noun|Adjective)\b", text): + pos_section = p + break + + # Fall back to older selectors (div.pos, p.pos, div.page-header) if not pos_section: - # Look for it in the page header area - pos_section = soup.find("div", class_="page-header") + pos_section = ( + soup.find("div", class_="pos") or soup.find("p", class_="pos") or soup.find("div", class_="page-header") + ) if pos_section: text = pos_section.get_text(" ", strip=True) @@ -476,13 +490,21 @@ def _parse_noun_gender_mishkal(soup: BeautifulSoup) -> tuple[str, str]: if raw in text.lower(): gender = canonical break - # Mishkal detection: look for CaCaC-style patterns - mishkal_match = re.search(r"\b([A-Z][a-zA-Z\']+)\b", text) - if mishkal_match: - candidate = mishkal_match.group(1) - # Validate: mishkal names contain uppercase letters in CaCaC pattern - if re.match(r"^[A-Za-z\']+$", candidate) and any(c.isupper() for c in candidate): - mishkal = candidate + + # Mishkal detection: extract from YYYY pattern + # Nouns use nm= param, adjectives use am= param + mishkal_link = pos_section.find("a", href=re.compile(r"[na]m=")) + if mishkal_link: + # Prefer tag text (k-notation, matches _MISHKAL_HEBREW_Q after k→q) + i_tag = mishkal_link.find("i") + if i_tag: + mishkal = i_tag.get_text(strip=True) + else: + # Fall back to nm= URL parameter (already q-notation) + href = mishkal_link.get("href", "") + nm_match = re.search(r"[na]m=([a-zA-Z']+)", href) + if nm_match: + mishkal = nm_match.group(1) # Also check the og:description or breadcrumbs for gender if not gender: diff --git a/scripts/validate_data.py b/scripts/validate_data.py index 5ce760d..9b348ae 100644 --- a/scripts/validate_data.py +++ b/scripts/validate_data.py @@ -685,6 +685,61 @@ def test_no_stripped_form_sentence_collisions(data: dict[str, Any]) -> None: _pass(name) +def test_no_hebrew_in_meaning(data: dict[str, Any]) -> None: + """English meanings must not contain bare Hebrew text (spoils the card).""" + name = "no_hebrew_in_meaning" + errors: list[str] = [] + hebrew_re = re.compile(r"[\u05D0-\u05EA]") + + for key, entry in data.items(): + meaning = entry.get("meaning") or "" + # Apply same cleaning pipeline as apkg_builder + cleaned = re.sub(r"[\u0590-\u05FF][\u0590-\u05FF\u0591-\u05C7\s\-]*", "", meaning) + cleaned = re.sub(r"\s{2,}", " ", cleaned).strip(", ;:") + if hebrew_re.search(cleaned): + errors.append(f"[{key}] meaning still contains Hebrew after cleaning: {cleaned!r}") + + if errors: + _fail(name, errors[:20] if not _verbose else errors) + if len(errors) > 20 and not _verbose: + print(f" ... ({len(errors) - 20} more; use --verbose)") + else: + _pass(name) + + +def test_mishkal_consistency(data: dict[str, Any]) -> None: + """mishkal_hebrew must match mishkal via _mishkal_to_hebrew conversion.""" + name = "mishkal_consistency" + errors: list[str] = [] + + try: + from pealim_detail_scrape import _mishkal_to_hebrew + except ImportError: + _warn(name, ["Could not import _mishkal_to_hebrew — skipping"]) + return + + for key, entry in data.items(): + for infl_key in ("noun_inflection", "adjective_inflection"): + infl = entry.get(infl_key) + if not infl: + continue + mishkal_eng = infl.get("mishkal") or "" + mishkal_heb = infl.get("mishkal_hebrew") or "" + if mishkal_eng and mishkal_heb: + expected = _mishkal_to_hebrew(mishkal_eng) or "" + if expected and expected != mishkal_heb: + errors.append(f"[{key}] {infl_key}: {mishkal_eng}→{mishkal_heb} (expected {expected})") + if mishkal_heb and not mishkal_eng: + errors.append(f"[{key}] {infl_key}: has mishkal_hebrew but no mishkal") + + if errors: + _fail(name, errors[:20] if not _verbose else errors) + if len(errors) > 20 and not _verbose: + print(f" ... ({len(errors) - 20} more; use --verbose)") + else: + _pass(name) + + # --------------------------------------------------------------------------- # Stats summary # --------------------------------------------------------------------------- @@ -702,6 +757,11 @@ def print_stats(data: dict[str, Any]) -> None: with_guid = sum(1 for e in data.values() if e.get("vocab_legacy_guid")) in_confusable = sum(1 for e in data.values() if e.get("confusable_group")) with_shared_roots = sum(1 for e in data.values() if e.get("shared_roots")) + with_mishkal = sum( + 1 + for e in data.values() + if (e.get("noun_inflection") or {}).get("mishkal") or (e.get("adjective_inflection") or {}).get("mishkal") + ) print() print("Stats Summary") @@ -709,6 +769,7 @@ def print_stats(data: dict[str, Any]) -> None: print(f" Total entries: {total:>6}") print(f" With conjugation data: {with_conj:>6}") print(f" With noun_inflection: {with_noun_inf:>6}") + print(f" With mishkal: {with_mishkal:>6}") print(f" With vetted examples: {with_vetted:>6}") print(f" With cloze examples: {with_cloze:>6}") print(f" With images: {with_image:>6}") @@ -740,6 +801,8 @@ ALL_TESTS: dict[str, Any] = { "conjugation_form_guids": test_conjugation_form_guids, "conjugation_person_codes": test_conjugation_person_codes, "no_stripped_form_sentence_collisions": test_no_stripped_form_sentence_collisions, + "no_hebrew_in_meaning": test_no_hebrew_in_meaning, + "mishkal_consistency": test_mishkal_consistency, } diff --git a/tests/test_apkg_builder.py b/tests/test_apkg_builder.py new file mode 100644 index 0000000..9a18dbb --- /dev/null +++ b/tests/test_apkg_builder.py @@ -0,0 +1,246 @@ +"""Unit tests for apkg_builder — Sprint 15 learnings. + +Tests cover: cloze prefix preservation, Hebrew spoiler stripping from English +meanings, PoS exact matching, gender field population, and mishkal data integrity. +""" + +import json +import re +import sys +from pathlib import Path + +import pytest + +# Ensure project root is on path +sys.path.insert(0, str(Path(__file__).resolve().parent.parent)) + +from apkg_builder import _categorize_pos, _cloze_prefix_len + +# --------------------------------------------------------------------------- +# Cloze prefix preservation +# --------------------------------------------------------------------------- + + +class TestClozePrefix: + """_cloze_prefix_len must detect Hebrew prefix letters before the word.""" + + def test_single_prefix_bet(self): + # בַּתּוֹר = bet + patach + tor + assert _cloze_prefix_len("בַּתּוֹר", "תּוֹר") > 0 + + def test_single_prefix_lamed(self): + # לַמֶּלֶךְ = lamed + patach + melech + assert _cloze_prefix_len("לַמֶּלֶךְ", "מֶּלֶךְ") > 0 + + def test_two_consonant_prefix(self): + # שֶׁבַּתּוֹר = shin + bet + tor (two prefix letters) + token = "שֶׁבַּתּוֹר" + word = "תּוֹר" + prefix_len = _cloze_prefix_len(token, word) + assert prefix_len > 0 + assert token[prefix_len:].startswith(word) + + def test_no_prefix_direct_match(self): + # Word appears at start — no prefix + assert _cloze_prefix_len("תּוֹר", "תּוֹר") == 0 + + def test_empty_inputs(self): + assert _cloze_prefix_len("", "תּוֹר") == 0 + assert _cloze_prefix_len("בַּתּוֹר", "") == 0 + assert _cloze_prefix_len("", "") == 0 + + def test_non_prefix_letter_returns_zero(self): + # If the "prefix" chars aren't valid prefix letters, return 0 + # 'ת' is not in _PREFIX_LETTERS (בהוכלמש) + assert _cloze_prefix_len("תַּתּוֹר", "תּוֹר") == 0 + + def test_prefix_preserves_nikkud(self): + # Verify that prefix_len includes nikkud marks + token = "בַּתּוֹר" + word = "תּוֹר" + prefix_len = _cloze_prefix_len(token, word) + prefix = token[:prefix_len] + # Prefix should contain at least bet + nikkud mark(s) + base_letters = [c for c in prefix if "\u05d0" <= c <= "\u05ea"] + assert base_letters == ["ב"] + + +# --------------------------------------------------------------------------- +# PoS exact matching (no substring collisions) +# --------------------------------------------------------------------------- + + +class TestCategorizePos: + """_categorize_pos must not let 'Pronoun' match 'Noun'.""" + + def test_noun_exact(self): + assert _categorize_pos("Noun") == "Noun" + + def test_pronoun_is_other(self): + assert _categorize_pos("Pronoun") == "Other" + + def test_verb_exact(self): + assert _categorize_pos("Verb") == "Verb" + + def test_noun_with_dash(self): + assert _categorize_pos("Noun – masculine") == "Noun" + + def test_adjective(self): + assert _categorize_pos("Adjective") == "Adjective" + + def test_conjunction_is_other(self): + assert _categorize_pos("Conjunction") == "Other" + + +# --------------------------------------------------------------------------- +# Hebrew spoiler stripping from English meanings +# --------------------------------------------------------------------------- + + +class TestHebrewSpoilerStripping: + """English meanings must not contain Hebrew text (spoils the card).""" + + # Use the same regex from apkg_builder.py + HEBREW_STRIP_RE = re.compile(r"[\u0590-\u05FF][\u0590-\u05FF\u0591-\u05C7\s\-]*") + + @staticmethod + def _strip_hebrew(meaning: str) -> str: + """Replicate the meaning cleaning pipeline from build_vocab_deck.""" + meaning = re.sub(r"[\u0590-\u05FF][\u0590-\u05FF\u0591-\u05C7\s\-]*", "", meaning) + meaning = re.sub(r"[;:]\s*—", " —", meaning) + meaning = re.sub(r";\s*:", ";", meaning) + return re.sub(r"\s{2,}", " ", meaning).strip(", ;:") + + def test_pure_english_unchanged(self): + assert self._strip_hebrew("to eat, to consume") == "to eat, to consume" + + def test_hebrew_word_removed(self): + result = self._strip_hebrew("to eat; אכל") + assert "אכל" not in result + + def test_hebrew_with_nikkud_removed(self): + result = self._strip_hebrew("tall; גָּבוֹהַּ") + assert "גָּבוֹהַּ" not in result + assert "tall" in result + + def test_no_residual_hebrew_in_real_data(self): + """Scan actual words.json — no meaning should contain Hebrew after stripping.""" + words_path = Path(__file__).resolve().parent.parent / "data" / "words.json" + if not words_path.exists(): + pytest.skip("words.json not available") + + with open(words_path, encoding="utf-8") as f: + words = json.load(f) + + # The regex used in apkg_builder + hebrew_re = re.compile(r"[\u05D0-\u05EA]") + spoilers = [] + for key, entry in words.items(): + meaning = entry.get("meaning") or "" + cleaned = self._strip_hebrew(meaning) + if hebrew_re.search(cleaned): + spoilers.append(f"{key}: {cleaned!r}") + + assert not spoilers, f"Hebrew found in {len(spoilers)} meanings after stripping: {spoilers[:5]}" + + +# --------------------------------------------------------------------------- +# Gender field for nouns (words.json data integrity) +# --------------------------------------------------------------------------- + + +class TestGenderDataIntegrity: + """Nouns with noun_inflection should have gender populated.""" + + @pytest.fixture() + def words(self): + words_path = Path(__file__).resolve().parent.parent / "data" / "words.json" + if not words_path.exists(): + pytest.skip("words.json not available") + with open(words_path, encoding="utf-8") as f: + return json.load(f) + + def test_nouns_have_gender(self, words): + """Nouns with noun_inflection should have a valid gender.""" + missing = [] + for key, entry in words.items(): + pos = entry.get("pos") or "" + ni = entry.get("noun_inflection") + if pos.startswith("Noun") and ni: + gender = ni.get("gender") or "" + if gender not in ("masculine", "feminine", "masculine and feminine"): + missing.append(f"{key}: gender={gender!r}") + + # Allow up to 7% missing (loan words, compound words, etc.) + noun_count = sum( + 1 for e in words.values() if (e.get("pos") or "").startswith("Noun") and e.get("noun_inflection") + ) + if noun_count > 0: + pct_missing = len(missing) / noun_count + assert pct_missing < 0.07, f"{len(missing)}/{noun_count} nouns missing gender: {missing[:10]}" + + +# --------------------------------------------------------------------------- +# Mishkal data integrity +# --------------------------------------------------------------------------- + + +class TestMishkalIntegrity: + """Validate mishkal data consistency in words.json.""" + + @pytest.fixture() + def words(self): + words_path = Path(__file__).resolve().parent.parent / "data" / "words.json" + if not words_path.exists(): + pytest.skip("words.json not available") + with open(words_path, encoding="utf-8") as f: + return json.load(f) + + def test_mishkal_hebrew_matches_english(self, words): + """If mishkal and mishkal_hebrew are both set, they should correspond via _mishkal_to_hebrew.""" + from pealim_detail_scrape import _mishkal_to_hebrew + + mismatches = [] + for key, entry in words.items(): + for infl_key in ("noun_inflection", "adjective_inflection"): + infl = entry.get(infl_key) + if not infl: + continue + mishkal_eng = infl.get("mishkal") or "" + mishkal_heb = infl.get("mishkal_hebrew") or "" + if mishkal_eng and mishkal_heb: + expected = _mishkal_to_hebrew(mishkal_eng) or "" + if expected and expected != mishkal_heb: + mismatches.append(f"{key}: {mishkal_eng}→{mishkal_heb} (expected {expected})") + + assert not mismatches, f"{len(mismatches)} mishkal mismatches: {mismatches[:10]}" + + def test_mishkal_hebrew_is_hebrew(self, words): + """mishkal_hebrew must contain Hebrew characters.""" + hebrew_re = re.compile(r"[\u05D0-\u05EA]") + bad = [] + for key, entry in words.items(): + for infl_key in ("noun_inflection", "adjective_inflection"): + infl = entry.get(infl_key) + if not infl: + continue + mishkal_heb = infl.get("mishkal_hebrew") or "" + if mishkal_heb and not hebrew_re.search(mishkal_heb): + bad.append(f"{key}: mishkal_hebrew={mishkal_heb!r}") + + assert not bad, f"{len(bad)} non-Hebrew mishkal_hebrew values: {bad[:10]}" + + def test_no_orphaned_mishkal(self, words): + """If mishkal_hebrew is set, mishkal (English) must also be set.""" + orphans = [] + for key, entry in words.items(): + for infl_key in ("noun_inflection", "adjective_inflection"): + infl = entry.get(infl_key) + if not infl: + continue + mishkal_heb = infl.get("mishkal_hebrew") or "" + mishkal_eng = infl.get("mishkal") or "" + if mishkal_heb and not mishkal_eng: + orphans.append(f"{key}: has mishkal_hebrew but no mishkal") + + assert not orphans, f"{len(orphans)} orphaned mishkal_hebrew: {orphans[:10]}"