From 672d9dac4082e9610aaec3bef2e84d04d7e1d8db Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Sun, 17 Oct 2021 21:12:47 -0400 Subject: [PATCH] accent counting fix --- package.json | 6 +- scripts/get-words.js | 39 +++--- src/components/{Carousel.js => Carousel.tsx} | 16 ++- src/components/Chart.tsx | 1 - src/components/EquativeExplorer.tsx | 61 +++++--- src/components/InflectionCarousel.tsx | 30 ++-- .../subjunctive-habitual-equative.mdx | 2 +- src/content/index.ts | 72 +++++----- .../inflection/feminine-inflection.mdx | 15 +- .../inflection/inflection-patterns.mdx | 41 +++++- src/content/sandwiches/sandwiches.mdx | 2 +- src/content/verbs/crown.svg | 2 +- src/content/verbs/future-verbs.mdx | 8 +- src/content/verbs/imperative-verbs.mdx | 22 +-- src/content/verbs/present-verbs.mdx | 4 +- src/content/verbs/roots-and-stems.mdx | 4 +- src/content/verbs/subjunctive-verbs.mdx | 10 +- src/content/verbs/verb-aspect.mdx | 12 +- src/content/writing/the-five-yeys.mdx | 10 +- src/games/sub-cores/GenderGame.tsx | 100 +++++++++---- src/games/sub-cores/UnisexNounGame.tsx | 7 +- src/lib/categorize.ts | 107 ++++++++++++++ src/lib/equative-machine.ts | 12 +- .../{shuffle-array.js => shuffle-array.ts} | 10 +- src/lib/starting-word.js | 9 -- src/lib/starting-word.ts | 9 ++ src/lib/type-predicates.ts | 132 ++++++++++++++++++ src/types.d.ts | 35 ++++- src/words/nouns-adjs.ts | 3 - src/words/raw-words.ts | 3 + src/words/verbs.js | 2 - src/words/words.ts | 40 ++++++ yarn.lock | 9 ++ 33 files changed, 633 insertions(+), 202 deletions(-) rename src/components/{Carousel.js => Carousel.tsx} (84%) create mode 100644 src/lib/categorize.ts rename src/lib/{shuffle-array.js => shuffle-array.ts} (60%) delete mode 100644 src/lib/starting-word.js create mode 100644 src/lib/starting-word.ts create mode 100644 src/lib/type-predicates.ts delete mode 100644 src/words/nouns-adjs.ts create mode 100644 src/words/raw-words.ts delete mode 100644 src/words/verbs.js create mode 100644 src/words/words.ts diff --git a/package.json b/package.json index 2ba3bdc..d9b1284 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "dependencies": { "@fortawesome/fontawesome-free": "^5.15.4", "@lingdocs/lingdocs-main": "^0.2.0", - "@lingdocs/pashto-inflector": "^1.1.9", + "@lingdocs/pashto-inflector": "^1.2.7", "@testing-library/jest-dom": "^5.11.4", "@testing-library/react": "^11.1.0", "@testing-library/user-event": "^12.1.10", @@ -31,9 +31,11 @@ }, "scripts": { "start": "react-scripts start", + "start-w-user": "REACT_APP_ENV=dev react-scripts start", "build": "react-scripts build", "test": "react-scripts test", - "eject": "react-scripts eject" + "eject": "react-scripts eject", + "get-words": "node scripts/get-words.js" }, "eslintConfig": { "extends": [ diff --git a/scripts/get-words.js b/scripts/get-words.js index 1a6af26..a39a4d1 100644 --- a/scripts/get-words.js +++ b/scripts/get-words.js @@ -2,20 +2,23 @@ const fs = require("fs"); const fetch = require("node-fetch"); const { readDictionary } = require("@lingdocs/pashto-inflector"); const path = require("path"); -const verbsPath = path.join(".", "src", "words"); -const verbCollectionPath = path.join(verbsPath, "verb-categories"); -const nounAdjCollectionPath = path.join(verbsPath, "noun-adj-categories"); +const wordsPath = path.join(".", "src", "words"); +const wordsFile = "raw-words.ts"; +const verbCollectionPath = path.join(wordsPath, "verb-categories"); +const nounAdjCollectionPath = path.join(wordsPath, "noun-adj-categories"); const verbTsFiles = fs.readdirSync(verbCollectionPath); const nounAdjTsFiles = fs.readdirSync(nounAdjCollectionPath); const allVerbTsS = [...new Set(verbTsFiles.reduce((arr, fileName) => { - const TsS = require(path.join("..", verbCollectionPath, fileName)); + const TsS = require(path.join("..", verbCollectionPath, fileName)) + .filter((v, i, a) => a.findIndex(x => x.ts === v.ts) === i); return [...arr, ...TsS]; }, []))]; const allNounAdjTsS = [...new Set(nounAdjTsFiles.reduce((arr, fileName) => { - const TsS = require(path.join("..", nounAdjCollectionPath, fileName)); - return [...arr, ...TsS.map(x => ({ ...x, category: path.parse(fileName).name }))]; + const TsS = require(path.join("..", nounAdjCollectionPath, fileName)) + .filter((v, i, a) => a.findIndex(x => x.ts === v.ts) === i); + return [...arr, ...TsS]; }, []))]; console.log("getting words from dictionary..."); @@ -24,17 +27,15 @@ fetch(process.env.LINGDOCS_DICTIONARY_URL).then(res => res.arrayBuffer()).then(b const dictionary = readDictionary(buffer); const entries = dictionary.entries; // MAKE VERBS FILE - const allVerbs = getVerbsFromTsS(entries); - const content = `const verbs = ${JSON.stringify(allVerbs)}; -export default verbs;`; - fs.writeFileSync(path.join(verbsPath, "verbs.js"), content); - - // MAKE NOUN-ADJ FILE - const allNounsAdjs = getNounsAdjsFromTsS(entries); - const content1 = `import { Types as T } from "@lingdocs/pashto-inflector"; -const nounsAdjs: { entry: T.DictionaryEntry, def: string, category: string }[] = ${JSON.stringify(allNounsAdjs)}; -export default nounsAdjs;`; - fs.writeFileSync(path.join(verbsPath, "nouns-adjs.ts"), content1); + const allWords = [ + ...getVerbsFromTsS(entries), + ...getNounsAdjsFromTsS(entries), + ]; + const content = ` +// @ts-ignore +const words: Word[] = ${JSON.stringify(allWords)}; +export default words;`; + fs.writeFileSync(path.join(wordsPath, wordsFile), content); }); function getVerbsFromTsS(entries) { @@ -55,7 +56,7 @@ function getVerbsFromTsS(entries) { complement, }; } - return { entry, def: item.e }; + return { entry }; }).filter(x => x); if (missingEc.length !== 0) { console.log("Verbs missing ec:", missingEc); @@ -73,7 +74,7 @@ function getNounsAdjsFromTsS(entries) { // const firstWord = entry.e.split(",")[0].split(";")[0].split("(")[0].trim(); // console.log(firstWord, entry.f, entry.ts); // if (firstWord.contains(" ")) console.log("SPACE PRESENT"); - return { entry, def: item.e, category: item.category }; + return entry; }).filter(x => x); return b; // console.log(b.length, "number of nouns/adjs"); diff --git a/src/components/Carousel.js b/src/components/Carousel.tsx similarity index 84% rename from src/components/Carousel.js rename to src/components/Carousel.tsx index 2201e9b..7929666 100644 --- a/src/components/Carousel.js +++ b/src/components/Carousel.tsx @@ -16,7 +16,11 @@ const chevStyle = { width: "3.5rem", }; -export default function Carousel(props) { +export default function Carousel(props: { + items: Array, + render: (item: T) => { title: JSX.Element | string, body: JSX.Element | string }, + stickyTitle?: boolean, +}): JSX.Element { // console.log("pppp"); // console.log(props.items); const [current, setCurrent] = useState(0); @@ -50,11 +54,11 @@ export default function Carousel(props) { alt={"previous"} onClick={back} /> - {title ? -
{title}
- : -
{body}
- } + {title ? +
{title}
+ : +
{body}
+ } {titleRow && diff --git a/src/components/EquativeExplorer.tsx b/src/components/EquativeExplorer.tsx index cb9f2b9..8f6abc7 100644 --- a/src/components/EquativeExplorer.tsx +++ b/src/components/EquativeExplorer.tsx @@ -6,21 +6,19 @@ import { removeFVarients, getEnglishWord, } from "@lingdocs/pashto-inflector"; +import { + isUnisexNoun, +} from "../lib/type-predicates"; import { equativeMachine, assembleEquativeOutput, - AdjectiveInput, PredicateInput, - isAdjectiveInput, - EntityInput, - isUnisexNounInput, - UnisexNounInput, } from "../lib/equative-machine"; -import words from "../words/nouns-adjs"; +import { words } from "../words/words"; -function uniqueSort(arr: AdjectiveInput[]): AdjectiveInput[]; -function uniqueSort(arr: UnisexNounInput[]): UnisexNounInput[]; -function uniqueSort(arr: (AdjectiveInput | UnisexNounInput)[]): (AdjectiveInput | UnisexNounInput)[] { +function uniqueSort(arr: Adjective[]): Adjective[]; +function uniqueSort(arr: UnisexNoun[]): UnisexNoun[]; +function uniqueSort(arr: (Adjective | UnisexNoun)[]): (Adjective | UnisexNoun)[] { return arr .filter((v, i, a) => a.findIndex((e) => e.ts === v.ts) === i) .filter((e) => { @@ -37,11 +35,11 @@ function uniqueSort(arr: (AdjectiveInput | UnisexNounInput)[]): (AdjectiveInput }) .sort((a, b) => a.p.localeCompare(b.p)); } + const inputs = { - adjectives: uniqueSort(words.filter((w) => isAdjectiveInput(w.entry as EntityInput)) - .map((w) => w.entry as AdjectiveInput)), - unisexNouns: uniqueSort(words.filter((w) => isUnisexNounInput(w.entry as EntityInput)) - .map((w) => w.entry as UnisexNounInput)), + // TODO: instead - have them unique and sorted in the words.ts file + adjectives: uniqueSort(words.adjectives), + unisexNouns: uniqueSort(words.nouns.filter(x => isUnisexNoun(x)) as UnisexNoun[]), }; function makeBlock(e: PredicateInput): T.VerbBlock { @@ -60,18 +58,18 @@ function makeBlock(e: PredicateInput): T.VerbBlock { } type PredicateType = "adjectives" | "unisexNouns"; -// type SubjectType = "pronouns" | "nouns"; +type SubjectType = "pronouns" | "nouns"; // TODO: Plural nouns like shoode const defaultTs = 1527815306; -const defaultPe = inputs.adjectives.find(a => a.ts === defaultTs) as AdjectiveInput; +const defaultPe = inputs.adjectives.find(a => a.ts === defaultTs) || inputs.adjectives[0]; function EquativeExplorer() { // TODO: Use sticky state const predicateTypes: PredicateType[] = ["adjectives", "unisexNouns"]; - // const subjectTypes: SubjectType[] = ["pronouns", "nouns"]; + const subjectTypes: SubjectType[] = ["pronouns", "nouns"]; const [predicate, setPredicate] = useState(defaultTs); - // const [subjectType, setSubjectType] = useState("pronouns"); + const [subjectType, setSubjectType] = useState("pronouns"); const [predicateType, setPredicateType] = useState("adjectives"); function makeOptionLabel(e: T.DictionaryEntry): string { @@ -88,6 +86,11 @@ function EquativeExplorer() { setPredicateType(pt); setPredicate(inputs[pt][0].ts); } + function handleSubjectTypeSelect(e: React.ChangeEvent) { + const st = e.target.value as SubjectType; + setSubjectType(st); + // setPredicate(inputs[pt][0].ts); + } // @ts-ignore const pe = (inputs[predicateType].find((a: AdjectiveInput | UnisexNounInput) => ( a.ts === predicate @@ -106,7 +109,7 @@ function EquativeExplorer() { return <>
- {/*
+
-
-
*/} +
+ + +
+
@@ -160,7 +177,7 @@ function EquativeExplorer() { value={predicate} onChange={handlePredicateSelect} > - {inputs[predicateType].map((e: AdjectiveInput | UnisexNounInput) => ( + {inputs[predicateType].map((e: Adjective | UnisexNoun) => ( ))} diff --git a/src/components/InflectionCarousel.tsx b/src/components/InflectionCarousel.tsx index 943743b..08495b2 100644 --- a/src/components/InflectionCarousel.tsx +++ b/src/components/InflectionCarousel.tsx @@ -1,4 +1,3 @@ -import React from "react"; import Carousel from "./Carousel"; import { InlinePs, @@ -6,24 +5,37 @@ import { InflectionsTable, inflectWord, defaultTextOptions as opts, + getEnglishWord, } from "@lingdocs/pashto-inflector"; -function InflectionCarousel({ items }: any) { +function InflectionCarousel({ items }: { items: (Noun | Adjective)[] }) { + if (!items.length) { + return "no items for carousel"; + } return (
- { - const infOut = inflectWord(item.entry); + { + const e = getEnglishWord(item); + const english = e === undefined + ? item.e + : typeof e === "string" + ? e + : e.singular !== undefined + ? e.singular + : item.e; + const infOut = inflectWord(item); if (!infOut || !infOut.inflections) { - return ( + return { + title: "Oops! 🤷‍♂️", // @ts-ignore -
Oops! No inflections for {item.entry}
- ); + body:
Oops! No inflections for {item}
, + }; } return { // @ts-ignore title: , body:
- +
diff --git a/src/content/index.ts b/src/content/index.ts index fda92d2..4acb2e1 100644 --- a/src/content/index.ts +++ b/src/content/index.ts @@ -19,16 +19,16 @@ import * as otherEquatives from "!babel-loader!@lingdocs/mdx-loader!./equatives/ // @ts-ignore import * as equativeExplorer from "!babel-loader!@lingdocs/mdx-loader!./equatives/equative-explorer.mdx"; -// @ts-ignore -import * as nounsGender from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-gender.mdx"; -// @ts-ignore -import * as nounsUnisex from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-unisex.mdx"; -// @ts-ignore -import * as nounsPlural from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-plural.mdx"; -// @ts-ignore -import * as arabicPlurals from "!babel-loader!@lingdocs/mdx-loader!./nouns/arabic-plurals.mdx"; -// @ts-ignore -import * as bundledPlurals from "!babel-loader!@lingdocs/mdx-loader!./nouns/bundled-plurals.mdx"; +// // @ts-ignore +// import * as nounsGender from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-gender.mdx"; +// // @ts-ignore +// import * as nounsUnisex from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-unisex.mdx"; +// // @ts-ignore +// import * as nounsPlural from "!babel-loader!@lingdocs/mdx-loader!./nouns/nouns-plural.mdx"; +// // @ts-ignore +// import * as arabicPlurals from "!babel-loader!@lingdocs/mdx-loader!./nouns/arabic-plurals.mdx"; +// // @ts-ignore +// import * as bundledPlurals from "!babel-loader!@lingdocs/mdx-loader!./nouns/bundled-plurals.mdx"; // @ts-ignore import * as verbAspect from "!babel-loader!@lingdocs/mdx-loader!./verbs/verb-aspect.mdx"; @@ -105,32 +105,32 @@ const contentTree = [ }, ], }, - { - heading: "Nouns", - subdirectory: "nouns", - chapters: [ - { - import: nounsGender, - slug: "nouns-gender", - }, - { - import: nounsUnisex, - slug: "nouns-unisex", - }, - { - import: nounsPlural, - slug: "nouns-plural", - }, - { - import: arabicPlurals, - slug: "arabic-plurals", - }, - { - import: bundledPlurals, - sluge: "bundled-plurals", - }, - ], - }, + // { + // heading: "Nouns", + // subdirectory: "nouns", + // chapters: [ + // { + // import: nounsGender, + // slug: "nouns-gender", + // }, + // { + // import: nounsUnisex, + // slug: "nouns-unisex", + // }, + // { + // import: nounsPlural, + // slug: "nouns-plural", + // }, + // { + // import: arabicPlurals, + // slug: "arabic-plurals", + // }, + // { + // import: bundledPlurals, + // sluge: "bundled-plurals", + // }, + // ], + // }, { heading: "Verbs", subdirectory: "verbs", diff --git a/src/content/inflection/feminine-inflection.mdx b/src/content/inflection/feminine-inflection.mdx index ed3ac94..05bb5d2 100644 --- a/src/content/inflection/feminine-inflection.mdx +++ b/src/content/inflection/feminine-inflection.mdx @@ -25,10 +25,17 @@ import { } from "@lingdocs/pashto-inflector"; import shuffle from "../../lib/shuffle-array"; import InflectionCarousel from "../../components/InflectionCarousel"; -import words from "../../words/nouns-adjs"; +import { words } from "../../words/words"; import Link from "../../components/Link"; import Table from "../../components/Table"; import { startingWord } from "../../lib/starting-word"; +import { + isFemNoun, + isPattern6FemNoun, + isPattern7FemNoun, +} from "../../lib/type-predicates"; + +export const femNouns = words.nouns.filter(w => isFemNoun(w)); The 5 basic patterns in the last chapter work with both masculine and feminine words (nouns and adjectives). @@ -36,10 +43,6 @@ There are also a few more patterns that are only for **feminine nouns**. ## Feminine Nouns Ending in - + **Note:** This only works with **inanimate nouns**. (ie. words for people like will not inflect like this.) - -## Feminine Nouns Ending in - - diff --git a/src/content/inflection/inflection-patterns.mdx b/src/content/inflection/inflection-patterns.mdx index 13b38e1..4d3ca06 100644 --- a/src/content/inflection/inflection-patterns.mdx +++ b/src/content/inflection/inflection-patterns.mdx @@ -22,11 +22,25 @@ import { InflectionsTable, inflectWord, } from "@lingdocs/pashto-inflector"; +import { + isNounOrVerb, + isPattern1Word, + isPattern2Word, + isPattern3Word, + isPattern4Word, + isPattern5Word, + isUnisexNoun, +} from "../../lib/type-predicates"; import InflectionCarousel from "../../components/InflectionCarousel"; -import words from "../../words/nouns-adjs"; +import { words as w } from "../../words/words"; import { startingWord } from "../../lib/starting-word"; import Link from "../../components/Link"; +export const words = [ + ...w.nouns.filter(isUnisexNoun), + ...w.adjectives, +]; + In the previous chapter we talked about **why** words inflect. Now we will explain **how** words inflect. What actualy happens to them? How do they change? Like many things in Pashto, inflection can seem mysterious and intimidating. Why do the words change so much, and how!? 😩 But, we'll see that there are just a few basic patterns that the words follow, and it's not so scary or confusing after all. @@ -42,7 +56,10 @@ These words always end in: - **Masculine:** - consonant or a shwa ( vowel) - **Feminine:** - - +
@@ -74,13 +91,19 @@ Notice how it does not use the first feminine inflection - + ## 3. Words ending in a stressed This is very similar to pattern #2, but with the stress on the last syllable the feminine inflection changes. - + ## 4. Words with the "Pashtoon" pattern @@ -89,7 +112,10 @@ These words are a little irregular but you can see a common patten based around: - lengthening the 1st masculine inflection with - shortening the other forms and adding the , , endings - + **Note**: Nouns in this pattern will often only use the first inflection for the plural. Adjectives will use the 1st inflection for all 3 reasons. @@ -97,7 +123,10 @@ These words are a little irregular but you can see a common patten based around: These are also a little irregular but instead of lengthening the 1st masculine inflection they compress it as well and take just an on the end. - + ## Not all words inflect diff --git a/src/content/sandwiches/sandwiches.mdx b/src/content/sandwiches/sandwiches.mdx index f9c7eb6..88c9965 100644 --- a/src/content/sandwiches/sandwiches.mdx +++ b/src/content/sandwiches/sandwiches.mdx @@ -29,7 +29,7 @@ This last kind is probably the newest and most surprising to language learners. export function SandwichTable() { return ( -
Form
+
diff --git a/src/content/verbs/crown.svg b/src/content/verbs/crown.svg index a198e25..78b3cca 100644 --- a/src/content/verbs/crown.svg +++ b/src/content/verbs/crown.svg @@ -1,4 +1,4 @@ - + diff --git a/src/content/verbs/future-verbs.mdx b/src/content/verbs/future-verbs.mdx index fb27810..c8bee3e 100644 --- a/src/content/verbs/future-verbs.mdx +++ b/src/content/verbs/future-verbs.mdx @@ -14,17 +14,17 @@ import psmd from "../../lib/psmd"; import Carousel from "../../components/Carousel"; import Link from "../../components/Link"; import Formula from "../../components/formula/Formula"; -import verbs from "../../words/verbs"; +import { words } from "../../words/words"; import shuffleArray from "../../lib/shuffle-array"; import imperfectiveFuture from "./imperfective-future-graph.svg"; import perfectiveFuture from "./perfective-future-graph.svg"; -export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); +export const basicVerbs = words.verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); There are two kinds of future forms in Pashto: -2. Imperfective Future -1. Perfective Future +2. Imperfective Future +1. Perfective Future ## Imperfective Future diff --git a/src/content/verbs/imperative-verbs.mdx b/src/content/verbs/imperative-verbs.mdx index c8c75b4..43fe382 100644 --- a/src/content/verbs/imperative-verbs.mdx +++ b/src/content/verbs/imperative-verbs.mdx @@ -13,7 +13,7 @@ import psmd from "../../lib/psmd"; import Carousel from "../../components/Carousel"; import Link from "../../components/Link"; import Formula from "../../components/formula/Formula"; -import verbs from "../../words/verbs"; +import { words } from "../../words/words"; import shuffleArray from "../../lib/shuffle-array"; import imperfectiveImperative from "./imperfective-imperative.svg"; import perfectiveImperative from "./perfective-imperative.svg"; @@ -22,10 +22,10 @@ The imperative form is used for **giving commands** (telling people to do things There are two forms of the imperative: -1. Imperfective Imperative -2. Perfective Imperative +1. Imperfective Imperative +2. Perfective Imperative -export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); +export const basicVerbs = words.verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); ## Imperfective Imperative @@ -33,7 +33,7 @@ export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans Imperfective Stem + Imperative Ending -The **imperfective imperative** is used when you want to tell someone to something repeatedly, in general, or if you're wanting them to get going on action that will be ongoing. +The **imperfective imperative** is used when you want to tell someone to something repeatedly, in general, or if you're wanting them to get going on action that will be ongoing.
@@ -45,7 +45,7 @@ The **imperfective imperative** is used when you want Perfective Stem + Imperative Ending -The **perfective imperative** is used when you want to tell someone to do something is a one time, complete action. You are not thinking of the action as a process or as something that will be repeated, you are just telling the person to *get the action done*. +The **perfective imperative** is used when you want to tell someone to do something is a one time, complete action. You are not thinking of the action as a process or as something that will be repeated, you are just telling the person to *get the action done*.
@@ -75,15 +75,15 @@ The **perfective imperative** is used when you want For Pashto learners, having a choice between the perfective and imperfective imperatives is *not* something we are accustomed to. And so, it takes a lot of time to get used to the difference, and to choose the right form while speaking.
-
Sandwich
+
@@ -169,7 +169,7 @@ You will notice there are only two - used for addressing a plural 2nd person , either because you're talking to a group of people, or you're being extra respectful with one person.
-
-
Imperfective
+
Imperfective
w/ imperfective stem
-
Perfective
+
Perfective
w/ perfective stem
+
@@ -201,7 +201,7 @@ You will notice there are only two + Imperfective Imperative -With this form, you can't specify whether you're talking about about the action in a perfective or imperfective way. You're just saying "don't do it!", either one time or in general. +With this form, you can't specify whether you're talking about about the action in a perfective or imperfective way. You're just saying "don't do it!", either one time or in general. {[ { p: "مه راځه!", f: "má raadza", e: "Don't come!" }, diff --git a/src/content/verbs/present-verbs.mdx b/src/content/verbs/present-verbs.mdx index a8d3643..9bee68e 100644 --- a/src/content/verbs/present-verbs.mdx +++ b/src/content/verbs/present-verbs.mdx @@ -13,11 +13,13 @@ import psmd from "../../lib/psmd"; import Carousel from "../../components/Carousel"; import Link from "../../components/Link"; import Formula from "../../components/formula/Formula"; -import verbs from "../../words/verbs"; +import { words } from "../../words/words"; import shuffleArray from "../../lib/shuffle-array"; import realityGraph from "./reality-graph.svg"; import presentTime from "./present-time.svg"; +export const verbs = words.verbs; + export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); The first verb form we'll learn is the **present**. This will be the first tool in our toolbox of verb forms. 🧰 With each verb form we'll learn two things: diff --git a/src/content/verbs/roots-and-stems.mdx b/src/content/verbs/roots-and-stems.mdx index aafe092..50f7552 100644 --- a/src/content/verbs/roots-and-stems.mdx +++ b/src/content/verbs/roots-and-stems.mdx @@ -25,12 +25,14 @@ import { } from "@lingdocs/pashto-inflector"; import shuffle from "../../lib/shuffle-array"; import Carousel from "../../components/Carousel"; -import verbs from "../../words/verbs"; +import { words } from "../../words/words"; import Link from "../../components/Link"; import verbTreeBase from "./verb-tree-base.svg"; import verbTreePastPresent from "./verb-tree-past-present.svg"; import verbTreeImperfectivePerfective from "./verb-tree-imperfective-perfective.svg"; +export const verbs = words.verbs; + export const opts = defaultTextOptions; export function InfoCarousel({ items, highlighted, hidePastParticiple }) { diff --git a/src/content/verbs/subjunctive-verbs.mdx b/src/content/verbs/subjunctive-verbs.mdx index 9fde967..174a3a1 100644 --- a/src/content/verbs/subjunctive-verbs.mdx +++ b/src/content/verbs/subjunctive-verbs.mdx @@ -14,30 +14,30 @@ import psmd from "../../lib/psmd"; import Carousel from "../../components/Carousel"; import Link from "../../components/Link"; import Formula from "../../components/formula/Formula"; -import verbs from "../../words/verbs"; +import { words } from "../../words/words"; import shuffleArray from "../../lib/shuffle-array"; import presentInReality from "./present-in-reality.svg"; import subjunctiveAboveReality from "./subjunctive-above-reality.svg"; -export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); +export const basicVerbs = words.verbs.filter((v) => !v.entry.c?.includes("gramm. trans.")); The **subjunctive** is a very important verb form in Pashto, but it's often ignored by English-speaking learners because we don't really have anything like it in English. So, we need to understand what it is, and then train our brains to reach for it and use it in the right situations! ## Introducing the Subjunctive -The subjunctive is like the perfective cousin of the present form. +The subjunctive is like the perfective cousin of the present form.
-We said we use the present form to talk about things that are happening, or generally happen in reality. Naturally this was imperfective because the event is either ongoing or reccuring. +We said we use the present form to talk about things that are happening, or generally happen in reality. Naturally this was imperfective because the event is either ongoing or reccuring.
-But the subjunctive is perfective because instead of talking about something happening in reality, we're talking **about the idea of something happening or not**. We're looking about the action or event *from the outside as a whole*. +But the subjunctive is perfective because instead of talking about something happening in reality, we're talking **about the idea of something happening or not**. We're looking about the action or event *from the outside as a whole*.
diff --git a/src/content/verbs/verb-aspect.mdx b/src/content/verbs/verb-aspect.mdx index cdac918..a3f762f 100644 --- a/src/content/verbs/verb-aspect.mdx +++ b/src/content/verbs/verb-aspect.mdx @@ -17,11 +17,11 @@ Pashto verbs express actions by looking at them from two different [aspects](htt The aspects can be thought of as two different *perspectives* or *ways of looking* at an action: -
Singular
+
- - + + @@ -68,7 +68,7 @@ As we saw in the examples above, in English we are used to using these two diffe For example, when making commands in Pashto we have to choose which aspect we are talking about. In English we can only say "clean your room!" But in Pashto we have to think, are we talking about a one-time request to get something done (perfective ), or asking someone to work on something as on ongoing, repeated thing (imperfective )? -
Imperfective Perfective Imperfective Perfective
+
@@ -97,7 +97,7 @@ For example, when making commands in Pashto we have to choose which aspect we ar Or when talking about things in the future tense, we face the same choice of aspect: -
Imperfective
+
@@ -126,7 +126,7 @@ Or when talking about things in the future tense, we face the same choice of asp Even when talking about ability in the past tense, you still have to choose an aspect! -
Imperfective
+
diff --git a/src/content/writing/the-five-yeys.mdx b/src/content/writing/the-five-yeys.mdx index b9f1769..c22bd6e 100644 --- a/src/content/writing/the-five-yeys.mdx +++ b/src/content/writing/the-five-yeys.mdx @@ -16,7 +16,7 @@ The five ی letters ( +
Imperfective
@@ -196,7 +196,7 @@ Here's a chart of 3 different systems used in Pakistan, with the differences fro ### Comparison Chart
-
Letter
+
@@ -264,7 +264,7 @@ This system was used in older writings and only uses three ی letters (ے، ی، Earlier we noted that ـئـ shows up in the middle of loan words, but in Pakistan they often use it as a "y" transition before a long "ee" sound in other Pashto words as well. For example: -
AF
+
@@ -283,7 +283,7 @@ Earlier we noted that ـئـ shows up in the middle of loan words, but in Pakist Instead of the ی at the end of long-vowel dipthongs, the letter ئ is used in Pakistan. -
Afghanistan
+
@@ -314,7 +314,7 @@ In Pakistan, Pashto is more of a spoken language than a written one. Because of One very common mistake in Pakistan is the use of ے instead of ې. This might be because in the old writing system the letter ے was used for both and , but it is probably also due to a habit of inflecting words with ے as they are in Urdu. -
Afghanistan
+
diff --git a/src/games/sub-cores/GenderGame.tsx b/src/games/sub-cores/GenderGame.tsx index f7c384e..1d16226 100644 --- a/src/games/sub-cores/GenderGame.tsx +++ b/src/games/sub-cores/GenderGame.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { getRandomFromList, makeProgress, @@ -9,44 +8,87 @@ import { Types as T, Examples, defaultTextOptions as opts, + endsWith, + pashtoConsonants, + inflectWord, + isUnisexSet, } from "@lingdocs/pashto-inflector"; -import words from "../../words/nouns-adjs"; +import { words } from "../../words/words"; import { firstVariation, } from "../../lib/text-tools"; +import { + isMascNoun, + isFemNoun, + isUnisexNoun, +} from "../../lib/type-predicates"; +import { categorize } from "../../lib/categorize"; const genders: T.Gender[] = ["masc", "fem"]; -// const masc = words.filter((w) => w.entry.c === "n. m."); -// const fem = words.filter((w) => w.entry.c === "n. f."); -type CategorySet = Record; -const types: Record = { - masc: { - consonantMasc: words.filter((w) => w.category === "consonant-masc"), - eyMasc: words.filter((w) => w.category === "ey-masc"), - uMasc: words.filter((w) => w.category === "u-masc"), - yMasc: words.filter((w) => w.category === "y-masc"), - }, - fem: { - aaFem: words.filter((w) => w.category === "aa-fem"), - eeFem: words.filter((w) => w.category === "ee-fem"), - uyFem: words.filter((w) => w.category === "uy-fem"), - aFem: words.filter((w) => w.category === "a-fem"), - eFem: words.filter((w) => w.category === "e-fem"), - }, - // TODO add ې fem words and balance gender +const mascNouns = words.nouns.filter(isMascNoun); +const femNouns = [ + ...words.nouns.filter(isFemNoun), + ...getFemVersions(mascNouns.filter(isUnisexNoun)), +]; + +const types = { + masc: categorize(mascNouns, { + consonantMasc: endsWith([{ p: pashtoConsonants }, { p: "و", f: "w" }]), + eyMasc: endsWith({ p: "ی", f: "ey" }), + uMasc: endsWith({ p: "ه", f: "u" }), + yMasc: endsWith([{ p: "ای", f: "aay" }, { p: "وی", f: "ooy" }]), + }), + fem: categorize(femNouns, { + aaFem: endsWith({ p: "ا", f: "aa" }), + eeFem: endsWith({ p: "ي", f: "ee" }), + uyFem: endsWith({ p: "ۍ" }), + aFem: endsWith([{ p: "ه", f: "a" }, { p: "ح", f: "a" }]), + eFem: endsWith({ p: "ې" }), + }), }; +function getFemVersions(uns: UnisexNoun[]): FemNoun[] { + return uns.map((n) => { + const infs = inflectWord(n); + if (!infs || !infs.inflections) return undefined; + if (!isUnisexSet(infs.inflections)) return undefined; + return { + e: n.e, + ...infs.inflections.fem[0][0], + } as T.DictionaryEntry; + }).filter(n => !!n) as FemNoun[]; +} + +function flatten(o: Record): T[] { + return Object.values(o).flat(); +} + +function nounNotIn(st: Noun[]): (n: Noun | T.DictionaryEntry) => boolean { + return (n: T.DictionaryEntry) => !st.find(x => x.ts === n.ts); +} + +type CategorySet = Record; +// for some reason we need to use this CategorySet type here... 🤷‍♂️ const exceptions: Record = { masc: { - exceptionPeopleMasc: words.filter((w) => w.category === "exception-people-masc"), + exceptionMasc: mascNouns.filter(nounNotIn(flatten(types.masc))), }, fem: { - consonantFem: words.filter((w) => w.category === "consonant-fem"), - exceptionPeopleFem: words.filter((w) => w.category === "exception-people-fem"), + exceptionFem: femNouns.filter(nounNotIn(flatten(types.fem))), }, -} -// consonantFem: words.filter((w) => w.category === "consonant-fem"), +}; const amount = 35; @@ -63,8 +105,8 @@ export default function GenderGame({level, id, link}: { level: 1 | 2, id: string do { typeToUse = getRandomFromList(Object.keys(base[gender])); } while (!base[gender][typeToUse].length); - const question = getRandomFromList(base[gender][typeToUse]).entry; - base[gender][typeToUse] = base[gender][typeToUse].filter(({ entry }) => entry.ts !== question.ts); + const question = getRandomFromList(base[gender][typeToUse]); + base[gender][typeToUse] = base[gender][typeToUse].filter((entry) => entry.ts !== question.ts); yield { progress: makeProgress(i, amount), question, @@ -74,7 +116,7 @@ export default function GenderGame({level, id, link}: { level: 1 | 2, id: string function Display({ question, callback }: QuestionDisplayProps) { function check(gender: "m" | "f") { - callback(!!question.c?.includes(gender)); + callback(!nounNotIn(gender === "m" ? mascNouns : femNouns)(question)); } return
@@ -105,7 +147,7 @@ export default function GenderGame({level, id, link}: { level: 1 | 2, id: string questions={questions} id={id} Display={Display} - timeLimit={level === 1 ? 55 : 70} + timeLimit={level === 1 ? 70 : 80} Instructions={Instructions} /> }; diff --git a/src/games/sub-cores/UnisexNounGame.tsx b/src/games/sub-cores/UnisexNounGame.tsx index d06f54b..d4776ad 100644 --- a/src/games/sub-cores/UnisexNounGame.tsx +++ b/src/games/sub-cores/UnisexNounGame.tsx @@ -14,12 +14,15 @@ import { standardizePashto, // pashtoConsonants, } from "@lingdocs/pashto-inflector"; -import words from "../../words/nouns-adjs"; +import { words } from "../../words/words"; import { firstVariation, } from "../../lib/text-tools"; +import { + isUnisexNoun, +} from "../../lib/type-predicates"; -const nouns = words.filter((w) => w.category === "nouns-unisex").map(x => x.entry); +const nouns = words.nouns.filter(isUnisexNoun); // type NType = "consonant" | "eyUnstressed" | "eyStressed" | "pashtun" | "withu" // const types: Record = { // consonant: nouns.filter((w) => pashtoConsonants.includes(w.p.slice(-1))), diff --git a/src/lib/categorize.ts b/src/lib/categorize.ts new file mode 100644 index 0000000..1fde51f --- /dev/null +++ b/src/lib/categorize.ts @@ -0,0 +1,107 @@ +import { + isNoun, + isPattern1Word, + isPattern2Word, + isPattern3Word, + isPattern4Word, + isPattern5Word, + isPattern6FemNoun, +} from "./type-predicates"; + +/** + * sorts a given array of on type into a typed object of arrays of subtypes, based on predicates + * each item will only fall into one category (the first predicate it matches). + * + * Items that don't match any predicate are discarded + * + * types inforced, but it is UP TO THE USER to inforce that the type predicates do indeed determine + * that a given item belongs in the typed arrays in X + * + * for example: + * + * ```ts + * categorize( + * [2,3,11], + * { + * small: (x: number) => x < 10, + * big: (x: nuber) => x >= 10, + * }, + * ); + * ``` + * + * yields + * + * ```ts + * { small: [2, 3], big: [11] } + * ``` + * + * @param arr + * @param preds + * @returns + */ +export function categorize>( + arr: I[], + preds: Record boolean) | "leftovers"> +): X { + // 1. make the object to be returned; + const o: X = Object.keys(preds).reduce((all, curr) => ({ + ...all, + [curr]: [], + }), {}) as X; + + const lk = Object.entries(preds).find(([key, entry]) => entry === "leftovers"); + const leftoverKey = lk && lk[0]; + // 2. Fill the object with the items that fit + // go through each item in the array and add it to the category based on + // the first predicate it matches + arr.forEach((item) => { + for (const p of Object.keys(preds)) { + // @ts-ignore + if ((preds[p] !== "leftovers") && preds[p](item)) { + o[p].push(item); + return; + } + } + // doesn't fit a predicate, add it to the leftovers + if (leftoverKey) { + o[leftoverKey].push(item); + } + }); + + // 3. return the object of categorized items + return o; +} + +export function intoPatterns(words: (Noun | Adjective)[]): { + "pattern1": Pattern1Word[], + "pattern2": Pattern2Word[], + "pattern3": Pattern3Word[], + "pattern4": Pattern4Word[], + "pattern5": Pattern5Word[], + "non-inflecting": NonInflecting[], + "pattern6fem": Pattern6FemNoun[], +} { + return categorize<(Noun | Adjective), { + "pattern1": Pattern1Word[], + "pattern2": Pattern2Word[], + "pattern3": Pattern3Word[], + "pattern4": Pattern4Word[], + "pattern5": Pattern5Word[], + "non-inflecting": NonInflecting[], + "pattern6fem": Pattern6FemNoun[], + }>( + words, + { + "pattern1": isPattern1Word, + "pattern2": isPattern2Word, + "pattern3": isPattern3Word, + "pattern4": isPattern4Word, + "pattern5": isPattern5Word, + "pattern6fem": (n) => (isNoun(n) && isPattern6FemNoun(n)), + "non-inflecting": "leftovers", + }, + ); +} \ No newline at end of file diff --git a/src/lib/equative-machine.ts b/src/lib/equative-machine.ts index 876c16e..00ff305 100644 --- a/src/lib/equative-machine.ts +++ b/src/lib/equative-machine.ts @@ -26,15 +26,13 @@ export type NounInput = { plural: boolean, }; -export type AdjectiveInput = T.DictionaryEntry & { __brand: "an adjective" }; export type ParticipleInput = T.DictionaryEntry & { __brand: "a participle" }; -export type UnisexNounInput = T.DictionaryEntry & { __brand: "a unisex noun" }; export type SpecifiedUnisexNounInput = NounInput & { gender: T.Gender }; export type PersonInput = T.Person; export type EntityInput = SubjectInput | PredicateInput; export type SubjectInput = PersonInput | NounInput | ParticipleInput | SpecifiedUnisexNounInput; -export type PredicateInput = PersonInput | NounInput | AdjectiveInput | SpecifiedUnisexNounInput | UnisexNounInput | ParticipleInput; +export type PredicateInput = PersonInput | NounInput | Adjective | SpecifiedUnisexNounInput | UnisexNoun | ParticipleInput; export function equativeMachine(sub: SubjectInput, pred: PredicateInput): EquativeMachineOutput { // - english equative always agrees with subject @@ -128,7 +126,7 @@ function makePronoun(sub: T.Person): T.PsString[] { ); } -function makeUnisexNoun(e: UnisexNounInput, subjPerson: T.Person | undefined): T.PsString[] { +function makeUnisexNoun(e: UnisexNoun, subjPerson: T.Person | undefined): T.PsString[] { // reuse english from make noun - do the a / an sensitivity // if it's the predicate - get the inflection according to the subjPerson if (subjPerson !== undefined) { @@ -199,7 +197,7 @@ function makeNoun(n: NounInput | SpecifiedUnisexNounInput, entity: "subject" | " return addEnglish(english, pashto); } -function makeAdjective(e: AdjectiveInput, pers: T.Person): T.PsString[] { +function makeAdjective(e: Adjective, pers: T.Person): T.PsString[] { const inf = inflectWord(e); const english = getEnglishWord(e); if (!english) throw new Error("no english available for adjective"); @@ -303,13 +301,13 @@ export function isSpecifiedUnisexNounInput(e: EntityInput): e is SpecifiedUnisex return false; } -export function isUnisexNounInput(e: EntityInput): e is UnisexNounInput { +export function isUnisexNounInput(e: EntityInput): e is UnisexNoun { if (isPersonInput(e)) return false; if ("entry" in e) return false; return !!e.c?.includes("unisex"); } -export function isAdjectiveInput(e: EntityInput): e is AdjectiveInput { +export function isAdjectiveInput(e: EntityInput): e is Adjective { if (isPersonInput(e)) return false; if ("entry" in e) return false; if (isNounInput(e)) return false; diff --git a/src/lib/shuffle-array.js b/src/lib/shuffle-array.ts similarity index 60% rename from src/lib/shuffle-array.js rename to src/lib/shuffle-array.ts index c560150..9d19bcf 100644 --- a/src/lib/shuffle-array.js +++ b/src/lib/shuffle-array.ts @@ -1,11 +1,9 @@ // https://stackoverflow.com/a/2450976 -function shuffleArray(array) { - // for (let i = array.length - 1; i > 0; i--) { - // const j = Math.floor(Math.random() * (i + 1)); - // [array[i], array[j]] = [array[j], array[i]]; - // } - let currentIndex = array.length, temporaryValue, randomIndex; +function shuffleArray(arr: Readonly>): Array { + let currentIndex = arr.length, temporaryValue, randomIndex; + + const array = [...arr]; // While there remain elements to shuffle... while (0 !== currentIndex) { diff --git a/src/lib/starting-word.js b/src/lib/starting-word.js deleted file mode 100644 index ecae85d..0000000 --- a/src/lib/starting-word.js +++ /dev/null @@ -1,9 +0,0 @@ -import shuffle from "./shuffle-array"; - -export const startingWord = (words, category, p) => { - const ws = words.filter(w => w.category === category); - return [ - ws.find(w => w.entry.p === p), - ...shuffle(ws.filter(w => w.entry.p !== p)), - ]; -} \ No newline at end of file diff --git a/src/lib/starting-word.ts b/src/lib/starting-word.ts new file mode 100644 index 0000000..0fbf3e8 --- /dev/null +++ b/src/lib/starting-word.ts @@ -0,0 +1,9 @@ +import shuffle from "./shuffle-array"; + +export const startingWord = (words: Readonly<(Noun | Adjective)[]>, p: string) => { + const firstWord = words.find(w => w.p === p); + return [ + ...firstWord ? [firstWord] : [], + ...shuffle(words.filter(w => w.p !== p)), + ]; +} \ No newline at end of file diff --git a/src/lib/type-predicates.ts b/src/lib/type-predicates.ts new file mode 100644 index 0000000..261cf81 --- /dev/null +++ b/src/lib/type-predicates.ts @@ -0,0 +1,132 @@ +import { + pashtoConsonants, + endsWith, + countSyllables, + removeAccents, +} from "@lingdocs/pashto-inflector"; + +export function isNoun(e: Word): e is Noun { + if ("entry" in e) return false; + return !!(e.c && (e.c.includes("n. m.") || e.c.includes("n. f."))); +} + +export function isAdjective(e: Word): e is Adjective { + if ("entry" in e) return false; + return !!e.c?.includes("adj.") && !isNoun(e); +} + +export function isNounOrAdj(e: Word): e is (Noun | Adjective) { + return isNoun(e) || isAdjective(e); +} + +export function isVerb(e: Word): e is Verb { + return "entry" in e && !!e.entry.c?.startsWith("v."); +} + +export function isMascNoun(e: Noun | Adjective): e is MascNoun { + return !!e.c && e.c.includes("n. m."); +} + +export function isFemNoun(e: Noun | Adjective): e is FemNoun { + return !!e.c && e.c.includes("n. f."); +} + +export function isUnisexNoun(e: Noun | Adjective): e is UnisexNoun { + return isNoun(e) && e.c.includes("unisex"); +} + +export function isAdjOrUnisexNoun(e: Word): e is (Adjective | UnisexNoun) { + return isAdjective(e) || ( + isNoun(e) && isUnisexNoun(e) + ); +} + +/** + * shows if a noun/adjective has the basic (consonant / ه) inflection pattern + * + * @param e + * @returns + */ +export function isPattern1Word(e: Noun | Adjective): e is Pattern1Word { + if (e.noInf) return false; + if (e.infap) return false; + if (isFemNoun(e)) { + return endsWith({ p: "ه", f: "a" }, e) && (endsWith({ p: pashtoConsonants }, e) && e.c.includes("anim.")); + } + return ( + endsWith([{ p: pashtoConsonants }], e) || + endsWith([{ p: "ه", f: "u" }, { p: "ه", f: "h" }], e) || + endsWith([{ p: "ای", f: "aay" }, { p: "وی", f: "ooy" }], e) + ); +} + +/** + * shows if a noun/adjective has the unstressed ی inflection pattern + * + * @param e + * @returns + */ +export function isPattern2Word(e: Noun | Adjective): e is Pattern2Word { + if (e.noInf) return false; + if (e.infap) return false; + if (isFemNoun(e)) { + return !e.c.includes("pl.") && endsWith({ p: "ې", f: "e" }, e, true); + } + // TODO: check if it's a single syllable word, in which case it would be pattern 1 + return endsWith({ p: "ی", f: "ey" }, e, true)// && (countSyllables(e.f) > 1); +} + +/** + * shows if a noun/adjective has the stressed ی inflection pattern + * + * @param e + * @returns + */ +export function isPattern3Word(e: Noun | Adjective): e is Pattern3Word { + if (e.noInf) return false; + if (e.infap) return false; + if (isFemNoun(e)) { + return endsWith({ p: "ۍ" }, e); + } + return (countSyllables(removeAccents(e.f)) > 1) + ? endsWith({ p: "ی", f: "éy" }, e, true) + : endsWith({ p: "ی", f: "ey" }, e) +} + +/** + * shows if a noun/adjective has the "Pashtoon" inflection pattern + * + * @param e + * @returns + */ +export function isPattern4Word(e: Noun | Adjective): e is Pattern4Word { + if (e.noInf) return false; + return ( + !!(e.infap && e.infaf && e.infbp && e.infbf) + && + (e.infap.slice(1).includes("ا") && e.infap.slice(-1) === "ه") + ); +} + +/** + * shows if a noun/adjective has the shorter squish inflection pattern + * + * @param e + * @returns + */ +export function isPattern5Word(e: Noun | Adjective): e is Pattern5Word { + if (e.noInf) return false; + return ( + !!(e.infap && e.infaf && e.infbp && e.infbf) + && + (e.infaf.slice(-1) === "u") + && + !e.infap.slice(1).includes("ا") + ); +} + +export function isPattern6FemNoun(e: Noun): e is Pattern6FemNoun { + if (!isFemNoun(e)) return false; + if (e.c.includes("anim.")) return false; + return e.p.slice(-1) === "ي"; +} diff --git a/src/types.d.ts b/src/types.d.ts index d541f41..22ffc17 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -20,4 +20,37 @@ type GameRecord = { id: string, studyLink: string, Game: () => JSX.Element, -}; \ No newline at end of file +}; + +type Noun = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "a noun entry" }; +type MascNoun = Noun & { __brand2: "a masc noun entry" }; +type FemNoun = Noun & { __brand2: "a fem noun entry" }; +type UnisexNoun = MascNoun & { __brand3: "a unisex noun entry" }; +type Adjective = import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { c: string } & { __brand: "an adjective entry" }; +type Verb = { + entry: import("@lingdocs/pashto-inflector").Types.DictionaryEntry & { __brand: "a verb entry" }, + complement?: import("@lingdocs/pashto-inflector").Types.DictionaryEntry, +}; + +type RawWord = T.DictionaryEntry | { + entry: T.DictionaryEntry, + complement?: T.DictionaryEntry, +}; + +// TODO: Write type predicates for these +type Pattern1Word = (Noun | Adjective) & { __brand3: "basic inflection pattern" }; +type Pattern2Word = (Noun | Adjective) & { __brand3: "ending in unstressed ی pattern" }; +type Pattern3Word = (Noun | Adjective) & { __brand3: "ending in stressed ی pattern" }; +type Pattern4Word = (Noun | Adjective) & { __brand3: "Pashtoon pattern" }; +type Pattern5Word = (Noun | Adjective) & { __brand3: "short squish pattern" }; +type Pattern6FemNoun = FemNoun & { __brand3: "non anim. ending in ي" }; +type NonInflecting = (Noun | Adjective) & { __brand3: "non-inflecting" }; +// PLUS FEM INFLECTING + +type Word = Noun | Adjective | Verb; + +type Words = { + nouns: Noun[], + adjectives: Adjective[], + verbs: Verb[], +} \ No newline at end of file diff --git a/src/words/nouns-adjs.ts b/src/words/nouns-adjs.ts deleted file mode 100644 index 8765ead..0000000 --- a/src/words/nouns-adjs.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { Types as T } from "@lingdocs/pashto-inflector"; -const nounsAdjs: { entry: T.DictionaryEntry, def: string, category: string }[] = [{"entry":{"ts":1527816466,"i":8671,"p":"صلح","f":"sUlha","g":"sUlha","e":"peace","c":"n. f."},"def":"peace","category":"a-fem"},{"entry":{"ts":1527816589,"i":8744,"p":"طرح","f":"tarha","g":"tarha","e":"plan","c":"n. f."},"def":"plan","category":"a-fem"},{"entry":{"ts":1589023873660,"i":9398,"p":"فتح","f":"fathá","g":"fatha","e":"victory, conquest","c":"n. f."},"def":"victory, conquest","category":"a-fem"},{"entry":{"ts":1527813791,"i":189,"p":"اجازه","f":"ijaaza","g":"ijaaza","e":"permission","c":"n. f."},"def":"permission","category":"a-fem"},{"entry":{"ts":1614083533098,"i":213,"p":"اجنډه","f":"ajanDa","g":"ajanDa","e":"agenda","c":"n. f."},"def":"agenda","category":"a-fem"},{"entry":{"ts":1527816215,"i":316,"p":"اداره","f":"idaara","g":"idaara","e":"administration, management, directorate","c":"n. f."},"def":"administration, management, directorate","category":"a-fem"},{"entry":{"ts":1527812687,"i":319,"p":"ادامه","f":"idaama","g":"idaama","e":"continuation","c":"n. f."},"def":"continuation","category":"a-fem"},{"entry":{"ts":1527811661,"i":341,"p":"اډه","f":"aDa","g":"aDa","e":"base, army post, (air) port","c":"n. f."},"def":"base, army post, (air) port","category":"a-fem"},{"entry":{"ts":1527814310,"i":380,"p":"ارزونه","f":"arzawuna","g":"arzawuna","e":"evaluation, appraisal, assessment","c":"n. f."},"def":"evaluation, appraisal, assessment","category":"a-fem"},{"entry":{"ts":1527821380,"i":397,"p":"اره","f":"ara","g":"ara","e":"saw (the tool)","c":"n. f."},"def":"saw (the tool)","category":"a-fem"},{"entry":{"ts":1527822277,"i":478,"p":"اسپه","f":"aspa","g":"aspa","e":"mare, female horse; fever","c":"n. f."},"def":"mare, female horse; fever","category":"a-fem"},{"entry":{"ts":1527814922,"i":607,"p":"اضافه","f":"izaafa","g":"izaafa","e":"addition, add-on, augmentation","c":"n. f."},"def":"addition, add-on, augmentation","category":"a-fem"},{"entry":{"ts":1527822458,"i":670,"p":"افاده","f":"ifaada","g":"ifaada","e":"expression","c":"n. f."},"def":"expression","category":"a-fem"},{"entry":{"ts":1527813303,"i":683,"p":"افسانه","f":"afsaana","g":"afsaana","e":"myth, legend, fairy tale","c":"n. f."},"def":"myth, legend, fairy tale","category":"a-fem"},{"entry":{"ts":1527822494,"i":868,"p":"انانګه","f":"anaangá","g":"anaanga","e":"cheek","c":"n. f."},"def":"cheek","category":"a-fem"},{"entry":{"ts":1527817225,"i":918,"p":"اندازه","f":"andaaza","g":"andaaza","e":"measure, dimension, extent, scale","c":"n. f."},"def":"measure, dimension, extent, scale","category":"a-fem"},{"entry":{"ts":1527813759,"i":925,"p":"اندېښنه","f":"andexna","g":"andexna","e":"worry, concern, fear","c":"n. f."},"def":"worry, concern, fear","category":"a-fem"},{"entry":{"ts":1527815787,"i":1077,"p":"اوږه","f":"ooGá","g":"ooga","e":"shoulder","c":"n. f."},"def":"shoulder","category":"a-fem"},{"entry":{"ts":1527813787,"i":1092,"p":"اوښکه","f":"ooxka","g":"ooxka","e":"tear (from eye)","c":"n. f."},"def":"tear (from eye)","category":"a-fem"},{"entry":{"ts":1527819927,"i":1181,"p":"اینه","f":"éena","g":"eena","e":"liver","c":"n. f."},"def":"liver","category":"a-fem"},{"entry":{"ts":1527816261,"i":1337,"p":"بټوه","f":"baTwa","g":"baTwa","e":"wallet","c":"n. f."},"def":"wallet","category":"a-fem"},{"entry":{"ts":1527812001,"i":1482,"p":"برخه","f":"barkha","g":"barkha","e":"poriton, part, share","c":"n. f."},"def":"poriton, part, share","category":"a-fem"},{"entry":{"ts":1578009902092,"i":1513,"p":"برقه","f":"bUrqá","g":"bUrka","e":"veil, burka","c":"n. f."},"def":"veil, burka","category":"a-fem"},{"entry":{"ts":1527816994,"i":1538,"p":"برنامه","f":"barnaama","g":"barnaama","e":"program","c":"n. f."},"def":"program","category":"a-fem"},{"entry":{"ts":1579294091093,"i":1541,"p":"برنډه","f":"baranDá","g":"baranDa","e":"balcony, veranda, porch","c":"n. f."},"def":"balcony, veranda, porch","category":"a-fem"},{"entry":{"ts":1527823617,"i":1585,"p":"بزه","f":"bazá","g":"baza","e":"crime, offense, sin, guilt, fault","c":"n. f."},"def":"crime, offense, sin, guilt, fault","category":"a-fem"},{"entry":{"ts":1527823619,"i":1586,"p":"بزه","f":"bUzá","g":"bUza","e":"moth","c":"n. f."},"def":"moth","category":"a-fem"},{"entry":{"ts":1527823620,"i":1587,"p":"بزه","f":"bza","g":"bza","e":"patch (in a garment)","c":"n. f.","ec":"patch","ep":"patches"},"def":"patch (in a garment)","category":"a-fem"},{"entry":{"ts":1591026261598,"i":1588,"p":"بزه","f":"buza","g":"buza","e":"she-goat","c":"n. f."},"def":"she-goat","category":"a-fem"},{"entry":{"ts":1574188090133,"i":1598,"p":"بسپنه","f":"baspuna","g":"baspuna","e":"contribution, donation, gift, charity","c":"n. f."},"def":"contribution, donation, gift, charity","category":"a-fem"},{"entry":{"ts":1527816590,"i":1612,"p":"بسنه","f":"basuna","g":"basuna","e":"sufficiency, to have enough or get by","c":"n. f."},"def":"sufficiency, to have enough or get by","category":"a-fem"},{"entry":{"ts":1593852212828,"i":2010,"p":"بېره","f":"béra","g":"bera","e":"fear, fright","c":"n. f."},"def":"fear, fright","category":"a-fem"},{"entry":{"ts":1527815862,"i":2022,"p":"بېړه","f":"beRa","g":"beRa","e":"speed, rush, hurry, urgency","c":"n. f."},"def":"speed, rush, hurry, urgency","category":"a-fem"},{"entry":{"ts":1527815156,"i":2186,"p":"پاڼه","f":"paaNa","g":"paaNa","e":"leaf","c":"n. f.","ec":"leaf","ep":"leaves"},"def":"leaf","category":"a-fem"},{"entry":{"ts":1527813481,"i":2366,"p":"پروژه","f":"projza","g":"projza","e":"project","c":"n. f."},"def":"project","category":"a-fem"},{"entry":{"ts":1527818409,"i":2370,"p":"پروسه","f":"purosa","g":"purosa","e":"process","c":"n. f."},"def":"process","category":"a-fem"},{"entry":{"ts":1527815192,"i":2393,"p":"پرېکړه","f":"prékRa","g":"prekRa","e":"decision","c":"n. f."},"def":"decision","category":"a-fem"},{"entry":{"ts":1527822412,"i":2429,"p":"پزه","f":"páza","g":"paza","e":"nose","c":"n. f."},"def":"nose","category":"a-fem"},{"entry":{"ts":1527816124,"i":2493,"p":"پښه","f":"pxa","g":"pxa","e":"foot","c":"n. f.","ec":"foot","ep":"feet"},"def":"foot","category":"a-fem"},{"entry":{"ts":1527815155,"i":2538,"p":"پلمه","f":"palma","g":"palma","e":"pretext, excuse","c":"n. f."},"def":"pretext, excuse","category":"a-fem"},{"entry":{"ts":1566469328688,"i":2620,"p":"پنکه","f":"panka","g":"panka","e":"fan","c":"n. f."},"def":"fan","category":"a-fem"},{"entry":{"ts":1527815184,"i":2751,"p":"پوښتنه","f":"poxtuna","g":"poxtuna","e":"question","c":"n. f."},"def":"question","category":"a-fem"},{"entry":{"ts":1527822437,"i":2966,"p":"تاخچه","f":"taakhchá","g":"taakhcha","e":"shelf, niche","c":"n. f.","ec":"shelf","ep":"shelves"},"def":"shelf, niche","category":"a-fem"},{"entry":{"ts":1527814974,"i":3073,"p":"تبه","f":"tuba","g":"tuba","e":"fever","c":"n. f."},"def":"fever","category":"a-fem"},{"entry":{"ts":1527815332,"i":3673,"p":"تمه","f":"tama","g":"tama","e":"expectation","c":"n. f."},"def":"expectation","category":"a-fem"},{"entry":{"ts":1527815716,"i":3954,"p":"تیږه","f":"teeGa","g":"teega","e":"stone, rock","c":"n. f."},"def":"stone, rock","category":"a-fem"},{"entry":{"ts":1582390417084,"i":3957,"p":"تېښته","f":"téxta","g":"texta","e":"escape, flight, running away","c":"n. f."},"def":"escape, flight, running away","category":"a-fem"},{"entry":{"ts":1527822268,"i":3997,"p":"ټانګه","f":"Taangá","g":"Taanga","e":"carriage, buggy","c":"n. f."},"def":"carriage, buggy","category":"a-fem"},{"entry":{"ts":1527812014,"i":4125,"p":"ټولنه","f":"Toluna","g":"Toluna","e":"society, association, gathering, assembly, congregation","c":"n. f."},"def":"society, association, gathering, assembly, congregation","category":"a-fem"},{"entry":{"ts":1527816696,"i":4405,"p":"جمله","f":"jUmla","g":"jUmla","e":"sentence; whole, total, sum","c":"n. f."},"def":"sentence; whole, total, sum","category":"a-fem"},{"entry":{"ts":1527820504,"i":4590,"p":"ځمکه","f":"dzmúka","g":"dzmuka","e":"land, earth, ground","c":"n. f."},"def":"land, earth, ground","category":"a-fem"},{"entry":{"ts":1527815497,"i":5159,"p":"څېره","f":"tsera","g":"tsera","e":"face, picture","c":"n. f."},"def":"face, picture","category":"a-fem"},{"entry":{"ts":1527811993,"i":5307,"p":"حمله","f":"hamla","g":"hamla","e":"attack, assault","c":"n. f."},"def":"attack, assault","category":"a-fem"},{"entry":{"ts":1527812720,"i":7275,"p":"ژبه","f":"jzúba, jzíba","g":"jzuba,jziba","e":"language","c":"n. f."},"def":"language","category":"a-fem"},{"entry":{"ts":1527812052,"i":5570,"p":"خښته","f":"khuxta","g":"khuxta","e":"brick, cinder-block","c":"n. f."},"def":"brick, cinder-block","category":"a-fem"},{"entry":{"ts":1527813475,"i":6161,"p":"دقیقه","f":"daqeeqa","g":"dakeeka","e":"minute","c":"n. f.","app":"دقائق","apf":"daqaa'iq"},"def":"minute","category":"a-fem"},{"entry":{"ts":1527812542,"i":6227,"p":"دمه","f":"dama","g":"dama","e":"break, rest","c":"n. f."},"def":"break, rest","category":"a-fem"},{"entry":{"ts":1527812085,"i":6230,"p":"دنده","f":"danda","g":"danda","e":"obligation, duty, responsibility; job, work, position","c":"n. f."},"def":"obligation, duty, responsibility; job, work, position","category":"a-fem"},{"entry":{"ts":1527822847,"i":7263,"p":"ژامه","f":"jzaamá","g":"jzaama","e":"jaw","c":"n. f."},"def":"jaw","category":"a-fem"},{"entry":{"ts":1527815278,"i":8180,"p":"شپه","f":"shpa","g":"shpa","e":"night","c":"n. f."},"def":"night","category":"a-fem"},{"entry":{"ts":1527813145,"i":9610,"p":"قبیله","f":"qabeela","g":"kabeela","e":"tribe","c":"n. f.","app":"قبایل","apf":"qabaayul"},"def":"tribe","category":"a-fem"},{"entry":{"ts":1566653299904,"i":10287,"p":"کمره","f":"kamara","g":"kamara","e":"camera","c":"n. f."},"def":"camara","category":"a-fem"},{"entry":{"ts":1527812825,"i":10432,"p":"کوڅه","f":"kootsa","g":"kootsa","e":"street","c":"n. f."},"def":"street","category":"a-fem"},{"entry":{"ts":1527812756,"i":10611,"p":"کېله","f":"kela","g":"kela","e":"banana","c":"n. f."},"def":"banana","category":"a-fem"},{"entry":{"ts":1527812859,"i":11381,"p":"لوبه","f":"lóba","g":"loba","e":"game, match","c":"n. f."},"def":"game, match","category":"a-fem"},{"entry":{"ts":1527819087,"i":11561,"p":"ماته","f":"maata","g":"maata","e":"defeat","c":"n. f."},"def":"defeat","category":"a-fem"},{"entry":{"ts":1588076706989,"i":12188,"p":"مسافه","f":"masaafá","g":"masaafa","e":"distance, span","c":"n. f."},"def":"distance, span","category":"a-fem"},{"entry":{"ts":1527818358,"i":12765,"p":"مڼه","f":"maNá","g":"maNa","e":"apple","c":"n. f."},"def":"apple","category":"a-fem"},{"entry":{"ts":1527812901,"i":12941,"p":"مېده","f":"meda","g":"meda","e":"stomach","c":"n. f."},"def":"stomach","category":"a-fem"},{"entry":{"ts":1527813387,"i":13346,"p":"نښته","f":"nuxúta","g":"nuxuta","e":"battle, skirmish, wrangle, quarrel, fighting, gluing, joining","c":"n. f."},"def":"gluing, joining, wrangle, quarrel, fighting, skirmish, battle","category":"a-fem"},{"entry":{"ts":1527815110,"i":13352,"p":"نښه","f":"náxa, núxa","g":"naxa,nuxa","e":"sign, mark, indication","c":"n. f."},"def":"sign, mark, indication","category":"a-fem"},{"entry":{"ts":1527813391,"i":13627,"p":"نېټه","f":"neTa","g":"neTa","e":"date (as in time)","c":"n. f."},"def":"date (as in time)","category":"a-fem"},{"entry":{"ts":1527811429,"i":13746,"p":"هدیره","f":"hadeera","g":"hadeera","e":"graveyard, cemetery","c":"n. f."},"def":"graveyard, cemetery","category":"a-fem"},{"entry":{"ts":1527814323,"i":13747,"p":"هدیه","f":"hadiya","g":"hadiya","e":"gift, present, donation, contribution","c":"n. f."},"def":"gift, present, donation, contribution","category":"a-fem"},{"entry":{"ts":1527812655,"i":13808,"p":"هفته","f":"hafta","g":"hafta","e":"week","c":"n. f."},"def":"week","category":"a-fem"},{"entry":{"ts":1527812681,"i":13945,"p":"هوکړه","f":"hókRa","g":"hokRa","e":"agreement","c":"n. f."},"def":"agreement","category":"a-fem"},{"entry":{"ts":1578343468611,"i":14051,"p":"واڼه","f":"wáaNa","g":"waaNa","e":"tendon, sinew; hamstring","c":"n. f."},"def":"tendon, sinew; hamstring","category":"a-fem"},{"entry":{"ts":1527822717,"i":14052,"p":"واوره","f":"wáawra","g":"waawra","e":"snow","c":"n. f."},"def":"snow","category":"a-fem"},{"entry":{"ts":1527811207,"i":14152,"p":"وروځه","f":"wróodza","g":"wroodza","e":"eyebrow","c":"n. f."},"def":"eyebrow","category":"a-fem"},{"entry":{"ts":1527816375,"i":14179,"p":"ورېره","f":"wrera","g":"wrera","e":"niece; brother's daughter","c":"n. f."},"def":"niece; brother's daughter","category":"a-fem"},{"entry":{"ts":1527822259,"i":14230,"p":"وږمه","f":"waGmá","g":"wagma","e":"breeze, light wind","c":"n. f."},"def":"breeze, light wind","category":"a-fem"},{"entry":{"ts":1527814719,"i":14241,"p":"وسله","f":"wasla","g":"wasla","e":"weapon, firearm, artillery","c":"n. f."},"def":"weapons, firearms, artillery","category":"a-fem"},{"entry":{"ts":1527823717,"i":9915,"p":"کپړه","f":"kapRá","g":"kapRa","e":"cloth, fabric, material, clothing, garment","c":"n. f."},"def":"cloth, fabric, material, clothing, garment","category":"a-fem"},{"entry":{"ts":1527816257,"i":9923,"p":"کتابچه","f":"kitaabcha","g":"kitaabcha","e":"notebook, little book","c":"n. f."},"def":"notebook, little book","category":"a-fem"},{"entry":{"ts":1527820050,"i":9973,"p":"کڅوړه","f":"katsóRa","g":"katsoRa","e":"bag, purse","c":"n. f."},"def":"bag, purse","category":"a-fem"},{"entry":{"ts":1527813252,"i":10016,"p":"کرښه","f":"kurxa","g":"kurxa","e":"line, trace","c":"n. f."},"def":"line, trace","category":"a-fem"},{"entry":{"ts":1527823590,"i":10046,"p":"کره","f":"kará","g":"kara","e":"sphere, globe","c":"n. f."},"def":"sphere, globe","category":"a-fem"},{"entry":{"ts":1527823591,"i":10047,"p":"کره","f":"kára","g":"kara","e":"shovel, scraper, scoop","c":"n. f."},"def":"shovel, scraper, scoop","category":"a-fem"},{"entry":{"ts":1527815884,"i":10050,"p":"کره کتنه","f":"karakatuna","g":"karakatuna","e":"criticism","c":"n. f."},"def":"criticism","category":"a-fem"},{"entry":{"ts":1527823035,"i":10059,"p":"کروړه","f":"karoRá","g":"karoRa","e":"whip","c":"n. f."},"def":"whip","category":"a-fem"},{"entry":{"ts":1527816870,"i":10061,"p":"کرونده","f":"karwanda","g":"karwanda","e":"farmland","c":"n. f."},"def":"farmland","category":"a-fem"},{"entry":{"ts":1527817371,"i":10067,"p":"کریږه","f":"kreeGa","g":"kreega","e":"lament, mourning aloud, wail, cry (also out of hapiness)","c":"n. f."},"def":"lament, mourning aloud, wail, cry (also out of hapiness)","category":"a-fem"},{"entry":{"ts":1598119732734,"i":10069,"p":"کرېله","f":"karelá","g":"karela","e":"bitter melon","c":"n. f."},"def":"bitter melon","category":"a-fem"},{"entry":{"ts":1527820606,"i":7835,"p":"سمڅه","f":"smútsa","g":"smutsa","e":"cave, cavern","c":"n. f."},"def":"cave, cavern","category":"a-fem"},{"entry":{"ts":1527815249,"i":7875,"p":"سندره","f":"sandura","g":"sandura","e":"song, poem, verse","c":"n. f."},"def":"song, poem, verse","category":"a-fem"},{"entry":{"ts":1591034128816,"i":7907,"p":"سهوه","f":"sáhwa","g":"sahwa","e":"mistake, error, blunder, fault","c":"n. f."},"def":"mistake, error, blunder, fault","category":"a-fem"},{"entry":{"ts":1527814370,"i":7971,"p":"سوږمه","f":"soGma","g":"sogma","e":"nostril","c":"n. f."},"def":"nostril","category":"a-fem"},{"entry":{"ts":1527817498,"i":7987,"p":"سوکړه","f":"sookRá","g":"sookRa","e":"famine, starvation, serious hunger/lack of food, drought, crop failure","c":"n. f."},"def":"famine, starvation, serious hunger/lack of food, drought, crop failure","category":"a-fem"},{"entry":{"ts":1527813115,"i":331,"p":"ادعا","f":"idaa","g":"idaa","e":"claim","c":"n. f."},"def":"claim","category":"aa-fem"},{"entry":{"ts":1527818119,"i":836,"p":"امسا","f":"amsaa","g":"amsaa","e":"stick, walking staff, walking stick, crutch","c":"n. f."},"def":"stick, walking staff, walking stick, crutch","category":"aa-fem"},{"entry":{"ts":1527815043,"i":4323,"p":"جزا","f":"jazaa","g":"jazaa","e":"punishment, retribution","c":"n. f."},"def":"punishment, retribution","category":"aa-fem"},{"entry":{"ts":1527819022,"i":4987,"p":"څا","f":"tsaa","g":"tsaa","e":"well, water-hole","c":"n. f."},"def":"well, water-hole","category":"aa-fem"},{"entry":{"ts":1527814225,"i":5578,"p":"خطا","f":"khataa","g":"khataa","e":"mistake, error, blunder","c":"n. f."},"def":"mistake, error, blunder","category":"aa-fem"},{"entry":{"ts":1610797589510,"i":5599,"p":"خلا","f":"khaláa","g":"khalaa","e":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","c":"n. f."},"def":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","category":"aa-fem"},{"entry":{"ts":1527812582,"i":6134,"p":"دعا","f":"dUaa","g":"dUaa","e":"prayer","c":"n. f."},"def":"prayer","category":"aa-fem"},{"entry":{"ts":1527813415,"i":6252,"p":"دوا","f":"dawaa","g":"dawaa","e":"medicine, medication","c":"n. f."},"def":"medicine, medication","category":"aa-fem"},{"entry":{"ts":1527812272,"i":6840,"p":"رڼا","f":"raNaa","g":"raNaa","e":"light, glory","c":"n. f."},"def":"light, glory","category":"aa-fem"},{"entry":{"ts":1527823245,"i":6924,"p":"رویا","f":"rooyáa","g":"rooyaa","e":"dream, vision","c":"n. f."},"def":"dream, vision","category":"aa-fem"},{"entry":{"ts":1586596579414,"i":8436,"p":"شورا","f":"shooraa","g":"shooraa","e":"council (an institution)","c":"n. f."},"def":"council (an institution)","category":"aa-fem"},{"entry":{"ts":1527815984,"i":8561,"p":"ښکلا","f":"xkulaa","g":"xkulaa","e":"beauty","c":"n. f."},"def":"beauty","category":"aa-fem"},{"entry":{"ts":1527817670,"i":9151,"p":"غلا","f":"ghlaa","g":"ghlaa","e":"theft, robbery, stealing","c":"n. f."},"def":"theft, robbery, stealing","category":"aa-fem"},{"entry":{"ts":1527814362,"i":9215,"p":"غوا","f":"ghwaa","g":"ghwaa","e":"cow","c":"n. f."},"def":"cow","category":"aa-fem"},{"entry":{"ts":1585487002625,"i":9699,"p":"قلا","f":"qaláa","g":"kalaa","e":"castle, fort, fortress","c":"n. f."},"def":"castle, fort, fortress","category":"aa-fem"},{"entry":{"ts":1527812048,"i":11647,"p":"مانا","f":"maanaa","g":"maanaa","e":"meaning, sense, spirit","c":"n. f."},"def":"meaning, sense, spirit","category":"aa-fem"},{"entry":{"ts":1527815483,"i":12549,"p":"ملا","f":"mlaa","g":"mlaa","e":"back (body part)","c":"n. f."},"def":"back (body part)","category":"aa-fem"},{"entry":{"ts":1527812230,"i":12607,"p":"ملګرتیا","f":"malgurtiyaa","g":"malgurtiyaa","e":"friendship","c":"n. f."},"def":"friendship","category":"aa-fem"},{"entry":{"ts":1527812910,"i":12988,"p":"مېلمستیا","f":"melmastiyaa","g":"melmastiyaa","e":"hospitality; invitation, event, party, banquet, reception","c":"n. f."},"def":"hospitality; invitation, event, party, banquet, reception","category":"aa-fem"},{"entry":{"ts":1617781446945,"i":13048,"p":"ناجوړتیا","f":"naajoRtiyaa, naajoRtyaa","g":"naajoRtiyaa,naajoRtyaa","e":"sickness, illness","c":"n. f."},"def":"sickness, illness","category":"aa-fem"},{"entry":{"ts":1527815120,"i":13609,"p":"نیا","f":"niyaa","g":"niyaa","e":"grandmother","c":"n. f."},"def":"grandmother","category":"aa-fem"},{"entry":{"ts":1527811740,"i":13672,"p":"نیمګړتیا","f":"neemguRtiyaa","g":"neemguRtiyaa","e":"incompleteness, default, shortcoming","c":"n. f."},"def":"incompleteness, default, shortcoming","category":"aa-fem"},{"entry":{"ts":1527821040,"i":14054,"p":"وبا","f":"wabáa","g":"wabaa","e":"plague, cholera","c":"n. f."},"def":"plague, cholera","category":"aa-fem"},{"entry":{"ts":1527823534,"i":14192,"p":"وړتیا","f":"waRtiyáa","g":"waRtiyaa","e":"ability, capacity, capability, power, volumeá","c":"n. f."},"def":"ability, capacity, capability, power, volumeá","category":"aa-fem"},{"entry":{"ts":1610443988250,"i":14390,"p":"وېشلتیا","f":"weshiltyaa, weshiltiyaa","g":"weshiltyaa,weshiltiyaa","e":"division, distribution","c":"n. f."},"def":"division, distribution","category":"aa-fem"},{"entry":{"ts":1527816806,"i":14406,"p":"وینا","f":"waynaa","g":"waynaa","e":"speech, statement","c":"n. f."},"def":"speech, statement","category":"aa-fem"},{"entry":{"ts":1527815197,"i":2488,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},"def":"Pashtun","category":"aanu-unisex"},{"entry":{"ts":1527813148,"i":2362,"p":"پروت","f":"prot","g":"prot","e":"lying, lying down or on, located, situated","c":"adj. irreg.","infap":"پراته","infaf":"praatu","infbp":"پرت","infbf":"prat"},"def":"lying","category":"aanu-unisex"},{"entry":{"ts":1574867531681,"i":2712,"p":"پوخ","f":"pokh","g":"pokh","e":"mature, ripe, ready, cooked, able, skillful, experienced, tried, tested, true","c":"adj. irreg.","infap":"پاخه","infaf":"paakhu","infbp":"پخ","infbf":"pakh"},"def":"mature, ripe, cooked","category":"aanu-unisex"},{"entry":{"ts":1576952412644,"i":2739,"p":"پوست","f":"post","g":"post","e":"soft, tender, gentle, loosened","c":"adj. irreg.","infap":"پاسته","infaf":"paastu","infbp":"پست","infbf":"past"},"def":"soft","category":"aanu-unisex"},{"entry":{"ts":1527815366,"i":3340,"p":"تریخ","f":"treekh","g":"treekh","e":"bitter, hot, spicy (of food); terrible, miserable (of life)","c":"adj. irreg.","infap":"تراخه","infaf":"traakhu","infbp":"ترخ","infbf":"turkh"},"def":"bitter","category":"aanu-unisex"},{"entry":{"ts":1527818789,"i":3349,"p":"تریو","f":"treew","g":"treew","e":"salty, savoury, sour, acid, bitter, grumpy","c":"adj. irreg.","infap":"تراوه","infaf":"traawu","infbp":"ترو","infbf":"truw"},"def":"sour","category":"aanu-unisex"},{"entry":{"ts":1527817664,"i":3786,"p":"تود","f":"tod","g":"tod","e":"warm, hot","c":"adj.","infap":"تاوده","infaf":"taawdu","infbp":"تود","infbf":"tawd"},"def":"hot","category":"aanu-unisex"},{"entry":{"ts":1527816071,"i":5431,"p":"خپور","f":"khpor","g":"khpor","e":"spread, dispersed, publicized, published","c":"adj.","infap":"خپاره","infaf":"khpaaru","infbp":"خپر","infbf":"khpar"},"def":"spread","category":"aanu-unisex"},{"entry":{"ts":1574865652928,"i":5752,"p":"خوږ","f":"khoG","g":"khog","e":"sweet, nice","c":"adj. irreg.","infap":"خواږه","infaf":"khwaaGu","infbp":"خوږ","infbf":"khwaG"},"def":"sweet","category":"aanu-unisex"},{"entry":{"ts":1527813499,"i":6079,"p":"دروند","f":"droond","g":"droond","e":"heavy; respectable, reliable, serious","c":"adj.","infap":"درانه","infaf":"draanu","infbp":"درن","infbf":"dran"},"def":"heavy","category":"aanu-unisex"},{"entry":{"ts":1527813943,"i":6597,"p":"راستون","f":"raastoon","g":"raastoon","e":"returned, come back","c":"adj.","infap":"راستانه","infaf":"raastaanu","infbp":"راستن","infbf":"raastan"},"def":"returned, come back","category":"aanu-unisex"},{"entry":{"ts":1576596860977,"i":6919,"p":"روڼ","f":"rooN","g":"rooN","e":"shiny, bright, clear, enlightened, transparent","c":"adj. irreg.","infap":"راڼه","infaf":"raaNu","infbp":"رڼ","infbf":"raN"},"def":"clear, bright","category":"aanu-unisex"},{"entry":{"ts":1527811971,"i":6978,"p":"ړوند","f":"Roond","g":"Roond","e":"blind","c":"adj.","infap":"ړانده","infaf":"Raandu","infbp":"ړند","infbf":"Rand"},"def":"blind","category":"aanu-unisex"},{"entry":{"ts":1527815451,"i":7191,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},"def":"old","category":"aanu-unisex"},{"entry":{"ts":1527815300,"i":7468,"p":"سپور","f":"spor","g":"spor","e":"mounted, rider, riding","c":"adj.","infap":"سپاره","infaf":"spaaru","infbp":"سپر","infbf":"spar"},"def":"rider, mounted","category":"aanu-unisex"},{"entry":{"ts":1527819505,"i":7554,"p":"ستون","f":"stoon","g":"stoon","e":"returned, returning, being (in a place after returning, coming back etc.), delayed, late, lagging","c":"adj. irreg.","infap":"ستانه","infaf":"staanu","infbp":"ستن","infbf":"stan"},"def":"being (in a place after returning, coming back etc.)","category":"aanu-unisex"},{"entry":{"ts":1600080053835,"i":7947,"p":"سور","f":"sor","g":"sor","e":"riding, mounted (Pakistani)","c":"adj.","infap":"سواره","infaf":"swaaru","infbp":"سور","infbf":"swar"},"def":"riding, mounted","category":"aanu-unisex"},{"entry":{"ts":1527813068,"i":7965,"p":"سوړ","f":"soR","g":"soR","e":"cold, cool; patient; lazy; inactive; satisfied","c":"adj.","infap":"ساړه","infaf":"saaRu","infbp":"سړ","infbf":"saR"},"def":"cold","category":"aanu-unisex"},{"entry":{"ts":1575924767041,"i":8182,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},"def":"shepherd","category":"aanu-unisex"},{"entry":{"ts":1527813172,"i":10496,"p":"کوږ","f":"koG","g":"kog","e":"crooked, bent","c":"adj.","infap":"کاږه","infaf":"kaaGu","infbp":"کږ","infbf":"kaG"},"def":"bent","category":"aanu-unisex"},{"entry":{"ts":1527811973,"i":10578,"p":"کوڼ","f":"kooN","g":"kooN","e":"deaf","c":"adj.","infap":"کاڼه","infaf":"kaaNu","infbp":"کڼ","infbf":"kaN"},"def":"deaf","category":"aanu-unisex"},{"entry":{"ts":1527817123,"i":11461,"p":"لومد","f":"loomd","g":"loomd","e":"damp, wet, moist, humid","c":"adj.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1527817117,"i":11467,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لانده","infaf":"laandu","infbp":"لند","infbf":"land"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1576889120767,"i":11468,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},"def":"wet","category":"aanu-unisex"},{"entry":{"ts":1527812927,"i":12852,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},"def":"full, satisfied","category":"aanu-unisex"},{"entry":{"ts":1527812908,"i":12989,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},"def":"guest","category":"aanu-unisex"},{"entry":{"ts":1579463171333,"i":13556,"p":"نوږ","f":"noG","g":"nog","e":"cleansed, cleaned, purified","c":"adj.","infap":"ناږه","infaf":"naaGu","infbp":"نږ","infbf":"naG"},"def":"cleansed","category":"aanu-unisex"},{"entry":{"ts":1576113803291,"i":14346,"p":"ووړ","f":"woR","g":"woR","e":"small, little","c":"adj. irreg.","infap":"واړه","infaf":"waaRu","infbp":"وړ","infbf":"waR"},"def":"small","category":"aanu-unisex"},{"entry":{"ts":1527819244,"i":10449,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},"def":"host","category":"aanu-unisex"},{"entry":{"ts":1527812908,"i":12989,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},"def":"guest","category":"aanu-unisex"},{"entry":{"ts":1527814150,"i":11039,"p":"لار","f":"laar","g":"laar","e":"road, way, path","c":"n. f."},"def":"road, way, path","category":"basic-fem"},{"entry":{"ts":1527815417,"i":14122,"p":"ورځ","f":"wradz","g":"wradz","e":"day","c":"n. f."},"def":"day","category":"basic-fem"},{"entry":{"ts":1527812922,"i":12922,"p":"میاشت","f":"miyaasht","g":"miyaasht","e":"month","c":"n. f."},"def":"month","category":"basic-fem"},{"entry":{"ts":1527823306,"i":5117,"p":"څنګل","f":"tsangúl","g":"tsangul","e":"elbow","c":"n. f."},"def":"elbow","category":"basic-fem"},{"entry":{"ts":1527813824,"i":9366,"p":"غېږ","f":"gheG","g":"gheg","e":"bosom, breast; wrestling","c":"n. f."},"def":"bosom, breast; wrestling","category":"basic-fem"},{"entry":{"ts":1527820524,"i":5058,"p":"څرمن","f":"tsarmún","g":"tsarmun","e":"pelt, skin, hide, leather","c":"n. f."},"def":"pelt, skin, hide, leather","category":"basic-fem"},{"entry":{"ts":1527814147,"i":1567,"p":"بړستن","f":"bRastun","g":"bRastun","e":"blanket, coving, quilt","c":"n. f."},"def":"blanket, coving, quilt","category":"basic-fem"},{"entry":{"ts":1527818707,"i":3249,"p":"ترخځ","f":"turkhúdz","g":"turkhudz","e":"wedge; gusset (in a shirt)","c":"n. f."},"def":"wedge; gusset (in a shirt)","category":"basic-fem"},{"entry":{"ts":1527822792,"i":3825,"p":"توشک","f":"toshák","g":"toshak","e":"narrow mattress used as a bed or a couch, reversible rug","c":"n. f.","ec":"toshak"},"def":"narrow mattress used as a bed or a couch, reversible rug","category":"basic-fem"},{"entry":{"ts":1527813294,"i":7330,"p":"ږمنځ","f":"Gmundz","g":"gmundz","e":"comb","c":"n. f."},"def":"comb","category":"basic-fem"},{"entry":{"ts":1527811580,"i":7541,"p":"ستن","f":"stun","g":"stun","e":"needle, injection; pillar, mast","c":"n. f."},"def":"needle, injection; pillar, mast","category":"basic-fem"},{"entry":{"ts":1527815779,"i":10322,"p":"کنځل","f":"kundzul","g":"kundzul","e":"swearing, name-calling, verbal abuse, bad language","c":"n. f."},"def":"swearing, name-calling, verbal abuse, bad language","category":"basic-fem"},{"entry":{"ts":1527817456,"i":11321,"p":"لمن","f":"lamun","g":"lamun","e":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","c":"n. f."},"def":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","category":"basic-fem"},{"entry":{"ts":1527822725,"i":11479,"p":"لوېشت","f":"lwesht","g":"lwesht","e":"span","c":"n. f."},"def":"span","category":"basic-fem"},{"entry":{"ts":1527811609,"i":12748,"p":"منګل","f":"mangul","g":"mangul","e":"claw, paw","c":"n. f."},"def":"claw, paw","category":"basic-fem"},{"entry":{"ts":1527821684,"i":14177,"p":"ورېځ","f":"wurédz","g":"wuredz","e":"cloud","c":"n. f."},"def":"cloud","category":"basic-fem"},{"entry":{"ts":1527812432,"i":66,"p":"آسمان","f":"aasmaan","g":"aasmaan","e":"sky, heaven","c":"n. m."},"def":"sky, heaven","category":"basic-masc"},{"entry":{"ts":1527812431,"i":83,"p":"آم","f":"aam","g":"aam","e":"mango","c":"n. m."},"def":"mango","category":"basic-masc"},{"entry":{"ts":1527812434,"i":99,"p":"آواز","f":"aawaaz","g":"aawaaz","e":"sound, voice","c":"n. m."},"def":"sound, voice","category":"basic-masc"},{"entry":{"ts":1527816724,"i":140,"p":"اتاق","f":"wutáaq, Utáaq","g":"wutaak,Utaak","e":"room, chamber","c":"n. m.","diacExcept":true},"def":"room, chamber","category":"basic-masc"},{"entry":{"ts":1527811859,"i":142,"p":"اتحاد","f":"itihaad","g":"itihaad","e":"union, alliance","c":"n. m."},"def":"union, alliance","category":"basic-masc"},{"entry":{"ts":1527822033,"i":145,"p":"اتصال","f":"ittisáal","g":"ittisaal","e":"joining, connection, contiguity, junction","c":"n. m."},"def":"joining, connection, contiguity, junction","category":"basic-masc"},{"entry":{"ts":1527811858,"i":146,"p":"اتفاق","f":"itifaaq","g":"itifaak","e":"unity, alliance, agreement, understanding, consent; coincidence","c":"n. m."},"def":"unity, alliance, agreement, understanding, consent; coincidence","category":"basic-masc"},{"entry":{"ts":1527813560,"i":166,"p":"اتهام","f":"itihaam","g":"itihaam","e":"accusation, charge, indictment","c":"n. m.","app":"اتهامات","apf":"itihaamáat"},"def":"accusation, charge, indictment","category":"basic-masc"},{"entry":{"ts":1527812105,"i":234,"p":"احترام","f":"ihtiraam","g":"ihtiraam","e":"respect, honor, esteem, deference","c":"n. m."},"def":"respect, honor, esteem, deference","category":"basic-masc"},{"entry":{"ts":1527819653,"i":240,"p":"احتمال","f":"ihtimaal","g":"ihtimaal","e":"possibility, probability, likelihood","c":"n. m."},"def":"possibility, probability, likelihood","category":"basic-masc"},{"entry":{"ts":1527812689,"i":242,"p":"احتیاج","f":"ihtiyaaj","g":"ihtiyaaj","e":"need, requirement","c":"n. m.","app":"احتیاجات","apf":"ihtiyaajáat"},"def":"need, requirement","category":"basic-masc"},{"entry":{"ts":1527812690,"i":244,"p":"احتیاط","f":"ihtiyaat","g":"ihtiyaat","e":"caution","c":"n. m."},"def":"caution","category":"basic-masc"},{"entry":{"ts":1527813782,"i":246,"p":"احساس","f":"ahsaas","g":"ahsaas","e":"feeling, sensation, emotion","c":"n. m."},"def":"feeling, sensation, emotion","category":"basic-masc"},{"entry":{"ts":1527817303,"i":630,"p":"اعتراض","f":"itiraaz","g":"itiraaz","e":"objection, protest","c":"n. m."},"def":"objection, protest","category":"basic-masc"},{"entry":{"ts":1527813418,"i":667,"p":"اغېز","f":"aghez","g":"aghez","e":"influence, effect, affect, action","c":"n. m."},"def":"influence, effect, affect, action","category":"basic-masc"},{"entry":{"ts":1527816625,"i":672,"p":"افت","f":"afat","g":"afat","e":"disaster","c":"n. m."},"def":"disaster","category":"basic-masc"},{"entry":{"ts":1527813558,"i":761,"p":"الزام","f":"ilzaam","g":"ilzaam","e":"accusation, charge, blame","c":"n. m."},"def":"accusation, charge, blame","category":"basic-masc"},{"entry":{"ts":1527815388,"i":853,"p":"امید","f":"Umeed","g":"Umeed","e":"hope, expectation","c":"n. m."},"def":"hope, expectation","category":"basic-masc"},{"entry":{"ts":1527812453,"i":908,"p":"انځور","f":"andzoor","g":"andzoor","e":"picture, painting, image","c":"n. m."},"def":"picture, painting, image","category":"basic-masc"},{"entry":{"ts":1527813827,"i":1034,"p":"اور","f":"or","g":"or","e":"fire, flame","c":"n. m."},"def":"fire, flame","category":"basic-masc"},{"entry":{"ts":1527814787,"i":1236,"p":"باران","f":"baaraan","g":"baaraan","e":"rain","c":"n. m."},"def":"rain","category":"basic-masc"},{"entry":{"ts":1527817293,"i":1298,"p":"بام","f":"baam","g":"baam","e":"roof","c":"n. m."},"def":"roof","category":"basic-masc"},{"entry":{"ts":1527814849,"i":1302,"p":"بانجن","f":"baanjan","g":"baanjan","e":"eggplant","c":"n. m."},"def":"eggplant","category":"basic-masc"},{"entry":{"ts":1527814106,"i":1359,"p":"بحران","f":"bUhraan","g":"bUhraan","e":"crisis","c":"n. m."},"def":"crisis","category":"basic-masc"},{"entry":{"ts":1527814885,"i":1361,"p":"بخت","f":"bakht","g":"bakht","e":"fortune, luck, fate","c":"n. m."},"def":"fortune, luck, fate","category":"basic-masc"},{"entry":{"ts":1527811281,"i":1754,"p":"بڼ","f":"baN","g":"baN","e":"garden","c":"n. m."},"def":"garden","category":"basic-masc"},{"entry":{"ts":1624039195280,"i":1817,"p":"بورس","f":"boors","g":"boors","e":"scholarship","c":"n. m."},"def":"scholarship","category":"basic-masc"},{"entry":{"ts":1527816877,"i":2009,"p":"بیرغ","f":"beyragh","g":"beyragh","e":"flag","c":"n. m."},"def":"flag","category":"basic-masc"},{"entry":{"ts":1527820423,"i":2140,"p":"پاسپورټ","f":"paasporT","g":"paasporT","e":"passport","c":"n. m."},"def":"passport","category":"basic-masc"},{"entry":{"ts":1527813224,"i":2511,"p":"پل","f":"pUl","g":"pUl","e":"bridge","c":"n. m.","infap":"پله","infaf":"plu","infbp":"پل","infbf":"pl"},"def":"bridge","category":"basic-masc"},{"entry":{"ts":1527813480,"i":2520,"p":"پلان","f":"plaan","g":"plaan","e":"plan","c":"n. m."},"def":"plan","category":"basic-masc"},{"entry":{"ts":1527815199,"i":2525,"p":"پلاو","f":"pulaaw","g":"pulaaw","e":"pulaaw (central-asian/middle-eastern rice dish), pilaf","c":"n. m."},"def":"central-asian/middle-eastern rice dish, pilaf","category":"basic-masc"},{"entry":{"ts":1527815185,"i":2716,"p":"پور","f":"por","g":"por","e":"loan, debt","c":"n. m."},"def":"loan, debt","category":"basic-masc"},{"entry":{"ts":1527815176,"i":2795,"p":"پیاز","f":"piyaaz","g":"piyaaz","e":"onion","c":"n. m."},"def":"onion","category":"basic-masc"},{"entry":{"ts":1527815171,"i":2925,"p":"پیل","f":"peyl","g":"peyl","e":"start","c":"n. m."},"def":"start","category":"basic-masc"},{"entry":{"ts":1527816610,"i":2962,"p":"تاج","f":"taaj","g":"taaj","e":"crown, crest","c":"n. m."},"def":"crown, crest","category":"basic-masc"},{"entry":{"ts":1527822373,"i":2994,"p":"تاک","f":"taak","g":"taak","e":"vine; mouthful","c":"n. m."},"def":"vine; mouthful","category":"basic-masc"},{"entry":{"ts":1527815326,"i":3039,"p":"تایید","f":"taayeed","g":"taayeed","e":"confirmation","c":"n. m."},"def":"confirmation","category":"basic-masc"},{"entry":{"ts":1527815357,"i":3157,"p":"تخم","f":"tUkhum","g":"tUkhum","e":"seed","c":"n. m."},"def":"seed","category":"basic-masc"},{"entry":{"ts":1527821586,"i":3247,"p":"ترحم","f":"tarahhÚm","g":"tarahhUm","e":"pity, sympathy","c":"n. m."},"def":"pity, sympathy","category":"basic-masc"},{"entry":{"ts":1527811389,"i":3458,"p":"تصویر","f":"tasweer","g":"tasweer","e":"picture","c":"n. m.","app":"تصاویر","apf":"tasaaweer"},"def":"picture","category":"basic-masc"},{"entry":{"ts":1527814679,"i":3463,"p":"تضمین","f":"tazmeen","g":"tazmeen","e":"guarantee, insurance, security","c":"n. m."},"def":"guarantee, insurance, security","category":"basic-masc"},{"entry":{"ts":1527814258,"i":3550,"p":"تقریر","f":"taqreer","g":"takreer","e":"speech, lecture","c":"n. m."},"def":"speech, lecture","category":"basic-masc"},{"entry":{"ts":1527821670,"i":3558,"p":"تقلب","f":"taqalÚb","g":"takalUb","e":"cheating, deception, fraud, forgery","c":"n. m."},"def":"cheating, deception, fraud, forgery","category":"basic-masc"},{"entry":{"ts":1527811602,"i":3585,"p":"تکل","f":"takál","g":"takal","e":"attempt, aspiration, intention, effort","c":"n. m."},"def":"attempt, aspiration, intention, effort","category":"basic-masc"},{"entry":{"ts":1527813398,"i":3595,"p":"تګ","f":"tug, tag","g":"tug,tag","e":"movement, motion, going","c":"n. m."},"def":"movement, motion, going","category":"basic-masc"},{"entry":{"ts":1527822126,"i":3635,"p":"تلین","f":"tleen","g":"tleen","e":"anniversary","c":"n. m."},"def":"anniversary","category":"basic-masc"},{"entry":{"ts":1527811308,"i":3639,"p":"تماس","f":"tamaas","g":"tamaas","e":"contact, touch","c":"n. m."},"def":"contact, touch","category":"basic-masc"},{"entry":{"ts":1527817900,"i":3682,"p":"تن","f":"tan","g":"tan","e":"body, flesh","c":"n. m."},"def":"body, flesh","category":"basic-masc"},{"entry":{"ts":1527821061,"i":3685,"p":"تناقض","f":"tanaaqÚz","g":"tanaakUz","e":"contrast, opposition, contradiction","c":"n. m."},"def":"contrast, opposition, contradiction","category":"basic-masc"},{"entry":{"ts":1527822387,"i":3686,"p":"تناو","f":"tanáaw","g":"tanaaw","e":"rope, cord; a measurement of ground or distances","c":"n. m."},"def":"rope, cord; a measurement of ground or distances","category":"basic-masc"},{"entry":{"ts":1527818995,"i":3697,"p":"تندر","f":"tandúr","g":"tandur","e":"lightning","c":"n. m."},"def":"lightning","category":"basic-masc"},{"entry":{"ts":1527815362,"i":3772,"p":"توپ","f":"top","g":"top","e":"ball; (cannon) ball","c":"n. m."},"def":"ball; (cannon) ball","category":"basic-masc"},{"entry":{"ts":1527816820,"i":3852,"p":"توک","f":"took","g":"took","e":"spit","c":"n. m."},"def":"spit","category":"basic-masc"},{"entry":{"ts":1527816520,"i":4001,"p":"ټبر","f":"Tabar","g":"Tabar","e":"family, clan, tribe, people","c":"n. m."},"def":"family, clan, tribe, people","category":"basic-masc"},{"entry":{"ts":1527811348,"i":4002,"p":"ټپ","f":"Tap","g":"Tap","e":"wound","c":"n. m."},"def":"wound","category":"basic-masc"},{"entry":{"ts":1527819566,"i":4039,"p":"ټکر","f":"TUkúr","g":"TUkur","e":"piece, part; cloth, fabric","c":"n. m."},"def":"piece, part; cloth, fabric","category":"basic-masc"},{"entry":{"ts":1527812213,"i":4392,"p":"جمات","f":"jUmaat","g":"jUmaat","e":"mosque","c":"n. m."},"def":"mosque","category":"basic-masc"},{"entry":{"ts":1527811705,"i":4500,"p":"جوړښت","f":"joRuxt","g":"joRuxt","e":"structure","c":"n. m."},"def":"structure","category":"basic-masc"},{"entry":{"ts":1527814058,"i":4614,"p":"ځواب","f":"dzawaab","g":"dzawaab","e":"answer, reply","c":"n. m."},"def":"answer, reply","category":"basic-masc"},{"entry":{"ts":1527816887,"i":4615,"p":"ځواک","f":"dzwaak","g":"dzwaak","e":"life, existence, energy, force","c":"n. m."},"def":"life, existence, energy, force","category":"basic-masc"},{"entry":{"ts":1527814649,"i":4927,"p":"چوک","f":"chok","g":"chok","e":"market square, crossroads, paved area in front of entrance","c":"n. m."},"def":"market square, crossroads, paved area in front of entrance","category":"basic-masc"},{"entry":{"ts":1527815065,"i":5027,"p":"څټک","f":"tsaTak, tsTuk","g":"tsaTak,tsTuk","e":"hammer","c":"n. m."},"def":"hammer","category":"basic-masc"},{"entry":{"ts":1527814589,"i":5116,"p":"څنګ","f":"tsang","g":"tsang","e":"side","c":"n. m."},"def":"side","category":"basic-masc"},{"entry":{"ts":1527816228,"i":5212,"p":"حد","f":"had","g":"had","e":"boundary, limit, extent","c":"n. m.","app":"حدود","apf":"hUdood"},"def":"boundary, limit, extent","category":"basic-masc"},{"entry":{"ts":1527813749,"i":5285,"p":"حکومت","f":"hUkoomat","g":"hUkoomat","e":"government, reign, rule","c":"n. m."},"def":"government, reign, rule","category":"basic-masc"},{"entry":{"ts":1527814125,"i":5288,"p":"حل","f":"hal","g":"hal","e":"solution","c":"n. m."},"def":"solution","category":"basic-masc"},{"entry":{"ts":1527818703,"i":5432,"p":"خت","f":"khut","g":"khut","e":"shirt","c":"n. m."},"def":"shirt","category":"basic-masc"},{"entry":{"ts":1527813804,"i":5694,"p":"خوب","f":"khob","g":"khob","e":"sleep, dream","c":"n. m."},"def":"sleep, dream","category":"basic-masc"},{"entry":{"ts":1527812815,"i":5815,"p":"خوندیتوب","f":"khwundeetob","g":"khwundeetob","e":"safety, security","c":"n. m."},"def":"safety, security","category":"basic-masc"},{"entry":{"ts":1527813763,"i":6352,"p":"دین","f":"deen","g":"deen","e":"religion, faith","c":"n. m."},"def":"religion, faith","category":"basic-masc"},{"entry":{"ts":1527811517,"i":7758,"p":"سفر","f":"safar","g":"safar","e":"journey, travel","c":"n. m."},"def":"journey, travel","category":"basic-masc"},{"entry":{"ts":1527815389,"i":8952,"p":"عمر","f":"Úmur","g":"Umur","e":"age, life","c":"n. m."},"def":"age, life","category":"basic-masc"},{"entry":{"ts":1527816746,"i":9016,"p":"غاښ","f":"ghaax","g":"ghaax","e":"tooth","c":"n. m.","ec":"tooth","ep":"teeth"},"def":"tooth","category":"basic-masc"},{"entry":{"ts":1527812631,"i":9284,"p":"غوږ","f":"ghwuG, ghwaG","g":"ghwug,ghwag","e":"ear","c":"n. m."},"def":"ear","category":"basic-masc"},{"entry":{"ts":1527812265,"i":9446,"p":"فرمان","f":"farmaan","g":"farmaan","e":"decree, order","c":"n. m."},"def":"decree, order","category":"basic-masc"},{"entry":{"ts":1527817205,"i":9519,"p":"فلم","f":"film","g":"film","e":"film, movie","c":"n. m."},"def":"film, movie","category":"basic-masc"},{"entry":{"ts":1527812727,"i":9854,"p":"کال","f":"kaal","g":"kaal","e":"year","c":"n. m."},"def":"year","category":"basic-masc"},{"entry":{"ts":1527812817,"i":9920,"p":"کتاب","f":"kitáab","g":"kitaab","e":"book","c":"n. m."},"def":"book","category":"basic-masc"},{"entry":{"ts":1527812611,"i":10646,"p":"ګام","f":"gaam","g":"gaam","e":"step, move","c":"n. m."},"def":"step, move","category":"basic-masc"},{"entry":{"ts":1527812641,"i":10810,"p":"ګل","f":"gUl","g":"gUl","e":"rose, flower","c":"n. m."},"def":"rose, flower","category":"basic-masc"},{"entry":{"ts":1527812650,"i":10896,"p":"ګواښ","f":"gwaax","g":"gwaax","e":"threat, danger, challeng","c":"n. m."},"def":"threat, danger, challeng","category":"basic-masc"},{"entry":{"ts":1527813521,"i":11559,"p":"ماتم","f":"maatam","g":"maatam","e":"mourning, grief, grieving, deep sorrow","c":"n. m."},"def":"mourning, grief, grieving, deep sorrow","category":"basic-masc"},{"entry":{"ts":1527812176,"i":11604,"p":"ماښام","f":"maaxaam","g":"maaxaam","e":"evening","c":"n. m."},"def":"evening","category":"basic-masc"},{"entry":{"ts":1527813601,"i":12081,"p":"مرګ","f":"marg","g":"marg","e":"death","c":"n. m."},"def":"death","category":"basic-masc"},{"entry":{"ts":1527817691,"i":12210,"p":"مستقبل","f":"mUstaqbil","g":"mUstakbil","e":"future","c":"n. m."},"def":"future","category":"basic-masc"},{"entry":{"ts":1527811866,"i":13437,"p":"نقصان","f":"nUqsaan","g":"nUksaan","e":"damage, defect, loss","c":"n. m."},"def":"damage, defect, loss","category":"basic-masc"},{"entry":{"ts":1527815122,"i":13591,"p":"نوم","f":"noom","g":"noom","e":"name","c":"n. m.","ppp":"نمونه","ppf":"nUmoona"},"def":"name","category":"basic-masc"},{"entry":{"ts":1527812661,"i":13824,"p":"هلک","f":"halík, halúk","g":"halik,haluk","e":"boy, young lad","c":"n. m. anim."},"def":"boy, young lad","category":"basic-masc"},{"entry":{"ts":1566476070874,"i":14000,"p":"واټ","f":"waaT","g":"waaT","e":"street, road","c":"n. m."},"def":"street, road","category":"basic-masc"},{"entry":{"ts":1527816036,"i":14034,"p":"واک","f":"waak","g":"waak","e":"authority, power","c":"n. m."},"def":"authority, power","category":"basic-masc"},{"entry":{"ts":1527815400,"i":14080,"p":"وخت","f":"wakht","g":"wakht","e":"time","c":"n. m."},"def":"time","category":"basic-masc"},{"entry":{"ts":1527818582,"i":14085,"p":"ودانښت","f":"wadaanuxt","g":"wadaanuxt","e":"building, prosperity, habitable state","c":"n. m."},"def":"building, prosperity, habitable state","category":"basic-masc"},{"entry":{"ts":1527811441,"i":14094,"p":"ور","f":"war","g":"war","e":"door, gate, entrance","c":"n. m.","infap":"وره","infaf":"wru","infbp":"ور","infbf":"wr"},"def":"door, gate, entrance","category":"basic-masc"},{"entry":{"ts":1527815406,"i":14262,"p":"وطن","f":"watán","g":"watan","e":"homeland, home country","c":"n. m."},"def":"homeland, home country","category":"basic-masc"},{"entry":{"ts":1573149648251,"i":14264,"p":"وطن وال","f":"watanwaal","g":"watanwaal","e":"fellow country-man","c":"n. m.","ec":"fellow country-man","ep":"fellow country-men"},"def":"fellow country-man","category":"basic-masc"},{"entry":{"ts":1586428847646,"i":14267,"p":"وطنوال","f":"watanwáal","g":"watanwaal","e":"national (person), a citizen or person of that land","c":"n. m."},"def":"national (person), a citizen or person of that land","category":"basic-masc"},{"entry":{"ts":1527822208,"i":14268,"p":"وطواط","f":"watwáat","g":"watwaat","e":"bat, coward, pipsqueak, hesitant person","c":"n. m."},"def":"bat, coward, pipsqueak, hesitant person","category":"basic-masc"},{"entry":{"ts":1527819571,"i":14339,"p":"وهم","f":"wáhum, wahm","g":"wahum,wahm","e":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","c":"n. m.","app":"اهوام","apf":"ahwáam"},"def":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","category":"basic-masc"},{"entry":{"ts":1527816332,"i":14356,"p":"ویاړ","f":"wyaaR","g":"wyaaR","e":"pride, glory","c":"n. m."},"def":"pride, glory","category":"basic-masc"},{"entry":{"ts":1527815408,"i":14368,"p":"ویده","f":"weedú","g":"weedu","e":"asleep, sleeping","c":"adj."},"def":"asleep","category":"basic-unisex"},{"entry":{"ts":1527812796,"i":8577,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."},"def":"good","category":"basic-unisex"},{"entry":{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},"def":"cook, chef","category":"basic-unisex"},{"entry":{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},"def":"hero, brave","category":"basic-unisex"},{"entry":{"ts":1527821649,"i":183,"p":"اثرناک","f":"asarnáak","g":"asarnaak","e":"impressive, effective, influencing","c":"adj.","l":1527815870},"def":"impressive, effective, influencing","category":"basic-unisex"},{"entry":{"ts":1527818704,"i":352,"p":"ارت","f":"arát","g":"arat","e":"wide, spacious, extensive","c":"adj."},"def":"wide, spacious, extensive","category":"basic-unisex"},{"entry":{"ts":1578340121962,"i":447,"p":"ازاد","f":"azáad","g":"azaad","e":"free, released","c":"adj."},"def":"free, independant","category":"basic-unisex"},{"entry":{"ts":1527819418,"i":5424,"p":"خپلواک","f":"khpulwaak","g":"khpulwaak","e":"independent, free, autonomous","c":"adj."},"def":"independant, autonomous","category":"basic-unisex"},{"entry":{"ts":1527817146,"i":534,"p":"استوګن","f":"astogan","g":"astogan","e":"resident; established, installed, settled","c":"n. m. unisex / adj."},"def":"resident; settled","category":"basic-unisex"},{"entry":{"ts":1527813713,"i":855,"p":"امیدوار","f":"Umeedwaar","g":"Umeedwaar","e":"hopeful, pregnant","c":"adj."},"def":"hopeful, pregnant","category":"basic-unisex"},{"entry":{"ts":1527819451,"i":968,"p":"انګرېز","f":"angréz","g":"angrez","e":"Englishman, English (adjective)","c":"n. m. anim. unisex / adj."},"def":"Englishman, English (adjective)","category":"basic-unisex"},{"entry":{"ts":1527820346,"i":987,"p":"انلاین","f":"anlaayn","g":"anlaayn","e":"on-line","c":"adj."},"def":"on-line","category":"basic-unisex"},{"entry":{"ts":1527813667,"i":999,"p":"اهم","f":"ahám","g":"aham","e":"important","c":"adj."},"def":"important","category":"basic-unisex"},{"entry":{"ts":1598724912198,"i":1025,"p":"اوچ","f":"ooch","g":"ooch","e":"dry","c":"adj."},"def":"dry","category":"basic-unisex"},{"entry":{"ts":1527815138,"i":1045,"p":"اورپک","f":"orpak","g":"orpak","e":"insurgent, wicked, terrorist","c":"n. m. anim. / adj."},"def":"insurgent","category":"basic-unisex"},{"entry":{"ts":1586452587974,"i":1069,"p":"اوزګار","f":"oozgáar","g":"oozgaar","e":"free, unoccupied, available, at leisure","c":"adj."},"def":"free, available","category":"basic-unisex"},{"entry":{"ts":1527816489,"i":1174,"p":"ایماندار","f":"eemaandaar","g":"eemaandaar","e":"faithful, believer, devoted, correct, true","c":"adj. / n. m. anim. unisex"},"def":"faithful, believer","category":"basic-unisex"},{"entry":{"ts":1527820433,"i":1199,"p":"باتور","f":"baatóor","g":"baatoor","e":"courageous, brave, valiant","c":"adj."},"def":"valiant","category":"basic-unisex"},{"entry":{"ts":1527813425,"i":1371,"p":"بخیل","f":"bakheel","g":"bakheel","e":"stingy, miserly, closefisted","c":"adj."},"def":"stingy","category":"basic-unisex"},{"entry":{"ts":1527812511,"i":1372,"p":"بد","f":"bud, bad","g":"bud,bad","e":"bad","c":"adj."},"def":"bad","category":"basic-unisex"},{"entry":{"ts":1527812518,"i":1443,"p":"برابر","f":"buraabur","g":"buraabur","e":"equal, even, all good","c":"adj."},"def":"equal, even, set up","category":"basic-unisex"},{"entry":{"ts":1527811861,"i":1459,"p":"بربنډ","f":"barbunD","g":"barbunD","e":"naked; bare","c":"adj."},"def":"naked","category":"basic-unisex"},{"entry":{"ts":1527811511,"i":1618,"p":"بشپړ","f":"bushpuR","g":"bushpuR","e":"full, complete, total, exhaustive, fulfilled, finished, utmost, superior, mature","c":"adj."},"def":"full, complete","category":"basic-unisex"},{"entry":{"ts":1527812515,"i":1671,"p":"بل","f":"bul","g":"bul","e":"other, next","c":"adj."},"def":"other, next","category":"basic-unisex"},{"entry":{"ts":1527815725,"i":1679,"p":"بلد","f":"balad","g":"balad","e":"knowledgeable, informed, acquainted, accustomed, used to, familiar with","c":"adj."},"def":"knowledgeable, accustomed","category":"basic-unisex"},{"entry":{"ts":1577301753727,"i":1715,"p":"بند","f":"band","g":"band","e":"closed, blocked, stopped","c":"adj."},"def":"closed","category":"basic-unisex"},{"entry":{"ts":1527812490,"i":1935,"p":"بې کار","f":"be kaar","g":"bekaar","e":"useless","c":"adj."},"def":"useless","category":"basic-unisex"},{"entry":{"ts":1527812031,"i":2054,"p":"بېل","f":"bel","g":"bel","e":"separate, different, various","c":"adj."},"def":"separate, different","category":"basic-unisex"},{"entry":{"ts":1527815144,"i":2148,"p":"پاک","f":"paak","g":"paak","e":"clean, pure","c":"adj."},"def":"clean, pure","category":"basic-unisex"},{"entry":{"ts":1527815201,"i":2226,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},"def":"hidden","category":"basic-unisex"},{"entry":{"ts":1527815179,"i":2539,"p":"پلن","f":"plun","g":"plun","e":"wide, broad, flat, dull, vapid","c":"adj."},"def":"wide","category":"basic-unisex"},{"entry":{"ts":1527819059,"i":2605,"p":"پنډ","f":"punD","g":"punD","e":"thick, fat","c":"adj."},"def":"thick, fat","category":"basic-unisex"},{"entry":{"ts":1611767359178,"i":3264,"p":"ترسناک","f":"tarsnáak","g":"tarsnaak","e":"compassionate","c":"adj."},"def":"compassionate","category":"basic-unisex"},{"entry":{"ts":1527813270,"i":3330,"p":"تروش","f":"troosh","g":"troosh","e":"sour; sarcasm","c":"adj. / n. m."},"def":"sour","category":"basic-unisex"},{"entry":{"ts":1527813817,"i":3723,"p":"تنګ","f":"tang","g":"tang","e":"narrow, tight, cramped, constrained; troubled, bothered, annoyed","c":"adj."},"def":"narrow, cramped","category":"basic-unisex"},{"entry":{"ts":1527816354,"i":3917,"p":"تیار","f":"tayaar","g":"tayaar","e":"ready, prepared","c":"adj."},"def":"ready","category":"basic-unisex"},{"entry":{"ts":1527817056,"i":3947,"p":"تېز","f":"tez","g":"tez","e":"sharp, pointed, quick, fast","c":"adj."},"def":"sharp, fast","category":"basic-unisex"},{"entry":{"ts":1527814076,"i":4126,"p":"ټولنیز","f":"Toluneez","g":"Toluneez","e":"social","c":"adj."},"def":"societal, social","category":"basic-unisex"},{"entry":{"ts":1527819864,"i":4148,"p":"ټیټ","f":"TeeT","g":"TeeT","e":"short, low, inferior","c":"adj."},"def":"low","category":"basic-unisex"},{"entry":{"ts":1527811894,"i":4175,"p":"ټینګ","f":"Teeng","g":"Teeng","e":"firm, thick, strong, tough, rigid","c":"adj."},"def":"firm, tough, rigid","category":"basic-unisex"},{"entry":{"ts":1527812943,"i":4181,"p":"ثابت","f":"saabit","g":"saabit","e":"constant, firm, fixed, stable, established, proven","c":"adj."},"def":"constant, stable, proven","category":"basic-unisex"},{"entry":{"ts":1527813085,"i":4194,"p":"ثقیل","f":"saqeel","g":"sakeel","e":"heavy, difficult, hard to digest, indigestible, lazy, burdensome","c":"adj."},"def":"heavy, difficult","category":"basic-unisex"},{"entry":{"ts":1527820479,"i":4253,"p":"جاهل","f":"jaahíl","g":"jaahil","e":"ignorant, stupid","c":"adj."},"def":"ignorant","category":"basic-unisex"},{"entry":{"ts":1588160800930,"i":4291,"p":"جراح","f":"jarráah","g":"jarraah","e":"surgeon","c":"n. m. anim. unisex"},"def":"surgeon","category":"basic-unisex"},{"entry":{"ts":1527812707,"i":4355,"p":"جګ","f":"jig, jug","g":"jig,jug","e":"high, tall","c":"adj."},"def":"high, tall","category":"basic-unisex"},{"entry":{"ts":1527816944,"i":4481,"p":"جوت","f":"jawat","g":"jawat","e":"clear, evident, explained, apparent, established","c":"adj."},"def":"clear, evident","category":"basic-unisex"},{"entry":{"ts":1527822996,"i":4491,"p":"جوخت","f":"jokht","g":"jokht","e":"alongside, adjoining, next to, very close","c":"adj."},"def":"alongside, adjoining","category":"basic-unisex"},{"entry":{"ts":1527812711,"i":4497,"p":"جوړ","f":"joR","g":"joR","e":"well, healthy, whole, made","c":"adj."},"def":"well, healthy","category":"basic-unisex"},{"entry":{"ts":1527816323,"i":4580,"p":"ځلاند","f":"dzalaand","g":"dzalaand","e":"shining, sparkling, outstanding, brilliant","c":"adj."},"def":"shining, sparkling","category":"basic-unisex"},{"entry":{"ts":1527812291,"i":4617,"p":"ځوان","f":"dzwaan","g":"dzwaan","e":"young, youth, youthful","c":"n. m. anim. unisex / adj."},"def":"young, youthful","category":"basic-unisex"},{"entry":{"ts":1527820112,"i":4626,"p":"ځوړند","f":"dzwáRund","g":"dzwaRund","e":"hanging","c":"adj."},"def":"hanging","category":"basic-unisex"},{"entry":{"ts":1527819672,"i":4685,"p":"چالاک","f":"chaaláak","g":"chaalaak","e":"crafty, sly, tricky; quick, fast, nimble","c":"adj."},"def":"crafty","category":"basic-unisex"},{"entry":{"ts":1527811230,"i":4730,"p":"چټک","f":"chaTak","g":"chaTak","e":"quick, fast","c":"adj."},"def":"quick, fast","category":"basic-unisex"},{"entry":{"ts":1527812524,"i":4829,"p":"چلان","f":"chalaan","g":"chalaan","e":"started, in motion","c":"adj."},"def":"started, in motion","category":"basic-unisex"},{"entry":{"ts":1527815370,"i":5051,"p":"څرګند","f":"tsărgund","g":"tsargund","e":"clear, obvious, apparent, disclosed","c":"adj."},"def":"clear, apparent","category":"basic-unisex"},{"entry":{"ts":1576366107077,"i":5078,"p":"څک","f":"tsak","g":"tsak","e":"straight, upright, pricked up, erect, alert","c":"adj."},"def":"straight, upright","category":"basic-unisex"},{"entry":{"ts":1527812113,"i":5185,"p":"حاضر","f":"haazir, haazur","g":"haazir,haazur","e":"present, on hand, ready, available, appearing; ready, prepared","c":"adj.","app":"حاضرین","apf":"haazireen"},"def":"present, on hand, ready","category":"basic-unisex"},{"entry":{"ts":1527820699,"i":5197,"p":"حامل","f":"haamíl","g":"haamil","e":"carrying, transporting, conveying, pregnant","c":"adj."},"def":"pregnant, carrying","category":"basic-unisex"},{"entry":{"ts":1527819824,"i":5233,"p":"حریص","f":"harées","g":"harees","e":"greedy, mean","c":"adj."},"def":"greedy","category":"basic-unisex"},{"entry":{"ts":1527812669,"i":5244,"p":"حساس","f":"hasaas","g":"hasaas","e":"sensitive, delicate","c":"adj."},"def":"sensitive","category":"basic-unisex"},{"entry":{"ts":1527812057,"i":5377,"p":"خام","f":"khaam","g":"khaam","e":"raw, unripe, immature","c":"adj."},"def":"raw, unripe","category":"basic-unisex"},{"entry":{"ts":1527811523,"i":5395,"p":"خاین","f":"khaayin","g":"khaayin","e":"traitor, treacherous","c":"n. m. anim. unisex / adj."},"def":"traitor, treacherous","category":"basic-unisex"},{"entry":{"ts":1527814219,"i":5420,"p":"خپل","f":"khpul","g":"khpul","e":"relative; one's own, farmiliar","c":"adj. / n. m."},"def":"relative, one's own","category":"basic-unisex"},{"entry":{"ts":1527812795,"i":5426,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},"def":"relative","category":"basic-unisex"},{"entry":{"ts":1527812808,"i":5667,"p":"خوار","f":"khwaar","g":"khwaar","e":"poor, pitiful, miserable, thin","c":"adj."},"def":"poor, miserable","category":"basic-unisex"},{"entry":{"ts":1527814880,"i":6231,"p":"دنګ","f":"dung","g":"dung","e":"tall, strapping","c":"adj."},"def":"tall","category":"basic-unisex"},{"entry":{"ts":1527812537,"i":6365,"p":"ډاډمن","f":"DaaDmun","g":"DaaDmun","e":"assured, secure, confident","c":"adj."},"def":"assured","category":"basic-unisex"},{"entry":{"ts":1527812583,"i":6429,"p":"ډک","f":"Duk","g":"Duk","e":"full","c":"adj."},"def":"full","category":"basic-unisex"},{"entry":{"ts":1527822674,"i":6471,"p":"ډنګر","f":"Dungár, Dangár","g":"Dungar,Dangar","e":"singular and plural cattle; bull, ox; thin, skinny, gaunt, emaciated","c":"adj."},"def":"gaunt","category":"basic-unisex"},{"entry":{"ts":1527817256,"i":6477,"p":"ډوب","f":"Doob","g":"Doob","e":"drowned, sunk, submerged","c":"adj."},"def":"sunk","category":"basic-unisex"},{"entry":{"ts":1527814277,"i":6906,"p":"روغ","f":"rogh","g":"rogh","e":"healthy, well, intact, good, built-up","c":"adj."},"def":"healthy","category":"basic-unisex"},{"entry":{"ts":1609780006604,"i":7034,"p":"زرخېز","f":"zarkhéz","g":"zarkhez","e":"rich, fruitful","c":"adj."},"def":"fruitful","category":"basic-unisex"},{"entry":{"ts":1527817116,"i":7041,"p":"زرغون","f":"zarghóon","g":"zarghoon","e":"green, flourishing, flowering, growing; immature, unripe","c":"adj."},"def":"green, flourishing","category":"basic-unisex"},{"entry":{"ts":1527814026,"i":7052,"p":"زرین","f":"zareen","g":"zareen","e":"golden","c":"adj."},"def":"golden","category":"basic-unisex"},{"entry":{"ts":1567594312839,"i":7074,"p":"زړه ور","f":"zuRawár","g":"zuRawar","e":"brave, courageous","c":"adj."},"def":"brave","category":"basic-unisex"},{"entry":{"ts":1527815848,"i":7296,"p":"ژمن","f":"jzman","g":"jzman","e":"dedicated, committed","c":"adj."},"def":"committed","category":"basic-unisex"},{"entry":{"ts":1527813498,"i":7457,"p":"سپک","f":"spuk","g":"spuk","e":"light; dishonorable, not respectable","c":"adj."},"def":"light","category":"basic-unisex"},{"entry":{"ts":1578329248464,"i":7488,"p":"سپین","f":"speen","g":"speen","e":"white (fig. clear, honest, beautiful)","c":"adj."},"def":"white","category":"basic-unisex"},{"entry":{"ts":1527811860,"i":7510,"p":"ستر","f":"stur","g":"stur","e":"big, large, great","c":"adj."},"def":"great","category":"basic-unisex"},{"entry":{"ts":1527820178,"i":7557,"p":"ستونزمن","f":"stoonzmán","g":"stoonzman","e":"difficult, hard, problematic, fraught with difficulties, tough, awkward","c":"adj."},"def":"problematic","category":"basic-unisex"},{"entry":{"ts":1527815246,"i":7589,"p":"سخت","f":"sakht","g":"sakht","e":"hard, difficult","c":"adj."},"def":"difficult","category":"basic-unisex"},{"entry":{"ts":1527817262,"i":8395,"p":"شنډ","f":"shanD","g":"shanD","e":"barren, sterile, unfruitful, neutralized, diffused","c":"adj."},"def":"barren","category":"basic-unisex"},{"entry":{"ts":1527813426,"i":8459,"p":"شوم","f":"shoom","g":"shoom","e":"stingy, miserly, closefisted","c":"adj."},"def":"stingy","category":"basic-unisex"},{"entry":{"ts":1527812625,"i":9045,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},"def":"big","category":"basic-unisex"},{"entry":{"ts":1527811846,"i":9868,"p":"کامیاب","f":"kaamyaab","g":"kaamyaab","e":"successful","c":"adj."},"def":"successful","category":"basic-unisex"},{"entry":{"ts":1527823678,"i":9890,"p":"کاهل","f":"kaahíl","g":"kaahil","e":"lazy, sluggish, stagnant","c":"adj."},"def":"lazy","category":"basic-unisex"},{"entry":{"ts":1527814896,"i":9902,"p":"کبرجن","f":"kaburjun, kibrjun","g":"kaburjun,kibrjun","e":"proud, arrogant","c":"adj."},"def":"proud, arrogant","category":"basic-unisex"},{"entry":{"ts":1527813117,"i":10227,"p":"کلک","f":"klak, kluk","g":"klak,kluk","e":"firm, solid, staunch, steadfast, serious, hard, unwavering","c":"adj."},"def":"firm, solid","category":"basic-unisex"},{"entry":{"ts":1578769492475,"i":10256,"p":"کم","f":"kam","g":"kam","e":"few, little","c":"adj."},"def":"few, little","category":"basic-unisex"},{"entry":{"ts":1578769409512,"i":10288,"p":"کمزور","f":"kamzór","g":"kamzor","e":"weak","c":"adj."},"def":"weak","category":"basic-unisex"},{"entry":{"ts":1527812639,"i":10711,"p":"ګران","f":"graan","g":"graan","e":"dear, valuable, expensive, difficult","c":"adj."},"def":"dear, difficult","category":"basic-unisex"},{"entry":{"ts":1527816786,"i":10723,"p":"ګرد","f":"gurd","g":"gurd","e":"all, entire, whole, everything; round circular","c":"adj."},"def":"all","category":"basic-unisex"},{"entry":{"ts":1527814811,"i":10750,"p":"ګرم","f":"garm, garum","g":"garm,garum","e":"warm, hot","c":"adj."},"def":"warm, hot","category":"basic-unisex"},{"entry":{"ts":1527817662,"i":10751,"p":"ګرم","f":"gram","g":"gram","e":"guilty, blamed, culprit, culpable","c":"adj."},"def":"guilty","category":"basic-unisex"},{"entry":{"ts":1527812308,"i":10882,"p":"ګڼ","f":"gaN","g":"gaN","e":"thick, dense, heavy, deep, lots","c":"adj."},"def":"thick, lots","category":"basic-unisex"},{"entry":{"ts":1527813848,"i":11541,"p":"لېوال","f":"lewaal","g":"lewaal","e":"desiring, eager, thirsting, lover","c":"adj."},"def":"desiring, eager","category":"basic-unisex"},{"entry":{"ts":1527816011,"i":11557,"p":"مات","f":"maat","g":"maat","e":"broken, split, defeated","c":"adj."},"def":"broken","category":"basic-unisex"},{"entry":{"ts":1527812881,"i":11596,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"child","category":"basic-unisex"},{"entry":{"ts":1527817007,"i":11634,"p":"مالوم","f":"maaloom","g":"maaloom","e":"known","c":"adj."},"def":"known","category":"basic-unisex"},{"entry":{"ts":1527814321,"i":11778,"p":"مثبت","f":"mUsbat","g":"mUsbat","e":"positive; proven","c":"adj."},"def":"positive","category":"basic-unisex"},{"entry":{"ts":1527811264,"i":11887,"p":"محکوم","f":"mahkoom","g":"mahkoom","e":"condemned, sentenced, criminal; subjugated","c":"adj."},"def":"condemned","category":"basic-unisex"},{"entry":{"ts":1527814802,"i":12039,"p":"مردار","f":"mUrdáar","g":"mUrdaar","e":"foul, unclean, dirty","c":"adj."},"def":"foul","category":"basic-unisex"},{"entry":{"ts":1527821812,"i":12460,"p":"مغرور","f":"maghróor","g":"maghroor","e":"haughty, arrogant, conceited","c":"adj."},"def":"arrogant","category":"basic-unisex"},{"entry":{"ts":1527820222,"i":12559,"p":"ملاست","f":"mlaast","g":"mlaast","e":"lying down, lying","c":"adj."},"def":"lying down","category":"basic-unisex"},{"entry":{"ts":1527814344,"i":12784,"p":"مهم","f":"mUhím","g":"mUhim","e":"important","c":"adj."},"def":"important","category":"basic-unisex"},{"entry":{"ts":1527816033,"i":13070,"p":"نادر","f":"naadir","g":"naadir","e":"uncommon","c":"adj."},"def":"uncommon","category":"basic-unisex"},{"entry":{"ts":1527815106,"i":13108,"p":"ناست","f":"naast","g":"naast","e":"sitting, seated","c":"adj."},"def":"sitting, seated","category":"basic-unisex"},{"entry":{"ts":1527815127,"i":13258,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},"def":"nurse","category":"basic-unisex"},{"entry":{"ts":1527821673,"i":13469,"p":"نمجن","f":"namjún","g":"namjun","e":"moist, damp, wet","c":"adj."},"def":"moist, damp, wet","category":"basic-unisex"},{"entry":{"ts":1527815130,"i":14067,"p":"وچ","f":"wuch, wUch","g":"wuch,wUch","e":"dry, land, ground","c":"adj. / n. m."},"def":"dry, land, ground","category":"basic-unisex"},{"entry":{"ts":1527817486,"i":14103,"p":"وران","f":"wraan","g":"wraan","e":"ruined, destroyed; destructive, bad, naughty","c":"adj."},"def":"ruined, destroyed; destructive, bad, naughty","category":"basic-unisex"},{"entry":{"ts":1527814373,"i":14139,"p":"ورک","f":"wruk","g":"wruk","e":"lost","c":"adj."},"def":"lost","category":"basic-unisex"},{"entry":{"ts":1527822838,"i":14160,"p":"وروست","f":"wrost","g":"wrost","e":"decayed, spoiled, rotten","c":"adj."},"def":"decayed, spoiled, rotten","category":"basic-unisex"},{"entry":{"ts":1609949334478,"i":14173,"p":"وریت","f":"wreet","g":"wreet","e":"roasted, grilled, barbequed, roast, burnt","c":"adj."},"def":"roasted","category":"basic-unisex"},{"entry":{"ts":1527811544,"i":14297,"p":"ولاړ","f":"waláaR, wuláaR","g":"walaaR,wulaaR","e":"standing","c":"adj."},"def":"standing","category":"basic-unisex"},{"entry":{"ts":1527815498,"i":14416,"p":"یاد","f":"yaad","g":"yaad","e":"aforementioned","c":"adj."},"def":"aforementioned","category":"basic-unisex"},{"entry":{"ts":1527815434,"i":14437,"p":"یخ","f":"yakh, yukh","g":"yakh,yukh","e":"cold","c":"n. m. / adj."},"def":"cold","category":"basic-unisex"},{"entry":{"ts":1568926976497,"i":731,"p":"اکسرې","f":"iksre","g":"iksre","e":"x-ray","c":"n. f."},"def":"x-ray","category":"e-fem"},{"entry":{"ts":1602179757779,"i":766,"p":"الف بې","f":"alif be","g":"alifbe","e":"alphabet","c":"n. f."},"def":"alphabet","category":"e-fem"},{"entry":{"ts":1527813840,"i":1142,"p":"ایرې","f":"eere","g":"eere","e":"ashes","c":"n. f. pl.","l":1527813839},"def":"ashes","category":"e-fem"},{"entry":{"ts":1527816692,"i":1180,"p":"اینکې","f":"aynake","g":"aynake","e":"glasses, spectacles","c":"n. f. pl."},"def":"glasses, spectacles","category":"e-fem"},{"entry":{"ts":1527819286,"i":2144,"p":"پاشتقې","f":"paashtáqe","g":"paashtake","e":"stairs, steps, staircase","c":"n. f. pl."},"def":"stairs, steps, staircase","category":"e-fem"},{"entry":{"ts":1527816299,"i":2876,"p":"پیسې","f":"peyse","g":"peyse","e":"money (plural of پېسې)","c":"n. f. pl."},"def":"money (plural of پېسې)","category":"e-fem"},{"entry":{"ts":1527814529,"i":3331,"p":"تروې","f":"turwe","g":"turwe","e":"buttermilk","c":"n. f. pl."},"def":"buttermilk","category":"e-fem"},{"entry":{"ts":1527816369,"i":3803,"p":"تورسرې","f":"torsăre","g":"torsare","e":"widow, woman","c":"n. f."},"def":"widow, woman","category":"e-fem"},{"entry":{"ts":1577408787088,"i":7446,"p":"سپرې","f":"spre","g":"spre","e":"sprey (as in a medicinal spray)","c":"n. f."},"def":"sprey (as in a medicinal spray)","category":"e-fem"},{"entry":{"ts":1527822255,"i":7482,"p":"سپېدې","f":"spedé","g":"spede","e":"break of dawn, first light of day, sunrise","c":"n. f. pl."},"def":"break of dawn, first light of day, sunrise","category":"e-fem"},{"entry":{"ts":1626765107329,"i":8264,"p":"شرې","f":"sharé","g":"share","e":"chickenpox, chicken pox","c":"n. f. pl."},"def":"chickenpox, chicken pox","category":"e-fem"},{"entry":{"ts":1527815008,"i":8432,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."},"def":"milk","category":"e-fem"},{"entry":{"ts":1527822131,"i":8457,"p":"شولې","f":"shole","g":"shole","e":"raw rice, unprocessed rice","c":"n. f. pl."},"def":"raw rice, unprocessed rice","category":"e-fem"},{"entry":{"ts":1527815009,"i":8483,"p":"شیدې","f":"sheede","g":"sheede","e":"milk (plural of شيده)","c":"n. f. pl."},"def":"milk (plural of شيده)","category":"e-fem"},{"entry":{"ts":1527823571,"i":8601,"p":"ښیالمې","f":"xyaalmé","g":"xyaalme","e":"spit, saliva","c":"n. f. pl."},"def":"spit, saliva","category":"e-fem"},{"entry":{"ts":1527816530,"i":8614,"p":"ښینې","f":"xeene","g":"xeene","e":"sister in law","c":"n. f."},"def":"sister in law","category":"e-fem"},{"entry":{"ts":1527823567,"i":11053,"p":"لاړې","f":"laaRe","g":"laaRe","e":"spit, saliva, slobber, slime","c":"n. f. pl."},"def":"spit, saliva, slobber, slime","category":"e-fem"},{"entry":{"ts":1527822275,"i":11446,"p":"لوښې","f":"looxe","g":"looxe","e":"dishes, pots, pans","c":"n. f. pl."},"def":"dishes, pots, pans","category":"e-fem"},{"entry":{"ts":1617443138210,"i":11840,"p":"مچیازې","f":"michyaaze, muchyaaze","g":"michyaaze,muchyaaze","e":"urine, pee, piss","c":"n. f. pl."},"def":"urine, pee, piss","category":"e-fem"},{"entry":{"ts":1527814420,"i":12220,"p":"مستې","f":"maste","g":"maste","e":"yogurt","c":"n. f. pl."},"def":"yogurt","category":"e-fem"},{"entry":{"ts":1577999538077,"i":13776,"p":"هرې","f":"hire","g":"hire","e":"a sound/cry used to drive sheep on","c":"n. f."},"def":"a sound/cry used to drive sheep on","category":"e-fem"},{"entry":{"ts":1586551382412,"i":14180,"p":"وریژې","f":"wreejze","g":"wreejze","e":"rice","c":"n. f. pl."},"def":"rice","category":"e-fem"},{"entry":{"ts":1527820261,"i":14512,"p":"یوې","f":"yuwe","g":"yuwe","e":"plow, plowing, plough, ploughing","c":"n. f."},"def":"plow, plowing, plough, ploughing","category":"e-fem"},{"entry":{"ts":1527820771,"i":5,"p":"آباداني","f":"aabaadaanee","g":"aabaadaanee","e":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","c":"n. f."},"def":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","category":"ee-fem"},{"entry":{"ts":1527813939,"i":54,"p":"آزادي","f":"aazaadee","g":"aazaadee","e":"freedom, independence","c":"n. f."},"def":"freedom, independence","category":"ee-fem"},{"entry":{"ts":1527818402,"i":159,"p":"اتلولي","f":"atalwalée","g":"atalwalee","e":"championship; courage","c":"n. f."},"def":"championship; courage","category":"ee-fem"},{"entry":{"ts":1527814060,"i":476,"p":"اساني","f":"asaanee","g":"asaanee","e":"ease","c":"n. f."},"def":"ease","category":"ee-fem"},{"entry":{"ts":1527821293,"i":799,"p":"امادګي","f":"amaadagee","g":"amaadagee","e":"preparation, readiness, planning","c":"n. f."},"def":"preparation, readiness, planning","category":"ee-fem"},{"entry":{"ts":1527819502,"i":1213,"p":"باچهي","f":"baachahee","g":"baachahee","e":"kingship, kingdom, rule, throne, authority","c":"n. f."},"def":"kingship, kingdom, rule, throne, authority","category":"ee-fem"},{"entry":{"ts":1527820035,"i":1218,"p":"باداري","f":"baadaaree","g":"baadaaree","e":"dominion, holding sway over someone","c":"n. f."},"def":"dominion, holding sway over someone","category":"ee-fem"},{"entry":{"ts":1527817732,"i":1384,"p":"بدبختي","f":"badbakhtee","g":"badbakhtee","e":"misfortune, difficulty","c":"n. f."},"def":"misfortune, difficulty","category":"ee-fem"},{"entry":{"ts":1588786872582,"i":1417,"p":"بدنامي","f":"badnaamee","g":"badnaamee","e":"shame, disrepute, dishonour","c":"n. f."},"def":"shame, disrepute, dishonour","category":"ee-fem"},{"entry":{"ts":1573682378816,"i":2068,"p":"بیماري","f":"beemaaree","g":"beemaaree","e":"sickness, illness","c":"n. f."},"def":"sickness, illness","category":"ee-fem"},{"entry":{"ts":1527816817,"i":2156,"p":"پاکوالي","f":"paakwaalee","g":"paakwaalee","e":"cleanliness, hygiene","c":"n. f."},"def":"cleanliness, hygiene","category":"ee-fem"},{"entry":{"ts":1586204619186,"i":2359,"p":"پرهېزګاري","f":"parhezgaaree","g":"parhezgaaree","e":"righteousness, abstinence, self-control","c":"n. f."},"def":"righteousness, abstinence, self-control","category":"ee-fem"},{"entry":{"ts":1584444376984,"i":2516,"p":"پلارواکي","f":"plaarwaakee","g":"plaarwaakee","e":"patriarchy","c":"n. f."},"def":"patriarchy","category":"ee-fem"},{"entry":{"ts":1527818744,"i":3281,"p":"ترکاڼي","f":"tarkaaNee","g":"tarkaaNee","e":"carpentry","c":"n. f."},"def":"carpentry","category":"ee-fem"},{"entry":{"ts":1527815337,"i":3392,"p":"تسلي","f":"tasallee","g":"tasallee","e":"consolation, comfort, satisfaction","c":"n. f."},"def":"consolation, comfort, satisfaction","category":"ee-fem"},{"entry":{"ts":1527819521,"i":5774,"p":"خوشالي","f":"khoshaalee","g":"khoshaalee","e":"happiness (خوشحالي)","c":"n. f."},"def":"happiness (خوشحالي)","category":"ee-fem"},{"entry":{"ts":1527818037,"i":5779,"p":"خوشبختي","f":"khooshbakhtee","g":"khooshbakhtee","e":"good fortune, good luck, hapiness","c":"n. f."},"def":"good fortune, good luck, hapiness","category":"ee-fem"},{"entry":{"ts":1527815914,"i":5782,"p":"خوشبیني","f":"khooshbeenee","g":"khooshbeenee","e":"optimism","c":"n. f."},"def":"optimism","category":"ee-fem"},{"entry":{"ts":1527811877,"i":6294,"p":"دوستي","f":"dostee","g":"dostee","e":"friendship","c":"n. f."},"def":"friendship","category":"ee-fem"},{"entry":{"ts":1527818019,"i":6299,"p":"دوکانداري","f":"dookaandaaree","g":"dookaandaaree","e":"shopkeeping, retail store selling","c":"n. f."},"def":"shopkeeping, retail store selling","category":"ee-fem"},{"entry":{"ts":1527822080,"i":6351,"p":"دېموکراسي","f":"demokraasee","g":"demokraasee","e":"democracy","c":"n. f."},"def":"democracy","category":"ee-fem"},{"entry":{"ts":1527813462,"i":10614,"p":"کیلي","f":"keelee","g":"keelee","e":"key","c":"n. f."},"def":"key","category":"ee-fem"},{"entry":{"ts":1527814492,"i":10654,"p":"ګاوداري","f":"gaawdaaree","g":"gaawdaaree","e":"cattle farming","c":"n. f."},"def":"cattle farming","category":"ee-fem"},{"entry":{"ts":1610013679820,"i":14157,"p":"ورورولي","f":"wrorwalée","g":"wrorwalee","e":"brotherhood","c":"n. f."},"def":"brotherhood","category":"ee-fem"},{"entry":{"ts":1527821971,"i":1710,"p":"بن","f":"bun","g":"bun","e":"second wife of own husband","c":"n. f."},"def":"second wife of own husband","category":"exception-people-fem"},{"entry":{"ts":1527816397,"i":3320,"p":"ترور","f":"tror","g":"tror","e":"aunt","c":"n. f. anim.","ppp":"تریندې","ppf":"treynde"},"def":"aunt","category":"exception-people-fem"},{"entry":{"ts":1578704593901,"i":3693,"p":"تندار","f":"tandaar","g":"tandaar","e":"aunt (paternal uncle's wife)","c":"n. f."},"def":"aunt (paternal uncle's wife)","category":"exception-people-fem"},{"entry":{"ts":1527812785,"i":5721,"p":"خور","f":"khor","g":"khor","e":"sister","c":"n. f. irreg. anim.","ppp":"خویندې","ppf":"khweynde"},"def":"sister","category":"exception-people-fem"},{"entry":{"ts":1527812861,"i":11411,"p":"لور","f":"loor","g":"loor","e":"daughter","c":"n. f. anim.","ppp":"لوڼې","ppf":"looNe"},"def":"daughter","category":"exception-people-fem"},{"entry":{"ts":1527812928,"i":12836,"p":"مور","f":"mor","g":"mor","e":"mother, mom","c":"n. f. anim.","ppp":"میندې, میېندې","ppf":"méynde, myénde"},"def":"mother, mom","category":"exception-people-fem"},{"entry":{"ts":1527812912,"i":12951,"p":"مېرمن","f":"mermán","g":"merman","e":"lady, woman, wife","c":"n. f."},"def":"lady, woman, wife","category":"exception-people-fem"},{"entry":{"ts":1527816476,"i":12957,"p":"مېرېنۍ خور","f":"merenuy khor","g":"merenuykhor","e":"stepsister, half sister","c":"n. f."},"def":"stepsister, half sister","category":"exception-people-fem"},{"entry":{"ts":1527823521,"i":13296,"p":"نږور","f":"nGor","g":"ngor","e":"daughter-in-law","c":"n. f. anim.","ppp":"نږیندې","ppf":"nGeynde"},"def":"daughter-in-law","category":"exception-people-fem"},{"entry":{"ts":1527816350,"i":14147,"p":"ورندار","f":"wrundaar","g":"wrundaar","e":"brothers wife, sister-in-law","c":"n. f."},"def":"brothers wife, sister-in-law","category":"exception-people-fem"},{"entry":{"ts":1527816485,"i":14492,"p":"یور","f":"yor","g":"yor","e":"wife of husbands brother, wife of brother-in-law","c":"n. f. anim.","ppp":"یوڼې","ppf":"yóoNe"},"def":"wife of husbands brother, wife of brother-in-law","category":"exception-people-fem"},{"entry":{"ts":1527821817,"i":718,"p":"اکا","f":"akáa","g":"akaa","e":"uncle (paternal)","c":"n. m."},"def":"uncle (paternal)","category":"exception-people-masc"},{"entry":{"ts":1527816411,"i":1190,"p":"بابا","f":"baabaa","g":"baabaa","e":"father, grandfather (vocative or in child's speech)","c":"n. m."},"def":"father, grandfather (vocative or in child's speech)","category":"exception-people-masc"},{"entry":{"ts":1527819439,"i":1212,"p":"باچا","f":"baacháa","g":"baachaa","e":"king, ruler, president, padishah","c":"n. m."},"def":"king, ruler, president, padishah","category":"exception-people-masc"},{"entry":{"ts":1527823298,"i":1260,"p":"باښه","f":"baaxá","g":"baaxa","e":"sparrow-hawk, eagle","c":"n. f."},"def":"sparrow-hawk, eagle","category":"exception-people-masc"},{"entry":{"ts":1527817718,"i":1723,"p":"بنده","f":"bandá","g":"banda","e":"slave, servant, a human, person (as in a slave of God)","c":"n. m."},"def":"slave, servant, a human, person (as in a slave of God)","category":"exception-people-masc"},{"entry":{"ts":1527815031,"i":1728,"p":"بندي","f":"bandee","g":"bandee","e":"prisoner, captive","c":"n. m."},"def":"prisoner, captive","category":"exception-people-masc"},{"entry":{"ts":1527815142,"i":2105,"p":"پاچا","f":"paachaa","g":"paachaa","e":"king","c":"n. m."},"def":"king","category":"exception-people-masc"},{"entry":{"ts":1527817280,"i":4284,"p":"جذامي","f":"jUzaamee","g":"jUzaamee","e":"leper","c":"n. m."},"def":"leper","category":"exception-people-masc"},{"entry":{"ts":1527814236,"i":4772,"p":"چرسي","f":"charsee","g":"charsee","e":"pot smoker, pothead, someone addicted to marijuana, pot, hash","c":"n. m."},"def":"pot smoker, pothead, someone addicted to marijuana, pot, hash","category":"exception-people-masc"},{"entry":{"ts":1578618561154,"i":5177,"p":"حاجي","f":"haajee","g":"haajee","e":"Haji, someone who has gone on the Hajj","c":"n. m."},"def":"Haji, someone who has gone on the Hajj","category":"exception-people-masc"},{"entry":{"ts":1527821193,"i":5199,"p":"حامي","f":"haamee","g":"haamee","e":"supporter, protector, defender, patron, saviour","c":"n. m."},"def":"supporter, protector, defender, patron, saviour","category":"exception-people-masc"},{"entry":{"ts":1591711877815,"i":6264,"p":"دوبي","f":"dobée","g":"dobee","e":"washerman, someone who does the laundry","c":"n. m."},"def":"washerman, someone who does the laundry","category":"exception-people-masc"},{"entry":{"ts":1527820139,"i":6664,"p":"ربابي","f":"rabaabee","g":"rabaabee","e":"rabab player, rubab player","c":"n. m."},"def":"rabab player, rubab player","category":"exception-people-masc"},{"entry":{"ts":1619278755267,"i":6667,"p":"ربړنه","f":"rabaRúna","g":"rabaRuna","e":"troubling, pestering","c":"n. f."},"def":"troubling, pestering","category":"exception-people-masc"},{"entry":{"ts":1577066022588,"i":7377,"p":"ساقي","f":"saaqée","g":"saakee","e":"cupbearer, butler, bartender, alchohol maker","c":"n. m."},"def":"cupbearer, butler, bartender, alchohol maker","category":"exception-people-masc"},{"entry":{"ts":1527822817,"i":7434,"p":"سپاهي","f":"sipaahee","g":"sipaahee","e":"soldier, warrior, guard","c":"n. m."},"def":"soldier, warrior, guard","category":"exception-people-masc"},{"entry":{"ts":1527812975,"i":7803,"p":"سلماني","f":"salmaanee","g":"salmaanee","e":"barber, hairdresser","c":"n. m."},"def":"barber, hairdresser","category":"exception-people-masc"},{"entry":{"ts":1527819414,"i":8152,"p":"شاهزاده","f":"shaahzaadá","g":"shaahzaada","e":"prince","c":"n. m."},"def":"prince","category":"exception-people-masc"},{"entry":{"ts":1527818084,"i":8224,"p":"شرابي","f":"sharaabee","g":"sharaabee","e":"drinker, drunkard, alcoholic, wine-bibber","c":"n. m."},"def":"drinker, drunkard, alcoholic, wine-bibber","category":"exception-people-masc"},{"entry":{"ts":1527821950,"i":8409,"p":"شهزاده","f":"shahzaadá","g":"shahzaada","e":"prince","c":"n. m."},"def":"prince","category":"exception-people-masc"},{"entry":{"ts":1588158828142,"i":8550,"p":"ښکاري","f":"xkaaree","g":"xkaaree","e":"hunter","c":"n. m."},"def":"hunter","category":"exception-people-masc"},{"entry":{"ts":1527815206,"i":9578,"p":"قاضي","f":"qaazee","g":"kaazee","e":"judge, religious authority/judge","c":"n. m."},"def":"judge, religious authority/judge","category":"exception-people-masc"},{"entry":{"ts":1527818500,"i":9635,"p":"قراردادي","f":"qaraardaadee","g":"karaardaadee","e":"contractor, supplier","c":"n. m."},"def":"contractor, supplier","category":"exception-people-masc"},{"entry":{"ts":1527816446,"i":9849,"p":"کاکا","f":"kaakaa","g":"kaakaa","e":"paternal uncle, term of address for elderly man","c":"n. m."},"def":"paternal uncle, term of address for elderly man","category":"exception-people-masc"},{"entry":{"ts":1595232159907,"i":10677,"p":"ګدا","f":"gadáa","g":"gadaa","e":"begger, panhandler","c":"n. m."},"def":"begger, panhandler","category":"exception-people-masc"},{"entry":{"ts":1527816512,"i":11096,"p":"لالا","f":"laalaa","g":"laalaa","e":"elder brother, general form of familiar and respectful address","c":"n. m."},"def":"elder brother, general form of familiar and respectful address","category":"exception-people-masc"},{"entry":{"ts":1527812878,"i":11641,"p":"ماما","f":"maamaa","g":"maamaa","e":"uncle (maternal), respectful form of address","c":"n. m."},"def":"uncle (maternal), respectful form of address","category":"exception-people-masc"},{"entry":{"ts":1610556640847,"i":12043,"p":"مردمشماري","f":"mărdamshUmaaree","g":"mardamshUmaaree","e":"census","c":"n. f."},"def":"census","category":"exception-people-masc"},{"entry":{"ts":1527815484,"i":12550,"p":"ملا","f":"mUllaa","g":"mUllaa","e":"mullah, priest","c":"n. m."},"def":"mullah, priest","category":"exception-people-masc"},{"entry":{"ts":1527821714,"i":12797,"p":"موازي","f":"mUwaazée","g":"mUwaazee","e":"parallel, matching, appropriate, identical","c":"adj."},"def":"parallel, matching, appropriate, identical","category":"exception-people-masc"},{"entry":{"ts":1527816514,"i":12827,"p":"موچي","f":"mochee","g":"mochee","e":"shoemaker, shoe repairman, cobbler","c":"n. m."},"def":"shoemaker, shoe repairman, cobbler","category":"exception-people-masc"},{"entry":{"ts":1527823093,"i":13213,"p":"نبي","f":"nabee","g":"nabee","e":"prophet","c":"n. m. anim.","app":"انبیا","apf":"ambiyáa"},"def":"prophet","category":"exception-people-masc"},{"entry":{"ts":1579041957559,"i":13250,"p":"ندا","f":"nadáa","g":"nadaa","e":"call, appeal, shout, summoning","c":"n. f."},"def":"call, appeal, shout, summoning","category":"exception-people-masc"},{"entry":{"ts":1527816253,"i":13544,"p":"نواسه","f":"nawaasa","g":"nawaasa","e":"grandson","c":"n. m."},"def":"grandson","category":"exception-people-masc"},{"entry":{"ts":1527819971,"i":14047,"p":"والي","f":"waalée","g":"waalee","e":"governor","c":"n. m."},"def":"governor","category":"exception-people-masc"},{"entry":{"ts":1527818948,"i":173,"p":"اټسکی","f":"aTúskey","g":"aTuskey","e":"sneezing, sneeze","c":"n. m."},"def":"sneezing, sneeze","category":"ey-masc"},{"entry":{"ts":1527816481,"i":295,"p":"اخښی","f":"akhxey","g":"akhxey","e":"brother in law; sister's husband","c":"n. m."},"def":"brother in law; sister's husband","category":"ey-masc"},{"entry":{"ts":1573681135691,"i":349,"p":"اربکی","f":"arbakéy","g":"arbakey","e":"tribal constable, tribal offical with police powers","c":"n. m."},"def":"tribal constable, tribal offical with police powers","category":"ey-masc"},{"entry":{"ts":1573659054031,"i":365,"p":"ارتوالی","f":"artwaaley, aratwaaley","g":"artwaaley,aratwaaley","e":"width, spaciousness","c":"n. m."},"def":"width, spaciousness","category":"ey-masc"},{"entry":{"ts":1527811890,"i":455,"p":"ازغی","f":"azghey","g":"azghey","e":"thorn, prickle","c":"n. m."},"def":"thorn, prickle","category":"ey-masc"},{"entry":{"ts":1527817036,"i":486,"p":"استازی","f":"astaazey","g":"astaazey","e":"representative, envoy, ambassador, commissioner","c":"n. m."},"def":"representative, envoy, ambassador, commissioner","category":"ey-masc"},{"entry":{"ts":1527816982,"i":535,"p":"استوګنځی","f":"astogundzey","g":"astogundzey","e":"residence, dwelling; hostel, dormitory","c":"n. m."},"def":"residence, dwelling; hostel, dormitory","category":"ey-masc"},{"entry":{"ts":1527818489,"i":562,"p":"اسوېلی","f":"asweley","g":"asweley","e":"yawn, sigh, deep breath, shivering","c":"n. m."},"def":"yawn, sigh, deep breath, shivering","category":"ey-masc"},{"entry":{"ts":1527822497,"i":990,"p":"اننګی","f":"anangey","g":"anangey","e":"cheek","c":"n. m."},"def":"cheek","category":"ey-masc"},{"entry":{"ts":1527821967,"i":1010,"p":"اوبسپی","f":"obspéy","g":"obspey","e":"beaver, seal","c":"n. m."},"def":"beaver, seal","category":"ey-masc"},{"entry":{"ts":1527822190,"i":1035,"p":"اور غالی","f":"orgháaley","g":"orghaaley","e":"stove, oven, furnace, hearth, floor of a fireplace","c":"n. m."},"def":"stove, oven, furnace, hearth, floor of a fireplace","category":"ey-masc"},{"entry":{"ts":1527821545,"i":1049,"p":"اورشیندی","f":"orsheendéy","g":"orsheendey","e":"volcano","c":"n. m."},"def":"volcano","category":"ey-masc"},{"entry":{"ts":1527819192,"i":1051,"p":"اورګاډی","f":"orgáaDey","g":"orgaaDey","e":"train","c":"n. m."},"def":"train","category":"ey-masc"},{"entry":{"ts":1527815585,"i":1065,"p":"اوړی","f":"oRey","g":"oRey","e":"summer","c":"n. m."},"def":"summer","category":"ey-masc"},{"entry":{"ts":1527815132,"i":1089,"p":"اوښ غویی","f":"oox ghwayey","g":"ooxghwayey","e":"giraffe","c":"n. m."},"def":"giraffe","category":"ey-masc"},{"entry":{"ts":1527816488,"i":1093,"p":"اوښی","f":"awxey","g":"awxey","e":"brother in law, wife's brother","c":"n. m."},"def":"brother in law, wife's brother","category":"ey-masc"},{"entry":{"ts":1623044357441,"i":1330,"p":"ببوتنکی","f":"bubootúnkey","g":"bubootunkey","e":"tuft, clump, shock of hair","c":"n. m."},"def":"tuft, clump, shock of hair","category":"ey-masc"},{"entry":{"ts":1527821668,"i":1356,"p":"بڅری","f":"batsúrey","g":"batsurey","e":"spark, speck, flicker","c":"n. m."},"def":"spark, speck, flicker","category":"ey-masc"},{"entry":{"ts":1527821239,"i":1439,"p":"بډوری","f":"baDóorey","g":"baDoorey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527821099,"i":1503,"p":"برغوږی","f":"barghwáGey","g":"barghwagey","e":"earring","c":"n. m."},"def":"earring","category":"ey-masc"},{"entry":{"ts":1527822629,"i":1504,"p":"برغولی","f":"barghóley","g":"bargholey","e":"lid, cover","c":"n. m."},"def":"lid, cover","category":"ey-masc"},{"entry":{"ts":1527811903,"i":1546,"p":"بری","f":"barey","g":"barey","e":"success, victory","c":"n. m."},"def":"success, victory","category":"ey-masc"},{"entry":{"ts":1594904072731,"i":1743,"p":"بنګړی","f":"bangRéy","g":"bangRey","e":"bracelet","c":"n. m."},"def":"bracelet","category":"ey-masc"},{"entry":{"ts":1527817159,"i":1794,"p":"بوټی","f":"booTey","g":"booTey","e":"plant","c":"n. m."},"def":"plant","category":"ey-masc"},{"entry":{"ts":1527815055,"i":1823,"p":"بوږنوړی","f":"boGnwaRey","g":"bognwaRey","e":"terrible","c":"adj."},"def":"terrible","category":"ey-masc"},{"entry":{"ts":1610618917483,"i":2166,"p":"پالنځی","f":"paalundzéy","g":"paalundzey","e":"orphanage, nursery","c":"n. m."},"def":"orphanage, nursery","category":"ey-masc"},{"entry":{"ts":1527814666,"i":2192,"p":"پای ټکی","f":"paayTakey","g":"paayTakey","e":"final point, end point","c":"n. m."},"def":"final point, end point","category":"ey-masc"},{"entry":{"ts":1527816195,"i":2235,"p":"پټکی","f":"paTkey","g":"paTkey","e":"small turban","c":"n. m."},"def":"small turban","category":"ey-masc"},{"entry":{"ts":1527811611,"i":2241,"p":"پټی","f":"paTey","g":"paTey","e":"field, place where crops are sown","c":"n. m."},"def":"field, place where crops are sown","category":"ey-masc"},{"entry":{"ts":1588762458105,"i":2262,"p":"پخلنځی","f":"pukhlandzéy","g":"pukhlandzey","e":"kitchen","c":"n. m."},"def":"kitchen","category":"ey-masc"},{"entry":{"ts":1527816059,"i":2263,"p":"پخلی","f":"pakhley","g":"pakhley","e":"cooking, preparation of food; wisdom, maturity","c":"n. m."},"def":"cooking, preparation of food; wisdom, maturity","category":"ey-masc"},{"entry":{"ts":1527821241,"i":2331,"p":"پرګی","f":"purgéy, pirgéy","g":"purgey,pirgey","e":"acorn","c":"n. m."},"def":"acorn","category":"ey-masc"},{"entry":{"ts":1527813812,"i":2425,"p":"پړونی","f":"paRóoney","g":"paRooney","e":"veil, covering for women, cover","c":"n. m."},"def":"veil, covering for women, cover","category":"ey-masc"},{"entry":{"ts":1527822385,"i":2426,"p":"پړی","f":"púRey","g":"puRey","e":"rope, cable, cord","c":"n. m."},"def":"rope, cable, cord","category":"ey-masc"},{"entry":{"ts":1527812980,"i":2440,"p":"پس پسی","f":"puspusey","g":"puspusey","e":"whispering, murmuring, rumor, gossip","c":"n. m."},"def":"whispering, murmuring, rumor, gossip","category":"ey-masc"},{"entry":{"ts":1527814005,"i":2456,"p":"پسرلی","f":"psarléy, pusărléy","g":"psarley,pusarley","e":"spring, springtime (season)","c":"n. m."},"def":"spring, springtime (season)","category":"ey-masc"},{"entry":{"ts":1527821229,"i":2487,"p":"پښتورګی","f":"paxtawurgey","g":"paxtawurgey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527817035,"i":2526,"p":"پلاوی","f":"plaawey","g":"plaawey","e":"mission, delegation","c":"n. m."},"def":"mission, delegation","category":"ey-masc"},{"entry":{"ts":1527815187,"i":2738,"p":"پوزی","f":"pozey","g":"pozey","e":"mat","c":"n. m."},"def":"mat","category":"ey-masc"},{"entry":{"ts":1527816627,"i":2742,"p":"پوستکی","f":"postukey","g":"postukey","e":"fleece, pelt, skin, shell, rind, bark; ear lobe","c":"n. m."},"def":"fleece, pelt, skin, shell, rind, bark; ear lobe","category":"ey-masc"},{"entry":{"ts":1527819332,"i":2753,"p":"پوښتورګی","f":"pooxtawúrgey","g":"pooxtawurgey","e":"kidney","c":"n. m."},"def":"kidney","category":"ey-masc"},{"entry":{"ts":1527819496,"i":2775,"p":"پوهاوی","f":"pohaawéy","g":"pohaawey","e":"understanding, comprehension","c":"n. m."},"def":"understanding, comprehension","category":"ey-masc"},{"entry":{"ts":1527815168,"i":2810,"p":"پېټی","f":"peTéy","g":"peTey","e":"load, weight, burden","c":"n. m."},"def":"load, weight, burden","category":"ey-masc"},{"entry":{"ts":1527815927,"i":2856,"p":"پېرونکی","f":"peróonkey","g":"peroonkey","e":"customer","c":"n. m. anim. unisex"},"def":"customer","category":"ey-masc"},{"entry":{"ts":1527815017,"i":2858,"p":"پېروی","f":"perúwey, peráwey","g":"peruwey,perawey","e":"cream","c":"n. m."},"def":"cream","category":"ey-masc"},{"entry":{"ts":1527815325,"i":3027,"p":"تاوتریخوالی","f":"taawtreekhwaaley","g":"taawtreekhwaaley","e":"violence","c":"n. m."},"def":"violence","category":"ey-masc"},{"entry":{"ts":1611397750325,"i":3033,"p":"تاوی","f":"taawéy","g":"taawey","e":"screwdriver, screw","c":"n. m."},"def":"screwdriver, screw","category":"ey-masc"},{"entry":{"ts":1622374978659,"i":3057,"p":"تبرګی","f":"tubúrgey","g":"tuburgey","e":"hatchet","c":"n. m."},"def":"hatchet","category":"ey-masc"},{"entry":{"ts":1527818705,"i":3141,"p":"تخرګی","f":"tkhurgéy","g":"tkhurgey","e":"gusset (in a shirt)","c":"n. m."},"def":"gusset (in a shirt)","category":"ey-masc"},{"entry":{"ts":1527814392,"i":3369,"p":"تړونی","f":"taRooney","g":"taRooney","e":"band, bandage","c":"n. m."},"def":"band, bandage","category":"ey-masc"},{"entry":{"ts":1527822723,"i":3430,"p":"تشی","f":"túshey","g":"tushey","e":"empty space, void, side, groin","c":"n. m."},"def":"side, groin, empty place, void","category":"ey-masc"},{"entry":{"ts":1577585114379,"i":3633,"p":"تلی","f":"táley","g":"taley","e":"sole (of a shoe); yard, compound; palm","c":"n. m."},"def":"sole (of a shoe); yard, compound; palm","category":"ey-masc"},{"entry":{"ts":1527816630,"i":3707,"p":"تندی","f":"tandey","g":"tandey","e":"forehead, brow, slope","c":"n. m."},"def":"forehead, brow, slope","category":"ey-masc"},{"entry":{"ts":1527821980,"i":3744,"p":"تڼی","f":"taNéy","g":"taNey","e":"bellyband (of a harness)","c":"n. m."},"def":"bellyband (of a harness)","category":"ey-masc"},{"entry":{"ts":1527819719,"i":3813,"p":"توری","f":"tórey","g":"torey","e":"spleen","c":"n. m."},"def":"spleen","category":"ey-masc"},{"entry":{"ts":1527819721,"i":3814,"p":"توری","f":"toréy","g":"torey","e":"letter, letter of the alphabet","c":"n. m."},"def":"letter, letter of the alphabet","category":"ey-masc"},{"entry":{"ts":1527819622,"i":3839,"p":"توغندی","f":"toghandéy","g":"toghandey","e":"rocket, missile","c":"n. m."},"def":"rocket, missile","category":"ey-masc"},{"entry":{"ts":1527814705,"i":3867,"p":"توکی","f":"tokey","g":"tokey","e":"element, item, material; thing, material, kind, type","c":"n. m."},"def":"element, item, material; thing, material, kind, type","category":"ey-masc"},{"entry":{"ts":1527819563,"i":4041,"p":"ټکری","f":"TUkréy","g":"TUkrey","e":"piece, small piece; a length (of cloth); blanket","c":"n. m."},"def":"piece, small piece; a length (of cloth); blanket","category":"ey-masc"},{"entry":{"ts":1577408381145,"i":4042,"p":"ټکری","f":"Tikréy","g":"Tikrey","e":"shawl, head-covering","c":"n. m."},"def":"shawl, head-covering","category":"ey-masc"},{"entry":{"ts":1527814667,"i":4054,"p":"ټکی","f":"Tákey","g":"Takey","e":"word; point; dot","c":"n. m."},"def":"word; point; dot","category":"ey-masc"},{"entry":{"ts":1527813617,"i":4160,"p":"ټیکری","f":"Teekréy","g":"Teekrey","e":"shawl, head covering","c":"n. m."},"def":"shawl, head covering","category":"ey-masc"},{"entry":{"ts":1527819733,"i":4583,"p":"ځلمی","f":"dzalméy","g":"dzalmey","e":"young, youth, young lad","c":"n. m."},"def":"young, youth, young lad","category":"ey-masc"},{"entry":{"ts":1527815465,"i":4671,"p":"چارواکی","f":"chaarwaakey","g":"chaarwaakey","e":"official authority, official, authority","c":"n. m."},"def":"official authority, official, authority","category":"ey-masc"},{"entry":{"ts":1527822356,"i":4859,"p":"چنجی","f":"chinjéy","g":"chinjey","e":"worm, small insect","c":"n. m."},"def":"worm, small insect","category":"ey-masc"},{"entry":{"ts":1527822808,"i":4877,"p":"چنی","f":"chanéy","g":"chaney","e":"basin, bowl","c":"n. m."},"def":"basin, bowl","category":"ey-masc"},{"entry":{"ts":1527822357,"i":4978,"p":"چینجی","f":"cheenjéy","g":"cheenjey","e":"worm, small insect","c":"n. m."},"def":"worm, small insect","category":"ey-masc"},{"entry":{"ts":1527819046,"i":4990,"p":"څاڅکی","f":"tsáatskey","g":"tsaatskey","e":"drop","c":"n. m."},"def":"drop","category":"ey-masc"},{"entry":{"ts":1527817874,"i":5062,"p":"څرنګوالی","f":"tsurangwaaley","g":"tsurangwaaley","e":"quality, nature","c":"n. m."},"def":"quality, nature","category":"ey-masc"},{"entry":{"ts":1527814041,"i":5067,"p":"څړمنی","f":"tsaRmuney","g":"tsaRmuney","e":"spring (season)","c":"n. m."},"def":"spring (season)","category":"ey-masc"},{"entry":{"ts":1527813361,"i":5103,"p":"څلی","f":"tsaley","g":"tsaley","e":"column, pilliar, pyramid","c":"n. m."},"def":"column, pilliar, pyramid","category":"ey-masc"},{"entry":{"ts":1527819027,"i":5108,"p":"څمڅی","f":"tsamtsey","g":"tsamtsey","e":"ladle, dipper","c":"n. m."},"def":"ladle, dipper","category":"ey-masc"},{"entry":{"ts":1573055311846,"i":5402,"p":"خبرداری","f":"khabardaarey","g":"khabardaarey","e":"warning, notice, alarm","c":"n. m."},"def":"warning, notice, alarm","category":"ey-masc"},{"entry":{"ts":1527820324,"i":5443,"p":"خټکی","f":"khaTakéy","g":"khaTakey","e":"melon","c":"n. m."},"def":"melon","category":"ey-masc"},{"entry":{"ts":1527819828,"i":6050,"p":"درناوی","f":"dranaawey","g":"dranaawey","e":"weight; respect, honour","c":"n. m."},"def":"weight; respect, honour","category":"ey-masc"},{"entry":{"ts":1588161660483,"i":6388,"p":"ډانګوری","f":"Daangooréy","g":"Daangoorey","e":"crutch, walking-stick, cane","c":"n. m."},"def":"crutch, walking-stick, cane","category":"ey-masc"},{"entry":{"ts":1527813493,"i":6501,"p":"ډېری","f":"Derey","g":"Derey","e":"majority; heap, pile","c":"n. m."},"def":"majority; heap, pile","category":"ey-masc"},{"entry":{"ts":1527823700,"i":6604,"p":"راشی","f":"raashey","g":"raashey","e":"avalanche, flood, shower","c":"n. m."},"def":"avalanche, flood, shower","category":"ey-masc"},{"entry":{"ts":1527819732,"i":7109,"p":"زلمی","f":"zalméy","g":"zalmey","e":"young, youth, young lad","c":"n. m."},"def":"young, youth, young lad","category":"ey-masc"},{"entry":{"ts":1527813708,"i":7240,"p":"زېری","f":"zerey","g":"zerey","e":"good news, gospel","c":"n. m."},"def":"good news, gospel","category":"ey-masc"},{"entry":{"ts":1588758498458,"i":7245,"p":"زېړی","f":"zeRéy","g":"zeRey","e":"jaundice","c":"n. m."},"def":"jaundice","category":"ey-masc"},{"entry":{"ts":1571626392709,"i":7249,"p":"زېږنځی","f":"zeGundzey","g":"zegundzey","e":"birthplace","c":"n. m."},"def":"birthplace","category":"ey-masc"},{"entry":{"ts":1527815698,"i":7300,"p":"ژمی","f":"jzúmey, jzímey","g":"jzumey,jzimey","e":"winter","c":"n. m."},"def":"winter","category":"ey-masc"},{"entry":{"ts":1573686563723,"i":7323,"p":"ژی","f":"jzey","g":"jzey","e":"wineskin, bagpipe, skin for carrying liquid","c":"n. m."},"def":"wineskin, bagpipe, skin for carrying liquid","category":"ey-masc"},{"entry":{"ts":1527815239,"i":7348,"p":"ساتېری","f":"saaterey","g":"saaterey","e":"entertainment, fun, recreation","c":"n. m."},"def":"entertainment, fun, recreation","category":"ey-masc"},{"entry":{"ts":1527813725,"i":7364,"p":"ساری","f":"sáarey","g":"saarey","e":"equal, equivalent, match, precedent","c":"n. m."},"def":"equal, equivalent, match, precedent","category":"ey-masc"},{"entry":{"ts":1527814021,"i":7443,"p":"سپرلی","f":"sparléy","g":"sparley","e":"spring (season)","c":"n. m."},"def":"spring (season)","category":"ey-masc"},{"entry":{"ts":1527813509,"i":7458,"p":"سپکاوی","f":"spukaawéy","g":"spukaawey","e":"insult, disgrace, defamation, disrespect","c":"n. m."},"def":"insult, disgrace, defamation, disrespect","category":"ey-masc"},{"entry":{"ts":1527815298,"i":7496,"p":"سپیناوی","f":"speenaawey","g":"speenaawey","e":"clarification, attestation","c":"n. m."},"def":"clarification, attestation","category":"ey-masc"},{"entry":{"ts":1578002674551,"i":7514,"p":"سترغلی","f":"sturghúley","g":"sturghuley","e":"eye-socket, eyelid; orbit","c":"n. m."},"def":"eye-socket, eyelid; orbit","category":"ey-masc"},{"entry":{"ts":1527811999,"i":7549,"p":"ستوری","f":"storey","g":"storey","e":"star","c":"n. m."},"def":"star","category":"ey-masc"},{"entry":{"ts":1527817001,"i":7560,"p":"ستونی","f":"stóoney","g":"stooney","e":"throat, larynx","c":"n. m."},"def":"throat, larynx","category":"ey-masc"},{"entry":{"ts":1527813511,"i":7660,"p":"سرخوږی","f":"sărkhooGéy, sărkhwuGéy","g":"sarkhoogey,sarkhwugey","e":"headache, trouble","c":"n. m."},"def":"headache, trouble","category":"ey-masc"},{"entry":{"ts":1527815251,"i":7735,"p":"سړی","f":"saRéy","g":"saRey","e":"man","c":"n. m.","ec":"man","ep":"men"},"def":"man","category":"ey-masc"},{"entry":{"ts":1527819850,"i":7743,"p":"سږی","f":"súGey","g":"sugey","e":"lung","c":"n. m."},"def":"lung","category":"ey-masc"},{"entry":{"ts":1527812302,"i":7957,"p":"سوری","f":"soorey","g":"soorey","e":"hole, slit, opening","c":"n. m."},"def":"hole, slit, opening","category":"ey-masc"},{"entry":{"ts":1527818221,"i":8027,"p":"سوی","f":"swey","g":"swey","e":"burning, zeal, fervour","c":"n. m."},"def":"burning, zeal, fervour","category":"ey-masc"},{"entry":{"ts":1527812304,"i":8105,"p":"سیوری","f":"syórey, syóorey","g":"syorey,syoorey","e":"shade, shadow","c":"n. m."},"def":"shade, shadow","category":"ey-masc"},{"entry":{"ts":1527815268,"i":8479,"p":"شی","f":"shey","g":"shey","e":"thing","c":"n. m.","ppp":"شیان، شیونه","ppf":"sheyáan, sheyóona"},"def":"thing","category":"ey-masc"},{"entry":{"ts":1527822527,"i":8539,"p":"ښتګری","f":"xatgaréy","g":"xatgarey","e":"ankle, ankle-bone","c":"n. m."},"def":"ankle, ankle-bone","category":"ey-masc"},{"entry":{"ts":1527812793,"i":8590,"p":"ښوونځی","f":"xowundzey","g":"xowundzey","e":"school","c":"n. m."},"def":"school","category":"ey-masc"},{"entry":{"ts":1527821064,"i":8595,"p":"ښویکی","f":"xwayakéy","g":"xwayakey","e":"a quick, clever, agile, bright man; a swindler, a fraud","c":"n. m."},"def":"a quick, clever, agile, bright man; a swindler, a fraud","category":"ey-masc"},{"entry":{"ts":1527822650,"i":9049,"p":"غټوالی","f":"ghaTwaaley","g":"ghaTwaaley","e":"largeness, bigness","c":"n. m."},"def":"largeness, bigness","category":"ey-masc"},{"entry":{"ts":1527814569,"i":9115,"p":"غړی","f":"ghuRey","g":"ghuRey","e":"member","c":"n. m."},"def":"member","category":"ey-masc"},{"entry":{"ts":1527817627,"i":9135,"p":"غشی","f":"ghúshey","g":"ghushey","e":"arrow","c":"n. m."},"def":"arrow","category":"ey-masc"},{"entry":{"ts":1527822913,"i":9191,"p":"غمی","f":"ghaméy","g":"ghamey","e":"precious stone, precious stone in a signet ring","c":"n. m."},"def":"precious stone, precious stone in a signet ring","category":"ey-masc"},{"entry":{"ts":1527823466,"i":9202,"p":"غنګوری","f":"ghangóorey","g":"ghangoorey","e":"ear lobe","c":"n. m."},"def":"ear lobe","category":"ey-masc"},{"entry":{"ts":1527818483,"i":9257,"p":"غوری","f":"ghorey","g":"ghorey","e":"plate","c":"n. m."},"def":"plate","category":"ey-masc"},{"entry":{"ts":1527816181,"i":9753,"p":"قی","f":"qey","g":"key","e":"vomit, nausea (Arabic)","c":"n. m."},"def":"vomit, nausea (Arabic)","category":"ey-masc"},{"entry":{"ts":1527814715,"i":9813,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},"def":"user","category":"ey-masc"},{"entry":{"ts":1527823295,"i":9888,"p":"کاڼی","f":"káaNey","g":"kaaNey","e":"stone, rock","c":"n. m."},"def":"stone, rock","category":"ey-masc"},{"entry":{"ts":1527818563,"i":9907,"p":"کبوړی","f":"kabóoRey","g":"kabooRey","e":"muscle","c":"n. m."},"def":"muscle","category":"ey-masc"},{"entry":{"ts":1527822824,"i":9921,"p":"کتاب ګوټی","f":"kitaabgóTey","g":"kitaabgoTey","e":"booklet, notebook","c":"n. m."},"def":"booklet, notebook","category":"ey-masc"},{"entry":{"ts":1582388629980,"i":10143,"p":"کسی","f":"kúsey","g":"kusey","e":"pupil (of an eye)","c":"n. m."},"def":"pupil (of an eye)","category":"ey-masc"},{"entry":{"ts":1594906790729,"i":10208,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"boy","category":"ey-masc"},{"entry":{"ts":1527812836,"i":10248,"p":"کلی","f":"kúley, kíley","g":"kuley,kiley","e":"village","c":"n. m."},"def":"village","category":"ey-masc"},{"entry":{"ts":1527816880,"i":10300,"p":"کمی","f":"kamey","g":"kamey","e":"shortage, lack, deficiency","c":"n. m."},"def":"shortage, lack, deficiency","category":"ey-masc"},{"entry":{"ts":1610616852625,"i":10360,"p":"کنګرېزی","f":"kangrezéy","g":"kangrezey","e":"echo","c":"n. m."},"def":"echo","category":"ey-masc"},{"entry":{"ts":1527819196,"i":10633,"p":"ګاډی","f":"gáaDey","g":"gaaDey","e":"car, train","c":"n. m."},"def":"car, train","category":"ey-masc"},{"entry":{"ts":1579016593220,"i":10880,"p":"ګنی","f":"ganéy","g":"ganey","e":"beehive; wasps' nest","c":"n. m."},"def":"beehive; wasps' nest","category":"ey-masc"},{"entry":{"ts":1527819076,"i":10928,"p":"ګوډاګی","f":"gooDaagéy","g":"gooDaagey","e":"doll, puppet","c":"n. m."},"def":"doll, puppet","category":"ey-masc"},{"entry":{"ts":1527822505,"i":10984,"p":"ګومبوری","f":"goomboorey","g":"goomboorey","e":"cheek","c":"n. m."},"def":"cheek","category":"ey-masc"},{"entry":{"ts":1527819079,"i":11076,"p":"لاسپوڅی","f":"laaspotséy","g":"laaspotsey","e":"puppet","c":"n. m."},"def":"puppet","category":"ey-masc"},{"entry":{"ts":1573149568665,"i":11079,"p":"لاسرسی","f":"laasraséy","g":"laasrasey","e":"access, availability","c":"n. m."},"def":"access, availability","category":"ey-masc"},{"entry":{"ts":1527817464,"i":11176,"p":"لرګی","f":"largey","g":"largey","e":"wood, timber","c":"n. m."},"def":"wood, timber","category":"ey-masc"},{"entry":{"ts":1527822801,"i":11221,"p":"لستوڼی","f":"lastóNey","g":"lastoNey","e":"sleeve","c":"n. m."},"def":"sleeve","category":"ey-masc"},{"entry":{"ts":1527812416,"i":11231,"p":"لښتی","f":"laxtey","g":"laxtey","e":"brook, rivulet, small irrigation","c":"n. m."},"def":"brook, rivulet, small irrigation","category":"ey-masc"},{"entry":{"ts":1527814401,"i":11384,"p":"لوبونی","f":"lobawuney","g":"lobawuney","e":"toy","c":"n. m."},"def":"toy","category":"ey-masc"},{"entry":{"ts":1527814519,"i":11416,"p":"لوری","f":"lorey","g":"lorey","e":"side, direction","c":"n. m."},"def":"side, direction","category":"ey-masc"},{"entry":{"ts":1527823103,"i":11499,"p":"لیدلوری","f":"leedlorey","g":"leedlorey","e":"perspective, viewpoint","c":"n. m."},"def":"perspective, viewpoint","category":"ey-masc"},{"entry":{"ts":1527819920,"i":11600,"p":"ماشی","f":"maashey","g":"maashey","e":"mosquito, midge","c":"n. m."},"def":"mosquito, midge","category":"ey-masc"},{"entry":{"ts":1527820224,"i":11838,"p":"مچوژی","f":"muchwajzéy","g":"muchwajzey","e":"fly swatter","c":"n. m."},"def":"fly swatter","category":"ey-masc"},{"entry":{"ts":1591871316865,"i":11924,"p":"مختاړی","f":"mukhtaaRey","g":"mukhtaaRey","e":"prefix (grammar)","c":"n. m."},"def":"prefix (grammar)","category":"ey-masc"},{"entry":{"ts":1527817105,"i":12122,"p":"مړخندی","f":"muRkhandey","g":"muRkhandey","e":"smile, smiling","c":"n. m."},"def":"smile, smiling","category":"ey-masc"},{"entry":{"ts":1527817770,"i":12139,"p":"مړی","f":"múRey","g":"muRey","e":"dead body, corpse","c":"n. m."},"def":"dead body, corpse","category":"ey-masc"},{"entry":{"ts":1527813189,"i":12762,"p":"منی","f":"máney","g":"maney","e":"fall, autumn","c":"n. m."},"def":"fall, autumn","category":"ey-masc"},{"entry":{"ts":1527812925,"i":12899,"p":"مومپلی","f":"mompaley","g":"mompaley","e":"peanut","c":"n. m."},"def":"peanut","category":"ey-masc"},{"entry":{"ts":1527812421,"i":12969,"p":"مېږی","f":"meGey","g":"megey","e":"ant","c":"n. m."},"def":"ant","category":"ey-masc"},{"entry":{"ts":1527819227,"i":13331,"p":"نشتوالی","f":"nashtwaaley","g":"nashtwaaley","e":"lack","c":"n. m."},"def":"lack","category":"ey-masc"},{"entry":{"ts":1527823577,"i":13619,"p":"نیالګی","f":"niyaalgey","g":"niyaalgey","e":"sapling, seedling, sprout, young tree","c":"n. m."},"def":"sapling, seedling, sprout, young tree","category":"ey-masc"},{"entry":{"ts":1527812073,"i":13755,"p":"هډوکی","f":"haDookey","g":"haDookey","e":"bone","c":"n. m."},"def":"bone","category":"ey-masc"},{"entry":{"ts":1527812668,"i":13768,"p":"هرکلی","f":"hărkáley","g":"harkaley","e":"welcome","c":"n. m."},"def":"welcome","category":"ey-masc"},{"entry":{"ts":1588153218244,"i":13792,"p":"هسکوالی","f":"haskwáaley","g":"haskwaaley","e":"height, elevation, tallness","c":"n. m."},"def":"height, elevation, tallness","category":"ey-masc"},{"entry":{"ts":1585309922022,"i":14044,"p":"والګی","f":"waalgéy","g":"waalgey","e":"flu, respiratory illness, influenza, cold","c":"n. m."},"def":"flu, respiratory illness, influenza, cold","category":"ey-masc"},{"entry":{"ts":1527813014,"i":14225,"p":"وژی","f":"wajzey","g":"wajzey","e":"vein, nerve","c":"n. m."},"def":"vein, nerve","category":"ey-masc"},{"entry":{"ts":1527821465,"i":14321,"p":"ولی","f":"wuléy","g":"wuley","e":"shoulder","c":"n. m."},"def":"shoulder","category":"ey-masc"},{"entry":{"ts":1527814004,"i":14352,"p":"ووړی","f":"woRey","g":"woRey","e":"summer","c":"n. m."},"def":"summer","category":"ey-masc"},{"entry":{"ts":1527822004,"i":33,"p":"آخرینی","f":"aakhireenéy","g":"aakhireeney","e":"last, final, latest","c":"adj."},"def":"last, final","category":"ey-stressed-unisex"},{"entry":{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},"def":"Afghan (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1612616237182,"i":2153,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},"def":"Pakistani (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1527813400,"i":1083,"p":"اوسنی","f":"oosanéy","g":"oosaney","e":"current, present","c":"adj."},"def":"current","category":"ey-stressed-unisex"},{"entry":{"ts":1527815661,"i":1102,"p":"اولنی","f":"awwalunéy","g":"awwaluney","e":"first, beginning","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"child","category":"ey-stressed-unisex"},{"entry":{"ts":1527816646,"i":1778,"p":"بهرنی","f":"baharanéy, bahranéy","g":"baharaney,bahraney","e":"foreigner, foreign; outside, outer","c":"adj."},"def":"foreigner, outer","category":"ey-stressed-unisex"},{"entry":{"ts":1527818769,"i":2020,"p":"بېړنی","f":"beRanéy","g":"beRaney","e":"emergency","c":"adj."},"def":"emergency","category":"ey-stressed-unisex"},{"entry":{"ts":1592382613021,"i":2270,"p":"پخوانی","f":"pakhwaanéy","g":"pakhwaaney","e":"old, ancient, previous, former","c":"adj."},"def":"old, ancient, former","category":"ey-stressed-unisex"},{"entry":{"ts":1527819532,"i":2309,"p":"پردی","f":"pradéy, prudéy","g":"pradey,prudey","e":"foreign, unrelated, another('s)","c":"adj."},"def":"foreign, unrelated","category":"ey-stressed-unisex"},{"entry":{"ts":1577381894391,"i":2348,"p":"پرنګی","f":"parangéy","g":"parangey","e":"Englishman, Westerner, foreigner","c":"n. m. unisex / adj."},"def":"Englishman, Westerner","category":"ey-stressed-unisex"},{"entry":{"ts":1527820194,"i":2521,"p":"پلانکی","f":"pulaankéy","g":"pulaankey","e":"so-and-so, such-and-such, ambiguous pronoun (فلان)","c":"adj. / n. m. anim. unisex"},"def":"so-and-so","category":"ey-stressed-unisex"},{"entry":{"ts":1527820130,"i":2561,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex","ppp":"پلویان","ppf":"palawiyáan"},"def":"adherent","category":"ey-stressed-unisex"},{"entry":{"ts":1582390092514,"i":2717,"p":"پورتنی","f":"portinéy","g":"portiney","e":"upper, above","c":"adj."},"def":"upper, above","category":"ey-stressed-unisex"},{"entry":{"ts":1610617741649,"i":4604,"p":"ځنډنی","f":"dzanDanéy, dzanDunéy","g":"dzanDaney,dzanDuney","e":"old, ancient","c":"adj."},"def":"old, ancient","category":"ey-stressed-unisex"},{"entry":{"ts":1610793723568,"i":4971,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},"def":"goat","category":"ey-stressed-unisex"},{"entry":{"ts":1527819362,"i":5765,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},"def":"calf (animal)","category":"ey-stressed-unisex"},{"entry":{"ts":1590052667427,"i":6017,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},"def":"witness","category":"ey-stressed-unisex"},{"entry":{"ts":1527822854,"i":6977,"p":"ړومبی","f":"Roombéy","g":"Roombey","e":"first, before","c":"adj."},"def":"first, before","category":"ey-stressed-unisex"},{"entry":{"ts":1527820213,"i":7118,"p":"زمری","f":"zmaréy","g":"zmarey","e":"lion","c":"n. m. anim. unisex"},"def":"lion","category":"ey-stressed-unisex"},{"entry":{"ts":1527813923,"i":7320,"p":"ژوندی","f":"jzwundéy","g":"jzwundey","e":"living","c":"adj."},"def":"living","category":"ey-stressed-unisex"},{"entry":{"ts":1527815299,"i":7472,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},"def":"dog","category":"ey-stressed-unisex"},{"entry":{"ts":1527820788,"i":8525,"p":"ښارنی","f":"xaaranéy","g":"xaaraney","e":"city, urban","c":"adj."},"def":"city, urban","category":"ey-stressed-unisex"},{"entry":{"ts":1527812822,"i":10425,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small","c":"adj."},"def":"little, small","category":"ey-stressed-unisex"},{"entry":{"ts":1527823742,"i":10427,"p":"کوچی","f":"kochéy","g":"kochey","e":"migratory, nomadic","c":"adj."},"def":"nomadic","category":"ey-stressed-unisex"},{"entry":{"ts":1527818765,"i":10785,"p":"ګړندی","f":"guRandéy","g":"guRandey","e":"speedy, high speed, fast, quick","c":"adj."},"def":"speedy, quick","category":"ey-stressed-unisex"},{"entry":{"ts":1527819130,"i":10817,"p":"ګلالی","f":"gUlaaléy","g":"gUlaaley","e":"pretty, beautiful, lovely, cute, sweet","c":"adj."},"def":"cute","category":"ey-stressed-unisex"},{"entry":{"ts":1576101261017,"i":10877,"p":"ګنګی","f":"gUngéy, gangéy","g":"gUngey,gangey","e":"mute, dumb (person)","c":"n. m. anim. unisex / adj."},"def":"mute (person)","category":"ey-stressed-unisex"},{"entry":{"ts":1582316583262,"i":11120,"p":"لاندینی","f":"laandeenéy","g":"laandeeney","e":"lower, bottom","c":"adj."},"def":"lower, bottom","category":"ey-stressed-unisex"},{"entry":{"ts":1527816249,"i":11319,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},"def":"grandchild","category":"ey-stressed-unisex"},{"entry":{"ts":1527813472,"i":11462,"p":"لومړنی","f":"loomRanéy","g":"loomRaney","e":"first","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527813132,"i":11464,"p":"لومړی","f":"loomRéy","g":"loomRey","e":"first","c":"adj."},"def":"first","category":"ey-stressed-unisex"},{"entry":{"ts":1527819910,"i":11744,"p":"متلی","f":"mutléy","g":"mutley","e":"slippery, smooth","c":"adj."},"def":"slippery, smooth","category":"ey-stressed-unisex"},{"entry":{"ts":1527820414,"i":12676,"p":"منځنی","f":"mandzunéy","g":"mandzuney","e":"middle, central","c":"adj."},"def":"middle, central","category":"ey-stressed-unisex"},{"entry":{"ts":1527811202,"i":12923,"p":"میاشتنی","f":"miyaashtanéy","g":"miyaashtaney","e":"monthly","c":"adj."},"def":"monthly","category":"ey-stressed-unisex"},{"entry":{"ts":1527819320,"i":13271,"p":"نری","f":"naréy","g":"narey","e":"thin; mild; high (pitch)","c":"adj."},"def":"thin","category":"ey-stressed-unisex"},{"entry":{"ts":1527816251,"i":13474,"p":"نمسی","f":"nmaséy","g":"nmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},"def":"grandchild","category":"ey-stressed-unisex"},{"entry":{"ts":1527821373,"i":13938,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},"def":"deer","category":"ey-stressed-unisex"},{"entry":{"ts":1527813636,"i":14167,"p":"وروستی","f":"wroostéy","g":"wroostey","e":"last, latest, recent","c":"adj."},"def":"last","category":"ey-stressed-unisex"},{"entry":{"ts":1527815430,"i":14484,"p":"یوازنی","f":"yawaazunéy","g":"yawaazuney","e":"only, unique, sole","c":"adj."},"def":"only","category":"ey-stressed-unisex"},{"entry":{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},"def":"resident","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813469,"i":1368,"p":"بخښونکی","f":"bakhxóonkey","g":"bakhxoonkey","e":"forgiving","c":"adj."},"def":"forgiving","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817829,"i":2724,"p":"پوروړی","f":"porwáRey, porawúRey","g":"porwaRey,porawuRey","e":"debtor, in debt","c":"n. m. anim. unisex"},"def":"debtor","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815205,"i":2802,"p":"پیاوړی","f":"pyaawáRey","g":"pyaawaRey","e":"powerful, strong, great","c":"adj."},"def":"powerful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815924,"i":2855,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},"def":"customer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819604,"i":3347,"p":"ترینګلی","f":"treengúley","g":"treenguley","e":"tense, stern, grim, sour, moody (person)","c":"adj."},"def":"tense, stern","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813406,"i":3357,"p":"تړلی","f":"taRuley","g":"taRuley","e":"bound, tied, closed","c":"adj."},"def":"bound, tied","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815381,"i":3376,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},"def":"thirsty","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817607,"i":3793,"p":"تور مخی","f":"tormúkhey","g":"tormukhey","e":"disgraceful, shameful, dishonered","c":"adj."},"def":"disgraceful, shameful, dishonered","category":"ey-unstressed-unisex"},{"entry":{"ts":1527822859,"i":5021,"p":"څپولی","f":"tsapoley","g":"tsapoley","e":"dishevelled, messy, curly (with hair etc.)","c":"adj."},"def":"dishevelled, messy, curly (with hair etc.)","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811466,"i":5168,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},"def":"researcher","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812377,"i":5282,"p":"حکم منونکی","f":"hUkum munóonkey","g":"hUkummunoonkey","e":"obedient, submissive","c":"adj."},"def":"obedient, submissive","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817299,"i":5326,"p":"حیرانوونکی","f":"heyraanawóonkey","g":"heyraanawoonkey","e":"amazing, surprising","c":"adj."},"def":"amazing, surprising","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813282,"i":5499,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},"def":"seller","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812809,"i":5668,"p":"خوار ځواکی","f":"khwaar dzwaakey","g":"khwaardzwaakey","e":"malnourished, underfed","c":"adj."},"def":"malnourished","category":"ey-unstressed-unisex"},{"entry":{"ts":1591871233587,"i":5755,"p":"خوږژبی","f":"khoGjzubey","g":"khogjzubey","e":"well-spoken","c":"adj."},"def":"well-spoken","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814118,"i":6006,"p":"دردوونکی","f":"dărdawóonkey","g":"dardawoonkey","e":"painful, hurtful, agonizing","c":"adj."},"def":"painful, agonizing","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820657,"i":6098,"p":"درېیمګړی","f":"dre`yamgúRey","g":"dreyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},"def":"mediator, arbitrator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815713,"i":6573,"p":"راتلونکی","f":"raatlóonkey","g":"raatloonkey","e":"coming, future","c":"adj."},"def":"coming, future","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812142,"i":6764,"p":"رښتنی","f":"rixtíney","g":"rixtiney","e":"truthful, true","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812161,"i":6765,"p":"رښتونی","f":"rixtóoney","g":"rixtooney","e":"truthful","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811507,"i":6771,"p":"رښتینی","f":"rixtéeney","g":"rixteeney","e":"true, truthful, righteous, good","c":"adj."},"def":"true, truthful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813758,"i":7020,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},"def":"student","category":"ey-unstressed-unisex"},{"entry":{"ts":1577058349091,"i":7061,"p":"زړه پوری","f":"zRupoorey","g":"zRupoorey","e":"interesting, entertaining, attractive, pleasant","c":"adj."},"def":"interesting, pleasant","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817400,"i":7069,"p":"زړه سواندی","f":"zRuswaandey","g":"zRuswaandey","e":"merciful, compassionate, soft-hearted","c":"adj."},"def":"merciful, compassionate","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819587,"i":7270,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},"def":"translator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814888,"i":7291,"p":"ژغورونکی","f":"jzghoróonkey","g":"jzghoroonkey","e":"savior, saviour, rescuer","c":"n. m. anim. unisex"},"def":"savior, saviour, rescuer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527818109,"i":7478,"p":"سپېڅلی","f":"spetsúley","g":"spetsuley","e":"absolutely or perfectly clean, uncontaminated, pure (holy, magnificent – سپيڅلي??)","c":"adj."},"def":"pure, holy, magnificent","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811338,"i":7490,"p":"سپین زړی","f":"speenzuRey","g":"speenzuRey","e":"sincere hearted, candid, trusting","c":"adj."},"def":"sincere hearted, trusting","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815306,"i":7528,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},"def":"tired","category":"ey-unstressed-unisex"},{"entry":{"ts":1527822745,"i":7570,"p":"سټکوری","f":"suTkóorey","g":"suTkoorey","e":"burned, charred; wrinkling, puckering; seared, scorched; frozen stiff with cold; withered","c":"adj."},"def":"burned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527817442,"i":7593,"p":"سخت زړی","f":"sakhtzúRey","g":"sakhtzuRey","e":"heard-hearted, cruel, heartless, callous","c":"adj."},"def":"heard-hearted","category":"ey-unstressed-unisex"},{"entry":{"ts":1527816932,"i":7650,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},"def":"soldier","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820170,"i":7874,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},"def":"singer","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819964,"i":7930,"p":"سوځېدونکی","f":"swadzedóonkey","g":"swadzedoonkey","e":"burning","c":"adj."},"def":"burning","category":"ey-unstressed-unisex"},{"entry":{"ts":1527821951,"i":8026,"p":"سوی","f":"súwey","g":"suwey","e":"burned","c":"adj."},"def":"burned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812779,"i":8563,"p":"ښکلی","f":"xkÚley","g":"xkUley","e":"beautiful","c":"adj."},"def":"beautiful","category":"ey-unstressed-unisex"},{"entry":{"ts":1527812806,"i":8591,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},"def":"teacher","category":"ey-unstressed-unisex"},{"entry":{"ts":1527811350,"i":9174,"p":"غلی","f":"ghúley","g":"ghuley","e":"quiet, silent","c":"adj."},"def":"quiet, silent","category":"ey-unstressed-unisex"},{"entry":{"ts":1527819637,"i":9800,"p":"کارکوونکی","f":"kaarkawóonkey","g":"kaarkawoonkey","e":"worker","c":"n. m. anim. unisex"},"def":"worker","category":"ey-unstressed-unisex"},{"entry":{"ts":1527818613,"i":10291,"p":"کمزوری","f":"kamzórey","g":"kamzorey","e":"weak, feeble, frail, faint, poor","c":"adj."},"def":"weak","category":"ey-unstressed-unisex"},{"entry":{"ts":1595516629483,"i":10371,"p":"کڼوونکی","f":"kaNawóonkey","g":"kaNawoonkey","e":"deafening","c":"adj.","l":1578770339559},"def":"deafening","category":"ey-unstressed-unisex"},{"entry":{"ts":1527820661,"i":13001,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},"def":"mediator","category":"ey-unstressed-unisex"},{"entry":{"ts":1527814047,"i":13595,"p":"نوموړی","f":"noomwáRey","g":"noomwaRey","e":"aforesaid, above-mentioned","c":"adj."},"def":"aforesaid, above-mentioned","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813822,"i":13605,"p":"نوی","f":"núwey","g":"nuwey","e":"new","c":"adj."},"def":"new","category":"ey-unstressed-unisex"},{"entry":{"ts":1586453720908,"i":13741,"p":"هڅوونکی","f":"hatsawóonkey","g":"hatsawoonkey","e":"encouraging / encourager","c":"adj."},"def":"encouraging","category":"ey-unstressed-unisex"},{"entry":{"ts":1588163180700,"i":13981,"p":"هېښوونکی","f":"hexawóonkey","g":"hexawoonkey","e":"stunning, shocking, perplexing, amazing","c":"adj."},"def":"stunning, amazing","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823715,"i":14194,"p":"وړکوټی","f":"waRkóTey","g":"waRkoTey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823714,"i":14195,"p":"وړکی","f":"waRÚkey","g":"waRUkey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815403,"i":14200,"p":"وړوکی","f":"waRóokey","g":"waRookey","e":"little, small","c":"adj."},"def":"little, small","category":"ey-unstressed-unisex"},{"entry":{"ts":1527813916,"i":14224,"p":"وژونکی","f":"wajzóonkey","g":"wajzoonkey","e":"killing, lethal, deadly","c":"adj."},"def":"lethal, deadly","category":"ey-unstressed-unisex"},{"entry":{"ts":1527815424,"i":14233,"p":"وږی","f":"wúGey","g":"wugey","e":"hungry","c":"adj."},"def":"hungry","category":"ey-unstressed-unisex"},{"entry":{"ts":1527823713,"i":14347,"p":"ووړکی","f":"wóRkey","g":"woRkey","e":"small, little; (also as a child)","c":"adj."},"def":"small, little","category":"ey-unstressed-unisex"},{"entry":{"ts":1527816455,"i":14391,"p":"وېشلی","f":"weshúley","g":"weshuley","e":"separated, divided","c":"adj."},"def":"separated, divided","category":"ey-unstressed-unisex"},{"entry":{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},"def":"cook, chef","category":"nouns-unisex"},{"entry":{"ts":1527812156,"i":685,"p":"افسر","f":"afsar","g":"afsar","e":"officer","c":"n. m. anim. unisex"},"def":"officer","category":"nouns-unisex"},{"entry":{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},"def":"Afghan (person)","category":"nouns-unisex"},{"entry":{"ts":1527815137,"i":1046,"p":"اورپکی","f":"orpákey","g":"orpakey","e":"instigator, insurgent, terrorist","c":"n. m. anim. unisex"},"def":"instigator, insurgent, terrorist","category":"nouns-unisex"},{"entry":{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},"def":"resident","category":"nouns-unisex"},{"entry":{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"child, offspring","category":"nouns-unisex"},{"entry":{"ts":1623044005072,"i":1694,"p":"بلواګر","f":"balwaagar","g":"balwaagar","e":"insurrectionist, rebel","c":"n. m. anim. unisex"},"def":"insurrectionist, rebel","category":"nouns-unisex"},{"entry":{"ts":1612616237182,"i":2153,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},"def":"Pakistani (person)","category":"nouns-unisex"},{"entry":{"ts":1527817965,"i":2169,"p":"پالونکی","f":"paalóonkey","g":"paaloonkey","e":"keeper, one who brings up, raises (cattle etc.)","c":"n. m. anim. unisex"},"def":"keeper, one who brings up, raises (cattle etc.)","category":"nouns-unisex"},{"entry":{"ts":1527815197,"i":2488,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},"def":"Pashtun","category":"nouns-unisex"},{"entry":{"ts":1527819228,"i":2533,"p":"پلټونکی","f":"pulaTóonkey","g":"pulaToonkey","e":"inspector, detective, person checking people at the doors etc.","c":"n. m. anim. unisex"},"def":"inspector, detective, person checking people at the doors etc.","category":"nouns-unisex"},{"entry":{"ts":1527820130,"i":2561,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex","ppp":"پلویان","ppf":"palawiyáan"},"def":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","category":"nouns-unisex"},{"entry":{"ts":1527815924,"i":2855,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},"def":"customer","category":"nouns-unisex"},{"entry":{"ts":1527816431,"i":3321,"p":"ترورزی","f":"trorzéy","g":"trorzey","e":"cousin (of paternal aunt)","c":"n. m. anim. unisex","ppp":"ترورزامن","ppf":"trorzaamun"},"def":"cousin (of paternal aunt)","category":"nouns-unisex"},{"entry":{"ts":1527820820,"i":3493,"p":"تعقیبوونکی","f":"ta'qeebawóonkey","g":"takeebawoonkey","e":"follower","c":"n. m. anim. unisex"},"def":"follower","category":"nouns-unisex"},{"entry":{"ts":1586270915475,"i":3914,"p":"تي لرونکی","f":"tee laróonkey","g":"teelaroonkey","e":"mammal","c":"adj. / n. m. anim. unisex"},"def":"mammal","category":"nouns-unisex"},{"entry":{"ts":1613563994424,"i":4104,"p":"ټوقمار","f":"Toqmaar","g":"Tokmaar","e":"joker, jester, mocker","c":"n. m. anim. unisex"},"def":"joker, jester, mocker","category":"nouns-unisex"},{"entry":{"ts":1610793723568,"i":4971,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},"def":"ram, goat","category":"nouns-unisex"},{"entry":{"ts":1527811466,"i":5168,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},"def":"researcher","category":"nouns-unisex"},{"entry":{"ts":1527812795,"i":5426,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},"def":"relative","category":"nouns-unisex"},{"entry":{"ts":1527812802,"i":5471,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},"def":"donkey","category":"nouns-unisex"},{"entry":{"ts":1527813282,"i":5499,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},"def":"seller","category":"nouns-unisex"},{"entry":{"ts":1527819362,"i":5765,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},"def":"calf (animal)","category":"nouns-unisex"},{"entry":{"ts":1527822535,"i":5823,"p":"خیاط","f":"khayáat","g":"khayaat","e":"tailor","c":"n. m. anim. unisex"},"def":"tailor","category":"nouns-unisex"},{"entry":{"ts":1590052667427,"i":6017,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},"def":"witness","category":"nouns-unisex"},{"entry":{"ts":1622873938137,"i":6023,"p":"درغلګر","f":"darghalgar","g":"darghalgar","e":"crook, swindler, criminal","c":"n. m. anim. unisex"},"def":"crook, swindler, criminal","category":"nouns-unisex"},{"entry":{"ts":1527820656,"i":6095,"p":"دریمګړی","f":"driyamgúRey","g":"driyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},"def":"mediator, arbitrator","category":"nouns-unisex"},{"entry":{"ts":1614081825855,"i":6641,"p":"راهب","f":"raahib","g":"raahib","e":"priest, monk/nun","c":"n. m. anim. unisex"},"def":"priest, monk/nun","category":"nouns-unisex"},{"entry":{"ts":1527813758,"i":7020,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},"def":"student, learner, pupil","category":"nouns-unisex"},{"entry":{"ts":1527819587,"i":7270,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},"def":"translator","category":"nouns-unisex"},{"entry":{"ts":1527815299,"i":7472,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},"def":"dog","category":"nouns-unisex"},{"entry":{"ts":1610447830096,"i":7609,"p":"سخی","f":"skhéy","g":"skhey","e":"calf; bull-calf","c":"n. m. anim. unisex"},"def":"calf; bull-calf","category":"nouns-unisex"},{"entry":{"ts":1527816932,"i":7650,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},"def":"soldier","category":"nouns-unisex"},{"entry":{"ts":1527811519,"i":7759,"p":"سفیر","f":"safeer","g":"safeer","e":"embassador, ambassador","c":"n. m. anim. unisex"},"def":"embassador, ambassador","category":"nouns-unisex"},{"entry":{"ts":1622366208373,"i":7772,"p":"سکرتر","f":"sakratár","g":"sakratar","e":"secretary","c":"n. m. anim. unisex"},"def":"secretary","category":"nouns-unisex"},{"entry":{"ts":1527820170,"i":7874,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},"def":"singer","category":"nouns-unisex"},{"entry":{"ts":1566468540788,"i":8028,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"},"def":"rabbit","category":"nouns-unisex"},{"entry":{"ts":1527819801,"i":8081,"p":"سیلانی","f":"seylaanéy","g":"seylaaney","e":"tourist, sightseer, visitor","c":"n. m. anim. unisex","ppp":"سیلانیان","ppf":"seylaaniyáan"},"def":"tourist, sightseer, visitor","category":"nouns-unisex"},{"entry":{"ts":1575924767041,"i":8182,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},"def":"shepherd","category":"nouns-unisex"},{"entry":{"ts":1527815279,"i":8183,"p":"شپونکی","f":"shpoonkéy","g":"shpoonkey","e":"shepherd","c":"n. m. anim. unisex"},"def":"shepherd","category":"nouns-unisex"},{"entry":{"ts":1527819173,"i":8400,"p":"شنونکی","f":"shanóonkey","g":"shanoonkey","e":"analyst, examiner","c":"n. m. anim. unisex"},"def":"analyst, examiner","category":"nouns-unisex"},{"entry":{"ts":1527812806,"i":8591,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},"def":"teacher","category":"nouns-unisex"},{"entry":{"ts":1527815436,"i":8777,"p":"ظالم","f":"zaalim","g":"zaalim","e":"tyrant, oppressor, cruel person","c":"n. m. anim. unisex / adj."},"def":"tyrant, oppressor, cruel person","category":"nouns-unisex"},{"entry":{"ts":1527818632,"i":9037,"p":"غبرګونی","f":"ghbargóoney","g":"ghbargooney","e":"twin","c":"n. m. anim. unisex"},"def":"twin","category":"nouns-unisex"},{"entry":{"ts":1527812624,"i":9149,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},"def":"thief","category":"nouns-unisex"},{"entry":{"ts":1613561408232,"i":9681,"p":"قصوروار","f":"qUsoorwáar","g":"kUsoorwaar","e":"guilty, at fault","c":"adj. / n. m. anim. unisex"},"def":"guilty, at fault","category":"nouns-unisex"},{"entry":{"ts":1527814715,"i":9813,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},"def":"user","category":"nouns-unisex"},{"entry":{"ts":1527816256,"i":10118,"p":"کړوسی","f":"kaRwaséy","g":"kaRwasey","e":"great-grandson","c":"n. m. anim. unisex"},"def":"great-grandson","category":"nouns-unisex"},{"entry":{"ts":1594906790729,"i":10208,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"child","category":"nouns-unisex"},{"entry":{"ts":1527819244,"i":10449,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},"def":"host, hostess; master of house","category":"nouns-unisex"},{"entry":{"ts":1527812174,"i":10657,"p":"ګاونډی","f":"gaawanDéy","g":"gaawanDey","e":"neighbour","c":"n. m. anim. unisex / adj."},"def":"neighbour","category":"nouns-unisex"},{"entry":{"ts":1579030083953,"i":10838,"p":"ګناه ګار","f":"gUnaahgáar","g":"gUnaahgaar","e":"sinner, sinful","c":"n. m. anim. unisex"},"def":"sinner, sinful","category":"nouns-unisex"},{"entry":{"ts":1527816249,"i":11319,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},"def":"grandchild","category":"nouns-unisex"},{"entry":{"ts":1527822661,"i":11379,"p":"لوبغاړی","f":"lobgháaRey","g":"lobghaaRey","e":"athlete, player; actor; mischevious, playful (of a child)","c":"n. m. anim. unisex / adj."},"def":"athlete, player; actor; mischevious, playful (of a child)","category":"nouns-unisex"},{"entry":{"ts":1589885143650,"i":11459,"p":"لومبړ","f":"loombáR","g":"loombaR","e":"fox","c":"n. m. anim. unisex"},"def":"fox","category":"nouns-unisex"},{"entry":{"ts":1527812043,"i":11525,"p":"لیکوال","f":"leekwaal","g":"leekwaal","e":"writer, author","c":"n. m. anim. unisex"},"def":"writer, author","category":"nouns-unisex"},{"entry":{"ts":1527820680,"i":11548,"p":"لېونی","f":"lewanéy","g":"lewaney","e":"crazy, insane, mad person","c":"n. m. anim. unisex / adj."},"def":"crazy, insane, mad person","category":"nouns-unisex"},{"entry":{"ts":1527812881,"i":11596,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},"def":"child, kid","category":"nouns-unisex"},{"entry":{"ts":1527814445,"i":11644,"p":"مامور","f":"maamóor","g":"maamoor","e":"officer, clerk (as in government worker); assigned, appointed, given orders or istructions (Arabic), authorized, sent on business","c":"adj. / n. m. anim. unisex"},"def":"assigned, appointed, given orders or istructions (Arabic), authorized, sent on business; officer (as in government worker)","category":"nouns-unisex"},{"entry":{"ts":1527818760,"i":11989,"p":"مدني فاعل","f":"madanee faa'al","g":"madaneefaaal","e":"civil activist","c":"n. m. anim. unisex"},"def":"civil activist","category":"nouns-unisex"},{"entry":{"ts":1527821523,"i":12115,"p":"مریی","f":"mrayéy","g":"mrayey","e":"slave, servant","c":"n. m. anim. unisex"},"def":"slave, servant","category":"nouns-unisex"},{"entry":{"ts":1527814159,"i":12608,"p":"ملګری","f":"malgúrey","g":"malgurey","e":"friend, companion","c":"n. m. anim. unisex"},"def":"friend, companion","category":"nouns-unisex"},{"entry":{"ts":1527820661,"i":13001,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},"def":"mediator, go-between, arbitrator","category":"nouns-unisex"},{"entry":{"ts":1527823403,"i":13010,"p":"مینه وال","f":"meenawáal","g":"meenawaal","e":"fan, someone who loves or appreciates someone or something","c":"n. m. anim. unisex"},"def":"fan, someone who loves or appreciates someone or something","category":"nouns-unisex"},{"entry":{"ts":1527815127,"i":13258,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},"def":"nurse","category":"nouns-unisex"},{"entry":{"ts":1527816254,"i":13567,"p":"نوسی","f":"nwaséy","g":"nwasey","e":"grandchild","c":"n. m. anim. unisex"},"def":"grandson","category":"nouns-unisex"},{"entry":{"ts":1527814806,"i":13849,"p":"همځولی","f":"hamdzóley","g":"hamdzoley","e":"peer, someone of the same age, someone born in the same year","c":"n. m. anim. unisex"},"def":"peer, someone of the same age","category":"nouns-unisex"},{"entry":{"ts":1527812684,"i":13872,"p":"همکار","f":"hamkaar","g":"hamkaar","e":"co-worker, fellow worker, collaborator, aid","c":"n. m. anim. unisex"},"def":"co-worker, fellow worker, collaborator, aid","category":"nouns-unisex"},{"entry":{"ts":1527811732,"i":13902,"p":"هنر مند","f":"hUnarmand","g":"hUnarmand","e":"artist, performer","c":"n. m. anim. unisex"},"def":"artist, performer","category":"nouns-unisex"},{"entry":{"ts":1527821373,"i":13938,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},"def":"deer","category":"nouns-unisex"},{"entry":{"ts":1591027046896,"i":14207,"p":"وز","f":"wuz","g":"wuz","e":"goat","c":"n. m. anim. unisex"},"def":"goat","category":"nouns-unisex"},{"entry":{"ts":1611395180139,"i":14266,"p":"وطندار","f":"watandáar","g":"watandaar","e":"fellow countryman, person from the same country","c":"n. m. anim. unisex"},"def":"fellow countryman, person from the same country","category":"nouns-unisex"},{"entry":{"ts":1527811296,"i":14292,"p":"وکیل","f":"wakeel","g":"wakeel","e":"lawyer, proxy holder","c":"n. m. anim. unisex","app":"وکلا","apf":"waklaa"},"def":"lawyer, proxy holder","category":"nouns-unisex"},{"entry":{"ts":1527813585,"i":14293,"p":"وګړی","f":"wagúRey","g":"waguRey","e":"person, human being, creature","c":"n. m. anim. unisex","ec":"person","ep":"people"},"def":"person, human being, creature","category":"nouns-unisex"},{"entry":{"ts":1527814672,"i":14360,"p":"ویاند","f":"wayaand","g":"wayaand","e":"spokesperson, spokesman, newcaster","c":"n. m. anim. unisex","ec":"spokesperson","ep":"spokespeople"},"def":"spokesperson, spokesman, newcaster","category":"nouns-unisex"},{"entry":{"ts":1586454081484,"i":14435,"p":"یتیم","f":"yateem","g":"yateem","e":"orphan","c":"n. m. anim. unisex"},"def":"orphan","category":"nouns-unisex"},{"entry":{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},"def":"hero","category":"nouns-unisex"},{"entry":{"ts":1527816778,"i":1071,"p":"اوږد","f":"ooGd, ooGud","g":"oogd,oogud","e":"long","c":"adj.","infap":"اوږده","infaf":"ooGdu","infbp":"اوږد","infbf":"ooGd"},"def":"long","category":"short-irreg-unisex"},{"entry":{"ts":1527822706,"i":1106,"p":"اوم","f":"oom","g":"oom","e":"raw, uncooked; blunt, crude; unripe, immature, not fully developed","c":"adj.","infap":"اومه","infaf":"oomu","infbp":"اوم","infbf":"oom"},"def":"raw, unripe, immature","category":"short-irreg-unisex"},{"entry":{"ts":1527812802,"i":5471,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},"def":"donkey","category":"short-irreg-unisex"},{"entry":{"ts":1527813293,"i":7945,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},"def":"red, hot","category":"short-irreg-unisex"},{"entry":{"ts":1527815265,"i":8505,"p":"شین","f":"sheen","g":"sheen","e":"green, blue; unripe, immature","c":"adj. irreg.","infap":"شنه","infaf":"shnu","infbp":"شن","infbf":"shn"},"def":"green, blue","category":"short-irreg-unisex"},{"entry":{"ts":1527812624,"i":9149,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},"def":"thief","category":"short-irreg-unisex"},{"entry":{"ts":1527815087,"i":12118,"p":"مړ","f":"muR","g":"muR","e":"dead","c":"adj.","infap":"مړه","infaf":"mRu","infbp":"مړ","infbf":"mR"},"def":"dead","category":"short-irreg-unisex"},{"entry":{"ts":1527814151,"i":12547,"p":"مل","f":"mal","g":"mal","e":"companion, associate, friend; accompanying, being with","c":"n. m. anim. unisex / adj.","infap":"مله","infaf":"mlu","infbp":"مل","infbf":"ml"},"def":"companion, friend","category":"short-irreg-unisex"},{"entry":{"ts":1527813580,"i":14474,"p":"یو","f":"yo","g":"yo","e":"one","c":"num.","infap":"یوه","infaf":"yawu","infbp":"یو","infbf":"yaw"},"def":"one","category":"short-irreg-unisex"},{"entry":{"ts":1527819345,"i":2463,"p":"پسه","f":"psu","g":"psu","e":"sheep, ram","c":"n. m.","ppp":"پسونه","ppf":"pusoona","ec":"sheep","ep":"sheep"},"def":"sheep, ram","category":"u-masc"},{"entry":{"ts":1527822173,"i":4227,"p":"جاړه","f":"jaaRú","g":"jaaRu","e":"bush, shrub","c":"n. m."},"def":"bush, shrub","category":"u-masc"},{"entry":{"ts":1527813508,"i":7058,"p":"زړه","f":"zRu","g":"zRu","e":"heart","c":"n. m.","ppp":"زړونه","ppf":"zRoona"},"def":"heart","category":"u-masc"},{"entry":{"ts":1588857967561,"i":9216,"p":"غوایه","f":"ghwaayú","g":"ghwaayu","e":"bull","c":"n. m."},"def":"bull","category":"u-masc"},{"entry":{"ts":1527817108,"i":9784,"p":"کاته","f":"kaatu","g":"kaatu","e":"look, gaze, examination, inspection, spying","c":"n. m."},"def":"look, gaze, examination, inspection, spying","category":"u-masc"},{"entry":{"ts":1527817768,"i":9803,"p":"کارګه","f":"kaargú","g":"kaargu","e":"raven, crow","c":"n. m. anim."},"def":"raven, crow","category":"u-masc"},{"entry":{"ts":1527819245,"i":10448,"p":"کوربانه","f":"korbaanú","g":"korbaanu","e":"master of house, head of family, married man","c":"n. m."},"def":"master of house, head of family, married man","category":"u-masc"},{"entry":{"ts":1527818516,"i":11295,"p":"لمبېده","f":"lambedú","g":"lambedu","e":"swimming, bathing","c":"n. m."},"def":"swimming, bathing","category":"u-masc"},{"entry":{"ts":1527813986,"i":11301,"p":"لمر پرېواته","f":"lmarprewaatu","g":"lmarprewaatu","e":"sunset, west","c":"n. m."},"def":"sunset, west","category":"u-masc"},{"entry":{"ts":1527813992,"i":11307,"p":"لمر لوېده","f":"lmarlwedu","g":"lmarlwedu","e":"sunset","c":"n. m."},"def":"sunset","category":"u-masc"},{"entry":{"ts":1527813987,"i":11309,"p":"لمرخاته","f":"lmarkhaatu","g":"lmarkhaatu","e":"sunrise, east","c":"n. m."},"def":"sunrise, east","category":"u-masc"},{"entry":{"ts":1527818255,"i":11550,"p":"لېوه","f":"lewú","g":"lewu","e":"wolf, wild dog","c":"n. m.","ppp":"لېوان","ppf":"lewáan","ec":"wolf","ep":"wolves"},"def":"wolf, wild dog","category":"u-masc"},{"entry":{"ts":1527821522,"i":12114,"p":"مریه","f":"mrayú","g":"mrayu","e":"slave, servant","c":"n. m."},"def":"slave, servant","category":"u-masc"},{"entry":{"ts":1527812911,"i":12962,"p":"مېړه","f":"meRu","g":"meRu","e":"husband, brave","c":"n. m.","ppp":"مېړونه","ppf":"meRoona"},"def":"husband, brave","category":"u-masc"},{"entry":{"ts":1527811626,"i":13453,"p":"نکېده","f":"nukedu","g":"nukedu","e":"impracticability, impossibility, improbability","c":"n. m."},"def":"impracticability, impossibility, improbability","category":"u-masc"},{"entry":{"ts":1527816410,"i":13657,"p":"نیکه","f":"neekú","g":"neeku","e":"grandfather, grandpa","c":"n. m."},"def":"grandfather, grandpa","category":"u-masc"},{"entry":{"ts":1527822420,"i":14041,"p":"واګه","f":"waagu","g":"waagu","e":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","c":"n. m."},"def":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","category":"u-masc"},{"entry":{"ts":1527816357,"i":14101,"p":"وراره","f":"wraaru","g":"wraaru","e":"nephew, brother's son","c":"n. m.","ppp":"وریرونه","ppf":"wreeroona"},"def":"nephew, brother's son","category":"u-masc"},{"entry":{"ts":1527823225,"i":14318,"p":"وله","f":"wUlú","g":"wUlu","e":"flock, herd, drove","c":"n. m."},"def":"flock, herd, drove","category":"u-masc"},{"entry":{"ts":1527814789,"i":14394,"p":"وېښته","f":"wextu","g":"wextu","e":"hair","c":"n. m."},"def":"hair","category":"u-masc"},{"entry":{"ts":1527815394,"i":14004,"p":"واده","f":"waadú","g":"waadu","e":"wedding, marriage","c":"n. m.","ppp":"ودونه","ppf":"wadóona"},"def":"wedding","category":"u-masc"},{"entry":{"ts":1527818017,"i":177,"p":"اټۍ","f":"aTuy","g":"aTuy","e":"store, shop","c":"n. f."},"def":"store, shop","category":"uy-fem"},{"entry":{"ts":1527812694,"i":903,"p":"انجنۍ","f":"injUnuy","g":"injUnuy","e":"girl","c":"n. f."},"def":"girl","category":"uy-fem"},{"entry":{"ts":1527815140,"i":1109,"p":"اونۍ","f":"onuy, ownuy, owunuy","g":"onuy,ownuy,owunuy","e":"week","c":"n. f."},"def":"week","category":"uy-fem"},{"entry":{"ts":1566476931206,"i":1333,"p":"بتۍ","f":"batúy","g":"batuy","e":"lamp, light","c":"n. f."},"def":"lamp, light","category":"uy-fem"},{"entry":{"ts":1527822192,"i":1338,"p":"بټۍ","f":"baTúy","g":"baTuy","e":"stove, oven, furnace","c":"n. f."},"def":"stove, oven, furnace","category":"uy-fem"},{"entry":{"ts":1527820828,"i":1354,"p":"بچۍ","f":"bachúy","g":"bachuy","e":"daughter, girl","c":"n. f."},"def":"daughter, girl","category":"uy-fem"},{"entry":{"ts":1527822974,"i":1669,"p":"بګۍ","f":"bagúy","g":"baguy","e":"cart, buggy, stroller","c":"n. f."},"def":"cart, buggy, stroller","category":"uy-fem"},{"entry":{"ts":1591805634565,"i":2755,"p":"پوښتۍ","f":"pooxtúy","g":"pooxtuy","e":"rib","c":"n. f."},"def":"rib","category":"uy-fem"},{"entry":{"ts":1586276322639,"i":4094,"p":"ټوپۍ","f":"Topuy","g":"Topuy","e":"hat, cap","c":"n. f."},"def":"hat, cap","category":"uy-fem"},{"entry":{"ts":1527820058,"i":4095,"p":"ټوټکۍ","f":"ToTakúy","g":"ToTakuy","e":"kneecap, patella","c":"n. f."},"def":"kneecap, patella","category":"uy-fem"},{"entry":{"ts":1527812564,"i":6480,"p":"ډوډۍ","f":"DoDuy","g":"DoDuy","e":"bread, food, meal","c":"n. f."},"def":"bread, food, meal","category":"uy-fem"},{"entry":{"ts":1527821555,"i":7324,"p":"ژۍ","f":"jzuy","g":"jzuy","e":"edge, verge, side","c":"n. f."},"def":"edge, verge, side","category":"uy-fem"},{"entry":{"ts":1527814788,"i":7471,"p":"سپوږمۍ","f":"spoGmuy","g":"spogmuy","e":"moon","c":"n. f."},"def":"moon","category":"uy-fem"},{"entry":{"ts":1527820120,"i":9335,"p":"غونډۍ","f":"ghwunDúy","g":"ghwunDuy","e":"hill, hillrock, mound","c":"n. f."},"def":"hill, hillrock, mound","category":"uy-fem"},{"entry":{"ts":1527814203,"i":10013,"p":"کرسۍ","f":"kUrsuy","g":"kUrsuy","e":"chair, seat, stool","c":"n. f."},"def":"chair, seat, stool","category":"uy-fem"},{"entry":{"ts":1527812045,"i":10087,"p":"کړکۍ","f":"kuRkúy","g":"kuRkuy","e":"window","c":"n. f."},"def":"window","category":"uy-fem"},{"entry":{"ts":1527816026,"i":10120,"p":"کړۍ","f":"kaRuy","g":"kaRuy","e":"ring, curl; handcuffs, link, chain, fetter; loom; department, section","c":"n. f."},"def":"ring, curl; handcuffs, link, chain; loom; department, section","category":"uy-fem"},{"entry":{"ts":1527813870,"i":10151,"p":"کشتۍ","f":"kishtúy","g":"kishtuy","e":"boat, ship","c":"n. f."},"def":"boat, ship","category":"uy-fem"},{"entry":{"ts":1527821895,"i":10933,"p":"ګوډۍ","f":"gooDúy","g":"gooDuy","e":"doll","c":"n. f."},"def":"doll","category":"uy-fem"},{"entry":{"ts":1527814564,"i":10974,"p":"ګولۍ","f":"golúy","g":"goluy","e":"pill tablet; bullet","c":"n. f."},"def":"pill tablet; bullet","category":"uy-fem"},{"entry":{"ts":1527811763,"i":11269,"p":"لکۍ","f":"lakuy","g":"lakuy","e":"tail","c":"n. f."},"def":"tail","category":"uy-fem"},{"entry":{"ts":1527812659,"i":13814,"p":"هګۍ","f":"haguy","g":"haguy","e":"egg","c":"n. f."},"def":"egg","category":"uy-fem"},{"entry":{"ts":1527821372,"i":13939,"p":"هوسۍ","f":"hosúy","g":"hosuy","e":"gazelle, antelope","c":"n. f."},"def":"gazelle, antelope","category":"uy-fem"},{"entry":{"ts":1527815154,"i":2190,"p":"پای","f":"paay","g":"paay","e":"end, finish, close, conclusion","c":"n. m."},"def":"end, finish, close, conclusion","category":"y-masc"},{"entry":{"ts":1527812594,"i":4553,"p":"ځای","f":"dzaay","g":"dzaay","e":"place, space","c":"n. m."},"def":"place, space","category":"y-masc"},{"entry":{"ts":1527812525,"i":4700,"p":"چای","f":"chaay","g":"chaay","e":"tea","c":"n. m."},"def":"tea","category":"y-masc"},{"entry":{"ts":1527812783,"i":5459,"p":"خدای","f":"khUdaay","g":"khUdaay","e":"God, Lord","c":"n. m. anim.","ec":"God","ep":"gods"},"def":"God, Lord","category":"y-masc"},{"entry":{"ts":1527819514,"i":5953,"p":"دای","f":"daay","g":"daay","e":"tier, row, foundation (masonry etc.)","c":"n. m."},"def":"tier, row, foundation (masonry etc.)","category":"y-masc"},{"entry":{"ts":1610797797756,"i":7399,"p":"سای","f":"saay","g":"saay","e":"hollow, depression","c":"n. m.","ec":"hollow"},"def":"hollow, depression","category":"y-masc"},{"entry":{"ts":1527822345,"i":7629,"p":"سرای","f":"saráay","g":"saraay","e":"caravansary, inn, large house","c":"n. m.","ec":"carvansary"},"def":"caravansary, inn, large house","category":"y-masc"},{"entry":{"ts":1586598425514,"i":1852,"p":"بوی","f":"booy","g":"booy","e":"smell","c":"n. m.","ec":"smell"},"def":"smell","category":"y-masc"},{"entry":{"ts":1527814511,"i":5821,"p":"خوی","f":"khooy","g":"khooy","e":"character, nature, disposition, habit","c":"n. m."},"def":"character, nature, disposition, habit","category":"y-masc"},{"entry":{"ts":1566468540788,"i":8028,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"},"def":"rabbit","category":"y-masc"}]; -export default nounsAdjs; \ No newline at end of file diff --git a/src/words/raw-words.ts b/src/words/raw-words.ts new file mode 100644 index 0000000..5468087 --- /dev/null +++ b/src/words/raw-words.ts @@ -0,0 +1,3 @@ +// @ts-ignore +const words: Word[] = [{"entry":{"ts":1577383674332,"i":979,"p":"انګولل","f":"angolul, angwUlul","g":"angolul,angwUlul","e":"to howl, wail","c":"v. gramm. trans.","sepOo":true,"ec":"howl"}},{"entry":{"ts":1527818962,"i":2345,"p":"پرنجل","f":"prunjúl","g":"prunjul","e":"to sneeze","c":"v. gramm. trans.","ec":"sneeze"}},{"entry":{"ts":1527821425,"i":4098,"p":"ټوخل","f":"Tookhúl","g":"Tookhul","e":"to cough","c":"v. gramm. trans.","ec":"cough"}},{"entry":{"ts":1527812767,"i":5643,"p":"خندل","f":"khandul","g":"khandul","e":"to laugh","c":"v. gramm. trans.","psp":"خاند","psf":"khaand","ec":"laugh"}},{"entry":{"ts":1605360223155,"i":6233,"p":"دنګل","f":"dangúl","g":"dangul","e":"to jump, leap, run, race","c":"v. gramm. trans.","psp":"دانګ","psf":"daang","ec":"jump"}},{"entry":{"ts":1605360127430,"i":7156,"p":"زنګل","f":"zangúl","g":"zangul","e":"to swing, rock (back and forth)","c":"v. gramm. trans.","psp":"زانګ","psf":"zaang","ec":"swing,swings,swinging,swung"}},{"entry":{"ts":1527812717,"i":7286,"p":"ژړل","f":"jzaRul","g":"jzaRul","e":"to cry","c":"v. gramm. trans.","psp":"ژاړ","psf":"jzaaR","ec":"cry"}},{"entry":{"ts":1591899573844,"i":13240,"p":"نڅل","f":"natsúl","g":"natsul","e":"to dance","c":"v. gramm. trans.","psp":"ناڅ","psf":"naats","ec":"dance"}},{"entry":{"ts":1527813473,"i":791,"p":"الوتل","f":"alwatul","g":"alwatul","e":"to fly","c":"v. intrans.","psp":"الوځ","psf":"aloodz","tppp":"الوت","tppf":"alwát","ec":"fly,flies,flying,flew,flown"}},{"entry":{"ts":1527814012,"i":1090,"p":"اوښتل","f":"awUxtul","g":"awUxtul","e":"to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon; to be sprained","c":"v. intrans.","psp":"اوړ","psf":"awR","ec":"pass","ep":"over"}},{"entry":{"ts":1527822843,"i":1561,"p":"برېښېدل","f":"brexedúl","g":"brexedul","e":"to appear, seem; to shine, sparkle; to smart, have a pricking pain","c":"v. intrans.","shortIntrans":true,"ec":"appear"}},{"entry":{"ts":1527815183,"i":2781,"p":"پوهېدل","f":"pohedul","g":"pohedul","e":"to understand (to do the act of understanding)","c":"v. intrans.","ec":"understand,understand,understanding,understood"}},{"entry":{"ts":1527816495,"i":3438,"p":"تښتېدل","f":"tuxtedul","g":"tuxtedul","e":"to run off, escape, flee","c":"v. intrans.","shortIntrans":true,"ec":"escape"}},{"entry":{"ts":1527813022,"i":4101,"p":"ټوخېدل","f":"Tookhedul","g":"Tookhedul","e":"to cough","c":"v. intrans.","ec":"cough"}},{"entry":{"ts":1527817259,"i":2400,"p":"پرېوتل","f":"prewatul","g":"prewatul","e":"to fall, to lie down, to go down","c":"v. intrans. seperable","l":1527823376,"psp":"پرېوځ","psf":"prewudz","tppp":"پرېواته","tppf":"prewaatu","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1577572987826,"i":4446,"p":"جنګېدل","f":"jangedul","g":"jangedul","e":"to fight, battle, war, to bump or crash into","c":"v. intrans.","ec":"fight,fights,fighting,fought"}},{"entry":{"ts":1527818535,"i":4563,"p":"ځړېدل","f":"dzaRedúl","g":"dzaRedul","e":"to hang, to be hung, to be lowered","c":"v. intrans.","ec":"hang,hangs,hanging,hung,hung"}},{"entry":{"ts":1527812273,"i":4587,"p":"ځلېدل","f":"dzaledul","g":"dzaledul","e":"to shine, glow, glitter","c":"v. intrans.","ec":"shine,shines,shining,shone"}},{"entry":{"ts":1577921634357,"i":4606,"p":"ځنډېدل","f":"dzanDedul","g":"dzanDedul","e":"to be delayed, postponed, held back, detained","c":"v. intrans.","ec":"be","ep":"delayed"}},{"entry":{"ts":1527814025,"i":5434,"p":"ختل","f":"khatul","g":"khatul","e":"to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...","c":"v. intrans.","psp":"خېژ","psf":"khejz","tppp":"خوت","tppf":"khot","ec":"climb"}},{"entry":{"ts":1527823376,"i":14057,"p":"وتل","f":"watul","g":"watul","e":"to go out, exit, leave, emerge","c":"v. intrans. irreg.","psp":"وځ","psf":"oodz","tppp":"واته","tppf":"waatu","ec":"go,goes,going,went,gone","ep":"out"}},{"entry":{"ts":1527814433,"i":5706,"p":"خوځېدل","f":"khwadzedul","g":"khwadzedul","e":"to shake, tremble, wiggle, move, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shaken"}},{"entry":{"ts":1527818980,"i":6680,"p":"رپېدل","f":"rapedúl","g":"rapedul","e":"to quiver, shake, flutter, shiver","c":"v. intrans.","ec":"quiver"}},{"entry":{"ts":1578191534500,"i":6698,"p":"رحمېدل","f":"rahmedul","g":"rahmedul","e":"to have mercy on, to have compassion on","c":"v. intrans.","shortIntrans":true,"ec":"have","ep":"mercy"}},{"entry":{"ts":1527813573,"i":6749,"p":"رسېدل","f":"rasedul","g":"rasedul","e":"reach, arrive; (fig.) understand, attain to; mature, ripen","c":"v. intrans.","shortIntrans":true,"ec":"reach"}},{"entry":{"ts":1527813837,"i":7928,"p":"سوځېدل","f":"swadzedul","g":"swadzedul","e":"to burn","c":"v. intrans.","shortIntrans":true,"ec":"burn,burns,burning,burnt,burned"}},{"entry":{"ts":1527814597,"i":8255,"p":"شرمېدل","f":"sharmedul","g":"sharmedul","e":"to be ashamed, to be embarrassed, to be shy","c":"v. intrans.","ec":"be","ep":"ashamed"}},{"entry":{"ts":1527821558,"i":8284,"p":"شړېدل","f":"shaRedúl","g":"shaRedul","e":"to be decomposed, break down, fall apart; to be boiled soft (meat)","c":"v. intrans.","ec":"fall","ep":"apart"}},{"entry":{"ts":1527811516,"i":8356,"p":"شلېدل","f":"shledul","g":"shledul","e":"to be torn, broken, rent, broken, severed","c":"v. intrans.","shortIntrans":true,"ec":"be","ep":"torn"}},{"entry":{"ts":1527812615,"i":9052,"p":"غځېدل","f":"ghadzedul","g":"ghadzedul","e":"stretch out, lie, be extended, expand","c":"v. intrans.","ec":"stretch","ep":"out"}},{"entry":{"ts":1527813680,"i":9130,"p":"غږېدل","f":"ghuGedul, ghaGedul","g":"ghugedul,ghagedul","e":"to speak, talk, converse, sing","c":"v. intrans.","ec":"speak,speaks,speaking,spoke"}},{"entry":{"ts":1527814867,"i":9247,"p":"غورځېدل","f":"ghwurdzedúl, ghoordzedúl","g":"ghwurdzedul,ghoordzedul","e":"to fall, jump, leap","c":"v. intrans.","shortIntrans":true,"ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823696,"i":9315,"p":"غولېدل","f":"ghwuledul","g":"ghwuledul","e":"to be deceived, cheated, fooled","c":"v. intrans.","ec":"be","ep":"deceived"}},{"entry":{"ts":1527812759,"i":10616,"p":"کېناستل","f":"kenaastul","g":"kenaastul","e":"to sit down, to have a seat","c":"v. intrans. irreg.","psp":"کېن","psf":"ken","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"sit,sits,sitting,sat","ep":"down"}},{"entry":{"ts":1527812645,"i":10722,"p":"ګرځېدل","f":"gurdzedul","g":"gurdzedul","e":"to walk, wander, turn about; to become, to be","c":"v. intrans.","shortIntrans":true,"ec":"walk"}},{"entry":{"ts":1527814430,"i":11196,"p":"لړزېدل","f":"laRzedul","g":"laRzedul","e":"to shake, shudder, tremble, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shook"}},{"entry":{"ts":1527814085,"i":11281,"p":"لګېدل","f":"lagedúl, lugedúl","g":"lagedul,lugedul","e":"to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem","c":"v. intrans.","shortIntrans":true,"ec":"hit,hits,hitting,hit"}},{"entry":{"ts":1527813994,"i":11476,"p":"لوېدل","f":"lwedul","g":"lwedul","e":"to fall, to tumble, go down, settle","c":"v. intrans.","ec":"fall,falls,falling,fell,fallen"}},{"entry":{"ts":1527823019,"i":14377,"p":"وېرېدل","f":"weredúl","g":"weredul","e":"to be afraid, scared, to fear","c":"v. intrans.","ec":"be","ep":"afraid"}},{"entry":{"ts":1581086654898,"i":10595,"p":"کېدل","f":"kedul","g":"kedul","e":"to become _____","c":"v. intrans. irreg.","ssp":"ش","ssf":"sh","prp":"شول","prf":"shwul","pprtp":"شوی","pprtf":"shúwey","noOo":true,"ec":"become","ep":"_____"}},{"entry":{"ts":1527812754,"i":10594,"p":"کېدل","f":"kedul","g":"kedul","e":"to happen, occur","c":"v. intrans. irreg.","ssp":"وش","ssf":"óosh","prp":"وشول","prf":"óoshwul","pprtp":"شوی","pprtf":"shúwey","diacExcept":true,"ec":"happen"}},{"entry":{"ts":1527815348,"i":3622,"p":"تلل","f":"tlul","g":"tlul","e":"to go","c":"v. intrans. irreg.","psp":"ځ","psf":"dz","ssp":"لاړ ش","ssf":"láaR sh","prp":"لاړ","prf":"láaR","ec":"go,goes,going,went,gone"}},{"entry":{"ts":1527815216,"i":6572,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"}},{"entry":{"ts":1527819674,"i":5109,"p":"څملاستل","f":"tsumlaastúl","g":"tsumlaastul","e":"to lie down","c":"v. intrans. seperable","l":1596485996977,"psp":"څمل","psf":"tsaml","noOo":true,"separationAtP":2,"separationAtF":4,"ec":"lay,lays,lying,lay,layed","ep":"down"}},{"entry":{"ts":1527814617,"i":13685,"p":"نیول","f":"neewul","g":"neewul","e":"to catch, grab, take, arrest; bear (fruit)","c":"v. trans. irreg.","psp":"نیس","psf":"nees","ec":"catch,catches,catching,caught,caught"}},{"entry":{"ts":1527811872,"i":224,"p":"اچول","f":"achawul","g":"achawul","e":"to put, pour, drop, throw, put on","c":"v. trans.","ec":"put,puts,putting,put,put"}},{"entry":{"ts":1527817298,"i":310,"p":"اخیستل","f":"akheestul","g":"akheestul","e":"to take, buy, purchase, receive; to shave, cut with scissors","c":"v. trans.","psp":"اخل","psf":"akhl","ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527816127,"i":436,"p":"اړول","f":"aRawul","g":"aRawul","e":"to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack","c":"v. trans.","ec":"turn","ep":"over"}},{"entry":{"ts":1527811605,"i":461,"p":"ازمویل","f":"azmoyul","g":"azmoyul","e":"to attempt, try; to experiment, test","c":"v. trans.","sepOo":true,"ec":"try"}},{"entry":{"ts":1527812458,"i":538,"p":"استول","f":"astawul","g":"astawul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527811397,"i":663,"p":"اغوستل","f":"aghostúl","g":"aghostul","e":"to wear, to put on (clothes)","c":"v. trans.","psp":"اغوند","psf":"aghond","ec":"wear,wears,wearing,wore,worn"}},{"entry":{"ts":1527816125,"i":795,"p":"الوزول","f":"alwuzawul","g":"alwuzawul","e":"to make fly, to toss, to release (birds); to blow up","c":"v. trans.","ec":"make,makes,making,made,made","ep":"fly"}},{"entry":{"ts":1527816146,"i":1148,"p":"ایستل","f":"eestul","g":"eestul","e":"to throw out, discard, chuck, toss; to extract, to take out","c":"v. trans.","psp":"باس","psf":"baas","ec":"take,takes,taking,took,taken","ep":"out"}},{"entry":{"ts":1527817786,"i":1366,"p":"بخښل","f":"bakhxul","g":"bakhxul","e":"to forgive, to pardon, to give, grant","c":"v. trans.","ec":"forgive"}},{"entry":{"ts":1527816092,"i":1688,"p":"بلل","f":"balul","g":"balul","e":"to call, invite; to consider, deem","c":"v. trans.","psp":"بول","psf":"bol","tppp":"باله","tppf":"baalu","ec":"deem"}},{"entry":{"ts":1577389204616,"i":2290,"p":"پرانیستل","f":"praaneestul","g":"praaneestul","e":"to open; to undo; to initiate","c":"v. trans.","psp":"پرانیز","psf":"praaneez","noOo":true,"separationAtP":3,"separationAtF":4,"ec":"open"}},{"entry":{"ts":1527816874,"i":2554,"p":"پلورل","f":"plorul","g":"plorul","e":"to sell","c":"v. trans.","ec":"sell,sells,selling,sold,sold"}},{"entry":{"ts":1527815190,"i":2389,"p":"پرېښودل","f":"prexodúl","g":"prexodul","e":"to leave, abandon, forsake, let go, allow","c":"v. trans. seperable irreg.","l":1527812280,"psp":"پرېږد","psf":"preGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"abandon"}},{"entry":{"ts":1527815216,"i":6572,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"}},{"entry":{"ts":1527812284,"i":10606,"p":"کېښودل","f":"kexodul","g":"kexodul","e":"to put, to put down, to set in place","c":"v. trans. irreg.","psp":"ږد","psf":"Gd","ssp":"کېږد","ssf":"kéGd","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"put,puts,putting,put,put"}},{"entry":{"ts":1577394422280,"i":2780,"p":"پوهول","f":"pohawul","g":"pohawul","e":"to explain, to try to make understand","c":"v. trans.","ec":"make","ep":"understand"}},{"entry":{"ts":1527815165,"i":2870,"p":"پېژندل","f":"pejzandul","g":"pejzandul","e":"to recognize, know, meet","c":"v. trans.","psp":"پېژن","psf":"pejzan","tppp":"پېژاند","tppf":"pejzaand","ec":"recognize"}},{"entry":{"ts":1527813405,"i":3356,"p":"تړل","f":"taRul","g":"taRul","e":"to connect, tie, bind, close","c":"v. trans.","tppp":"تاړه","tppf":"taaRu","ec":"tie,ties,tying,tied,tied"}},{"entry":{"ts":1527813394,"i":3984,"p":"ټاکل","f":"Taakul","g":"Taakul","e":"to select, appoint","c":"v. trans.","tppp":"ټاکه","tppf":"Taaku","ec":"appoint"}},{"entry":{"ts":1527813755,"i":4622,"p":"ځورول","f":"dzawrawul","g":"dzawrawul","e":"to bother, irritate, torture, distress, vex, grind on","c":"v. trans.","ec":"bother"}},{"entry":{"ts":1527814586,"i":4842,"p":"چلول","f":"chalawul","g":"chalawul","e":"to drive, operate, handle, put forward, circulate","c":"v. trans.","ec":"drive,drives,driving,drove,drove"}},{"entry":{"ts":1527816564,"i":4956,"p":"چیچل","f":"cheechul","g":"cheechul","e":"to bite, chew, grind (teeth), clench (teeth), sting","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527812790,"i":5745,"p":"خوړل","f":"khoRul","g":"khoRul","e":"to eat, to bite","c":"v. trans.","psp":"خور","psf":"khor","tppp":"خوړ","tppf":"khoR","ec":"eat,eats,eating,ate,eaten"}},{"entry":{"ts":1527815489,"i":5927,"p":"داړل","f":"daaRul","g":"daaRul","e":"to bite, tear, gnaw","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"}},{"entry":{"ts":1527813572,"i":6746,"p":"رسول","f":"rasawul","g":"rasawul","e":"to deliver, to make arrive, provide, send, supply, bring to,","c":"v. trans.","ec":"deliver"}},{"entry":{"ts":1527816064,"i":7095,"p":"زغمل","f":"zghamul","g":"zghamul","e":"to endure, bear, tolerate, take on, digest","c":"v. trans.","tppp":"زغامه","tppf":"zghaamu","ec":"endure"}},{"entry":{"ts":1527813637,"i":7506,"p":"ستایل","f":"staayul","g":"staayul","e":"to praise, commend, glorify, mention","c":"v. trans.","tppp":"ستایه","tppf":"staayu","ec":"praise"}},{"entry":{"ts":1527817750,"i":7774,"p":"سکل","f":"skul","g":"skul","e":"to drink","c":"v. trans.","ec":"drink,drinks,drinking,drank,drank"}},{"entry":{"ts":1527814596,"i":8254,"p":"شرمول","f":"shărmawul","g":"sharmawul","e":"to shame, to disgrace, to dishonor","c":"v. trans.","ec":"shame"}},{"entry":{"ts":1527814908,"i":8277,"p":"شړل","f":"shaRul","g":"shaRul","e":"to drive out, fire, evict, push out","c":"v. trans.","tppp":"شاړه","tppf":"shaaRu","ec":"drive,drives,driving,drove,drove","ep":"out"}},{"entry":{"ts":1527815531,"i":8332,"p":"شکول","f":"shkawul","g":"shkawul","e":"to tear, to break of, to dig up, to pull out","c":"v. trans.","ec":"tear,tears,tearing,torn,torn"}},{"entry":{"ts":1527815296,"i":8359,"p":"شمارل","f":"shmaarul","g":"shmaarul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527815273,"i":8387,"p":"شمېرل","f":"shmerul","g":"shmerul","e":"to count","c":"v. trans.","ec":"count"}},{"entry":{"ts":1527811293,"i":8582,"p":"ښودل","f":"xodul","g":"xodul","e":"to show; to teach; to suit, look good with (fig.), befit","c":"v. trans.","psp":"ښای","psf":"xaay","ec":"show,shows,showing,showed,shown"}},{"entry":{"ts":1527817865,"i":9051,"p":"غځول","f":"ghadzawul","g":"ghadzawul","e":"to extend, to stretch out, to expand","c":"v. trans.","ec":"extend"}},{"entry":{"ts":1527815886,"i":9197,"p":"غندل","f":"ghandul","g":"ghandul","e":"to condemn, reproach, to criticize","c":"v. trans.","tppp":"غانده","tppf":"ghaandu","ec":"condemn"}},{"entry":{"ts":1527816122,"i":9244,"p":"غورځول","f":"ghoordzawul, ghwurdzawul","g":"ghoordzawul,ghwurdzawul","e":"to throw, hurl, fling","c":"v. trans.","ec":"throw,throws,throwing,threw,thrown"}},{"entry":{"ts":1527812627,"i":9292,"p":"غوښتل","f":"ghwuxtul, ghoxtul","g":"ghwuxtul,ghoxtul","e":"to want, to request","c":"v. trans.","psp":"غواړ","psf":"ghwaaR","ec":"want"}},{"entry":{"ts":1527819301,"i":9312,"p":"غولول","f":"ghwulawúl","g":"ghwulawul","e":"to deceive, cheat, fool","c":"v. trans.","ec":"deceive"}},{"entry":{"ts":1527813568,"i":9812,"p":"کارول","f":"kaarawul","g":"kaarawul","e":"to use, utilize","c":"v. trans.","ec":"use"}},{"entry":{"ts":1527816300,"i":10032,"p":"کرل","f":"karul","g":"karul","e":"to sow, to plant","c":"v. trans.","tppp":"کاره","tppf":"kaaru","ec":"sow"}},{"entry":{"ts":1527817577,"i":10183,"p":"کښېښودل","f":"kxexodul","g":"kxexodul","e":"to put, to put down, to set in place","c":"v. trans.","psp":"ږد","psf":"Gd","ssp":"کښېږد","ssf":"kxéGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"put,puts,putting,put"}},{"entry":{"ts":1527811289,"i":10622,"p":"کېنول","f":"kenawul","g":"kenawul","e":"to seat, to make or have someone sit down","c":"v. trans.","noOo":true,"ec":"seat,seats,seating,sat,sat"}},{"entry":{"ts":1527817661,"i":10645,"p":"ګالل","f":"gaalul","g":"gaalul","e":"to bear up under (diffucult things), to suffer, to take, to endure","c":"v. trans.","ec":"endure"}},{"entry":{"ts":1527812649,"i":10667,"p":"ګټل","f":"gaTul, guTul","g":"gaTul,guTul","e":"to earn (money), to win","c":"v. trans.","tppp":"ګاټه","tppf":"gaaTu","ec":"earn"}},{"entry":{"ts":1527812612,"i":10862,"p":"ګنډل","f":"ganDul","g":"ganDul","e":"to sew, mend, make, knit","c":"v. trans.","tppp":"ګانډه","tppf":"gaanDu","ec":"sew,sews,sewing,sewed,sown"}},{"entry":{"ts":1527812000,"i":10883,"p":"ګڼل","f":"gaNul, guNul","g":"gaNul,guNul","e":"to count, consider, reckon, suppose, assume","c":"v. trans.","tppp":"ګاڼه","tppf":"gaaNu","ec":"deem"}},{"entry":{"ts":1527812873,"i":11440,"p":"لوستل","f":"lwastul, lwustul","g":"lwastul,lwustul","e":"to read, study","c":"v. trans. irreg.","psp":"لول","psf":"lwul","tppp":"لوست","tppf":"lwast","ec":"read,reads,reading,read,read"}},{"entry":{"ts":1527812869,"i":11155,"p":"لټول","f":"luTawul","g":"luTawul","e":"to search, seek","c":"v. trans.","ec":"search"}},{"entry":{"ts":1527813866,"i":11510,"p":"لېږل","f":"leGul","g":"legul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"}},{"entry":{"ts":1527812856,"i":11520,"p":"لیکل","f":"leekul","g":"leekul","e":"to write","c":"v. trans.","ec":"write,writes,writing,wrote,wrote"}},{"entry":{"ts":1527815085,"i":12756,"p":"منل","f":"manul","g":"manul","e":"to accept, to believe","c":"v. trans.","tppp":"مانه","tppf":"maanu","ec":"accepting"}},{"entry":{"ts":1527815399,"i":14338,"p":"وهل","f":"wahul","g":"wahul","e":"to hit","c":"v. trans.","tppp":"واهه","tppf":"waahu","ec":"hit,hits,hitting,hit,hit"}},{"entry":{"ts":1527823020,"i":14376,"p":"وېرول","f":"werawúl","g":"werawul","e":"to make afraid, to scare, to make fear","c":"v. trans.","ec":"scare"}},{"entry":{"ts":1527811701,"i":14389,"p":"وېشل","f":"weshul","g":"weshul","e":"divide, distribute, share","c":"v. trans.","ec":"divide"}},{"entry":{"ts":1579015359582,"i":10529,"p":"کول","f":"kawul","g":"kawul","e":"to make ____ ____ (as in \"He's making me angry.\")","c":"v. trans. irreg.","ssp":"کړ","ssf":"kR","prp":"کړل","prf":"kRul","pprtp":"کړی","pprtf":"kúRey","noOo":true,"ec":"make,makes,making,made,made","ep":"_____"}},{"entry":{"ts":1527812752,"i":10528,"p":"کول","f":"kawul","g":"kawul","e":"to do (an action or activity)","c":"v. trans. irreg.","ssp":"وکړ","ssf":"óokR","prp":"وکړل","prf":"óokRul","pprtp":"کړی","pprtf":"kúRey","diacExcept":true,"ec":"do,does,doing,did,done"}},{"entry":{"ts":1527816865,"i":14196,"p":"وړل","f":"wuRúl, oRúl, wRul","g":"wuRul,oRul,wRul","e":"to take, carry, bear, move (inanimate objects); to win, earn (subjunctive یوسي - yósee or ویسي - wéesee, simple past یو یې وړلو - yo ye wRulo)","c":"v. trans. irreg.","ssp":"یوس","ssf":"yos","prp":"یوړل","prf":"yóRul","noOo":true,"separationAtP":2,"separationAtF":2,"diacExcept":true,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527815214,"i":6649,"p":"راوړل","f":"raawRúl","g":"raawRul","e":"to bring, deliver (inanimate objects)","c":"v. trans. irreg.","tppp":"راووړ","tppf":"raawoR","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527819827,"i":6650,"p":"راوستل","f":"raawustúl","g":"raawustul","e":"to bring, deliver (animate objects), obtain, extract","c":"v. trans. irreg.","psp":"راول","psf":"raawul","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"}},{"entry":{"ts":1527812507,"i":1791,"p":"بوتلل","f":"botlul","g":"botlul","e":"to take, bring, send (animate objects)","c":"v. trans. seperable","l":1527815348,"psp":"بیای","psf":"byaay","ssp":"بوځ","ssf":"bódz","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"take,takes,taking,took,taken"}},{"entry":{"ts":1527812275,"i":11498,"p":"لیدل","f":"leedul","g":"leedul","e":"to see","c":"v. trans./gramm. trans.","psp":"وین","psf":"ween","tppp":"لید","tppf":"leed","ec":"see,sees,seeing,saw,seen"}},{"entry":{"ts":1577049208257,"i":1060,"p":"اورېدل","f":"awredul","g":"awredul","e":"to hear, listen","c":"v. trans./gramm. trans.","psp":"اور","psf":"awr","tppp":"اورېد","tppf":"awred","ec":"hear,hears,hearing,heard"}},{"entry":{"ts":1527812362,"i":9451,"p":"فرمایل","f":"farmaayul","g":"farmaayul","e":"to speak, order, ordain (polite form)","c":"v. trans./gramm. trans.","ec":"speak,speaks,speaking,spoke,spoken"}},{"entry":{"ts":1527812751,"i":9929,"p":"کتل","f":"katul","g":"katul","e":"to look, see, watch, examine; to meet with","c":"v. trans./gramm. trans.","psp":"ګور","psf":"gor","tppp":"کوت","tppf":"kot","ec":"look"}},{"entry":{"ts":1527815396,"i":14053,"p":"وایل","f":"waayul","g":"waayul","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"entry":{"ts":1527817013,"i":14398,"p":"ویل","f":"wayul, wayl","g":"wayul,wayl","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"}},{"ts":1527816466,"i":8671,"p":"صلح","f":"sUlha","g":"sUlha","e":"peace","c":"n. f."},{"ts":1527816589,"i":8744,"p":"طرح","f":"tarha","g":"tarha","e":"plan","c":"n. f."},{"ts":1589023873660,"i":9398,"p":"فتح","f":"fathá","g":"fatha","e":"victory, conquest","c":"n. f."},{"ts":1527813791,"i":189,"p":"اجازه","f":"ijaaza","g":"ijaaza","e":"permission","c":"n. f."},{"ts":1614083533098,"i":213,"p":"اجنډه","f":"ajanDa","g":"ajanDa","e":"agenda","c":"n. f."},{"ts":1527816215,"i":316,"p":"اداره","f":"idaara","g":"idaara","e":"administration, management, directorate","c":"n. f."},{"ts":1527812687,"i":319,"p":"ادامه","f":"idaama","g":"idaama","e":"continuation","c":"n. f."},{"ts":1527811661,"i":341,"p":"اډه","f":"aDa","g":"aDa","e":"base, army post, (air) port","c":"n. f."},{"ts":1527814310,"i":380,"p":"ارزونه","f":"arzawuna","g":"arzawuna","e":"evaluation, appraisal, assessment","c":"n. f."},{"ts":1527821380,"i":397,"p":"اره","f":"ara","g":"ara","e":"saw (the tool)","c":"n. f."},{"ts":1527822277,"i":478,"p":"اسپه","f":"aspa","g":"aspa","e":"mare, female horse; fever","c":"n. f."},{"ts":1527814922,"i":607,"p":"اضافه","f":"izaafa","g":"izaafa","e":"addition, add-on, augmentation","c":"n. f."},{"ts":1527822458,"i":670,"p":"افاده","f":"ifaada","g":"ifaada","e":"expression","c":"n. f."},{"ts":1527813303,"i":683,"p":"افسانه","f":"afsaana","g":"afsaana","e":"myth, legend, fairy tale","c":"n. f."},{"ts":1527822494,"i":868,"p":"انانګه","f":"anaangá","g":"anaanga","e":"cheek","c":"n. f."},{"ts":1527817225,"i":918,"p":"اندازه","f":"andaaza","g":"andaaza","e":"measure, dimension, extent, scale","c":"n. f."},{"ts":1527813759,"i":925,"p":"اندېښنه","f":"andexna","g":"andexna","e":"worry, concern, fear","c":"n. f."},{"ts":1527815787,"i":1077,"p":"اوږه","f":"ooGá","g":"ooga","e":"shoulder","c":"n. f."},{"ts":1527813787,"i":1092,"p":"اوښکه","f":"ooxka","g":"ooxka","e":"tear (from eye)","c":"n. f."},{"ts":1527819927,"i":1181,"p":"اینه","f":"éena","g":"eena","e":"liver","c":"n. f."},{"ts":1527816261,"i":1337,"p":"بټوه","f":"baTwa","g":"baTwa","e":"wallet","c":"n. f."},{"ts":1527812001,"i":1482,"p":"برخه","f":"barkha","g":"barkha","e":"poriton, part, share","c":"n. f."},{"ts":1578009902092,"i":1513,"p":"برقه","f":"bUrqá","g":"bUrka","e":"veil, burka","c":"n. f."},{"ts":1527816994,"i":1538,"p":"برنامه","f":"barnaama","g":"barnaama","e":"program","c":"n. f."},{"ts":1579294091093,"i":1541,"p":"برنډه","f":"baranDá","g":"baranDa","e":"balcony, veranda, porch","c":"n. f."},{"ts":1527823617,"i":1585,"p":"بزه","f":"bazá","g":"baza","e":"crime, offense, sin, guilt, fault","c":"n. f."},{"ts":1527823619,"i":1586,"p":"بزه","f":"bUzá","g":"bUza","e":"moth","c":"n. f."},{"ts":1527823620,"i":1587,"p":"بزه","f":"bza","g":"bza","e":"patch (in a garment)","c":"n. f.","ec":"patch","ep":"patches"},{"ts":1591026261598,"i":1588,"p":"بزه","f":"buza","g":"buza","e":"she-goat","c":"n. f."},{"ts":1574188090133,"i":1598,"p":"بسپنه","f":"baspuna","g":"baspuna","e":"contribution, donation, gift, charity","c":"n. f."},{"ts":1527816590,"i":1612,"p":"بسنه","f":"basuna","g":"basuna","e":"sufficiency, to have enough or get by","c":"n. f."},{"ts":1593852212828,"i":2010,"p":"بېره","f":"béra","g":"bera","e":"fear, fright","c":"n. f."},{"ts":1527815862,"i":2022,"p":"بېړه","f":"beRa","g":"beRa","e":"speed, rush, hurry, urgency","c":"n. f."},{"ts":1527815156,"i":2186,"p":"پاڼه","f":"paaNa","g":"paaNa","e":"leaf","c":"n. f.","ec":"leaf","ep":"leaves"},{"ts":1527813481,"i":2366,"p":"پروژه","f":"projza","g":"projza","e":"project","c":"n. f."},{"ts":1527818409,"i":2370,"p":"پروسه","f":"purosa","g":"purosa","e":"process","c":"n. f."},{"ts":1527815192,"i":2393,"p":"پرېکړه","f":"prékRa","g":"prekRa","e":"decision","c":"n. f."},{"ts":1527822412,"i":2429,"p":"پزه","f":"páza","g":"paza","e":"nose","c":"n. f."},{"ts":1527816124,"i":2493,"p":"پښه","f":"pxa","g":"pxa","e":"foot","c":"n. f.","ec":"foot","ep":"feet"},{"ts":1527815155,"i":2538,"p":"پلمه","f":"palma","g":"palma","e":"pretext, excuse","c":"n. f."},{"ts":1566469328688,"i":2620,"p":"پنکه","f":"panka","g":"panka","e":"fan","c":"n. f."},{"ts":1527815184,"i":2751,"p":"پوښتنه","f":"poxtuna","g":"poxtuna","e":"question","c":"n. f."},{"ts":1527822437,"i":2966,"p":"تاخچه","f":"taakhchá","g":"taakhcha","e":"shelf, niche","c":"n. f.","ec":"shelf","ep":"shelves"},{"ts":1527814974,"i":3073,"p":"تبه","f":"tuba","g":"tuba","e":"fever","c":"n. f."},{"ts":1527815332,"i":3673,"p":"تمه","f":"tama","g":"tama","e":"expectation","c":"n. f."},{"ts":1527815716,"i":3954,"p":"تیږه","f":"teeGa","g":"teega","e":"stone, rock","c":"n. f."},{"ts":1582390417084,"i":3957,"p":"تېښته","f":"téxta","g":"texta","e":"escape, flight, running away","c":"n. f."},{"ts":1527822268,"i":3997,"p":"ټانګه","f":"Taangá","g":"Taanga","e":"carriage, buggy","c":"n. f."},{"ts":1527812014,"i":4125,"p":"ټولنه","f":"Toluna","g":"Toluna","e":"society, association, gathering, assembly, congregation","c":"n. f."},{"ts":1527816696,"i":4405,"p":"جمله","f":"jUmla","g":"jUmla","e":"sentence; whole, total, sum","c":"n. f."},{"ts":1527820504,"i":4590,"p":"ځمکه","f":"dzmúka","g":"dzmuka","e":"land, earth, ground","c":"n. f."},{"ts":1527815497,"i":5159,"p":"څېره","f":"tsera","g":"tsera","e":"face, picture","c":"n. f."},{"ts":1527811993,"i":5307,"p":"حمله","f":"hamla","g":"hamla","e":"attack, assault","c":"n. f."},{"ts":1527812720,"i":7275,"p":"ژبه","f":"jzúba, jzíba","g":"jzuba,jziba","e":"language","c":"n. f."},{"ts":1527812052,"i":5570,"p":"خښته","f":"khuxta","g":"khuxta","e":"brick, cinder-block","c":"n. f."},{"ts":1527813475,"i":6161,"p":"دقیقه","f":"daqeeqa","g":"dakeeka","e":"minute","c":"n. f.","app":"دقائق","apf":"daqaa'iq"},{"ts":1527812542,"i":6227,"p":"دمه","f":"dama","g":"dama","e":"break, rest","c":"n. f."},{"ts":1527812085,"i":6230,"p":"دنده","f":"danda","g":"danda","e":"obligation, duty, responsibility; job, work, position","c":"n. f."},{"ts":1527822847,"i":7263,"p":"ژامه","f":"jzaamá","g":"jzaama","e":"jaw","c":"n. f."},{"ts":1527815278,"i":8180,"p":"شپه","f":"shpa","g":"shpa","e":"night","c":"n. f."},{"ts":1527813145,"i":9610,"p":"قبیله","f":"qabeela","g":"kabeela","e":"tribe","c":"n. f.","app":"قبایل","apf":"qabaayul"},{"ts":1566653299904,"i":10287,"p":"کمره","f":"kamara","g":"kamara","e":"camera","c":"n. f."},{"ts":1527812825,"i":10432,"p":"کوڅه","f":"kootsa","g":"kootsa","e":"street","c":"n. f."},{"ts":1527812756,"i":10611,"p":"کېله","f":"kela","g":"kela","e":"banana","c":"n. f."},{"ts":1527812859,"i":11381,"p":"لوبه","f":"lóba","g":"loba","e":"game, match","c":"n. f."},{"ts":1527819087,"i":11561,"p":"ماته","f":"maata","g":"maata","e":"defeat","c":"n. f."},{"ts":1588076706989,"i":12188,"p":"مسافه","f":"masaafá","g":"masaafa","e":"distance, span","c":"n. f."},{"ts":1527818358,"i":12765,"p":"مڼه","f":"maNá","g":"maNa","e":"apple","c":"n. f."},{"ts":1527812901,"i":12941,"p":"مېده","f":"meda","g":"meda","e":"stomach","c":"n. f."},{"ts":1527813387,"i":13346,"p":"نښته","f":"nuxúta","g":"nuxuta","e":"battle, skirmish, wrangle, quarrel, fighting, gluing, joining","c":"n. f."},{"ts":1527815110,"i":13352,"p":"نښه","f":"náxa, núxa","g":"naxa,nuxa","e":"sign, mark, indication","c":"n. f."},{"ts":1527813391,"i":13627,"p":"نېټه","f":"neTa","g":"neTa","e":"date (as in time)","c":"n. f."},{"ts":1527811429,"i":13746,"p":"هدیره","f":"hadeera","g":"hadeera","e":"graveyard, cemetery","c":"n. f."},{"ts":1527814323,"i":13747,"p":"هدیه","f":"hadiya","g":"hadiya","e":"gift, present, donation, contribution","c":"n. f."},{"ts":1527812655,"i":13808,"p":"هفته","f":"hafta","g":"hafta","e":"week","c":"n. f."},{"ts":1527812681,"i":13945,"p":"هوکړه","f":"hókRa","g":"hokRa","e":"agreement","c":"n. f."},{"ts":1578343468611,"i":14051,"p":"واڼه","f":"wáaNa","g":"waaNa","e":"tendon, sinew; hamstring","c":"n. f."},{"ts":1527822717,"i":14052,"p":"واوره","f":"wáawra","g":"waawra","e":"snow","c":"n. f."},{"ts":1527811207,"i":14152,"p":"وروځه","f":"wróodza","g":"wroodza","e":"eyebrow","c":"n. f."},{"ts":1527816375,"i":14179,"p":"ورېره","f":"wrera","g":"wrera","e":"niece; brother's daughter","c":"n. f."},{"ts":1527822259,"i":14230,"p":"وږمه","f":"waGmá","g":"wagma","e":"breeze, light wind","c":"n. f."},{"ts":1527814719,"i":14241,"p":"وسله","f":"wasla","g":"wasla","e":"weapon, firearm, artillery","c":"n. f."},{"ts":1527823717,"i":9915,"p":"کپړه","f":"kapRá","g":"kapRa","e":"cloth, fabric, material, clothing, garment","c":"n. f."},{"ts":1527816257,"i":9923,"p":"کتابچه","f":"kitaabcha","g":"kitaabcha","e":"notebook, little book","c":"n. f."},{"ts":1527820050,"i":9973,"p":"کڅوړه","f":"katsóRa","g":"katsoRa","e":"bag, purse","c":"n. f."},{"ts":1527813252,"i":10016,"p":"کرښه","f":"kurxa","g":"kurxa","e":"line, trace","c":"n. f."},{"ts":1527823590,"i":10046,"p":"کره","f":"kará","g":"kara","e":"sphere, globe","c":"n. f."},{"ts":1527823591,"i":10047,"p":"کره","f":"kára","g":"kara","e":"shovel, scraper, scoop","c":"n. f."},{"ts":1527815884,"i":10050,"p":"کره کتنه","f":"karakatuna","g":"karakatuna","e":"criticism","c":"n. f."},{"ts":1527823035,"i":10059,"p":"کروړه","f":"karoRá","g":"karoRa","e":"whip","c":"n. f."},{"ts":1527816870,"i":10061,"p":"کرونده","f":"karwanda","g":"karwanda","e":"farmland","c":"n. f."},{"ts":1527817371,"i":10067,"p":"کریږه","f":"kreeGa","g":"kreega","e":"lament, mourning aloud, wail, cry (also out of hapiness)","c":"n. f."},{"ts":1598119732734,"i":10069,"p":"کرېله","f":"karelá","g":"karela","e":"bitter melon","c":"n. f."},{"ts":1527820606,"i":7835,"p":"سمڅه","f":"smútsa","g":"smutsa","e":"cave, cavern","c":"n. f."},{"ts":1527815249,"i":7875,"p":"سندره","f":"sandura","g":"sandura","e":"song, poem, verse","c":"n. f."},{"ts":1591034128816,"i":7907,"p":"سهوه","f":"sáhwa","g":"sahwa","e":"mistake, error, blunder, fault","c":"n. f."},{"ts":1527814370,"i":7971,"p":"سوږمه","f":"soGma","g":"sogma","e":"nostril","c":"n. f."},{"ts":1527817498,"i":7987,"p":"سوکړه","f":"sookRá","g":"sookRa","e":"famine, starvation, serious hunger/lack of food, drought, crop failure","c":"n. f."},{"ts":1527813115,"i":331,"p":"ادعا","f":"idaa","g":"idaa","e":"claim","c":"n. f."},{"ts":1527818119,"i":836,"p":"امسا","f":"amsaa","g":"amsaa","e":"stick, walking staff, walking stick, crutch","c":"n. f."},{"ts":1527815043,"i":4323,"p":"جزا","f":"jazaa","g":"jazaa","e":"punishment, retribution","c":"n. f."},{"ts":1527819022,"i":4987,"p":"څا","f":"tsaa","g":"tsaa","e":"well, water-hole","c":"n. f."},{"ts":1527814225,"i":5578,"p":"خطا","f":"khataa","g":"khataa","e":"mistake, error, blunder","c":"n. f."},{"ts":1610797589510,"i":5599,"p":"خلا","f":"khaláa","g":"khalaa","e":"cavity, emptiness, vacuum, empty space, space (as in planets etc.)","c":"n. f."},{"ts":1527812582,"i":6134,"p":"دعا","f":"dUaa","g":"dUaa","e":"prayer","c":"n. f."},{"ts":1527813415,"i":6252,"p":"دوا","f":"dawaa","g":"dawaa","e":"medicine, medication","c":"n. f."},{"ts":1527812272,"i":6840,"p":"رڼا","f":"raNaa","g":"raNaa","e":"light, glory","c":"n. f."},{"ts":1527823245,"i":6924,"p":"رویا","f":"rooyáa","g":"rooyaa","e":"dream, vision","c":"n. f."},{"ts":1586596579414,"i":8436,"p":"شورا","f":"shooraa","g":"shooraa","e":"council (an institution)","c":"n. f."},{"ts":1527815984,"i":8561,"p":"ښکلا","f":"xkulaa","g":"xkulaa","e":"beauty","c":"n. f."},{"ts":1527817670,"i":9151,"p":"غلا","f":"ghlaa","g":"ghlaa","e":"theft, robbery, stealing","c":"n. f."},{"ts":1527814362,"i":9215,"p":"غوا","f":"ghwaa","g":"ghwaa","e":"cow","c":"n. f."},{"ts":1585487002625,"i":9699,"p":"قلا","f":"qaláa","g":"kalaa","e":"castle, fort, fortress","c":"n. f."},{"ts":1527812048,"i":11647,"p":"مانا","f":"maanaa","g":"maanaa","e":"meaning, sense, spirit","c":"n. f."},{"ts":1527815483,"i":12549,"p":"ملا","f":"mlaa","g":"mlaa","e":"back (body part)","c":"n. f."},{"ts":1527812230,"i":12607,"p":"ملګرتیا","f":"malgurtiyaa","g":"malgurtiyaa","e":"friendship","c":"n. f."},{"ts":1527812910,"i":12988,"p":"مېلمستیا","f":"melmastiyaa","g":"melmastiyaa","e":"hospitality; invitation, event, party, banquet, reception","c":"n. f."},{"ts":1617781446945,"i":13048,"p":"ناجوړتیا","f":"naajoRtiyaa, naajoRtyaa","g":"naajoRtiyaa,naajoRtyaa","e":"sickness, illness","c":"n. f."},{"ts":1527815120,"i":13609,"p":"نیا","f":"niyaa","g":"niyaa","e":"grandmother","c":"n. f."},{"ts":1527811740,"i":13672,"p":"نیمګړتیا","f":"neemguRtiyaa","g":"neemguRtiyaa","e":"incompleteness, default, shortcoming","c":"n. f."},{"ts":1527821040,"i":14054,"p":"وبا","f":"wabáa","g":"wabaa","e":"plague, cholera","c":"n. f."},{"ts":1527823534,"i":14192,"p":"وړتیا","f":"waRtiyáa","g":"waRtiyaa","e":"ability, capacity, capability, power, volumeá","c":"n. f."},{"ts":1610443988250,"i":14390,"p":"وېشلتیا","f":"weshiltyaa, weshiltiyaa","g":"weshiltyaa,weshiltiyaa","e":"division, distribution","c":"n. f."},{"ts":1527816806,"i":14406,"p":"وینا","f":"waynaa","g":"waynaa","e":"speech, statement","c":"n. f."},{"ts":1527815197,"i":2488,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},{"ts":1527813148,"i":2362,"p":"پروت","f":"prot","g":"prot","e":"lying, lying down or on, located, situated","c":"adj. irreg.","infap":"پراته","infaf":"praatu","infbp":"پرت","infbf":"prat"},{"ts":1574867531681,"i":2712,"p":"پوخ","f":"pokh","g":"pokh","e":"mature, ripe, ready, cooked, able, skillful, experienced, tried, tested, true","c":"adj. irreg.","infap":"پاخه","infaf":"paakhu","infbp":"پخ","infbf":"pakh"},{"ts":1576952412644,"i":2739,"p":"پوست","f":"post","g":"post","e":"soft, tender, gentle, loosened","c":"adj. irreg.","infap":"پاسته","infaf":"paastu","infbp":"پست","infbf":"past"},{"ts":1527815366,"i":3340,"p":"تریخ","f":"treekh","g":"treekh","e":"bitter, hot, spicy (of food); terrible, miserable (of life)","c":"adj. irreg.","infap":"تراخه","infaf":"traakhu","infbp":"ترخ","infbf":"turkh"},{"ts":1527818789,"i":3349,"p":"تریو","f":"treew","g":"treew","e":"salty, savoury, sour, acid, bitter, grumpy","c":"adj. irreg.","infap":"تراوه","infaf":"traawu","infbp":"ترو","infbf":"truw"},{"ts":1527817664,"i":3786,"p":"تود","f":"tod","g":"tod","e":"warm, hot","c":"adj.","infap":"تاوده","infaf":"taawdu","infbp":"تود","infbf":"tawd"},{"ts":1527816071,"i":5431,"p":"خپور","f":"khpor","g":"khpor","e":"spread, dispersed, publicized, published","c":"adj.","infap":"خپاره","infaf":"khpaaru","infbp":"خپر","infbf":"khpar"},{"ts":1574865652928,"i":5752,"p":"خوږ","f":"khoG","g":"khog","e":"sweet, nice","c":"adj. irreg.","infap":"خواږه","infaf":"khwaaGu","infbp":"خوږ","infbf":"khwaG"},{"ts":1527813499,"i":6079,"p":"دروند","f":"droond","g":"droond","e":"heavy; respectable, reliable, serious","c":"adj.","infap":"درانه","infaf":"draanu","infbp":"درن","infbf":"dran"},{"ts":1527813943,"i":6597,"p":"راستون","f":"raastoon","g":"raastoon","e":"returned, come back","c":"adj.","infap":"راستانه","infaf":"raastaanu","infbp":"راستن","infbf":"raastan"},{"ts":1576596860977,"i":6919,"p":"روڼ","f":"rooN","g":"rooN","e":"shiny, bright, clear, enlightened, transparent","c":"adj. irreg.","infap":"راڼه","infaf":"raaNu","infbp":"رڼ","infbf":"raN"},{"ts":1527811971,"i":6978,"p":"ړوند","f":"Roond","g":"Roond","e":"blind","c":"adj.","infap":"ړانده","infaf":"Raandu","infbp":"ړند","infbf":"Rand"},{"ts":1527815451,"i":7191,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},{"ts":1527815300,"i":7468,"p":"سپور","f":"spor","g":"spor","e":"mounted, rider, riding","c":"adj.","infap":"سپاره","infaf":"spaaru","infbp":"سپر","infbf":"spar"},{"ts":1527819505,"i":7554,"p":"ستون","f":"stoon","g":"stoon","e":"returned, returning, being (in a place after returning, coming back etc.), delayed, late, lagging","c":"adj. irreg.","infap":"ستانه","infaf":"staanu","infbp":"ستن","infbf":"stan"},{"ts":1600080053835,"i":7947,"p":"سور","f":"sor","g":"sor","e":"riding, mounted (Pakistani)","c":"adj.","infap":"سواره","infaf":"swaaru","infbp":"سور","infbf":"swar"},{"ts":1527813068,"i":7965,"p":"سوړ","f":"soR","g":"soR","e":"cold, cool; patient; lazy; inactive; satisfied","c":"adj.","infap":"ساړه","infaf":"saaRu","infbp":"سړ","infbf":"saR"},{"ts":1575924767041,"i":8182,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},{"ts":1527813172,"i":10496,"p":"کوږ","f":"koG","g":"kog","e":"crooked, bent","c":"adj.","infap":"کاږه","infaf":"kaaGu","infbp":"کږ","infbf":"kaG"},{"ts":1527811973,"i":10578,"p":"کوڼ","f":"kooN","g":"kooN","e":"deaf","c":"adj.","infap":"کاڼه","infaf":"kaaNu","infbp":"کڼ","infbf":"kaN"},{"ts":1527817123,"i":11461,"p":"لومد","f":"loomd","g":"loomd","e":"damp, wet, moist, humid","c":"adj.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527817117,"i":11467,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لانده","infaf":"laandu","infbp":"لند","infbf":"land"},{"ts":1576889120767,"i":11468,"p":"لوند","f":"loond","g":"loond","e":"wet, damp, moist, humid","c":"adj. irreg.","infap":"لامده","infaf":"laamdu","infbp":"لمد","infbf":"lamd"},{"ts":1527812927,"i":12852,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},{"ts":1527812908,"i":12989,"p":"مېلمه","f":"melma","g":"melma","e":"guest","c":"n. m. irreg. unisex","infap":"مېلمانه","infaf":"melmaanu","infbp":"مېلمن","infbf":"melman"},{"ts":1579463171333,"i":13556,"p":"نوږ","f":"noG","g":"nog","e":"cleansed, cleaned, purified","c":"adj.","infap":"ناږه","infaf":"naaGu","infbp":"نږ","infbf":"naG"},{"ts":1576113803291,"i":14346,"p":"ووړ","f":"woR","g":"woR","e":"small, little","c":"adj. irreg.","infap":"واړه","infaf":"waaRu","infbp":"وړ","infbf":"waR"},{"ts":1527819244,"i":10449,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},{"ts":1527814150,"i":11039,"p":"لار","f":"laar","g":"laar","e":"road, way, path","c":"n. f."},{"ts":1527815417,"i":14122,"p":"ورځ","f":"wradz","g":"wradz","e":"day","c":"n. f."},{"ts":1527812922,"i":12922,"p":"میاشت","f":"miyaasht","g":"miyaasht","e":"month","c":"n. f."},{"ts":1527823306,"i":5117,"p":"څنګل","f":"tsangúl","g":"tsangul","e":"elbow","c":"n. f."},{"ts":1527813824,"i":9366,"p":"غېږ","f":"gheG","g":"gheg","e":"bosom, breast; wrestling","c":"n. f."},{"ts":1527820524,"i":5058,"p":"څرمن","f":"tsarmún","g":"tsarmun","e":"pelt, skin, hide, leather","c":"n. f."},{"ts":1527814147,"i":1567,"p":"بړستن","f":"bRastun","g":"bRastun","e":"blanket, coving, quilt","c":"n. f."},{"ts":1527818707,"i":3249,"p":"ترخځ","f":"turkhúdz","g":"turkhudz","e":"wedge; gusset (in a shirt)","c":"n. f."},{"ts":1527822792,"i":3825,"p":"توشک","f":"toshák","g":"toshak","e":"narrow mattress used as a bed or a couch, reversible rug","c":"n. f.","ec":"toshak"},{"ts":1527813294,"i":7330,"p":"ږمنځ","f":"Gmundz","g":"gmundz","e":"comb","c":"n. f."},{"ts":1527811580,"i":7541,"p":"ستن","f":"stun","g":"stun","e":"needle, injection; pillar, mast","c":"n. f."},{"ts":1527815779,"i":10322,"p":"کنځل","f":"kundzul","g":"kundzul","e":"swearing, name-calling, verbal abuse, bad language","c":"n. f."},{"ts":1527817456,"i":11321,"p":"لمن","f":"lamun","g":"lamun","e":"skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)","c":"n. f."},{"ts":1527822725,"i":11479,"p":"لوېشت","f":"lwesht","g":"lwesht","e":"span","c":"n. f."},{"ts":1527811609,"i":12748,"p":"منګل","f":"mangul","g":"mangul","e":"claw, paw","c":"n. f."},{"ts":1527821684,"i":14177,"p":"ورېځ","f":"wurédz","g":"wuredz","e":"cloud","c":"n. f."},{"ts":1527812432,"i":66,"p":"آسمان","f":"aasmaan","g":"aasmaan","e":"sky, heaven","c":"n. m."},{"ts":1527812431,"i":83,"p":"آم","f":"aam","g":"aam","e":"mango","c":"n. m."},{"ts":1527812434,"i":99,"p":"آواز","f":"aawaaz","g":"aawaaz","e":"sound, voice","c":"n. m."},{"ts":1527816724,"i":140,"p":"اتاق","f":"wutáaq, Utáaq","g":"wutaak,Utaak","e":"room, chamber","c":"n. m.","diacExcept":true},{"ts":1527811859,"i":142,"p":"اتحاد","f":"itihaad","g":"itihaad","e":"union, alliance","c":"n. m."},{"ts":1527822033,"i":145,"p":"اتصال","f":"ittisáal","g":"ittisaal","e":"joining, connection, contiguity, junction","c":"n. m."},{"ts":1527811858,"i":146,"p":"اتفاق","f":"itifaaq","g":"itifaak","e":"unity, alliance, agreement, understanding, consent; coincidence","c":"n. m."},{"ts":1527813560,"i":166,"p":"اتهام","f":"itihaam","g":"itihaam","e":"accusation, charge, indictment","c":"n. m.","app":"اتهامات","apf":"itihaamáat"},{"ts":1527812105,"i":234,"p":"احترام","f":"ihtiraam","g":"ihtiraam","e":"respect, honor, esteem, deference","c":"n. m."},{"ts":1527819653,"i":240,"p":"احتمال","f":"ihtimaal","g":"ihtimaal","e":"possibility, probability, likelihood","c":"n. m."},{"ts":1527812689,"i":242,"p":"احتیاج","f":"ihtiyaaj","g":"ihtiyaaj","e":"need, requirement","c":"n. m.","app":"احتیاجات","apf":"ihtiyaajáat"},{"ts":1527812690,"i":244,"p":"احتیاط","f":"ihtiyaat","g":"ihtiyaat","e":"caution","c":"n. m."},{"ts":1527813782,"i":246,"p":"احساس","f":"ahsaas","g":"ahsaas","e":"feeling, sensation, emotion","c":"n. m."},{"ts":1527817303,"i":630,"p":"اعتراض","f":"itiraaz","g":"itiraaz","e":"objection, protest","c":"n. m."},{"ts":1527813418,"i":667,"p":"اغېز","f":"aghez","g":"aghez","e":"influence, effect, affect, action","c":"n. m."},{"ts":1527816625,"i":672,"p":"افت","f":"afat","g":"afat","e":"disaster","c":"n. m."},{"ts":1527813558,"i":761,"p":"الزام","f":"ilzaam","g":"ilzaam","e":"accusation, charge, blame","c":"n. m."},{"ts":1527815388,"i":853,"p":"امید","f":"Umeed","g":"Umeed","e":"hope, expectation","c":"n. m."},{"ts":1527812453,"i":908,"p":"انځور","f":"andzoor","g":"andzoor","e":"picture, painting, image","c":"n. m."},{"ts":1527813827,"i":1034,"p":"اور","f":"or","g":"or","e":"fire, flame","c":"n. m."},{"ts":1527814787,"i":1236,"p":"باران","f":"baaraan","g":"baaraan","e":"rain","c":"n. m."},{"ts":1527817293,"i":1298,"p":"بام","f":"baam","g":"baam","e":"roof","c":"n. m."},{"ts":1527814849,"i":1302,"p":"بانجن","f":"baanjan","g":"baanjan","e":"eggplant","c":"n. m."},{"ts":1527814106,"i":1359,"p":"بحران","f":"bUhraan","g":"bUhraan","e":"crisis","c":"n. m."},{"ts":1527814885,"i":1361,"p":"بخت","f":"bakht","g":"bakht","e":"fortune, luck, fate","c":"n. m."},{"ts":1527811281,"i":1754,"p":"بڼ","f":"baN","g":"baN","e":"garden","c":"n. m."},{"ts":1624039195280,"i":1817,"p":"بورس","f":"boors","g":"boors","e":"scholarship","c":"n. m."},{"ts":1527816877,"i":2009,"p":"بیرغ","f":"beyragh","g":"beyragh","e":"flag","c":"n. m."},{"ts":1527820423,"i":2140,"p":"پاسپورټ","f":"paasporT","g":"paasporT","e":"passport","c":"n. m."},{"ts":1527813224,"i":2511,"p":"پل","f":"pUl","g":"pUl","e":"bridge","c":"n. m.","infap":"پله","infaf":"plu","infbp":"پل","infbf":"pl"},{"ts":1527813480,"i":2520,"p":"پلان","f":"plaan","g":"plaan","e":"plan","c":"n. m."},{"ts":1527815199,"i":2525,"p":"پلاو","f":"pulaaw","g":"pulaaw","e":"pulaaw (central-asian/middle-eastern rice dish), pilaf","c":"n. m."},{"ts":1527815185,"i":2716,"p":"پور","f":"por","g":"por","e":"loan, debt","c":"n. m."},{"ts":1527815176,"i":2795,"p":"پیاز","f":"piyaaz","g":"piyaaz","e":"onion","c":"n. m."},{"ts":1527815171,"i":2925,"p":"پیل","f":"peyl","g":"peyl","e":"start","c":"n. m."},{"ts":1527816610,"i":2962,"p":"تاج","f":"taaj","g":"taaj","e":"crown, crest","c":"n. m."},{"ts":1527822373,"i":2994,"p":"تاک","f":"taak","g":"taak","e":"vine; mouthful","c":"n. m."},{"ts":1527815326,"i":3039,"p":"تایید","f":"taayeed","g":"taayeed","e":"confirmation","c":"n. m."},{"ts":1527815357,"i":3157,"p":"تخم","f":"tUkhum","g":"tUkhum","e":"seed","c":"n. m."},{"ts":1527821586,"i":3247,"p":"ترحم","f":"tarahhÚm","g":"tarahhUm","e":"pity, sympathy","c":"n. m."},{"ts":1527811389,"i":3458,"p":"تصویر","f":"tasweer","g":"tasweer","e":"picture","c":"n. m.","app":"تصاویر","apf":"tasaaweer"},{"ts":1527814679,"i":3463,"p":"تضمین","f":"tazmeen","g":"tazmeen","e":"guarantee, insurance, security","c":"n. m."},{"ts":1527814258,"i":3550,"p":"تقریر","f":"taqreer","g":"takreer","e":"speech, lecture","c":"n. m."},{"ts":1527821670,"i":3558,"p":"تقلب","f":"taqalÚb","g":"takalUb","e":"cheating, deception, fraud, forgery","c":"n. m."},{"ts":1527811602,"i":3585,"p":"تکل","f":"takál","g":"takal","e":"attempt, aspiration, intention, effort","c":"n. m."},{"ts":1527813398,"i":3595,"p":"تګ","f":"tug, tag","g":"tug,tag","e":"movement, motion, going","c":"n. m."},{"ts":1527822126,"i":3635,"p":"تلین","f":"tleen","g":"tleen","e":"anniversary","c":"n. m."},{"ts":1527811308,"i":3639,"p":"تماس","f":"tamaas","g":"tamaas","e":"contact, touch","c":"n. m."},{"ts":1527817900,"i":3682,"p":"تن","f":"tan","g":"tan","e":"body, flesh","c":"n. m."},{"ts":1527821061,"i":3685,"p":"تناقض","f":"tanaaqÚz","g":"tanaakUz","e":"contrast, opposition, contradiction","c":"n. m."},{"ts":1527822387,"i":3686,"p":"تناو","f":"tanáaw","g":"tanaaw","e":"rope, cord; a measurement of ground or distances","c":"n. m."},{"ts":1527818995,"i":3697,"p":"تندر","f":"tandúr","g":"tandur","e":"lightning","c":"n. m."},{"ts":1527815362,"i":3772,"p":"توپ","f":"top","g":"top","e":"ball; (cannon) ball","c":"n. m."},{"ts":1527816820,"i":3852,"p":"توک","f":"took","g":"took","e":"spit","c":"n. m."},{"ts":1527816520,"i":4001,"p":"ټبر","f":"Tabar","g":"Tabar","e":"family, clan, tribe, people","c":"n. m."},{"ts":1527811348,"i":4002,"p":"ټپ","f":"Tap","g":"Tap","e":"wound","c":"n. m."},{"ts":1527819566,"i":4039,"p":"ټکر","f":"TUkúr","g":"TUkur","e":"piece, part; cloth, fabric","c":"n. m."},{"ts":1527812213,"i":4392,"p":"جمات","f":"jUmaat","g":"jUmaat","e":"mosque","c":"n. m."},{"ts":1527811705,"i":4500,"p":"جوړښت","f":"joRuxt","g":"joRuxt","e":"structure","c":"n. m."},{"ts":1527814058,"i":4614,"p":"ځواب","f":"dzawaab","g":"dzawaab","e":"answer, reply","c":"n. m."},{"ts":1527816887,"i":4615,"p":"ځواک","f":"dzwaak","g":"dzwaak","e":"life, existence, energy, force","c":"n. m."},{"ts":1527814649,"i":4927,"p":"چوک","f":"chok","g":"chok","e":"market square, crossroads, paved area in front of entrance","c":"n. m."},{"ts":1527815065,"i":5027,"p":"څټک","f":"tsaTak, tsTuk","g":"tsaTak,tsTuk","e":"hammer","c":"n. m."},{"ts":1527814589,"i":5116,"p":"څنګ","f":"tsang","g":"tsang","e":"side","c":"n. m."},{"ts":1527816228,"i":5212,"p":"حد","f":"had","g":"had","e":"boundary, limit, extent","c":"n. m.","app":"حدود","apf":"hUdood"},{"ts":1527813749,"i":5285,"p":"حکومت","f":"hUkoomat","g":"hUkoomat","e":"government, reign, rule","c":"n. m."},{"ts":1527814125,"i":5288,"p":"حل","f":"hal","g":"hal","e":"solution","c":"n. m."},{"ts":1527818703,"i":5432,"p":"خت","f":"khut","g":"khut","e":"shirt","c":"n. m."},{"ts":1527813804,"i":5694,"p":"خوب","f":"khob","g":"khob","e":"sleep, dream","c":"n. m."},{"ts":1527812815,"i":5815,"p":"خوندیتوب","f":"khwundeetob","g":"khwundeetob","e":"safety, security","c":"n. m."},{"ts":1527813763,"i":6352,"p":"دین","f":"deen","g":"deen","e":"religion, faith","c":"n. m."},{"ts":1527811517,"i":7758,"p":"سفر","f":"safar","g":"safar","e":"journey, travel","c":"n. m."},{"ts":1527815389,"i":8952,"p":"عمر","f":"Úmur","g":"Umur","e":"age, life","c":"n. m."},{"ts":1527816746,"i":9016,"p":"غاښ","f":"ghaax","g":"ghaax","e":"tooth","c":"n. m.","ec":"tooth","ep":"teeth"},{"ts":1527812631,"i":9284,"p":"غوږ","f":"ghwuG, ghwaG","g":"ghwug,ghwag","e":"ear","c":"n. m."},{"ts":1527812265,"i":9446,"p":"فرمان","f":"farmaan","g":"farmaan","e":"decree, order","c":"n. m."},{"ts":1527817205,"i":9519,"p":"فلم","f":"film","g":"film","e":"film, movie","c":"n. m."},{"ts":1527812727,"i":9854,"p":"کال","f":"kaal","g":"kaal","e":"year","c":"n. m."},{"ts":1527812817,"i":9920,"p":"کتاب","f":"kitáab","g":"kitaab","e":"book","c":"n. m."},{"ts":1527812611,"i":10646,"p":"ګام","f":"gaam","g":"gaam","e":"step, move","c":"n. m."},{"ts":1527812641,"i":10810,"p":"ګل","f":"gUl","g":"gUl","e":"rose, flower","c":"n. m."},{"ts":1527812650,"i":10896,"p":"ګواښ","f":"gwaax","g":"gwaax","e":"threat, danger, challeng","c":"n. m."},{"ts":1527813521,"i":11559,"p":"ماتم","f":"maatam","g":"maatam","e":"mourning, grief, grieving, deep sorrow","c":"n. m."},{"ts":1527812176,"i":11604,"p":"ماښام","f":"maaxaam","g":"maaxaam","e":"evening","c":"n. m."},{"ts":1527813601,"i":12081,"p":"مرګ","f":"marg","g":"marg","e":"death","c":"n. m."},{"ts":1527817691,"i":12210,"p":"مستقبل","f":"mUstaqbil","g":"mUstakbil","e":"future","c":"n. m."},{"ts":1527811866,"i":13437,"p":"نقصان","f":"nUqsaan","g":"nUksaan","e":"damage, defect, loss","c":"n. m."},{"ts":1527815122,"i":13591,"p":"نوم","f":"noom","g":"noom","e":"name","c":"n. m.","ppp":"نمونه","ppf":"nUmoona"},{"ts":1527812661,"i":13824,"p":"هلک","f":"halík, halúk","g":"halik,haluk","e":"boy, young lad","c":"n. m. anim."},{"ts":1566476070874,"i":14000,"p":"واټ","f":"waaT","g":"waaT","e":"street, road","c":"n. m."},{"ts":1527816036,"i":14034,"p":"واک","f":"waak","g":"waak","e":"authority, power","c":"n. m."},{"ts":1527815400,"i":14080,"p":"وخت","f":"wakht","g":"wakht","e":"time","c":"n. m."},{"ts":1527818582,"i":14085,"p":"ودانښت","f":"wadaanuxt","g":"wadaanuxt","e":"building, prosperity, habitable state","c":"n. m."},{"ts":1527811441,"i":14094,"p":"ور","f":"war","g":"war","e":"door, gate, entrance","c":"n. m.","infap":"وره","infaf":"wru","infbp":"ور","infbf":"wr"},{"ts":1527815406,"i":14262,"p":"وطن","f":"watán","g":"watan","e":"homeland, home country","c":"n. m."},{"ts":1573149648251,"i":14264,"p":"وطن وال","f":"watanwaal","g":"watanwaal","e":"fellow country-man","c":"n. m.","ec":"fellow country-man","ep":"fellow country-men"},{"ts":1586428847646,"i":14267,"p":"وطنوال","f":"watanwáal","g":"watanwaal","e":"national (person), a citizen or person of that land","c":"n. m."},{"ts":1527822208,"i":14268,"p":"وطواط","f":"watwáat","g":"watwaat","e":"bat, coward, pipsqueak, hesitant person","c":"n. m."},{"ts":1527819571,"i":14339,"p":"وهم","f":"wáhum, wahm","g":"wahum,wahm","e":"apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head","c":"n. m.","app":"اهوام","apf":"ahwáam"},{"ts":1527816332,"i":14356,"p":"ویاړ","f":"wyaaR","g":"wyaaR","e":"pride, glory","c":"n. m."},{"ts":1527815408,"i":14368,"p":"ویده","f":"weedú","g":"weedu","e":"asleep, sleeping","c":"adj."},{"ts":1527812796,"i":8577,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."},{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},{"ts":1527821649,"i":183,"p":"اثرناک","f":"asarnáak","g":"asarnaak","e":"impressive, effective, influencing","c":"adj.","l":1527815870},{"ts":1527818704,"i":352,"p":"ارت","f":"arát","g":"arat","e":"wide, spacious, extensive","c":"adj."},{"ts":1578340121962,"i":447,"p":"ازاد","f":"azáad","g":"azaad","e":"free, released","c":"adj."},{"ts":1527819418,"i":5424,"p":"خپلواک","f":"khpulwaak","g":"khpulwaak","e":"independent, free, autonomous","c":"adj."},{"ts":1527817146,"i":534,"p":"استوګن","f":"astogan","g":"astogan","e":"resident; established, installed, settled","c":"n. m. unisex / adj."},{"ts":1527813713,"i":855,"p":"امیدوار","f":"Umeedwaar","g":"Umeedwaar","e":"hopeful, pregnant","c":"adj."},{"ts":1527819451,"i":968,"p":"انګرېز","f":"angréz","g":"angrez","e":"Englishman, English (adjective)","c":"n. m. anim. unisex / adj."},{"ts":1527820346,"i":987,"p":"انلاین","f":"anlaayn","g":"anlaayn","e":"on-line","c":"adj."},{"ts":1527813667,"i":999,"p":"اهم","f":"ahám","g":"aham","e":"important","c":"adj."},{"ts":1598724912198,"i":1025,"p":"اوچ","f":"ooch","g":"ooch","e":"dry","c":"adj."},{"ts":1527815138,"i":1045,"p":"اورپک","f":"orpak","g":"orpak","e":"insurgent, wicked, terrorist","c":"n. m. anim. / adj."},{"ts":1586452587974,"i":1069,"p":"اوزګار","f":"oozgáar","g":"oozgaar","e":"free, unoccupied, available, at leisure","c":"adj."},{"ts":1527816489,"i":1174,"p":"ایماندار","f":"eemaandaar","g":"eemaandaar","e":"faithful, believer, devoted, correct, true","c":"adj. / n. m. anim. unisex"},{"ts":1527820433,"i":1199,"p":"باتور","f":"baatóor","g":"baatoor","e":"courageous, brave, valiant","c":"adj."},{"ts":1527813425,"i":1371,"p":"بخیل","f":"bakheel","g":"bakheel","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812511,"i":1372,"p":"بد","f":"bud, bad","g":"bud,bad","e":"bad","c":"adj."},{"ts":1527812518,"i":1443,"p":"برابر","f":"buraabur","g":"buraabur","e":"equal, even, all good","c":"adj."},{"ts":1527811861,"i":1459,"p":"بربنډ","f":"barbunD","g":"barbunD","e":"naked; bare","c":"adj."},{"ts":1527811511,"i":1618,"p":"بشپړ","f":"bushpuR","g":"bushpuR","e":"full, complete, total, exhaustive, fulfilled, finished, utmost, superior, mature","c":"adj."},{"ts":1527812515,"i":1671,"p":"بل","f":"bul","g":"bul","e":"other, next","c":"adj."},{"ts":1527815725,"i":1679,"p":"بلد","f":"balad","g":"balad","e":"knowledgeable, informed, acquainted, accustomed, used to, familiar with","c":"adj."},{"ts":1577301753727,"i":1715,"p":"بند","f":"band","g":"band","e":"closed, blocked, stopped","c":"adj."},{"ts":1527812490,"i":1935,"p":"بې کار","f":"be kaar","g":"bekaar","e":"useless","c":"adj."},{"ts":1527812031,"i":2054,"p":"بېل","f":"bel","g":"bel","e":"separate, different, various","c":"adj."},{"ts":1527815144,"i":2148,"p":"پاک","f":"paak","g":"paak","e":"clean, pure","c":"adj."},{"ts":1527815201,"i":2226,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},{"ts":1527815179,"i":2539,"p":"پلن","f":"plun","g":"plun","e":"wide, broad, flat, dull, vapid","c":"adj."},{"ts":1527819059,"i":2605,"p":"پنډ","f":"punD","g":"punD","e":"thick, fat","c":"adj."},{"ts":1611767359178,"i":3264,"p":"ترسناک","f":"tarsnáak","g":"tarsnaak","e":"compassionate","c":"adj."},{"ts":1527813270,"i":3330,"p":"تروش","f":"troosh","g":"troosh","e":"sour; sarcasm","c":"adj. / n. m."},{"ts":1527813817,"i":3723,"p":"تنګ","f":"tang","g":"tang","e":"narrow, tight, cramped, constrained; troubled, bothered, annoyed","c":"adj."},{"ts":1527816354,"i":3917,"p":"تیار","f":"tayaar","g":"tayaar","e":"ready, prepared","c":"adj."},{"ts":1527817056,"i":3947,"p":"تېز","f":"tez","g":"tez","e":"sharp, pointed, quick, fast","c":"adj."},{"ts":1527814076,"i":4126,"p":"ټولنیز","f":"Toluneez","g":"Toluneez","e":"social","c":"adj."},{"ts":1527819864,"i":4148,"p":"ټیټ","f":"TeeT","g":"TeeT","e":"short, low, inferior","c":"adj."},{"ts":1527811894,"i":4175,"p":"ټینګ","f":"Teeng","g":"Teeng","e":"firm, thick, strong, tough, rigid","c":"adj."},{"ts":1527812943,"i":4181,"p":"ثابت","f":"saabit","g":"saabit","e":"constant, firm, fixed, stable, established, proven","c":"adj."},{"ts":1527813085,"i":4194,"p":"ثقیل","f":"saqeel","g":"sakeel","e":"heavy, difficult, hard to digest, indigestible, lazy, burdensome","c":"adj."},{"ts":1527820479,"i":4253,"p":"جاهل","f":"jaahíl","g":"jaahil","e":"ignorant, stupid","c":"adj."},{"ts":1588160800930,"i":4291,"p":"جراح","f":"jarráah","g":"jarraah","e":"surgeon","c":"n. m. anim. unisex"},{"ts":1527812707,"i":4355,"p":"جګ","f":"jig, jug","g":"jig,jug","e":"high, tall","c":"adj."},{"ts":1527816944,"i":4481,"p":"جوت","f":"jawat","g":"jawat","e":"clear, evident, explained, apparent, established","c":"adj."},{"ts":1527822996,"i":4491,"p":"جوخت","f":"jokht","g":"jokht","e":"alongside, adjoining, next to, very close","c":"adj."},{"ts":1527812711,"i":4497,"p":"جوړ","f":"joR","g":"joR","e":"well, healthy, whole, made","c":"adj."},{"ts":1527816323,"i":4580,"p":"ځلاند","f":"dzalaand","g":"dzalaand","e":"shining, sparkling, outstanding, brilliant","c":"adj."},{"ts":1527812291,"i":4617,"p":"ځوان","f":"dzwaan","g":"dzwaan","e":"young, youth, youthful","c":"n. m. anim. unisex / adj."},{"ts":1527820112,"i":4626,"p":"ځوړند","f":"dzwáRund","g":"dzwaRund","e":"hanging","c":"adj."},{"ts":1527819672,"i":4685,"p":"چالاک","f":"chaaláak","g":"chaalaak","e":"crafty, sly, tricky; quick, fast, nimble","c":"adj."},{"ts":1527811230,"i":4730,"p":"چټک","f":"chaTak","g":"chaTak","e":"quick, fast","c":"adj."},{"ts":1527812524,"i":4829,"p":"چلان","f":"chalaan","g":"chalaan","e":"started, in motion","c":"adj."},{"ts":1527815370,"i":5051,"p":"څرګند","f":"tsărgund","g":"tsargund","e":"clear, obvious, apparent, disclosed","c":"adj."},{"ts":1576366107077,"i":5078,"p":"څک","f":"tsak","g":"tsak","e":"straight, upright, pricked up, erect, alert","c":"adj."},{"ts":1527812113,"i":5185,"p":"حاضر","f":"haazir, haazur","g":"haazir,haazur","e":"present, on hand, ready, available, appearing; ready, prepared","c":"adj.","app":"حاضرین","apf":"haazireen"},{"ts":1527820699,"i":5197,"p":"حامل","f":"haamíl","g":"haamil","e":"carrying, transporting, conveying, pregnant","c":"adj."},{"ts":1527819824,"i":5233,"p":"حریص","f":"harées","g":"harees","e":"greedy, mean","c":"adj."},{"ts":1527812669,"i":5244,"p":"حساس","f":"hasaas","g":"hasaas","e":"sensitive, delicate","c":"adj."},{"ts":1527812057,"i":5377,"p":"خام","f":"khaam","g":"khaam","e":"raw, unripe, immature","c":"adj."},{"ts":1527811523,"i":5395,"p":"خاین","f":"khaayin","g":"khaayin","e":"traitor, treacherous","c":"n. m. anim. unisex / adj."},{"ts":1527814219,"i":5420,"p":"خپل","f":"khpul","g":"khpul","e":"relative; one's own, farmiliar","c":"adj. / n. m."},{"ts":1527812795,"i":5426,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},{"ts":1527812808,"i":5667,"p":"خوار","f":"khwaar","g":"khwaar","e":"poor, pitiful, miserable, thin","c":"adj."},{"ts":1527814880,"i":6231,"p":"دنګ","f":"dung","g":"dung","e":"tall, strapping","c":"adj."},{"ts":1527812537,"i":6365,"p":"ډاډمن","f":"DaaDmun","g":"DaaDmun","e":"assured, secure, confident","c":"adj."},{"ts":1527812583,"i":6429,"p":"ډک","f":"Duk","g":"Duk","e":"full","c":"adj."},{"ts":1527822674,"i":6471,"p":"ډنګر","f":"Dungár, Dangár","g":"Dungar,Dangar","e":"singular and plural cattle; bull, ox; thin, skinny, gaunt, emaciated","c":"adj."},{"ts":1527817256,"i":6477,"p":"ډوب","f":"Doob","g":"Doob","e":"drowned, sunk, submerged","c":"adj."},{"ts":1527814277,"i":6906,"p":"روغ","f":"rogh","g":"rogh","e":"healthy, well, intact, good, built-up","c":"adj."},{"ts":1609780006604,"i":7034,"p":"زرخېز","f":"zarkhéz","g":"zarkhez","e":"rich, fruitful","c":"adj."},{"ts":1527817116,"i":7041,"p":"زرغون","f":"zarghóon","g":"zarghoon","e":"green, flourishing, flowering, growing; immature, unripe","c":"adj."},{"ts":1527814026,"i":7052,"p":"زرین","f":"zareen","g":"zareen","e":"golden","c":"adj."},{"ts":1567594312839,"i":7074,"p":"زړه ور","f":"zuRawár","g":"zuRawar","e":"brave, courageous","c":"adj."},{"ts":1527815848,"i":7296,"p":"ژمن","f":"jzman","g":"jzman","e":"dedicated, committed","c":"adj."},{"ts":1527813498,"i":7457,"p":"سپک","f":"spuk","g":"spuk","e":"light; dishonorable, not respectable","c":"adj."},{"ts":1578329248464,"i":7488,"p":"سپین","f":"speen","g":"speen","e":"white (fig. clear, honest, beautiful)","c":"adj."},{"ts":1527811860,"i":7510,"p":"ستر","f":"stur","g":"stur","e":"big, large, great","c":"adj."},{"ts":1527820178,"i":7557,"p":"ستونزمن","f":"stoonzmán","g":"stoonzman","e":"difficult, hard, problematic, fraught with difficulties, tough, awkward","c":"adj."},{"ts":1527815246,"i":7589,"p":"سخت","f":"sakht","g":"sakht","e":"hard, difficult","c":"adj."},{"ts":1527817262,"i":8395,"p":"شنډ","f":"shanD","g":"shanD","e":"barren, sterile, unfruitful, neutralized, diffused","c":"adj."},{"ts":1527813426,"i":8459,"p":"شوم","f":"shoom","g":"shoom","e":"stingy, miserly, closefisted","c":"adj."},{"ts":1527812625,"i":9045,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},{"ts":1527811846,"i":9868,"p":"کامیاب","f":"kaamyaab","g":"kaamyaab","e":"successful","c":"adj."},{"ts":1527823678,"i":9890,"p":"کاهل","f":"kaahíl","g":"kaahil","e":"lazy, sluggish, stagnant","c":"adj."},{"ts":1527814896,"i":9902,"p":"کبرجن","f":"kaburjun, kibrjun","g":"kaburjun,kibrjun","e":"proud, arrogant","c":"adj."},{"ts":1527813117,"i":10227,"p":"کلک","f":"klak, kluk","g":"klak,kluk","e":"firm, solid, staunch, steadfast, serious, hard, unwavering","c":"adj."},{"ts":1578769492475,"i":10256,"p":"کم","f":"kam","g":"kam","e":"few, little","c":"adj."},{"ts":1578769409512,"i":10288,"p":"کمزور","f":"kamzór","g":"kamzor","e":"weak","c":"adj."},{"ts":1527812639,"i":10711,"p":"ګران","f":"graan","g":"graan","e":"dear, valuable, expensive, difficult","c":"adj."},{"ts":1527816786,"i":10723,"p":"ګرد","f":"gurd","g":"gurd","e":"all, entire, whole, everything; round circular","c":"adj."},{"ts":1527814811,"i":10750,"p":"ګرم","f":"garm, garum","g":"garm,garum","e":"warm, hot","c":"adj."},{"ts":1527817662,"i":10751,"p":"ګرم","f":"gram","g":"gram","e":"guilty, blamed, culprit, culpable","c":"adj."},{"ts":1527812308,"i":10882,"p":"ګڼ","f":"gaN","g":"gaN","e":"thick, dense, heavy, deep, lots","c":"adj."},{"ts":1527813848,"i":11541,"p":"لېوال","f":"lewaal","g":"lewaal","e":"desiring, eager, thirsting, lover","c":"adj."},{"ts":1527816011,"i":11557,"p":"مات","f":"maat","g":"maat","e":"broken, split, defeated","c":"adj."},{"ts":1527812881,"i":11596,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527817007,"i":11634,"p":"مالوم","f":"maaloom","g":"maaloom","e":"known","c":"adj."},{"ts":1527814321,"i":11778,"p":"مثبت","f":"mUsbat","g":"mUsbat","e":"positive; proven","c":"adj."},{"ts":1527811264,"i":11887,"p":"محکوم","f":"mahkoom","g":"mahkoom","e":"condemned, sentenced, criminal; subjugated","c":"adj."},{"ts":1527814802,"i":12039,"p":"مردار","f":"mUrdáar","g":"mUrdaar","e":"foul, unclean, dirty","c":"adj."},{"ts":1527821812,"i":12460,"p":"مغرور","f":"maghróor","g":"maghroor","e":"haughty, arrogant, conceited","c":"adj."},{"ts":1527820222,"i":12559,"p":"ملاست","f":"mlaast","g":"mlaast","e":"lying down, lying","c":"adj."},{"ts":1527814344,"i":12784,"p":"مهم","f":"mUhím","g":"mUhim","e":"important","c":"adj."},{"ts":1527816033,"i":13070,"p":"نادر","f":"naadir","g":"naadir","e":"uncommon","c":"adj."},{"ts":1527815106,"i":13108,"p":"ناست","f":"naast","g":"naast","e":"sitting, seated","c":"adj."},{"ts":1527815127,"i":13258,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},{"ts":1527821673,"i":13469,"p":"نمجن","f":"namjún","g":"namjun","e":"moist, damp, wet","c":"adj."},{"ts":1527815130,"i":14067,"p":"وچ","f":"wuch, wUch","g":"wuch,wUch","e":"dry, land, ground","c":"adj. / n. m."},{"ts":1527817486,"i":14103,"p":"وران","f":"wraan","g":"wraan","e":"ruined, destroyed; destructive, bad, naughty","c":"adj."},{"ts":1527814373,"i":14139,"p":"ورک","f":"wruk","g":"wruk","e":"lost","c":"adj."},{"ts":1527822838,"i":14160,"p":"وروست","f":"wrost","g":"wrost","e":"decayed, spoiled, rotten","c":"adj."},{"ts":1609949334478,"i":14173,"p":"وریت","f":"wreet","g":"wreet","e":"roasted, grilled, barbequed, roast, burnt","c":"adj."},{"ts":1527811544,"i":14297,"p":"ولاړ","f":"waláaR, wuláaR","g":"walaaR,wulaaR","e":"standing","c":"adj."},{"ts":1527815498,"i":14416,"p":"یاد","f":"yaad","g":"yaad","e":"aforementioned","c":"adj."},{"ts":1527815434,"i":14437,"p":"یخ","f":"yakh, yukh","g":"yakh,yukh","e":"cold","c":"n. m. / adj."},{"ts":1568926976497,"i":731,"p":"اکسرې","f":"iksre","g":"iksre","e":"x-ray","c":"n. f."},{"ts":1602179757779,"i":766,"p":"الف بې","f":"alif be","g":"alifbe","e":"alphabet","c":"n. f."},{"ts":1527813840,"i":1142,"p":"ایرې","f":"eere","g":"eere","e":"ashes","c":"n. f. pl.","l":1527813839},{"ts":1527816692,"i":1180,"p":"اینکې","f":"aynake","g":"aynake","e":"glasses, spectacles","c":"n. f. pl."},{"ts":1527819286,"i":2144,"p":"پاشتقې","f":"paashtáqe","g":"paashtake","e":"stairs, steps, staircase","c":"n. f. pl."},{"ts":1527816299,"i":2876,"p":"پیسې","f":"peyse","g":"peyse","e":"money (plural of پېسې)","c":"n. f. pl."},{"ts":1527814529,"i":3331,"p":"تروې","f":"turwe","g":"turwe","e":"buttermilk","c":"n. f. pl."},{"ts":1527816369,"i":3803,"p":"تورسرې","f":"torsăre","g":"torsare","e":"widow, woman","c":"n. f."},{"ts":1577408787088,"i":7446,"p":"سپرې","f":"spre","g":"spre","e":"sprey (as in a medicinal spray)","c":"n. f."},{"ts":1527822255,"i":7482,"p":"سپېدې","f":"spedé","g":"spede","e":"break of dawn, first light of day, sunrise","c":"n. f. pl."},{"ts":1626765107329,"i":8264,"p":"شرې","f":"sharé","g":"share","e":"chickenpox, chicken pox","c":"n. f. pl."},{"ts":1527815008,"i":8432,"p":"شودې","f":"shoodé","g":"shoode","e":"milk","c":"n. f. pl."},{"ts":1527822131,"i":8457,"p":"شولې","f":"shole","g":"shole","e":"raw rice, unprocessed rice","c":"n. f. pl."},{"ts":1527815009,"i":8483,"p":"شیدې","f":"sheede","g":"sheede","e":"milk (plural of شيده)","c":"n. f. pl."},{"ts":1527823571,"i":8601,"p":"ښیالمې","f":"xyaalmé","g":"xyaalme","e":"spit, saliva","c":"n. f. pl."},{"ts":1527816530,"i":8614,"p":"ښینې","f":"xeene","g":"xeene","e":"sister in law","c":"n. f."},{"ts":1527823567,"i":11053,"p":"لاړې","f":"laaRe","g":"laaRe","e":"spit, saliva, slobber, slime","c":"n. f. pl."},{"ts":1527822275,"i":11446,"p":"لوښې","f":"looxe","g":"looxe","e":"dishes, pots, pans","c":"n. f. pl."},{"ts":1617443138210,"i":11840,"p":"مچیازې","f":"michyaaze, muchyaaze","g":"michyaaze,muchyaaze","e":"urine, pee, piss","c":"n. f. pl."},{"ts":1527814420,"i":12220,"p":"مستې","f":"maste","g":"maste","e":"yogurt","c":"n. f. pl."},{"ts":1577999538077,"i":13776,"p":"هرې","f":"hire","g":"hire","e":"a sound/cry used to drive sheep on","c":"n. f."},{"ts":1586551382412,"i":14180,"p":"وریژې","f":"wreejze","g":"wreejze","e":"rice","c":"n. f. pl."},{"ts":1527820261,"i":14512,"p":"یوې","f":"yuwe","g":"yuwe","e":"plow, plowing, plough, ploughing","c":"n. f."},{"ts":1527820771,"i":5,"p":"آباداني","f":"aabaadaanee","g":"aabaadaanee","e":"population, number of settlers; prosperity, well-being; organization of public services and amenities; construction","c":"n. f."},{"ts":1527813939,"i":54,"p":"آزادي","f":"aazaadee","g":"aazaadee","e":"freedom, independence","c":"n. f."},{"ts":1527818402,"i":159,"p":"اتلولي","f":"atalwalée","g":"atalwalee","e":"championship; courage","c":"n. f."},{"ts":1527814060,"i":476,"p":"اساني","f":"asaanee","g":"asaanee","e":"ease","c":"n. f."},{"ts":1527821293,"i":799,"p":"امادګي","f":"amaadagee","g":"amaadagee","e":"preparation, readiness, planning","c":"n. f."},{"ts":1527819502,"i":1213,"p":"باچهي","f":"baachahee","g":"baachahee","e":"kingship, kingdom, rule, throne, authority","c":"n. f."},{"ts":1527820035,"i":1218,"p":"باداري","f":"baadaaree","g":"baadaaree","e":"dominion, holding sway over someone","c":"n. f."},{"ts":1527817732,"i":1384,"p":"بدبختي","f":"badbakhtee","g":"badbakhtee","e":"misfortune, difficulty","c":"n. f."},{"ts":1588786872582,"i":1417,"p":"بدنامي","f":"badnaamee","g":"badnaamee","e":"shame, disrepute, dishonour","c":"n. f."},{"ts":1573682378816,"i":2068,"p":"بیماري","f":"beemaaree","g":"beemaaree","e":"sickness, illness","c":"n. f."},{"ts":1527816817,"i":2156,"p":"پاکوالي","f":"paakwaalee","g":"paakwaalee","e":"cleanliness, hygiene","c":"n. f."},{"ts":1586204619186,"i":2359,"p":"پرهېزګاري","f":"parhezgaaree","g":"parhezgaaree","e":"righteousness, abstinence, self-control","c":"n. f."},{"ts":1584444376984,"i":2516,"p":"پلارواکي","f":"plaarwaakee","g":"plaarwaakee","e":"patriarchy","c":"n. f."},{"ts":1527818744,"i":3281,"p":"ترکاڼي","f":"tarkaaNee","g":"tarkaaNee","e":"carpentry","c":"n. f."},{"ts":1527815337,"i":3392,"p":"تسلي","f":"tasallee","g":"tasallee","e":"consolation, comfort, satisfaction","c":"n. f."},{"ts":1527819521,"i":5774,"p":"خوشالي","f":"khoshaalee","g":"khoshaalee","e":"happiness (خوشحالي)","c":"n. f."},{"ts":1527818037,"i":5779,"p":"خوشبختي","f":"khooshbakhtee","g":"khooshbakhtee","e":"good fortune, good luck, hapiness","c":"n. f."},{"ts":1527815914,"i":5782,"p":"خوشبیني","f":"khooshbeenee","g":"khooshbeenee","e":"optimism","c":"n. f."},{"ts":1527811877,"i":6294,"p":"دوستي","f":"dostee","g":"dostee","e":"friendship","c":"n. f."},{"ts":1527818019,"i":6299,"p":"دوکانداري","f":"dookaandaaree","g":"dookaandaaree","e":"shopkeeping, retail store selling","c":"n. f."},{"ts":1527822080,"i":6351,"p":"دېموکراسي","f":"demokraasee","g":"demokraasee","e":"democracy","c":"n. f."},{"ts":1527813462,"i":10614,"p":"کیلي","f":"keelee","g":"keelee","e":"key","c":"n. f."},{"ts":1527814492,"i":10654,"p":"ګاوداري","f":"gaawdaaree","g":"gaawdaaree","e":"cattle farming","c":"n. f."},{"ts":1610013679820,"i":14157,"p":"ورورولي","f":"wrorwalée","g":"wrorwalee","e":"brotherhood","c":"n. f."},{"ts":1527821971,"i":1710,"p":"بن","f":"bun","g":"bun","e":"second wife of own husband","c":"n. f."},{"ts":1527816397,"i":3320,"p":"ترور","f":"tror","g":"tror","e":"aunt","c":"n. f. anim.","ppp":"تریندې","ppf":"treynde"},{"ts":1578704593901,"i":3693,"p":"تندار","f":"tandaar","g":"tandaar","e":"aunt (paternal uncle's wife)","c":"n. f."},{"ts":1527812785,"i":5721,"p":"خور","f":"khor","g":"khor","e":"sister","c":"n. f. irreg. anim.","ppp":"خویندې","ppf":"khweynde"},{"ts":1527812861,"i":11411,"p":"لور","f":"loor","g":"loor","e":"daughter","c":"n. f. anim.","ppp":"لوڼې","ppf":"looNe"},{"ts":1527812928,"i":12836,"p":"مور","f":"mor","g":"mor","e":"mother, mom","c":"n. f. anim.","ppp":"میندې, میېندې","ppf":"méynde, myénde"},{"ts":1527812912,"i":12951,"p":"مېرمن","f":"mermán","g":"merman","e":"lady, woman, wife","c":"n. f."},{"ts":1527816476,"i":12957,"p":"مېرېنۍ خور","f":"merenuy khor","g":"merenuykhor","e":"stepsister, half sister","c":"n. f."},{"ts":1527823521,"i":13296,"p":"نږور","f":"nGor","g":"ngor","e":"daughter-in-law","c":"n. f. anim.","ppp":"نږیندې","ppf":"nGeynde"},{"ts":1527816350,"i":14147,"p":"ورندار","f":"wrundaar","g":"wrundaar","e":"brothers wife, sister-in-law","c":"n. f."},{"ts":1527816485,"i":14492,"p":"یور","f":"yor","g":"yor","e":"wife of husbands brother, wife of brother-in-law","c":"n. f. anim.","ppp":"یوڼې","ppf":"yóoNe"},{"ts":1527821817,"i":718,"p":"اکا","f":"akáa","g":"akaa","e":"uncle (paternal)","c":"n. m."},{"ts":1527816411,"i":1190,"p":"بابا","f":"baabaa","g":"baabaa","e":"father, grandfather (vocative or in child's speech)","c":"n. m."},{"ts":1527819439,"i":1212,"p":"باچا","f":"baacháa","g":"baachaa","e":"king, ruler, president, padishah","c":"n. m."},{"ts":1527823298,"i":1260,"p":"باښه","f":"baaxá","g":"baaxa","e":"sparrow-hawk, eagle","c":"n. f."},{"ts":1527817718,"i":1723,"p":"بنده","f":"bandá","g":"banda","e":"slave, servant, a human, person (as in a slave of God)","c":"n. m."},{"ts":1527815031,"i":1728,"p":"بندي","f":"bandee","g":"bandee","e":"prisoner, captive","c":"n. m."},{"ts":1527815142,"i":2105,"p":"پاچا","f":"paachaa","g":"paachaa","e":"king","c":"n. m."},{"ts":1527817280,"i":4284,"p":"جذامي","f":"jUzaamee","g":"jUzaamee","e":"leper","c":"n. m."},{"ts":1527814236,"i":4772,"p":"چرسي","f":"charsee","g":"charsee","e":"pot smoker, pothead, someone addicted to marijuana, pot, hash","c":"n. m."},{"ts":1578618561154,"i":5177,"p":"حاجي","f":"haajee","g":"haajee","e":"Haji, someone who has gone on the Hajj","c":"n. m."},{"ts":1527821193,"i":5199,"p":"حامي","f":"haamee","g":"haamee","e":"supporter, protector, defender, patron, saviour","c":"n. m."},{"ts":1591711877815,"i":6264,"p":"دوبي","f":"dobée","g":"dobee","e":"washerman, someone who does the laundry","c":"n. m."},{"ts":1527820139,"i":6664,"p":"ربابي","f":"rabaabee","g":"rabaabee","e":"rabab player, rubab player","c":"n. m."},{"ts":1619278755267,"i":6667,"p":"ربړنه","f":"rabaRúna","g":"rabaRuna","e":"troubling, pestering","c":"n. f."},{"ts":1577066022588,"i":7377,"p":"ساقي","f":"saaqée","g":"saakee","e":"cupbearer, butler, bartender, alchohol maker","c":"n. m."},{"ts":1527822817,"i":7434,"p":"سپاهي","f":"sipaahee","g":"sipaahee","e":"soldier, warrior, guard","c":"n. m."},{"ts":1527812975,"i":7803,"p":"سلماني","f":"salmaanee","g":"salmaanee","e":"barber, hairdresser","c":"n. m."},{"ts":1527819414,"i":8152,"p":"شاهزاده","f":"shaahzaadá","g":"shaahzaada","e":"prince","c":"n. m."},{"ts":1527818084,"i":8224,"p":"شرابي","f":"sharaabee","g":"sharaabee","e":"drinker, drunkard, alcoholic, wine-bibber","c":"n. m."},{"ts":1527821950,"i":8409,"p":"شهزاده","f":"shahzaadá","g":"shahzaada","e":"prince","c":"n. m."},{"ts":1588158828142,"i":8550,"p":"ښکاري","f":"xkaaree","g":"xkaaree","e":"hunter","c":"n. m."},{"ts":1527815206,"i":9578,"p":"قاضي","f":"qaazee","g":"kaazee","e":"judge, religious authority/judge","c":"n. m."},{"ts":1527818500,"i":9635,"p":"قراردادي","f":"qaraardaadee","g":"karaardaadee","e":"contractor, supplier","c":"n. m."},{"ts":1527816446,"i":9849,"p":"کاکا","f":"kaakaa","g":"kaakaa","e":"paternal uncle, term of address for elderly man","c":"n. m."},{"ts":1595232159907,"i":10677,"p":"ګدا","f":"gadáa","g":"gadaa","e":"begger, panhandler","c":"n. m."},{"ts":1527816512,"i":11096,"p":"لالا","f":"laalaa","g":"laalaa","e":"elder brother, general form of familiar and respectful address","c":"n. m."},{"ts":1527812878,"i":11641,"p":"ماما","f":"maamaa","g":"maamaa","e":"uncle (maternal), respectful form of address","c":"n. m."},{"ts":1610556640847,"i":12043,"p":"مردمشماري","f":"mărdamshUmaaree","g":"mardamshUmaaree","e":"census","c":"n. f."},{"ts":1527815484,"i":12550,"p":"ملا","f":"mUllaa","g":"mUllaa","e":"mullah, priest","c":"n. m."},{"ts":1527821714,"i":12797,"p":"موازي","f":"mUwaazée","g":"mUwaazee","e":"parallel, matching, appropriate, identical","c":"adj."},{"ts":1527816514,"i":12827,"p":"موچي","f":"mochee","g":"mochee","e":"shoemaker, shoe repairman, cobbler","c":"n. m."},{"ts":1527823093,"i":13213,"p":"نبي","f":"nabee","g":"nabee","e":"prophet","c":"n. m. anim.","app":"انبیا","apf":"ambiyáa"},{"ts":1579041957559,"i":13250,"p":"ندا","f":"nadáa","g":"nadaa","e":"call, appeal, shout, summoning","c":"n. f."},{"ts":1527816253,"i":13544,"p":"نواسه","f":"nawaasa","g":"nawaasa","e":"grandson","c":"n. m."},{"ts":1527819971,"i":14047,"p":"والي","f":"waalée","g":"waalee","e":"governor","c":"n. m."},{"ts":1527818948,"i":173,"p":"اټسکی","f":"aTúskey","g":"aTuskey","e":"sneezing, sneeze","c":"n. m."},{"ts":1527816481,"i":295,"p":"اخښی","f":"akhxey","g":"akhxey","e":"brother in law; sister's husband","c":"n. m."},{"ts":1573681135691,"i":349,"p":"اربکی","f":"arbakéy","g":"arbakey","e":"tribal constable, tribal offical with police powers","c":"n. m."},{"ts":1573659054031,"i":365,"p":"ارتوالی","f":"artwaaley, aratwaaley","g":"artwaaley,aratwaaley","e":"width, spaciousness","c":"n. m."},{"ts":1527811890,"i":455,"p":"ازغی","f":"azghey","g":"azghey","e":"thorn, prickle","c":"n. m."},{"ts":1527817036,"i":486,"p":"استازی","f":"astaazey","g":"astaazey","e":"representative, envoy, ambassador, commissioner","c":"n. m."},{"ts":1527816982,"i":535,"p":"استوګنځی","f":"astogundzey","g":"astogundzey","e":"residence, dwelling; hostel, dormitory","c":"n. m."},{"ts":1527818489,"i":562,"p":"اسوېلی","f":"asweley","g":"asweley","e":"yawn, sigh, deep breath, shivering","c":"n. m."},{"ts":1527822497,"i":990,"p":"اننګی","f":"anangey","g":"anangey","e":"cheek","c":"n. m."},{"ts":1527821967,"i":1010,"p":"اوبسپی","f":"obspéy","g":"obspey","e":"beaver, seal","c":"n. m."},{"ts":1527822190,"i":1035,"p":"اور غالی","f":"orgháaley","g":"orghaaley","e":"stove, oven, furnace, hearth, floor of a fireplace","c":"n. m."},{"ts":1527821545,"i":1049,"p":"اورشیندی","f":"orsheendéy","g":"orsheendey","e":"volcano","c":"n. m."},{"ts":1527819192,"i":1051,"p":"اورګاډی","f":"orgáaDey","g":"orgaaDey","e":"train","c":"n. m."},{"ts":1527815585,"i":1065,"p":"اوړی","f":"oRey","g":"oRey","e":"summer","c":"n. m."},{"ts":1527815132,"i":1089,"p":"اوښ غویی","f":"oox ghwayey","g":"ooxghwayey","e":"giraffe","c":"n. m."},{"ts":1527816488,"i":1093,"p":"اوښی","f":"awxey","g":"awxey","e":"brother in law, wife's brother","c":"n. m."},{"ts":1623044357441,"i":1330,"p":"ببوتنکی","f":"bubootúnkey","g":"bubootunkey","e":"tuft, clump, shock of hair","c":"n. m."},{"ts":1527821668,"i":1356,"p":"بڅری","f":"batsúrey","g":"batsurey","e":"spark, speck, flicker","c":"n. m."},{"ts":1527821239,"i":1439,"p":"بډوری","f":"baDóorey","g":"baDoorey","e":"kidney","c":"n. m."},{"ts":1527821099,"i":1503,"p":"برغوږی","f":"barghwáGey","g":"barghwagey","e":"earring","c":"n. m."},{"ts":1527822629,"i":1504,"p":"برغولی","f":"barghóley","g":"bargholey","e":"lid, cover","c":"n. m."},{"ts":1527811903,"i":1546,"p":"بری","f":"barey","g":"barey","e":"success, victory","c":"n. m."},{"ts":1594904072731,"i":1743,"p":"بنګړی","f":"bangRéy","g":"bangRey","e":"bracelet","c":"n. m."},{"ts":1527817159,"i":1794,"p":"بوټی","f":"booTey","g":"booTey","e":"plant","c":"n. m."},{"ts":1527815055,"i":1823,"p":"بوږنوړی","f":"boGnwaRey","g":"bognwaRey","e":"terrible","c":"adj."},{"ts":1610618917483,"i":2166,"p":"پالنځی","f":"paalundzéy","g":"paalundzey","e":"orphanage, nursery","c":"n. m."},{"ts":1527814666,"i":2192,"p":"پای ټکی","f":"paayTakey","g":"paayTakey","e":"final point, end point","c":"n. m."},{"ts":1527816195,"i":2235,"p":"پټکی","f":"paTkey","g":"paTkey","e":"small turban","c":"n. m."},{"ts":1527811611,"i":2241,"p":"پټی","f":"paTey","g":"paTey","e":"field, place where crops are sown","c":"n. m."},{"ts":1588762458105,"i":2262,"p":"پخلنځی","f":"pukhlandzéy","g":"pukhlandzey","e":"kitchen","c":"n. m."},{"ts":1527816059,"i":2263,"p":"پخلی","f":"pakhley","g":"pakhley","e":"cooking, preparation of food; wisdom, maturity","c":"n. m."},{"ts":1527821241,"i":2331,"p":"پرګی","f":"purgéy, pirgéy","g":"purgey,pirgey","e":"acorn","c":"n. m."},{"ts":1527813812,"i":2425,"p":"پړونی","f":"paRóoney","g":"paRooney","e":"veil, covering for women, cover","c":"n. m."},{"ts":1527822385,"i":2426,"p":"پړی","f":"púRey","g":"puRey","e":"rope, cable, cord","c":"n. m."},{"ts":1527812980,"i":2440,"p":"پس پسی","f":"puspusey","g":"puspusey","e":"whispering, murmuring, rumor, gossip","c":"n. m."},{"ts":1527814005,"i":2456,"p":"پسرلی","f":"psarléy, pusărléy","g":"psarley,pusarley","e":"spring, springtime (season)","c":"n. m."},{"ts":1527821229,"i":2487,"p":"پښتورګی","f":"paxtawurgey","g":"paxtawurgey","e":"kidney","c":"n. m."},{"ts":1527817035,"i":2526,"p":"پلاوی","f":"plaawey","g":"plaawey","e":"mission, delegation","c":"n. m."},{"ts":1527815187,"i":2738,"p":"پوزی","f":"pozey","g":"pozey","e":"mat","c":"n. m."},{"ts":1527816627,"i":2742,"p":"پوستکی","f":"postukey","g":"postukey","e":"fleece, pelt, skin, shell, rind, bark; ear lobe","c":"n. m."},{"ts":1527819332,"i":2753,"p":"پوښتورګی","f":"pooxtawúrgey","g":"pooxtawurgey","e":"kidney","c":"n. m."},{"ts":1527819496,"i":2775,"p":"پوهاوی","f":"pohaawéy","g":"pohaawey","e":"understanding, comprehension","c":"n. m."},{"ts":1527815168,"i":2810,"p":"پېټی","f":"peTéy","g":"peTey","e":"load, weight, burden","c":"n. m."},{"ts":1527815927,"i":2856,"p":"پېرونکی","f":"peróonkey","g":"peroonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527815017,"i":2858,"p":"پېروی","f":"perúwey, peráwey","g":"peruwey,perawey","e":"cream","c":"n. m."},{"ts":1527815325,"i":3027,"p":"تاوتریخوالی","f":"taawtreekhwaaley","g":"taawtreekhwaaley","e":"violence","c":"n. m."},{"ts":1611397750325,"i":3033,"p":"تاوی","f":"taawéy","g":"taawey","e":"screwdriver, screw","c":"n. m."},{"ts":1622374978659,"i":3057,"p":"تبرګی","f":"tubúrgey","g":"tuburgey","e":"hatchet","c":"n. m."},{"ts":1527818705,"i":3141,"p":"تخرګی","f":"tkhurgéy","g":"tkhurgey","e":"gusset (in a shirt)","c":"n. m."},{"ts":1527814392,"i":3369,"p":"تړونی","f":"taRooney","g":"taRooney","e":"band, bandage","c":"n. m."},{"ts":1527822723,"i":3430,"p":"تشی","f":"túshey","g":"tushey","e":"empty space, void, side, groin","c":"n. m."},{"ts":1577585114379,"i":3633,"p":"تلی","f":"táley","g":"taley","e":"sole (of a shoe); yard, compound; palm","c":"n. m."},{"ts":1527816630,"i":3707,"p":"تندی","f":"tandey","g":"tandey","e":"forehead, brow, slope","c":"n. m."},{"ts":1527821980,"i":3744,"p":"تڼی","f":"taNéy","g":"taNey","e":"bellyband (of a harness)","c":"n. m."},{"ts":1527819719,"i":3813,"p":"توری","f":"tórey","g":"torey","e":"spleen","c":"n. m."},{"ts":1527819721,"i":3814,"p":"توری","f":"toréy","g":"torey","e":"letter, letter of the alphabet","c":"n. m."},{"ts":1527819622,"i":3839,"p":"توغندی","f":"toghandéy","g":"toghandey","e":"rocket, missile","c":"n. m."},{"ts":1527814705,"i":3867,"p":"توکی","f":"tokey","g":"tokey","e":"element, item, material; thing, material, kind, type","c":"n. m."},{"ts":1527819563,"i":4041,"p":"ټکری","f":"TUkréy","g":"TUkrey","e":"piece, small piece; a length (of cloth); blanket","c":"n. m."},{"ts":1577408381145,"i":4042,"p":"ټکری","f":"Tikréy","g":"Tikrey","e":"shawl, head-covering","c":"n. m."},{"ts":1527814667,"i":4054,"p":"ټکی","f":"Tákey","g":"Takey","e":"word; point; dot","c":"n. m."},{"ts":1527813617,"i":4160,"p":"ټیکری","f":"Teekréy","g":"Teekrey","e":"shawl, head covering","c":"n. m."},{"ts":1527819733,"i":4583,"p":"ځلمی","f":"dzalméy","g":"dzalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527815465,"i":4671,"p":"چارواکی","f":"chaarwaakey","g":"chaarwaakey","e":"official authority, official, authority","c":"n. m."},{"ts":1527822356,"i":4859,"p":"چنجی","f":"chinjéy","g":"chinjey","e":"worm, small insect","c":"n. m."},{"ts":1527822808,"i":4877,"p":"چنی","f":"chanéy","g":"chaney","e":"basin, bowl","c":"n. m."},{"ts":1527822357,"i":4978,"p":"چینجی","f":"cheenjéy","g":"cheenjey","e":"worm, small insect","c":"n. m."},{"ts":1527819046,"i":4990,"p":"څاڅکی","f":"tsáatskey","g":"tsaatskey","e":"drop","c":"n. m."},{"ts":1527817874,"i":5062,"p":"څرنګوالی","f":"tsurangwaaley","g":"tsurangwaaley","e":"quality, nature","c":"n. m."},{"ts":1527814041,"i":5067,"p":"څړمنی","f":"tsaRmuney","g":"tsaRmuney","e":"spring (season)","c":"n. m."},{"ts":1527813361,"i":5103,"p":"څلی","f":"tsaley","g":"tsaley","e":"column, pilliar, pyramid","c":"n. m."},{"ts":1527819027,"i":5108,"p":"څمڅی","f":"tsamtsey","g":"tsamtsey","e":"ladle, dipper","c":"n. m."},{"ts":1573055311846,"i":5402,"p":"خبرداری","f":"khabardaarey","g":"khabardaarey","e":"warning, notice, alarm","c":"n. m."},{"ts":1527820324,"i":5443,"p":"خټکی","f":"khaTakéy","g":"khaTakey","e":"melon","c":"n. m."},{"ts":1527819828,"i":6050,"p":"درناوی","f":"dranaawey","g":"dranaawey","e":"weight; respect, honour","c":"n. m."},{"ts":1588161660483,"i":6388,"p":"ډانګوری","f":"Daangooréy","g":"Daangoorey","e":"crutch, walking-stick, cane","c":"n. m."},{"ts":1527813493,"i":6501,"p":"ډېری","f":"Derey","g":"Derey","e":"majority; heap, pile","c":"n. m."},{"ts":1527823700,"i":6604,"p":"راشی","f":"raashey","g":"raashey","e":"avalanche, flood, shower","c":"n. m."},{"ts":1527819732,"i":7109,"p":"زلمی","f":"zalméy","g":"zalmey","e":"young, youth, young lad","c":"n. m."},{"ts":1527813708,"i":7240,"p":"زېری","f":"zerey","g":"zerey","e":"good news, gospel","c":"n. m."},{"ts":1588758498458,"i":7245,"p":"زېړی","f":"zeRéy","g":"zeRey","e":"jaundice","c":"n. m."},{"ts":1571626392709,"i":7249,"p":"زېږنځی","f":"zeGundzey","g":"zegundzey","e":"birthplace","c":"n. m."},{"ts":1527815698,"i":7300,"p":"ژمی","f":"jzúmey, jzímey","g":"jzumey,jzimey","e":"winter","c":"n. m."},{"ts":1573686563723,"i":7323,"p":"ژی","f":"jzey","g":"jzey","e":"wineskin, bagpipe, skin for carrying liquid","c":"n. m."},{"ts":1527815239,"i":7348,"p":"ساتېری","f":"saaterey","g":"saaterey","e":"entertainment, fun, recreation","c":"n. m."},{"ts":1527813725,"i":7364,"p":"ساری","f":"sáarey","g":"saarey","e":"equal, equivalent, match, precedent","c":"n. m."},{"ts":1527814021,"i":7443,"p":"سپرلی","f":"sparléy","g":"sparley","e":"spring (season)","c":"n. m."},{"ts":1527813509,"i":7458,"p":"سپکاوی","f":"spukaawéy","g":"spukaawey","e":"insult, disgrace, defamation, disrespect","c":"n. m."},{"ts":1527815298,"i":7496,"p":"سپیناوی","f":"speenaawey","g":"speenaawey","e":"clarification, attestation","c":"n. m."},{"ts":1578002674551,"i":7514,"p":"سترغلی","f":"sturghúley","g":"sturghuley","e":"eye-socket, eyelid; orbit","c":"n. m."},{"ts":1527811999,"i":7549,"p":"ستوری","f":"storey","g":"storey","e":"star","c":"n. m."},{"ts":1527817001,"i":7560,"p":"ستونی","f":"stóoney","g":"stooney","e":"throat, larynx","c":"n. m."},{"ts":1527813511,"i":7660,"p":"سرخوږی","f":"sărkhooGéy, sărkhwuGéy","g":"sarkhoogey,sarkhwugey","e":"headache, trouble","c":"n. m."},{"ts":1527815251,"i":7735,"p":"سړی","f":"saRéy","g":"saRey","e":"man","c":"n. m.","ec":"man","ep":"men"},{"ts":1527819850,"i":7743,"p":"سږی","f":"súGey","g":"sugey","e":"lung","c":"n. m."},{"ts":1527812302,"i":7957,"p":"سوری","f":"soorey","g":"soorey","e":"hole, slit, opening","c":"n. m."},{"ts":1527818221,"i":8027,"p":"سوی","f":"swey","g":"swey","e":"burning, zeal, fervour","c":"n. m."},{"ts":1527812304,"i":8105,"p":"سیوری","f":"syórey, syóorey","g":"syorey,syoorey","e":"shade, shadow","c":"n. m."},{"ts":1527815268,"i":8479,"p":"شی","f":"shey","g":"shey","e":"thing","c":"n. m.","ppp":"شیان، شیونه","ppf":"sheyáan, sheyóona"},{"ts":1527822527,"i":8539,"p":"ښتګری","f":"xatgaréy","g":"xatgarey","e":"ankle, ankle-bone","c":"n. m."},{"ts":1527812793,"i":8590,"p":"ښوونځی","f":"xowundzey","g":"xowundzey","e":"school","c":"n. m."},{"ts":1527821064,"i":8595,"p":"ښویکی","f":"xwayakéy","g":"xwayakey","e":"a quick, clever, agile, bright man; a swindler, a fraud","c":"n. m."},{"ts":1527822650,"i":9049,"p":"غټوالی","f":"ghaTwaaley","g":"ghaTwaaley","e":"largeness, bigness","c":"n. m."},{"ts":1527814569,"i":9115,"p":"غړی","f":"ghuRey","g":"ghuRey","e":"member","c":"n. m."},{"ts":1527817627,"i":9135,"p":"غشی","f":"ghúshey","g":"ghushey","e":"arrow","c":"n. m."},{"ts":1527822913,"i":9191,"p":"غمی","f":"ghaméy","g":"ghamey","e":"precious stone, precious stone in a signet ring","c":"n. m."},{"ts":1527823466,"i":9202,"p":"غنګوری","f":"ghangóorey","g":"ghangoorey","e":"ear lobe","c":"n. m."},{"ts":1527818483,"i":9257,"p":"غوری","f":"ghorey","g":"ghorey","e":"plate","c":"n. m."},{"ts":1527816181,"i":9753,"p":"قی","f":"qey","g":"key","e":"vomit, nausea (Arabic)","c":"n. m."},{"ts":1527814715,"i":9813,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},{"ts":1527823295,"i":9888,"p":"کاڼی","f":"káaNey","g":"kaaNey","e":"stone, rock","c":"n. m."},{"ts":1527818563,"i":9907,"p":"کبوړی","f":"kabóoRey","g":"kabooRey","e":"muscle","c":"n. m."},{"ts":1527822824,"i":9921,"p":"کتاب ګوټی","f":"kitaabgóTey","g":"kitaabgoTey","e":"booklet, notebook","c":"n. m."},{"ts":1582388629980,"i":10143,"p":"کسی","f":"kúsey","g":"kusey","e":"pupil (of an eye)","c":"n. m."},{"ts":1594906790729,"i":10208,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527812836,"i":10248,"p":"کلی","f":"kúley, kíley","g":"kuley,kiley","e":"village","c":"n. m."},{"ts":1527816880,"i":10300,"p":"کمی","f":"kamey","g":"kamey","e":"shortage, lack, deficiency","c":"n. m."},{"ts":1610616852625,"i":10360,"p":"کنګرېزی","f":"kangrezéy","g":"kangrezey","e":"echo","c":"n. m."},{"ts":1527819196,"i":10633,"p":"ګاډی","f":"gáaDey","g":"gaaDey","e":"car, train","c":"n. m."},{"ts":1579016593220,"i":10880,"p":"ګنی","f":"ganéy","g":"ganey","e":"beehive; wasps' nest","c":"n. m."},{"ts":1527819076,"i":10928,"p":"ګوډاګی","f":"gooDaagéy","g":"gooDaagey","e":"doll, puppet","c":"n. m."},{"ts":1527822505,"i":10984,"p":"ګومبوری","f":"goomboorey","g":"goomboorey","e":"cheek","c":"n. m."},{"ts":1527819079,"i":11076,"p":"لاسپوڅی","f":"laaspotséy","g":"laaspotsey","e":"puppet","c":"n. m."},{"ts":1573149568665,"i":11079,"p":"لاسرسی","f":"laasraséy","g":"laasrasey","e":"access, availability","c":"n. m."},{"ts":1527817464,"i":11176,"p":"لرګی","f":"largey","g":"largey","e":"wood, timber","c":"n. m."},{"ts":1527822801,"i":11221,"p":"لستوڼی","f":"lastóNey","g":"lastoNey","e":"sleeve","c":"n. m."},{"ts":1527812416,"i":11231,"p":"لښتی","f":"laxtey","g":"laxtey","e":"brook, rivulet, small irrigation","c":"n. m."},{"ts":1527814401,"i":11384,"p":"لوبونی","f":"lobawuney","g":"lobawuney","e":"toy","c":"n. m."},{"ts":1527814519,"i":11416,"p":"لوری","f":"lorey","g":"lorey","e":"side, direction","c":"n. m."},{"ts":1527823103,"i":11499,"p":"لیدلوری","f":"leedlorey","g":"leedlorey","e":"perspective, viewpoint","c":"n. m."},{"ts":1527819920,"i":11600,"p":"ماشی","f":"maashey","g":"maashey","e":"mosquito, midge","c":"n. m."},{"ts":1527820224,"i":11838,"p":"مچوژی","f":"muchwajzéy","g":"muchwajzey","e":"fly swatter","c":"n. m."},{"ts":1591871316865,"i":11924,"p":"مختاړی","f":"mukhtaaRey","g":"mukhtaaRey","e":"prefix (grammar)","c":"n. m."},{"ts":1527817105,"i":12122,"p":"مړخندی","f":"muRkhandey","g":"muRkhandey","e":"smile, smiling","c":"n. m."},{"ts":1527817770,"i":12139,"p":"مړی","f":"múRey","g":"muRey","e":"dead body, corpse","c":"n. m."},{"ts":1527813189,"i":12762,"p":"منی","f":"máney","g":"maney","e":"fall, autumn","c":"n. m."},{"ts":1527812925,"i":12899,"p":"مومپلی","f":"mompaley","g":"mompaley","e":"peanut","c":"n. m."},{"ts":1527812421,"i":12969,"p":"مېږی","f":"meGey","g":"megey","e":"ant","c":"n. m."},{"ts":1527819227,"i":13331,"p":"نشتوالی","f":"nashtwaaley","g":"nashtwaaley","e":"lack","c":"n. m."},{"ts":1527823577,"i":13619,"p":"نیالګی","f":"niyaalgey","g":"niyaalgey","e":"sapling, seedling, sprout, young tree","c":"n. m."},{"ts":1527812073,"i":13755,"p":"هډوکی","f":"haDookey","g":"haDookey","e":"bone","c":"n. m."},{"ts":1527812668,"i":13768,"p":"هرکلی","f":"hărkáley","g":"harkaley","e":"welcome","c":"n. m."},{"ts":1588153218244,"i":13792,"p":"هسکوالی","f":"haskwáaley","g":"haskwaaley","e":"height, elevation, tallness","c":"n. m."},{"ts":1585309922022,"i":14044,"p":"والګی","f":"waalgéy","g":"waalgey","e":"flu, respiratory illness, influenza, cold","c":"n. m."},{"ts":1527813014,"i":14225,"p":"وژی","f":"wajzey","g":"wajzey","e":"vein, nerve","c":"n. m."},{"ts":1527821465,"i":14321,"p":"ولی","f":"wuléy","g":"wuley","e":"shoulder","c":"n. m."},{"ts":1527814004,"i":14352,"p":"ووړی","f":"woRey","g":"woRey","e":"summer","c":"n. m."},{"ts":1527822004,"i":33,"p":"آخرینی","f":"aakhireenéy","g":"aakhireeney","e":"last, final, latest","c":"adj."},{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},{"ts":1612616237182,"i":2153,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},{"ts":1527813400,"i":1083,"p":"اوسنی","f":"oosanéy","g":"oosaney","e":"current, present","c":"adj."},{"ts":1527815661,"i":1102,"p":"اولنی","f":"awwalunéy","g":"awwaluney","e":"first, beginning","c":"adj."},{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527816646,"i":1778,"p":"بهرنی","f":"baharanéy, bahranéy","g":"baharaney,bahraney","e":"foreigner, foreign; outside, outer","c":"adj."},{"ts":1527818769,"i":2020,"p":"بېړنی","f":"beRanéy","g":"beRaney","e":"emergency","c":"adj."},{"ts":1592382613021,"i":2270,"p":"پخوانی","f":"pakhwaanéy","g":"pakhwaaney","e":"old, ancient, previous, former","c":"adj."},{"ts":1527819532,"i":2309,"p":"پردی","f":"pradéy, prudéy","g":"pradey,prudey","e":"foreign, unrelated, another('s)","c":"adj."},{"ts":1577381894391,"i":2348,"p":"پرنګی","f":"parangéy","g":"parangey","e":"Englishman, Westerner, foreigner","c":"n. m. unisex / adj."},{"ts":1527820194,"i":2521,"p":"پلانکی","f":"pulaankéy","g":"pulaankey","e":"so-and-so, such-and-such, ambiguous pronoun (فلان)","c":"adj. / n. m. anim. unisex"},{"ts":1527820130,"i":2561,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex","ppp":"پلویان","ppf":"palawiyáan"},{"ts":1582390092514,"i":2717,"p":"پورتنی","f":"portinéy","g":"portiney","e":"upper, above","c":"adj."},{"ts":1610617741649,"i":4604,"p":"ځنډنی","f":"dzanDanéy, dzanDunéy","g":"dzanDaney,dzanDuney","e":"old, ancient","c":"adj."},{"ts":1610793723568,"i":4971,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},{"ts":1527819362,"i":5765,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},{"ts":1590052667427,"i":6017,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},{"ts":1527822854,"i":6977,"p":"ړومبی","f":"Roombéy","g":"Roombey","e":"first, before","c":"adj."},{"ts":1527820213,"i":7118,"p":"زمری","f":"zmaréy","g":"zmarey","e":"lion","c":"n. m. anim. unisex"},{"ts":1527813923,"i":7320,"p":"ژوندی","f":"jzwundéy","g":"jzwundey","e":"living","c":"adj."},{"ts":1527815299,"i":7472,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},{"ts":1527820788,"i":8525,"p":"ښارنی","f":"xaaranéy","g":"xaaraney","e":"city, urban","c":"adj."},{"ts":1527812822,"i":10425,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small","c":"adj."},{"ts":1527823742,"i":10427,"p":"کوچی","f":"kochéy","g":"kochey","e":"migratory, nomadic","c":"adj."},{"ts":1527818765,"i":10785,"p":"ګړندی","f":"guRandéy","g":"guRandey","e":"speedy, high speed, fast, quick","c":"adj."},{"ts":1527819130,"i":10817,"p":"ګلالی","f":"gUlaaléy","g":"gUlaaley","e":"pretty, beautiful, lovely, cute, sweet","c":"adj."},{"ts":1576101261017,"i":10877,"p":"ګنګی","f":"gUngéy, gangéy","g":"gUngey,gangey","e":"mute, dumb (person)","c":"n. m. anim. unisex / adj."},{"ts":1582316583262,"i":11120,"p":"لاندینی","f":"laandeenéy","g":"laandeeney","e":"lower, bottom","c":"adj."},{"ts":1527816249,"i":11319,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527813472,"i":11462,"p":"لومړنی","f":"loomRanéy","g":"loomRaney","e":"first","c":"adj."},{"ts":1527813132,"i":11464,"p":"لومړی","f":"loomRéy","g":"loomRey","e":"first","c":"adj."},{"ts":1527819910,"i":11744,"p":"متلی","f":"mutléy","g":"mutley","e":"slippery, smooth","c":"adj."},{"ts":1527820414,"i":12676,"p":"منځنی","f":"mandzunéy","g":"mandzuney","e":"middle, central","c":"adj."},{"ts":1527811202,"i":12923,"p":"میاشتنی","f":"miyaashtanéy","g":"miyaashtaney","e":"monthly","c":"adj."},{"ts":1527819320,"i":13271,"p":"نری","f":"naréy","g":"narey","e":"thin; mild; high (pitch)","c":"adj."},{"ts":1527816251,"i":13474,"p":"نمسی","f":"nmaséy","g":"nmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527821373,"i":13938,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},{"ts":1527813636,"i":14167,"p":"وروستی","f":"wroostéy","g":"wroostey","e":"last, latest, recent","c":"adj."},{"ts":1527815430,"i":14484,"p":"یوازنی","f":"yawaazunéy","g":"yawaazuney","e":"only, unique, sole","c":"adj."},{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},{"ts":1527813469,"i":1368,"p":"بخښونکی","f":"bakhxóonkey","g":"bakhxoonkey","e":"forgiving","c":"adj."},{"ts":1527817829,"i":2724,"p":"پوروړی","f":"porwáRey, porawúRey","g":"porwaRey,porawuRey","e":"debtor, in debt","c":"n. m. anim. unisex"},{"ts":1527815205,"i":2802,"p":"پیاوړی","f":"pyaawáRey","g":"pyaawaRey","e":"powerful, strong, great","c":"adj."},{"ts":1527815924,"i":2855,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527819604,"i":3347,"p":"ترینګلی","f":"treengúley","g":"treenguley","e":"tense, stern, grim, sour, moody (person)","c":"adj."},{"ts":1527813406,"i":3357,"p":"تړلی","f":"taRuley","g":"taRuley","e":"bound, tied, closed","c":"adj."},{"ts":1527815381,"i":3376,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},{"ts":1527817607,"i":3793,"p":"تور مخی","f":"tormúkhey","g":"tormukhey","e":"disgraceful, shameful, dishonered","c":"adj."},{"ts":1527822859,"i":5021,"p":"څپولی","f":"tsapoley","g":"tsapoley","e":"dishevelled, messy, curly (with hair etc.)","c":"adj."},{"ts":1527811466,"i":5168,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},{"ts":1527812377,"i":5282,"p":"حکم منونکی","f":"hUkum munóonkey","g":"hUkummunoonkey","e":"obedient, submissive","c":"adj."},{"ts":1527817299,"i":5326,"p":"حیرانوونکی","f":"heyraanawóonkey","g":"heyraanawoonkey","e":"amazing, surprising","c":"adj."},{"ts":1527813282,"i":5499,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},{"ts":1527812809,"i":5668,"p":"خوار ځواکی","f":"khwaar dzwáakey","g":"khwaardzwaakey","e":"malnourished, underfed","c":"adj."},{"ts":1591871233587,"i":5755,"p":"خوږژبی","f":"khoGjzubey","g":"khogjzubey","e":"well-spoken","c":"adj."},{"ts":1527814118,"i":6006,"p":"دردوونکی","f":"dărdawóonkey","g":"dardawoonkey","e":"painful, hurtful, agonizing","c":"adj."},{"ts":1527820657,"i":6098,"p":"درېیمګړی","f":"dre`yamgúRey","g":"dreyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1527815713,"i":6573,"p":"راتلونکی","f":"raatlóonkey","g":"raatloonkey","e":"coming, future","c":"adj."},{"ts":1527812142,"i":6764,"p":"رښتنی","f":"rixtíney","g":"rixtiney","e":"truthful, true","c":"adj."},{"ts":1527812161,"i":6765,"p":"رښتونی","f":"rixtóoney","g":"rixtooney","e":"truthful","c":"adj."},{"ts":1527811507,"i":6771,"p":"رښتینی","f":"rixtéeney","g":"rixteeney","e":"true, truthful, righteous, good","c":"adj."},{"ts":1527813758,"i":7020,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},{"ts":1577058349091,"i":7061,"p":"زړه پوری","f":"zRupoorey","g":"zRupoorey","e":"interesting, entertaining, attractive, pleasant","c":"adj."},{"ts":1527817400,"i":7069,"p":"زړه سواندی","f":"zRuswaandey","g":"zRuswaandey","e":"merciful, compassionate, soft-hearted","c":"adj."},{"ts":1527819587,"i":7270,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},{"ts":1527814888,"i":7291,"p":"ژغورونکی","f":"jzghoróonkey","g":"jzghoroonkey","e":"savior, saviour, rescuer","c":"n. m. anim. unisex"},{"ts":1527818109,"i":7478,"p":"سپېڅلی","f":"spetsúley","g":"spetsuley","e":"absolutely or perfectly clean, uncontaminated, pure (holy, magnificent – سپيڅلي??)","c":"adj."},{"ts":1527811338,"i":7490,"p":"سپین زړی","f":"speenzuRey","g":"speenzuRey","e":"sincere hearted, candid, trusting","c":"adj."},{"ts":1527815306,"i":7528,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},{"ts":1527822745,"i":7570,"p":"سټکوری","f":"suTkóorey","g":"suTkoorey","e":"burned, charred; wrinkling, puckering; seared, scorched; frozen stiff with cold; withered","c":"adj."},{"ts":1527817442,"i":7593,"p":"سخت زړی","f":"sakhtzúRey","g":"sakhtzuRey","e":"heard-hearted, cruel, heartless, callous","c":"adj."},{"ts":1527816932,"i":7650,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},{"ts":1527820170,"i":7874,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},{"ts":1527819964,"i":7930,"p":"سوځېدونکی","f":"swadzedóonkey","g":"swadzedoonkey","e":"burning","c":"adj."},{"ts":1527821951,"i":8026,"p":"سوی","f":"súwey","g":"suwey","e":"burned","c":"adj."},{"ts":1527812779,"i":8563,"p":"ښکلی","f":"xkÚley","g":"xkUley","e":"beautiful","c":"adj."},{"ts":1527812806,"i":8591,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},{"ts":1527811350,"i":9174,"p":"غلی","f":"ghúley","g":"ghuley","e":"quiet, silent","c":"adj."},{"ts":1527819637,"i":9800,"p":"کارکوونکی","f":"kaarkawóonkey","g":"kaarkawoonkey","e":"worker","c":"n. m. anim. unisex"},{"ts":1527818613,"i":10291,"p":"کمزوری","f":"kamzórey","g":"kamzorey","e":"weak, feeble, frail, faint, poor","c":"adj."},{"ts":1595516629483,"i":10371,"p":"کڼوونکی","f":"kaNawóonkey","g":"kaNawoonkey","e":"deafening","c":"adj.","l":1578770339559},{"ts":1527820661,"i":13001,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},{"ts":1527814047,"i":13595,"p":"نوموړی","f":"noomwáRey","g":"noomwaRey","e":"aforesaid, above-mentioned","c":"adj."},{"ts":1527813822,"i":13605,"p":"نوی","f":"núwey","g":"nuwey","e":"new","c":"adj."},{"ts":1586453720908,"i":13741,"p":"هڅوونکی","f":"hatsawóonkey","g":"hatsawoonkey","e":"encouraging / encourager","c":"adj."},{"ts":1588163180700,"i":13981,"p":"هېښوونکی","f":"hexawóonkey","g":"hexawoonkey","e":"stunning, shocking, perplexing, amazing","c":"adj."},{"ts":1527823715,"i":14194,"p":"وړکوټی","f":"waRkóTey","g":"waRkoTey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527823714,"i":14195,"p":"وړکی","f":"waRÚkey","g":"waRUkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527815403,"i":14200,"p":"وړوکی","f":"waRóokey","g":"waRookey","e":"little, small","c":"adj."},{"ts":1527813916,"i":14224,"p":"وژونکی","f":"wajzóonkey","g":"wajzoonkey","e":"killing, lethal, deadly","c":"adj."},{"ts":1527815424,"i":14233,"p":"وږی","f":"wúGey","g":"wugey","e":"hungry","c":"adj."},{"ts":1527823713,"i":14347,"p":"ووړکی","f":"wóRkey","g":"woRkey","e":"small, little; (also as a child)","c":"adj."},{"ts":1527816455,"i":14391,"p":"وېشلی","f":"weshúley","g":"weshuley","e":"separated, divided","c":"adj."},{"ts":1527821744,"i":72,"p":"آشپز","f":"aashpáz","g":"aashpaz","e":"cook, chef","c":"n. m. anim. unisex"},{"ts":1527812156,"i":685,"p":"افسر","f":"afsar","g":"afsar","e":"officer","c":"n. m. anim. unisex"},{"ts":1591872915426,"i":694,"p":"افغانی","f":"afghaanéy","g":"afghaaney","e":"Afghan (person)","c":"n. m. anim. unisex"},{"ts":1527815137,"i":1046,"p":"اورپکی","f":"orpákey","g":"orpakey","e":"instigator, insurgent, terrorist","c":"n. m. anim. unisex"},{"ts":1582853867682,"i":1085,"p":"اوسېدونکی","f":"osedóonkey","g":"osedoonkey","e":"resident","c":"n. m. anim. unisex"},{"ts":1527812476,"i":1353,"p":"بچی","f":"bachéy","g":"bachey","e":"child, offspring","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1623044005072,"i":1694,"p":"بلواګر","f":"balwaagar","g":"balwaagar","e":"insurrectionist, rebel","c":"n. m. anim. unisex"},{"ts":1612616237182,"i":2153,"p":"پاکستانی","f":"paakistaanéy","g":"paakistaaney","e":"Pakistani (person)","c":"n. m. anim. unisex"},{"ts":1527817965,"i":2169,"p":"پالونکی","f":"paalóonkey","g":"paaloonkey","e":"keeper, one who brings up, raises (cattle etc.)","c":"n. m. anim. unisex"},{"ts":1527815197,"i":2488,"p":"پښتون","f":"puxtoon","g":"puxtoon","e":"Pashtun","c":"n. m. anim. unisex / adj.","infap":"پښتانه","infaf":"puxtaanu","infbp":"پښتن","infbf":"puxtan"},{"ts":1527819228,"i":2533,"p":"پلټونکی","f":"pulaTóonkey","g":"pulaToonkey","e":"inspector, detective, person checking people at the doors etc.","c":"n. m. anim. unisex"},{"ts":1527820130,"i":2561,"p":"پلوی","f":"palawéy","g":"palawey","e":"adherent, supporter; the outside or further ox in a team of oxes grinding or threshing","c":"n. m. anim. unisex","ppp":"پلویان","ppf":"palawiyáan"},{"ts":1527815924,"i":2855,"p":"پېرودونکی","f":"perodóonkey","g":"perodoonkey","e":"customer","c":"n. m. anim. unisex"},{"ts":1527816431,"i":3321,"p":"ترورزی","f":"trorzéy","g":"trorzey","e":"cousin (of paternal aunt)","c":"n. m. anim. unisex","ppp":"ترورزامن","ppf":"trorzaamun"},{"ts":1527820820,"i":3493,"p":"تعقیبوونکی","f":"ta'qeebawóonkey","g":"takeebawoonkey","e":"follower","c":"n. m. anim. unisex"},{"ts":1586270915475,"i":3914,"p":"تي لرونکی","f":"tee laróonkey","g":"teelaroonkey","e":"mammal","c":"adj. / n. m. anim. unisex"},{"ts":1613563994424,"i":4104,"p":"ټوقمار","f":"Toqmaar","g":"Tokmaar","e":"joker, jester, mocker","c":"n. m. anim. unisex"},{"ts":1610793723568,"i":4971,"p":"چېلی","f":"cheléy","g":"cheley","e":"ram, goat","c":"n. m. anim. unisex"},{"ts":1527811466,"i":5168,"p":"څېړونکی","f":"tseRóonkey","g":"tseRoonkey","e":"researcher","c":"n. m. anim. unisex"},{"ts":1527812795,"i":5426,"p":"خپلوان","f":"khpulwaan","g":"khpulwaan","e":"relative","c":"n. m. anim. unisex / adj. ??"},{"ts":1527812802,"i":5471,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},{"ts":1527813282,"i":5499,"p":"خرڅوونکی","f":"khartsawóonkey","g":"khartsawoonkey","e":"seller","c":"n. m. anim. unisex"},{"ts":1527819362,"i":5765,"p":"خوسی","f":"khooséy","g":"khoosey","e":"calf (animal)","c":"n. m. anim. unisex","ec":"calf","ep":"calves"},{"ts":1527822535,"i":5823,"p":"خیاط","f":"khayáat","g":"khayaat","e":"tailor","c":"n. m. anim. unisex"},{"ts":1590052667427,"i":6017,"p":"درستی","f":"drustéy, drastéy","g":"drustey,drastey","e":"witness","c":"n. m. anim. unisex"},{"ts":1622873938137,"i":6023,"p":"درغلګر","f":"darghalgar","g":"darghalgar","e":"crook, swindler, criminal","c":"n. m. anim. unisex"},{"ts":1527820656,"i":6095,"p":"دریمګړی","f":"driyamgúRey","g":"driyamguRey","e":"mediator, arbitrator","c":"n. m. anim. unisex"},{"ts":1614081825855,"i":6641,"p":"راهب","f":"raahib","g":"raahib","e":"priest, monk/nun","c":"n. m. anim. unisex"},{"ts":1527813758,"i":7020,"p":"زدکوونکی","f":"zdakawóonkey","g":"zdakawoonkey","e":"student, learner, pupil","c":"n. m. anim. unisex"},{"ts":1527819587,"i":7270,"p":"ژباړونکی","f":"jzbaaRóonkey","g":"jzbaaRoonkey","e":"translator","c":"n. m. anim. unisex"},{"ts":1527815299,"i":7472,"p":"سپی","f":"spéy","g":"spey","e":"dog","c":"n. m. anim. unisex"},{"ts":1610447830096,"i":7609,"p":"سخی","f":"skhéy","g":"skhey","e":"calf; bull-calf","c":"n. m. anim. unisex"},{"ts":1527816932,"i":7650,"p":"سرتېری","f":"sărtérey","g":"sarterey","e":"soldier","c":"n. m. anim. unisex"},{"ts":1527811519,"i":7759,"p":"سفیر","f":"safeer","g":"safeer","e":"embassador, ambassador","c":"n. m. anim. unisex"},{"ts":1622366208373,"i":7772,"p":"سکرتر","f":"sakratár","g":"sakratar","e":"secretary","c":"n. m. anim. unisex"},{"ts":1527820170,"i":7874,"p":"سندرغاړی","f":"sandurgháaRey","g":"sandurghaaRey","e":"singer","c":"n. m. anim. unisex"},{"ts":1566468540788,"i":8028,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"},{"ts":1527819801,"i":8081,"p":"سیلانی","f":"seylaanéy","g":"seylaaney","e":"tourist, sightseer, visitor","c":"n. m. anim. unisex","ppp":"سیلانیان","ppf":"seylaaniyáan"},{"ts":1575924767041,"i":8182,"p":"شپون","f":"shpoon","g":"shpoon","e":"shepherd","c":"n. m. anim. unisex","infap":"شپانه","infaf":"shpaanu","infbp":"شپن","infbf":"shpan"},{"ts":1527815279,"i":8183,"p":"شپونکی","f":"shpoonkéy","g":"shpoonkey","e":"shepherd","c":"n. m. anim. unisex"},{"ts":1527819173,"i":8400,"p":"شنونکی","f":"shanóonkey","g":"shanoonkey","e":"analyst, examiner","c":"n. m. anim. unisex"},{"ts":1527812806,"i":8591,"p":"ښوونکی","f":"xUwóonkey","g":"xUwoonkey","e":"teacher","c":"n. m. anim. unisex"},{"ts":1527815436,"i":8777,"p":"ظالم","f":"zaalim","g":"zaalim","e":"tyrant, oppressor, cruel person","c":"n. m. anim. unisex / adj."},{"ts":1527818632,"i":9037,"p":"غبرګونی","f":"ghbargóoney","g":"ghbargooney","e":"twin","c":"n. m. anim. unisex"},{"ts":1527812624,"i":9149,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},{"ts":1613561408232,"i":9681,"p":"قصوروار","f":"qUsoorwáar","g":"kUsoorwaar","e":"guilty, at fault","c":"adj. / n. m. anim. unisex"},{"ts":1527814715,"i":9813,"p":"کاروونکی","f":"kaarawóonkey","g":"kaarawoonkey","e":"user","c":"n. m. anim. unisex"},{"ts":1527816256,"i":10118,"p":"کړوسی","f":"kaRwaséy","g":"kaRwasey","e":"great-grandson","c":"n. m. anim. unisex"},{"ts":1594906790729,"i":10208,"p":"ککی","f":"kakéy","g":"kakey","e":"child","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527819244,"i":10449,"p":"کوربه","f":"korba","g":"korba","e":"host, hostess; master of house","c":"n. m. anim. unisex","infap":"کوربانه","infaf":"korbaanú","infbp":"کوربن","infbf":"korban"},{"ts":1527812174,"i":10657,"p":"ګاونډی","f":"gaawanDéy","g":"gaawanDey","e":"neighbour","c":"n. m. anim. unisex / adj."},{"ts":1579030083953,"i":10838,"p":"ګناه ګار","f":"gUnaahgáar","g":"gUnaahgaar","e":"sinner, sinful","c":"n. m. anim. unisex"},{"ts":1527816249,"i":11319,"p":"لمسی","f":"lmaséy","g":"lmasey","e":"grandchild","c":"n. m. anim. unisex","ec":"grandchild","ep":"grandchildren"},{"ts":1527822661,"i":11379,"p":"لوبغاړی","f":"lobgháaRey","g":"lobghaaRey","e":"athlete, player; actor; mischevious, playful (of a child)","c":"n. m. anim. unisex / adj."},{"ts":1589885143650,"i":11459,"p":"لومبړ","f":"loombáR","g":"loombaR","e":"fox","c":"n. m. anim. unisex"},{"ts":1527812043,"i":11525,"p":"لیکوال","f":"leekwaal","g":"leekwaal","e":"writer, author","c":"n. m. anim. unisex"},{"ts":1527820680,"i":11548,"p":"لېونی","f":"lewanéy","g":"lewaney","e":"crazy, insane, mad person","c":"n. m. anim. unisex / adj."},{"ts":1527812881,"i":11596,"p":"ماشوم","f":"maashoom","g":"maashoom","e":"child, kid","c":"n. m. anim. unisex","ec":"child","ep":"children"},{"ts":1527814445,"i":11644,"p":"مامور","f":"maamóor","g":"maamoor","e":"officer, clerk (as in government worker); assigned, appointed, given orders or istructions (Arabic), authorized, sent on business","c":"adj. / n. m. anim. unisex"},{"ts":1527818760,"i":11989,"p":"مدني فاعل","f":"madanee faa'al","g":"madaneefaaal","e":"civil activist","c":"n. m. anim. unisex"},{"ts":1527821523,"i":12115,"p":"مریی","f":"mrayéy","g":"mrayey","e":"slave, servant","c":"n. m. anim. unisex"},{"ts":1527814159,"i":12608,"p":"ملګری","f":"malgúrey","g":"malgurey","e":"friend, companion","c":"n. m. anim. unisex"},{"ts":1527820661,"i":13001,"p":"مېنځګړی","f":"mendzgúRey","g":"mendzguRey","e":"mediator, go-between, arbitrator","c":"n. m. anim. unisex"},{"ts":1527823403,"i":13010,"p":"مینه وال","f":"meenawáal","g":"meenawaal","e":"fan, someone who loves or appreciates someone or something","c":"n. m. anim. unisex"},{"ts":1527815127,"i":13258,"p":"نرس","f":"nars, nursa","g":"nars,nursa","e":"nurse","c":"n. m. anim. unisex"},{"ts":1527816254,"i":13567,"p":"نوسی","f":"nwaséy","g":"nwasey","e":"grandchild","c":"n. m. anim. unisex"},{"ts":1527814806,"i":13849,"p":"همځولی","f":"hamdzóley","g":"hamdzoley","e":"peer, someone of the same age, someone born in the same year","c":"n. m. anim. unisex"},{"ts":1527812684,"i":13872,"p":"همکار","f":"hamkaar","g":"hamkaar","e":"co-worker, fellow worker, collaborator, aid","c":"n. m. anim. unisex"},{"ts":1527811732,"i":13902,"p":"هنر مند","f":"hUnarmand","g":"hUnarmand","e":"artist, performer","c":"n. m. anim. unisex"},{"ts":1527821373,"i":13938,"p":"هوسی","f":"hoséy","g":"hosey","e":"deer","c":"n. m. anim. unisex","ec":"deer","ep":"deer"},{"ts":1591027046896,"i":14207,"p":"وز","f":"wuz","g":"wuz","e":"goat","c":"n. m. anim. unisex"},{"ts":1611395180139,"i":14266,"p":"وطندار","f":"watandáar","g":"watandaar","e":"fellow countryman, person from the same country","c":"n. m. anim. unisex"},{"ts":1527811296,"i":14292,"p":"وکیل","f":"wakeel","g":"wakeel","e":"lawyer, proxy holder","c":"n. m. anim. unisex","app":"وکلا","apf":"waklaa"},{"ts":1527813585,"i":14293,"p":"وګړی","f":"wagúRey","g":"waguRey","e":"person, human being, creature","c":"n. m. anim. unisex","ec":"person","ep":"people"},{"ts":1527814672,"i":14360,"p":"ویاند","f":"wayaand","g":"wayaand","e":"spokesperson, spokesman, newcaster","c":"n. m. anim. unisex","ec":"spokesperson","ep":"spokespeople"},{"ts":1586454081484,"i":14435,"p":"یتیم","f":"yateem","g":"yateem","e":"orphan","c":"n. m. anim. unisex"},{"ts":1527812461,"i":153,"p":"اتل","f":"atul","g":"atul","e":"hero, brave","c":"n. m. anim. unisex"},{"ts":1527816778,"i":1071,"p":"اوږد","f":"ooGd, ooGud","g":"oogd,oogud","e":"long","c":"adj.","infap":"اوږده","infaf":"ooGdu","infbp":"اوږد","infbf":"ooGd"},{"ts":1527822706,"i":1106,"p":"اوم","f":"oom","g":"oom","e":"raw, uncooked; blunt, crude; unripe, immature, not fully developed","c":"adj.","infap":"اومه","infaf":"oomu","infbp":"اوم","infbf":"oom"},{"ts":1527812802,"i":5471,"p":"خر","f":"khur","g":"khur","e":"donkey","c":"n. m. anim. unisex irreg.","infap":"خره","infaf":"khru","infbp":"خر","infbf":"khr"},{"ts":1527813293,"i":7945,"p":"سور","f":"soor","g":"soor","e":"red; hot; angry","c":"adj.","infap":"سره","infaf":"sru","infbp":"سر","infbf":"sr"},{"ts":1527815265,"i":8505,"p":"شین","f":"sheen","g":"sheen","e":"green, blue; unripe, immature","c":"adj. irreg.","infap":"شنه","infaf":"shnu","infbp":"شن","infbf":"shn"},{"ts":1527812624,"i":9149,"p":"غل","f":"ghul","g":"ghul","e":"thief","c":"n. m. anim. unisex irreg.","infap":"غله","infaf":"ghlu","infbp":"غل","infbf":"ghl"},{"ts":1527815087,"i":12118,"p":"مړ","f":"muR","g":"muR","e":"dead","c":"adj.","infap":"مړه","infaf":"mRu","infbp":"مړ","infbf":"mR"},{"ts":1527814151,"i":12547,"p":"مل","f":"mal","g":"mal","e":"companion, associate, friend; accompanying, being with","c":"n. m. anim. unisex / adj.","infap":"مله","infaf":"mlu","infbp":"مل","infbf":"ml"},{"ts":1527813580,"i":14474,"p":"یو","f":"yo","g":"yo","e":"one","c":"num.","infap":"یوه","infaf":"yawu","infbp":"یو","infbf":"yaw"},{"ts":1527819345,"i":2463,"p":"پسه","f":"psu","g":"psu","e":"sheep, ram","c":"n. m.","ppp":"پسونه","ppf":"pusoona","ec":"sheep","ep":"sheep"},{"ts":1527822173,"i":4227,"p":"جاړه","f":"jaaRú","g":"jaaRu","e":"bush, shrub","c":"n. m."},{"ts":1527813508,"i":7058,"p":"زړه","f":"zRu","g":"zRu","e":"heart","c":"n. m.","ppp":"زړونه","ppf":"zRoona"},{"ts":1588857967561,"i":9216,"p":"غوایه","f":"ghwaayú","g":"ghwaayu","e":"bull","c":"n. m."},{"ts":1527817108,"i":9784,"p":"کاته","f":"kaatu","g":"kaatu","e":"look, gaze, examination, inspection, spying","c":"n. m."},{"ts":1527817768,"i":9803,"p":"کارګه","f":"kaargú","g":"kaargu","e":"raven, crow","c":"n. m. anim."},{"ts":1527819245,"i":10448,"p":"کوربانه","f":"korbaanú","g":"korbaanu","e":"master of house, head of family, married man","c":"n. m."},{"ts":1527818516,"i":11295,"p":"لمبېده","f":"lambedú","g":"lambedu","e":"swimming, bathing","c":"n. m."},{"ts":1527813986,"i":11301,"p":"لمر پرېواته","f":"lmarprewaatu","g":"lmarprewaatu","e":"sunset, west","c":"n. m."},{"ts":1527813992,"i":11307,"p":"لمر لوېده","f":"lmarlwedu","g":"lmarlwedu","e":"sunset","c":"n. m."},{"ts":1527813987,"i":11309,"p":"لمرخاته","f":"lmarkhaatu","g":"lmarkhaatu","e":"sunrise, east","c":"n. m."},{"ts":1527818255,"i":11550,"p":"لېوه","f":"lewú","g":"lewu","e":"wolf, wild dog","c":"n. m.","ppp":"لېوان","ppf":"lewáan","ec":"wolf","ep":"wolves"},{"ts":1527821522,"i":12114,"p":"مریه","f":"mrayú","g":"mrayu","e":"slave, servant","c":"n. m."},{"ts":1527812911,"i":12962,"p":"مېړه","f":"meRu","g":"meRu","e":"husband, brave","c":"n. m.","ppp":"مېړونه","ppf":"meRoona"},{"ts":1527811626,"i":13453,"p":"نکېده","f":"nukedu","g":"nukedu","e":"impracticability, impossibility, improbability","c":"n. m."},{"ts":1527816410,"i":13657,"p":"نیکه","f":"neekú","g":"neeku","e":"grandfather, grandpa","c":"n. m."},{"ts":1527822420,"i":14041,"p":"واګه","f":"waagu","g":"waagu","e":"rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar","c":"n. m."},{"ts":1527816357,"i":14101,"p":"وراره","f":"wraaru","g":"wraaru","e":"nephew, brother's son","c":"n. m.","ppp":"وریرونه","ppf":"wreeroona"},{"ts":1527823225,"i":14318,"p":"وله","f":"wUlú","g":"wUlu","e":"flock, herd, drove","c":"n. m."},{"ts":1527814789,"i":14394,"p":"وېښته","f":"wextu","g":"wextu","e":"hair","c":"n. m."},{"ts":1527815394,"i":14004,"p":"واده","f":"waadú","g":"waadu","e":"wedding, marriage","c":"n. m.","ppp":"ودونه","ppf":"wadóona"},{"ts":1527818017,"i":177,"p":"اټۍ","f":"aTuy","g":"aTuy","e":"store, shop","c":"n. f."},{"ts":1527812694,"i":903,"p":"انجنۍ","f":"injUnuy","g":"injUnuy","e":"girl","c":"n. f."},{"ts":1527815140,"i":1109,"p":"اونۍ","f":"onuy, ownuy, owunuy","g":"onuy,ownuy,owunuy","e":"week","c":"n. f."},{"ts":1566476931206,"i":1333,"p":"بتۍ","f":"batúy","g":"batuy","e":"lamp, light","c":"n. f."},{"ts":1527822192,"i":1338,"p":"بټۍ","f":"baTúy","g":"baTuy","e":"stove, oven, furnace","c":"n. f."},{"ts":1527820828,"i":1354,"p":"بچۍ","f":"bachúy","g":"bachuy","e":"daughter, girl","c":"n. f."},{"ts":1527822974,"i":1669,"p":"بګۍ","f":"bagúy","g":"baguy","e":"cart, buggy, stroller","c":"n. f."},{"ts":1591805634565,"i":2755,"p":"پوښتۍ","f":"pooxtúy","g":"pooxtuy","e":"rib","c":"n. f."},{"ts":1586276322639,"i":4094,"p":"ټوپۍ","f":"Topuy","g":"Topuy","e":"hat, cap","c":"n. f."},{"ts":1527820058,"i":4095,"p":"ټوټکۍ","f":"ToTakúy","g":"ToTakuy","e":"kneecap, patella","c":"n. f."},{"ts":1527812564,"i":6480,"p":"ډوډۍ","f":"DoDuy","g":"DoDuy","e":"bread, food, meal","c":"n. f."},{"ts":1527821555,"i":7324,"p":"ژۍ","f":"jzuy","g":"jzuy","e":"edge, verge, side","c":"n. f."},{"ts":1527814788,"i":7471,"p":"سپوږمۍ","f":"spoGmuy","g":"spogmuy","e":"moon","c":"n. f."},{"ts":1527820120,"i":9335,"p":"غونډۍ","f":"ghwunDúy","g":"ghwunDuy","e":"hill, hillrock, mound","c":"n. f."},{"ts":1527814203,"i":10013,"p":"کرسۍ","f":"kUrsuy","g":"kUrsuy","e":"chair, seat, stool","c":"n. f."},{"ts":1527812045,"i":10087,"p":"کړکۍ","f":"kuRkúy","g":"kuRkuy","e":"window","c":"n. f."},{"ts":1527816026,"i":10120,"p":"کړۍ","f":"kaRuy","g":"kaRuy","e":"ring, curl; handcuffs, link, chain, fetter; loom; department, section","c":"n. f."},{"ts":1527813870,"i":10151,"p":"کشتۍ","f":"kishtúy","g":"kishtuy","e":"boat, ship","c":"n. f."},{"ts":1527821895,"i":10933,"p":"ګوډۍ","f":"gooDúy","g":"gooDuy","e":"doll","c":"n. f."},{"ts":1527814564,"i":10974,"p":"ګولۍ","f":"golúy","g":"goluy","e":"pill tablet; bullet","c":"n. f."},{"ts":1527811763,"i":11269,"p":"لکۍ","f":"lakuy","g":"lakuy","e":"tail","c":"n. f."},{"ts":1527812659,"i":13814,"p":"هګۍ","f":"haguy","g":"haguy","e":"egg","c":"n. f."},{"ts":1527821372,"i":13939,"p":"هوسۍ","f":"hosúy","g":"hosuy","e":"gazelle, antelope","c":"n. f."},{"ts":1527815154,"i":2190,"p":"پای","f":"paay","g":"paay","e":"end, finish, close, conclusion","c":"n. m."},{"ts":1527812594,"i":4553,"p":"ځای","f":"dzaay","g":"dzaay","e":"place, space","c":"n. m."},{"ts":1527812525,"i":4700,"p":"چای","f":"chaay","g":"chaay","e":"tea","c":"n. m."},{"ts":1527812783,"i":5459,"p":"خدای","f":"khUdaay","g":"khUdaay","e":"God, Lord","c":"n. m. anim.","ec":"God","ep":"gods"},{"ts":1527819514,"i":5953,"p":"دای","f":"daay","g":"daay","e":"tier, row, foundation (masonry etc.)","c":"n. m."},{"ts":1610797797756,"i":7399,"p":"سای","f":"saay","g":"saay","e":"hollow, depression","c":"n. m.","ec":"hollow"},{"ts":1527822345,"i":7629,"p":"سرای","f":"saráay","g":"saraay","e":"caravansary, inn, large house","c":"n. m.","ec":"carvansary"},{"ts":1586598425514,"i":1852,"p":"بوی","f":"booy","g":"booy","e":"smell","c":"n. m.","ec":"smell"},{"ts":1527814511,"i":5821,"p":"خوی","f":"khooy","g":"khooy","e":"character, nature, disposition, habit","c":"n. m."},{"ts":1566468540788,"i":8028,"p":"سوی","f":"sooy","g":"sooy","e":"rabbit","c":"n. m. anim. unisex","ec":"rabbit"}]; +export default words; \ No newline at end of file diff --git a/src/words/verbs.js b/src/words/verbs.js deleted file mode 100644 index 6ca5f18..0000000 --- a/src/words/verbs.js +++ /dev/null @@ -1,2 +0,0 @@ -const verbs = [{"entry":{"ts":1577383674332,"i":979,"p":"انګولل","f":"angolul, angwUlul","g":"angolul,angwUlul","e":"to howl, wail","c":"v. gramm. trans.","sepOo":true,"ec":"howl"},"def":"to howl"},{"entry":{"ts":1527818962,"i":2345,"p":"پرنجل","f":"prunjúl","g":"prunjul","e":"to sneeze","c":"v. gramm. trans.","ec":"sneeze"},"def":"to sneeze"},{"entry":{"ts":1527821425,"i":4098,"p":"ټوخل","f":"Tookhúl","g":"Tookhul","e":"to cough","c":"v. gramm. trans.","ec":"cough"},"def":"to cough"},{"entry":{"ts":1527812767,"i":5643,"p":"خندل","f":"khandul","g":"khandul","e":"to laugh","c":"v. gramm. trans.","psp":"خاند","psf":"khaand","ec":"laugh"},"def":"to laugh"},{"entry":{"ts":1605360223155,"i":6233,"p":"دنګل","f":"dangúl","g":"dangul","e":"to jump, leap, run, race","c":"v. gramm. trans.","psp":"دانګ","psf":"daang","ec":"jump"},"def":"to jump"},{"entry":{"ts":1605360127430,"i":7156,"p":"زنګل","f":"zangúl","g":"zangul","e":"to swing, rock (back and forth)","c":"v. gramm. trans.","psp":"زانګ","psf":"zaang","ec":"swing,swings,swinging,swung"},"def":"to swing"},{"entry":{"ts":1527812717,"i":7286,"p":"ژړل","f":"jzaRul","g":"jzaRul","e":"to cry","c":"v. gramm. trans.","psp":"ژاړ","psf":"jzaaR","ec":"cry"},"def":"to swing"},{"entry":{"ts":1591899573844,"i":13240,"p":"نڅل","f":"natsúl","g":"natsul","e":"to dance","c":"v. gramm. trans.","psp":"ناڅ","psf":"naats","ec":"dance"},"def":"to dance"},{"entry":{"ts":1527813473,"i":791,"p":"الوتل","f":"alwatul","g":"alwatul","e":"to fly","c":"v. intrans.","psp":"الوځ","psf":"aloodz","tppp":"الوت","tppf":"alwát","ec":"fly,flies,flying,flew,flown"},"def":"to fly"},{"entry":{"ts":1527814012,"i":1090,"p":"اوښتل","f":"awUxtul","g":"awUxtul","e":"to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon; to be sprained","c":"v. intrans.","psp":"اوړ","psf":"awR","ec":"pass","ep":"over"},"def":"to pass over"},{"entry":{"ts":1527822843,"i":1561,"p":"برېښېدل","f":"brexedúl","g":"brexedul","e":"to appear, seem; to shine, sparkle; to smart, have a pricking pain","c":"v. intrans.","shortIntrans":true,"ec":"appear"},"def":"to seem"},{"entry":{"ts":1527815183,"i":2781,"p":"پوهېدل","f":"pohedul","g":"pohedul","e":"to understand (to do the act of understanding)","c":"v. intrans.","ec":"understand,understand,understanding,understood"},"def":"to understand"},{"entry":{"ts":1527816495,"i":3438,"p":"تښتېدل","f":"tuxtedul","g":"tuxtedul","e":"to run off, escape, flee","c":"v. intrans.","shortIntrans":true,"ec":"escape"},"def":"to escape"},{"entry":{"ts":1527813022,"i":4101,"p":"ټوخېدل","f":"Tookhedul","g":"Tookhedul","e":"to cough","c":"v. intrans.","ec":"cough"},"def":"to cough"},{"entry":{"ts":1527817259,"i":2400,"p":"پرېوتل","f":"prewatul","g":"prewatul","e":"to fall, to lie down, to go down","c":"v. intrans. seperable","l":1527823376,"psp":"پرېوځ","psf":"prewudz","tppp":"پرېواته","tppf":"prewaatu","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"fall,falls,falling,fell,fallen"},"def":"to fall"},{"entry":{"ts":1577572987826,"i":4446,"p":"جنګېدل","f":"jangedul","g":"jangedul","e":"to fight, battle, war, to bump or crash into","c":"v. intrans.","ec":"fight,fights,fighting,fought"},"def":"to fight, bump into"},{"entry":{"ts":1527818535,"i":4563,"p":"ځړېدل","f":"dzaRedúl","g":"dzaRedul","e":"to hang, to be hung, to be lowered","c":"v. intrans.","ec":"hang,hangs,hanging,hung,hung"},"def":"to hang"},{"entry":{"ts":1527812273,"i":4587,"p":"ځلېدل","f":"dzaledul","g":"dzaledul","e":"to shine, glow, glitter","c":"v. intrans.","ec":"shine,shines,shining,shone"},"def":"to shine"},{"entry":{"ts":1577921634357,"i":4606,"p":"ځنډېدل","f":"dzanDedul","g":"dzanDedul","e":"to be delayed, postponed, held back, detained","c":"v. intrans.","ec":"be","ep":"delayed"},"def":"to be delayed"},{"entry":{"ts":1527814025,"i":5434,"p":"ختل","f":"khatul","g":"khatul","e":"to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...","c":"v. intrans.","psp":"خېژ","psf":"khejz","tppp":"خوت","tppf":"khot","ec":"climb"},"def":"to climb"},{"entry":{"ts":1527823376,"i":14057,"p":"وتل","f":"watul","g":"watul","e":"to go out, exit, leave, emerge","c":"v. intrans. irreg.","psp":"وځ","psf":"oodz","tppp":"واته","tppf":"waatu","ec":"go,goes,going,went,gone","ep":"out"},"def":"to go out"},{"entry":{"ts":1527814433,"i":5706,"p":"خوځېدل","f":"khwadzedul","g":"khwadzedul","e":"to shake, tremble, wiggle, move, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shaken"},"def":"to shake"},{"entry":{"ts":1527818980,"i":6680,"p":"رپېدل","f":"rapedúl","g":"rapedul","e":"to quiver, shake, flutter, shiver","c":"v. intrans.","ec":"quiver"},"def":"to shake"},{"entry":{"ts":1578191534500,"i":6698,"p":"رحمېدل","f":"rahmedul","g":"rahmedul","e":"to have mercy on, to have compassion on","c":"v. intrans.","shortIntrans":true,"ec":"have","ep":"mercy"},"def":"to have mercy"},{"entry":{"ts":1527813573,"i":6749,"p":"رسېدل","f":"rasedul","g":"rasedul","e":"reach, arrive; (fig.) understand, attain to; mature, ripen","c":"v. intrans.","shortIntrans":true,"ec":"reach"},"def":"to arrive"},{"entry":{"ts":1527813837,"i":7928,"p":"سوځېدل","f":"swadzedul","g":"swadzedul","e":"to burn","c":"v. intrans.","shortIntrans":true,"ec":"burn,burns,burning,burnt,burned"},"def":"to burn"},{"entry":{"ts":1527814597,"i":8255,"p":"شرمېدل","f":"sharmedul","g":"sharmedul","e":"to be ashamed, to be embarrassed, to be shy","c":"v. intrans.","ec":"be","ep":"ashamed"},"def":"to be ashamed"},{"entry":{"ts":1527821558,"i":8284,"p":"شړېدل","f":"shaRedúl","g":"shaRedul","e":"to be decomposed, break down, fall apart; to be boiled soft (meat)","c":"v. intrans.","ec":"fall","ep":"apart"},"def":"to break apart"},{"entry":{"ts":1527811516,"i":8356,"p":"شلېدل","f":"shledul","g":"shledul","e":"to be torn, broken, rent, broken, severed","c":"v. intrans.","shortIntrans":true,"ec":"be","ep":"torn"},"def":"to be torn"},{"entry":{"ts":1527812615,"i":9052,"p":"غځېدل","f":"ghadzedul","g":"ghadzedul","e":"stretch out, lie, be extended, expand","c":"v. intrans.","ec":"stretch","ep":"out"},"def":"to stretch out"},{"entry":{"ts":1527813680,"i":9130,"p":"غږېدل","f":"ghuGedul, ghaGedul","g":"ghugedul,ghagedul","e":"to speak, talk, converse, sing","c":"v. intrans.","ec":"speak,speaks,speaking,spoke"},"def":"to speak"},{"entry":{"ts":1527814867,"i":9247,"p":"غورځېدل","f":"ghwurdzedúl, ghoordzedúl","g":"ghwurdzedul,ghoordzedul","e":"to fall, jump, leap","c":"v. intrans.","shortIntrans":true,"ec":"fall,falls,falling,fell,fallen"},"def":"to fall"},{"entry":{"ts":1527823696,"i":9315,"p":"غولېدل","f":"ghwuledul","g":"ghwuledul","e":"to be deceived, cheated, fooled","c":"v. intrans.","ec":"be","ep":"deceived"},"def":"to be deceived"},{"entry":{"ts":1527812759,"i":10616,"p":"کېناستل","f":"kenaastul","g":"kenaastul","e":"to sit down, to have a seat","c":"v. intrans. irreg.","psp":"کېن","psf":"ken","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"sit,sits,sitting,sat","ep":"down"},"def":"to sit down"},{"entry":{"ts":1527812645,"i":10722,"p":"ګرځېدل","f":"gurdzedul","g":"gurdzedul","e":"to walk, wander, turn about; to become, to be","c":"v. intrans.","shortIntrans":true,"ec":"walk"},"def":"to walk around"},{"entry":{"ts":1527814430,"i":11196,"p":"لړزېدل","f":"laRzedul","g":"laRzedul","e":"to shake, shudder, tremble, vibrate","c":"v. intrans.","shortIntrans":true,"ec":"shake,shakes,shaking,shook,shook"},"def":"to tremble"},{"entry":{"ts":1527814085,"i":11281,"p":"لګېدل","f":"lagedúl, lugedúl","g":"lagedul,lugedul","e":"to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem","c":"v. intrans.","shortIntrans":true,"ec":"hit,hits,hitting,hit"},"def":"to touch"},{"entry":{"ts":1527813994,"i":11476,"p":"لوېدل","f":"lwedul","g":"lwedul","e":"to fall, to tumble, go down, settle","c":"v. intrans.","ec":"fall,falls,falling,fell,fallen"},"def":"to fall"},{"entry":{"ts":1527823019,"i":14377,"p":"وېرېدل","f":"weredúl","g":"weredul","e":"to be afraid, scared, to fear","c":"v. intrans.","ec":"be","ep":"afraid"},"def":"to be afraid"},{"entry":{"ts":1581086654898,"i":10595,"p":"کېدل","f":"kedul","g":"kedul","e":"to become _____","c":"v. intrans. irreg.","ssp":"ش","ssf":"sh","prp":"شول","prf":"shwul","pprtp":"شوی","pprtf":"shúwey","noOo":true,"ec":"become","ep":"_____"},"def":"to become"},{"entry":{"ts":1527812754,"i":10594,"p":"کېدل","f":"kedul","g":"kedul","e":"to happen, occur","c":"v. intrans. irreg.","ssp":"وش","ssf":"óosh","prp":"وشول","prf":"óoshwul","pprtp":"شوی","pprtf":"shúwey","diacExcept":true,"ec":"happen"},"def":"to happen"},{"entry":{"ts":1527815348,"i":3622,"p":"تلل","f":"tlul","g":"tlul","e":"to go","c":"v. intrans. irreg.","psp":"ځ","psf":"dz","ssp":"لاړ ش","ssf":"láaR sh","prp":"لاړ","prf":"láaR","ec":"go,goes,going,went,gone"},"def":"to go"},{"entry":{"ts":1527815216,"i":6572,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"},"def":"to come"},{"entry":{"ts":1527819674,"i":5109,"p":"څملاستل","f":"tsumlaastúl","g":"tsumlaastul","e":"to lie down","c":"v. intrans. seperable","l":1596485996977,"psp":"څمل","psf":"tsaml","noOo":true,"separationAtP":2,"separationAtF":4,"ec":"lay,lays,lying,lay,layed","ep":"down"},"def":"to lie down"},{"entry":{"ts":1527814617,"i":13685,"p":"نیول","f":"neewul","g":"neewul","e":"to catch, grab, take, arrest; bear (fruit)","c":"v. trans. irreg.","psp":"نیس","psf":"nees","ec":"catch,catches,catching,caught,caught"},"def":"to take"},{"entry":{"ts":1527811872,"i":224,"p":"اچول","f":"achawul","g":"achawul","e":"to put, pour, drop, throw, put on","c":"v. trans.","ec":"put,puts,putting,put,put"},"def":"to put on"},{"entry":{"ts":1527817298,"i":310,"p":"اخیستل","f":"akheestul","g":"akheestul","e":"to take, buy, purchase, receive; to shave, cut with scissors","c":"v. trans.","psp":"اخل","psf":"akhl","ec":"take,takes,taking,took,taken"},"def":"to take"},{"entry":{"ts":1527816127,"i":436,"p":"اړول","f":"aRawul","g":"aRawul","e":"to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack","c":"v. trans.","ec":"turn","ep":"over"},"def":"to turn over"},{"entry":{"ts":1527811605,"i":461,"p":"ازمویل","f":"azmoyul","g":"azmoyul","e":"to attempt, try; to experiment, test","c":"v. trans.","sepOo":true,"ec":"try"},"def":"to test"},{"entry":{"ts":1527812458,"i":538,"p":"استول","f":"astawul","g":"astawul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"},"def":"to send"},{"entry":{"ts":1527811397,"i":663,"p":"اغوستل","f":"aghostúl","g":"aghostul","e":"to wear, to put on (clothes)","c":"v. trans.","psp":"اغوند","psf":"aghond","ec":"wear,wears,wearing,wore,worn"},"def":"to wear"},{"entry":{"ts":1527816125,"i":795,"p":"الوزول","f":"alwuzawul","g":"alwuzawul","e":"to make fly, to toss, to release (birds); to blow up","c":"v. trans.","ec":"make,makes,making,made,made","ep":"fly"},"def":"to make fly"},{"entry":{"ts":1527816146,"i":1148,"p":"ایستل","f":"eestul","g":"eestul","e":"to throw out, discard, chuck, toss; to extract, to take out","c":"v. trans.","psp":"باس","psf":"baas","ec":"take,takes,taking,took,taken","ep":"out"},"def":"to take out"},{"entry":{"ts":1527817786,"i":1366,"p":"بخښل","f":"bakhxul","g":"bakhxul","e":"to forgive, to pardon, to give, grant","c":"v. trans.","ec":"forgive"},"def":"to forgive"},{"entry":{"ts":1527816092,"i":1688,"p":"بلل","f":"balul","g":"balul","e":"to call, invite; to consider, deem","c":"v. trans.","psp":"بول","psf":"bol","tppp":"باله","tppf":"baalu","ec":"deem"},"def":"to call, deem, consider"},{"entry":{"ts":1577389204616,"i":2290,"p":"پرانیستل","f":"praaneestul","g":"praaneestul","e":"to open; to undo; to initiate","c":"v. trans.","psp":"پرانیز","psf":"praaneez","noOo":true,"separationAtP":3,"separationAtF":4,"ec":"open"},"def":"to open"},{"entry":{"ts":1527816874,"i":2554,"p":"پلورل","f":"plorul","g":"plorul","e":"to sell","c":"v. trans.","ec":"sell,sells,selling,sold,sold"},"def":"to sell"},{"entry":{"ts":1527815190,"i":2389,"p":"پرېښودل","f":"prexodúl","g":"prexodul","e":"to leave, abandon, forsake, let go, allow","c":"v. trans. seperable irreg.","l":1527812280,"psp":"پرېږد","psf":"preGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"abandon"},"def":"to quit"},{"entry":{"ts":1527815216,"i":6572,"p":"راتلل","f":"raatlúl","g":"raatlul","e":"to come","c":"v. intrans. irreg.","psp":"راځ","psf":"raadz","ssp":"راش","ssf":"ráash","prp":"راغلل","prf":"ráaghlul","pprtp":"راغلی","pprtf":"raaghúley","tppp":"راغی","tppf":"ráaghey","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"come,comes,coming,came,come"},"def":"to come"},{"entry":{"ts":1527812284,"i":10606,"p":"کېښودل","f":"kexodul","g":"kexodul","e":"to put, to put down, to set in place","c":"v. trans. irreg.","psp":"ږد","psf":"Gd","ssp":"کېږد","ssf":"kéGd","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"put,puts,putting,put,put"},"def":"to put"},{"entry":{"ts":1577394422280,"i":2780,"p":"پوهول","f":"pohawul","g":"pohawul","e":"to explain, to try to make understand","c":"v. trans.","ec":"make","ep":"understand"},"def":"to make understand"},{"entry":{"ts":1527815165,"i":2870,"p":"پېژندل","f":"pejzandul","g":"pejzandul","e":"to recognize, know, meet","c":"v. trans.","psp":"پېژن","psf":"pejzan","tppp":"پېژاند","tppf":"pejzaand","ec":"recognize"},"def":"to recognize"},{"entry":{"ts":1527813405,"i":3356,"p":"تړل","f":"taRul","g":"taRul","e":"to connect, tie, bind, close","c":"v. trans.","tppp":"تاړه","tppf":"taaRu","ec":"tie,ties,tying,tied,tied"},"def":"to tie"},{"entry":{"ts":1527813394,"i":3984,"p":"ټاکل","f":"Taakul","g":"Taakul","e":"to select, appoint","c":"v. trans.","tppp":"ټاکه","tppf":"Taaku","ec":"appoint"},"def":"to select, appoint"},{"entry":{"ts":1527813755,"i":4622,"p":"ځورول","f":"dzawrawul","g":"dzawrawul","e":"to bother, irritate, torture, distress, vex, grind on","c":"v. trans.","ec":"bother"},"def":"to bother"},{"entry":{"ts":1527814586,"i":4842,"p":"چلول","f":"chalawul","g":"chalawul","e":"to drive, operate, handle, put forward, circulate","c":"v. trans.","ec":"drive,drives,driving,drove,drove"},"def":"to drive"},{"entry":{"ts":1527816564,"i":4956,"p":"چیچل","f":"cheechul","g":"cheechul","e":"to bite, chew, grind (teeth), clench (teeth), sting","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"},"def":"to bite"},{"entry":{"ts":1527812790,"i":5745,"p":"خوړل","f":"khoRul","g":"khoRul","e":"to eat, to bite","c":"v. trans.","psp":"خور","psf":"khor","tppp":"خوړ","tppf":"khoR","ec":"eat,eats,eating,ate,eaten"},"def":"to eat"},{"entry":{"ts":1527815489,"i":5927,"p":"داړل","f":"daaRul","g":"daaRul","e":"to bite, tear, gnaw","c":"v. trans.","ec":"bite,bites,biting,bitten,bitten"},"def":"to bite"},{"entry":{"ts":1527813572,"i":6746,"p":"رسول","f":"rasawul","g":"rasawul","e":"to deliver, to make arrive, provide, send, supply, bring to,","c":"v. trans.","ec":"deliver"},"def":"to deliver"},{"entry":{"ts":1527816064,"i":7095,"p":"زغمل","f":"zghamul","g":"zghamul","e":"to endure, bear, tolerate, take on, digest","c":"v. trans.","tppp":"زغامه","tppf":"zghaamu","ec":"endure"},"def":"to endure"},{"entry":{"ts":1527813637,"i":7506,"p":"ستایل","f":"staayul","g":"staayul","e":"to praise, commend, glorify, mention","c":"v. trans.","tppp":"ستایه","tppf":"staayu","ec":"praise"},"def":"to praise"},{"entry":{"ts":1527817750,"i":7774,"p":"سکل","f":"skul","g":"skul","e":"to drink","c":"v. trans.","ec":"drink,drinks,drinking,drank,drank"},"def":"to drink"},{"entry":{"ts":1527814596,"i":8254,"p":"شرمول","f":"shărmawul","g":"sharmawul","e":"to shame, to disgrace, to dishonor","c":"v. trans.","ec":"shame"},"def":"to shame"},{"entry":{"ts":1527814908,"i":8277,"p":"شړل","f":"shaRul","g":"shaRul","e":"to drive out, fire, evict, push out","c":"v. trans.","tppp":"شاړه","tppf":"shaaRu","ec":"drive,drives,driving,drove,drove","ep":"out"},"def":"to drive out"},{"entry":{"ts":1527815531,"i":8332,"p":"شکول","f":"shkawul","g":"shkawul","e":"to tear, to break of, to dig up, to pull out","c":"v. trans.","ec":"tear,tears,tearing,torn,torn"},"def":"to tear"},{"entry":{"ts":1527815296,"i":8359,"p":"شمارل","f":"shmaarul","g":"shmaarul","e":"to count","c":"v. trans.","ec":"count"},"def":"to count"},{"entry":{"ts":1527815273,"i":8387,"p":"شمېرل","f":"shmerul","g":"shmerul","e":"to count","c":"v. trans.","ec":"count"},"def":"to count"},{"entry":{"ts":1527811293,"i":8582,"p":"ښودل","f":"xodul","g":"xodul","e":"to show; to teach; to suit, look good with (fig.), befit","c":"v. trans.","psp":"ښای","psf":"xaay","ec":"show,shows,showing,showed,shown"},"def":"to show"},{"entry":{"ts":1527817865,"i":9051,"p":"غځول","f":"ghadzawul","g":"ghadzawul","e":"to extend, to stretch out, to expand","c":"v. trans.","ec":"extend"},"def":"to extend"},{"entry":{"ts":1527815886,"i":9197,"p":"غندل","f":"ghandul","g":"ghandul","e":"to condemn, reproach, to criticize","c":"v. trans.","tppp":"غانده","tppf":"ghaandu","ec":"condemn"},"def":"to condemn"},{"entry":{"ts":1527816122,"i":9244,"p":"غورځول","f":"ghoordzawul, ghwurdzawul","g":"ghoordzawul,ghwurdzawul","e":"to throw, hurl, fling","c":"v. trans.","ec":"throw,throws,throwing,threw,thrown"},"def":"to throw"},{"entry":{"ts":1527812627,"i":9292,"p":"غوښتل","f":"ghwuxtul, ghoxtul","g":"ghwuxtul,ghoxtul","e":"to want, to request","c":"v. trans.","psp":"غواړ","psf":"ghwaaR","ec":"want"},"def":"to want"},{"entry":{"ts":1527819301,"i":9312,"p":"غولول","f":"ghwulawúl","g":"ghwulawul","e":"to deceive, cheat, fool","c":"v. trans.","ec":"deceive"},"def":"to deceive"},{"entry":{"ts":1527813568,"i":9812,"p":"کارول","f":"kaarawul","g":"kaarawul","e":"to use, utilize","c":"v. trans.","ec":"use"},"def":"to use"},{"entry":{"ts":1527816300,"i":10032,"p":"کرل","f":"karul","g":"karul","e":"to sow, to plant","c":"v. trans.","tppp":"کاره","tppf":"kaaru","ec":"sow"},"def":"to sow, plant"},{"entry":{"ts":1527817577,"i":10183,"p":"کښېښودل","f":"kxexodul","g":"kxexodul","e":"to put, to put down, to set in place","c":"v. trans.","psp":"ږد","psf":"Gd","ssp":"کښېږد","ssf":"kxéGd","noOo":true,"separationAtP":3,"separationAtF":3,"ec":"put,puts,putting,put"},"def":"to put"},{"entry":{"ts":1527811289,"i":10622,"p":"کېنول","f":"kenawul","g":"kenawul","e":"to seat, to make or have someone sit down","c":"v. trans.","noOo":true,"ec":"seat,seats,seating,sat,sat"},"def":"to seat"},{"entry":{"ts":1527817661,"i":10645,"p":"ګالل","f":"gaalul","g":"gaalul","e":"to bear up under (diffucult things), to suffer, to take, to endure","c":"v. trans.","ec":"endure"},"def":"to endure"},{"entry":{"ts":1527812649,"i":10667,"p":"ګټل","f":"gaTul, guTul","g":"gaTul,guTul","e":"to earn (money), to win","c":"v. trans.","tppp":"ګاټه","tppf":"gaaTu","ec":"earn"},"def":"to win, earn"},{"entry":{"ts":1527812612,"i":10862,"p":"ګنډل","f":"ganDul","g":"ganDul","e":"to sew, mend, make, knit","c":"v. trans.","tppp":"ګانډه","tppf":"gaanDu","ec":"sew,sews,sewing,sewed,sown"},"def":"to sew"},{"entry":{"ts":1527812000,"i":10883,"p":"ګڼل","f":"gaNul, guNul","g":"gaNul,guNul","e":"to count, consider, reckon, suppose, assume","c":"v. trans.","tppp":"ګاڼه","tppf":"gaaNu","ec":"deem"},"def":"to consider"},{"entry":{"ts":1527812873,"i":11440,"p":"لوستل","f":"lwastul, lwustul","g":"lwastul,lwustul","e":"to read, study","c":"v. trans. irreg.","psp":"لول","psf":"lwul","tppp":"لوست","tppf":"lwast","ec":"read,reads,reading,read,read"},"def":"to read"},{"entry":{"ts":1527812869,"i":11155,"p":"لټول","f":"luTawul","g":"luTawul","e":"to search, seek","c":"v. trans.","ec":"search"},"def":"to search"},{"entry":{"ts":1527813866,"i":11510,"p":"لېږل","f":"leGul","g":"legul","e":"to send","c":"v. trans.","ec":"send,sends,sending,sent,sent"},"def":"to send"},{"entry":{"ts":1527812856,"i":11520,"p":"لیکل","f":"leekul","g":"leekul","e":"to write","c":"v. trans.","ec":"write,writes,writing,wrote,wrote"},"def":"to write"},{"entry":{"ts":1527815085,"i":12756,"p":"منل","f":"manul","g":"manul","e":"to accept, to believe","c":"v. trans.","tppp":"مانه","tppf":"maanu","ec":"accepting"},"def":"to accept"},{"entry":{"ts":1527815399,"i":14338,"p":"وهل","f":"wahul","g":"wahul","e":"to hit","c":"v. trans.","tppp":"واهه","tppf":"waahu","ec":"hit,hits,hitting,hit,hit"},"def":"to hit"},{"entry":{"ts":1527823020,"i":14376,"p":"وېرول","f":"werawúl","g":"werawul","e":"to make afraid, to scare, to make fear","c":"v. trans.","ec":"scare"},"def":"to scare"},{"entry":{"ts":1527811701,"i":14389,"p":"وېشل","f":"weshul","g":"weshul","e":"divide, distribute, share","c":"v. trans.","ec":"divide"},"def":"to divide"},{"entry":{"ts":1579015359582,"i":10529,"p":"کول","f":"kawul","g":"kawul","e":"to make ____ ____ (as in \"He's making me angry.\")","c":"v. trans. irreg.","ssp":"کړ","ssf":"kR","prp":"کړل","prf":"kRul","pprtp":"کړی","pprtf":"kúRey","noOo":true,"ec":"make,makes,making,made,made","ep":"_____"},"def":"to make ____ ____"},{"entry":{"ts":1527812752,"i":10528,"p":"کول","f":"kawul","g":"kawul","e":"to do (an action or activity)","c":"v. trans. irreg.","ssp":"وکړ","ssf":"óokR","prp":"وکړل","prf":"óokRul","pprtp":"کړی","pprtf":"kúRey","diacExcept":true,"ec":"do,does,doing,did,done"},"def":"to do"},{"entry":{"ts":1527816865,"i":14196,"p":"وړل","f":"wuRúl, oRúl, wRul","g":"wuRul,oRul,wRul","e":"to take, carry, bear, move (inanimate objects); to win, earn (subjunctive یوسي - yósee or ویسي - wéesee, simple past یو یې وړلو - yo ye wRulo)","c":"v. trans. irreg.","ssp":"یوس","ssf":"yos","prp":"یوړل","prf":"yóRul","noOo":true,"separationAtP":2,"separationAtF":2,"diacExcept":true,"ec":"take,takes,taking,took,taken"},"def":"to bring"},{"entry":{"ts":1527815214,"i":6649,"p":"راوړل","f":"raawRúl","g":"raawRul","e":"to bring, deliver (inanimate objects)","c":"v. trans. irreg.","tppp":"راووړ","tppf":"raawoR","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"},"def":"to bring"},{"entry":{"ts":1527819827,"i":6650,"p":"راوستل","f":"raawustúl","g":"raawustul","e":"to bring, deliver (animate objects), obtain, extract","c":"v. trans. irreg.","psp":"راول","psf":"raawul","noOo":true,"separationAtP":2,"separationAtF":3,"ec":"bring,brings,bringing,brought,brought"},"def":"to bring"},{"entry":{"ts":1527812507,"i":1791,"p":"بوتلل","f":"botlul","g":"botlul","e":"to take, bring, send (animate objects)","c":"v. trans. seperable","l":1527815348,"psp":"بیای","psf":"byaay","ssp":"بوځ","ssf":"bódz","noOo":true,"separationAtP":2,"separationAtF":2,"ec":"take,takes,taking,took,taken"},"def":"to take/bring"},{"entry":{"ts":1527812275,"i":11498,"p":"لیدل","f":"leedul","g":"leedul","e":"to see","c":"v. trans./gramm. trans.","psp":"وین","psf":"ween","tppp":"لید","tppf":"leed","ec":"see,sees,seeing,saw,seen"},"def":"to see"},{"entry":{"ts":1577049208257,"i":1060,"p":"اورېدل","f":"awredul","g":"awredul","e":"to hear, listen","c":"v. trans./gramm. trans.","psp":"اور","psf":"awr","tppp":"اورېد","tppf":"awred","ec":"hear,hears,hearing,heard"},"def":"to hear"},{"entry":{"ts":1527812362,"i":9451,"p":"فرمایل","f":"farmaayul","g":"farmaayul","e":"to speak, order, ordain (polite form)","c":"v. trans./gramm. trans.","ec":"speak,speaks,speaking,spoke,spoken"},"def":"to declare"},{"entry":{"ts":1527812751,"i":9929,"p":"کتل","f":"katul","g":"katul","e":"to look, see, watch, examine; to meet with","c":"v. trans./gramm. trans.","psp":"ګور","psf":"gor","tppp":"کوت","tppf":"kot","ec":"look"},"def":"to look"},{"entry":{"ts":1527815396,"i":14053,"p":"وایل","f":"waayul","g":"waayul","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"},"def":"to say"},{"entry":{"ts":1527817013,"i":14398,"p":"ویل","f":"wayul, wayl","g":"wayul,wayl","e":"to say, to tell","c":"v. trans./gramm. trans.","ec":"say,says,saying,said"},"def":"to say"}]; -export default verbs; \ No newline at end of file diff --git a/src/words/words.ts b/src/words/words.ts new file mode 100644 index 0000000..ecd5d2f --- /dev/null +++ b/src/words/words.ts @@ -0,0 +1,40 @@ +import rawWords from "./raw-words"; +import { + isAdjective, + // isFemNoun, + // isMascNoun, + isNoun, + isVerb, +} from "../lib/type-predicates"; +import { categorize, intoPatterns } from "../lib/categorize"; + +export const words = categorize(rawWords, { + "nouns": isNoun, + "adjectives": isAdjective, + "verbs": isVerb, +}); + +console.log( + Object.entries( + intoPatterns([ + ...words.nouns, + ...words.adjectives + ]) + ).reduce((ob, [key, arr]) => { + return { + ...ob, + [key]: arr.map(a => `${a.f} - ${a.p} - ${a.c}`), + }; + }, {}) +); + +// const genderedNouns = categorize( +// words.nouns, +// { +// "masc": isMascNoun, +// "fem": isFemNoun, +// }, +// ); + +// console.log(genderedNouns); + diff --git a/yarn.lock b/yarn.lock index 9585c76..55f002b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1619,6 +1619,15 @@ pbf "^3.2.1" rambda "^6.7.0" +"@lingdocs/pashto-inflector@^1.2.6": + version "1.2.6" + resolved "https://npm.lingdocs.com/@lingdocs%2fpashto-inflector/-/pashto-inflector-1.2.6.tgz#41c3d8e663d4b4c1ef37bd49d7de536e05776a4d" + integrity sha512-7FiMasn312whe9izP+E/b2Img4pUf2wzPv8Y+ZHMqtG9AhAatlKYC/IiS8PoG+EPXJ1BoSQ8UmUMao5qmu0G+w== + dependencies: + classnames "^2.2.6" + pbf "^3.2.1" + rambda "^6.7.0" + "@mdx-js/mdx@^0.15.5": version "0.15.7" resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-0.15.7.tgz#5fde5841d7b6f4c78f80c19fff559532af5ce5ad"
Correct PK w/ ي ✔