diff --git a/App.tsx b/App.tsx index 0331767..812255c 100644 --- a/App.tsx +++ b/App.tsx @@ -15,6 +15,10 @@ import { MalayalamLibraryPage } from './components/malayalam/MalayalamLibraryPag import { GitaIndexPage } from './components/gita/GitaIndexPage'; import { GitaSthitaprajnaPage } from './components/gita/GitaSthitaprajnaPage'; +// Free Tier-1 chapter reader — lazy-loaded so its ~468 KB generated chapter data +// (dynamically imported inside the page) stays out of the initial bundle. +const GitaChapter2Page = React.lazy(() => import('./components/gita/GitaChapter2Page')); + // Published local suttas — real IDs, rendered from bundled packets (no API calls). // Add an entry here to publish a sutta at a real, linkable URL like /sutta/mn10. const LOCAL_SUTTA_PACKETS: Record = { @@ -140,6 +144,14 @@ const App: React.FC = () => { if (pathname === '/gita' || pathname === '/gita/') { return ; } + // Free Tier-1 chapters (mechanical: Devanāgarī + akshara sounds + MW glosses). + if (pathname === '/gita/chapter/2' || pathname === '/gita/chapter/2/') { + return ( + }> + + + ); + } if (pathname.startsWith('/gita/')) { return ; } diff --git a/components/gita/GitaChapter2Page.tsx b/components/gita/GitaChapter2Page.tsx new file mode 100644 index 0000000..1db8241 --- /dev/null +++ b/components/gita/GitaChapter2Page.tsx @@ -0,0 +1,221 @@ +import React, { useEffect, useRef, useState } from 'react'; +import { ConceptInterlinear } from '../liturgy/concept/ConceptInterlinear'; +import type { AlignSegment } from '../../types/liturgyAlign'; + +const SERIF = "'Cardo', 'Gentium Plus', 'Noto Serif', serif"; +const DEVA = "'Noto Serif Devanagari', 'Devanagari MT', 'Kohinoor Devanagari', serif"; + +/** Reader preferences — persisted so the choice survives visits. */ +type ReaderPrefs = { tooltips: boolean; scale: number }; +const PREFS_KEY = 'gita-reader-prefs'; +const loadPrefs = (): ReaderPrefs => { + try { + const raw = localStorage.getItem(PREFS_KEY); + if (raw) { + const p = JSON.parse(raw); + return { tooltips: p.tooltips !== false, scale: typeof p.scale === 'number' ? p.scale : 1 }; + } + } catch { + /* private mode / parse error → defaults */ + } + return { tooltips: true, scale: 1 }; +}; + +/** + * Gītā chapter 2 — the FREE TIER-1 reader (`/gita/chapter/2`). All 72 verses of + * Sāṅkhya-yoga rendered from mechanical sources only: written Devanāgarī with + * the sound of every akshara beneath it (deterministic romanizer), and a + * Monier-Williams dictionary gloss on hover. NO alignment threads and no + * authored translation — those are the curated Tier-2 upgrade (see 2.50–2.72, + * the sthitaprajña passage, for how a fully-curated passage reads). + * + * Etymology mode (sound ↔ script, syllable by syllable) works in full from the + * deterministic layer alone. The page shell is the studio's (settings gear: + * tooltips on/off + text size; honest provenance footer). + */ +export const GitaChapter2Page: React.FC = () => { + const [prefs, setPrefs] = useState(loadPrefs); + const [settingsOpen, setSettingsOpen] = useState(false); + const panelRef = useRef(null); + + // The generated chapter data is ~468 KB — code-split it out of the initial + // bundle (the LazyLocalSutta pattern) so it loads only when this page opens. + const [segments, setSegments] = useState(null); + useEffect(() => { + let cancelled = false; + import('../../data/gita/chapter2-tier1').then((m) => { + if (!cancelled) setSegments(m.GITA_CHAPTER2_TIER1); + }); + return () => { + cancelled = true; + }; + }, []); + + const update = (patch: Partial) => { + setPrefs((prev) => { + const next = { ...prev, ...patch }; + try { + localStorage.setItem(PREFS_KEY, JSON.stringify(next)); + } catch { + /* best-effort persistence */ + } + return next; + }); + }; + + // Root font-size drives every rem unit in the interlinear. Reset on leave. + useEffect(() => { + document.documentElement.style.fontSize = `${Math.round(prefs.scale * 100)}%`; + return () => { + document.documentElement.style.fontSize = ''; + }; + }, [prefs.scale]); + + // Close the panel on outside click or Escape. + useEffect(() => { + if (!settingsOpen) return; + const onDown = (e: MouseEvent) => { + if (panelRef.current && !panelRef.current.contains(e.target as Node)) setSettingsOpen(false); + }; + const onKey = (e: KeyboardEvent) => { + if (e.key === 'Escape') setSettingsOpen(false); + }; + const t = setTimeout(() => document.addEventListener('mousedown', onDown), 0); + window.addEventListener('keydown', onKey); + return () => { + clearTimeout(t); + document.removeEventListener('mousedown', onDown); + window.removeEventListener('keydown', onKey); + }; + }, [settingsOpen]); + + return ( +
+
+
+ + ← Bhagavad Gītā + + + {/* Settings gear — the studio pattern */} +
+ + + {settingsOpen && ( +
+
+ Reader +
+ + +

+ Off = quiet reading: the sounds stay, the meaning popups don't. +

+ +
+
+ Text size + {Math.round(prefs.scale * 100)}% +
+
+ Aa + update({ scale: Number(e.target.value) })} + className="w-full accent-emerald-500" + aria-label="Text size" + /> + Aa +
+
+
+ )} +
+
+ +

+ साङ्ख्ययोगः +

+

+ Bhagavad Gītā · chapter 2 · all 72 verses · the whole of Sāṅkhya-yoga +

+ + {/* Honest labeling: what is mechanical here, and what the curated upgrade adds. */} +
+

+ A free, mechanical reading. Every layer here is + drawn from public sources with no translation written by anyone: +

+
    +
  • · Sanskrit — the mūla from sa.wikisource (public domain), word-for-word as printed.
  • +
  • · Sound — every akshara romanized by a deterministic transliterator; nothing guessed.
  • +
  • · Meaning — a Monier-Williams dictionary gloss per word (public domain), found by mechanical sandhi-splitting. Some words show no gloss rather than a guess.
  • +
+

+ What's not here yet: alignment threads and a + reviewed English witness — the curated Tier-2 upgrade. + See 2.50–2.72, the sthitaprajña passage, for how a fully-curated passage reads. +

+
+ + {segments ? ( + + ) : ( +

+ loading the chapter… +

+ )} + +

+ Sanskrit text:{' '} + + sa.wikisource + {' '} + (public domain) · glosses:{' '} + + Monier-Williams + {' '} + dictionary (public domain) · padaccheda by rule-based sandhi analysis — mechanical, unreviewed +

+
+
+ ); +}; + +export default GitaChapter2Page; diff --git a/components/gita/GitaIndexPage.tsx b/components/gita/GitaIndexPage.tsx index f0a6a1f..8baedcb 100644 --- a/components/gita/GitaIndexPage.tsx +++ b/components/gita/GitaIndexPage.tsx @@ -95,9 +95,35 @@ export const GitaIndexPage: React.FC = () => ( + +
+ + साङ्ख्ययोगः + + + 2.1–2.72 + +
+

+ The whole of chapter 2, read free — every syllable sounded, every word given a + dictionary meaning. The mechanical layer, over all 72 verses. +

+
+ ◇ all 72 verses · free layer + every syllable sounded + Monier-Williams glosses + threads: curated upgrade +
+
+

- Other passages join as they are curated — the mūla source and the pipeline are - in place; each is one careful pass away. + Two layers: a free mechanical reading of every + chapter (Devanāgarī + sounds + dictionary glosses), and a hand-curated upgrade + (alignment threads + a reviewed English witness) for key passages. The mūla source and the + pipeline are in place.

diff --git a/data/gita/chapter2-glosses.json b/data/gita/chapter2-glosses.json new file mode 100644 index 0000000..71f02be --- /dev/null +++ b/data/gita/chapter2-glosses.json @@ -0,0 +1,15018 @@ +{ + "meta": { + "source": "sa.wikisource.org भगवद्गीता/साङ्ख्ययोगः (public domain)", + "chapter": 2, + "padaccheda": "sanskrit_parser 0.2.6 (rule-based sandhi split + morphological stemming)", + "dictionary": "Monier-Williams (Cologne getword.php, transLit=slp1), first-substantive-sense head-gloss" + }, + "verses": { + "1s": { + "line": "सञ्जय उवाच", + "tokens": [ + { + "surface": "सञ्जय", + "isMarker": false, + "gloss": "Sañjaya", + "lemmas": [ + "saYjaya" + ], + "pieces": [ + { + "slp": "saYjaya", + "stem": "saYjaya", + "gloss": "Sañjaya", + "override": true + } + ] + }, + { + "surface": "उवाच", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "1a": { + "line": "तं तथा कृपयाविष्टमश्रुपूर्णाकुलेक्षणम् ।", + "tokens": [ + { + "surface": "तं", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tam", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "तथा", + "isMarker": false, + "gloss": "so, in that way", + "lemmas": [ + "taTA" + ], + "pieces": [ + { + "slp": "taTA", + "stem": "taTA", + "gloss": "so, in that way", + "override": true + } + ] + }, + { + "surface": "कृपयाविष्टमश्रुपूर्णाकुलेक्षणम्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kfpA", + "Avizwa", + "aSrupUrRa", + "akulA", + "kzaRa" + ], + "pieces": [ + { + "slp": "kfpayA", + "stem": "kfpA", + "gloss": "N. of a man, RV. viii, 3" + }, + { + "slp": "Avizwam", + "stem": "Avizwa", + "gloss": "entered" + }, + { + "slp": "aSrupUrRa", + "stem": "aSrupUrRa", + "gloss": "filled with tears" + }, + { + "slp": "akule", + "stem": "akulA", + "gloss": "not of good family, low" + }, + { + "slp": "kzaRam", + "stem": "kzaRa", + "gloss": "any instantaneous point of time, instant, twinkling of an eye" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "1b": { + "line": "विषीदन्तमिदं वाक्यमुवाच मधुसूदनः ॥२- १॥", + "tokens": [ + { + "surface": "विषीदन्तमिदं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vizin", + "id", + "antama", + "da" + ], + "pieces": [ + { + "slp": "vizI", + "stem": "vizin", + "gloss": "poisoned, Pañcar" + }, + { + "slp": "id", + "stem": "id", + "gloss": "Ved. even, just, only" + }, + { + "slp": "antami", + "stem": "antama", + "gloss": "next, nearest" + }, + { + "slp": "dam", + "stem": "da", + "gloss": "id" + } + ] + }, + { + "surface": "वाक्यमुवाच", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vAkya", + "vac" + ], + "pieces": [ + { + "slp": "vAkyam", + "stem": "vAkya", + "gloss": "&c. See p. 936, col. 2" + }, + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "मधुसूदनः", + "isMarker": false, + "gloss": "‘destroyer of honey’, a bee", + "lemmas": [ + "maDusUdana" + ], + "pieces": [ + { + "slp": "maDusUdanaH", + "stem": "maDusUdana", + "gloss": "‘destroyer of honey’, a bee" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "2s": { + "line": "श्रीभगवानुवाच", + "tokens": [ + { + "surface": "श्रीभगवानुवाच", + "isMarker": false, + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "lemmas": [ + "SrI", + "Bagavat", + "vac" + ], + "pieces": [ + { + "slp": "SrI", + "stem": "SrI", + "gloss": "to mix, mingle, cook" + }, + { + "slp": "BagavAn", + "stem": "Bagavat", + "gloss": "the Blessed One", + "override": true + }, + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "2a": { + "line": "कुतस्त्वा कश्मलमिदं विषमे समुपस्थितम् ।", + "tokens": [ + { + "surface": "कुतस्त्वा", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kutas", + "yuzmad" + ], + "pieces": [ + { + "slp": "kutas", + "stem": "kutas", + "gloss": "from whom?, RV. i, 164" + }, + { + "slp": "tvA", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "कश्मलमिदं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kaSmala", + "ayam" + ], + "pieces": [ + { + "slp": "kaSmalam", + "stem": "kaSmala", + "gloss": "foul, dirty, impure" + }, + { + "slp": "idam", + "stem": "ayam", + "gloss": "this one. See idam" + } + ] + }, + { + "surface": "विषमे", + "isMarker": false, + "gloss": "uneven, rugged, rough", + "lemmas": [ + "vizama" + ], + "pieces": [ + { + "slp": "vizame", + "stem": "vizama", + "gloss": "uneven, rugged, rough" + } + ] + }, + { + "surface": "समुपस्थितम्", + "isMarker": false, + "gloss": "approximated, approached, come to", + "lemmas": [ + "samupasTita" + ], + "pieces": [ + { + "slp": "samupasTitam", + "stem": "samupasTita", + "gloss": "approximated, approached, come to" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "2b": { + "line": "अनार्यजुष्टमस्वर्ग्यमकीर्तिकरमर्जुन ॥२- २॥", + "tokens": [ + { + "surface": "अनार्यजुष्टमस्वर्ग्यमकीर्तिकरमर्जुन", + "isMarker": false, + "gloss": "", + "lemmas": [ + "anAryajuzwa", + "asvargya", + "akIrtikara", + "arjuna" + ], + "pieces": [ + { + "slp": "anAryajuzwam", + "stem": "anAryajuzwa", + "gloss": "practised, observed, or possessed by non-Āryas" + }, + { + "slp": "asvargyam", + "stem": "asvargya", + "gloss": "not leading to heaven, ŚBr. x" + }, + { + "slp": "akIrtikaram", + "stem": "akIrtikara", + "gloss": "causing disgrace, disparaging, insulting" + }, + { + "slp": "arjuna", + "stem": "arjuna", + "gloss": "Arjuna", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "3a": { + "line": "क्लैब्यं मा स्म गमः पार्थ नैतत्त्वय्युपपद्यते ।", + "tokens": [ + { + "surface": "क्लैब्यं", + "isMarker": false, + "gloss": "impotence, TS. ii", + "lemmas": [ + "klEbya" + ], + "pieces": [ + { + "slp": "klEbyam", + "stem": "klEbya", + "gloss": "impotence, TS. ii" + } + ] + }, + { + "surface": "मा", + "isMarker": false, + "gloss": "do not", + "lemmas": [ + "mA" + ], + "pieces": [ + { + "slp": "mA", + "stem": "mA", + "gloss": "do not", + "override": true + } + ] + }, + { + "surface": "स्म", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sma" + ], + "pieces": [ + { + "slp": "sma", + "stem": "sma", + "gloss": "a particle perhaps originally equivalent to ‘ever’, ‘always’" + } + ] + }, + { + "surface": "गमः", + "isMarker": false, + "gloss": "to go, move, go away", + "lemmas": [ + "gam" + ], + "pieces": [ + { + "slp": "gamaH", + "stem": "gam", + "gloss": "to go, move, go away" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "नैतत्त्वय्युपपद्यते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nA", + "etad", + "yuzmad", + "upa", + "pad" + ], + "pieces": [ + { + "slp": "nA", + "stem": "nA", + "gloss": "thin, spare" + }, + { + "slp": "etad", + "stem": "etad", + "gloss": "this", + "override": true + }, + { + "slp": "tvayi", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + }, + { + "slp": "upa", + "stem": "upa", + "gloss": "towards, near to, by the side of" + }, + { + "slp": "padyate", + "stem": "pad", + "gloss": "to stand fast or fixed, Dhātup. iii, 1" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "3b": { + "line": "क्षुद्रं हृदयदौर्बल्यं त्यक्त्वोत्तिष्ठ परन्तप ॥२- ३॥", + "tokens": [ + { + "surface": "क्षुद्रं", + "isMarker": false, + "gloss": "minute, diminutive, tiny", + "lemmas": [ + "kzudra" + ], + "pieces": [ + { + "slp": "kzudram", + "stem": "kzudra", + "gloss": "minute, diminutive, tiny" + } + ] + }, + { + "surface": "हृदयदौर्बल्यं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "hfdayadOrbalya" + ], + "pieces": [ + { + "slp": "hfdayadOrbalyam", + "stem": "hfdayadOrbalya", + "gloss": "weakness of h˚, faintheartedness" + } + ] + }, + { + "surface": "त्यक्त्वोत्तिष्ठ", + "isMarker": false, + "gloss": "to leave, abandon, quit + a particle of doubt or deliberation + to stand, stand firmly, station one's self", + "lemmas": [ + "tyaj", + "ut", + "sTA" + ], + "pieces": [ + { + "slp": "tyaktvA", + "stem": "tyaj", + "gloss": "to leave, abandon, quit" + }, + { + "slp": "ut", + "stem": "ut", + "gloss": "a particle of doubt or deliberation" + }, + { + "slp": "tizWa", + "stem": "sTA", + "gloss": "to stand, stand firmly, station one's self" + } + ] + }, + { + "surface": "परन्तप", + "isMarker": false, + "gloss": "", + "lemmas": [ + "para", + "tap" + ], + "pieces": [ + { + "slp": "param", + "stem": "para", + "gloss": "far, distant, remote" + }, + { + "slp": "tapa", + "stem": "tap", + "gloss": "to rule, Dhātup. xxvi, 50" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "4s": { + "line": "अर्जुन उवाच", + "tokens": [ + { + "surface": "अर्जुन", + "isMarker": false, + "gloss": "Arjuna", + "lemmas": [ + "arjuna" + ], + "pieces": [ + { + "slp": "arjuna", + "stem": "arjuna", + "gloss": "Arjuna", + "override": true + } + ] + }, + { + "surface": "उवाच", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "4a": { + "line": "कथं भीष्ममहं संख्ये द्रोणं च मधुसूदन ।", + "tokens": [ + { + "surface": "कथं", + "isMarker": false, + "gloss": "how? in what manner? whence?", + "lemmas": [ + "kaTam" + ], + "pieces": [ + { + "slp": "kaTam", + "stem": "kaTam", + "gloss": "how? in what manner? whence?" + } + ] + }, + { + "surface": "भीष्ममहं", + "isMarker": false, + "gloss": "terrible, dreadful, ŚBr. &c. &c + base of the first person pl, as used in comp", + "lemmas": [ + "BIzma", + "asmad" + ], + "pieces": [ + { + "slp": "BIzmam", + "stem": "BIzma", + "gloss": "terrible, dreadful, ŚBr. &c. &c" + }, + { + "slp": "aham", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "संख्ये", + "isMarker": false, + "gloss": "to reckon or count up, sum up, enumerate", + "lemmas": [ + "saMKyA" + ], + "pieces": [ + { + "slp": "saMKye", + "stem": "saMKyA", + "gloss": "to reckon or count up, sum up, enumerate" + } + ] + }, + { + "surface": "द्रोणं", + "isMarker": false, + "gloss": "a wooden vessel, bucket, trough &c", + "lemmas": [ + "droRa" + ], + "pieces": [ + { + "slp": "droRam", + "stem": "droRa", + "gloss": "a wooden vessel, bucket, trough &c" + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "मधुसूदन", + "isMarker": false, + "gloss": "‘destroyer of honey’, a bee", + "lemmas": [ + "maDusUdana" + ], + "pieces": [ + { + "slp": "maDusUdana", + "stem": "maDusUdana", + "gloss": "‘destroyer of honey’, a bee" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "4b": { + "line": "इषुभिः प्रति योत्स्यामि पूजार्हावरिसूदन ॥२- ४॥", + "tokens": [ + { + "surface": "इषुभिः", + "isMarker": false, + "gloss": "an arrow", + "lemmas": [ + "izu" + ], + "pieces": [ + { + "slp": "izuBiH", + "stem": "izu", + "gloss": "an arrow" + } + ] + }, + { + "surface": "प्रति", + "isMarker": false, + "gloss": "towards, near to", + "lemmas": [ + "prati" + ], + "pieces": [ + { + "slp": "prati", + "stem": "prati", + "gloss": "towards, near to" + } + ] + }, + { + "surface": "योत्स्यामि", + "isMarker": false, + "gloss": "to fight, wage war, oppose or overcome in battle", + "lemmas": [ + "yuD" + ], + "pieces": [ + { + "slp": "yotsyAmi", + "stem": "yuD", + "gloss": "to fight, wage war, oppose or overcome in battle" + } + ] + }, + { + "surface": "पूजार्हावरिसूदन", + "isMarker": false, + "gloss": "worthy of reverence or honour, venerable, respectable + destroyer of foes", + "lemmas": [ + "pUjArha", + "arisUdana" + ], + "pieces": [ + { + "slp": "pUjArhO", + "stem": "pUjArha", + "gloss": "worthy of reverence or honour, venerable, respectable" + }, + { + "slp": "arisUdana", + "stem": "arisUdana", + "gloss": "destroyer of foes" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "5a": { + "line": "गुरूनहत्वा हि महानुभावान् श्रेयो भोक्तुं भैक्ष्यमपीह लोके ।", + "tokens": [ + { + "surface": "गुरूनहत्वा", + "isMarker": false, + "gloss": "heavy, weighty, RV. i + to laugh, smile, laugh at + or", + "lemmas": [ + "guru", + "has", + "vA" + ], + "pieces": [ + { + "slp": "gurUn", + "stem": "guru", + "gloss": "heavy, weighty, RV. i" + }, + { + "slp": "ahat", + "stem": "has", + "gloss": "to laugh, smile, laugh at" + }, + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "महानुभावान्", + "isMarker": false, + "gloss": "of great might, mighty", + "lemmas": [ + "mahAnuBAva" + ], + "pieces": [ + { + "slp": "mahAnuBAvAn", + "stem": "mahAnuBAva", + "gloss": "of great might, mighty" + } + ] + }, + { + "surface": "श्रेयो", + "isMarker": false, + "gloss": "more splendid or beautiful, more excellent or distinguished, superior", + "lemmas": [ + "Sreyas" + ], + "pieces": [ + { + "slp": "Sreyas", + "stem": "Sreyas", + "gloss": "more splendid or beautiful, more excellent or distinguished, superior" + } + ] + }, + { + "surface": "भोक्तुं", + "isMarker": false, + "gloss": "Ba aspirate of ba + tinge, ray, light", + "lemmas": [ + "Ba", + "aktu" + ], + "pieces": [ + { + "slp": "Bas", + "stem": "Ba", + "gloss": "Ba aspirate of ba" + }, + { + "slp": "aktum", + "stem": "aktu", + "gloss": "tinge, ray, light" + } + ] + }, + { + "surface": "भैक्ष्यमपीह", + "isMarker": false, + "gloss": "w.r. for BEkza + also, even + attempt", + "lemmas": [ + "BEkzya", + "api", + "Iha" + ], + "pieces": [ + { + "slp": "BEkzyam", + "stem": "BEkzya", + "gloss": "w.r. for BEkza" + }, + { + "slp": "api", + "stem": "api", + "gloss": "also, even", + "override": true + }, + { + "slp": "Iha", + "stem": "Iha", + "gloss": "attempt" + } + ] + }, + { + "surface": "लोके", + "isMarker": false, + "gloss": "to see, behold, perceive : Caus. or cl. 10. lokayati id", + "lemmas": [ + "lok" + ], + "pieces": [ + { + "slp": "loke", + "stem": "lok", + "gloss": "to see, behold, perceive : Caus. or cl. 10. lokayati id" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "5b": { + "line": "हत्वार्थकामांस्तु गुरूनिहैव भुञ्जीय भोगान् रुधिरप्रदिग्धान् ॥२- ५॥", + "tokens": [ + { + "surface": "हत्वार्थकामांस्तु", + "isMarker": false, + "gloss": "to strike, beat, pound + du. m. pl. utility and desire, wealth and pleasure + but", + "lemmas": [ + "han", + "arTakAma", + "tu" + ], + "pieces": [ + { + "slp": "hatvA", + "stem": "han", + "gloss": "to strike, beat, pound" + }, + { + "slp": "arTakAmAn", + "stem": "arTakAma", + "gloss": "du. m. pl. utility and desire, wealth and pleasure" + }, + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + } + ] + }, + { + "surface": "गुरूनिहैव", + "isMarker": false, + "gloss": "heavy, weighty, RV. i + to strike, beat, pound + just, only", + "lemmas": [ + "guru", + "han", + "eva" + ], + "pieces": [ + { + "slp": "gurUni", + "stem": "guru", + "gloss": "heavy, weighty, RV. i" + }, + { + "slp": "hA", + "stem": "han", + "gloss": "to strike, beat, pound" + }, + { + "slp": "eva", + "stem": "eva", + "gloss": "just, only", + "override": true + } + ] + }, + { + "surface": "भुञ्जीय", + "isMarker": false, + "gloss": "to bend, curve", + "lemmas": [ + "Buj" + ], + "pieces": [ + { + "slp": "BuYjIya", + "stem": "Buj", + "gloss": "to bend, curve" + } + ] + }, + { + "surface": "भोगान्", + "isMarker": false, + "gloss": "any winding or curve, coil, RV. &c. &c", + "lemmas": [ + "Boga" + ], + "pieces": [ + { + "slp": "BogAn", + "stem": "Boga", + "gloss": "any winding or curve, coil, RV. &c. &c" + } + ] + }, + { + "surface": "रुधिरप्रदिग्धान्", + "isMarker": false, + "gloss": "besmeared with blood", + "lemmas": [ + "ruDirapradigDa" + ], + "pieces": [ + { + "slp": "ruDirapradigDAn", + "stem": "ruDirapradigDa", + "gloss": "besmeared with blood" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "6a": { + "line": "न चैतद्विद्मः कतरन्नो गरीयो यद्वा जयेम यदि वा नो जयेयुः ।", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चैतद्विद्मः", + "isMarker": false, + "gloss": "and + this + to know, understand, perceive", + "lemmas": [ + "ca", + "etad", + "vid" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "etat", + "stem": "etad", + "gloss": "this", + "override": true + }, + { + "slp": "vidmas", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "कतरन्नो", + "isMarker": false, + "gloss": "mfn, who or which of two? whether of two? Analogously to katama above katara may occasionally be used to express ‘who or which of many?’, and may optionally be compounded with the word to which it refers + a man, hero, person", + "lemmas": [ + "katara", + "nf" + ], + "pieces": [ + { + "slp": "katarat", + "stem": "katara", + "gloss": "mfn, who or which of two? whether of two? Analogously to katama above katara may occasionally be used to express ‘who or which of many?’, and may optionally be compounded with the word to which it refers" + }, + { + "slp": "nar", + "stem": "nf", + "gloss": "a man, hero, person" + } + ] + }, + { + "surface": "गरीयो", + "isMarker": false, + "gloss": "heavier", + "lemmas": [ + "garIyas" + ], + "pieces": [ + { + "slp": "garIyas", + "stem": "garIyas", + "gloss": "heavier" + } + ] + }, + { + "surface": "यद्वा", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ya", + "dva" + ], + "pieces": [ + { + "slp": "ya", + "stem": "ya", + "gloss": "going" + }, + { + "slp": "dvA", + "stem": "dva", + "gloss": "original stem of dvi, q.v. two, RV. &c. &c" + } + ] + }, + { + "surface": "जयेम", + "isMarker": false, + "gloss": "to win or acquire, conquer, vanquish", + "lemmas": [ + "ji" + ], + "pieces": [ + { + "slp": "jayema", + "stem": "ji", + "gloss": "to win or acquire, conquer, vanquish" + } + ] + }, + { + "surface": "यदि", + "isMarker": false, + "gloss": "if, in case that, RV. &c. &c. In the earlier language yadi may be joined with Indic. Subj. or Leṭ Pot", + "lemmas": [ + "yadi" + ], + "pieces": [ + { + "slp": "yadi", + "stem": "yadi", + "gloss": "if, in case that, RV. &c. &c. In the earlier language yadi may be joined with Indic. Subj. or Leṭ Pot" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "नो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "no" + ], + "pieces": [ + { + "slp": "no", + "stem": "no", + "gloss": "" + } + ] + }, + { + "surface": "जयेयुः", + "isMarker": false, + "gloss": "to win or acquire, conquer, vanquish", + "lemmas": [ + "ji" + ], + "pieces": [ + { + "slp": "jayeyuH", + "stem": "ji", + "gloss": "to win or acquire, conquer, vanquish" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "6b": { + "line": "यानेव हत्वा न जिजीविषाम- स्तेऽवस्थिताः प्रमुखे धार्तराष्ट्राः ॥२- ६॥", + "tokens": [ + { + "surface": "यानेव", + "isMarker": false, + "gloss": "going + otherwise, AV. xvi, 7", + "lemmas": [ + "ya", + "aneva" + ], + "pieces": [ + { + "slp": "yA", + "stem": "ya", + "gloss": "going" + }, + { + "slp": "aneva", + "stem": "aneva", + "gloss": "otherwise, AV. xvi, 7" + } + ] + }, + { + "surface": "हत्वा", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hatvA", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "जिजीविषाम-", + "isMarker": false, + "gloss": "to live, be or remain alive, RV. &c", + "lemmas": [ + "jIv" + ], + "pieces": [ + { + "slp": "jijIvizAma", + "stem": "jIv", + "gloss": "to live, be or remain alive, RV. &c" + } + ] + }, + { + "surface": "स्तेऽवस्थिताः", + "isMarker": false, + "gloss": "to be, live, exist + standing near, placed, having its place or abode", + "lemmas": [ + "as", + "avasTita" + ], + "pieces": [ + { + "slp": "ste", + "stem": "as", + "gloss": "to be, live, exist" + }, + { + "slp": "avasTitAs", + "stem": "avasTita", + "gloss": "standing near, placed, having its place or abode" + } + ] + }, + { + "surface": "प्रमुखे", + "isMarker": false, + "gloss": "turning the face towards, facing", + "lemmas": [ + "pramuKa" + ], + "pieces": [ + { + "slp": "pramuKe", + "stem": "pramuKa", + "gloss": "turning the face towards, facing" + } + ] + }, + { + "surface": "धार्तराष्ट्राः", + "isMarker": false, + "gloss": "belonging to Dhṛtarāṣṭra", + "lemmas": [ + "DArtarAzwra" + ], + "pieces": [ + { + "slp": "DArtarAzwrAH", + "stem": "DArtarAzwra", + "gloss": "belonging to Dhṛtarāṣṭra" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "7a": { + "line": "कार्पण्यदोषोपहतस्वभावः पृच्छामि त्वां धर्मसम्मूढचेताः ।", + "tokens": [ + { + "surface": "कार्पण्यदोषोपहतस्वभावः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kArpaRI", + "adoza", + "apahata", + "svaBAva" + ], + "pieces": [ + { + "slp": "kArpaRi", + "stem": "kArpaRI", + "gloss": "gladness" + }, + { + "slp": "adozas", + "stem": "adoza", + "gloss": "faultless, guiltless" + }, + { + "slp": "apahata", + "stem": "apahata", + "gloss": "destroyed, warded off, killed" + }, + { + "slp": "svaBAvas", + "stem": "svaBAva", + "gloss": "native place, Viṣṇ" + } + ] + }, + { + "surface": "पृच्छामि", + "isMarker": false, + "gloss": "asking, questioning, question about + raw, uncooked", + "lemmas": [ + "pfcCA", + "Ama" + ], + "pieces": [ + { + "slp": "pfcCA", + "stem": "pfcCA", + "gloss": "asking, questioning, question about" + }, + { + "slp": "Ami", + "stem": "Ama", + "gloss": "raw, uncooked" + } + ] + }, + { + "surface": "त्वां", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvAm", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "धर्मसम्मूढचेताः", + "isMarker": false, + "gloss": "bearer, supporter, arranger + troubled or infatuated in mind, Śāntiś", + "lemmas": [ + "Darman", + "sammUQacetas" + ], + "pieces": [ + { + "slp": "Darma", + "stem": "Darman", + "gloss": "bearer, supporter, arranger" + }, + { + "slp": "sammUQacetAs", + "stem": "sammUQacetas", + "gloss": "troubled or infatuated in mind, Śāntiś" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "7b": { + "line": "यच्छ्रेयः स्यान्निश्चितं ब्रूहि तन्मे शिष्यस्तेऽहं शाधि मां त्वां प्रपन्नम् ॥२- ७॥", + "tokens": [ + { + "surface": "यच्छ्रेयः", + "isMarker": false, + "gloss": "who, which, what + more splendid or beautiful, more excellent or distinguished, superior", + "lemmas": [ + "yad", + "Sreyas" + ], + "pieces": [ + { + "slp": "yat", + "stem": "yad", + "gloss": "who, which, what" + }, + { + "slp": "Sreyas", + "stem": "Sreyas", + "gloss": "more splendid or beautiful, more excellent or distinguished, superior" + } + ] + }, + { + "surface": "स्यान्निश्चितं", + "isMarker": false, + "gloss": "to be, live, exist + one who has come to a conclusion or formed a certain opinion, determined to, resolute upon", + "lemmas": [ + "as", + "niScitam" + ], + "pieces": [ + { + "slp": "syAm", + "stem": "as", + "gloss": "to be, live, exist" + }, + { + "slp": "niScitam", + "stem": "niScitam", + "gloss": "one who has come to a conclusion or formed a certain opinion, determined to, resolute upon" + } + ] + }, + { + "surface": "ब्रूहि", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "brU" + ], + "pieces": [ + { + "slp": "brUhi", + "stem": "brU", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "तन्मे", + "isMarker": false, + "gloss": "that; he, she, it + base of the first person pl, as used in comp", + "lemmas": [ + "tad", + "asmad" + ], + "pieces": [ + { + "slp": "tad", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "me", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "शिष्यस्तेऽहं", + "isMarker": false, + "gloss": "&c. See 1. Sizwa p. 1076, col. 3, and p. 1077 + that; he, she, it + base of the first person pl, as used in comp", + "lemmas": [ + "Sizya", + "tad", + "asmad" + ], + "pieces": [ + { + "slp": "Sizyas", + "stem": "Sizya", + "gloss": "&c. See 1. Sizwa p. 1076, col. 3, and p. 1077" + }, + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "aham", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "शाधि", + "isMarker": false, + "gloss": "to chastise, correct, censure", + "lemmas": [ + "SAs" + ], + "pieces": [ + { + "slp": "SADi", + "stem": "SAs", + "gloss": "to chastise, correct, censure" + } + ] + }, + { + "surface": "मां", + "isMarker": false, + "gloss": "base of the first person pl, as used in comp", + "lemmas": [ + "asmad" + ], + "pieces": [ + { + "slp": "mAm", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "त्वां", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvAm", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "प्रपन्नम्", + "isMarker": false, + "gloss": "arrived at, come to, got into", + "lemmas": [ + "prapanna" + ], + "pieces": [ + { + "slp": "prapannam", + "stem": "prapanna", + "gloss": "arrived at, come to, got into" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "8a": { + "line": "न हि प्रपश्यामि ममापनुद्याद् यच्छोकमुच्छोषणमिन्द्रियाणाम् ।", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "प्रपश्यामि", + "isMarker": false, + "gloss": "before + to see, behold, look at", + "lemmas": [ + "pra", + "paS" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "paSyAmi", + "stem": "paS", + "gloss": "to see, behold, look at" + } + ] + }, + { + "surface": "ममापनुद्याद्", + "isMarker": false, + "gloss": "do not + removing driving away + afterwards, then", + "lemmas": [ + "mA", + "apanuda", + "At" + ], + "pieces": [ + { + "slp": "mama", + "stem": "mA", + "gloss": "do not", + "override": true + }, + { + "slp": "apanudI", + "stem": "apanuda", + "gloss": "removing driving away" + }, + { + "slp": "At", + "stem": "At", + "gloss": "afterwards, then" + } + ] + }, + { + "surface": "यच्छोकमुच्छोषणमिन्द्रियाणाम्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yad", + "Soka", + "ucCozaRa", + "indriya" + ], + "pieces": [ + { + "slp": "yat", + "stem": "yad", + "gloss": "who, which, what" + }, + { + "slp": "Sokam", + "stem": "Soka", + "gloss": "&c. See p. 1091, col. 1" + }, + { + "slp": "ucCozaRam", + "stem": "ucCozaRa", + "gloss": "making dry, parching" + }, + { + "slp": "indriyARAm", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "8b": { + "line": "अवाप्य भूमावसपत्नमृद्धं राज्यं सुराणामपि चाधिपत्यम् ॥२- ८॥", + "tokens": [ + { + "surface": "अवाप्य", + "isMarker": false, + "gloss": "p. having obtained, Ragh. iii, 33", + "lemmas": [ + "avApya" + ], + "pieces": [ + { + "slp": "avApya", + "stem": "avApya", + "gloss": "p. having obtained, Ragh. iii, 33" + } + ] + }, + { + "surface": "भूमावसपत्नमृद्धं", + "isMarker": false, + "gloss": "the earth, soil, ground + not a rival, AV. i, 19 + increased, thriving, prosperous", + "lemmas": [ + "BUmi", + "asapatna", + "fdDa" + ], + "pieces": [ + { + "slp": "BUmO", + "stem": "BUmi", + "gloss": "the earth, soil, ground" + }, + { + "slp": "asapatnam", + "stem": "asapatna", + "gloss": "not a rival, AV. i, 19" + }, + { + "slp": "fdDam", + "stem": "fdDa", + "gloss": "increased, thriving, prosperous" + } + ] + }, + { + "surface": "राज्यं", + "isMarker": false, + "gloss": "kingly, princely, royal", + "lemmas": [ + "rAjya" + ], + "pieces": [ + { + "slp": "rAjyam", + "stem": "rAjya", + "gloss": "kingly, princely, royal" + } + ] + }, + { + "surface": "सुराणामपि", + "isMarker": false, + "gloss": "a god, divinity, deity + also, even", + "lemmas": [ + "surA", + "api" + ], + "pieces": [ + { + "slp": "surARAm", + "stem": "surA", + "gloss": "a god, divinity, deity" + }, + { + "slp": "api", + "stem": "api", + "gloss": "also, even", + "override": true + } + ] + }, + { + "surface": "चाधिपत्यम्", + "isMarker": false, + "gloss": "and + supremacy, sovereignty, power", + "lemmas": [ + "ca", + "ADipatya" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "ADipatyam", + "stem": "ADipatya", + "gloss": "supremacy, sovereignty, power" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "9s": { + "line": "सञ्जय उवाच", + "tokens": [ + { + "surface": "सञ्जय", + "isMarker": false, + "gloss": "Sañjaya", + "lemmas": [ + "saYjaya" + ], + "pieces": [ + { + "slp": "saYjaya", + "stem": "saYjaya", + "gloss": "Sañjaya", + "override": true + } + ] + }, + { + "surface": "उवाच", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "9a": { + "line": "एवमुक्त्वा हृषीकेशं गुडाकेशः परन्तप ।", + "tokens": [ + { + "surface": "एवमुक्त्वा", + "isMarker": false, + "gloss": "thus, in this way, in such a manner + to speak, say, tell", + "lemmas": [ + "evam", + "vac" + ], + "pieces": [ + { + "slp": "evam", + "stem": "evam", + "gloss": "thus, in this way, in such a manner" + }, + { + "slp": "uktvA", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "हृषीकेशं", + "isMarker": false, + "gloss": "Hṛṣīkeśa — Kṛṣṇa", + "lemmas": [ + "hfzIkeSa" + ], + "pieces": [ + { + "slp": "hfzIkeSam", + "stem": "hfzIkeSa", + "gloss": "Hṛṣīkeśa — Kṛṣṇa", + "override": true + } + ] + }, + { + "surface": "गुडाकेशः", + "isMarker": false, + "gloss": "‘thick-haired’, the hero Arjuna, MBh. iii", + "lemmas": [ + "guqAkeSa" + ], + "pieces": [ + { + "slp": "guqAkeSaH", + "stem": "guqAkeSa", + "gloss": "‘thick-haired’, the hero Arjuna, MBh. iii" + } + ] + }, + { + "surface": "परन्तप", + "isMarker": false, + "gloss": "", + "lemmas": [ + "para", + "tap" + ], + "pieces": [ + { + "slp": "param", + "stem": "para", + "gloss": "far, distant, remote" + }, + { + "slp": "tapa", + "stem": "tap", + "gloss": "to rule, Dhātup. xxvi, 50" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "9b": { + "line": "न योत्स्य इति गोविन्दमुक्त्वा तूष्णीं बभूव ह ॥२- ९॥", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "योत्स्य", + "isMarker": false, + "gloss": "going + coming from a well or fountain, AV. xix, 2", + "lemmas": [ + "ya", + "utsya" + ], + "pieces": [ + { + "slp": "yA", + "stem": "ya", + "gloss": "going" + }, + { + "slp": "utsya", + "stem": "utsya", + "gloss": "coming from a well or fountain, AV. xix, 2" + } + ] + }, + { + "surface": "इति", + "isMarker": false, + "gloss": "thus — close of speech", + "lemmas": [ + "iti" + ], + "pieces": [ + { + "slp": "iti", + "stem": "iti", + "gloss": "thus — close of speech", + "override": true + } + ] + }, + { + "surface": "गोविन्दमुक्त्वा", + "isMarker": false, + "gloss": "Govinda — Kṛṣṇa + to speak, say, tell", + "lemmas": [ + "govinda", + "vac" + ], + "pieces": [ + { + "slp": "govindam", + "stem": "govinda", + "gloss": "Govinda — Kṛṣṇa", + "override": true + }, + { + "slp": "uktvA", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "तूष्णीं", + "isMarker": false, + "gloss": "silently, quietly, RV. ii", + "lemmas": [ + "tUzRIm" + ], + "pieces": [ + { + "slp": "tUzRIm", + "stem": "tUzRIm", + "gloss": "silently, quietly, RV. ii" + } + ] + }, + { + "surface": "बभूव", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "baBUva", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "ह", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ha" + ], + "pieces": [ + { + "slp": "ha", + "stem": "ha", + "gloss": "ha the thirty-third and last consonant of the Nāgarī alphabet" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "10a": { + "line": "तमुवाच हृषीकेशः प्रहसन्निव भारत ।", + "tokens": [ + { + "surface": "तमुवाच", + "isMarker": false, + "gloss": "that; he, she, it + to speak, say, tell", + "lemmas": [ + "tad", + "vac" + ], + "pieces": [ + { + "slp": "tam", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "हृषीकेशः", + "isMarker": false, + "gloss": "Hṛṣīkeśa — Kṛṣṇa", + "lemmas": [ + "hfzIkeSa" + ], + "pieces": [ + { + "slp": "hfzIkeSaH", + "stem": "hfzIkeSa", + "gloss": "Hṛṣīkeśa — Kṛṣṇa", + "override": true + } + ] + }, + { + "surface": "प्रहसन्निव", + "isMarker": false, + "gloss": "laughing, smiling + like, as if", + "lemmas": [ + "prahasat", + "iva" + ], + "pieces": [ + { + "slp": "prahasan", + "stem": "prahasat", + "gloss": "laughing, smiling" + }, + { + "slp": "iva", + "stem": "iva", + "gloss": "like, as if", + "override": true + } + ] + }, + { + "surface": "भारत", + "isMarker": false, + "gloss": "O descendant of Bharata", + "lemmas": [ + "BArata" + ], + "pieces": [ + { + "slp": "BArata", + "stem": "BArata", + "gloss": "O descendant of Bharata", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "10b": { + "line": "सेनयोरुभयोर्मध्ये विषीदन्तमिदं वचः ॥२- १०॥", + "tokens": [ + { + "surface": "सेनयोरुभयोर्मध्ये", + "isMarker": false, + "gloss": "a missile, dart, spear + e, e mfn. du. both + middle", + "lemmas": [ + "senA", + "uBa", + "maDya" + ], + "pieces": [ + { + "slp": "senayos", + "stem": "senA", + "gloss": "a missile, dart, spear" + }, + { + "slp": "uBayos", + "stem": "uBa", + "gloss": "e, e mfn. du. both" + }, + { + "slp": "maDye", + "stem": "maDya", + "gloss": "middle" + } + ] + }, + { + "surface": "विषीदन्तमिदं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vizin", + "id", + "antama", + "da" + ], + "pieces": [ + { + "slp": "vizI", + "stem": "vizin", + "gloss": "poisoned, Pañcar" + }, + { + "slp": "id", + "stem": "id", + "gloss": "Ved. even, just, only" + }, + { + "slp": "antami", + "stem": "antama", + "gloss": "next, nearest" + }, + { + "slp": "dam", + "stem": "da", + "gloss": "id" + } + ] + }, + { + "surface": "वचः", + "isMarker": false, + "gloss": "speech, voice, word", + "lemmas": [ + "vacas" + ], + "pieces": [ + { + "slp": "vacaH", + "stem": "vacas", + "gloss": "speech, voice, word" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "11s": { + "line": "श्रीभगवानुवाच", + "tokens": [ + { + "surface": "श्रीभगवानुवाच", + "isMarker": false, + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "lemmas": [ + "SrI", + "Bagavat", + "vac" + ], + "pieces": [ + { + "slp": "SrI", + "stem": "SrI", + "gloss": "to mix, mingle, cook" + }, + { + "slp": "BagavAn", + "stem": "Bagavat", + "gloss": "the Blessed One", + "override": true + }, + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "11a": { + "line": "अशोच्यानन्वशोचस्त्वं प्रज्ञावादांश्च भाषसे ।", + "tokens": [ + { + "surface": "अशोच्यानन्वशोचस्त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "aSocya", + "anu", + "Suc", + "yuzmad" + ], + "pieces": [ + { + "slp": "aSocyAn", + "stem": "aSocya", + "gloss": "id, MBh. &c" + }, + { + "slp": "anu", + "stem": "anu", + "gloss": "after, along, alongside" + }, + { + "slp": "aSocas", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + }, + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "प्रज्ञावादांश्च", + "isMarker": false, + "gloss": "", + "lemmas": [ + "prajYAvAda", + "ca" + ], + "pieces": [ + { + "slp": "prajYAvAdAn", + "stem": "prajYAvAda", + "gloss": "a word of w˚" + }, + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "भाषसे", + "isMarker": false, + "gloss": "to speak, talk, say", + "lemmas": [ + "BAz" + ], + "pieces": [ + { + "slp": "BAzase", + "stem": "BAz", + "gloss": "to speak, talk, say" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "11b": { + "line": "गतासूनगतासूंश्च नानुशोचन्ति पण्डिताः ॥२- ११॥", + "tokens": [ + { + "surface": "गतासूनगतासूंश्च", + "isMarker": false, + "gloss": "one whose breath has gone, expired, dead + not dead, alive + and", + "lemmas": [ + "gatAsu", + "agatAsu", + "ca" + ], + "pieces": [ + { + "slp": "gatAsUn", + "stem": "gatAsu", + "gloss": "one whose breath has gone, expired, dead" + }, + { + "slp": "agatAsUn", + "stem": "agatAsu", + "gloss": "not dead, alive" + }, + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "नानुशोचन्ति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "na", + "u", + "Suc" + ], + "pieces": [ + { + "slp": "nAn", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "u", + "stem": "u", + "gloss": "u the fifth letter and third short vowel of the alphabet, pronounced as the u in full" + }, + { + "slp": "Socanti", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + } + ] + }, + { + "surface": "पण्डिताः", + "isMarker": false, + "gloss": "learned, wise, shrewd", + "lemmas": [ + "paRqita" + ], + "pieces": [ + { + "slp": "paRqitAH", + "stem": "paRqita", + "gloss": "learned, wise, shrewd" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "११॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "12a": { + "line": "न त्वेवाहं जातु नासं न त्वं नेमे जनाधिपाः ।", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "त्वेवाहं", + "isMarker": false, + "gloss": "one, several + bearing, drawing, conveying", + "lemmas": [ + "tva", + "vAha" + ], + "pieces": [ + { + "slp": "tve", + "stem": "tva", + "gloss": "one, several" + }, + { + "slp": "vAham", + "stem": "vAha", + "gloss": "bearing, drawing, conveying" + } + ] + }, + { + "surface": "जातु", + "isMarker": false, + "gloss": "at all, ever, RV. x", + "lemmas": [ + "jAtu" + ], + "pieces": [ + { + "slp": "jAtu", + "stem": "jAtu", + "gloss": "at all, ever, RV. x" + } + ] + }, + { + "surface": "नासं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nA", + "sam" + ], + "pieces": [ + { + "slp": "nA", + "stem": "nA", + "gloss": "thin, spare" + }, + { + "slp": "sam", + "stem": "sam", + "gloss": "to be disturbed, Dhātup. xix, 82" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "नेमे", + "isMarker": false, + "gloss": "one, several", + "lemmas": [ + "nema" + ], + "pieces": [ + { + "slp": "neme", + "stem": "nema", + "gloss": "one, several" + } + ] + }, + { + "surface": "जनाधिपाः", + "isMarker": false, + "gloss": "to generate, beget, produce + a ruler, commander, regent", + "lemmas": [ + "jan", + "aDipa" + ], + "pieces": [ + { + "slp": "jana", + "stem": "jan", + "gloss": "to generate, beget, produce" + }, + { + "slp": "aDipAs", + "stem": "aDipa", + "gloss": "a ruler, commander, regent" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "12b": { + "line": "न चैव न भविष्यामः सर्वे वयमतः परम् ॥२- १२॥", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चैव", + "isMarker": false, + "gloss": "and + just, only", + "lemmas": [ + "ca", + "eva" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "eva", + "stem": "eva", + "gloss": "just, only", + "override": true + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "भविष्यामः", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "BavizyAmaH", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "सर्वे", + "isMarker": false, + "gloss": "all, every", + "lemmas": [ + "sarva" + ], + "pieces": [ + { + "slp": "sarve", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "वयमतः", + "isMarker": false, + "gloss": "base of the first person pl, as used in comp + from this, than this", + "lemmas": [ + "asmad", + "atas" + ], + "pieces": [ + { + "slp": "vayam", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + }, + { + "slp": "atas", + "stem": "atas", + "gloss": "from this, than this" + } + ] + }, + { + "surface": "परम्", + "isMarker": false, + "gloss": "far, distant, remote", + "lemmas": [ + "para" + ], + "pieces": [ + { + "slp": "param", + "stem": "para", + "gloss": "far, distant, remote" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "13a": { + "line": "देहिनोऽस्मिन्यथा देहे कौमारं यौवनं जरा ।", + "tokens": [ + { + "surface": "देहिनोऽस्मिन्यथा", + "isMarker": false, + "gloss": "", + "lemmas": [ + "dehin", + "ayam", + "yaTA" + ], + "pieces": [ + { + "slp": "dehinas", + "stem": "dehin", + "gloss": "having a body, corporeal" + }, + { + "slp": "asmin", + "stem": "ayam", + "gloss": "this one. See idam" + }, + { + "slp": "yaTA", + "stem": "yaTA", + "gloss": "as, just as", + "override": true + } + ] + }, + { + "surface": "देहे", + "isMarker": false, + "gloss": "the body", + "lemmas": [ + "deha" + ], + "pieces": [ + { + "slp": "dehe", + "stem": "deha", + "gloss": "the body" + } + ] + }, + { + "surface": "कौमारं", + "isMarker": false, + "gloss": "juvenile, youthful, belonging to a youth or young girl", + "lemmas": [ + "kOmAra" + ], + "pieces": [ + { + "slp": "kOmAram", + "stem": "kOmAra", + "gloss": "juvenile, youthful, belonging to a youth or young girl" + } + ] + }, + { + "surface": "यौवनं", + "isMarker": false, + "gloss": "youth, youthfulness, adolescence", + "lemmas": [ + "yOvana" + ], + "pieces": [ + { + "slp": "yOvanam", + "stem": "yOvana", + "gloss": "youth, youthfulness, adolescence" + } + ] + }, + { + "surface": "जरा", + "isMarker": false, + "gloss": "", + "lemmas": [ + "jarA" + ], + "pieces": [ + { + "slp": "jarA", + "stem": "jarA", + "gloss": "‘becoming old’, see a-jara, ahar-jaram" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "13b": { + "line": "तथा देहान्तरप्राप्तिर्धीरस्तत्र न मुह्यति ॥२- १३॥", + "tokens": [ + { + "surface": "तथा", + "isMarker": false, + "gloss": "so, in that way", + "lemmas": [ + "taTA" + ], + "pieces": [ + { + "slp": "taTA", + "stem": "taTA", + "gloss": "so, in that way", + "override": true + } + ] + }, + { + "surface": "देहान्तरप्राप्तिर्धीरस्तत्र", + "isMarker": false, + "gloss": "", + "lemmas": [ + "dehAntaraprApti", + "DIra", + "tatra" + ], + "pieces": [ + { + "slp": "dehAntaraprAptis", + "stem": "dehAntaraprApti", + "gloss": "obtaining another b˚, transmigration id" + }, + { + "slp": "DIras", + "stem": "DIra", + "gloss": "intelligent, wise, skilful" + }, + { + "slp": "tatra", + "stem": "tatra", + "gloss": "used for the loc. of tad" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "मुह्यति", + "isMarker": false, + "gloss": "to become stupefied or unconscious, be bewildered or perplexed, err", + "lemmas": [ + "muh" + ], + "pieces": [ + { + "slp": "muhyati", + "stem": "muh", + "gloss": "to become stupefied or unconscious, be bewildered or perplexed, err" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "14a": { + "line": "मात्रास्पर्शास्तु कौन्तेय शीतोष्णसुखदुःखदाः ।", + "tokens": [ + { + "surface": "मात्रास्पर्शास्तु", + "isMarker": false, + "gloss": "material contact, the concurrence of material elements + but", + "lemmas": [ + "mAtrAsparSa", + "tu" + ], + "pieces": [ + { + "slp": "mAtrAsparSAs", + "stem": "mAtrAsparSa", + "gloss": "material contact, the concurrence of material elements" + }, + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + } + ] + }, + { + "surface": "कौन्तेय", + "isMarker": false, + "gloss": "O son of Kuntī — Arjuna", + "lemmas": [ + "kOnteya" + ], + "pieces": [ + { + "slp": "kOnteya", + "stem": "kOnteya", + "gloss": "O son of Kuntī — Arjuna", + "override": true + } + ] + }, + { + "surface": "शीतोष्णसुखदुःखदाः", + "isMarker": false, + "gloss": "cold and hot, GṛŚrS + du. pleasure and pain, joy and sorrow, KauṣUp + id", + "lemmas": [ + "SItozRa", + "suKaduHKa", + "da" + ], + "pieces": [ + { + "slp": "SItozRa", + "stem": "SItozRa", + "gloss": "cold and hot, GṛŚrS" + }, + { + "slp": "suKaduHKa", + "stem": "suKaduHKa", + "gloss": "du. pleasure and pain, joy and sorrow, KauṣUp" + }, + { + "slp": "dAs", + "stem": "da", + "gloss": "id" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "14b": { + "line": "आगमापायिनोऽनित्यास्तांस्तितिक्षस्व भारत ॥२- १४॥", + "tokens": [ + { + "surface": "आगमापायिनोऽनित्यास्तांस्तितिक्षस्व", + "isMarker": false, + "gloss": "", + "lemmas": [ + "AgamApAyin", + "Unita", + "tad", + "tij" + ], + "pieces": [ + { + "slp": "AgamApAyinA", + "stem": "AgamApAyin", + "gloss": "‘coming and going’, transient, Bhag. ii" + }, + { + "slp": "UnityAs", + "stem": "Unita", + "gloss": "lessened, reduced, fewer" + }, + { + "slp": "tAn", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "titikzasva", + "stem": "tij", + "gloss": "to be or become sharp, RV. i, 55" + } + ] + }, + { + "surface": "भारत", + "isMarker": false, + "gloss": "O descendant of Bharata", + "lemmas": [ + "BArata" + ], + "pieces": [ + { + "slp": "BArata", + "stem": "BArata", + "gloss": "O descendant of Bharata", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "15a": { + "line": "यं हि न व्यथयन्त्येते पुरुषं पुरुषर्षभ ।", + "tokens": [ + { + "surface": "यं", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "व्यथयन्त्येते", + "isMarker": false, + "gloss": "to tremble, waver, go astray + this", + "lemmas": [ + "vyaT", + "etad" + ], + "pieces": [ + { + "slp": "vyaTayanti", + "stem": "vyaT", + "gloss": "to tremble, waver, go astray" + }, + { + "slp": "ete", + "stem": "etad", + "gloss": "this", + "override": true + } + ] + }, + { + "surface": "पुरुषं", + "isMarker": false, + "gloss": "rarely f", + "lemmas": [ + "puruza" + ], + "pieces": [ + { + "slp": "puruzam", + "stem": "puruza", + "gloss": "rarely f" + } + ] + }, + { + "surface": "पुरुषर्षभ", + "isMarker": false, + "gloss": "rarely f + as, m, a bull", + "lemmas": [ + "puruza", + "fzaBa" + ], + "pieces": [ + { + "slp": "puruza", + "stem": "puruza", + "gloss": "rarely f" + }, + { + "slp": "fzaBa", + "stem": "fzaBa", + "gloss": "as, m, a bull" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "15b": { + "line": "समदुःखसुखं धीरं सोऽमृतत्वाय कल्पते ॥२- १५॥", + "tokens": [ + { + "surface": "समदुःखसुखं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "samaduHKasuKa" + ], + "pieces": [ + { + "slp": "samaduHKasuKam", + "stem": "samaduHKasuKa", + "gloss": "sharing grief and joy with an˚" + } + ] + }, + { + "surface": "धीरं", + "isMarker": false, + "gloss": "intelligent, wise, skilful", + "lemmas": [ + "DIra" + ], + "pieces": [ + { + "slp": "DIram", + "stem": "DIra", + "gloss": "intelligent, wise, skilful" + } + ] + }, + { + "surface": "सोऽमृतत्वाय", + "isMarker": false, + "gloss": "that; he, she, it + dead, deceased, death-like + one, several", + "lemmas": [ + "tad", + "mfta", + "tva" + ], + "pieces": [ + { + "slp": "sas", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "mfta", + "stem": "mfta", + "gloss": "dead, deceased, death-like" + }, + { + "slp": "tvAya", + "stem": "tva", + "gloss": "one, several" + } + ] + }, + { + "surface": "कल्पते", + "isMarker": false, + "gloss": "to be well ordered or regulated, be well managed, succeed", + "lemmas": [ + "kxp" + ], + "pieces": [ + { + "slp": "kalpate", + "stem": "kxp", + "gloss": "to be well ordered or regulated, be well managed, succeed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "16a": { + "line": "नासतो विद्यते भावो नाभावो विद्यते सतः ।", + "tokens": [ + { + "surface": "नासतो", + "isMarker": false, + "gloss": "not + to be, live, exist", + "lemmas": [ + "na", + "as" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "asatas", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "विद्यते", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "vidyate", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "भावो", + "isMarker": false, + "gloss": "N. of the planet Venus or its regent", + "lemmas": [ + "BA" + ], + "pieces": [ + { + "slp": "BAvas", + "stem": "BA", + "gloss": "N. of the planet Venus or its regent" + } + ] + }, + { + "surface": "नाभावो", + "isMarker": false, + "gloss": "not + nonexistence, nullity, absence", + "lemmas": [ + "na", + "aBAva" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "aBAvas", + "stem": "aBAva", + "gloss": "nonexistence, nullity, absence" + } + ] + }, + { + "surface": "विद्यते", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "vidyate", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "सतः", + "isMarker": false, + "gloss": "being, existing, occurring", + "lemmas": [ + "sat" + ], + "pieces": [ + { + "slp": "sataH", + "stem": "sat", + "gloss": "being, existing, occurring" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "16b": { + "line": "उभयोरपि दृष्टोऽन्तस्त्वनयोस्तत्त्वदर्शिभिः ॥२- १६॥", + "tokens": [ + { + "surface": "उभयोरपि", + "isMarker": false, + "gloss": "both, of both kinds, in both ways + unhurt, VS. viii, 5", + "lemmas": [ + "uBaya", + "arapa" + ], + "pieces": [ + { + "slp": "uBayas", + "stem": "uBaya", + "gloss": "both, of both kinds, in both ways" + }, + { + "slp": "arapi", + "stem": "arapa", + "gloss": "unhurt, VS. viii, 5" + } + ] + }, + { + "surface": "दृष्टोऽन्तस्त्वनयोस्तत्त्वदर्शिभिः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "dfzwa", + "Um", + "ta", + "tu", + "ayam", + "tattvadarSin" + ], + "pieces": [ + { + "slp": "dfzwA", + "stem": "dfzwa", + "gloss": "seen, looked at, beheld" + }, + { + "slp": "Um", + "stem": "Um", + "gloss": "an interjection of anger" + }, + { + "slp": "tas", + "stem": "ta", + "gloss": "Lakṣmī" + }, + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + }, + { + "slp": "anayos", + "stem": "ayam", + "gloss": "this one. See idam" + }, + { + "slp": "tattvadarSiBis", + "stem": "tattvadarSin", + "gloss": "" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "17a": { + "line": "अविनाशि तु तद्विद्धि येन सर्वमिदं ततम् ।", + "tokens": [ + { + "surface": "अविनाशि", + "isMarker": false, + "gloss": "imperishable, ŚBr. xiv", + "lemmas": [ + "avinASin" + ], + "pieces": [ + { + "slp": "avinASi", + "stem": "avinASin", + "gloss": "imperishable, ŚBr. xiv" + } + ] + }, + { + "surface": "तु", + "isMarker": false, + "gloss": "but", + "lemmas": [ + "tu" + ], + "pieces": [ + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + } + ] + }, + { + "surface": "तद्विद्धि", + "isMarker": false, + "gloss": "that; he, she, it + to know, understand, perceive", + "lemmas": [ + "tad", + "vid" + ], + "pieces": [ + { + "slp": "tat", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "vidDi", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "येन", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "yena", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "सर्वमिदं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sarva", + "ayam" + ], + "pieces": [ + { + "slp": "sarvam", + "stem": "sarva", + "gloss": "all, every", + "override": true + }, + { + "slp": "idam", + "stem": "ayam", + "gloss": "this one. See idam" + } + ] + }, + { + "surface": "ततम्", + "isMarker": false, + "gloss": "chiefly Ved. a father, RV. viii, 91", + "lemmas": [ + "tata" + ], + "pieces": [ + { + "slp": "tatam", + "stem": "tata", + "gloss": "chiefly Ved. a father, RV. viii, 91" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "17b": { + "line": "विनाशमव्ययस्यास्य न कश्चित्कर्तुमर्हति ॥२- १७॥", + "tokens": [ + { + "surface": "विनाशमव्ययस्यास्य", + "isMarker": false, + "gloss": "utter loss, annihilation, perdition + avyaya or rarely avyaya mfn. made of sheep's skin + to be, live, exist", + "lemmas": [ + "vinASa", + "avyaya", + "as" + ], + "pieces": [ + { + "slp": "vinASam", + "stem": "vinASa", + "gloss": "utter loss, annihilation, perdition" + }, + { + "slp": "avyayasya", + "stem": "avyaya", + "gloss": "avyaya or rarely avyaya mfn. made of sheep's skin" + }, + { + "slp": "asya", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "कश्चित्कर्तुमर्हति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kim", + "cid", + "kf", + "arh" + ], + "pieces": [ + { + "slp": "kas", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + }, + { + "slp": "cid", + "stem": "cid", + "gloss": "cid in comp. for cit" + }, + { + "slp": "kartum", + "stem": "kf", + "gloss": "to make mention of, praise, speak highly of" + }, + { + "slp": "arhati", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "18a": { + "line": "अन्तवन्त इमे देहा नित्यस्योक्ताः शरीरिणः ।", + "tokens": [ + { + "surface": "अन्तवन्त", + "isMarker": false, + "gloss": "having an end or term, limited, perishable + Lakṣmī", + "lemmas": [ + "antavat", + "ta" + ], + "pieces": [ + { + "slp": "antavan", + "stem": "antavat", + "gloss": "having an end or term, limited, perishable" + }, + { + "slp": "ta", + "stem": "ta", + "gloss": "Lakṣmī" + } + ] + }, + { + "surface": "इमे", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ayam" + ], + "pieces": [ + { + "slp": "ime", + "stem": "ayam", + "gloss": "this one. See idam" + } + ] + }, + { + "surface": "देहा", + "isMarker": false, + "gloss": "the body", + "lemmas": [ + "deha" + ], + "pieces": [ + { + "slp": "dehA", + "stem": "deha", + "gloss": "the body" + } + ] + }, + { + "surface": "नित्यस्योक्ताः", + "isMarker": false, + "gloss": "innate, native, MBh. iii + uttered, said, spoken ukta m. N. of a divine being", + "lemmas": [ + "nitya", + "ukta" + ], + "pieces": [ + { + "slp": "nityasya", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + }, + { + "slp": "uktAs", + "stem": "ukta", + "gloss": "uttered, said, spoken ukta m. N. of a divine being" + } + ] + }, + { + "surface": "शरीरिणः", + "isMarker": false, + "gloss": "having a body, embodied, corporeal", + "lemmas": [ + "SarIrin" + ], + "pieces": [ + { + "slp": "SarIriRaH", + "stem": "SarIrin", + "gloss": "having a body, embodied, corporeal" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "18b": { + "line": "अनाशिनोऽप्रमेयस्य तस्माद्युध्यस्व भारत ॥२- १८॥", + "tokens": [ + { + "surface": "अनाशिनोऽप्रमेयस्य", + "isMarker": false, + "gloss": "imperishable + immeasurable, unlimited, unfathomable", + "lemmas": [ + "anASin", + "aprameya" + ], + "pieces": [ + { + "slp": "anASinas", + "stem": "anASin", + "gloss": "imperishable" + }, + { + "slp": "aprameyasya", + "stem": "aprameya", + "gloss": "immeasurable, unlimited, unfathomable" + } + ] + }, + { + "surface": "तस्माद्युध्यस्व", + "isMarker": false, + "gloss": "that; he, she, it + to fight, wage war, oppose or overcome in battle", + "lemmas": [ + "tad", + "yuD" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "yuDyasva", + "stem": "yuD", + "gloss": "to fight, wage war, oppose or overcome in battle" + } + ] + }, + { + "surface": "भारत", + "isMarker": false, + "gloss": "O descendant of Bharata", + "lemmas": [ + "BArata" + ], + "pieces": [ + { + "slp": "BArata", + "stem": "BArata", + "gloss": "O descendant of Bharata", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "19a": { + "line": "य एनं वेत्ति हन्तारं यश्चैनं मन्यते हतम् ।", + "tokens": [ + { + "surface": "य", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "ya", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "एनं", + "isMarker": false, + "gloss": "ena a pronom. base, he, she", + "lemmas": [ + "ena" + ], + "pieces": [ + { + "slp": "enam", + "stem": "ena", + "gloss": "ena a pronom. base, he, she" + } + ] + }, + { + "surface": "वेत्ति", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "vetti", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "हन्तारं", + "isMarker": false, + "gloss": "or hantf, mfn. slaying, killing", + "lemmas": [ + "hantf" + ], + "pieces": [ + { + "slp": "hantAram", + "stem": "hantf", + "gloss": "or hantf, mfn. slaying, killing" + } + ] + }, + { + "surface": "यश्चैनं", + "isMarker": false, + "gloss": "who, which, what + and + pl. N. of a people, MBh. xiii", + "lemmas": [ + "yad", + "ca", + "Ena" + ], + "pieces": [ + { + "slp": "yas", + "stem": "yad", + "gloss": "who, which, what" + }, + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "मन्यते", + "isMarker": false, + "gloss": "in comp. for 1. mad", + "lemmas": [ + "man" + ], + "pieces": [ + { + "slp": "manyate", + "stem": "man", + "gloss": "in comp. for 1. mad" + } + ] + }, + { + "surface": "हतम्", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hatam", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "19b": { + "line": "उभौ तौ न विजानीतो नायं हन्ति न हन्यते ॥२- १९॥", + "tokens": [ + { + "surface": "उभौ", + "isMarker": false, + "gloss": "e, e mfn. du. both", + "lemmas": [ + "uBa" + ], + "pieces": [ + { + "slp": "uBO", + "stem": "uBa", + "gloss": "e, e mfn. du. both" + } + ] + }, + { + "surface": "तौ", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tO", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "विजानीतो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vijAni", + "i" + ], + "pieces": [ + { + "slp": "vijAnI", + "stem": "vijAni", + "gloss": "‘strange, foreign’ or ‘having no wife’, AV. v" + }, + { + "slp": "itas", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "नायं", + "isMarker": false, + "gloss": "a leader, guide, RV. vi", + "lemmas": [ + "nAya" + ], + "pieces": [ + { + "slp": "nAyam", + "stem": "nAya", + "gloss": "a leader, guide, RV. vi" + } + ] + }, + { + "surface": "हन्ति", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hanti", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "हन्यते", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hanyate", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "१९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "20a": { + "line": "न जायते म्रियते वा कदाचिन्नायं भूत्वा भविता वा न भूयः ।", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "जायते", + "isMarker": false, + "gloss": "to generate, beget, produce", + "lemmas": [ + "jan" + ], + "pieces": [ + { + "slp": "jAyate", + "stem": "jan", + "gloss": "to generate, beget, produce" + } + ] + }, + { + "surface": "म्रियते", + "isMarker": false, + "gloss": "to die, decease, RV. &c. &c.: Pass. mriyate", + "lemmas": [ + "mf" + ], + "pieces": [ + { + "slp": "mriyate", + "stem": "mf", + "gloss": "to die, decease, RV. &c. &c.: Pass. mriyate" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "कदाचिन्नायं", + "isMarker": false, + "gloss": "‘water-giver’, a cloud + without understanding + a leader, guide, RV. vi", + "lemmas": [ + "kada", + "acit", + "nAya" + ], + "pieces": [ + { + "slp": "kada", + "stem": "kada", + "gloss": "‘water-giver’, a cloud" + }, + { + "slp": "acit", + "stem": "acit", + "gloss": "without understanding" + }, + { + "slp": "nAyam", + "stem": "nAya", + "gloss": "a leader, guide, RV. vi" + } + ] + }, + { + "surface": "भूत्वा", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "BUtvA", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "भविता", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "BavitA", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "भूयः", + "isMarker": false, + "gloss": "becoming", + "lemmas": [ + "BUyas" + ], + "pieces": [ + { + "slp": "BUyaH", + "stem": "BUyas", + "gloss": "becoming" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "20b": { + "line": "अजो नित्यः शाश्वतोऽयं पुराणो न हन्यते हन्यमाने शरीरे ॥२- २०॥", + "tokens": [ + { + "surface": "अजो", + "isMarker": false, + "gloss": "a drove, troop", + "lemmas": [ + "aja" + ], + "pieces": [ + { + "slp": "ajas", + "stem": "aja", + "gloss": "a drove, troop" + } + ] + }, + { + "surface": "नित्यः", + "isMarker": false, + "gloss": "innate, native, MBh. iii", + "lemmas": [ + "nitya" + ], + "pieces": [ + { + "slp": "nityaH", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + } + ] + }, + { + "surface": "शाश्वतोऽयं", + "isMarker": false, + "gloss": "eternal, constant, perpetual + going", + "lemmas": [ + "SASvata", + "ya" + ], + "pieces": [ + { + "slp": "SASvatas", + "stem": "SASvata", + "gloss": "eternal, constant, perpetual" + }, + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "पुराणो", + "isMarker": false, + "gloss": "belonging to ancient or olden times, ancient, old", + "lemmas": [ + "purARa" + ], + "pieces": [ + { + "slp": "purARas", + "stem": "purARa", + "gloss": "belonging to ancient or olden times, ancient, old" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "हन्यते", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hanyate", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "हन्यमाने", + "isMarker": false, + "gloss": "being killed or slain &c", + "lemmas": [ + "hanyamAna" + ], + "pieces": [ + { + "slp": "hanyamAne", + "stem": "hanyamAna", + "gloss": "being killed or slain &c" + } + ] + }, + { + "surface": "शरीरे", + "isMarker": false, + "gloss": "", + "lemmas": [ + "Sari", + "rA" + ], + "pieces": [ + { + "slp": "Saris", + "stem": "Sari", + "gloss": "Sarin. See p. 1056, col. 3" + }, + { + "slp": "re", + "stem": "rA", + "gloss": "acquiring, possessing, Naiṣ" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "21a": { + "line": "वेदाविनाशिनं नित्यं य एनमजमव्ययम् ।", + "tokens": [ + { + "surface": "वेदाविनाशिनं", + "isMarker": false, + "gloss": "N. of a pupil of Āyoda + imperishable, ŚBr. xiv", + "lemmas": [ + "vedA", + "avinASin" + ], + "pieces": [ + { + "slp": "vedA", + "stem": "vedA", + "gloss": "N. of a pupil of Āyoda" + }, + { + "slp": "avinASinam", + "stem": "avinASin", + "gloss": "imperishable, ŚBr. xiv" + } + ] + }, + { + "surface": "नित्यं", + "isMarker": false, + "gloss": "innate, native, MBh. iii", + "lemmas": [ + "nitya" + ], + "pieces": [ + { + "slp": "nityam", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + } + ] + }, + { + "surface": "य", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "ya", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "एनमजमव्ययम्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ena", + "a", + "jam", + "vyaya" + ], + "pieces": [ + { + "slp": "enam", + "stem": "ena", + "gloss": "ena a pronom. base, he, she" + }, + { + "slp": "a", + "stem": "a", + "gloss": "a the first letter of the alphabet" + }, + { + "slp": "jama", + "stem": "jam", + "gloss": "jam jmA, jmas. See 2. kzam" + }, + { + "slp": "vyayam", + "stem": "vyaya", + "gloss": "passing away, mutable, liable to change or decay" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "21b": { + "line": "कथं स पुरुषः पार्थ कं घातयति हन्ति कम् ॥२- २१॥", + "tokens": [ + { + "surface": "कथं", + "isMarker": false, + "gloss": "how? in what manner? whence?", + "lemmas": [ + "kaTam" + ], + "pieces": [ + { + "slp": "kaTam", + "stem": "kaTam", + "gloss": "how? in what manner? whence?" + } + ] + }, + { + "surface": "स", + "isMarker": false, + "gloss": "he", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "sa", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "पुरुषः", + "isMarker": false, + "gloss": "rarely f", + "lemmas": [ + "puruza" + ], + "pieces": [ + { + "slp": "puruzaH", + "stem": "puruza", + "gloss": "rarely f" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "कं", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kam", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "घातयति", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "GAtayati", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "हन्ति", + "isMarker": false, + "gloss": "to strike, beat, pound", + "lemmas": [ + "han" + ], + "pieces": [ + { + "slp": "hanti", + "stem": "han", + "gloss": "to strike, beat, pound" + } + ] + }, + { + "surface": "कम्", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kam", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "22a": { + "line": "वासांसि जीर्णानि यथा विहाय नवानि गृह्णाति नरोऽपराणि ।", + "tokens": [ + { + "surface": "वासांसि", + "isMarker": false, + "gloss": "cloth, clothes, dress", + "lemmas": [ + "vAsas" + ], + "pieces": [ + { + "slp": "vAsAMsi", + "stem": "vAsas", + "gloss": "cloth, clothes, dress" + } + ] + }, + { + "surface": "जीर्णानि", + "isMarker": false, + "gloss": "old, worn out, withered", + "lemmas": [ + "jIrRa" + ], + "pieces": [ + { + "slp": "jIrRAni", + "stem": "jIrRa", + "gloss": "old, worn out, withered" + } + ] + }, + { + "surface": "यथा", + "isMarker": false, + "gloss": "as, just as", + "lemmas": [ + "yaTA" + ], + "pieces": [ + { + "slp": "yaTA", + "stem": "yaTA", + "gloss": "as, just as", + "override": true + } + ] + }, + { + "surface": "विहाय", + "isMarker": false, + "gloss": "leaving behind i.e. at a distance from", + "lemmas": [ + "vihAya" + ], + "pieces": [ + { + "slp": "vihAya", + "stem": "vihAya", + "gloss": "leaving behind i.e. at a distance from" + } + ] + }, + { + "surface": "नवानि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nu" + ], + "pieces": [ + { + "slp": "navAni", + "stem": "nu", + "gloss": "nu ind, now, still" + } + ] + }, + { + "surface": "गृह्णाति", + "isMarker": false, + "gloss": "to seize, take, RV. i", + "lemmas": [ + "grah" + ], + "pieces": [ + { + "slp": "gfhRAti", + "stem": "grah", + "gloss": "to seize, take, RV. i" + } + ] + }, + { + "surface": "नरोऽपराणि", + "isMarker": false, + "gloss": "a man, a male, a person + situated below, under", + "lemmas": [ + "nara", + "upara" + ], + "pieces": [ + { + "slp": "narA", + "stem": "nara", + "gloss": "a man, a male, a person" + }, + { + "slp": "uparARi", + "stem": "upara", + "gloss": "situated below, under" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "22b": { + "line": "तथा शरीराणि विहाय जीर्णान्यन्यानि संयाति नवानि देही ॥२- २२॥", + "tokens": [ + { + "surface": "तथा", + "isMarker": false, + "gloss": "so, in that way", + "lemmas": [ + "taTA" + ], + "pieces": [ + { + "slp": "taTA", + "stem": "taTA", + "gloss": "so, in that way", + "override": true + } + ] + }, + { + "surface": "शरीराणि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "SarIra", + "aRI" + ], + "pieces": [ + { + "slp": "SarIrA", + "stem": "SarIra", + "gloss": "" + }, + { + "slp": "aRi", + "stem": "aRI", + "gloss": "or aRI, f. the point of a needle or of a sharp stake, L. linchpin" + } + ] + }, + { + "surface": "विहाय", + "isMarker": false, + "gloss": "leaving behind i.e. at a distance from", + "lemmas": [ + "vihAya" + ], + "pieces": [ + { + "slp": "vihAya", + "stem": "vihAya", + "gloss": "leaving behind i.e. at a distance from" + } + ] + }, + { + "surface": "जीर्णान्यन्यानि", + "isMarker": false, + "gloss": "old, worn out, withered + anya, am, n. inexhaustibleness", + "lemmas": [ + "jIrRa", + "anya" + ], + "pieces": [ + { + "slp": "jIrRAni", + "stem": "jIrRa", + "gloss": "old, worn out, withered" + }, + { + "slp": "anyAni", + "stem": "anya", + "gloss": "anya, am, n. inexhaustibleness" + } + ] + }, + { + "surface": "संयाति", + "isMarker": false, + "gloss": "gone together, proceeded together, approached", + "lemmas": [ + "saMyAta" + ], + "pieces": [ + { + "slp": "saMyAti", + "stem": "saMyAta", + "gloss": "gone together, proceeded together, approached" + } + ] + }, + { + "surface": "नवानि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nu" + ], + "pieces": [ + { + "slp": "navAni", + "stem": "nu", + "gloss": "nu ind, now, still" + } + ] + }, + { + "surface": "देही", + "isMarker": false, + "gloss": "having a body, corporeal", + "lemmas": [ + "dehin" + ], + "pieces": [ + { + "slp": "dehI", + "stem": "dehin", + "gloss": "having a body, corporeal" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "23a": { + "line": "नैनं छिन्दन्ति शस्त्राणि नैनं दहति पावकः ।", + "tokens": [ + { + "surface": "नैनं", + "isMarker": false, + "gloss": "not + pl. N. of a people, MBh. xiii", + "lemmas": [ + "na", + "Ena" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "छिन्दन्ति", + "isMarker": false, + "gloss": "to cut off, amputate, cut through", + "lemmas": [ + "Cid" + ], + "pieces": [ + { + "slp": "Cindanti", + "stem": "Cid", + "gloss": "to cut off, amputate, cut through" + } + ] + }, + { + "surface": "शस्त्राणि", + "isMarker": false, + "gloss": "invocation, praise", + "lemmas": [ + "Sastra" + ], + "pieces": [ + { + "slp": "SastrARi", + "stem": "Sastra", + "gloss": "invocation, praise" + } + ] + }, + { + "surface": "नैनं", + "isMarker": false, + "gloss": "not + pl. N. of a people, MBh. xiii", + "lemmas": [ + "na", + "Ena" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "दहति", + "isMarker": false, + "gloss": "to burn, consume by fire, scorch", + "lemmas": [ + "dah" + ], + "pieces": [ + { + "slp": "dahati", + "stem": "dah", + "gloss": "to burn, consume by fire, scorch" + } + ] + }, + { + "surface": "पावकः", + "isMarker": false, + "gloss": "pure, clear, bright", + "lemmas": [ + "pAvaka" + ], + "pieces": [ + { + "slp": "pAvakaH", + "stem": "pAvaka", + "gloss": "pure, clear, bright" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "23b": { + "line": "न चैनं क्लेदयन्त्यापो न शोषयति मारुतः ॥२- २३॥", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चैनं", + "isMarker": false, + "gloss": "and + pl. N. of a people, MBh. xiii", + "lemmas": [ + "ca", + "Ena" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "क्लेदयन्त्यापो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kledayat", + "pa" + ], + "pieces": [ + { + "slp": "kledayantyA", + "stem": "kledayat", + "gloss": "" + }, + { + "slp": "pas", + "stem": "pa", + "gloss": "guarding, protecting, ruling" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "शोषयति", + "isMarker": false, + "gloss": "to dry, become dry or withered, fade", + "lemmas": [ + "Suz" + ], + "pieces": [ + { + "slp": "Sozayati", + "stem": "Suz", + "gloss": "to dry, become dry or withered, fade" + } + ] + }, + { + "surface": "मारुतः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "mAruta" + ], + "pieces": [ + { + "slp": "mArutaH", + "stem": "mAruta", + "gloss": "or mAruta mfn. relating or belonging to the Maruts, proceeding from or consisting of the M˚s RV. &c. &c" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "24a": { + "line": "अच्छेद्योऽयमदाह्योऽयमक्लेद्योऽशोष्य एव च ।", + "tokens": [ + { + "surface": "अच्छेद्योऽयमदाह्योऽयमक्लेद्योऽशोष्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "acCedya", + "aya", + "adAhya", + "yama", + "kledya", + "aSozya" + ], + "pieces": [ + { + "slp": "acCedyas", + "stem": "acCedya", + "gloss": "improper or impossible to be cut, indivisible" + }, + { + "slp": "ayam", + "stem": "aya", + "gloss": "going" + }, + { + "slp": "adAhyas", + "stem": "adAhya", + "gloss": "incombustible" + }, + { + "slp": "yama", + "stem": "yama", + "gloss": "a rein, curb, bridle" + }, + { + "slp": "kledyas", + "stem": "kledya", + "gloss": "See a-kl˚" + }, + { + "slp": "aSozya", + "stem": "aSozya", + "gloss": "not to be dried up, not drying up, permanent" + } + ] + }, + { + "surface": "एव", + "isMarker": false, + "gloss": "just, only", + "lemmas": [ + "eva" + ], + "pieces": [ + { + "slp": "eva", + "stem": "eva", + "gloss": "just, only", + "override": true + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "24b": { + "line": "नित्यः सर्वगतः स्थाणुरचलोऽयं सनातनः ॥२- २४॥", + "tokens": [ + { + "surface": "नित्यः", + "isMarker": false, + "gloss": "innate, native, MBh. iii", + "lemmas": [ + "nitya" + ], + "pieces": [ + { + "slp": "nityaH", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + } + ] + }, + { + "surface": "सर्वगतः", + "isMarker": false, + "gloss": "all-pervading, omnipresent", + "lemmas": [ + "sarvaga" + ], + "pieces": [ + { + "slp": "sarvagataH", + "stem": "sarvaga", + "gloss": "all-pervading, omnipresent" + } + ] + }, + { + "surface": "स्थाणुरचलोऽयं", + "isMarker": false, + "gloss": "standing firmly, stationary, firm + to be moved, stir, tremble + going", + "lemmas": [ + "sTARu", + "cal", + "ya" + ], + "pieces": [ + { + "slp": "sTARus", + "stem": "sTARu", + "gloss": "standing firmly, stationary, firm" + }, + { + "slp": "acalas", + "stem": "cal", + "gloss": "to be moved, stir, tremble" + }, + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "सनातनः", + "isMarker": false, + "gloss": "eternal, perpetual, permanent", + "lemmas": [ + "sanAtana" + ], + "pieces": [ + { + "slp": "sanAtanaH", + "stem": "sanAtana", + "gloss": "eternal, perpetual, permanent" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "25a": { + "line": "अव्यक्तोऽयमचिन्त्योऽयमविकार्योऽयमुच्यते ।", + "tokens": [ + { + "surface": "अव्यक्तोऽयमचिन्त्योऽयमविकार्योऽयमुच्यते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "avyakta", + "ya", + "acintya", + "yama", + "vikArya", + "ya", + "muc" + ], + "pieces": [ + { + "slp": "avyaktas", + "stem": "avyakta", + "gloss": "undeveloped, not manifest, unapparent" + }, + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + }, + { + "slp": "acintyas", + "stem": "acintya", + "gloss": "inconceivable, surpassing thought, MaitrS. &c" + }, + { + "slp": "yama", + "stem": "yama", + "gloss": "a rein, curb, bridle" + }, + { + "slp": "vikAryas", + "stem": "vikArya", + "gloss": "to be changed, liable to change" + }, + { + "slp": "ya", + "stem": "ya", + "gloss": "going" + }, + { + "slp": "mucyate", + "stem": "muc", + "gloss": "to cheat, Dhātup. vi, 12" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "25b": { + "line": "तस्मादेवं विदित्वैनं नानुशोचितुमर्हसि ॥२- २५॥", + "tokens": [ + { + "surface": "तस्मादेवं", + "isMarker": false, + "gloss": "that; he, she, it + thus, in this way, in such a manner", + "lemmas": [ + "tad", + "evam" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "evam", + "stem": "evam", + "gloss": "thus, in this way, in such a manner" + } + ] + }, + { + "surface": "विदित्वैनं", + "isMarker": false, + "gloss": "to know, understand, perceive + pl. N. of a people, MBh. xiii", + "lemmas": [ + "vid", + "Ena" + ], + "pieces": [ + { + "slp": "viditvA", + "stem": "vid", + "gloss": "to know, understand, perceive" + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "नानुशोचितुमर्हसि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nA", + "nu", + "Suc", + "arh" + ], + "pieces": [ + { + "slp": "nAs", + "stem": "nA", + "gloss": "thin, spare" + }, + { + "slp": "nu", + "stem": "nu", + "gloss": "nu ind, now, still" + }, + { + "slp": "Socitum", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + }, + { + "slp": "arhasi", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "26a": { + "line": "अथ चैनं नित्यजातं नित्यं वा मन्यसे मृतम् ।", + "tokens": [ + { + "surface": "अथ", + "isMarker": false, + "gloss": "", + "lemmas": [ + "aTa" + ], + "pieces": [ + { + "slp": "aTa", + "stem": "aTa", + "gloss": "or aTA, ind. an auspicious and inceptive particle, now" + } + ] + }, + { + "surface": "चैनं", + "isMarker": false, + "gloss": "and + pl. N. of a people, MBh. xiii", + "lemmas": [ + "ca", + "Ena" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "Enam", + "stem": "Ena", + "gloss": "pl. N. of a people, MBh. xiii" + } + ] + }, + { + "surface": "नित्यजातं", + "isMarker": false, + "gloss": "constantly born, Bhag. ii, 26", + "lemmas": [ + "nityajAta" + ], + "pieces": [ + { + "slp": "nityajAtam", + "stem": "nityajAta", + "gloss": "constantly born, Bhag. ii, 26" + } + ] + }, + { + "surface": "नित्यं", + "isMarker": false, + "gloss": "innate, native, MBh. iii", + "lemmas": [ + "nitya" + ], + "pieces": [ + { + "slp": "nityam", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "मन्यसे", + "isMarker": false, + "gloss": "in comp. for 1. mad", + "lemmas": [ + "man" + ], + "pieces": [ + { + "slp": "manyase", + "stem": "man", + "gloss": "in comp. for 1. mad" + } + ] + }, + { + "surface": "मृतम्", + "isMarker": false, + "gloss": "dead, deceased, death-like", + "lemmas": [ + "mfta" + ], + "pieces": [ + { + "slp": "mftam", + "stem": "mfta", + "gloss": "dead, deceased, death-like" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "26b": { + "line": "तथापि त्वं महाबाहो नैवं शोचितुमर्हसि ॥२- २६॥", + "tokens": [ + { + "surface": "तथापि", + "isMarker": false, + "gloss": "so, in that way + also, even", + "lemmas": [ + "taTA", + "api" + ], + "pieces": [ + { + "slp": "taTA", + "stem": "taTA", + "gloss": "so, in that way", + "override": true + }, + { + "slp": "api", + "stem": "api", + "gloss": "also, even", + "override": true + } + ] + }, + { + "surface": "त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "महाबाहो", + "isMarker": false, + "gloss": "long-armed", + "lemmas": [ + "mahAbAhu" + ], + "pieces": [ + { + "slp": "mahAbAho", + "stem": "mahAbAhu", + "gloss": "long-armed" + } + ] + }, + { + "surface": "नैवं", + "isMarker": false, + "gloss": "not + thus, in this way, in such a manner", + "lemmas": [ + "na", + "evam" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "evam", + "stem": "evam", + "gloss": "thus, in this way, in such a manner" + } + ] + }, + { + "surface": "शोचितुमर्हसि", + "isMarker": false, + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "lemmas": [ + "Suc", + "arh" + ], + "pieces": [ + { + "slp": "Socitum", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + }, + { + "slp": "arhasi", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "27a": { + "line": "जातस्य हि ध्रुवो मृत्युर्ध्रुवं जन्म मृतस्य च ।", + "tokens": [ + { + "surface": "जातस्य", + "isMarker": false, + "gloss": "born, brought into existence by, engendered by", + "lemmas": [ + "jAta" + ], + "pieces": [ + { + "slp": "jAtasya", + "stem": "jAta", + "gloss": "born, brought into existence by, engendered by" + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "ध्रुवो", + "isMarker": false, + "gloss": "fixed, firm, immovable", + "lemmas": [ + "Druva" + ], + "pieces": [ + { + "slp": "Druvas", + "stem": "Druva", + "gloss": "fixed, firm, immovable" + } + ] + }, + { + "surface": "मृत्युर्ध्रुवं", + "isMarker": false, + "gloss": "death, dying, RV. &c + fixed, firm, immovable", + "lemmas": [ + "mftyu", + "Druva" + ], + "pieces": [ + { + "slp": "mftyus", + "stem": "mftyu", + "gloss": "death, dying, RV. &c" + }, + { + "slp": "Druvam", + "stem": "Druva", + "gloss": "fixed, firm, immovable" + } + ] + }, + { + "surface": "जन्म", + "isMarker": false, + "gloss": "birth, production, origin", + "lemmas": [ + "janman" + ], + "pieces": [ + { + "slp": "janma", + "stem": "janman", + "gloss": "birth, production, origin" + } + ] + }, + { + "surface": "मृतस्य", + "isMarker": false, + "gloss": "dead, deceased, death-like", + "lemmas": [ + "mfta" + ], + "pieces": [ + { + "slp": "mftasya", + "stem": "mfta", + "gloss": "dead, deceased, death-like" + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "27b": { + "line": "तस्मादपरिहार्येऽर्थे न त्वं शोचितुमर्हसि ॥२- २७॥", + "tokens": [ + { + "surface": "तस्मादपरिहार्येऽर्थे", + "isMarker": false, + "gloss": "that; he, she, it + id, Gaut. &c + aim, purpose", + "lemmas": [ + "tad", + "aparihArya", + "arTa" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "aparihArye", + "stem": "aparihArya", + "gloss": "id, Gaut. &c" + }, + { + "slp": "arTe", + "stem": "arTa", + "gloss": "aim, purpose" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "शोचितुमर्हसि", + "isMarker": false, + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "lemmas": [ + "Suc", + "arh" + ], + "pieces": [ + { + "slp": "Socitum", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + }, + { + "slp": "arhasi", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "28a": { + "line": "अव्यक्तादीनि भूतानि व्यक्तमध्यानि भारत ।", + "tokens": [ + { + "surface": "अव्यक्तादीनि", + "isMarker": false, + "gloss": "undeveloped, not manifest, unapparent + not depressed, noble-minded", + "lemmas": [ + "avyakta", + "adIna" + ], + "pieces": [ + { + "slp": "avyaktA", + "stem": "avyakta", + "gloss": "undeveloped, not manifest, unapparent" + }, + { + "slp": "adIni", + "stem": "adIna", + "gloss": "not depressed, noble-minded" + } + ] + }, + { + "surface": "भूतानि", + "isMarker": false, + "gloss": "become, been, gone", + "lemmas": [ + "BUta" + ], + "pieces": [ + { + "slp": "BUtAni", + "stem": "BUta", + "gloss": "become, been, gone" + } + ] + }, + { + "surface": "व्यक्तमध्यानि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vyakta", + "maDya" + ], + "pieces": [ + { + "slp": "vyakta", + "stem": "vyakta", + "gloss": "vy-akti. See cols. 2, 3" + }, + { + "slp": "maDyAni", + "stem": "maDya", + "gloss": "middle" + } + ] + }, + { + "surface": "भारत", + "isMarker": false, + "gloss": "O descendant of Bharata", + "lemmas": [ + "BArata" + ], + "pieces": [ + { + "slp": "BArata", + "stem": "BArata", + "gloss": "O descendant of Bharata", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "28b": { + "line": "अव्यक्तनिधनान्येव तत्र का परिदेवना ॥२- २८॥", + "tokens": [ + { + "surface": "अव्यक्तनिधनान्येव", + "isMarker": false, + "gloss": "undeveloped, not manifest, unapparent + having no property, poor + just, only", + "lemmas": [ + "avyakta", + "niDana", + "eva" + ], + "pieces": [ + { + "slp": "avyakta", + "stem": "avyakta", + "gloss": "undeveloped, not manifest, unapparent" + }, + { + "slp": "niDanAni", + "stem": "niDana", + "gloss": "having no property, poor" + }, + { + "slp": "eva", + "stem": "eva", + "gloss": "just, only", + "override": true + } + ] + }, + { + "surface": "तत्र", + "isMarker": false, + "gloss": "used for the loc. of tad", + "lemmas": [ + "tatra" + ], + "pieces": [ + { + "slp": "tatra", + "stem": "tatra", + "gloss": "used for the loc. of tad" + } + ] + }, + { + "surface": "का", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kA", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "परिदेवना", + "isMarker": false, + "gloss": "lamentation, bewailing, complaint", + "lemmas": [ + "paridevanA" + ], + "pieces": [ + { + "slp": "paridevanA", + "stem": "paridevanA", + "gloss": "lamentation, bewailing, complaint" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "29a": { + "line": "आश्चर्यवत्पश्यति कश्चिदेनमाश्चर्यवद्वदति तथैव चान्यः ।", + "tokens": [ + { + "surface": "आश्चर्यवत्पश्यति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "AScaryavat", + "paSyat", + "i" + ], + "pieces": [ + { + "slp": "AScaryavat", + "stem": "AScaryavat", + "gloss": "" + }, + { + "slp": "paSyat", + "stem": "paSyat", + "gloss": "seeing, beholding &c" + }, + { + "slp": "i", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "कश्चिदेनमाश्चर्यवद्वदति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kim", + "cit", + "e", + "na", + "AScaryavat", + "vad" + ], + "pieces": [ + { + "slp": "kas", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + }, + { + "slp": "cit", + "stem": "cit", + "gloss": "ifc. ‘piling up’, see agni-, UrDva-" + }, + { + "slp": "e", + "stem": "e", + "gloss": "e the eleventh vowel of the alphabet" + }, + { + "slp": "nam", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "AScaryavat", + "stem": "AScaryavat", + "gloss": "" + }, + { + "slp": "vadati", + "stem": "vad", + "gloss": "to speak, say, utter" + } + ] + }, + { + "surface": "तथैव", + "isMarker": false, + "gloss": "so, in that way + just, only", + "lemmas": [ + "taTA", + "eva" + ], + "pieces": [ + { + "slp": "taTA", + "stem": "taTA", + "gloss": "so, in that way", + "override": true + }, + { + "slp": "eva", + "stem": "eva", + "gloss": "just, only", + "override": true + } + ] + }, + { + "surface": "चान्यः", + "isMarker": false, + "gloss": "and + nI for nis before r", + "lemmas": [ + "ca", + "nI" + ], + "pieces": [ + { + "slp": "cAs", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "nyas", + "stem": "nI", + "gloss": "nI for nis before r" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "29b": { + "line": "आश्चर्यवच्चैनमन्यः शृणोति श्रुत्वाप्येनं वेद न चैव कश्चित् ॥२- २९॥", + "tokens": [ + { + "surface": "आश्चर्यवच्चैनमन्यः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "AScaryavat", + "ca", + "ena", + "anya" + ], + "pieces": [ + { + "slp": "AScaryavat", + "stem": "AScaryavat", + "gloss": "" + }, + { + "slp": "cA", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "enam", + "stem": "ena", + "gloss": "ena a pronom. base, he, she" + }, + { + "slp": "anyas", + "stem": "anya", + "gloss": "anya, am, n. inexhaustibleness" + } + ] + }, + { + "surface": "शृणोति", + "isMarker": false, + "gloss": "to hear, listen or attend to anything, give ear to any one", + "lemmas": [ + "Sru" + ], + "pieces": [ + { + "slp": "SfRoti", + "stem": "Sru", + "gloss": "to hear, listen or attend to anything, give ear to any one" + } + ] + }, + { + "surface": "श्रुत्वाप्येनं", + "isMarker": false, + "gloss": "hearing, listening + or + not", + "lemmas": [ + "Srut", + "vA", + "na" + ], + "pieces": [ + { + "slp": "Srut", + "stem": "Srut", + "gloss": "hearing, listening" + }, + { + "slp": "vApye", + "stem": "vA", + "gloss": "or", + "override": true + }, + { + "slp": "nam", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "वेद", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "veda", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चैव", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ca", + "i" + ], + "pieces": [ + { + "slp": "cA", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "Eva", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "कश्चित्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kim", + "cit" + ], + "pieces": [ + { + "slp": "kas", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + }, + { + "slp": "cit", + "stem": "cit", + "gloss": "ifc. ‘piling up’, see agni-, UrDva-" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "२९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "30a": { + "line": "देही नित्यमवध्योऽयं देहे सर्वस्य भारत ।", + "tokens": [ + { + "surface": "देही", + "isMarker": false, + "gloss": "having a body, corporeal", + "lemmas": [ + "dehin" + ], + "pieces": [ + { + "slp": "dehI", + "stem": "dehin", + "gloss": "having a body, corporeal" + } + ] + }, + { + "surface": "नित्यमवध्योऽयं", + "isMarker": false, + "gloss": "innate, native, MBh. iii + not hurting, innoxious, beneficent + going", + "lemmas": [ + "nitya", + "avaDa", + "ya" + ], + "pieces": [ + { + "slp": "nityam", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + }, + { + "slp": "avaDyas", + "stem": "avaDa", + "gloss": "not hurting, innoxious, beneficent" + }, + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "देहे", + "isMarker": false, + "gloss": "the body", + "lemmas": [ + "deha" + ], + "pieces": [ + { + "slp": "dehe", + "stem": "deha", + "gloss": "the body" + } + ] + }, + { + "surface": "सर्वस्य", + "isMarker": false, + "gloss": "all, every", + "lemmas": [ + "sarva" + ], + "pieces": [ + { + "slp": "sarvasya", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "भारत", + "isMarker": false, + "gloss": "O descendant of Bharata", + "lemmas": [ + "BArata" + ], + "pieces": [ + { + "slp": "BArata", + "stem": "BArata", + "gloss": "O descendant of Bharata", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "30b": { + "line": "तस्मात्सर्वाणि भूतानि न त्वं शोचितुमर्हसि ॥२- ३०॥", + "tokens": [ + { + "surface": "तस्मात्सर्वाणि", + "isMarker": false, + "gloss": "that; he, she, it + all, every", + "lemmas": [ + "tad", + "sarva" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "sarvARi", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "भूतानि", + "isMarker": false, + "gloss": "become, been, gone", + "lemmas": [ + "BUta" + ], + "pieces": [ + { + "slp": "BUtAni", + "stem": "BUta", + "gloss": "become, been, gone" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "शोचितुमर्हसि", + "isMarker": false, + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "lemmas": [ + "Suc", + "arh" + ], + "pieces": [ + { + "slp": "Socitum", + "stem": "Suc", + "gloss": "to shine, flame, gleam" + }, + { + "slp": "arhasi", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "31a": { + "line": "स्वधर्ममपि चावेक्ष्य न विकम्पितुमर्हसि ।", + "tokens": [ + { + "surface": "स्वधर्ममपि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "svaDarma", + "api" + ], + "pieces": [ + { + "slp": "svaDarmam", + "stem": "svaDarma", + "gloss": "o˚'s own rights" + }, + { + "slp": "api", + "stem": "api", + "gloss": "also, even", + "override": true + } + ] + }, + { + "surface": "चावेक्ष्य", + "isMarker": false, + "gloss": "and + to be attended to, MBh. ii, 2591", + "lemmas": [ + "ca", + "avekzya" + ], + "pieces": [ + { + "slp": "cA", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "avekzya", + "stem": "avekzya", + "gloss": "to be attended to, MBh. ii, 2591" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "विकम्पितुमर्हसि", + "isMarker": false, + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to tremble, shake + to deserve, merit, be worthy of", + "lemmas": [ + "vI", + "kamp", + "arh" + ], + "pieces": [ + { + "slp": "vi", + "stem": "vI", + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV" + }, + { + "slp": "kampitum", + "stem": "kamp", + "gloss": "to tremble, shake" + }, + { + "slp": "arhasi", + "stem": "arh", + "gloss": "to deserve, merit, be worthy of" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "31b": { + "line": "धर्म्याद्धि युद्धाच्छ्रेयोऽन्यत्क्षत्रियस्य न विद्यते ॥२- ३१॥", + "tokens": [ + { + "surface": "धर्म्याद्धि", + "isMarker": false, + "gloss": "legal, legitimate + for, indeed", + "lemmas": [ + "Darmya", + "hi" + ], + "pieces": [ + { + "slp": "DarmyAt", + "stem": "Darmya", + "gloss": "legal, legitimate" + }, + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "युद्धाच्छ्रेयोऽन्यत्क्षत्रियस्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yudDa", + "Sreyas", + "anya", + "kzatriya" + ], + "pieces": [ + { + "slp": "yudDAt", + "stem": "yudDa", + "gloss": "fought, encountered, conquered" + }, + { + "slp": "Sreyas", + "stem": "Sreyas", + "gloss": "more splendid or beautiful, more excellent or distinguished, superior" + }, + { + "slp": "anyat", + "stem": "anya", + "gloss": "anya, am, n. inexhaustibleness" + }, + { + "slp": "kzatriyasya", + "stem": "kzatriya", + "gloss": "governing, endowed with sovereignty" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "विद्यते", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "vidyate", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "32a": { + "line": "यदृच्छया चोपपन्नं स्वर्गद्वारमपावृतम् ।", + "tokens": [ + { + "surface": "यदृच्छया", + "isMarker": false, + "gloss": "spontaneous, accidental", + "lemmas": [ + "yadfcCa" + ], + "pieces": [ + { + "slp": "yadfcCayA", + "stem": "yadfcCa", + "gloss": "spontaneous, accidental" + } + ] + }, + { + "surface": "चोपपन्नं", + "isMarker": false, + "gloss": "and + one who has approached a teacher, Suśr", + "lemmas": [ + "ca", + "upapanna" + ], + "pieces": [ + { + "slp": "cA", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "upapannam", + "stem": "upapanna", + "gloss": "one who has approached a teacher, Suśr" + } + ] + }, + { + "surface": "स्वर्गद्वारमपावृतम्", + "isMarker": false, + "gloss": "heaven's gate + unrestrained", + "lemmas": [ + "svargadvAra", + "apAvft" + ], + "pieces": [ + { + "slp": "svargadvAram", + "stem": "svargadvAra", + "gloss": "heaven's gate" + }, + { + "slp": "apAvftam", + "stem": "apAvft", + "gloss": "unrestrained" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "32b": { + "line": "सुखिनः क्षत्रियाः पार्थ लभन्ते युद्धमीदृशम् ॥२- ३२॥", + "tokens": [ + { + "surface": "सुखिनः", + "isMarker": false, + "gloss": "possessing or causing happiness or pleasure, happy, joyful", + "lemmas": [ + "suKin" + ], + "pieces": [ + { + "slp": "suKinaH", + "stem": "suKin", + "gloss": "possessing or causing happiness or pleasure, happy, joyful" + } + ] + }, + { + "surface": "क्षत्रियाः", + "isMarker": false, + "gloss": "governing, endowed with sovereignty", + "lemmas": [ + "kzatriya" + ], + "pieces": [ + { + "slp": "kzatriyAH", + "stem": "kzatriya", + "gloss": "governing, endowed with sovereignty" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "लभन्ते", + "isMarker": false, + "gloss": "to take, seize, catch", + "lemmas": [ + "laB" + ], + "pieces": [ + { + "slp": "laBante", + "stem": "laB", + "gloss": "to take, seize, catch" + } + ] + }, + { + "surface": "युद्धमीदृशम्", + "isMarker": false, + "gloss": "fought, encountered, conquered + endowed with such qualities, such", + "lemmas": [ + "yudDa", + "IdfS" + ], + "pieces": [ + { + "slp": "yudDam", + "stem": "yudDa", + "gloss": "fought, encountered, conquered" + }, + { + "slp": "IdfSam", + "stem": "IdfS", + "gloss": "endowed with such qualities, such" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "33a": { + "line": "अथ चेत्त्वमिमं धर्म्यं संग्रामं न करिष्यसि ।", + "tokens": [ + { + "surface": "अथ", + "isMarker": false, + "gloss": "", + "lemmas": [ + "aTa" + ], + "pieces": [ + { + "slp": "aTa", + "stem": "aTa", + "gloss": "or aTA, ind. an auspicious and inceptive particle, now" + } + ] + }, + { + "surface": "चेत्त्वमिमं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ced", + "tu", + "ama", + "ma" + ], + "pieces": [ + { + "slp": "ced", + "stem": "ced", + "gloss": "" + }, + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + }, + { + "slp": "ami", + "stem": "ama", + "gloss": "impetuosity, violence, strength" + }, + { + "slp": "mam", + "stem": "ma", + "gloss": "time, L. poison" + } + ] + }, + { + "surface": "धर्म्यं", + "isMarker": false, + "gloss": "legal, legitimate", + "lemmas": [ + "Darmya" + ], + "pieces": [ + { + "slp": "Darmyam", + "stem": "Darmya", + "gloss": "legal, legitimate" + } + ] + }, + { + "surface": "संग्रामं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sam", + "grAma" + ], + "pieces": [ + { + "slp": "sam", + "stem": "sam", + "gloss": "to be disturbed, Dhātup. xix, 82" + }, + { + "slp": "grAmam", + "stem": "grAma", + "gloss": "an inhabited place, village, hamlet" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "करिष्यसि", + "isMarker": false, + "gloss": "to make mention of, praise, speak highly of", + "lemmas": [ + "kf" + ], + "pieces": [ + { + "slp": "karizyasi", + "stem": "kf", + "gloss": "to make mention of, praise, speak highly of" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "33b": { + "line": "ततः स्वधर्मं कीर्तिं च हित्वा पापमवाप्स्यसि ॥२- ३३॥", + "tokens": [ + { + "surface": "ततः", + "isMarker": false, + "gloss": "chiefly Ved. a father, RV. viii, 91", + "lemmas": [ + "tata" + ], + "pieces": [ + { + "slp": "tataH", + "stem": "tata", + "gloss": "chiefly Ved. a father, RV. viii, 91" + } + ] + }, + { + "surface": "स्वधर्मं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "svaDarma" + ], + "pieces": [ + { + "slp": "svaDarmam", + "stem": "svaDarma", + "gloss": "o˚'s own rights" + } + ] + }, + { + "surface": "कीर्तिं", + "isMarker": false, + "gloss": "mention, making mention of, speech", + "lemmas": [ + "kIrti" + ], + "pieces": [ + { + "slp": "kIrtim", + "stem": "kIrti", + "gloss": "mention, making mention of, speech" + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "हित्वा", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hitvA", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "पापमवाप्स्यसि", + "isMarker": false, + "gloss": "bad, vicious, wicked + a bond + to reach, overtake, meet with", + "lemmas": [ + "pApa", + "mu", + "Ap" + ], + "pieces": [ + { + "slp": "pApa", + "stem": "pApa", + "gloss": "bad, vicious, wicked" + }, + { + "slp": "mo", + "stem": "mu", + "gloss": "a bond" + }, + { + "slp": "Apsyasi", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "34a": { + "line": "अकीर्तिं चापि भूतानि कथयिष्यन्ति तेऽव्ययाम् ।", + "tokens": [ + { + "surface": "अकीर्तिं", + "isMarker": false, + "gloss": "ill-fame, disgrace", + "lemmas": [ + "akIrti" + ], + "pieces": [ + { + "slp": "akIrtim", + "stem": "akIrti", + "gloss": "ill-fame, disgrace" + } + ] + }, + { + "surface": "चापि", + "isMarker": false, + "gloss": "bow-armed, MBh. xii, 10406", + "lemmas": [ + "cApin" + ], + "pieces": [ + { + "slp": "cApi", + "stem": "cApin", + "gloss": "bow-armed, MBh. xii, 10406" + } + ] + }, + { + "surface": "भूतानि", + "isMarker": false, + "gloss": "become, been, gone", + "lemmas": [ + "BUta" + ], + "pieces": [ + { + "slp": "BUtAni", + "stem": "BUta", + "gloss": "become, been, gone" + } + ] + }, + { + "surface": "कथयिष्यन्ति", + "isMarker": false, + "gloss": "to converse with any one", + "lemmas": [ + "kaT" + ], + "pieces": [ + { + "slp": "kaTayizyanti", + "stem": "kaT", + "gloss": "to converse with any one" + } + ] + }, + { + "surface": "तेऽव्ययाम्", + "isMarker": false, + "gloss": "that; he, she, it + passing away, mutable, liable to change or decay", + "lemmas": [ + "tad", + "vyaya" + ], + "pieces": [ + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "vyayAm", + "stem": "vyaya", + "gloss": "passing away, mutable, liable to change or decay" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "34b": { + "line": "सम्भावितस्य चाकीर्तिर्मरणादतिरिच्यते ॥२- ३४॥", + "tokens": [ + { + "surface": "सम्भावितस्य", + "isMarker": false, + "gloss": "brought together, brought about &c", + "lemmas": [ + "samBAvita" + ], + "pieces": [ + { + "slp": "samBAvitasya", + "stem": "samBAvita", + "gloss": "brought together, brought about &c" + } + ] + }, + { + "surface": "चाकीर्तिर्मरणादतिरिच्यते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ca", + "akIrti", + "maraRa", + "adat", + "ric" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "akIrtis", + "stem": "akIrti", + "gloss": "ill-fame, disgrace" + }, + { + "slp": "maraRa", + "stem": "maraRa", + "gloss": "the act of dying, death" + }, + { + "slp": "adati", + "stem": "adat", + "gloss": "eating, RV. x, 4" + }, + { + "slp": "ricyate", + "stem": "ric", + "gloss": "to empty, evacuate, leave" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "35a": { + "line": "भयाद्रणादुपरतं मंस्यन्ते त्वां महारथाः ।", + "tokens": [ + { + "surface": "भयाद्रणादुपरतं", + "isMarker": false, + "gloss": "fear, alarm, dread apprehension + delight, pleasure, gladness + ceased, stopped, quiet", + "lemmas": [ + "Baya", + "raRa", + "uparata" + ], + "pieces": [ + { + "slp": "BayAt", + "stem": "Baya", + "gloss": "fear, alarm, dread apprehension" + }, + { + "slp": "raRAt", + "stem": "raRa", + "gloss": "delight, pleasure, gladness" + }, + { + "slp": "uparatam", + "stem": "uparata", + "gloss": "ceased, stopped, quiet" + } + ] + }, + { + "surface": "मंस्यन्ते", + "isMarker": false, + "gloss": "in comp. for 1. mad", + "lemmas": [ + "man" + ], + "pieces": [ + { + "slp": "maMsyante", + "stem": "man", + "gloss": "in comp. for 1. mad" + } + ] + }, + { + "surface": "त्वां", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvAm", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "महारथाः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "mahAraTa" + ], + "pieces": [ + { + "slp": "mahAraTAH", + "stem": "mahAraTa", + "gloss": "a gr˚ chariot" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "35b": { + "line": "येषां च त्वं बहुमतो भूत्वा यास्यसि लाघवम् ॥२- ३५॥", + "tokens": [ + { + "surface": "येषां", + "isMarker": false, + "gloss": "who, which, what", + "lemmas": [ + "yad" + ], + "pieces": [ + { + "slp": "yezAm", + "stem": "yad", + "gloss": "who, which, what" + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "त्वं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yuzmad" + ], + "pieces": [ + { + "slp": "tvam", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "बहुमतो", + "isMarker": false, + "gloss": "much thought of, highly esteemed, valued", + "lemmas": [ + "bahumata" + ], + "pieces": [ + { + "slp": "bahumatas", + "stem": "bahumata", + "gloss": "much thought of, highly esteemed, valued" + } + ] + }, + { + "surface": "भूत्वा", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "BUtvA", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "यास्यसि", + "isMarker": false, + "gloss": "a goer or mover", + "lemmas": [ + "yA" + ], + "pieces": [ + { + "slp": "yAsyasi", + "stem": "yA", + "gloss": "a goer or mover" + } + ] + }, + { + "surface": "लाघवम्", + "isMarker": false, + "gloss": "swiftness, rapidity, speed", + "lemmas": [ + "lAGava" + ], + "pieces": [ + { + "slp": "lAGavam", + "stem": "lAGava", + "gloss": "swiftness, rapidity, speed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "36a": { + "line": "अवाच्यवादांश्च बहून्वदिष्यन्ति तवाहिताः ।", + "tokens": [ + { + "surface": "अवाच्यवादांश्च", + "isMarker": false, + "gloss": "not to be addressed, Mn. ii, 128 + speaking of or about + and", + "lemmas": [ + "avAcya", + "vAda", + "ca" + ], + "pieces": [ + { + "slp": "avAcya", + "stem": "avAcya", + "gloss": "not to be addressed, Mn. ii, 128" + }, + { + "slp": "vAdAn", + "stem": "vAda", + "gloss": "speaking of or about" + }, + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "बहून्वदिष्यन्ति", + "isMarker": false, + "gloss": "much, many, frequent + to speak, say, utter", + "lemmas": [ + "bahu", + "vad" + ], + "pieces": [ + { + "slp": "bahUn", + "stem": "bahu", + "gloss": "much, many, frequent" + }, + { + "slp": "vadizyanti", + "stem": "vad", + "gloss": "to speak, say, utter" + } + ] + }, + { + "surface": "तवाहिताः", + "isMarker": false, + "gloss": "strong, energetic, courageous + sent, impelled, urged on", + "lemmas": [ + "tavas", + "hita" + ], + "pieces": [ + { + "slp": "tavAs", + "stem": "tavas", + "gloss": "strong, energetic, courageous" + }, + { + "slp": "hitAs", + "stem": "hita", + "gloss": "sent, impelled, urged on" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "36b": { + "line": "निन्दन्तस्तव सामर्थ्यं ततो दुःखतरं नु किम् ॥२- ३६॥", + "tokens": [ + { + "surface": "निन्दन्तस्तव", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nindat", + "ta", + "yuzmad" + ], + "pieces": [ + { + "slp": "nindan", + "stem": "nindat", + "gloss": "" + }, + { + "slp": "tas", + "stem": "ta", + "gloss": "Lakṣmī" + }, + { + "slp": "tava", + "stem": "yuzmad", + "gloss": "the base of the 2nd pers. pron. as used in comp" + } + ] + }, + { + "surface": "सामर्थ्यं", + "isMarker": false, + "gloss": "sameness of aim or object or meaning or signification, belonging or agreeing together, adequacy", + "lemmas": [ + "sAmarTya" + ], + "pieces": [ + { + "slp": "sAmarTyam", + "stem": "sAmarTya", + "gloss": "sameness of aim or object or meaning or signification, belonging or agreeing together, adequacy" + } + ] + }, + { + "surface": "ततो", + "isMarker": false, + "gloss": "chiefly Ved. a father, RV. viii, 91", + "lemmas": [ + "tata" + ], + "pieces": [ + { + "slp": "tatas", + "stem": "tata", + "gloss": "chiefly Ved. a father, RV. viii, 91" + } + ] + }, + { + "surface": "दुःखतरं", + "isMarker": false, + "gloss": "greater pain, a greater evil than, Nal. xi", + "lemmas": [ + "duHKatara" + ], + "pieces": [ + { + "slp": "duHKataram", + "stem": "duHKatara", + "gloss": "greater pain, a greater evil than, Nal. xi" + } + ] + }, + { + "surface": "नु", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nu" + ], + "pieces": [ + { + "slp": "nu", + "stem": "nu", + "gloss": "nu ind, now, still" + } + ] + }, + { + "surface": "किम्", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kim", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "37a": { + "line": "हतो वा प्राप्स्यसि स्वर्गं जित्वा वा भोक्ष्यसे महीम् ।", + "tokens": [ + { + "surface": "हतो", + "isMarker": false, + "gloss": "winter", + "lemmas": [ + "hatu" + ], + "pieces": [ + { + "slp": "hato", + "stem": "hatu", + "gloss": "winter" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "प्राप्स्यसि", + "isMarker": false, + "gloss": "before + to reach, overtake, meet with", + "lemmas": [ + "pra", + "Ap" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "Apsyasi", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "स्वर्गं", + "isMarker": false, + "gloss": "going or leading to or being in light or heaven, heavenly, celestial", + "lemmas": [ + "svarga" + ], + "pieces": [ + { + "slp": "svargam", + "stem": "svarga", + "gloss": "going or leading to or being in light or heaven, heavenly, celestial" + } + ] + }, + { + "surface": "जित्वा", + "isMarker": false, + "gloss": "to win or acquire, conquer, vanquish", + "lemmas": [ + "ji" + ], + "pieces": [ + { + "slp": "jitvA", + "stem": "ji", + "gloss": "to win or acquire, conquer, vanquish" + } + ] + }, + { + "surface": "वा", + "isMarker": false, + "gloss": "or", + "lemmas": [ + "vA" + ], + "pieces": [ + { + "slp": "vA", + "stem": "vA", + "gloss": "or", + "override": true + } + ] + }, + { + "surface": "भोक्ष्यसे", + "isMarker": false, + "gloss": "to bend, curve", + "lemmas": [ + "Buj" + ], + "pieces": [ + { + "slp": "Bokzyase", + "stem": "Buj", + "gloss": "to bend, curve" + } + ] + }, + { + "surface": "महीम्", + "isMarker": false, + "gloss": "great, strong, powerful mighty", + "lemmas": [ + "mahI" + ], + "pieces": [ + { + "slp": "mahIm", + "stem": "mahI", + "gloss": "great, strong, powerful mighty" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "37b": { + "line": "तस्मादुत्तिष्ठ कौन्तेय युद्धाय कृतनिश्चयः ॥२- ३७॥", + "tokens": [ + { + "surface": "तस्मादुत्तिष्ठ", + "isMarker": false, + "gloss": "that; he, she, it + a particle of doubt or deliberation + to stand, stand firmly, station one's self", + "lemmas": [ + "tad", + "ut", + "sTA" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "ut", + "stem": "ut", + "gloss": "a particle of doubt or deliberation" + }, + { + "slp": "tizWa", + "stem": "sTA", + "gloss": "to stand, stand firmly, station one's self" + } + ] + }, + { + "surface": "कौन्तेय", + "isMarker": false, + "gloss": "O son of Kuntī — Arjuna", + "lemmas": [ + "kOnteya" + ], + "pieces": [ + { + "slp": "kOnteya", + "stem": "kOnteya", + "gloss": "O son of Kuntī — Arjuna", + "override": true + } + ] + }, + { + "surface": "युद्धाय", + "isMarker": false, + "gloss": "fought, encountered, conquered", + "lemmas": [ + "yudDa" + ], + "pieces": [ + { + "slp": "yudDAya", + "stem": "yudDa", + "gloss": "fought, encountered, conquered" + } + ] + }, + { + "surface": "कृतनिश्चयः", + "isMarker": false, + "gloss": "determined or resolved on, R. iii, 50", + "lemmas": [ + "kftaniScaya" + ], + "pieces": [ + { + "slp": "kftaniScayaH", + "stem": "kftaniScaya", + "gloss": "determined or resolved on, R. iii, 50" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "38a": { + "line": "सुखदुःखे समे कृत्वा लाभालाभौ जयाजयौ ।", + "tokens": [ + { + "surface": "सुखदुःखे", + "isMarker": false, + "gloss": "du. pleasure and pain, joy and sorrow, KauṣUp", + "lemmas": [ + "suKaduHKa" + ], + "pieces": [ + { + "slp": "suKaduHKe", + "stem": "suKaduHKa", + "gloss": "du. pleasure and pain, joy and sorrow, KauṣUp" + } + ] + }, + { + "surface": "समे", + "isMarker": false, + "gloss": "any, every", + "lemmas": [ + "sama" + ], + "pieces": [ + { + "slp": "same", + "stem": "sama", + "gloss": "any, every" + } + ] + }, + { + "surface": "कृत्वा", + "isMarker": false, + "gloss": "to make mention of, praise, speak highly of", + "lemmas": [ + "kf" + ], + "pieces": [ + { + "slp": "kftvA", + "stem": "kf", + "gloss": "to make mention of, praise, speak highly of" + } + ] + }, + { + "surface": "लाभालाभौ", + "isMarker": false, + "gloss": "du. profit and loss, gain and detriment, Mn. ix", + "lemmas": [ + "lABAlABa" + ], + "pieces": [ + { + "slp": "lABAlABO", + "stem": "lABAlABa", + "gloss": "du. profit and loss, gain and detriment, Mn. ix" + } + ] + }, + { + "surface": "जयाजयौ", + "isMarker": false, + "gloss": "du. victory and defeat, Bhag. ii, 38", + "lemmas": [ + "jayAjaya" + ], + "pieces": [ + { + "slp": "jayAjayO", + "stem": "jayAjaya", + "gloss": "du. victory and defeat, Bhag. ii, 38" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "38b": { + "line": "ततो युद्धाय युज्यस्व नैवं पापमवाप्स्यसि ॥२- ३८॥", + "tokens": [ + { + "surface": "ततो", + "isMarker": false, + "gloss": "chiefly Ved. a father, RV. viii, 91", + "lemmas": [ + "tata" + ], + "pieces": [ + { + "slp": "tatas", + "stem": "tata", + "gloss": "chiefly Ved. a father, RV. viii, 91" + } + ] + }, + { + "surface": "युद्धाय", + "isMarker": false, + "gloss": "fought, encountered, conquered", + "lemmas": [ + "yudDa" + ], + "pieces": [ + { + "slp": "yudDAya", + "stem": "yudDa", + "gloss": "fought, encountered, conquered" + } + ] + }, + { + "surface": "युज्यस्व", + "isMarker": false, + "gloss": "to yoke or join or fasten or harness, RV. &c. &c", + "lemmas": [ + "yuj" + ], + "pieces": [ + { + "slp": "yujyasva", + "stem": "yuj", + "gloss": "to yoke or join or fasten or harness, RV. &c. &c" + } + ] + }, + { + "surface": "नैवं", + "isMarker": false, + "gloss": "thin, spare + thus, in this way, in such a manner", + "lemmas": [ + "nA", + "evam" + ], + "pieces": [ + { + "slp": "nA", + "stem": "nA", + "gloss": "thin, spare" + }, + { + "slp": "evam", + "stem": "evam", + "gloss": "thus, in this way, in such a manner" + } + ] + }, + { + "surface": "पापमवाप्स्यसि", + "isMarker": false, + "gloss": "bad, vicious, wicked + a bond + to reach, overtake, meet with", + "lemmas": [ + "pApa", + "mu", + "Ap" + ], + "pieces": [ + { + "slp": "pApa", + "stem": "pApa", + "gloss": "bad, vicious, wicked" + }, + { + "slp": "mo", + "stem": "mu", + "gloss": "a bond" + }, + { + "slp": "Apsyasi", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "39a": { + "line": "एषा तेऽभिहिता सांख्ये बुद्धिर्योगे त्विमां शृणु ।", + "tokens": [ + { + "surface": "एषा", + "isMarker": false, + "gloss": "this", + "lemmas": [ + "eza" + ], + "pieces": [ + { + "slp": "ezA", + "stem": "eza", + "gloss": "gliding, running, hastening" + } + ] + }, + { + "surface": "तेऽभिहिता", + "isMarker": false, + "gloss": "that; he, she, it + harnessed or put to", + "lemmas": [ + "tad", + "aBihita" + ], + "pieces": [ + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "aBihitA", + "stem": "aBihita", + "gloss": "harnessed or put to" + } + ] + }, + { + "surface": "सांख्ये", + "isMarker": false, + "gloss": "numeral, relating to number", + "lemmas": [ + "sAMKya" + ], + "pieces": [ + { + "slp": "sAMKye", + "stem": "sAMKya", + "gloss": "numeral, relating to number" + } + ] + }, + { + "surface": "बुद्धिर्योगे", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + the act of yoking, joining, attaching", + "lemmas": [ + "budDi", + "yoga" + ], + "pieces": [ + { + "slp": "budDis", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "yoge", + "stem": "yoga", + "gloss": "the act of yoking, joining, attaching" + } + ] + }, + { + "surface": "त्विमां", + "isMarker": false, + "gloss": "one, several + base of the first person pl, as used in comp", + "lemmas": [ + "tva", + "asmad" + ], + "pieces": [ + { + "slp": "tvi", + "stem": "tva", + "gloss": "one, several" + }, + { + "slp": "mAm", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "शृणु", + "isMarker": false, + "gloss": "to hear, listen or attend to anything, give ear to any one", + "lemmas": [ + "Sru" + ], + "pieces": [ + { + "slp": "SfRu", + "stem": "Sru", + "gloss": "to hear, listen or attend to anything, give ear to any one" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "39b": { + "line": "बुद्ध्या युक्तो यया पार्थ कर्मबन्धं प्रहास्यसि ॥२- ३९॥", + "tokens": [ + { + "surface": "बुद्ध्या", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason", + "lemmas": [ + "budDi" + ], + "pieces": [ + { + "slp": "budDyA", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + } + ] + }, + { + "surface": "युक्तो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yukta" + ], + "pieces": [ + { + "slp": "yuktas", + "stem": "yukta", + "gloss": "yukti &c. See cols. 2, 3" + } + ] + }, + { + "surface": "यया", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "yayA", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "कर्मबन्धं", + "isMarker": false, + "gloss": "the bonds of action, Bhag. ii, 39", + "lemmas": [ + "karmabanDa" + ], + "pieces": [ + { + "slp": "karmabanDam", + "stem": "karmabanDa", + "gloss": "the bonds of action, Bhag. ii, 39" + } + ] + }, + { + "surface": "प्रहास्यसि", + "isMarker": false, + "gloss": "hA Ā, -jihIte, to drive off + to be, live, exist", + "lemmas": [ + "prahA", + "as" + ], + "pieces": [ + { + "slp": "prahA", + "stem": "prahA", + "gloss": "hA Ā, -jihIte, to drive off" + }, + { + "slp": "asyasi", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "३९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "40a": { + "line": "नेहाभिक्रमनाशोऽस्ति प्रत्यवायो न विद्यते ।", + "tokens": [ + { + "surface": "नेहाभिक्रमनाशोऽस्ति", + "isMarker": false, + "gloss": "to bind, tie, fasten + unsuccessful effort + to be, live, exist", + "lemmas": [ + "nah", + "aBikramanASa", + "as" + ], + "pieces": [ + { + "slp": "neha", + "stem": "nah", + "gloss": "to bind, tie, fasten" + }, + { + "slp": "aBikramanASas", + "stem": "aBikramanASa", + "gloss": "unsuccessful effort" + }, + { + "slp": "asti", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "प्रत्यवायो", + "isMarker": false, + "gloss": "decrease, diminution, KātyŚr", + "lemmas": [ + "pratyavAya" + ], + "pieces": [ + { + "slp": "pratyavAyas", + "stem": "pratyavAya", + "gloss": "decrease, diminution, KātyŚr" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "विद्यते", + "isMarker": false, + "gloss": "to know, understand, perceive", + "lemmas": [ + "vid" + ], + "pieces": [ + { + "slp": "vidyate", + "stem": "vid", + "gloss": "to know, understand, perceive" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "40b": { + "line": "स्वल्पमप्यस्य धर्मस्य त्रायते महतो भयात् ॥२- ४०॥", + "tokens": [ + { + "surface": "स्वल्पमप्यस्य", + "isMarker": false, + "gloss": "very small or little, minute, very few + mf n being in water, coming from water, connected with water", + "lemmas": [ + "svalpa", + "apya" + ], + "pieces": [ + { + "slp": "svalpam", + "stem": "svalpa", + "gloss": "very small or little, minute, very few" + }, + { + "slp": "apyasya", + "stem": "apya", + "gloss": "mf n being in water, coming from water, connected with water" + } + ] + }, + { + "surface": "धर्मस्य", + "isMarker": false, + "gloss": "that which is established or firm, steadfast decree, statute", + "lemmas": [ + "Darma" + ], + "pieces": [ + { + "slp": "Darmasya", + "stem": "Darma", + "gloss": "that which is established or firm, steadfast decree, statute" + } + ] + }, + { + "surface": "त्रायते", + "isMarker": false, + "gloss": "to protect, preserve, cherish", + "lemmas": [ + "trE" + ], + "pieces": [ + { + "slp": "trAyate", + "stem": "trE", + "gloss": "to protect, preserve, cherish" + } + ] + }, + { + "surface": "महतो", + "isMarker": false, + "gloss": "to elate, gladden, exalt", + "lemmas": [ + "mah" + ], + "pieces": [ + { + "slp": "mahatas", + "stem": "mah", + "gloss": "to elate, gladden, exalt" + } + ] + }, + { + "surface": "भयात्", + "isMarker": false, + "gloss": "fear, alarm, dread apprehension", + "lemmas": [ + "Baya" + ], + "pieces": [ + { + "slp": "BayAt", + "stem": "Baya", + "gloss": "fear, alarm, dread apprehension" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "41a": { + "line": "व्यवसायात्मिका बुद्धिरेकेह कुरुनन्दन ।", + "tokens": [ + { + "surface": "व्यवसायात्मिका", + "isMarker": false, + "gloss": "full of resolve or energy, energetic, laborious", + "lemmas": [ + "vyavasAyAtmaka" + ], + "pieces": [ + { + "slp": "vyavasAyAtmikA", + "stem": "vyavasAyAtmaka", + "gloss": "full of resolve or energy, energetic, laborious" + } + ] + }, + { + "surface": "बुद्धिरेकेह", + "isMarker": false, + "gloss": "", + "lemmas": [ + "budDi", + "reka", + "aha" + ], + "pieces": [ + { + "slp": "budDi", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "reke", + "stem": "reka", + "gloss": "&c. See p. 887, col. 1" + }, + { + "slp": "aha", + "stem": "aha", + "gloss": "surely, certainly" + } + ] + }, + { + "surface": "कुरुनन्दन", + "isMarker": false, + "gloss": "a descendant of Kuru, Bhag. &c", + "lemmas": [ + "kurunandana" + ], + "pieces": [ + { + "slp": "kurunandana", + "stem": "kurunandana", + "gloss": "a descendant of Kuru, Bhag. &c" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "41b": { + "line": "बहुशाखा ह्यनन्ताश्च बुद्धयोऽव्यवसायिनाम् ॥२- ४१॥", + "tokens": [ + { + "surface": "बहुशाखा", + "isMarker": false, + "gloss": "‘many-branched’, having many branches or ramifications, multifarious", + "lemmas": [ + "bahuSAKa" + ], + "pieces": [ + { + "slp": "bahuSAKA", + "stem": "bahuSAKa", + "gloss": "‘many-branched’, having many branches or ramifications, multifarious" + } + ] + }, + { + "surface": "ह्यनन्ताश्च", + "isMarker": false, + "gloss": "", + "lemmas": [ + "hI", + "anantA", + "ca" + ], + "pieces": [ + { + "slp": "hI", + "stem": "hI", + "gloss": "ah! oh! alas l &c" + }, + { + "slp": "anantAs", + "stem": "anantA", + "gloss": "endless, boundless, eternal" + }, + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "बुद्धयोऽव्यवसायिनाम्", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + inactive, negligent, remiss", + "lemmas": [ + "budDi", + "avyavasAyin" + ], + "pieces": [ + { + "slp": "budDayas", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "avyavasAyinAm", + "stem": "avyavasAyin", + "gloss": "inactive, negligent, remiss" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "42a": { + "line": "यामिमां पुष्पितां वाचं प्रवदन्त्यविपश्चितः ।", + "tokens": [ + { + "surface": "यामिमां", + "isMarker": false, + "gloss": "a goer or mover + base of the first person pl, as used in comp", + "lemmas": [ + "yA", + "asmad" + ], + "pieces": [ + { + "slp": "yAmi", + "stem": "yA", + "gloss": "a goer or mover" + }, + { + "slp": "mAm", + "stem": "asmad", + "gloss": "base of the first person pl, as used in comp" + } + ] + }, + { + "surface": "पुष्पितां", + "isMarker": false, + "gloss": "flowered, bearing flowers, blooming", + "lemmas": [ + "puzpita" + ], + "pieces": [ + { + "slp": "puzpitAm", + "stem": "puzpita", + "gloss": "flowered, bearing flowers, blooming" + } + ] + }, + { + "surface": "वाचं", + "isMarker": false, + "gloss": "speech, voice, talk", + "lemmas": [ + "vAc" + ], + "pieces": [ + { + "slp": "vAcam", + "stem": "vAc", + "gloss": "speech, voice, talk" + } + ] + }, + { + "surface": "प्रवदन्त्यविपश्चितः", + "isMarker": false, + "gloss": "the side or slope of a mountain, elevation, height + before, in the presence of near + unwise, ignorant, Kauś", + "lemmas": [ + "pravat", + "anti", + "avipaScit" + ], + "pieces": [ + { + "slp": "pravat", + "stem": "pravat", + "gloss": "the side or slope of a mountain, elevation, height" + }, + { + "slp": "anti", + "stem": "anti", + "gloss": "before, in the presence of near" + }, + { + "slp": "avipaScitas", + "stem": "avipaScit", + "gloss": "unwise, ignorant, Kauś" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "42b": { + "line": "वेदवादरताः पार्थ नान्यदस्तीति वादिनः ॥२- ४२॥", + "tokens": [ + { + "surface": "वेदवादरताः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vedavAdarata" + ], + "pieces": [ + { + "slp": "vedavAdaratAH", + "stem": "vedavAdarata", + "gloss": "delighting in such d˚" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "नान्यदस्तीति", + "isMarker": false, + "gloss": "not + unexhausted, imperishable + Iti f, plague, distress", + "lemmas": [ + "na", + "adasta", + "Iti" + ], + "pieces": [ + { + "slp": "nAni", + "stem": "na", + "gloss": "not", + "override": true + }, + { + "slp": "adastI", + "stem": "adasta", + "gloss": "unexhausted, imperishable" + }, + { + "slp": "Iti", + "stem": "Iti", + "gloss": "Iti f, plague, distress" + } + ] + }, + { + "surface": "वादिनः", + "isMarker": false, + "gloss": "saying, discoursing, speaking", + "lemmas": [ + "vAdin" + ], + "pieces": [ + { + "slp": "vAdinaH", + "stem": "vAdin", + "gloss": "saying, discoursing, speaking" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "43a": { + "line": "कामात्मानः स्वर्गपरा जन्मकर्मफलप्रदाम् ।", + "tokens": [ + { + "surface": "कामात्मानः", + "isMarker": false, + "gloss": "‘whose very essence is desire’, consisting of desire, indulging one's desires", + "lemmas": [ + "kAmAtman" + ], + "pieces": [ + { + "slp": "kAmAtmAnaH", + "stem": "kAmAtman", + "gloss": "‘whose very essence is desire’, consisting of desire, indulging one's desires" + } + ] + }, + { + "surface": "स्वर्गपरा", + "isMarker": false, + "gloss": "desirous of heaven", + "lemmas": [ + "svargapara" + ], + "pieces": [ + { + "slp": "svargaparA", + "stem": "svargapara", + "gloss": "desirous of heaven" + } + ] + }, + { + "surface": "जन्मकर्मफलप्रदाम्", + "isMarker": false, + "gloss": "birth, production, origin + the fruit or recompense of actions + giving, yielding, offering", + "lemmas": [ + "janman", + "karmaPala", + "prada" + ], + "pieces": [ + { + "slp": "janma", + "stem": "janman", + "gloss": "birth, production, origin" + }, + { + "slp": "karmaPala", + "stem": "karmaPala", + "gloss": "the fruit or recompense of actions" + }, + { + "slp": "pradAm", + "stem": "prada", + "gloss": "giving, yielding, offering" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "43b": { + "line": "क्रियाविशेषबहुलां भोगैश्वर्यगतिं प्रति ॥२- ४३॥", + "tokens": [ + { + "surface": "क्रियाविशेषबहुलां", + "isMarker": false, + "gloss": "doing, performing, performance + distinction, difference between, GṛŚrS + thick, dense, broad", + "lemmas": [ + "kriyA", + "viSeza", + "bahula" + ], + "pieces": [ + { + "slp": "kriyA", + "stem": "kriyA", + "gloss": "doing, performing, performance" + }, + { + "slp": "viSeza", + "stem": "viSeza", + "gloss": "distinction, difference between, GṛŚrS" + }, + { + "slp": "bahulAm", + "stem": "bahula", + "gloss": "thick, dense, broad" + } + ] + }, + { + "surface": "भोगैश्वर्यगतिं", + "isMarker": false, + "gloss": "any winding or curve, coil, RV. &c. &c + the state of being a mighty lord, sovereignty, supremacy + going, moving, gait", + "lemmas": [ + "Boga", + "ESvarya", + "gati" + ], + "pieces": [ + { + "slp": "Boga", + "stem": "Boga", + "gloss": "any winding or curve, coil, RV. &c. &c" + }, + { + "slp": "ESvarya", + "stem": "ESvarya", + "gloss": "the state of being a mighty lord, sovereignty, supremacy" + }, + { + "slp": "gatim", + "stem": "gati", + "gloss": "going, moving, gait" + } + ] + }, + { + "surface": "प्रति", + "isMarker": false, + "gloss": "towards, near to", + "lemmas": [ + "prati" + ], + "pieces": [ + { + "slp": "prati", + "stem": "prati", + "gloss": "towards, near to" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "44a": { + "line": "भोगैश्वर्यप्रसक्तानां तयापहृतचेतसाम् ।", + "tokens": [ + { + "surface": "भोगैश्वर्यप्रसक्तानां", + "isMarker": false, + "gloss": "", + "lemmas": [ + "Boga", + "ESvarya", + "prasakta" + ], + "pieces": [ + { + "slp": "Boga", + "stem": "Boga", + "gloss": "any winding or curve, coil, RV. &c. &c" + }, + { + "slp": "ESvarya", + "stem": "ESvarya", + "gloss": "the state of being a mighty lord, sovereignty, supremacy" + }, + { + "slp": "prasaktAnAm", + "stem": "prasakta", + "gloss": "˚ti. See under pra-" + } + ] + }, + { + "surface": "तयापहृतचेतसाम्", + "isMarker": false, + "gloss": "that; he, she, it + taken away, carried off, stolen + splendour", + "lemmas": [ + "tad", + "apahfta", + "cetas" + ], + "pieces": [ + { + "slp": "tayA", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "apahfta", + "stem": "apahfta", + "gloss": "taken away, carried off, stolen" + }, + { + "slp": "cetasAm", + "stem": "cetas", + "gloss": "splendour" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "44b": { + "line": "व्यवसायात्मिका बुद्धिः समाधौ न विधीयते ॥२- ४४॥", + "tokens": [ + { + "surface": "व्यवसायात्मिका", + "isMarker": false, + "gloss": "full of resolve or energy, energetic, laborious", + "lemmas": [ + "vyavasAyAtmaka" + ], + "pieces": [ + { + "slp": "vyavasAyAtmikA", + "stem": "vyavasAyAtmaka", + "gloss": "full of resolve or energy, energetic, laborious" + } + ] + }, + { + "surface": "बुद्धिः", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason", + "lemmas": [ + "budDi" + ], + "pieces": [ + { + "slp": "budDiH", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + } + ] + }, + { + "surface": "समाधौ", + "isMarker": false, + "gloss": "putting together, joining or combining with, Lāṭy", + "lemmas": [ + "samADi" + ], + "pieces": [ + { + "slp": "samADO", + "stem": "samADi", + "gloss": "putting together, joining or combining with, Lāṭy" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "विधीयते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "viDi", + "i" + ], + "pieces": [ + { + "slp": "viDI", + "stem": "viDi", + "gloss": "a worshipper, one who does homage" + }, + { + "slp": "Iyate", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "45a": { + "line": "त्रैगुण्यविषया वेदा निस्त्रैगुण्यो भवार्जुन ।", + "tokens": [ + { + "surface": "त्रैगुण्यविषया", + "isMarker": false, + "gloss": "", + "lemmas": [ + "trEguRya", + "vI", + "za" + ], + "pieces": [ + { + "slp": "trEguRya", + "stem": "trEguRya", + "gloss": "the state of consisting of 3 threads, tripleness, Mn. ii" + }, + { + "slp": "vi", + "stem": "vI", + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV" + }, + { + "slp": "zayA", + "stem": "za", + "gloss": "za the second of the three sibilants" + } + ] + }, + { + "surface": "वेदा", + "isMarker": false, + "gloss": "N. of a pupil of Āyoda", + "lemmas": [ + "vedA" + ], + "pieces": [ + { + "slp": "vedA", + "stem": "vedA", + "gloss": "N. of a pupil of Āyoda" + } + ] + }, + { + "surface": "निस्त्रैगुण्यो", + "isMarker": false, + "gloss": "destitute of the three Guṇas, Bhag. ii, 45", + "lemmas": [ + "nistrEguRya" + ], + "pieces": [ + { + "slp": "nistrEguRyas", + "stem": "nistrEguRya", + "gloss": "destitute of the three Guṇas, Bhag. ii, 45" + } + ] + }, + { + "surface": "भवार्जुन", + "isMarker": false, + "gloss": "coming into existence, birth, production + N. of Indra, Kāṭh. 34, 3", + "lemmas": [ + "Bava", + "Arjuna" + ], + "pieces": [ + { + "slp": "BavA", + "stem": "Bava", + "gloss": "coming into existence, birth, production" + }, + { + "slp": "Arjuna", + "stem": "Arjuna", + "gloss": "N. of Indra, Kāṭh. 34, 3" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "45b": { + "line": "निर्द्वन्द्वो नित्यसत्त्वस्थो निर्योगक्षेम आत्मवान् ॥२- ४५॥", + "tokens": [ + { + "surface": "निर्द्वन्द्वो", + "isMarker": false, + "gloss": "out, forth, away &c + to go: Caus. dAvayati or davayati Actually occurring only in Subj. aor. davizARi, RV. x, 34 + us, or andU, f. the chain for an elephant's feet a ring or chain worn on the ancle", + "lemmas": [ + "nis", + "dU", + "andU" + ], + "pieces": [ + { + "slp": "nis", + "stem": "nis", + "gloss": "out, forth, away &c" + }, + { + "slp": "dU", + "stem": "dU", + "gloss": "to go: Caus. dAvayati or davayati Actually occurring only in Subj. aor. davizARi, RV. x, 34" + }, + { + "slp": "andvas", + "stem": "andU", + "gloss": "us, or andU, f. the chain for an elephant's feet a ring or chain worn on the ancle" + } + ] + }, + { + "surface": "नित्यसत्त्वस्थो", + "isMarker": false, + "gloss": "innate, native, MBh. iii + being in the nature", + "lemmas": [ + "nitya", + "sattvasTa" + ], + "pieces": [ + { + "slp": "nitya", + "stem": "nitya", + "gloss": "innate, native, MBh. iii" + }, + { + "slp": "sattvasTas", + "stem": "sattvasTa", + "gloss": "being in the nature" + } + ] + }, + { + "surface": "निर्योगक्षेम", + "isMarker": false, + "gloss": "free from care or anxiety about acquisition or possession, Bh. ii, 45", + "lemmas": [ + "niryogakzema" + ], + "pieces": [ + { + "slp": "niryogakzema", + "stem": "niryogakzema", + "gloss": "free from care or anxiety about acquisition or possession, Bh. ii, 45" + } + ] + }, + { + "surface": "आत्मवान्", + "isMarker": false, + "gloss": "having a soul", + "lemmas": [ + "Atmavat" + ], + "pieces": [ + { + "slp": "AtmavAn", + "stem": "Atmavat", + "gloss": "having a soul" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "46a": { + "line": "यावानर्थ उदपाने सर्वतः संप्लुतोदके ।", + "tokens": [ + { + "surface": "यावानर्थ", + "isMarker": false, + "gloss": "Andrographis Paniculata + aim, purpose", + "lemmas": [ + "yAva", + "arTa" + ], + "pieces": [ + { + "slp": "yAvAn", + "stem": "yAva", + "gloss": "Andrographis Paniculata" + }, + { + "slp": "arTa", + "stem": "arTa", + "gloss": "aim, purpose" + } + ] + }, + { + "surface": "उदपाने", + "isMarker": false, + "gloss": "a well", + "lemmas": [ + "udapAna" + ], + "pieces": [ + { + "slp": "udapAne", + "stem": "udapAna", + "gloss": "a well" + } + ] + }, + { + "surface": "सर्वतः", + "isMarker": false, + "gloss": "from all sides, in every direction, everywhere", + "lemmas": [ + "sarvatas" + ], + "pieces": [ + { + "slp": "sarvataH", + "stem": "sarvatas", + "gloss": "from all sides, in every direction, everywhere" + } + ] + }, + { + "surface": "संप्लुतोदके", + "isMarker": false, + "gloss": "flooded with water", + "lemmas": [ + "samplutodaka" + ], + "pieces": [ + { + "slp": "samplutodake", + "stem": "samplutodaka", + "gloss": "flooded with water" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "46b": { + "line": "तावान्सर्वेषु वेदेषु ब्राह्मणस्य विजानतः ॥२- ४६॥", + "tokens": [ + { + "surface": "तावान्सर्वेषु", + "isMarker": false, + "gloss": "so great, so large, so much + all, every", + "lemmas": [ + "tAvat", + "sarva" + ], + "pieces": [ + { + "slp": "tAvAn", + "stem": "tAvat", + "gloss": "so great, so large, so much" + }, + { + "slp": "sarvezu", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "वेदेषु", + "isMarker": false, + "gloss": "knowledge, true or sacred knowledge or lore, knowledge of ritual", + "lemmas": [ + "veda" + ], + "pieces": [ + { + "slp": "vedezu", + "stem": "veda", + "gloss": "knowledge, true or sacred knowledge or lore, knowledge of ritual" + } + ] + }, + { + "surface": "ब्राह्मणस्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "brAhmaRa" + ], + "pieces": [ + { + "slp": "brAhmaRasya", + "stem": "brAhmaRa", + "gloss": "relating to or given by a Brāhman, befitting or becoming a Br˚" + } + ] + }, + { + "surface": "विजानतः", + "isMarker": false, + "gloss": "understanding, knowing &c", + "lemmas": [ + "vijAnat" + ], + "pieces": [ + { + "slp": "vijAnataH", + "stem": "vijAnat", + "gloss": "understanding, knowing &c" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "47a": { + "line": "कर्मण्येवाधिकारस्ते मा फलेषु कदाचन ।", + "tokens": [ + { + "surface": "कर्मण्येवाधिकारस्ते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "karmaRyA", + "av", + "aDikAra", + "as" + ], + "pieces": [ + { + "slp": "karmaRye", + "stem": "karmaRyA", + "gloss": "skilful in work, clever, diligent" + }, + { + "slp": "ava", + "stem": "av", + "gloss": "to drive, impel, animate" + }, + { + "slp": "aDikAra", + "stem": "aDikAra", + "gloss": "authority" + }, + { + "slp": "ste", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "मा", + "isMarker": false, + "gloss": "do not", + "lemmas": [ + "mA" + ], + "pieces": [ + { + "slp": "mA", + "stem": "mA", + "gloss": "do not", + "override": true + } + ] + }, + { + "surface": "फलेषु", + "isMarker": false, + "gloss": "fruit, RV. &c. &c", + "lemmas": [ + "Pala" + ], + "pieces": [ + { + "slp": "Palezu", + "stem": "Pala", + "gloss": "fruit, RV. &c. &c" + } + ] + }, + { + "surface": "कदाचन", + "isMarker": false, + "gloss": "to be confused, suffer mentally + N. of a man + not", + "lemmas": [ + "kad", + "Aca", + "na" + ], + "pieces": [ + { + "slp": "kad", + "stem": "kad", + "gloss": "to be confused, suffer mentally" + }, + { + "slp": "Aca", + "stem": "Aca", + "gloss": "N. of a man" + }, + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "47b": { + "line": "मा कर्मफलहेतुर्भूर्मा ते सङ्गोऽस्त्वकर्मणि ॥२- ४७॥", + "tokens": [ + { + "surface": "मा", + "isMarker": false, + "gloss": "do not", + "lemmas": [ + "mA" + ], + "pieces": [ + { + "slp": "mA", + "stem": "mA", + "gloss": "do not", + "override": true + } + ] + }, + { + "surface": "कर्मफलहेतुर्भूर्मा", + "isMarker": false, + "gloss": "one who is actuated by the result of his acts + to become, be, arise + do not", + "lemmas": [ + "karmaPalahetu", + "BU", + "mA" + ], + "pieces": [ + { + "slp": "karmaPalahetus", + "stem": "karmaPalahetu", + "gloss": "one who is actuated by the result of his acts" + }, + { + "slp": "BUr", + "stem": "BU", + "gloss": "to become, be, arise" + }, + { + "slp": "mA", + "stem": "mA", + "gloss": "do not", + "override": true + } + ] + }, + { + "surface": "ते", + "isMarker": false, + "gloss": "thy; to thee", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "सङ्गोऽस्त्वकर्मणि", + "isMarker": false, + "gloss": "sticking, clinging to, touch + to be, live, exist + not working", + "lemmas": [ + "saNga", + "as", + "akarman" + ], + "pieces": [ + { + "slp": "saNgas", + "stem": "saNga", + "gloss": "sticking, clinging to, touch" + }, + { + "slp": "astu", + "stem": "as", + "gloss": "to be, live, exist" + }, + { + "slp": "akarmaRi", + "stem": "akarman", + "gloss": "not working" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "48a": { + "line": "योगस्थः कुरु कर्माणि सङ्गं त्यक्त्वा धनंजय ।", + "tokens": [ + { + "surface": "योगस्थः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yogasTa" + ], + "pieces": [ + { + "slp": "yogasTaH", + "stem": "yogasTa", + "gloss": "absorbed in Y˚" + } + ] + }, + { + "surface": "कुरु", + "isMarker": false, + "gloss": "to make mention of, praise, speak highly of", + "lemmas": [ + "kf" + ], + "pieces": [ + { + "slp": "kuru", + "stem": "kf", + "gloss": "to make mention of, praise, speak highly of" + } + ] + }, + { + "surface": "कर्माणि", + "isMarker": false, + "gloss": "act, action, performance", + "lemmas": [ + "karman" + ], + "pieces": [ + { + "slp": "karmARi", + "stem": "karman", + "gloss": "act, action, performance" + } + ] + }, + { + "surface": "सङ्गं", + "isMarker": false, + "gloss": "sticking, clinging to, touch", + "lemmas": [ + "saNga" + ], + "pieces": [ + { + "slp": "saNgam", + "stem": "saNga", + "gloss": "sticking, clinging to, touch" + } + ] + }, + { + "surface": "त्यक्त्वा", + "isMarker": false, + "gloss": "to leave, abandon, quit", + "lemmas": [ + "tyaj" + ], + "pieces": [ + { + "slp": "tyaktvA", + "stem": "tyaj", + "gloss": "to leave, abandon, quit" + } + ] + }, + { + "surface": "धनंजय", + "isMarker": false, + "gloss": "the prize of a contest or the contest itself + to win or acquire, conquer, vanquish", + "lemmas": [ + "Dana", + "ji" + ], + "pieces": [ + { + "slp": "Danam", + "stem": "Dana", + "gloss": "the prize of a contest or the contest itself" + }, + { + "slp": "jaya", + "stem": "ji", + "gloss": "to win or acquire, conquer, vanquish" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "48b": { + "line": "सिद्ध्यसिद्ध्योः समो भूत्वा समत्वं योग उच्यते ॥२- ४८॥", + "tokens": [ + { + "surface": "सिद्ध्यसिद्ध्योः", + "isMarker": false, + "gloss": "du. success and misfortune", + "lemmas": [ + "sidDyasidDi" + ], + "pieces": [ + { + "slp": "sidDyasidDyoH", + "stem": "sidDyasidDi", + "gloss": "du. success and misfortune" + } + ] + }, + { + "surface": "समो", + "isMarker": false, + "gloss": "any, every", + "lemmas": [ + "sama" + ], + "pieces": [ + { + "slp": "samas", + "stem": "sama", + "gloss": "any, every" + } + ] + }, + { + "surface": "भूत्वा", + "isMarker": false, + "gloss": "to become, be, arise", + "lemmas": [ + "BU" + ], + "pieces": [ + { + "slp": "BUtvA", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "समत्वं", + "isMarker": false, + "gloss": "equality with, KātyŚr", + "lemmas": [ + "samatva" + ], + "pieces": [ + { + "slp": "samatvam", + "stem": "samatva", + "gloss": "equality with, KātyŚr" + } + ] + }, + { + "surface": "योग", + "isMarker": false, + "gloss": "the act of yoking, joining, attaching", + "lemmas": [ + "yoga" + ], + "pieces": [ + { + "slp": "yoga", + "stem": "yoga", + "gloss": "the act of yoking, joining, attaching" + } + ] + }, + { + "surface": "उच्यते", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "ucyate", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "49a": { + "line": "दूरेण ह्यवरं कर्म बुद्धियोगाद्धनंजय ।", + "tokens": [ + { + "surface": "दूरेण", + "isMarker": false, + "gloss": "distant, far, remote", + "lemmas": [ + "dUra" + ], + "pieces": [ + { + "slp": "dUreRa", + "stem": "dUra", + "gloss": "distant, far, remote" + } + ] + }, + { + "surface": "ह्यवरं", + "isMarker": false, + "gloss": "", + "lemmas": [ + "hI", + "vf" + ], + "pieces": [ + { + "slp": "hI", + "stem": "hI", + "gloss": "ah! oh! alas l &c" + }, + { + "slp": "avaram", + "stem": "vf", + "gloss": "to cover, screen, veil" + } + ] + }, + { + "surface": "कर्म", + "isMarker": false, + "gloss": "act, action, performance", + "lemmas": [ + "karman" + ], + "pieces": [ + { + "slp": "karma", + "stem": "karman", + "gloss": "act, action, performance" + } + ] + }, + { + "surface": "बुद्धियोगाद्धनंजय", + "isMarker": false, + "gloss": "devotion of the intellect, intellectual union with the Supreme Spirit, ib + the prize of a contest or the contest itself + to win or acquire, conquer, vanquish", + "lemmas": [ + "budDiyoga", + "Dana", + "ji" + ], + "pieces": [ + { + "slp": "budDiyogAt", + "stem": "budDiyoga", + "gloss": "devotion of the intellect, intellectual union with the Supreme Spirit, ib" + }, + { + "slp": "Danam", + "stem": "Dana", + "gloss": "the prize of a contest or the contest itself" + }, + { + "slp": "jaya", + "stem": "ji", + "gloss": "to win or acquire, conquer, vanquish" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "49b": { + "line": "बुद्धौ शरणमन्विच्छ कृपणाः फलहेतवः ॥२- ४९॥", + "tokens": [ + { + "surface": "बुद्धौ", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason", + "lemmas": [ + "budDi" + ], + "pieces": [ + { + "slp": "budDO", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + } + ] + }, + { + "surface": "शरणमन्विच्छ", + "isMarker": false, + "gloss": "one of the arrows of Kāma-deva + after, along, alongside + to seek, search, BhP. : cl. 4. P. izyati and 9. P. Ā. izRAti to cause to move quickly", + "lemmas": [ + "SaraRa", + "anu", + "iz" + ], + "pieces": [ + { + "slp": "SaraRam", + "stem": "SaraRa", + "gloss": "one of the arrows of Kāma-deva" + }, + { + "slp": "anU", + "stem": "anu", + "gloss": "after, along, alongside" + }, + { + "slp": "icCa", + "stem": "iz", + "gloss": "to seek, search, BhP. : cl. 4. P. izyati and 9. P. Ā. izRAti to cause to move quickly" + } + ] + }, + { + "surface": "कृपणाः", + "isMarker": false, + "gloss": "inclined to grieve, pitiable, miserable", + "lemmas": [ + "kfpaRa" + ], + "pieces": [ + { + "slp": "kfpaRAH", + "stem": "kfpaRa", + "gloss": "inclined to grieve, pitiable, miserable" + } + ] + }, + { + "surface": "फलहेतवः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "Palahetu" + ], + "pieces": [ + { + "slp": "PalahetavaH", + "stem": "Palahetu", + "gloss": "one who has results for a motive, acting with a view to r˚" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "४९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "50a": { + "line": "बुद्धियुक्तो जहातीह उभे सुकृतदुष्कृते ।", + "tokens": [ + { + "surface": "बुद्धियुक्तो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "budDi", + "yukta" + ], + "pieces": [ + { + "slp": "budDi", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "yuktas", + "stem": "yukta", + "gloss": "yukti &c. See cols. 2, 3" + } + ] + }, + { + "surface": "जहातीह", + "isMarker": false, + "gloss": "", + "lemmas": [ + "jaha", + "Iha" + ], + "pieces": [ + { + "slp": "jahAt", + "stem": "jaha", + "gloss": "see SarDam-" + }, + { + "slp": "Iha", + "stem": "Iha", + "gloss": "attempt" + } + ] + }, + { + "surface": "उभे", + "isMarker": false, + "gloss": "e, e mfn. du. both", + "lemmas": [ + "uBa" + ], + "pieces": [ + { + "slp": "uBe", + "stem": "uBa", + "gloss": "e, e mfn. du. both" + } + ] + }, + { + "surface": "सुकृतदुष्कृते", + "isMarker": false, + "gloss": "a good or righteous deed, meritorious act, virtue + wrongly or wickedly done, badly arranged or organized or applied, ŚBr. viii", + "lemmas": [ + "sukfta", + "duzkfta" + ], + "pieces": [ + { + "slp": "sukfta", + "stem": "sukfta", + "gloss": "a good or righteous deed, meritorious act, virtue" + }, + { + "slp": "duzkfte", + "stem": "duzkfta", + "gloss": "wrongly or wickedly done, badly arranged or organized or applied, ŚBr. viii" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "50b": { + "line": "तस्माद्योगाय युज्यस्व योगः कर्मसु कौशलम् ॥२- ५०॥", + "tokens": [ + { + "surface": "तस्माद्योगाय", + "isMarker": false, + "gloss": "that; he, she, it + the act of yoking, joining, attaching", + "lemmas": [ + "tad", + "yoga" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "yogAya", + "stem": "yoga", + "gloss": "the act of yoking, joining, attaching" + } + ] + }, + { + "surface": "युज्यस्व", + "isMarker": false, + "gloss": "to yoke or join or fasten or harness, RV. &c. &c", + "lemmas": [ + "yuj" + ], + "pieces": [ + { + "slp": "yujyasva", + "stem": "yuj", + "gloss": "to yoke or join or fasten or harness, RV. &c. &c" + } + ] + }, + { + "surface": "योगः", + "isMarker": false, + "gloss": "the act of yoking, joining, attaching", + "lemmas": [ + "yoga" + ], + "pieces": [ + { + "slp": "yogaH", + "stem": "yoga", + "gloss": "the act of yoking, joining, attaching" + } + ] + }, + { + "surface": "कर्मसु", + "isMarker": false, + "gloss": "act, action, performance", + "lemmas": [ + "karman" + ], + "pieces": [ + { + "slp": "karmasu", + "stem": "karman", + "gloss": "act, action, performance" + } + ] + }, + { + "surface": "कौशलम्", + "isMarker": false, + "gloss": "well-being, welfare, good fortune", + "lemmas": [ + "kOSala" + ], + "pieces": [ + { + "slp": "kOSalam", + "stem": "kOSala", + "gloss": "well-being, welfare, good fortune" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "51a": { + "line": "कर्मजं बुद्धियुक्ता हि फलं त्यक्त्वा मनीषिणः ।", + "tokens": [ + { + "surface": "कर्मजं", + "isMarker": false, + "gloss": "‘act-born’, resulting or produced from any act, Mn. xii", + "lemmas": [ + "karmaja" + ], + "pieces": [ + { + "slp": "karmajam", + "stem": "karmaja", + "gloss": "‘act-born’, resulting or produced from any act, Mn. xii" + } + ] + }, + { + "surface": "बुद्धियुक्ता", + "isMarker": false, + "gloss": "", + "lemmas": [ + "budDi", + "yukta" + ], + "pieces": [ + { + "slp": "budDi", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "yuktA", + "stem": "yukta", + "gloss": "yukti &c. See cols. 2, 3" + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "फलं", + "isMarker": false, + "gloss": "fruit, RV. &c. &c", + "lemmas": [ + "Pala" + ], + "pieces": [ + { + "slp": "Palam", + "stem": "Pala", + "gloss": "fruit, RV. &c. &c" + } + ] + }, + { + "surface": "त्यक्त्वा", + "isMarker": false, + "gloss": "to leave, abandon, quit", + "lemmas": [ + "tyaj" + ], + "pieces": [ + { + "slp": "tyaktvA", + "stem": "tyaj", + "gloss": "to leave, abandon, quit" + } + ] + }, + { + "surface": "मनीषिणः", + "isMarker": false, + "gloss": "thoughtful, intelligent, wise", + "lemmas": [ + "manIzin" + ], + "pieces": [ + { + "slp": "manIziRaH", + "stem": "manIzin", + "gloss": "thoughtful, intelligent, wise" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "51b": { + "line": "जन्मबन्धविनिर्मुक्ताः पदं गच्छन्त्यनामयम् ॥२- ५१॥", + "tokens": [ + { + "surface": "जन्मबन्धविनिर्मुक्ताः", + "isMarker": false, + "gloss": "the fetters of transmigration, Bhag. ii, 51 + liberated, escaped, free or exempt from", + "lemmas": [ + "janmabanDa", + "vinirmukta" + ], + "pieces": [ + { + "slp": "janmabanDa", + "stem": "janmabanDa", + "gloss": "the fetters of transmigration, Bhag. ii, 51" + }, + { + "slp": "vinirmuktAs", + "stem": "vinirmukta", + "gloss": "liberated, escaped, free or exempt from" + } + ] + }, + { + "surface": "पदं", + "isMarker": false, + "gloss": "a step, pace, stride", + "lemmas": [ + "pada" + ], + "pieces": [ + { + "slp": "padam", + "stem": "pada", + "gloss": "a step, pace, stride" + } + ] + }, + { + "surface": "गच्छन्त्यनामयम्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "gacCat", + "nam" + ], + "pieces": [ + { + "slp": "gacCantI", + "stem": "gacCat", + "gloss": "pr. p. P. fr. q.v" + }, + { + "slp": "anAmayam", + "stem": "nam", + "gloss": "to bend or bow, to bow to, subject or submit one's self" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "52a": { + "line": "यदा ते मोहकलिलं बुद्धिर्व्यतितरिष्यति ।", + "tokens": [ + { + "surface": "यदा", + "isMarker": false, + "gloss": "when, at what time, whenever", + "lemmas": [ + "yadA" + ], + "pieces": [ + { + "slp": "yadA", + "stem": "yadA", + "gloss": "when, at what time, whenever" + } + ] + }, + { + "surface": "ते", + "isMarker": false, + "gloss": "thy; to thee", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "मोहकलिलं", + "isMarker": false, + "gloss": "thicket or snare of illusion", + "lemmas": [ + "mohakalila" + ], + "pieces": [ + { + "slp": "mohakalilam", + "stem": "mohakalila", + "gloss": "thicket or snare of illusion" + } + ] + }, + { + "surface": "बुद्धिर्व्यतितरिष्यति", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + a horse + to pass across or over, cross over, sail across", + "lemmas": [ + "budDi", + "vyati", + "tF" + ], + "pieces": [ + { + "slp": "budDis", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "vyati", + "stem": "vyati", + "gloss": "a horse" + }, + { + "slp": "tarizyati", + "stem": "tF", + "gloss": "to pass across or over, cross over, sail across" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "52b": { + "line": "तदा गन्तासि निर्वेदं श्रोतव्यस्य श्रुतस्य च ॥२- ५२॥", + "tokens": [ + { + "surface": "तदा", + "isMarker": false, + "gloss": "at that time, then, in that case", + "lemmas": [ + "tadA" + ], + "pieces": [ + { + "slp": "tadA", + "stem": "tadA", + "gloss": "at that time, then, in that case" + } + ] + }, + { + "surface": "गन्तासि", + "isMarker": false, + "gloss": "to go, move, go away", + "lemmas": [ + "gam" + ], + "pieces": [ + { + "slp": "gantAsi", + "stem": "gam", + "gloss": "to go, move, go away" + } + ] + }, + { + "surface": "निर्वेदं", + "isMarker": false, + "gloss": "not having the Vedas, infidel, unscriptural", + "lemmas": [ + "nirveda" + ], + "pieces": [ + { + "slp": "nirvedam", + "stem": "nirveda", + "gloss": "not having the Vedas, infidel, unscriptural" + } + ] + }, + { + "surface": "श्रोतव्यस्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "Srotavya" + ], + "pieces": [ + { + "slp": "Srotavyasya", + "stem": "Srotavya", + "gloss": "&c. See p. 1103, col. 1" + } + ] + }, + { + "surface": "श्रुतस्य", + "isMarker": false, + "gloss": "heard, listened to, heard about or of", + "lemmas": [ + "Sruta" + ], + "pieces": [ + { + "slp": "Srutasya", + "stem": "Sruta", + "gloss": "heard, listened to, heard about or of" + } + ] + }, + { + "surface": "च", + "isMarker": false, + "gloss": "and", + "lemmas": [ + "ca" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "53a": { + "line": "श्रुतिविप्रतिपन्ना ते यदा स्थास्यति निश्चला ।", + "tokens": [ + { + "surface": "श्रुतिविप्रतिपन्ना", + "isMarker": false, + "gloss": "dissenting from the Veda or sacred tradition, disregarding the doctrine of the Veda", + "lemmas": [ + "Srutivipratipanna" + ], + "pieces": [ + { + "slp": "SrutivipratipannA", + "stem": "Srutivipratipanna", + "gloss": "dissenting from the Veda or sacred tradition, disregarding the doctrine of the Veda" + } + ] + }, + { + "surface": "ते", + "isMarker": false, + "gloss": "thy; to thee", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "यदा", + "isMarker": false, + "gloss": "when, at what time, whenever", + "lemmas": [ + "yadA" + ], + "pieces": [ + { + "slp": "yadA", + "stem": "yadA", + "gloss": "when, at what time, whenever" + } + ] + }, + { + "surface": "स्थास्यति", + "isMarker": false, + "gloss": "to stand, stand firmly, station one's self", + "lemmas": [ + "sTA" + ], + "pieces": [ + { + "slp": "sTAsyati", + "stem": "sTA", + "gloss": "to stand, stand firmly, station one's self" + } + ] + }, + { + "surface": "निश्चला", + "isMarker": false, + "gloss": "motionless, immovable, fixed", + "lemmas": [ + "niScala" + ], + "pieces": [ + { + "slp": "niScalA", + "stem": "niScala", + "gloss": "motionless, immovable, fixed" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "53b": { + "line": "समाधावचला बुद्धिस्तदा योगमवाप्स्यसि ॥२- ५३॥", + "tokens": [ + { + "surface": "समाधावचला", + "isMarker": false, + "gloss": "putting together, joining or combining with, Lāṭy + not moving, immovable", + "lemmas": [ + "samADi", + "acalA" + ], + "pieces": [ + { + "slp": "samADO", + "stem": "samADi", + "gloss": "putting together, joining or combining with, Lāṭy" + }, + { + "slp": "acalA", + "stem": "acalA", + "gloss": "not moving, immovable" + } + ] + }, + { + "surface": "बुद्धिस्तदा", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + at that time, then, in that case", + "lemmas": [ + "budDi", + "tadA" + ], + "pieces": [ + { + "slp": "budDis", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "tadA", + "stem": "tadA", + "gloss": "at that time, then, in that case" + } + ] + }, + { + "surface": "योगमवाप्स्यसि", + "isMarker": false, + "gloss": "the act of yoking, joining, attaching + to drive, impel, animate + to reach, overtake, meet with", + "lemmas": [ + "yoga", + "av", + "Ap" + ], + "pieces": [ + { + "slp": "yogam", + "stem": "yoga", + "gloss": "the act of yoking, joining, attaching" + }, + { + "slp": "ava", + "stem": "av", + "gloss": "to drive, impel, animate" + }, + { + "slp": "Apsyasi", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "54s": { + "line": "अर्जुन उवाच", + "tokens": [ + { + "surface": "अर्जुन", + "isMarker": false, + "gloss": "Arjuna", + "lemmas": [ + "arjuna" + ], + "pieces": [ + { + "slp": "arjuna", + "stem": "arjuna", + "gloss": "Arjuna", + "override": true + } + ] + }, + { + "surface": "उवाच", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "54a": { + "line": "स्थितप्रज्ञस्य का भाषा समाधिस्थस्य केशव ।", + "tokens": [ + { + "surface": "स्थितप्रज्ञस्य", + "isMarker": false, + "gloss": "firm in judgement and wisdom, calm, contented", + "lemmas": [ + "sTitaprajYa" + ], + "pieces": [ + { + "slp": "sTitaprajYasya", + "stem": "sTitaprajYa", + "gloss": "firm in judgement and wisdom, calm, contented" + } + ] + }, + { + "surface": "का", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kA", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "भाषा", + "isMarker": false, + "gloss": "speech, language", + "lemmas": [ + "BAzA" + ], + "pieces": [ + { + "slp": "BAzA", + "stem": "BAzA", + "gloss": "speech, language" + } + ] + }, + { + "surface": "समाधिस्थस्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "samADisTa" + ], + "pieces": [ + { + "slp": "samADisTasya", + "stem": "samADisTa", + "gloss": "absorbed in m˚, Pañcat" + } + ] + }, + { + "surface": "केशव", + "isMarker": false, + "gloss": "Keśava — Kṛṣṇa", + "lemmas": [ + "keSava" + ], + "pieces": [ + { + "slp": "keSava", + "stem": "keSava", + "gloss": "Keśava — Kṛṣṇa", + "override": true + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "54b": { + "line": "स्थितधीः किं प्रभाषेत किमासीत व्रजेत किम् ॥२- ५४॥", + "tokens": [ + { + "surface": "स्थितधीः", + "isMarker": false, + "gloss": "steady-minded, firm, unmoved", + "lemmas": [ + "sTitaDI" + ], + "pieces": [ + { + "slp": "sTitaDIH", + "stem": "sTitaDI", + "gloss": "steady-minded, firm, unmoved" + } + ] + }, + { + "surface": "किं", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kim", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "प्रभाषेत", + "isMarker": false, + "gloss": "before + to speak, talk, say", + "lemmas": [ + "pra", + "BAz" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "BAzeta", + "stem": "BAz", + "gloss": "to speak, talk, say" + } + ] + }, + { + "surface": "किमासीत", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kim", + "As" + ], + "pieces": [ + { + "slp": "kim", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + }, + { + "slp": "AsIta", + "stem": "As", + "gloss": "Ah! Oh! &c" + } + ] + }, + { + "surface": "व्रजेत", + "isMarker": false, + "gloss": "to go, walk, proceed", + "lemmas": [ + "vraj" + ], + "pieces": [ + { + "slp": "vrajeta", + "stem": "vraj", + "gloss": "to go, walk, proceed" + } + ] + }, + { + "surface": "किम्", + "isMarker": false, + "gloss": "what? how? whence? wherefore? why?", + "lemmas": [ + "kim" + ], + "pieces": [ + { + "slp": "kim", + "stem": "kim", + "gloss": "what? how? whence? wherefore? why?" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "55s": { + "line": "श्रीभगवानुवाच", + "tokens": [ + { + "surface": "श्रीभगवानुवाच", + "isMarker": false, + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "lemmas": [ + "SrI", + "Bagavat", + "vac" + ], + "pieces": [ + { + "slp": "SrI", + "stem": "SrI", + "gloss": "to mix, mingle, cook" + }, + { + "slp": "BagavAn", + "stem": "Bagavat", + "gloss": "the Blessed One", + "override": true + }, + { + "slp": "uvAca", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + "55a": { + "line": "प्रजहाति यदा कामान्सर्वान्पार्थ मनोगतान् ।", + "tokens": [ + { + "surface": "प्रजहाति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "pra", + "hA" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "jahAti", + "stem": "hA", + "gloss": "a form of Śiva or Bhairava" + } + ] + }, + { + "surface": "यदा", + "isMarker": false, + "gloss": "when, at what time, whenever", + "lemmas": [ + "yadA" + ], + "pieces": [ + { + "slp": "yadA", + "stem": "yadA", + "gloss": "when, at what time, whenever" + } + ] + }, + { + "surface": "कामान्सर्वान्पार्थ", + "isMarker": false, + "gloss": "wish, desire, longing + all, every + O son of Pṛthā — Arjuna", + "lemmas": [ + "kAma", + "sarva", + "pArTa" + ], + "pieces": [ + { + "slp": "kAmAn", + "stem": "kAma", + "gloss": "wish, desire, longing" + }, + { + "slp": "sarvAn", + "stem": "sarva", + "gloss": "all, every", + "override": true + }, + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "मनोगतान्", + "isMarker": false, + "gloss": "‘mind-gone’, existing or passing or concealed in the mind or heart", + "lemmas": [ + "manogata" + ], + "pieces": [ + { + "slp": "manogatAn", + "stem": "manogata", + "gloss": "‘mind-gone’, existing or passing or concealed in the mind or heart" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "55b": { + "line": "आत्मन्येवात्मना तुष्टः स्थितप्रज्ञस्तदोच्यते ॥२- ५५॥", + "tokens": [ + { + "surface": "आत्मन्येवात्मना", + "isMarker": false, + "gloss": "the breath + just, only + the vital breath, RV. i, 63", + "lemmas": [ + "Atman", + "eva", + "tmanA" + ], + "pieces": [ + { + "slp": "Atmani", + "stem": "Atman", + "gloss": "the breath" + }, + { + "slp": "evA", + "stem": "eva", + "gloss": "just, only", + "override": true + }, + { + "slp": "tmanA", + "stem": "tmanA", + "gloss": "the vital breath, RV. i, 63" + } + ] + }, + { + "surface": "तुष्टः", + "isMarker": false, + "gloss": "satisfied, pleased, MBh. &c", + "lemmas": [ + "tuzwa" + ], + "pieces": [ + { + "slp": "tuzwaH", + "stem": "tuzwa", + "gloss": "satisfied, pleased, MBh. &c" + } + ] + }, + { + "surface": "स्थितप्रज्ञस्तदोच्यते", + "isMarker": false, + "gloss": "firm in judgement and wisdom, calm, contented + at that time, then, in that case + to speak, say, tell", + "lemmas": [ + "sTitaprajYa", + "tadA", + "vac" + ], + "pieces": [ + { + "slp": "sTitaprajYas", + "stem": "sTitaprajYa", + "gloss": "firm in judgement and wisdom, calm, contented" + }, + { + "slp": "tadA", + "stem": "tadA", + "gloss": "at that time, then, in that case" + }, + { + "slp": "ucyate", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "56a": { + "line": "दुःखेष्वनुद्विग्नमनाः सुखेषु विगतस्पृहः ।", + "tokens": [ + { + "surface": "दुःखेष्वनुद्विग्नमनाः", + "isMarker": false, + "gloss": "uneasy, uncomfortable, unpleasant + free from apprehension or perplexity, easy in mind, Mṛcch. &c + mind, intellect, intelligence", + "lemmas": [ + "duHKa", + "anudvigna", + "manas" + ], + "pieces": [ + { + "slp": "duHKezu", + "stem": "duHKa", + "gloss": "uneasy, uncomfortable, unpleasant" + }, + { + "slp": "anudvigna", + "stem": "anudvigna", + "gloss": "free from apprehension or perplexity, easy in mind, Mṛcch. &c" + }, + { + "slp": "manAs", + "stem": "manas", + "gloss": "mind, intellect, intelligence" + } + ] + }, + { + "surface": "सुखेषु", + "isMarker": false, + "gloss": "see suKa s.v", + "lemmas": [ + "suKa" + ], + "pieces": [ + { + "slp": "suKezu", + "stem": "suKa", + "gloss": "see suKa s.v" + } + ] + }, + { + "surface": "विगतस्पृहः", + "isMarker": false, + "gloss": "devoid of wish or desire, indifferent", + "lemmas": [ + "vigataspfha" + ], + "pieces": [ + { + "slp": "vigataspfhaH", + "stem": "vigataspfha", + "gloss": "devoid of wish or desire, indifferent" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "56b": { + "line": "वीतरागभयक्रोधः स्थितधीर्मुनिरुच्यते ॥२- ५६॥", + "tokens": [ + { + "surface": "वीतरागभयक्रोधः", + "isMarker": false, + "gloss": "free from passions and fear and anger", + "lemmas": [ + "vItarAgaBayakroDa" + ], + "pieces": [ + { + "slp": "vItarAgaBayakroDaH", + "stem": "vItarAgaBayakroDa", + "gloss": "free from passions and fear and anger" + } + ] + }, + { + "surface": "स्थितधीर्मुनिरुच्यते", + "isMarker": false, + "gloss": "steady-minded, firm, unmoved + sage, silent one + to speak, say, tell", + "lemmas": [ + "sTitaDI", + "muni", + "vac" + ], + "pieces": [ + { + "slp": "sTitaDIs", + "stem": "sTitaDI", + "gloss": "steady-minded, firm, unmoved" + }, + { + "slp": "munis", + "stem": "muni", + "gloss": "sage, silent one", + "override": true + }, + { + "slp": "ucyate", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "57a": { + "line": "यः सर्वत्रानभिस्नेहस्तत्तत्प्राप्य शुभाशुभम् ।", + "tokens": [ + { + "surface": "यः", + "isMarker": false, + "gloss": "who, which, what", + "lemmas": [ + "yad" + ], + "pieces": [ + { + "slp": "yaH", + "stem": "yad", + "gloss": "who, which, what" + } + ] + }, + { + "surface": "सर्वत्रानभिस्नेहस्तत्तत्प्राप्य", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sarvatra", + "anaBisneha", + "tad", + "tad", + "prApya" + ], + "pieces": [ + { + "slp": "sarvatra", + "stem": "sarvatra", + "gloss": "everywhere, in every case, always" + }, + { + "slp": "anaBisnehas", + "stem": "anaBisneha", + "gloss": "without affection, cold, unimpassioned" + }, + { + "slp": "tat", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "tat", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "prApya", + "stem": "prApya", + "gloss": "to be reached, attainable, acquirable" + } + ] + }, + { + "surface": "शुभाशुभम्", + "isMarker": false, + "gloss": "pleasant and unpleasant, agreeable and disagreeable, prosperous and unfortunate", + "lemmas": [ + "SuBASuBa" + ], + "pieces": [ + { + "slp": "SuBASuBam", + "stem": "SuBASuBa", + "gloss": "pleasant and unpleasant, agreeable and disagreeable, prosperous and unfortunate" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "57b": { + "line": "नाभिनन्दति न द्वेष्टि तस्य प्रज्ञा प्रतिष्ठिता ॥२- ५७॥", + "tokens": [ + { + "surface": "नाभिनन्दति", + "isMarker": false, + "gloss": "the navel, a navel-like cavity, RV. &c. &c + to rejoice, delight, to be pleased or satisfied with", + "lemmas": [ + "nABi", + "nand" + ], + "pieces": [ + { + "slp": "nABi", + "stem": "nABi", + "gloss": "the navel, a navel-like cavity, RV. &c. &c" + }, + { + "slp": "nandati", + "stem": "nand", + "gloss": "to rejoice, delight, to be pleased or satisfied with" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "द्वेष्टि", + "isMarker": false, + "gloss": "dviz in comp. for dvis below", + "lemmas": [ + "dviz" + ], + "pieces": [ + { + "slp": "dvezwi", + "stem": "dviz", + "gloss": "dviz in comp. for dvis below" + } + ] + }, + { + "surface": "तस्य", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tasya", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "प्रज्ञा", + "isMarker": false, + "gloss": "to know, understand, discern", + "lemmas": [ + "prajYA" + ], + "pieces": [ + { + "slp": "prajYA", + "stem": "prajYA", + "gloss": "to know, understand, discern" + } + ] + }, + { + "surface": "प्रतिष्ठिता", + "isMarker": false, + "gloss": "standing, stationed, placed", + "lemmas": [ + "pratizWita" + ], + "pieces": [ + { + "slp": "pratizWitA", + "stem": "pratizWita", + "gloss": "standing, stationed, placed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "58a": { + "line": "यदा संहरते चायं कूर्मोऽङ्गानीव सर्वशः ।", + "tokens": [ + { + "surface": "यदा", + "isMarker": false, + "gloss": "when, at what time, whenever", + "lemmas": [ + "yadA" + ], + "pieces": [ + { + "slp": "yadA", + "stem": "yadA", + "gloss": "when, at what time, whenever" + } + ] + }, + { + "surface": "संहरते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "saMhara", + "tad" + ], + "pieces": [ + { + "slp": "saMhara", + "stem": "saMhara", + "gloss": "˚raRa. See saM-" + }, + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "चायं", + "isMarker": false, + "gloss": "and + going", + "lemmas": [ + "ca", + "ya" + ], + "pieces": [ + { + "slp": "cAs", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "कूर्मोऽङ्गानीव", + "isMarker": false, + "gloss": "a tortoise, turtle + a particle implying attention, assent or desire, and sometimes impatience + a species of tree", + "lemmas": [ + "kUrma", + "aNga", + "nIva" + ], + "pieces": [ + { + "slp": "kUrmas", + "stem": "kUrma", + "gloss": "a tortoise, turtle" + }, + { + "slp": "aNgA", + "stem": "aNga", + "gloss": "a particle implying attention, assent or desire, and sometimes impatience" + }, + { + "slp": "nIva", + "stem": "nIva", + "gloss": "a species of tree" + } + ] + }, + { + "surface": "सर्वशः", + "isMarker": false, + "gloss": "wholly, completely, entirely", + "lemmas": [ + "sarvaSas" + ], + "pieces": [ + { + "slp": "sarvaSaH", + "stem": "sarvaSas", + "gloss": "wholly, completely, entirely" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "58b": { + "line": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य प्रज्ञा प्रतिष्ठिता ॥२- ५८॥", + "tokens": [ + { + "surface": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य", + "isMarker": false, + "gloss": "fit for or belonging to or agreeable to Indra + an object of sense, anything exciting the senses + that; he, she, it", + "lemmas": [ + "indriya", + "indriyArTa", + "tad" + ], + "pieces": [ + { + "slp": "indriyARi", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + }, + { + "slp": "indriyArTeByas", + "stem": "indriyArTa", + "gloss": "an object of sense, anything exciting the senses" + }, + { + "slp": "tasya", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "प्रज्ञा", + "isMarker": false, + "gloss": "to know, understand, discern", + "lemmas": [ + "prajYA" + ], + "pieces": [ + { + "slp": "prajYA", + "stem": "prajYA", + "gloss": "to know, understand, discern" + } + ] + }, + { + "surface": "प्रतिष्ठिता", + "isMarker": false, + "gloss": "standing, stationed, placed", + "lemmas": [ + "pratizWita" + ], + "pieces": [ + { + "slp": "pratizWitA", + "stem": "pratizWita", + "gloss": "standing, stationed, placed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "59a": { + "line": "विषया विनिवर्तन्ते निराहारस्य देहिनः ।", + "tokens": [ + { + "surface": "विषया", + "isMarker": false, + "gloss": "a servant, attendant + going", + "lemmas": [ + "viza", + "ya" + ], + "pieces": [ + { + "slp": "viza", + "stem": "viza", + "gloss": "a servant, attendant" + }, + { + "slp": "yA", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "विनिवर्तन्ते", + "isMarker": false, + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + vft surrounding, enclosing, obstructing", + "lemmas": [ + "vI", + "vft" + ], + "pieces": [ + { + "slp": "vini", + "stem": "vI", + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV" + }, + { + "slp": "vartante", + "stem": "vft", + "gloss": "vft surrounding, enclosing, obstructing" + } + ] + }, + { + "surface": "निराहारस्य", + "isMarker": false, + "gloss": "want of food, fasting, Yājñ", + "lemmas": [ + "nirAhAra" + ], + "pieces": [ + { + "slp": "nirAhArasya", + "stem": "nirAhAra", + "gloss": "want of food, fasting, Yājñ" + } + ] + }, + { + "surface": "देहिनः", + "isMarker": false, + "gloss": "having a body, corporeal", + "lemmas": [ + "dehin" + ], + "pieces": [ + { + "slp": "dehinaH", + "stem": "dehin", + "gloss": "having a body, corporeal" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "59b": { + "line": "रसवर्जं रसोऽप्यस्य परं दृष्ट्वा निवर्तते ॥२- ५९॥", + "tokens": [ + { + "surface": "रसवर्जं", + "isMarker": false, + "gloss": "avoidance of tastes or flavours", + "lemmas": [ + "rasavarjam" + ], + "pieces": [ + { + "slp": "rasavarjam", + "stem": "rasavarjam", + "gloss": "avoidance of tastes or flavours" + } + ] + }, + { + "surface": "रसोऽप्यस्य", + "isMarker": false, + "gloss": "the sap or juice of plants, juice of fruit, any liquid or fluid + mf n being in water, coming from water, connected with water", + "lemmas": [ + "rasa", + "apya" + ], + "pieces": [ + { + "slp": "rasas", + "stem": "rasa", + "gloss": "the sap or juice of plants, juice of fruit, any liquid or fluid" + }, + { + "slp": "apyasya", + "stem": "apya", + "gloss": "mf n being in water, coming from water, connected with water" + } + ] + }, + { + "surface": "परं", + "isMarker": false, + "gloss": "far, distant, remote", + "lemmas": [ + "para" + ], + "pieces": [ + { + "slp": "param", + "stem": "para", + "gloss": "far, distant, remote" + } + ] + }, + { + "surface": "दृष्ट्वा", + "isMarker": false, + "gloss": "to see, behold, look at", + "lemmas": [ + "dfS" + ], + "pieces": [ + { + "slp": "dfzwvA", + "stem": "dfS", + "gloss": "to see, behold, look at" + } + ] + }, + { + "surface": "निवर्तते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nivarta", + "tad" + ], + "pieces": [ + { + "slp": "nivarta", + "stem": "nivarta", + "gloss": "&c. See ni-vft" + }, + { + "slp": "te", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "५९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "60a": { + "line": "यततो ह्यपि कौन्तेय पुरुषस्य विपश्चितः ।", + "tokens": [ + { + "surface": "यततो", + "isMarker": false, + "gloss": "who, which, what + from this, than this", + "lemmas": [ + "yad", + "atas" + ], + "pieces": [ + { + "slp": "yat", + "stem": "yad", + "gloss": "who, which, what" + }, + { + "slp": "atas", + "stem": "atas", + "gloss": "from this, than this" + } + ] + }, + { + "surface": "ह्यपि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "hI", + "api" + ], + "pieces": [ + { + "slp": "hI", + "stem": "hI", + "gloss": "ah! oh! alas l &c" + }, + { + "slp": "api", + "stem": "api", + "gloss": "also, even", + "override": true + } + ] + }, + { + "surface": "कौन्तेय", + "isMarker": false, + "gloss": "O son of Kuntī — Arjuna", + "lemmas": [ + "kOnteya" + ], + "pieces": [ + { + "slp": "kOnteya", + "stem": "kOnteya", + "gloss": "O son of Kuntī — Arjuna", + "override": true + } + ] + }, + { + "surface": "पुरुषस्य", + "isMarker": false, + "gloss": "rarely f", + "lemmas": [ + "puruza" + ], + "pieces": [ + { + "slp": "puruzasya", + "stem": "puruza", + "gloss": "rarely f" + } + ] + }, + { + "surface": "विपश्चितः", + "isMarker": false, + "gloss": "inspired, wise, learned", + "lemmas": [ + "vipaScit" + ], + "pieces": [ + { + "slp": "vipaScitaH", + "stem": "vipaScit", + "gloss": "inspired, wise, learned" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "60b": { + "line": "इन्द्रियाणि प्रमाथीनि हरन्ति प्रसभं मनः ॥२- ६०॥", + "tokens": [ + { + "surface": "इन्द्रियाणि", + "isMarker": false, + "gloss": "fit for or belonging to or agreeable to Indra", + "lemmas": [ + "indriya" + ], + "pieces": [ + { + "slp": "indriyARi", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + } + ] + }, + { + "surface": "प्रमाथीनि", + "isMarker": false, + "gloss": "stirring about, tearing, rending", + "lemmas": [ + "pramATin" + ], + "pieces": [ + { + "slp": "pramATIni", + "stem": "pramATin", + "gloss": "stirring about, tearing, rending" + } + ] + }, + { + "surface": "हरन्ति", + "isMarker": false, + "gloss": "to take, bear, carry in or on", + "lemmas": [ + "hf" + ], + "pieces": [ + { + "slp": "haranti", + "stem": "hf", + "gloss": "to take, bear, carry in or on" + } + ] + }, + { + "surface": "प्रसभं", + "isMarker": false, + "gloss": "N. of a variety of the Triṣṭubh metre", + "lemmas": [ + "prasaBa" + ], + "pieces": [ + { + "slp": "prasaBam", + "stem": "prasaBa", + "gloss": "N. of a variety of the Triṣṭubh metre" + } + ] + }, + { + "surface": "मनः", + "isMarker": false, + "gloss": "mind, intellect, intelligence", + "lemmas": [ + "manas" + ], + "pieces": [ + { + "slp": "manaH", + "stem": "manas", + "gloss": "mind, intellect, intelligence" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "61a": { + "line": "तानि सर्वाणि संयम्य युक्त आसीत मत्परः ।", + "tokens": [ + { + "surface": "तानि", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tAni", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "सर्वाणि", + "isMarker": false, + "gloss": "all, every", + "lemmas": [ + "sarva" + ], + "pieces": [ + { + "slp": "sarvARi", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "संयम्य", + "isMarker": false, + "gloss": "to be checked or restrained or subdued", + "lemmas": [ + "saMyamya" + ], + "pieces": [ + { + "slp": "saMyamya", + "stem": "saMyamya", + "gloss": "to be checked or restrained or subdued" + } + ] + }, + { + "surface": "युक्त", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yukta" + ], + "pieces": [ + { + "slp": "yukta", + "stem": "yukta", + "gloss": "yukti &c. See cols. 2, 3" + } + ] + }, + { + "surface": "आसीत", + "isMarker": false, + "gloss": "", + "lemmas": [ + "As" + ], + "pieces": [ + { + "slp": "AsIta", + "stem": "As", + "gloss": "Ah! Oh! &c" + } + ] + }, + { + "surface": "मत्परः", + "isMarker": false, + "gloss": "mat—parama or mat—parAyaRa, mfn. devoted to me", + "lemmas": [ + "matpara" + ], + "pieces": [ + { + "slp": "matparaH", + "stem": "matpara", + "gloss": "mat—parama or mat—parAyaRa, mfn. devoted to me" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "61b": { + "line": "वशे हि यस्येन्द्रियाणि तस्य प्रज्ञा प्रतिष्ठिता ॥२- ६१॥", + "tokens": [ + { + "surface": "वशे", + "isMarker": false, + "gloss": "to speak, say, tell", + "lemmas": [ + "vac" + ], + "pieces": [ + { + "slp": "vaSe", + "stem": "vac", + "gloss": "to speak, say, tell" + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "यस्येन्द्रियाणि", + "isMarker": false, + "gloss": "to froth up, foam + fit for or belonging to or agreeable to Indra", + "lemmas": [ + "yas", + "indriya" + ], + "pieces": [ + { + "slp": "yasya", + "stem": "yas", + "gloss": "to froth up, foam" + }, + { + "slp": "indriyARi", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + } + ] + }, + { + "surface": "तस्य", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tasya", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "प्रज्ञा", + "isMarker": false, + "gloss": "to know, understand, discern", + "lemmas": [ + "prajYA" + ], + "pieces": [ + { + "slp": "prajYA", + "stem": "prajYA", + "gloss": "to know, understand, discern" + } + ] + }, + { + "surface": "प्रतिष्ठिता", + "isMarker": false, + "gloss": "standing, stationed, placed", + "lemmas": [ + "pratizWita" + ], + "pieces": [ + { + "slp": "pratizWitA", + "stem": "pratizWita", + "gloss": "standing, stationed, placed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "62a": { + "line": "ध्यायतो विषयान्पुंसः सङ्गस्तेषूपजायते ।", + "tokens": [ + { + "surface": "ध्यायतो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "DyA" + ], + "pieces": [ + { + "slp": "DyAyatas", + "stem": "DyA", + "gloss": "DyAna See under below" + } + ] + }, + { + "surface": "विषयान्पुंसः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vizaya", + "a", + "puMs" + ], + "pieces": [ + { + "slp": "vizaya", + "stem": "vizaya", + "gloss": "" + }, + { + "slp": "An", + "stem": "a", + "gloss": "a the first letter of the alphabet" + }, + { + "slp": "puMsas", + "stem": "puMs", + "gloss": "to crush, grind, Dhātup. xxxii" + } + ] + }, + { + "surface": "सङ्गस्तेषूपजायते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "saNga", + "tad", + "upaja", + "i" + ], + "pieces": [ + { + "slp": "saNgas", + "stem": "saNga", + "gloss": "sticking, clinging to, touch" + }, + { + "slp": "tezu", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "upaja", + "stem": "upaja", + "gloss": "upa-ja mfn, additional, accessory" + }, + { + "slp": "ayate", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "62b": { + "line": "सङ्गात्संजायते कामः कामात्क्रोधोऽभिजायते ॥२- ६२॥", + "tokens": [ + { + "surface": "सङ्गात्संजायते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "saNga", + "sam", + "jan" + ], + "pieces": [ + { + "slp": "saNgAt", + "stem": "saNga", + "gloss": "sticking, clinging to, touch" + }, + { + "slp": "sam", + "stem": "sam", + "gloss": "to be disturbed, Dhātup. xix, 82" + }, + { + "slp": "jAyate", + "stem": "jan", + "gloss": "to generate, beget, produce" + } + ] + }, + { + "surface": "कामः", + "isMarker": false, + "gloss": "wish, desire, longing", + "lemmas": [ + "kAma" + ], + "pieces": [ + { + "slp": "kAmaH", + "stem": "kAma", + "gloss": "wish, desire, longing" + } + ] + }, + { + "surface": "कामात्क्रोधोऽभिजायते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "kAma", + "kroDa", + "aBija", + "i" + ], + "pieces": [ + { + "slp": "kAmAt", + "stem": "kAma", + "gloss": "wish, desire, longing" + }, + { + "slp": "kroDas", + "stem": "kroDa", + "gloss": "anger, wrath, passion" + }, + { + "slp": "aBijA", + "stem": "aBija", + "gloss": "ifc. produced all around" + }, + { + "slp": "ayate", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "63a": { + "line": "क्रोधाद्भवति संमोहः संमोहात्स्मृतिविभ्रमः ।", + "tokens": [ + { + "surface": "क्रोधाद्भवति", + "isMarker": false, + "gloss": "anger, wrath, passion + to become, be, arise", + "lemmas": [ + "kroDa", + "BU" + ], + "pieces": [ + { + "slp": "kroDAt", + "stem": "kroDa", + "gloss": "anger, wrath, passion" + }, + { + "slp": "Bavati", + "stem": "BU", + "gloss": "to become, be, arise" + } + ] + }, + { + "surface": "संमोहः", + "isMarker": false, + "gloss": "stupefaction, bewilderment, confusion", + "lemmas": [ + "sammoha" + ], + "pieces": [ + { + "slp": "sammohas", + "stem": "sammoha", + "gloss": "stupefaction, bewilderment, confusion" + } + ] + }, + { + "surface": "संमोहात्स्मृतिविभ्रमः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sammoha", + "smftiviBrama" + ], + "pieces": [ + { + "slp": "sammohAt", + "stem": "sammoha", + "gloss": "stupefaction, bewilderment, confusion" + }, + { + "slp": "smftiviBramas", + "stem": "smftiviBrama", + "gloss": "confusion of m˚" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "63b": { + "line": "स्मृतिभ्रंशाद्बुद्धिनाशो बुद्धिनाशात्प्रणश्यति ॥२- ६३॥", + "tokens": [ + { + "surface": "स्मृतिभ्रंशाद्बुद्धिनाशो", + "isMarker": false, + "gloss": "", + "lemmas": [ + "smftiBraMSa", + "budDi", + "aSas" + ], + "pieces": [ + { + "slp": "smftiBraMSAt", + "stem": "smftiBraMSa", + "gloss": "loss of m˚" + }, + { + "slp": "budDinA", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "aSas", + "stem": "aSas", + "gloss": "not blessing or wishing well, cursing, hating" + } + ] + }, + { + "surface": "बुद्धिनाशात्प्रणश्यति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "budDi", + "nASa", + "praRa", + "SA" + ], + "pieces": [ + { + "slp": "budDi", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "nASAt", + "stem": "nASa", + "gloss": "attainment" + }, + { + "slp": "praRa", + "stem": "praRa", + "gloss": "" + }, + { + "slp": "Syati", + "stem": "SA", + "gloss": "" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६३॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "64a": { + "line": "रागद्वेषवियुक्तैस्तु विषयानिन्द्रियैश्चरन् ।", + "tokens": [ + { + "surface": "रागद्वेषवियुक्तैस्तु", + "isMarker": false, + "gloss": "du. love and hatred, Mn. xii, 26 + disjoined, detached, separated or delivered from + but", + "lemmas": [ + "rAgadveza", + "viyukta", + "tu" + ], + "pieces": [ + { + "slp": "rAgadveza", + "stem": "rAgadveza", + "gloss": "du. love and hatred, Mn. xii, 26" + }, + { + "slp": "viyuktEs", + "stem": "viyukta", + "gloss": "disjoined, detached, separated or delivered from" + }, + { + "slp": "tu", + "stem": "tu", + "gloss": "but", + "override": true + } + ] + }, + { + "surface": "विषयानिन्द्रियैश्चरन्", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vizaya", + "anindriya", + "carat" + ], + "pieces": [ + { + "slp": "vizaya", + "stem": "vizaya", + "gloss": "" + }, + { + "slp": "anindriyEs", + "stem": "anindriya", + "gloss": "that which is not the senses, the soul, the reason" + }, + { + "slp": "caran", + "stem": "carat", + "gloss": "" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "64b": { + "line": "आत्मवश्यैर्विधेयात्मा प्रसादमधिगच्छति ॥२- ६४॥", + "tokens": [ + { + "surface": "आत्मवश्यैर्विधेयात्मा", + "isMarker": false, + "gloss": "", + "lemmas": [ + "AtmavaSa", + "i", + "viDeyAtman" + ], + "pieces": [ + { + "slp": "AtmavaSi", + "stem": "AtmavaSa", + "gloss": "dependent on one's own will, Mn. iv, 159 seq" + }, + { + "slp": "Es", + "stem": "i", + "gloss": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c" + }, + { + "slp": "viDeyAtmA", + "stem": "viDeyAtman", + "gloss": "having the soul subdued or controlled" + } + ] + }, + { + "surface": "प्रसादमधिगच्छति", + "isMarker": false, + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness + aDi m, anxiety + to go, move, go away", + "lemmas": [ + "prasAda", + "aDi", + "gam" + ], + "pieces": [ + { + "slp": "prasAdam", + "stem": "prasAda", + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness" + }, + { + "slp": "aDi", + "stem": "aDi", + "gloss": "aDi m, anxiety" + }, + { + "slp": "gacCati", + "stem": "gam", + "gloss": "to go, move, go away" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६४॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "65a": { + "line": "प्रसादे सर्वदुःखानां हानिरस्योपजायते ।", + "tokens": [ + { + "surface": "प्रसादे", + "isMarker": false, + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness", + "lemmas": [ + "prasAda" + ], + "pieces": [ + { + "slp": "prasAde", + "stem": "prasAda", + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness" + } + ] + }, + { + "surface": "सर्वदुःखानां", + "isMarker": false, + "gloss": "minute, thin, fine + free from evil or trouble, propitious", + "lemmas": [ + "saru", + "aduHKa" + ], + "pieces": [ + { + "slp": "sarU", + "stem": "saru", + "gloss": "minute, thin, fine" + }, + { + "slp": "aduHKAnAm", + "stem": "aduHKa", + "gloss": "free from evil or trouble, propitious" + } + ] + }, + { + "surface": "हानिरस्योपजायते", + "isMarker": false, + "gloss": "", + "lemmas": [ + "hAni", + "rasa", + "vap", + "jan" + ], + "pieces": [ + { + "slp": "hAni", + "stem": "hAni", + "gloss": "abandonment, relinquishment" + }, + { + "slp": "rasya", + "stem": "rasa", + "gloss": "the sap or juice of plants, juice of fruit, any liquid or fluid" + }, + { + "slp": "Upa", + "stem": "vap", + "gloss": "to shear, shave, cut off" + }, + { + "slp": "jAyate", + "stem": "jan", + "gloss": "to generate, beget, produce" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "65b": { + "line": "प्रसन्नचेतसो ह्याशु बुद्धिः पर्यवतिष्ठते ॥२- ६५॥", + "tokens": [ + { + "surface": "प्रसन्नचेतसो", + "isMarker": false, + "gloss": "clear, bright, pure + splendour", + "lemmas": [ + "prasanna", + "cetas" + ], + "pieces": [ + { + "slp": "prasanna", + "stem": "prasanna", + "gloss": "clear, bright, pure" + }, + { + "slp": "cetasas", + "stem": "cetas", + "gloss": "splendour" + } + ] + }, + { + "surface": "ह्याशु", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ha", + "Su" + ], + "pieces": [ + { + "slp": "hyA", + "stem": "ha", + "gloss": "ha the thirty-third and last consonant of the Nāgarī alphabet" + }, + { + "slp": "Su", + "stem": "Su", + "gloss": "to go &c" + } + ] + }, + { + "surface": "बुद्धिः", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason", + "lemmas": [ + "budDi" + ], + "pieces": [ + { + "slp": "budDiH", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + } + ] + }, + { + "surface": "पर्यवतिष्ठते", + "isMarker": false, + "gloss": "round, around, about + to drive, impel, animate + to stand, stand firmly, station one's self", + "lemmas": [ + "pari", + "av", + "sTA" + ], + "pieces": [ + { + "slp": "parI", + "stem": "pari", + "gloss": "round, around, about" + }, + { + "slp": "ava", + "stem": "av", + "gloss": "to drive, impel, animate" + }, + { + "slp": "tizWate", + "stem": "sTA", + "gloss": "to stand, stand firmly, station one's self" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६५॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "66a": { + "line": "नास्ति बुद्धिरयुक्तस्य न चायुक्तस्य भावना ।", + "tokens": [ + { + "surface": "नास्ति", + "isMarker": false, + "gloss": "it is not, there is not", + "lemmas": [ + "nAsti" + ], + "pieces": [ + { + "slp": "nAsti", + "stem": "nAsti", + "gloss": "it is not, there is not" + } + ] + }, + { + "surface": "बुद्धिरयुक्तस्य", + "isMarker": false, + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + not yoked, RV. x, 27", + "lemmas": [ + "budDi", + "ayukta" + ], + "pieces": [ + { + "slp": "budDis", + "stem": "budDi", + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "slp": "ayuktasya", + "stem": "ayukta", + "gloss": "not yoked, RV. x, 27" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चायुक्तस्य", + "isMarker": false, + "gloss": "and + joined with, united, applied to", + "lemmas": [ + "ca", + "Ayukta" + ], + "pieces": [ + { + "slp": "ca", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "Ayuktasya", + "stem": "Ayukta", + "gloss": "joined with, united, applied to" + } + ] + }, + { + "surface": "भावना", + "isMarker": false, + "gloss": "a forest of rays, Ghaṭ", + "lemmas": [ + "BAvana" + ], + "pieces": [ + { + "slp": "BAvanA", + "stem": "BAvana", + "gloss": "a forest of rays, Ghaṭ" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "66b": { + "line": "न चाभावयतः शान्तिरशान्तस्य कुतः सुखम् ॥२- ६६॥", + "tokens": [ + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "चाभावयतः", + "isMarker": false, + "gloss": "and + unconscious, unwise", + "lemmas": [ + "ca", + "aBAvayat" + ], + "pieces": [ + { + "slp": "cA", + "stem": "ca", + "gloss": "and", + "override": true + }, + { + "slp": "aBAvayatas", + "stem": "aBAvayat", + "gloss": "unconscious, unwise" + } + ] + }, + { + "surface": "शान्तिरशान्तस्य", + "isMarker": false, + "gloss": "tranquillity, peace, quiet + unappeased, indomitable, violent", + "lemmas": [ + "SAnti", + "aSAnta" + ], + "pieces": [ + { + "slp": "SAntis", + "stem": "SAnti", + "gloss": "tranquillity, peace, quiet" + }, + { + "slp": "aSAntasya", + "stem": "aSAnta", + "gloss": "unappeased, indomitable, violent" + } + ] + }, + { + "surface": "कुतः", + "isMarker": false, + "gloss": "from whom?, RV. i, 164", + "lemmas": [ + "kutas" + ], + "pieces": [ + { + "slp": "kutaH", + "stem": "kutas", + "gloss": "from whom?, RV. i, 164" + } + ] + }, + { + "surface": "सुखम्", + "isMarker": false, + "gloss": "see suKa s.v", + "lemmas": [ + "suKa" + ], + "pieces": [ + { + "slp": "suKam", + "stem": "suKa", + "gloss": "see suKa s.v" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६६॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "67a": { + "line": "इन्द्रियाणां हि चरतां यन्मनोऽनु विधीयते ।", + "tokens": [ + { + "surface": "इन्द्रियाणां", + "isMarker": false, + "gloss": "fit for or belonging to or agreeable to Indra", + "lemmas": [ + "indriya" + ], + "pieces": [ + { + "slp": "indriyARAm", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + } + ] + }, + { + "surface": "हि", + "isMarker": false, + "gloss": "for, indeed", + "lemmas": [ + "hi" + ], + "pieces": [ + { + "slp": "hi", + "stem": "hi", + "gloss": "for, indeed", + "override": true + } + ] + }, + { + "surface": "चरतां", + "isMarker": false, + "gloss": "to move one's self, go, walk", + "lemmas": [ + "car" + ], + "pieces": [ + { + "slp": "caratAm", + "stem": "car", + "gloss": "to move one's self, go, walk" + } + ] + }, + { + "surface": "यन्मनोऽनु", + "isMarker": false, + "gloss": "", + "lemmas": [ + "yad", + "manu", + "nu" + ], + "pieces": [ + { + "slp": "yat", + "stem": "yad", + "gloss": "who, which, what" + }, + { + "slp": "mano", + "stem": "manu", + "gloss": "thinking, wise, intelligent" + }, + { + "slp": "nu", + "stem": "nu", + "gloss": "nu ind, now, still" + } + ] + }, + { + "surface": "विधीयते", + "isMarker": false, + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to DA", + "lemmas": [ + "vI", + "DI" + ], + "pieces": [ + { + "slp": "vi", + "stem": "vI", + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV" + }, + { + "slp": "DIyate", + "stem": "DI", + "gloss": "to DA" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "67b": { + "line": "तदस्य हरति प्रज्ञां वायुर्नावमिवाम्भसि ॥२- ६७॥", + "tokens": [ + { + "surface": "तदस्य", + "isMarker": false, + "gloss": "that; he, she, it + to be, live, exist", + "lemmas": [ + "tad", + "as" + ], + "pieces": [ + { + "slp": "tad", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "asya", + "stem": "as", + "gloss": "to be, live, exist" + } + ] + }, + { + "surface": "हरति", + "isMarker": false, + "gloss": "to take, bear, carry in or on", + "lemmas": [ + "hf" + ], + "pieces": [ + { + "slp": "harati", + "stem": "hf", + "gloss": "to take, bear, carry in or on" + } + ] + }, + { + "surface": "प्रज्ञां", + "isMarker": false, + "gloss": "to know, understand, discern", + "lemmas": [ + "prajYA" + ], + "pieces": [ + { + "slp": "prajYAm", + "stem": "prajYA", + "gloss": "to know, understand, discern" + } + ] + }, + { + "surface": "वायुर्नावमिवाम्भसि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "vAyu", + "nO", + "iva", + "amBas" + ], + "pieces": [ + { + "slp": "vAyus", + "stem": "vAyu", + "gloss": "wind, air, RV. &c. &c" + }, + { + "slp": "nAvam", + "stem": "nO", + "gloss": "nO encl. acc. dat. gen. du. of 1st pers. pron, RV. &c. &c" + }, + { + "slp": "iva", + "stem": "iva", + "gloss": "like, as if", + "override": true + }, + { + "slp": "amBasi", + "stem": "amBas", + "gloss": "water, RV. &c, the celestial waters" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६७॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "68a": { + "line": "तस्माद्यस्य महाबाहो निगृहीतानि सर्वशः ।", + "tokens": [ + { + "surface": "तस्माद्यस्य", + "isMarker": false, + "gloss": "that; he, she, it + to froth up, foam", + "lemmas": [ + "tad", + "yas" + ], + "pieces": [ + { + "slp": "tasmAt", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + }, + { + "slp": "yasya", + "stem": "yas", + "gloss": "to froth up, foam" + } + ] + }, + { + "surface": "महाबाहो", + "isMarker": false, + "gloss": "long-armed", + "lemmas": [ + "mahAbAhu" + ], + "pieces": [ + { + "slp": "mahAbAho", + "stem": "mahAbAhu", + "gloss": "long-armed" + } + ] + }, + { + "surface": "निगृहीतानि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "nigfhIta" + ], + "pieces": [ + { + "slp": "nigfhItAni", + "stem": "nigfhIta", + "gloss": "˚ti. See ni-grah below" + } + ] + }, + { + "surface": "सर्वशः", + "isMarker": false, + "gloss": "wholly, completely, entirely", + "lemmas": [ + "sarvaSas" + ], + "pieces": [ + { + "slp": "sarvaSaH", + "stem": "sarvaSas", + "gloss": "wholly, completely, entirely" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "68b": { + "line": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य प्रज्ञा प्रतिष्ठिता ॥२- ६८॥", + "tokens": [ + { + "surface": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य", + "isMarker": false, + "gloss": "fit for or belonging to or agreeable to Indra + an object of sense, anything exciting the senses + that; he, she, it", + "lemmas": [ + "indriya", + "indriyArTa", + "tad" + ], + "pieces": [ + { + "slp": "indriyARi", + "stem": "indriya", + "gloss": "fit for or belonging to or agreeable to Indra" + }, + { + "slp": "indriyArTeByas", + "stem": "indriyArTa", + "gloss": "an object of sense, anything exciting the senses" + }, + { + "slp": "tasya", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "प्रज्ञा", + "isMarker": false, + "gloss": "to know, understand, discern", + "lemmas": [ + "prajYA" + ], + "pieces": [ + { + "slp": "prajYA", + "stem": "prajYA", + "gloss": "to know, understand, discern" + } + ] + }, + { + "surface": "प्रतिष्ठिता", + "isMarker": false, + "gloss": "standing, stationed, placed", + "lemmas": [ + "pratizWita" + ], + "pieces": [ + { + "slp": "pratizWitA", + "stem": "pratizWita", + "gloss": "standing, stationed, placed" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६८॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "69a": { + "line": "या निशा सर्वभूतानां तस्यां जागर्ति संयमी ।", + "tokens": [ + { + "surface": "या", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "yA", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "निशा", + "isMarker": false, + "gloss": "night, GṛŚrS", + "lemmas": [ + "niSA" + ], + "pieces": [ + { + "slp": "niSA", + "stem": "niSA", + "gloss": "night, GṛŚrS" + } + ] + }, + { + "surface": "सर्वभूतानां", + "isMarker": false, + "gloss": "being everywhere", + "lemmas": [ + "sarvaBUta" + ], + "pieces": [ + { + "slp": "sarvaBUtAnAm", + "stem": "sarvaBUta", + "gloss": "being everywhere" + } + ] + }, + { + "surface": "तस्यां", + "isMarker": false, + "gloss": "that; he, she, it", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "tasyAm", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "जागर्ति", + "isMarker": false, + "gloss": "to be awake or watchful", + "lemmas": [ + "jAgf" + ], + "pieces": [ + { + "slp": "jAgarti", + "stem": "jAgf", + "gloss": "to be awake or watchful" + } + ] + }, + { + "surface": "संयमी", + "isMarker": false, + "gloss": "who or what restrains or curbs or subdues", + "lemmas": [ + "saMyamin" + ], + "pieces": [ + { + "slp": "saMyamI", + "stem": "saMyamin", + "gloss": "who or what restrains or curbs or subdues" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "69b": { + "line": "यस्यां जाग्रति भूतानि सा निशा पश्यतो मुनेः ॥२- ६९॥", + "tokens": [ + { + "surface": "यस्यां", + "isMarker": false, + "gloss": "who, which, what", + "lemmas": [ + "yad" + ], + "pieces": [ + { + "slp": "yasyAm", + "stem": "yad", + "gloss": "who, which, what" + } + ] + }, + { + "surface": "जाग्रति", + "isMarker": false, + "gloss": "to be awake or watchful", + "lemmas": [ + "jAgf" + ], + "pieces": [ + { + "slp": "jAgrati", + "stem": "jAgf", + "gloss": "to be awake or watchful" + } + ] + }, + { + "surface": "भूतानि", + "isMarker": false, + "gloss": "become, been, gone", + "lemmas": [ + "BUta" + ], + "pieces": [ + { + "slp": "BUtAni", + "stem": "BUta", + "gloss": "become, been, gone" + } + ] + }, + { + "surface": "सा", + "isMarker": false, + "gloss": "she", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "sA", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "निशा", + "isMarker": false, + "gloss": "night, GṛŚrS", + "lemmas": [ + "niSA" + ], + "pieces": [ + { + "slp": "niSA", + "stem": "niSA", + "gloss": "night, GṛŚrS" + } + ] + }, + { + "surface": "पश्यतो", + "isMarker": false, + "gloss": "to see, behold, look at", + "lemmas": [ + "paS" + ], + "pieces": [ + { + "slp": "paSyatas", + "stem": "paS", + "gloss": "to see, behold, look at" + } + ] + }, + { + "surface": "मुनेः", + "isMarker": false, + "gloss": "sage, silent one", + "lemmas": [ + "muni" + ], + "pieces": [ + { + "slp": "muneH", + "stem": "muni", + "gloss": "sage, silent one", + "override": true + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "६९॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "70a": { + "line": "आपूर्यमाणमचलप्रतिष्ठं समुद्रमापः प्रविशन्ति यद्वत् ।", + "tokens": [ + { + "surface": "आपूर्यमाणमचलप्रतिष्ठं", + "isMarker": false, + "gloss": "becoming full, increasing + not moving, immovable + standing firmly, steadfast", + "lemmas": [ + "ApUryamARa", + "acala", + "pratizWa" + ], + "pieces": [ + { + "slp": "ApUryamARam", + "stem": "ApUryamARa", + "gloss": "becoming full, increasing" + }, + { + "slp": "acala", + "stem": "acala", + "gloss": "not moving, immovable" + }, + { + "slp": "pratizWam", + "stem": "pratizWa", + "gloss": "standing firmly, steadfast" + } + ] + }, + { + "surface": "समुद्रमापः", + "isMarker": false, + "gloss": "N. of two plants + to reach, overtake, meet with", + "lemmas": [ + "samudra", + "Ap" + ], + "pieces": [ + { + "slp": "samudram", + "stem": "samudra", + "gloss": "N. of two plants" + }, + { + "slp": "Apas", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "प्रविशन्ति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "pra", + "viS" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "viSanti", + "stem": "viS", + "gloss": "to go, Dhātup. xvii, 71 ← viS cl. 6. P. viSati" + } + ] + }, + { + "surface": "यद्वत्", + "isMarker": false, + "gloss": "in which way, as", + "lemmas": [ + "yadvat" + ], + "pieces": [ + { + "slp": "yadvat", + "stem": "yadvat", + "gloss": "in which way, as" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "70b": { + "line": "तद्वत्कामा यं प्रविशन्ति सर्वे स शान्तिमाप्नोति न कामकामी ॥२- ७०॥", + "tokens": [ + { + "surface": "तद्वत्कामा", + "isMarker": false, + "gloss": "having or containing that + wish, desire, longing", + "lemmas": [ + "tadvat", + "kAma" + ], + "pieces": [ + { + "slp": "tadvat", + "stem": "tadvat", + "gloss": "having or containing that" + }, + { + "slp": "kAmA", + "stem": "kAma", + "gloss": "wish, desire, longing" + } + ] + }, + { + "surface": "यं", + "isMarker": false, + "gloss": "going", + "lemmas": [ + "ya" + ], + "pieces": [ + { + "slp": "yam", + "stem": "ya", + "gloss": "going" + } + ] + }, + { + "surface": "प्रविशन्ति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "pra", + "viS" + ], + "pieces": [ + { + "slp": "pra", + "stem": "pra", + "gloss": "before" + }, + { + "slp": "viSanti", + "stem": "viS", + "gloss": "to go, Dhātup. xvii, 71 ← viS cl. 6. P. viSati" + } + ] + }, + { + "surface": "सर्वे", + "isMarker": false, + "gloss": "all, every", + "lemmas": [ + "sarva" + ], + "pieces": [ + { + "slp": "sarve", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "स", + "isMarker": false, + "gloss": "he", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "sa", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "शान्तिमाप्नोति", + "isMarker": false, + "gloss": "tranquillity, peace, quiet + to reach, overtake, meet with", + "lemmas": [ + "SAnti", + "Ap" + ], + "pieces": [ + { + "slp": "SAntim", + "stem": "SAnti", + "gloss": "tranquillity, peace, quiet" + }, + { + "slp": "Apnoti", + "stem": "Ap", + "gloss": "to reach, overtake, meet with" + } + ] + }, + { + "surface": "न", + "isMarker": false, + "gloss": "not", + "lemmas": [ + "na" + ], + "pieces": [ + { + "slp": "na", + "stem": "na", + "gloss": "not", + "override": true + } + ] + }, + { + "surface": "कामकामी", + "isMarker": false, + "gloss": "wish, desire, longing + desirous, longing after", + "lemmas": [ + "kAma", + "kAmin" + ], + "pieces": [ + { + "slp": "kAma", + "stem": "kAma", + "gloss": "wish, desire, longing" + }, + { + "slp": "kAmI", + "stem": "kAmin", + "gloss": "desirous, longing after" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "७०॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "71a": { + "line": "विहाय कामान्यः सर्वान् पुमांश्चरति निःस्पृहः ।", + "tokens": [ + { + "surface": "विहाय", + "isMarker": false, + "gloss": "leaving behind i.e. at a distance from", + "lemmas": [ + "vihAya" + ], + "pieces": [ + { + "slp": "vihAya", + "stem": "vihAya", + "gloss": "leaving behind i.e. at a distance from" + } + ] + }, + { + "surface": "कामान्यः", + "isMarker": false, + "gloss": "", + "lemmas": [ + "ka", + "AmAna" + ], + "pieces": [ + { + "slp": "ka", + "stem": "ka", + "gloss": "ka as, m. N. of Prajāpati or of a Prajāpati, VS. xx" + }, + { + "slp": "AmAnyas", + "stem": "AmAna", + "gloss": "" + } + ] + }, + { + "surface": "सर्वान्", + "isMarker": false, + "gloss": "all, every", + "lemmas": [ + "sarva" + ], + "pieces": [ + { + "slp": "sarvAn", + "stem": "sarva", + "gloss": "all, every", + "override": true + } + ] + }, + { + "surface": "पुमांश्चरति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "puMs", + "car" + ], + "pieces": [ + { + "slp": "pumAn", + "stem": "puMs", + "gloss": "to crush, grind, Dhātup. xxxii" + }, + { + "slp": "carati", + "stem": "car", + "gloss": "to move one's self, go, walk" + } + ] + }, + { + "surface": "निःस्पृहः", + "isMarker": false, + "gloss": "free from desire, not longing for, abstaining from", + "lemmas": [ + "niHspfha" + ], + "pieces": [ + { + "slp": "niHspfhaH", + "stem": "niHspfha", + "gloss": "free from desire, not longing for, abstaining from" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "71b": { + "line": "निर्ममो निरहंकारः स शान्तिमधिगच्छति ॥२- ७१॥", + "tokens": [ + { + "surface": "निर्ममो", + "isMarker": false, + "gloss": "unselfish, disinterested, free from all worldly connections", + "lemmas": [ + "nirmama" + ], + "pieces": [ + { + "slp": "nirmamas", + "stem": "nirmama", + "gloss": "unselfish, disinterested, free from all worldly connections" + } + ] + }, + { + "surface": "निरहंकारः", + "isMarker": false, + "gloss": "free from egotism, unselfish, humble", + "lemmas": [ + "nirahaMkAra" + ], + "pieces": [ + { + "slp": "nirahaMkAraH", + "stem": "nirahaMkAra", + "gloss": "free from egotism, unselfish, humble" + } + ] + }, + { + "surface": "स", + "isMarker": false, + "gloss": "he", + "lemmas": [ + "tad" + ], + "pieces": [ + { + "slp": "sa", + "stem": "tad", + "gloss": "that; he, she, it", + "override": true + } + ] + }, + { + "surface": "शान्तिमधिगच्छति", + "isMarker": false, + "gloss": "tranquillity, peace, quiet + aDi m, anxiety + to go, move, go away", + "lemmas": [ + "SAnti", + "aDi", + "gam" + ], + "pieces": [ + { + "slp": "SAntim", + "stem": "SAnti", + "gloss": "tranquillity, peace, quiet" + }, + { + "slp": "aDi", + "stem": "aDi", + "gloss": "aDi m, anxiety" + }, + { + "slp": "gacCati", + "stem": "gam", + "gloss": "to go, move, go away" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "७१॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "72a": { + "line": "एषा ब्राह्मी स्थितिः पार्थ नैनां प्राप्य विमुह्यति ।", + "tokens": [ + { + "surface": "एषा", + "isMarker": false, + "gloss": "this", + "lemmas": [ + "eza" + ], + "pieces": [ + { + "slp": "ezA", + "stem": "eza", + "gloss": "gliding, running, hastening" + } + ] + }, + { + "surface": "ब्राह्मी", + "isMarker": false, + "gloss": "relating to Brahmă or Brahmā, holy, sacred", + "lemmas": [ + "brAhma" + ], + "pieces": [ + { + "slp": "brAhmI", + "stem": "brAhma", + "gloss": "relating to Brahmă or Brahmā, holy, sacred" + } + ] + }, + { + "surface": "स्थितिः", + "isMarker": false, + "gloss": "standing upright or firmly, not falling", + "lemmas": [ + "sTiti" + ], + "pieces": [ + { + "slp": "sTitiH", + "stem": "sTiti", + "gloss": "standing upright or firmly, not falling" + } + ] + }, + { + "surface": "पार्थ", + "isMarker": false, + "gloss": "O son of Pṛthā — Arjuna", + "lemmas": [ + "pArTa" + ], + "pieces": [ + { + "slp": "pArTa", + "stem": "pArTa", + "gloss": "O son of Pṛthā — Arjuna", + "override": true + } + ] + }, + { + "surface": "नैनां", + "isMarker": false, + "gloss": "thin, spare + ena a pronom. base, he, she", + "lemmas": [ + "nA", + "ena" + ], + "pieces": [ + { + "slp": "nA", + "stem": "nA", + "gloss": "thin, spare" + }, + { + "slp": "enAm", + "stem": "ena", + "gloss": "ena a pronom. base, he, she" + } + ] + }, + { + "surface": "प्राप्य", + "isMarker": false, + "gloss": "to be reached, attainable, acquirable", + "lemmas": [ + "prApya" + ], + "pieces": [ + { + "slp": "prApya", + "stem": "prApya", + "gloss": "to be reached, attainable, acquirable" + } + ] + }, + { + "surface": "विमुह्यति", + "isMarker": false, + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to become stupefied or unconscious, be bewildered or perplexed, err", + "lemmas": [ + "vI", + "muh" + ], + "pieces": [ + { + "slp": "vi", + "stem": "vI", + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV" + }, + { + "slp": "muhyati", + "stem": "muh", + "gloss": "to become stupefied or unconscious, be bewildered or perplexed, err" + } + ] + }, + { + "surface": "।", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + }, + "72b": { + "line": "स्थित्वास्यामन्तकालेऽपि ब्रह्मनिर्वाणमृच्छति ॥२- ७२॥", + "tokens": [ + { + "surface": "स्थित्वास्यामन्तकालेऽपि", + "isMarker": false, + "gloss": "", + "lemmas": [ + "sTA", + "as", + "antaka", + "lepin" + ], + "pieces": [ + { + "slp": "sTitvA", + "stem": "sTA", + "gloss": "to stand, stand firmly, station one's self" + }, + { + "slp": "syAm", + "stem": "as", + "gloss": "to be, live, exist" + }, + { + "slp": "antakAs", + "stem": "antaka", + "gloss": "border, boundary" + }, + { + "slp": "lepi", + "stem": "lepin", + "gloss": "besmearing or covering" + } + ] + }, + { + "surface": "ब्रह्मनिर्वाणमृच्छति", + "isMarker": false, + "gloss": "", + "lemmas": [ + "brahmanirvARa", + "f" + ], + "pieces": [ + { + "slp": "brahmanirvARam", + "stem": "brahmanirvARa", + "gloss": "extinction in Brahmă, absorption into the one self-existent Spirit" + }, + { + "slp": "fcCati", + "stem": "f", + "gloss": "f the seventh vowel of the Sanskṛt alphabet and peculiar to it" + } + ] + }, + { + "surface": "॥२-", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + }, + { + "surface": "७२॥", + "isMarker": true, + "gloss": "", + "lemmas": [], + "pieces": [] + } + ] + } + } +} \ No newline at end of file diff --git a/data/gita/chapter2-tier1.ts b/data/gita/chapter2-tier1.ts new file mode 100644 index 0000000..573ad41 --- /dev/null +++ b/data/gita/chapter2-tier1.ts @@ -0,0 +1,22215 @@ +/** + * GENERATED — do not edit. Rebuild: + * python scripts/gita/fetch_padaccheda_gloss.py 2 # padaccheda + MW glosses + * npx tsx scripts/gita/build-tier1.ts 2 # romanize + AlignSegment[] + * + * Bhagavad Gītā chapter 2, TIER-1 (free, dictionary-grounded word layer): + * written Devanāgarī + per-akshara IAST (deterministic romanizer) + Monier- + * Williams head-glosses on hover. units: [] — NO alignment threads (the Tier-2 + * curation layer is deferred). Mūla: sa.wikisource (PD). Glosses: MW (PD). + */ +import type { AlignSegment } from '../../types/liturgyAlign'; + +export const GITA_CHAPTER2_TIER1: AlignSegment[] = [ + { + "id": "bg2t1-1s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सञ्जय", + "units": [], + "pronunciation": "sañjaya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ञ्ज", + "pronunciation": "ñja", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "Sañjaya" + }, + { + "text": "उवाच", + "units": [], + "pronunciation": "uvāca", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + { + "id": "bg2t1-1a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तं", + "units": [], + "pronunciation": "taṃ", + "segments": [ + { + "text": "तं", + "pronunciation": "taṃ", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "तथा", + "units": [], + "pronunciation": "tathā", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + } + ], + "gloss": "so, in that way" + }, + { + "text": "कृपयाविष्टमश्रुपूर्णाकुलेक्षणम्", + "units": [], + "pronunciation": "kṛpayāviṣṭamaśrupūrṇākulekṣaṇam", + "segments": [ + { + "text": "कृ", + "pronunciation": "kṛ", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष्ट", + "pronunciation": "ṣṭa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "श्रु", + "pronunciation": "śru", + "akshara": true + }, + { + "text": "पू", + "pronunciation": "pū", + "akshara": true + }, + { + "text": "र्णा", + "pronunciation": "rṇā", + "akshara": true + }, + { + "text": "कु", + "pronunciation": "ku", + "akshara": true + }, + { + "text": "ले", + "pronunciation": "le", + "akshara": true + }, + { + "text": "क्ष", + "pronunciation": "kṣa", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "note": "padaccheda: kfpA (N. of a man, RV. viii, 3) + Avizwa (entered) + aSrupUrRa (filled with tears) + akulA (not of good family, low) + kzaRa (any instantaneous point of time, instant, twinkling of an eye)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-1b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "विषीदन्तमिदं", + "units": [], + "pronunciation": "viṣīdantamidaṃ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "षी", + "pronunciation": "ṣī", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "note": "padaccheda: vizin (poisoned, Pañcar) + id (Ved. even, just, only) + antama (next, nearest) + da (id)" + }, + { + "text": "वाक्यमुवाच", + "units": [], + "pronunciation": "vākyamuvāca", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "क्य", + "pronunciation": "kya", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "note": "padaccheda: vAkya (&c. See p. 936, col. 2) + vac (to speak, say, tell)" + }, + { + "text": "मधुसूदनः", + "units": [], + "pronunciation": "madhusūdanaḥ", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "धु", + "pronunciation": "dhu", + "akshara": true + }, + { + "text": "सू", + "pronunciation": "sū", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "‘destroyer of honey’, a bee" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.1 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१॥", + "units": [], + "gloss": "verse 2.1 ends", + "segments": [ + { + "text": "१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-2s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "श्रीभगवानुवाच", + "units": [], + "pronunciation": "śrībhagavānuvāca", + "segments": [ + { + "text": "श्री", + "pronunciation": "śrī", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "note": "padaccheda: SrI (to mix, mingle, cook) + Bagavat (the Blessed One) + vac (to speak, say, tell)" + } + ] + } + ] + }, + { + "id": "bg2t1-2a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कुतस्त्वा", + "units": [], + "pronunciation": "kutastvā", + "segments": [ + { + "text": "कु", + "pronunciation": "ku", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्त्वा", + "pronunciation": "stvā", + "akshara": true + } + ], + "note": "padaccheda: kutas (from whom?, RV. i, 164) + yuzmad (the base of the 2nd pers. pron. as used in comp)" + }, + { + "text": "कश्मलमिदं", + "units": [], + "pronunciation": "kaśmalamidaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "श्म", + "pronunciation": "śma", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "note": "padaccheda: kaSmala (foul, dirty, impure) + ayam (this one. See idam)" + }, + { + "text": "विषमे", + "units": [], + "pronunciation": "viṣame", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "मे", + "pronunciation": "me", + "akshara": true + } + ], + "gloss": "uneven, rugged, rough" + }, + { + "text": "समुपस्थितम्", + "units": [], + "pronunciation": "samupasthitam", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "approximated, approached, come to" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-2b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अनार्यजुष्टमस्वर्ग्यमकीर्तिकरमर्जुन", + "units": [], + "pronunciation": "anāryajuṣṭamasvargyamakīrtikaramarjuna", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "जु", + "pronunciation": "ju", + "akshara": true + }, + { + "text": "ष्ट", + "pronunciation": "ṣṭa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "र्ग्य", + "pronunciation": "rgya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "की", + "pronunciation": "kī", + "akshara": true + }, + { + "text": "र्ति", + "pronunciation": "rti", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्जु", + "pronunciation": "rju", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "note": "padaccheda: anAryajuzwa (practised, observed, or possessed by non-Āryas) + asvargya (not leading to heaven, ŚBr. x) + akIrtikara (causing disgrace, disparaging, insulting) + arjuna (Arjuna)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.2 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२॥", + "units": [], + "gloss": "verse 2.2 ends", + "segments": [ + { + "text": "२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-3a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "क्लैब्यं", + "units": [], + "pronunciation": "klaibyaṃ", + "segments": [ + { + "text": "क्लै", + "pronunciation": "klai", + "akshara": true + }, + { + "text": "ब्यं", + "pronunciation": "byaṃ", + "akshara": true + } + ], + "gloss": "impotence, TS. ii" + }, + { + "text": "मा", + "units": [], + "pronunciation": "mā", + "segments": [ + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + } + ], + "gloss": "do not" + }, + { + "text": "स्म", + "units": [], + "pronunciation": "sma", + "segments": [ + { + "text": "स्म", + "pronunciation": "sma", + "akshara": true + } + ] + }, + { + "text": "गमः", + "units": [], + "pronunciation": "gamaḥ", + "segments": [ + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "मः", + "pronunciation": "maḥ", + "akshara": true + } + ], + "gloss": "to go, move, go away" + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "नैतत्त्वय्युपपद्यते", + "units": [], + "pronunciation": "naitattvayyupapadyate", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "त्त्व", + "pronunciation": "ttva", + "akshara": true + }, + { + "text": "य्यु", + "pronunciation": "yyu", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: nA (thin, spare) + etad (this) + yuzmad (the base of the 2nd pers. pron. as used in comp) + upa (towards, near to, by the side of) + pad (to stand fast or fixed, Dhātup. iii, 1)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-3b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "क्षुद्रं", + "units": [], + "pronunciation": "kṣudraṃ", + "segments": [ + { + "text": "क्षु", + "pronunciation": "kṣu", + "akshara": true + }, + { + "text": "द्रं", + "pronunciation": "draṃ", + "akshara": true + } + ], + "gloss": "minute, diminutive, tiny" + }, + { + "text": "हृदयदौर्बल्यं", + "units": [], + "pronunciation": "hṛdayadaurbalyaṃ", + "segments": [ + { + "text": "हृ", + "pronunciation": "hṛ", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दौ", + "pronunciation": "dau", + "akshara": true + }, + { + "text": "र्ब", + "pronunciation": "rba", + "akshara": true + }, + { + "text": "ल्यं", + "pronunciation": "lyaṃ", + "akshara": true + } + ] + }, + { + "text": "त्यक्त्वोत्तिष्ठ", + "units": [], + "pronunciation": "tyaktvottiṣṭha", + "segments": [ + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "क्त्वो", + "pronunciation": "ktvo", + "akshara": true + }, + { + "text": "त्ति", + "pronunciation": "tti", + "akshara": true + }, + { + "text": "ष्ठ", + "pronunciation": "ṣṭha", + "akshara": true + } + ], + "gloss": "to leave, abandon, quit + a particle of doubt or deliberation + to stand, stand firmly, station one's self", + "note": "padaccheda: tyaj (to leave, abandon, quit) + ut (a particle of doubt or deliberation) + sTA (to stand, stand firmly, station one's self)" + }, + { + "text": "परन्तप", + "units": [], + "pronunciation": "parantapa", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + } + ], + "note": "padaccheda: para (far, distant, remote) + tap (to rule, Dhātup. xxvi, 50)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.3 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३॥", + "units": [], + "gloss": "verse 2.3 ends", + "segments": [ + { + "text": "३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-4s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अर्जुन", + "units": [], + "pronunciation": "arjuna", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "र्जु", + "pronunciation": "rju", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "Arjuna" + }, + { + "text": "उवाच", + "units": [], + "pronunciation": "uvāca", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + { + "id": "bg2t1-4a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कथं", + "units": [], + "pronunciation": "kathaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "थं", + "pronunciation": "thaṃ", + "akshara": true + } + ], + "gloss": "how? in what manner? whence?" + }, + { + "text": "भीष्ममहं", + "units": [], + "pronunciation": "bhīṣmamahaṃ", + "segments": [ + { + "text": "भी", + "pronunciation": "bhī", + "akshara": true + }, + { + "text": "ष्म", + "pronunciation": "ṣma", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "हं", + "pronunciation": "haṃ", + "akshara": true + } + ], + "gloss": "terrible, dreadful, ŚBr. &c. &c + base of the first person pl, as used in comp", + "note": "padaccheda: BIzma (terrible, dreadful, ŚBr. &c. &c) + asmad (base of the first person pl, as used in comp)" + }, + { + "text": "संख्ये", + "units": [], + "pronunciation": "saṃkhye", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "ख्ये", + "pronunciation": "khye", + "akshara": true + } + ], + "gloss": "to reckon or count up, sum up, enumerate" + }, + { + "text": "द्रोणं", + "units": [], + "pronunciation": "droṇaṃ", + "segments": [ + { + "text": "द्रो", + "pronunciation": "dro", + "akshara": true + }, + { + "text": "णं", + "pronunciation": "ṇaṃ", + "akshara": true + } + ], + "gloss": "a wooden vessel, bucket, trough &c" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "मधुसूदन", + "units": [], + "pronunciation": "madhusūdana", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "धु", + "pronunciation": "dhu", + "akshara": true + }, + { + "text": "सू", + "pronunciation": "sū", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "‘destroyer of honey’, a bee" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-4b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "इषुभिः", + "units": [], + "pronunciation": "iṣubhiḥ", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "षु", + "pronunciation": "ṣu", + "akshara": true + }, + { + "text": "भिः", + "pronunciation": "bhiḥ", + "akshara": true + } + ], + "gloss": "an arrow" + }, + { + "text": "प्रति", + "units": [], + "pronunciation": "prati", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "towards, near to" + }, + { + "text": "योत्स्यामि", + "units": [], + "pronunciation": "yotsyāmi", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "त्स्या", + "pronunciation": "tsyā", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + } + ], + "gloss": "to fight, wage war, oppose or overcome in battle" + }, + { + "text": "पूजार्हावरिसूदन", + "units": [], + "pronunciation": "pūjārhāvarisūdana", + "segments": [ + { + "text": "पू", + "pronunciation": "pū", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "र्हा", + "pronunciation": "rhā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "सू", + "pronunciation": "sū", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "worthy of reverence or honour, venerable, respectable + destroyer of foes", + "note": "padaccheda: pUjArha (worthy of reverence or honour, venerable, respectable) + arisUdana (destroyer of foes)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.4 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४॥", + "units": [], + "gloss": "verse 2.4 ends", + "segments": [ + { + "text": "४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-5a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "गुरूनहत्वा", + "units": [], + "pronunciation": "gurūnahatvā", + "segments": [ + { + "text": "गु", + "pronunciation": "gu", + "akshara": true + }, + { + "text": "रू", + "pronunciation": "rū", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "heavy, weighty, RV. i + to laugh, smile, laugh at + or", + "note": "padaccheda: guru (heavy, weighty, RV. i) + has (to laugh, smile, laugh at) + vA (or)" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "महानुभावान्", + "units": [], + "pronunciation": "mahānubhāvān", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "of great might, mighty" + }, + { + "text": "श्रेयो", + "units": [], + "pronunciation": "śreyo", + "segments": [ + { + "text": "श्रे", + "pronunciation": "śre", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + } + ], + "gloss": "more splendid or beautiful, more excellent or distinguished, superior" + }, + { + "text": "भोक्तुं", + "units": [], + "pronunciation": "bhoktuṃ", + "segments": [ + { + "text": "भो", + "pronunciation": "bho", + "akshara": true + }, + { + "text": "क्तुं", + "pronunciation": "ktuṃ", + "akshara": true + } + ], + "gloss": "Ba aspirate of ba + tinge, ray, light", + "note": "padaccheda: Ba (Ba aspirate of ba) + aktu (tinge, ray, light)" + }, + { + "text": "भैक्ष्यमपीह", + "units": [], + "pronunciation": "bhaikṣyamapīha", + "segments": [ + { + "text": "भै", + "pronunciation": "bhai", + "akshara": true + }, + { + "text": "क्ष्य", + "pronunciation": "kṣya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "पी", + "pronunciation": "pī", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + } + ], + "gloss": "w.r. for BEkza + also, even + attempt", + "note": "padaccheda: BEkzya (w.r. for BEkza) + api (also, even) + Iha (attempt)" + }, + { + "text": "लोके", + "units": [], + "pronunciation": "loke", + "segments": [ + { + "text": "लो", + "pronunciation": "lo", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + } + ], + "gloss": "to see, behold, perceive : Caus. or cl. 10. lokayati id" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-5b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "हत्वार्थकामांस्तु", + "units": [], + "pronunciation": "hatvārthakāmāṃstu", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मां", + "pronunciation": "māṃ", + "akshara": true + }, + { + "text": "स्तु", + "pronunciation": "stu", + "akshara": true + } + ], + "gloss": "to strike, beat, pound + du. m. pl. utility and desire, wealth and pleasure + but", + "note": "padaccheda: han (to strike, beat, pound) + arTakAma (du. m. pl. utility and desire, wealth and pleasure) + tu (but)" + }, + { + "text": "गुरूनिहैव", + "units": [], + "pronunciation": "gurūnihaiva", + "segments": [ + { + "text": "गु", + "pronunciation": "gu", + "akshara": true + }, + { + "text": "रू", + "pronunciation": "rū", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "है", + "pronunciation": "hai", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "heavy, weighty, RV. i + to strike, beat, pound + just, only", + "note": "padaccheda: guru (heavy, weighty, RV. i) + han (to strike, beat, pound) + eva (just, only)" + }, + { + "text": "भुञ्जीय", + "units": [], + "pronunciation": "bhuñjīya", + "segments": [ + { + "text": "भु", + "pronunciation": "bhu", + "akshara": true + }, + { + "text": "ञ्जी", + "pronunciation": "ñjī", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "to bend, curve" + }, + { + "text": "भोगान्", + "units": [], + "pronunciation": "bhogān", + "segments": [ + { + "text": "भो", + "pronunciation": "bho", + "akshara": true + }, + { + "text": "गा", + "pronunciation": "gā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "any winding or curve, coil, RV. &c. &c" + }, + { + "text": "रुधिरप्रदिग्धान्", + "units": [], + "pronunciation": "rudhirapradigdhān", + "segments": [ + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "दि", + "pronunciation": "di", + "akshara": true + }, + { + "text": "ग्धा", + "pronunciation": "gdhā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "besmeared with blood" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.5 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५॥", + "units": [], + "gloss": "verse 2.5 ends", + "segments": [ + { + "text": "५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-6a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चैतद्विद्मः", + "units": [], + "pronunciation": "caitadvidmaḥ", + "segments": [ + { + "text": "चै", + "pronunciation": "cai", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "द्वि", + "pronunciation": "dvi", + "akshara": true + }, + { + "text": "द्मः", + "pronunciation": "dmaḥ", + "akshara": true + } + ], + "gloss": "and + this + to know, understand, perceive", + "note": "padaccheda: ca (and) + etad (this) + vid (to know, understand, perceive)" + }, + { + "text": "कतरन्नो", + "units": [], + "pronunciation": "kataranno", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "न्नो", + "pronunciation": "nno", + "akshara": true + } + ], + "gloss": "mfn, who or which of two? whether of two? Analogously to katama above katara may occasionally be used to express ‘who or which of many?’, and may optionally be compounded with the word to which it refers + a man, hero, person", + "note": "padaccheda: katara (mfn, who or which of two? whether of two? Analogously to katama above katara may occasionally be used to express ‘who or which of many?’, and may optionally be compounded with the word to which it refers) + nf (a man, hero, person)" + }, + { + "text": "गरीयो", + "units": [], + "pronunciation": "garīyo", + "segments": [ + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "री", + "pronunciation": "rī", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + } + ], + "gloss": "heavier" + }, + { + "text": "यद्वा", + "units": [], + "pronunciation": "yadvā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "द्वा", + "pronunciation": "dvā", + "akshara": true + } + ], + "note": "padaccheda: ya (going) + dva (original stem of dvi, q.v. two, RV. &c. &c)" + }, + { + "text": "जयेम", + "units": [], + "pronunciation": "jayema", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "ये", + "pronunciation": "ye", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + } + ], + "gloss": "to win or acquire, conquer, vanquish" + }, + { + "text": "यदि", + "units": [], + "pronunciation": "yadi", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दि", + "pronunciation": "di", + "akshara": true + } + ], + "gloss": "if, in case that, RV. &c. &c. In the earlier language yadi may be joined with Indic. Subj. or Leṭ Pot" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "नो", + "units": [], + "pronunciation": "no", + "segments": [ + { + "text": "नो", + "pronunciation": "no", + "akshara": true + } + ] + }, + { + "text": "जयेयुः", + "units": [], + "pronunciation": "jayeyuḥ", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "ये", + "pronunciation": "ye", + "akshara": true + }, + { + "text": "युः", + "pronunciation": "yuḥ", + "akshara": true + } + ], + "gloss": "to win or acquire, conquer, vanquish" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-6b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यानेव", + "units": [], + "pronunciation": "yāneva", + "segments": [ + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "ने", + "pronunciation": "ne", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "going + otherwise, AV. xvi, 7", + "note": "padaccheda: ya (going) + aneva (otherwise, AV. xvi, 7)" + }, + { + "text": "हत्वा", + "units": [], + "pronunciation": "hatvā", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "जिजीविषाम-", + "units": [], + "pronunciation": "jijīviṣāma", + "segments": [ + { + "text": "जि", + "pronunciation": "ji", + "akshara": true + }, + { + "text": "जी", + "pronunciation": "jī", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "षा", + "pronunciation": "ṣā", + "akshara": true + }, + { + "text": "म-", + "pronunciation": "ma", + "akshara": true + } + ], + "gloss": "to live, be or remain alive, RV. &c" + }, + { + "text": "स्तेऽवस्थिताः", + "units": [], + "pronunciation": "stevasthitāḥ", + "segments": [ + { + "text": "स्तेऽ", + "pronunciation": "ste", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "ताः", + "pronunciation": "tāḥ", + "akshara": true + } + ], + "gloss": "to be, live, exist + standing near, placed, having its place or abode", + "note": "padaccheda: as (to be, live, exist) + avasTita (standing near, placed, having its place or abode)" + }, + { + "text": "प्रमुखे", + "units": [], + "pronunciation": "pramukhe", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "खे", + "pronunciation": "khe", + "akshara": true + } + ], + "gloss": "turning the face towards, facing" + }, + { + "text": "धार्तराष्ट्राः", + "units": [], + "pronunciation": "dhārtarāṣṭrāḥ", + "segments": [ + { + "text": "धा", + "pronunciation": "dhā", + "akshara": true + }, + { + "text": "र्त", + "pronunciation": "rta", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "ष्ट्राः", + "pronunciation": "ṣṭrāḥ", + "akshara": true + } + ], + "gloss": "belonging to Dhṛtarāṣṭra" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.6 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६॥", + "units": [], + "gloss": "verse 2.6 ends", + "segments": [ + { + "text": "६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-7a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कार्पण्यदोषोपहतस्वभावः", + "units": [], + "pronunciation": "kārpaṇyadoṣopahatasvabhāvaḥ", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "र्प", + "pronunciation": "rpa", + "akshara": true + }, + { + "text": "ण्य", + "pronunciation": "ṇya", + "akshara": true + }, + { + "text": "दो", + "pronunciation": "do", + "akshara": true + }, + { + "text": "षो", + "pronunciation": "ṣo", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "वः", + "pronunciation": "vaḥ", + "akshara": true + } + ], + "note": "padaccheda: kArpaRI (gladness) + adoza (faultless, guiltless) + apahata (destroyed, warded off, killed) + svaBAva (native place, Viṣṇ)" + }, + { + "text": "पृच्छामि", + "units": [], + "pronunciation": "pṛcchāmi", + "segments": [ + { + "text": "पृ", + "pronunciation": "pṛ", + "akshara": true + }, + { + "text": "च्छा", + "pronunciation": "cchā", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + } + ], + "gloss": "asking, questioning, question about + raw, uncooked", + "note": "padaccheda: pfcCA (asking, questioning, question about) + Ama (raw, uncooked)" + }, + { + "text": "त्वां", + "units": [], + "pronunciation": "tvāṃ", + "segments": [ + { + "text": "त्वां", + "pronunciation": "tvāṃ", + "akshara": true + } + ] + }, + { + "text": "धर्मसम्मूढचेताः", + "units": [], + "pronunciation": "dharmasammūḍhacetāḥ", + "segments": [ + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "म्मू", + "pronunciation": "mmū", + "akshara": true + }, + { + "text": "ढ", + "pronunciation": "ḍha", + "akshara": true + }, + { + "text": "चे", + "pronunciation": "ce", + "akshara": true + }, + { + "text": "ताः", + "pronunciation": "tāḥ", + "akshara": true + } + ], + "gloss": "bearer, supporter, arranger + troubled or infatuated in mind, Śāntiś", + "note": "padaccheda: Darman (bearer, supporter, arranger) + sammUQacetas (troubled or infatuated in mind, Śāntiś)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-7b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यच्छ्रेयः", + "units": [], + "pronunciation": "yacchreyaḥ", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "च्छ्रे", + "pronunciation": "cchre", + "akshara": true + }, + { + "text": "यः", + "pronunciation": "yaḥ", + "akshara": true + } + ], + "gloss": "who, which, what + more splendid or beautiful, more excellent or distinguished, superior", + "note": "padaccheda: yad (who, which, what) + Sreyas (more splendid or beautiful, more excellent or distinguished, superior)" + }, + { + "text": "स्यान्निश्चितं", + "units": [], + "pronunciation": "syānniścitaṃ", + "segments": [ + { + "text": "स्या", + "pronunciation": "syā", + "akshara": true + }, + { + "text": "न्नि", + "pronunciation": "nni", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "तं", + "pronunciation": "taṃ", + "akshara": true + } + ], + "gloss": "to be, live, exist + one who has come to a conclusion or formed a certain opinion, determined to, resolute upon", + "note": "padaccheda: as (to be, live, exist) + niScitam (one who has come to a conclusion or formed a certain opinion, determined to, resolute upon)" + }, + { + "text": "ब्रूहि", + "units": [], + "pronunciation": "brūhi", + "segments": [ + { + "text": "ब्रू", + "pronunciation": "brū", + "akshara": true + }, + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + }, + { + "text": "तन्मे", + "units": [], + "pronunciation": "tanme", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "न्मे", + "pronunciation": "nme", + "akshara": true + } + ], + "gloss": "that; he, she, it + base of the first person pl, as used in comp", + "note": "padaccheda: tad (that; he, she, it) + asmad (base of the first person pl, as used in comp)" + }, + { + "text": "शिष्यस्तेऽहं", + "units": [], + "pronunciation": "śiṣyastehaṃ", + "segments": [ + { + "text": "शि", + "pronunciation": "śi", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + }, + { + "text": "स्तेऽ", + "pronunciation": "ste", + "akshara": true + }, + { + "text": "हं", + "pronunciation": "haṃ", + "akshara": true + } + ], + "gloss": "&c. See 1. Sizwa p. 1076, col. 3, and p. 1077 + that; he, she, it + base of the first person pl, as used in comp", + "note": "padaccheda: Sizya (&c. See 1. Sizwa p. 1076, col. 3, and p. 1077) + tad (that; he, she, it) + asmad (base of the first person pl, as used in comp)" + }, + { + "text": "शाधि", + "units": [], + "pronunciation": "śādhi", + "segments": [ + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + } + ], + "gloss": "to chastise, correct, censure" + }, + { + "text": "मां", + "units": [], + "pronunciation": "māṃ", + "segments": [ + { + "text": "मां", + "pronunciation": "māṃ", + "akshara": true + } + ], + "gloss": "base of the first person pl, as used in comp" + }, + { + "text": "त्वां", + "units": [], + "pronunciation": "tvāṃ", + "segments": [ + { + "text": "त्वां", + "pronunciation": "tvāṃ", + "akshara": true + } + ] + }, + { + "text": "प्रपन्नम्", + "units": [], + "pronunciation": "prapannam", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "न्न", + "pronunciation": "nna", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "arrived at, come to, got into" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.7 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "७॥", + "units": [], + "gloss": "verse 2.7 ends", + "segments": [ + { + "text": "७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-8a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "प्रपश्यामि", + "units": [], + "pronunciation": "prapaśyāmi", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "श्या", + "pronunciation": "śyā", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + } + ], + "gloss": "before + to see, behold, look at", + "note": "padaccheda: pra (before) + paS (to see, behold, look at)" + }, + { + "text": "ममापनुद्याद्", + "units": [], + "pronunciation": "mamāpanudyād", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "द्या", + "pronunciation": "dyā", + "akshara": true + }, + { + "text": "द्", + "pronunciation": "d", + "akshara": true + } + ], + "gloss": "do not + removing driving away + afterwards, then", + "note": "padaccheda: mA (do not) + apanuda (removing driving away) + At (afterwards, then)" + }, + { + "text": "यच्छोकमुच्छोषणमिन्द्रियाणाम्", + "units": [], + "pronunciation": "yacchokamucchoṣaṇamindriyāṇām", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "च्छो", + "pronunciation": "ccho", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "च्छो", + "pronunciation": "ccho", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णा", + "pronunciation": "ṇā", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "note": "padaccheda: yad (who, which, what) + Soka (&c. See p. 1091, col. 1) + ucCozaRa (making dry, parching) + indriya (fit for or belonging to or agreeable to Indra)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-8b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अवाप्य", + "units": [], + "pronunciation": "avāpya", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "प्य", + "pronunciation": "pya", + "akshara": true + } + ], + "gloss": "p. having obtained, Ragh. iii, 33" + }, + { + "text": "भूमावसपत्नमृद्धं", + "units": [], + "pronunciation": "bhūmāvasapatnamṛddhaṃ", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "त्न", + "pronunciation": "tna", + "akshara": true + }, + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "द्धं", + "pronunciation": "ddhaṃ", + "akshara": true + } + ], + "gloss": "the earth, soil, ground + not a rival, AV. i, 19 + increased, thriving, prosperous", + "note": "padaccheda: BUmi (the earth, soil, ground) + asapatna (not a rival, AV. i, 19) + fdDa (increased, thriving, prosperous)" + }, + { + "text": "राज्यं", + "units": [], + "pronunciation": "rājyaṃ", + "segments": [ + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "ज्यं", + "pronunciation": "jyaṃ", + "akshara": true + } + ], + "gloss": "kingly, princely, royal" + }, + { + "text": "सुराणामपि", + "units": [], + "pronunciation": "surāṇāmapi", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "णा", + "pronunciation": "ṇā", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "gloss": "a god, divinity, deity + also, even", + "note": "padaccheda: surA (a god, divinity, deity) + api (also, even)" + }, + { + "text": "चाधिपत्यम्", + "units": [], + "pronunciation": "cādhipatyam", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "and + supremacy, sovereignty, power", + "note": "padaccheda: ca (and) + ADipatya (supremacy, sovereignty, power)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.8 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "८॥", + "units": [], + "gloss": "verse 2.8 ends", + "segments": [ + { + "text": "८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-9s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सञ्जय", + "units": [], + "pronunciation": "sañjaya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ञ्ज", + "pronunciation": "ñja", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "Sañjaya" + }, + { + "text": "उवाच", + "units": [], + "pronunciation": "uvāca", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + { + "id": "bg2t1-9a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "एवमुक्त्वा", + "units": [], + "pronunciation": "evamuktvā", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "क्त्वा", + "pronunciation": "ktvā", + "akshara": true + } + ], + "gloss": "thus, in this way, in such a manner + to speak, say, tell", + "note": "padaccheda: evam (thus, in this way, in such a manner) + vac (to speak, say, tell)" + }, + { + "text": "हृषीकेशं", + "units": [], + "pronunciation": "hṛṣīkeśaṃ", + "segments": [ + { + "text": "हृ", + "pronunciation": "hṛ", + "akshara": true + }, + { + "text": "षी", + "pronunciation": "ṣī", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + }, + { + "text": "शं", + "pronunciation": "śaṃ", + "akshara": true + } + ], + "gloss": "Hṛṣīkeśa — Kṛṣṇa" + }, + { + "text": "गुडाकेशः", + "units": [], + "pronunciation": "guḍākeśaḥ", + "segments": [ + { + "text": "गु", + "pronunciation": "gu", + "akshara": true + }, + { + "text": "डा", + "pronunciation": "ḍā", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + }, + { + "text": "शः", + "pronunciation": "śaḥ", + "akshara": true + } + ], + "gloss": "‘thick-haired’, the hero Arjuna, MBh. iii" + }, + { + "text": "परन्तप", + "units": [], + "pronunciation": "parantapa", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + } + ], + "note": "padaccheda: para (far, distant, remote) + tap (to rule, Dhātup. xxvi, 50)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-9b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "योत्स्य", + "units": [], + "pronunciation": "yotsya", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "त्स्य", + "pronunciation": "tsya", + "akshara": true + } + ], + "gloss": "going + coming from a well or fountain, AV. xix, 2", + "note": "padaccheda: ya (going) + utsya (coming from a well or fountain, AV. xix, 2)" + }, + { + "text": "इति", + "units": [], + "pronunciation": "iti", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "thus — close of speech" + }, + { + "text": "गोविन्दमुक्त्वा", + "units": [], + "pronunciation": "govindamuktvā", + "segments": [ + { + "text": "गो", + "pronunciation": "go", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "न्द", + "pronunciation": "nda", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "क्त्वा", + "pronunciation": "ktvā", + "akshara": true + } + ], + "gloss": "Govinda — Kṛṣṇa + to speak, say, tell", + "note": "padaccheda: govinda (Govinda — Kṛṣṇa) + vac (to speak, say, tell)" + }, + { + "text": "तूष्णीं", + "units": [], + "pronunciation": "tūṣṇīṃ", + "segments": [ + { + "text": "तू", + "pronunciation": "tū", + "akshara": true + }, + { + "text": "ष्णीं", + "pronunciation": "ṣṇīṃ", + "akshara": true + } + ], + "gloss": "silently, quietly, RV. ii" + }, + { + "text": "बभूव", + "units": [], + "pronunciation": "babhūva", + "segments": [ + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "ह", + "units": [], + "pronunciation": "ha", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + } + ] + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.9 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "९॥", + "units": [], + "gloss": "verse 2.9 ends", + "segments": [ + { + "text": "९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-10a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तमुवाच", + "units": [], + "pronunciation": "tamuvāca", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "that; he, she, it + to speak, say, tell", + "note": "padaccheda: tad (that; he, she, it) + vac (to speak, say, tell)" + }, + { + "text": "हृषीकेशः", + "units": [], + "pronunciation": "hṛṣīkeśaḥ", + "segments": [ + { + "text": "हृ", + "pronunciation": "hṛ", + "akshara": true + }, + { + "text": "षी", + "pronunciation": "ṣī", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + }, + { + "text": "शः", + "pronunciation": "śaḥ", + "akshara": true + } + ], + "gloss": "Hṛṣīkeśa — Kṛṣṇa" + }, + { + "text": "प्रहसन्निव", + "units": [], + "pronunciation": "prahasanniva", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "न्नि", + "pronunciation": "nni", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "laughing, smiling + like, as if", + "note": "padaccheda: prahasat (laughing, smiling) + iva (like, as if)" + }, + { + "text": "भारत", + "units": [], + "pronunciation": "bhārata", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "O descendant of Bharata" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-10b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सेनयोरुभयोर्मध्ये", + "units": [], + "pronunciation": "senayorubhayormadhye", + "segments": [ + { + "text": "से", + "pronunciation": "se", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "ध्ये", + "pronunciation": "dhye", + "akshara": true + } + ], + "gloss": "a missile, dart, spear + e, e mfn. du. both + middle", + "note": "padaccheda: senA (a missile, dart, spear) + uBa (e, e mfn. du. both) + maDya (middle)" + }, + { + "text": "विषीदन्तमिदं", + "units": [], + "pronunciation": "viṣīdantamidaṃ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "षी", + "pronunciation": "ṣī", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "note": "padaccheda: vizin (poisoned, Pañcar) + id (Ved. even, just, only) + antama (next, nearest) + da (id)" + }, + { + "text": "वचः", + "units": [], + "pronunciation": "vacaḥ", + "segments": [ + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "चः", + "pronunciation": "caḥ", + "akshara": true + } + ], + "gloss": "speech, voice, word" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.10 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१०॥", + "units": [], + "gloss": "verse 2.10 ends", + "segments": [ + { + "text": "१०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-11s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "श्रीभगवानुवाच", + "units": [], + "pronunciation": "śrībhagavānuvāca", + "segments": [ + { + "text": "श्री", + "pronunciation": "śrī", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "note": "padaccheda: SrI (to mix, mingle, cook) + Bagavat (the Blessed One) + vac (to speak, say, tell)" + } + ] + } + ] + }, + { + "id": "bg2t1-11a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अशोच्यानन्वशोचस्त्वं", + "units": [], + "pronunciation": "aśocyānanvaśocastvaṃ", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "च्या", + "pronunciation": "cyā", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "न्व", + "pronunciation": "nva", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "स्त्वं", + "pronunciation": "stvaṃ", + "akshara": true + } + ], + "note": "padaccheda: aSocya (id, MBh. &c) + anu (after, along, alongside) + Suc (to shine, flame, gleam) + yuzmad (the base of the 2nd pers. pron. as used in comp)" + }, + { + "text": "प्रज्ञावादांश्च", + "units": [], + "pronunciation": "prajñāvādāṃśca", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञा", + "pronunciation": "jñā", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "दां", + "pronunciation": "dāṃ", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + } + ], + "note": "padaccheda: prajYAvAda (a word of w˚) + ca (and)" + }, + { + "text": "भाषसे", + "units": [], + "pronunciation": "bhāṣase", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "से", + "pronunciation": "se", + "akshara": true + } + ], + "gloss": "to speak, talk, say" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-11b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "गतासूनगतासूंश्च", + "units": [], + "pronunciation": "gatāsūnagatāsūṃśca", + "segments": [ + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "सू", + "pronunciation": "sū", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "सूं", + "pronunciation": "sūṃ", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + } + ], + "gloss": "one whose breath has gone, expired, dead + not dead, alive + and", + "note": "padaccheda: gatAsu (one whose breath has gone, expired, dead) + agatAsu (not dead, alive) + ca (and)" + }, + { + "text": "नानुशोचन्ति", + "units": [], + "pronunciation": "nānuśocanti", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "note": "padaccheda: na (not) + u (u the fifth letter and third short vowel of the alphabet, pronounced as the u in full) + Suc (to shine, flame, gleam)" + }, + { + "text": "पण्डिताः", + "units": [], + "pronunciation": "paṇḍitāḥ", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "ण्डि", + "pronunciation": "ṇḍi", + "akshara": true + }, + { + "text": "ताः", + "pronunciation": "tāḥ", + "akshara": true + } + ], + "gloss": "learned, wise, shrewd" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.11 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "११॥", + "units": [], + "gloss": "verse 2.11 ends", + "segments": [ + { + "text": "११॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-12a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "त्वेवाहं", + "units": [], + "pronunciation": "tvevāhaṃ", + "segments": [ + { + "text": "त्वे", + "pronunciation": "tve", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "हं", + "pronunciation": "haṃ", + "akshara": true + } + ], + "gloss": "one, several + bearing, drawing, conveying", + "note": "padaccheda: tva (one, several) + vAha (bearing, drawing, conveying)" + }, + { + "text": "जातु", + "units": [], + "pronunciation": "jātu", + "segments": [ + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + } + ], + "gloss": "at all, ever, RV. x" + }, + { + "text": "नासं", + "units": [], + "pronunciation": "nāsaṃ", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + } + ], + "note": "padaccheda: nA (thin, spare) + sam (to be disturbed, Dhātup. xix, 82)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "त्वं", + "units": [], + "pronunciation": "tvaṃ", + "segments": [ + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ] + }, + { + "text": "नेमे", + "units": [], + "pronunciation": "neme", + "segments": [ + { + "text": "ने", + "pronunciation": "ne", + "akshara": true + }, + { + "text": "मे", + "pronunciation": "me", + "akshara": true + } + ], + "gloss": "one, several" + }, + { + "text": "जनाधिपाः", + "units": [], + "pronunciation": "janādhipāḥ", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "पाः", + "pronunciation": "pāḥ", + "akshara": true + } + ], + "gloss": "to generate, beget, produce + a ruler, commander, regent", + "note": "padaccheda: jan (to generate, beget, produce) + aDipa (a ruler, commander, regent)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-12b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चैव", + "units": [], + "pronunciation": "caiva", + "segments": [ + { + "text": "चै", + "pronunciation": "cai", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "and + just, only", + "note": "padaccheda: ca (and) + eva (just, only)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "भविष्यामः", + "units": [], + "pronunciation": "bhaviṣyāmaḥ", + "segments": [ + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष्या", + "pronunciation": "ṣyā", + "akshara": true + }, + { + "text": "मः", + "pronunciation": "maḥ", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "सर्वे", + "units": [], + "pronunciation": "sarve", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्वे", + "pronunciation": "rve", + "akshara": true + } + ], + "gloss": "all, every" + }, + { + "text": "वयमतः", + "units": [], + "pronunciation": "vayamataḥ", + "segments": [ + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "base of the first person pl, as used in comp + from this, than this", + "note": "padaccheda: asmad (base of the first person pl, as used in comp) + atas (from this, than this)" + }, + { + "text": "परम्", + "units": [], + "pronunciation": "param", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "far, distant, remote" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.12 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१२॥", + "units": [], + "gloss": "verse 2.12 ends", + "segments": [ + { + "text": "१२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-13a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "देहिनोऽस्मिन्यथा", + "units": [], + "pronunciation": "dehinosminyathā", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + }, + { + "text": "नोऽ", + "pronunciation": "no", + "akshara": true + }, + { + "text": "स्मि", + "pronunciation": "smi", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + } + ], + "note": "padaccheda: dehin (having a body, corporeal) + ayam (this one. See idam) + yaTA (as, just as)" + }, + { + "text": "देहे", + "units": [], + "pronunciation": "dehe", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हे", + "pronunciation": "he", + "akshara": true + } + ], + "gloss": "the body" + }, + { + "text": "कौमारं", + "units": [], + "pronunciation": "kaumāraṃ", + "segments": [ + { + "text": "कौ", + "pronunciation": "kau", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "gloss": "juvenile, youthful, belonging to a youth or young girl" + }, + { + "text": "यौवनं", + "units": [], + "pronunciation": "yauvanaṃ", + "segments": [ + { + "text": "यौ", + "pronunciation": "yau", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "youth, youthfulness, adolescence" + }, + { + "text": "जरा", + "units": [], + "pronunciation": "jarā", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + } + ] + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-13b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तथा", + "units": [], + "pronunciation": "tathā", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + } + ], + "gloss": "so, in that way" + }, + { + "text": "देहान्तरप्राप्तिर्धीरस्तत्र", + "units": [], + "pronunciation": "dehāntaraprāptirdhīrastatra", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "प्रा", + "pronunciation": "prā", + "akshara": true + }, + { + "text": "प्ति", + "pronunciation": "pti", + "akshara": true + }, + { + "text": "र्धी", + "pronunciation": "rdhī", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "त्र", + "pronunciation": "tra", + "akshara": true + } + ], + "note": "padaccheda: dehAntaraprApti (obtaining another b˚, transmigration id) + DIra (intelligent, wise, skilful) + tatra (used for the loc. of tad)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "मुह्यति", + "units": [], + "pronunciation": "muhyati", + "segments": [ + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "ह्य", + "pronunciation": "hya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to become stupefied or unconscious, be bewildered or perplexed, err" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.13 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१३॥", + "units": [], + "gloss": "verse 2.13 ends", + "segments": [ + { + "text": "१३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-14a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "मात्रास्पर्शास्तु", + "units": [], + "pronunciation": "mātrāsparśāstu", + "segments": [ + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "त्रा", + "pronunciation": "trā", + "akshara": true + }, + { + "text": "स्प", + "pronunciation": "spa", + "akshara": true + }, + { + "text": "र्शा", + "pronunciation": "rśā", + "akshara": true + }, + { + "text": "स्तु", + "pronunciation": "stu", + "akshara": true + } + ], + "gloss": "material contact, the concurrence of material elements + but", + "note": "padaccheda: mAtrAsparSa (material contact, the concurrence of material elements) + tu (but)" + }, + { + "text": "कौन्तेय", + "units": [], + "pronunciation": "kaunteya", + "segments": [ + { + "text": "कौ", + "pronunciation": "kau", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "O son of Kuntī — Arjuna" + }, + { + "text": "शीतोष्णसुखदुःखदाः", + "units": [], + "pronunciation": "śītoṣṇasukhaduḥkhadāḥ", + "segments": [ + { + "text": "शी", + "pronunciation": "śī", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + }, + { + "text": "ष्ण", + "pronunciation": "ṣṇa", + "akshara": true + }, + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "दाः", + "pronunciation": "dāḥ", + "akshara": true + } + ], + "gloss": "cold and hot, GṛŚrS + du. pleasure and pain, joy and sorrow, KauṣUp + id", + "note": "padaccheda: SItozRa (cold and hot, GṛŚrS) + suKaduHKa (du. pleasure and pain, joy and sorrow, KauṣUp) + da (id)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-14b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आगमापायिनोऽनित्यास्तांस्तितिक्षस्व", + "units": [], + "pronunciation": "āgamāpāyinonityāstāṃstitikṣasva", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "यि", + "pronunciation": "yi", + "akshara": true + }, + { + "text": "नोऽ", + "pronunciation": "no", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्या", + "pronunciation": "tyā", + "akshara": true + }, + { + "text": "स्तां", + "pronunciation": "stāṃ", + "akshara": true + }, + { + "text": "स्ति", + "pronunciation": "sti", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "क्ष", + "pronunciation": "kṣa", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + } + ], + "note": "padaccheda: AgamApAyin (‘coming and going’, transient, Bhag. ii) + Unita (lessened, reduced, fewer) + tad (that; he, she, it) + tij (to be or become sharp, RV. i, 55)" + }, + { + "text": "भारत", + "units": [], + "pronunciation": "bhārata", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "O descendant of Bharata" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.14 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१४॥", + "units": [], + "gloss": "verse 2.14 ends", + "segments": [ + { + "text": "१४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-15a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यं", + "units": [], + "pronunciation": "yaṃ", + "segments": [ + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "व्यथयन्त्येते", + "units": [], + "pronunciation": "vyathayantyete", + "segments": [ + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "थ", + "pronunciation": "tha", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "न्त्ये", + "pronunciation": "ntye", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to tremble, waver, go astray + this", + "note": "padaccheda: vyaT (to tremble, waver, go astray) + etad (this)" + }, + { + "text": "पुरुषं", + "units": [], + "pronunciation": "puruṣaṃ", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "षं", + "pronunciation": "ṣaṃ", + "akshara": true + } + ], + "gloss": "rarely f" + }, + { + "text": "पुरुषर्षभ", + "units": [], + "pronunciation": "puruṣarṣabha", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "र्ष", + "pronunciation": "rṣa", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + } + ], + "gloss": "rarely f + as, m, a bull", + "note": "padaccheda: puruza (rarely f) + fzaBa (as, m, a bull)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-15b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "समदुःखसुखं", + "units": [], + "pronunciation": "samaduḥkhasukhaṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "खं", + "pronunciation": "khaṃ", + "akshara": true + } + ] + }, + { + "text": "धीरं", + "units": [], + "pronunciation": "dhīraṃ", + "segments": [ + { + "text": "धी", + "pronunciation": "dhī", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "gloss": "intelligent, wise, skilful" + }, + { + "text": "सोऽमृतत्वाय", + "units": [], + "pronunciation": "somṛtatvāya", + "segments": [ + { + "text": "सोऽ", + "pronunciation": "so", + "akshara": true + }, + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "that; he, she, it + dead, deceased, death-like + one, several", + "note": "padaccheda: tad (that; he, she, it) + mfta (dead, deceased, death-like) + tva (one, several)" + }, + { + "text": "कल्पते", + "units": [], + "pronunciation": "kalpate", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "ल्प", + "pronunciation": "lpa", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to be well ordered or regulated, be well managed, succeed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.15 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१५॥", + "units": [], + "gloss": "verse 2.15 ends", + "segments": [ + { + "text": "१५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-16a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नासतो", + "units": [], + "pronunciation": "nāsato", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "not + to be, live, exist", + "note": "padaccheda: na (not) + as (to be, live, exist)" + }, + { + "text": "विद्यते", + "units": [], + "pronunciation": "vidyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "भावो", + "units": [], + "pronunciation": "bhāvo", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "वो", + "pronunciation": "vo", + "akshara": true + } + ], + "gloss": "N. of the planet Venus or its regent" + }, + { + "text": "नाभावो", + "units": [], + "pronunciation": "nābhāvo", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "वो", + "pronunciation": "vo", + "akshara": true + } + ], + "gloss": "not + nonexistence, nullity, absence", + "note": "padaccheda: na (not) + aBAva (nonexistence, nullity, absence)" + }, + { + "text": "विद्यते", + "units": [], + "pronunciation": "vidyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "सतः", + "units": [], + "pronunciation": "sataḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "being, existing, occurring" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-16b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "उभयोरपि", + "units": [], + "pronunciation": "ubhayorapi", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "gloss": "both, of both kinds, in both ways + unhurt, VS. viii, 5", + "note": "padaccheda: uBaya (both, of both kinds, in both ways) + arapa (unhurt, VS. viii, 5)" + }, + { + "text": "दृष्टोऽन्तस्त्वनयोस्तत्त्वदर्शिभिः", + "units": [], + "pronunciation": "dṛṣṭontastvanayostattvadarśibhiḥ", + "segments": [ + { + "text": "दृ", + "pronunciation": "dṛ", + "akshara": true + }, + { + "text": "ष्टोऽ", + "pronunciation": "ṣṭo", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "स्त्व", + "pronunciation": "stva", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "त्त्व", + "pronunciation": "ttva", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "र्शि", + "pronunciation": "rśi", + "akshara": true + }, + { + "text": "भिः", + "pronunciation": "bhiḥ", + "akshara": true + } + ], + "note": "padaccheda: dfzwa (seen, looked at, beheld) + Um (an interjection of anger) + ta (Lakṣmī) + tu (but) + ayam (this one. See idam) + tattvadarSin" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.16 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१६॥", + "units": [], + "gloss": "verse 2.16 ends", + "segments": [ + { + "text": "१६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-17a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अविनाशि", + "units": [], + "pronunciation": "avināśi", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शि", + "pronunciation": "śi", + "akshara": true + } + ], + "gloss": "imperishable, ŚBr. xiv" + }, + { + "text": "तु", + "units": [], + "pronunciation": "tu", + "segments": [ + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + } + ], + "gloss": "but" + }, + { + "text": "तद्विद्धि", + "units": [], + "pronunciation": "tadviddhi", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "द्वि", + "pronunciation": "dvi", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + } + ], + "gloss": "that; he, she, it + to know, understand, perceive", + "note": "padaccheda: tad (that; he, she, it) + vid (to know, understand, perceive)" + }, + { + "text": "येन", + "units": [], + "pronunciation": "yena", + "segments": [ + { + "text": "ये", + "pronunciation": "ye", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "सर्वमिदं", + "units": [], + "pronunciation": "sarvamidaṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "note": "padaccheda: sarva (all, every) + ayam (this one. See idam)" + }, + { + "text": "ततम्", + "units": [], + "pronunciation": "tatam", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "chiefly Ved. a father, RV. viii, 91" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-17b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "विनाशमव्ययस्यास्य", + "units": [], + "pronunciation": "vināśamavyayasyāsya", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "स्या", + "pronunciation": "syā", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "utter loss, annihilation, perdition + avyaya or rarely avyaya mfn. made of sheep's skin + to be, live, exist", + "note": "padaccheda: vinASa (utter loss, annihilation, perdition) + avyaya (avyaya or rarely avyaya mfn. made of sheep's skin) + as (to be, live, exist)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "कश्चित्कर्तुमर्हति", + "units": [], + "pronunciation": "kaścitkartumarhati", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "त्क", + "pronunciation": "tka", + "akshara": true + }, + { + "text": "र्तु", + "pronunciation": "rtu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: kim (what? how? whence? wherefore? why?) + cid (cid in comp. for cit) + kf (to make mention of, praise, speak highly of) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.17 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१७॥", + "units": [], + "gloss": "verse 2.17 ends", + "segments": [ + { + "text": "१७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-18a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अन्तवन्त", + "units": [], + "pronunciation": "antavanta", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + } + ], + "gloss": "having an end or term, limited, perishable + Lakṣmī", + "note": "padaccheda: antavat (having an end or term, limited, perishable) + ta (Lakṣmī)" + }, + { + "text": "इमे", + "units": [], + "pronunciation": "ime", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "मे", + "pronunciation": "me", + "akshara": true + } + ] + }, + { + "text": "देहा", + "units": [], + "pronunciation": "dehā", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + } + ], + "gloss": "the body" + }, + { + "text": "नित्यस्योक्ताः", + "units": [], + "pronunciation": "nityasyoktāḥ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "स्यो", + "pronunciation": "syo", + "akshara": true + }, + { + "text": "क्ताः", + "pronunciation": "ktāḥ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii + uttered, said, spoken ukta m. N. of a divine being", + "note": "padaccheda: nitya (innate, native, MBh. iii) + ukta (uttered, said, spoken ukta m. N. of a divine being)" + }, + { + "text": "शरीरिणः", + "units": [], + "pronunciation": "śarīriṇaḥ", + "segments": [ + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "री", + "pronunciation": "rī", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "णः", + "pronunciation": "ṇaḥ", + "akshara": true + } + ], + "gloss": "having a body, embodied, corporeal" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-18b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अनाशिनोऽप्रमेयस्य", + "units": [], + "pronunciation": "anāśinoprameyasya", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शि", + "pronunciation": "śi", + "akshara": true + }, + { + "text": "नोऽ", + "pronunciation": "no", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "मे", + "pronunciation": "me", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "imperishable + immeasurable, unlimited, unfathomable", + "note": "padaccheda: anASin (imperishable) + aprameya (immeasurable, unlimited, unfathomable)" + }, + { + "text": "तस्माद्युध्यस्व", + "units": [], + "pronunciation": "tasmādyudhyasva", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "द्यु", + "pronunciation": "dyu", + "akshara": true + }, + { + "text": "ध्य", + "pronunciation": "dhya", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + } + ], + "gloss": "that; he, she, it + to fight, wage war, oppose or overcome in battle", + "note": "padaccheda: tad (that; he, she, it) + yuD (to fight, wage war, oppose or overcome in battle)" + }, + { + "text": "भारत", + "units": [], + "pronunciation": "bhārata", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "O descendant of Bharata" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.18 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१८॥", + "units": [], + "gloss": "verse 2.18 ends", + "segments": [ + { + "text": "१८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-19a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "य", + "units": [], + "pronunciation": "ya", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "एनं", + "units": [], + "pronunciation": "enaṃ", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "ena a pronom. base, he, she" + }, + { + "text": "वेत्ति", + "units": [], + "pronunciation": "vetti", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "त्ति", + "pronunciation": "tti", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "हन्तारं", + "units": [], + "pronunciation": "hantāraṃ", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्ता", + "pronunciation": "ntā", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "gloss": "or hantf, mfn. slaying, killing" + }, + { + "text": "यश्चैनं", + "units": [], + "pronunciation": "yaścainaṃ", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "श्चै", + "pronunciation": "ścai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "who, which, what + and + pl. N. of a people, MBh. xiii", + "note": "padaccheda: yad (who, which, what) + ca (and) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "मन्यते", + "units": [], + "pronunciation": "manyate", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "in comp. for 1. mad" + }, + { + "text": "हतम्", + "units": [], + "pronunciation": "hatam", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-19b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "उभौ", + "units": [], + "pronunciation": "ubhau", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "भौ", + "pronunciation": "bhau", + "akshara": true + } + ], + "gloss": "e, e mfn. du. both" + }, + { + "text": "तौ", + "units": [], + "pronunciation": "tau", + "segments": [ + { + "text": "तौ", + "pronunciation": "tau", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "विजानीतो", + "units": [], + "pronunciation": "vijānīto", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "नी", + "pronunciation": "nī", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "note": "padaccheda: vijAni (‘strange, foreign’ or ‘having no wife’, AV. v) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "नायं", + "units": [], + "pronunciation": "nāyaṃ", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "a leader, guide, RV. vi" + }, + { + "text": "हन्ति", + "units": [], + "pronunciation": "hanti", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "हन्यते", + "units": [], + "pronunciation": "hanyate", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.19 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "१९॥", + "units": [], + "gloss": "verse 2.19 ends", + "segments": [ + { + "text": "१९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-20a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "जायते", + "units": [], + "pronunciation": "jāyate", + "segments": [ + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to generate, beget, produce" + }, + { + "text": "म्रियते", + "units": [], + "pronunciation": "mriyate", + "segments": [ + { + "text": "म्रि", + "pronunciation": "mri", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to die, decease, RV. &c. &c.: Pass. mriyate" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "कदाचिन्नायं", + "units": [], + "pronunciation": "kadācinnāyaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "न्ना", + "pronunciation": "nnā", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "‘water-giver’, a cloud + without understanding + a leader, guide, RV. vi", + "note": "padaccheda: kada (‘water-giver’, a cloud) + acit (without understanding) + nAya (a leader, guide, RV. vi)" + }, + { + "text": "भूत्वा", + "units": [], + "pronunciation": "bhūtvā", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "भविता", + "units": [], + "pronunciation": "bhavitā", + "segments": [ + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "भूयः", + "units": [], + "pronunciation": "bhūyaḥ", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "यः", + "pronunciation": "yaḥ", + "akshara": true + } + ], + "gloss": "becoming" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-20b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अजो", + "units": [], + "pronunciation": "ajo", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "जो", + "pronunciation": "jo", + "akshara": true + } + ], + "gloss": "a drove, troop" + }, + { + "text": "नित्यः", + "units": [], + "pronunciation": "nityaḥ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्यः", + "pronunciation": "tyaḥ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii" + }, + { + "text": "शाश्वतोऽयं", + "units": [], + "pronunciation": "śāśvatoyaṃ", + "segments": [ + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "श्व", + "pronunciation": "śva", + "akshara": true + }, + { + "text": "तोऽ", + "pronunciation": "to", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "eternal, constant, perpetual + going", + "note": "padaccheda: SASvata (eternal, constant, perpetual) + ya (going)" + }, + { + "text": "पुराणो", + "units": [], + "pronunciation": "purāṇo", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "णो", + "pronunciation": "ṇo", + "akshara": true + } + ], + "gloss": "belonging to ancient or olden times, ancient, old" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "हन्यते", + "units": [], + "pronunciation": "hanyate", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "हन्यमाने", + "units": [], + "pronunciation": "hanyamāne", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "ने", + "pronunciation": "ne", + "akshara": true + } + ], + "gloss": "being killed or slain &c" + }, + { + "text": "शरीरे", + "units": [], + "pronunciation": "śarīre", + "segments": [ + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "री", + "pronunciation": "rī", + "akshara": true + }, + { + "text": "रे", + "pronunciation": "re", + "akshara": true + } + ], + "note": "padaccheda: Sari (Sarin. See p. 1056, col. 3) + rA (acquiring, possessing, Naiṣ)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.20 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२०॥", + "units": [], + "gloss": "verse 2.20 ends", + "segments": [ + { + "text": "२०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-21a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "वेदाविनाशिनं", + "units": [], + "pronunciation": "vedāvināśinaṃ", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शि", + "pronunciation": "śi", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "N. of a pupil of Āyoda + imperishable, ŚBr. xiv", + "note": "padaccheda: vedA (N. of a pupil of Āyoda) + avinASin (imperishable, ŚBr. xiv)" + }, + { + "text": "नित्यं", + "units": [], + "pronunciation": "nityaṃ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्यं", + "pronunciation": "tyaṃ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii" + }, + { + "text": "य", + "units": [], + "pronunciation": "ya", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "एनमजमव्ययम्", + "units": [], + "pronunciation": "enamajamavyayam", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "note": "padaccheda: ena (ena a pronom. base, he, she) + a (a the first letter of the alphabet) + jam (jam jmA, jmas. See 2. kzam) + vyaya (passing away, mutable, liable to change or decay)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-21b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कथं", + "units": [], + "pronunciation": "kathaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "थं", + "pronunciation": "thaṃ", + "akshara": true + } + ], + "gloss": "how? in what manner? whence?" + }, + { + "text": "स", + "units": [], + "pronunciation": "sa", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + } + ], + "gloss": "he" + }, + { + "text": "पुरुषः", + "units": [], + "pronunciation": "puruṣaḥ", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "षः", + "pronunciation": "ṣaḥ", + "akshara": true + } + ], + "gloss": "rarely f" + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "कं", + "units": [], + "pronunciation": "kaṃ", + "segments": [ + { + "text": "कं", + "pronunciation": "kaṃ", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "घातयति", + "units": [], + "pronunciation": "ghātayati", + "segments": [ + { + "text": "घा", + "pronunciation": "ghā", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "हन्ति", + "units": [], + "pronunciation": "hanti", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "to strike, beat, pound" + }, + { + "text": "कम्", + "units": [], + "pronunciation": "kam", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.21 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२१॥", + "units": [], + "gloss": "verse 2.21 ends", + "segments": [ + { + "text": "२१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-22a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "वासांसि", + "units": [], + "pronunciation": "vāsāṃsi", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "सां", + "pronunciation": "sāṃ", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "cloth, clothes, dress" + }, + { + "text": "जीर्णानि", + "units": [], + "pronunciation": "jīrṇāni", + "segments": [ + { + "text": "जी", + "pronunciation": "jī", + "akshara": true + }, + { + "text": "र्णा", + "pronunciation": "rṇā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "old, worn out, withered" + }, + { + "text": "यथा", + "units": [], + "pronunciation": "yathā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + } + ], + "gloss": "as, just as" + }, + { + "text": "विहाय", + "units": [], + "pronunciation": "vihāya", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "leaving behind i.e. at a distance from" + }, + { + "text": "नवानि", + "units": [], + "pronunciation": "navāni", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ] + }, + { + "text": "गृह्णाति", + "units": [], + "pronunciation": "gṛhṇāti", + "segments": [ + { + "text": "गृ", + "pronunciation": "gṛ", + "akshara": true + }, + { + "text": "ह्णा", + "pronunciation": "hṇā", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to seize, take, RV. i" + }, + { + "text": "नरोऽपराणि", + "units": [], + "pronunciation": "naroparāṇi", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "रोऽ", + "pronunciation": "ro", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "a man, a male, a person + situated below, under", + "note": "padaccheda: nara (a man, a male, a person) + upara (situated below, under)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-22b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तथा", + "units": [], + "pronunciation": "tathā", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + } + ], + "gloss": "so, in that way" + }, + { + "text": "शरीराणि", + "units": [], + "pronunciation": "śarīrāṇi", + "segments": [ + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "री", + "pronunciation": "rī", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "note": "padaccheda: SarIra + aRI (or aRI, f. the point of a needle or of a sharp stake, L. linchpin)" + }, + { + "text": "विहाय", + "units": [], + "pronunciation": "vihāya", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "leaving behind i.e. at a distance from" + }, + { + "text": "जीर्णान्यन्यानि", + "units": [], + "pronunciation": "jīrṇānyanyāni", + "segments": [ + { + "text": "जी", + "pronunciation": "jī", + "akshara": true + }, + { + "text": "र्णा", + "pronunciation": "rṇā", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "न्या", + "pronunciation": "nyā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "old, worn out, withered + anya, am, n. inexhaustibleness", + "note": "padaccheda: jIrRa (old, worn out, withered) + anya (anya, am, n. inexhaustibleness)" + }, + { + "text": "संयाति", + "units": [], + "pronunciation": "saṃyāti", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "gone together, proceeded together, approached" + }, + { + "text": "नवानि", + "units": [], + "pronunciation": "navāni", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ] + }, + { + "text": "देही", + "units": [], + "pronunciation": "dehī", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "ही", + "pronunciation": "hī", + "akshara": true + } + ], + "gloss": "having a body, corporeal" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.22 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२२॥", + "units": [], + "gloss": "verse 2.22 ends", + "segments": [ + { + "text": "२२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-23a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नैनं", + "units": [], + "pronunciation": "nainaṃ", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "not + pl. N. of a people, MBh. xiii", + "note": "padaccheda: na (not) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "छिन्दन्ति", + "units": [], + "pronunciation": "chindanti", + "segments": [ + { + "text": "छि", + "pronunciation": "chi", + "akshara": true + }, + { + "text": "न्द", + "pronunciation": "nda", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "to cut off, amputate, cut through" + }, + { + "text": "शस्त्राणि", + "units": [], + "pronunciation": "śastrāṇi", + "segments": [ + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "स्त्रा", + "pronunciation": "strā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "invocation, praise" + }, + { + "text": "नैनं", + "units": [], + "pronunciation": "nainaṃ", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "not + pl. N. of a people, MBh. xiii", + "note": "padaccheda: na (not) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "दहति", + "units": [], + "pronunciation": "dahati", + "segments": [ + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to burn, consume by fire, scorch" + }, + { + "text": "पावकः", + "units": [], + "pronunciation": "pāvakaḥ", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "कः", + "pronunciation": "kaḥ", + "akshara": true + } + ], + "gloss": "pure, clear, bright" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-23b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चैनं", + "units": [], + "pronunciation": "cainaṃ", + "segments": [ + { + "text": "चै", + "pronunciation": "cai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "and + pl. N. of a people, MBh. xiii", + "note": "padaccheda: ca (and) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "क्लेदयन्त्यापो", + "units": [], + "pronunciation": "kledayantyāpo", + "segments": [ + { + "text": "क्ले", + "pronunciation": "kle", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "न्त्या", + "pronunciation": "ntyā", + "akshara": true + }, + { + "text": "पो", + "pronunciation": "po", + "akshara": true + } + ], + "note": "padaccheda: kledayat + pa (guarding, protecting, ruling)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "शोषयति", + "units": [], + "pronunciation": "śoṣayati", + "segments": [ + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to dry, become dry or withered, fade" + }, + { + "text": "मारुतः", + "units": [], + "pronunciation": "mārutaḥ", + "segments": [ + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ] + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.23 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२३॥", + "units": [], + "gloss": "verse 2.23 ends", + "segments": [ + { + "text": "२३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-24a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अच्छेद्योऽयमदाह्योऽयमक्लेद्योऽशोष्य", + "units": [], + "pronunciation": "acchedyoyamadāhyoyamakledyośoṣya", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "च्छे", + "pronunciation": "cche", + "akshara": true + }, + { + "text": "द्योऽ", + "pronunciation": "dyo", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + }, + { + "text": "ह्योऽ", + "pronunciation": "hyo", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "क्ले", + "pronunciation": "kle", + "akshara": true + }, + { + "text": "द्योऽ", + "pronunciation": "dyo", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + } + ], + "note": "padaccheda: acCedya (improper or impossible to be cut, indivisible) + aya (going) + adAhya (incombustible) + yama (a rein, curb, bridle) + kledya (See a-kl˚) + aSozya (not to be dried up, not drying up, permanent)" + }, + { + "text": "एव", + "units": [], + "pronunciation": "eva", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "just, only" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-24b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नित्यः", + "units": [], + "pronunciation": "nityaḥ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्यः", + "pronunciation": "tyaḥ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii" + }, + { + "text": "सर्वगतः", + "units": [], + "pronunciation": "sarvagataḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "all-pervading, omnipresent" + }, + { + "text": "स्थाणुरचलोऽयं", + "units": [], + "pronunciation": "sthāṇuracaloyaṃ", + "segments": [ + { + "text": "स्था", + "pronunciation": "sthā", + "akshara": true + }, + { + "text": "णु", + "pronunciation": "ṇu", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "लोऽ", + "pronunciation": "lo", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "standing firmly, stationary, firm + to be moved, stir, tremble + going", + "note": "padaccheda: sTARu (standing firmly, stationary, firm) + cal (to be moved, stir, tremble) + ya (going)" + }, + { + "text": "सनातनः", + "units": [], + "pronunciation": "sanātanaḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "eternal, perpetual, permanent" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.24 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२४॥", + "units": [], + "gloss": "verse 2.24 ends", + "segments": [ + { + "text": "२४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-25a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अव्यक्तोऽयमचिन्त्योऽयमविकार्योऽयमुच्यते", + "units": [], + "pronunciation": "avyaktoyamacintyoyamavikāryoyamucyate", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "क्तोऽ", + "pronunciation": "kto", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "न्त्योऽ", + "pronunciation": "ntyo", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "र्योऽ", + "pronunciation": "ryo", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: avyakta (undeveloped, not manifest, unapparent) + ya (going) + acintya (inconceivable, surpassing thought, MaitrS. &c) + yama (a rein, curb, bridle) + vikArya (to be changed, liable to change) + ya (going) + muc (to cheat, Dhātup. vi, 12)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-25b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्मादेवं", + "units": [], + "pronunciation": "tasmādevaṃ", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "वं", + "pronunciation": "vaṃ", + "akshara": true + } + ], + "gloss": "that; he, she, it + thus, in this way, in such a manner", + "note": "padaccheda: tad (that; he, she, it) + evam (thus, in this way, in such a manner)" + }, + { + "text": "विदित्वैनं", + "units": [], + "pronunciation": "viditvainaṃ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "दि", + "pronunciation": "di", + "akshara": true + }, + { + "text": "त्वै", + "pronunciation": "tvai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "to know, understand, perceive + pl. N. of a people, MBh. xiii", + "note": "padaccheda: vid (to know, understand, perceive) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "नानुशोचितुमर्हसि", + "units": [], + "pronunciation": "nānuśocitumarhasi", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "note": "padaccheda: nA (thin, spare) + nu (nu ind, now, still) + Suc (to shine, flame, gleam) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.25 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२५॥", + "units": [], + "gloss": "verse 2.25 ends", + "segments": [ + { + "text": "२५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-26a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अथ", + "units": [], + "pronunciation": "atha", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "थ", + "pronunciation": "tha", + "akshara": true + } + ] + }, + { + "text": "चैनं", + "units": [], + "pronunciation": "cainaṃ", + "segments": [ + { + "text": "चै", + "pronunciation": "cai", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "and + pl. N. of a people, MBh. xiii", + "note": "padaccheda: ca (and) + Ena (pl. N. of a people, MBh. xiii)" + }, + { + "text": "नित्यजातं", + "units": [], + "pronunciation": "nityajātaṃ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "तं", + "pronunciation": "taṃ", + "akshara": true + } + ], + "gloss": "constantly born, Bhag. ii, 26" + }, + { + "text": "नित्यं", + "units": [], + "pronunciation": "nityaṃ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्यं", + "pronunciation": "tyaṃ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "मन्यसे", + "units": [], + "pronunciation": "manyase", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "से", + "pronunciation": "se", + "akshara": true + } + ], + "gloss": "in comp. for 1. mad" + }, + { + "text": "मृतम्", + "units": [], + "pronunciation": "mṛtam", + "segments": [ + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "dead, deceased, death-like" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-26b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तथापि", + "units": [], + "pronunciation": "tathāpi", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "था", + "pronunciation": "thā", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "gloss": "so, in that way + also, even", + "note": "padaccheda: taTA (so, in that way) + api (also, even)" + }, + { + "text": "त्वं", + "units": [], + "pronunciation": "tvaṃ", + "segments": [ + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ] + }, + { + "text": "महाबाहो", + "units": [], + "pronunciation": "mahābāho", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "बा", + "pronunciation": "bā", + "akshara": true + }, + { + "text": "हो", + "pronunciation": "ho", + "akshara": true + } + ], + "gloss": "long-armed" + }, + { + "text": "नैवं", + "units": [], + "pronunciation": "naivaṃ", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "वं", + "pronunciation": "vaṃ", + "akshara": true + } + ], + "gloss": "not + thus, in this way, in such a manner", + "note": "padaccheda: na (not) + evam (thus, in this way, in such a manner)" + }, + { + "text": "शोचितुमर्हसि", + "units": [], + "pronunciation": "śocitumarhasi", + "segments": [ + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "note": "padaccheda: Suc (to shine, flame, gleam) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.26 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२६॥", + "units": [], + "gloss": "verse 2.26 ends", + "segments": [ + { + "text": "२६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-27a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "जातस्य", + "units": [], + "pronunciation": "jātasya", + "segments": [ + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "born, brought into existence by, engendered by" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "ध्रुवो", + "units": [], + "pronunciation": "dhruvo", + "segments": [ + { + "text": "ध्रु", + "pronunciation": "dhru", + "akshara": true + }, + { + "text": "वो", + "pronunciation": "vo", + "akshara": true + } + ], + "gloss": "fixed, firm, immovable" + }, + { + "text": "मृत्युर्ध्रुवं", + "units": [], + "pronunciation": "mṛtyurdhruvaṃ", + "segments": [ + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "त्यु", + "pronunciation": "tyu", + "akshara": true + }, + { + "text": "र्ध्रु", + "pronunciation": "rdhru", + "akshara": true + }, + { + "text": "वं", + "pronunciation": "vaṃ", + "akshara": true + } + ], + "gloss": "death, dying, RV. &c + fixed, firm, immovable", + "note": "padaccheda: mftyu (death, dying, RV. &c) + Druva (fixed, firm, immovable)" + }, + { + "text": "जन्म", + "units": [], + "pronunciation": "janma", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "न्म", + "pronunciation": "nma", + "akshara": true + } + ], + "gloss": "birth, production, origin" + }, + { + "text": "मृतस्य", + "units": [], + "pronunciation": "mṛtasya", + "segments": [ + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "dead, deceased, death-like" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-27b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्मादपरिहार्येऽर्थे", + "units": [], + "pronunciation": "tasmādaparihāryerthe", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "र्येऽ", + "pronunciation": "rye", + "akshara": true + }, + { + "text": "र्थे", + "pronunciation": "rthe", + "akshara": true + } + ], + "gloss": "that; he, she, it + id, Gaut. &c + aim, purpose", + "note": "padaccheda: tad (that; he, she, it) + aparihArya (id, Gaut. &c) + arTa (aim, purpose)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "त्वं", + "units": [], + "pronunciation": "tvaṃ", + "segments": [ + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ] + }, + { + "text": "शोचितुमर्हसि", + "units": [], + "pronunciation": "śocitumarhasi", + "segments": [ + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "note": "padaccheda: Suc (to shine, flame, gleam) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.27 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२७॥", + "units": [], + "gloss": "verse 2.27 ends", + "segments": [ + { + "text": "२७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-28a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अव्यक्तादीनि", + "units": [], + "pronunciation": "avyaktādīni", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "क्ता", + "pronunciation": "ktā", + "akshara": true + }, + { + "text": "दी", + "pronunciation": "dī", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "undeveloped, not manifest, unapparent + not depressed, noble-minded", + "note": "padaccheda: avyakta (undeveloped, not manifest, unapparent) + adIna (not depressed, noble-minded)" + }, + { + "text": "भूतानि", + "units": [], + "pronunciation": "bhūtāni", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "become, been, gone" + }, + { + "text": "व्यक्तमध्यानि", + "units": [], + "pronunciation": "vyaktamadhyāni", + "segments": [ + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "क्त", + "pronunciation": "kta", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "ध्या", + "pronunciation": "dhyā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "note": "padaccheda: vyakta (vy-akti. See cols. 2, 3) + maDya (middle)" + }, + { + "text": "भारत", + "units": [], + "pronunciation": "bhārata", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "O descendant of Bharata" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-28b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अव्यक्तनिधनान्येव", + "units": [], + "pronunciation": "avyaktanidhanānyeva", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "क्त", + "pronunciation": "kta", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "न्ये", + "pronunciation": "nye", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "undeveloped, not manifest, unapparent + having no property, poor + just, only", + "note": "padaccheda: avyakta (undeveloped, not manifest, unapparent) + niDana (having no property, poor) + eva (just, only)" + }, + { + "text": "तत्र", + "units": [], + "pronunciation": "tatra", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "त्र", + "pronunciation": "tra", + "akshara": true + } + ], + "gloss": "used for the loc. of tad" + }, + { + "text": "का", + "units": [], + "pronunciation": "kā", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "परिदेवना", + "units": [], + "pronunciation": "paridevanā", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + } + ], + "gloss": "lamentation, bewailing, complaint" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.28 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२८॥", + "units": [], + "gloss": "verse 2.28 ends", + "segments": [ + { + "text": "२८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-29a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आश्चर्यवत्पश्यति", + "units": [], + "pronunciation": "āścaryavatpaśyati", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "त्प", + "pronunciation": "tpa", + "akshara": true + }, + { + "text": "श्य", + "pronunciation": "śya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: AScaryavat + paSyat (seeing, beholding &c) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "कश्चिदेनमाश्चर्यवद्वदति", + "units": [], + "pronunciation": "kaścidenamāścaryavadvadati", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "द्व", + "pronunciation": "dva", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: kim (what? how? whence? wherefore? why?) + cit (ifc. ‘piling up’, see agni-, UrDva-) + e (e the eleventh vowel of the alphabet) + na (not) + AScaryavat + vad (to speak, say, utter)" + }, + { + "text": "तथैव", + "units": [], + "pronunciation": "tathaiva", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "थै", + "pronunciation": "thai", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "so, in that way + just, only", + "note": "padaccheda: taTA (so, in that way) + eva (just, only)" + }, + { + "text": "चान्यः", + "units": [], + "pronunciation": "cānyaḥ", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "न्यः", + "pronunciation": "nyaḥ", + "akshara": true + } + ], + "gloss": "and + nI for nis before r", + "note": "padaccheda: ca (and) + nI (nI for nis before r)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-29b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आश्चर्यवच्चैनमन्यः", + "units": [], + "pronunciation": "āścaryavaccainamanyaḥ", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "च्चै", + "pronunciation": "ccai", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "न्यः", + "pronunciation": "nyaḥ", + "akshara": true + } + ], + "note": "padaccheda: AScaryavat + ca (and) + ena (ena a pronom. base, he, she) + anya (anya, am, n. inexhaustibleness)" + }, + { + "text": "शृणोति", + "units": [], + "pronunciation": "śṛṇoti", + "segments": [ + { + "text": "शृ", + "pronunciation": "śṛ", + "akshara": true + }, + { + "text": "णो", + "pronunciation": "ṇo", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to hear, listen or attend to anything, give ear to any one" + }, + { + "text": "श्रुत्वाप्येनं", + "units": [], + "pronunciation": "śrutvāpyenaṃ", + "segments": [ + { + "text": "श्रु", + "pronunciation": "śru", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + }, + { + "text": "प्ये", + "pronunciation": "pye", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + } + ], + "gloss": "hearing, listening + or + not", + "note": "padaccheda: Srut (hearing, listening) + vA (or) + na (not)" + }, + { + "text": "वेद", + "units": [], + "pronunciation": "veda", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चैव", + "units": [], + "pronunciation": "caiva", + "segments": [ + { + "text": "चै", + "pronunciation": "cai", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "note": "padaccheda: ca (and) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "कश्चित्", + "units": [], + "pronunciation": "kaścit", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "त्", + "pronunciation": "t", + "akshara": true + } + ], + "note": "padaccheda: kim (what? how? whence? wherefore? why?) + cit (ifc. ‘piling up’, see agni-, UrDva-)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.29 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "२९॥", + "units": [], + "gloss": "verse 2.29 ends", + "segments": [ + { + "text": "२९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-30a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "देही", + "units": [], + "pronunciation": "dehī", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "ही", + "pronunciation": "hī", + "akshara": true + } + ], + "gloss": "having a body, corporeal" + }, + { + "text": "नित्यमवध्योऽयं", + "units": [], + "pronunciation": "nityamavadhyoyaṃ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "ध्योऽ", + "pronunciation": "dhyo", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii + not hurting, innoxious, beneficent + going", + "note": "padaccheda: nitya (innate, native, MBh. iii) + avaDa (not hurting, innoxious, beneficent) + ya (going)" + }, + { + "text": "देहे", + "units": [], + "pronunciation": "dehe", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हे", + "pronunciation": "he", + "akshara": true + } + ], + "gloss": "the body" + }, + { + "text": "सर्वस्य", + "units": [], + "pronunciation": "sarvasya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "all, every" + }, + { + "text": "भारत", + "units": [], + "pronunciation": "bhārata", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "O descendant of Bharata" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-30b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्मात्सर्वाणि", + "units": [], + "pronunciation": "tasmātsarvāṇi", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "त्स", + "pronunciation": "tsa", + "akshara": true + }, + { + "text": "र्वा", + "pronunciation": "rvā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "that; he, she, it + all, every", + "note": "padaccheda: tad (that; he, she, it) + sarva (all, every)" + }, + { + "text": "भूतानि", + "units": [], + "pronunciation": "bhūtāni", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "become, been, gone" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "त्वं", + "units": [], + "pronunciation": "tvaṃ", + "segments": [ + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ] + }, + { + "text": "शोचितुमर्हसि", + "units": [], + "pronunciation": "śocitumarhasi", + "segments": [ + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "चि", + "pronunciation": "ci", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to shine, flame, gleam + to deserve, merit, be worthy of", + "note": "padaccheda: Suc (to shine, flame, gleam) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.30 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३०॥", + "units": [], + "gloss": "verse 2.30 ends", + "segments": [ + { + "text": "३०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-31a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्वधर्ममपि", + "units": [], + "pronunciation": "svadharmamapi", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "note": "padaccheda: svaDarma (o˚'s own rights) + api (also, even)" + }, + { + "text": "चावेक्ष्य", + "units": [], + "pronunciation": "cāvekṣya", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "क्ष्य", + "pronunciation": "kṣya", + "akshara": true + } + ], + "gloss": "and + to be attended to, MBh. ii, 2591", + "note": "padaccheda: ca (and) + avekzya (to be attended to, MBh. ii, 2591)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "विकम्पितुमर्हसि", + "units": [], + "pronunciation": "vikampitumarhasi", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "म्पि", + "pronunciation": "mpi", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्ह", + "pronunciation": "rha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to tremble, shake + to deserve, merit, be worthy of", + "note": "padaccheda: vI (to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV) + kamp (to tremble, shake) + arh (to deserve, merit, be worthy of)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-31b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "धर्म्याद्धि", + "units": [], + "pronunciation": "dharmyāddhi", + "segments": [ + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्म्या", + "pronunciation": "rmyā", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + } + ], + "gloss": "legal, legitimate + for, indeed", + "note": "padaccheda: Darmya (legal, legitimate) + hi (for, indeed)" + }, + { + "text": "युद्धाच्छ्रेयोऽन्यत्क्षत्रियस्य", + "units": [], + "pronunciation": "yuddhācchreyonyatkṣatriyasya", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "द्धा", + "pronunciation": "ddhā", + "akshara": true + }, + { + "text": "च्छ्रे", + "pronunciation": "cchre", + "akshara": true + }, + { + "text": "योऽ", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "त्क्ष", + "pronunciation": "tkṣa", + "akshara": true + }, + { + "text": "त्रि", + "pronunciation": "tri", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "note": "padaccheda: yudDa (fought, encountered, conquered) + Sreyas (more splendid or beautiful, more excellent or distinguished, superior) + anya (anya, am, n. inexhaustibleness) + kzatriya (governing, endowed with sovereignty)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "विद्यते", + "units": [], + "pronunciation": "vidyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.31 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३१॥", + "units": [], + "gloss": "verse 2.31 ends", + "segments": [ + { + "text": "३१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-32a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यदृच्छया", + "units": [], + "pronunciation": "yadṛcchayā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दृ", + "pronunciation": "dṛ", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + } + ], + "gloss": "spontaneous, accidental" + }, + { + "text": "चोपपन्नं", + "units": [], + "pronunciation": "copapannaṃ", + "segments": [ + { + "text": "चो", + "pronunciation": "co", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "न्नं", + "pronunciation": "nnaṃ", + "akshara": true + } + ], + "gloss": "and + one who has approached a teacher, Suśr", + "note": "padaccheda: ca (and) + upapanna (one who has approached a teacher, Suśr)" + }, + { + "text": "स्वर्गद्वारमपावृतम्", + "units": [], + "pronunciation": "svargadvāramapāvṛtam", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "र्ग", + "pronunciation": "rga", + "akshara": true + }, + { + "text": "द्वा", + "pronunciation": "dvā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "वृ", + "pronunciation": "vṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "heaven's gate + unrestrained", + "note": "padaccheda: svargadvAra (heaven's gate) + apAvft (unrestrained)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-32b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सुखिनः", + "units": [], + "pronunciation": "sukhinaḥ", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "खि", + "pronunciation": "khi", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "possessing or causing happiness or pleasure, happy, joyful" + }, + { + "text": "क्षत्रियाः", + "units": [], + "pronunciation": "kṣatriyāḥ", + "segments": [ + { + "text": "क्ष", + "pronunciation": "kṣa", + "akshara": true + }, + { + "text": "त्रि", + "pronunciation": "tri", + "akshara": true + }, + { + "text": "याः", + "pronunciation": "yāḥ", + "akshara": true + } + ], + "gloss": "governing, endowed with sovereignty" + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "लभन्ते", + "units": [], + "pronunciation": "labhante", + "segments": [ + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + } + ], + "gloss": "to take, seize, catch" + }, + { + "text": "युद्धमीदृशम्", + "units": [], + "pronunciation": "yuddhamīdṛśam", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "द्ध", + "pronunciation": "ddha", + "akshara": true + }, + { + "text": "मी", + "pronunciation": "mī", + "akshara": true + }, + { + "text": "दृ", + "pronunciation": "dṛ", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "fought, encountered, conquered + endowed with such qualities, such", + "note": "padaccheda: yudDa (fought, encountered, conquered) + IdfS (endowed with such qualities, such)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.32 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३२॥", + "units": [], + "gloss": "verse 2.32 ends", + "segments": [ + { + "text": "३२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-33a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अथ", + "units": [], + "pronunciation": "atha", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "थ", + "pronunciation": "tha", + "akshara": true + } + ] + }, + { + "text": "चेत्त्वमिमं", + "units": [], + "pronunciation": "cettvamimaṃ", + "segments": [ + { + "text": "चे", + "pronunciation": "ce", + "akshara": true + }, + { + "text": "त्त्व", + "pronunciation": "ttva", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "मं", + "pronunciation": "maṃ", + "akshara": true + } + ], + "note": "padaccheda: ced + tu (but) + ama (impetuosity, violence, strength) + ma (time, L. poison)" + }, + { + "text": "धर्म्यं", + "units": [], + "pronunciation": "dharmyaṃ", + "segments": [ + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्म्यं", + "pronunciation": "rmyaṃ", + "akshara": true + } + ], + "gloss": "legal, legitimate" + }, + { + "text": "संग्रामं", + "units": [], + "pronunciation": "saṃgrāmaṃ", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "ग्रा", + "pronunciation": "grā", + "akshara": true + }, + { + "text": "मं", + "pronunciation": "maṃ", + "akshara": true + } + ], + "note": "padaccheda: sam (to be disturbed, Dhātup. xix, 82) + grAma (an inhabited place, village, hamlet)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "करिष्यसि", + "units": [], + "pronunciation": "kariṣyasi", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to make mention of, praise, speak highly of" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-33b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "ततः", + "units": [], + "pronunciation": "tataḥ", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "chiefly Ved. a father, RV. viii, 91" + }, + { + "text": "स्वधर्मं", + "units": [], + "pronunciation": "svadharmaṃ", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्मं", + "pronunciation": "rmaṃ", + "akshara": true + } + ] + }, + { + "text": "कीर्तिं", + "units": [], + "pronunciation": "kīrtiṃ", + "segments": [ + { + "text": "की", + "pronunciation": "kī", + "akshara": true + }, + { + "text": "र्तिं", + "pronunciation": "rtiṃ", + "akshara": true + } + ], + "gloss": "mention, making mention of, speech" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "हित्वा", + "units": [], + "pronunciation": "hitvā", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "पापमवाप्स्यसि", + "units": [], + "pronunciation": "pāpamavāpsyasi", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "प्स्य", + "pronunciation": "psya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "bad, vicious, wicked + a bond + to reach, overtake, meet with", + "note": "padaccheda: pApa (bad, vicious, wicked) + mu (a bond) + Ap (to reach, overtake, meet with)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.33 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३३॥", + "units": [], + "gloss": "verse 2.33 ends", + "segments": [ + { + "text": "३३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-34a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अकीर्तिं", + "units": [], + "pronunciation": "akīrtiṃ", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "की", + "pronunciation": "kī", + "akshara": true + }, + { + "text": "र्तिं", + "pronunciation": "rtiṃ", + "akshara": true + } + ], + "gloss": "ill-fame, disgrace" + }, + { + "text": "चापि", + "units": [], + "pronunciation": "cāpi", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "gloss": "bow-armed, MBh. xii, 10406" + }, + { + "text": "भूतानि", + "units": [], + "pronunciation": "bhūtāni", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "become, been, gone" + }, + { + "text": "कथयिष्यन्ति", + "units": [], + "pronunciation": "kathayiṣyanti", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "थ", + "pronunciation": "tha", + "akshara": true + }, + { + "text": "यि", + "pronunciation": "yi", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "to converse with any one" + }, + { + "text": "तेऽव्ययाम्", + "units": [], + "pronunciation": "tevyayām", + "segments": [ + { + "text": "तेऽ", + "pronunciation": "te", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "that; he, she, it + passing away, mutable, liable to change or decay", + "note": "padaccheda: tad (that; he, she, it) + vyaya (passing away, mutable, liable to change or decay)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-34b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सम्भावितस्य", + "units": [], + "pronunciation": "sambhāvitasya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "म्भा", + "pronunciation": "mbhā", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "brought together, brought about &c" + }, + { + "text": "चाकीर्तिर्मरणादतिरिच्यते", + "units": [], + "pronunciation": "cākīrtirmaraṇādatiricyate", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "की", + "pronunciation": "kī", + "akshara": true + }, + { + "text": "र्ति", + "pronunciation": "rti", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "णा", + "pronunciation": "ṇā", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: ca (and) + akIrti (ill-fame, disgrace) + maraRa (the act of dying, death) + adat (eating, RV. x, 4) + ric (to empty, evacuate, leave)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.34 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३४॥", + "units": [], + "gloss": "verse 2.34 ends", + "segments": [ + { + "text": "३४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-35a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "भयाद्रणादुपरतं", + "units": [], + "pronunciation": "bhayādraṇāduparataṃ", + "segments": [ + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "द्र", + "pronunciation": "dra", + "akshara": true + }, + { + "text": "णा", + "pronunciation": "ṇā", + "akshara": true + }, + { + "text": "दु", + "pronunciation": "du", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "तं", + "pronunciation": "taṃ", + "akshara": true + } + ], + "gloss": "fear, alarm, dread apprehension + delight, pleasure, gladness + ceased, stopped, quiet", + "note": "padaccheda: Baya (fear, alarm, dread apprehension) + raRa (delight, pleasure, gladness) + uparata (ceased, stopped, quiet)" + }, + { + "text": "मंस्यन्ते", + "units": [], + "pronunciation": "maṃsyante", + "segments": [ + { + "text": "मं", + "pronunciation": "maṃ", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + } + ], + "gloss": "in comp. for 1. mad" + }, + { + "text": "त्वां", + "units": [], + "pronunciation": "tvāṃ", + "segments": [ + { + "text": "त्वां", + "pronunciation": "tvāṃ", + "akshara": true + } + ] + }, + { + "text": "महारथाः", + "units": [], + "pronunciation": "mahārathāḥ", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "थाः", + "pronunciation": "thāḥ", + "akshara": true + } + ] + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-35b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "येषां", + "units": [], + "pronunciation": "yeṣāṃ", + "segments": [ + { + "text": "ये", + "pronunciation": "ye", + "akshara": true + }, + { + "text": "षां", + "pronunciation": "ṣāṃ", + "akshara": true + } + ], + "gloss": "who, which, what" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "त्वं", + "units": [], + "pronunciation": "tvaṃ", + "segments": [ + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ] + }, + { + "text": "बहुमतो", + "units": [], + "pronunciation": "bahumato", + "segments": [ + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "हु", + "pronunciation": "hu", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "much thought of, highly esteemed, valued" + }, + { + "text": "भूत्वा", + "units": [], + "pronunciation": "bhūtvā", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "यास्यसि", + "units": [], + "pronunciation": "yāsyasi", + "segments": [ + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "a goer or mover" + }, + { + "text": "लाघवम्", + "units": [], + "pronunciation": "lāghavam", + "segments": [ + { + "text": "ला", + "pronunciation": "lā", + "akshara": true + }, + { + "text": "घ", + "pronunciation": "gha", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "swiftness, rapidity, speed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.35 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३५॥", + "units": [], + "gloss": "verse 2.35 ends", + "segments": [ + { + "text": "३५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-36a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अवाच्यवादांश्च", + "units": [], + "pronunciation": "avācyavādāṃśca", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "दां", + "pronunciation": "dāṃ", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + } + ], + "gloss": "not to be addressed, Mn. ii, 128 + speaking of or about + and", + "note": "padaccheda: avAcya (not to be addressed, Mn. ii, 128) + vAda (speaking of or about) + ca (and)" + }, + { + "text": "बहून्वदिष्यन्ति", + "units": [], + "pronunciation": "bahūnvadiṣyanti", + "segments": [ + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "हू", + "pronunciation": "hū", + "akshara": true + }, + { + "text": "न्व", + "pronunciation": "nva", + "akshara": true + }, + { + "text": "दि", + "pronunciation": "di", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "much, many, frequent + to speak, say, utter", + "note": "padaccheda: bahu (much, many, frequent) + vad (to speak, say, utter)" + }, + { + "text": "तवाहिताः", + "units": [], + "pronunciation": "tavāhitāḥ", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + }, + { + "text": "ताः", + "pronunciation": "tāḥ", + "akshara": true + } + ], + "gloss": "strong, energetic, courageous + sent, impelled, urged on", + "note": "padaccheda: tavas (strong, energetic, courageous) + hita (sent, impelled, urged on)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-36b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "निन्दन्तस्तव", + "units": [], + "pronunciation": "nindantastava", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "न्द", + "pronunciation": "nda", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "note": "padaccheda: nindat + ta (Lakṣmī) + yuzmad (the base of the 2nd pers. pron. as used in comp)" + }, + { + "text": "सामर्थ्यं", + "units": [], + "pronunciation": "sāmarthyaṃ", + "segments": [ + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "र्थ्यं", + "pronunciation": "rthyaṃ", + "akshara": true + } + ], + "gloss": "sameness of aim or object or meaning or signification, belonging or agreeing together, adequacy" + }, + { + "text": "ततो", + "units": [], + "pronunciation": "tato", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "chiefly Ved. a father, RV. viii, 91" + }, + { + "text": "दुःखतरं", + "units": [], + "pronunciation": "duḥkhataraṃ", + "segments": [ + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "gloss": "greater pain, a greater evil than, Nal. xi" + }, + { + "text": "नु", + "units": [], + "pronunciation": "nu", + "segments": [ + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + } + ] + }, + { + "text": "किम्", + "units": [], + "pronunciation": "kim", + "segments": [ + { + "text": "कि", + "pronunciation": "ki", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.36 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३६॥", + "units": [], + "gloss": "verse 2.36 ends", + "segments": [ + { + "text": "३६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-37a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "हतो", + "units": [], + "pronunciation": "hato", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "winter" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "प्राप्स्यसि", + "units": [], + "pronunciation": "prāpsyasi", + "segments": [ + { + "text": "प्रा", + "pronunciation": "prā", + "akshara": true + }, + { + "text": "प्स्य", + "pronunciation": "psya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "before + to reach, overtake, meet with", + "note": "padaccheda: pra (before) + Ap (to reach, overtake, meet with)" + }, + { + "text": "स्वर्गं", + "units": [], + "pronunciation": "svargaṃ", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "र्गं", + "pronunciation": "rgaṃ", + "akshara": true + } + ], + "gloss": "going or leading to or being in light or heaven, heavenly, celestial" + }, + { + "text": "जित्वा", + "units": [], + "pronunciation": "jitvā", + "segments": [ + { + "text": "जि", + "pronunciation": "ji", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to win or acquire, conquer, vanquish" + }, + { + "text": "वा", + "units": [], + "pronunciation": "vā", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + } + ], + "gloss": "or" + }, + { + "text": "भोक्ष्यसे", + "units": [], + "pronunciation": "bhokṣyase", + "segments": [ + { + "text": "भो", + "pronunciation": "bho", + "akshara": true + }, + { + "text": "क्ष्य", + "pronunciation": "kṣya", + "akshara": true + }, + { + "text": "से", + "pronunciation": "se", + "akshara": true + } + ], + "gloss": "to bend, curve" + }, + { + "text": "महीम्", + "units": [], + "pronunciation": "mahīm", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "ही", + "pronunciation": "hī", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "great, strong, powerful mighty" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-37b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्मादुत्तिष्ठ", + "units": [], + "pronunciation": "tasmāduttiṣṭha", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "दु", + "pronunciation": "du", + "akshara": true + }, + { + "text": "त्ति", + "pronunciation": "tti", + "akshara": true + }, + { + "text": "ष्ठ", + "pronunciation": "ṣṭha", + "akshara": true + } + ], + "gloss": "that; he, she, it + a particle of doubt or deliberation + to stand, stand firmly, station one's self", + "note": "padaccheda: tad (that; he, she, it) + ut (a particle of doubt or deliberation) + sTA (to stand, stand firmly, station one's self)" + }, + { + "text": "कौन्तेय", + "units": [], + "pronunciation": "kaunteya", + "segments": [ + { + "text": "कौ", + "pronunciation": "kau", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "O son of Kuntī — Arjuna" + }, + { + "text": "युद्धाय", + "units": [], + "pronunciation": "yuddhāya", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "द्धा", + "pronunciation": "ddhā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "fought, encountered, conquered" + }, + { + "text": "कृतनिश्चयः", + "units": [], + "pronunciation": "kṛtaniścayaḥ", + "segments": [ + { + "text": "कृ", + "pronunciation": "kṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "यः", + "pronunciation": "yaḥ", + "akshara": true + } + ], + "gloss": "determined or resolved on, R. iii, 50" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.37 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३७॥", + "units": [], + "gloss": "verse 2.37 ends", + "segments": [ + { + "text": "३७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-38a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सुखदुःखे", + "units": [], + "pronunciation": "sukhaduḥkhe", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "खे", + "pronunciation": "khe", + "akshara": true + } + ], + "gloss": "du. pleasure and pain, joy and sorrow, KauṣUp" + }, + { + "text": "समे", + "units": [], + "pronunciation": "same", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मे", + "pronunciation": "me", + "akshara": true + } + ], + "gloss": "any, every" + }, + { + "text": "कृत्वा", + "units": [], + "pronunciation": "kṛtvā", + "segments": [ + { + "text": "कृ", + "pronunciation": "kṛ", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to make mention of, praise, speak highly of" + }, + { + "text": "लाभालाभौ", + "units": [], + "pronunciation": "lābhālābhau", + "segments": [ + { + "text": "ला", + "pronunciation": "lā", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "ला", + "pronunciation": "lā", + "akshara": true + }, + { + "text": "भौ", + "pronunciation": "bhau", + "akshara": true + } + ], + "gloss": "du. profit and loss, gain and detriment, Mn. ix" + }, + { + "text": "जयाजयौ", + "units": [], + "pronunciation": "jayājayau", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "यौ", + "pronunciation": "yau", + "akshara": true + } + ], + "gloss": "du. victory and defeat, Bhag. ii, 38" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-38b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "ततो", + "units": [], + "pronunciation": "tato", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "chiefly Ved. a father, RV. viii, 91" + }, + { + "text": "युद्धाय", + "units": [], + "pronunciation": "yuddhāya", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "द्धा", + "pronunciation": "ddhā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "fought, encountered, conquered" + }, + { + "text": "युज्यस्व", + "units": [], + "pronunciation": "yujyasva", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "ज्य", + "pronunciation": "jya", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + } + ], + "gloss": "to yoke or join or fasten or harness, RV. &c. &c" + }, + { + "text": "नैवं", + "units": [], + "pronunciation": "naivaṃ", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "वं", + "pronunciation": "vaṃ", + "akshara": true + } + ], + "gloss": "thin, spare + thus, in this way, in such a manner", + "note": "padaccheda: nA (thin, spare) + evam (thus, in this way, in such a manner)" + }, + { + "text": "पापमवाप्स्यसि", + "units": [], + "pronunciation": "pāpamavāpsyasi", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "प्स्य", + "pronunciation": "psya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "bad, vicious, wicked + a bond + to reach, overtake, meet with", + "note": "padaccheda: pApa (bad, vicious, wicked) + mu (a bond) + Ap (to reach, overtake, meet with)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.38 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३८॥", + "units": [], + "gloss": "verse 2.38 ends", + "segments": [ + { + "text": "३८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-39a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "एषा", + "units": [], + "pronunciation": "eṣā", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "षा", + "pronunciation": "ṣā", + "akshara": true + } + ], + "gloss": "this" + }, + { + "text": "तेऽभिहिता", + "units": [], + "pronunciation": "tebhihitā", + "segments": [ + { + "text": "तेऽ", + "pronunciation": "te", + "akshara": true + }, + { + "text": "भि", + "pronunciation": "bhi", + "akshara": true + }, + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "that; he, she, it + harnessed or put to", + "note": "padaccheda: tad (that; he, she, it) + aBihita (harnessed or put to)" + }, + { + "text": "सांख्ये", + "units": [], + "pronunciation": "sāṃkhye", + "segments": [ + { + "text": "सां", + "pronunciation": "sāṃ", + "akshara": true + }, + { + "text": "ख्ये", + "pronunciation": "khye", + "akshara": true + } + ], + "gloss": "numeral, relating to number" + }, + { + "text": "बुद्धिर्योगे", + "units": [], + "pronunciation": "buddhiryoge", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "र्यो", + "pronunciation": "ryo", + "akshara": true + }, + { + "text": "गे", + "pronunciation": "ge", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + the act of yoking, joining, attaching", + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + yoga (the act of yoking, joining, attaching)" + }, + { + "text": "त्विमां", + "units": [], + "pronunciation": "tvimāṃ", + "segments": [ + { + "text": "त्वि", + "pronunciation": "tvi", + "akshara": true + }, + { + "text": "मां", + "pronunciation": "māṃ", + "akshara": true + } + ], + "gloss": "one, several + base of the first person pl, as used in comp", + "note": "padaccheda: tva (one, several) + asmad (base of the first person pl, as used in comp)" + }, + { + "text": "शृणु", + "units": [], + "pronunciation": "śṛṇu", + "segments": [ + { + "text": "शृ", + "pronunciation": "śṛ", + "akshara": true + }, + { + "text": "णु", + "pronunciation": "ṇu", + "akshara": true + } + ], + "gloss": "to hear, listen or attend to anything, give ear to any one" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-39b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "बुद्ध्या", + "units": [], + "pronunciation": "buddhyā", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्ध्या", + "pronunciation": "ddhyā", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "text": "युक्तो", + "units": [], + "pronunciation": "yukto", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्तो", + "pronunciation": "kto", + "akshara": true + } + ] + }, + { + "text": "यया", + "units": [], + "pronunciation": "yayā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "कर्मबन्धं", + "units": [], + "pronunciation": "karmabandhaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "न्धं", + "pronunciation": "ndhaṃ", + "akshara": true + } + ], + "gloss": "the bonds of action, Bhag. ii, 39" + }, + { + "text": "प्रहास्यसि", + "units": [], + "pronunciation": "prahāsyasi", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "hA Ā, -jihIte, to drive off + to be, live, exist", + "note": "padaccheda: prahA (hA Ā, -jihIte, to drive off) + as (to be, live, exist)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.39 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "३९॥", + "units": [], + "gloss": "verse 2.39 ends", + "segments": [ + { + "text": "३९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-40a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नेहाभिक्रमनाशोऽस्ति", + "units": [], + "pronunciation": "nehābhikramanāśosti", + "segments": [ + { + "text": "ने", + "pronunciation": "ne", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "भि", + "pronunciation": "bhi", + "akshara": true + }, + { + "text": "क्र", + "pronunciation": "kra", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शोऽ", + "pronunciation": "śo", + "akshara": true + }, + { + "text": "स्ति", + "pronunciation": "sti", + "akshara": true + } + ], + "gloss": "to bind, tie, fasten + unsuccessful effort + to be, live, exist", + "note": "padaccheda: nah (to bind, tie, fasten) + aBikramanASa (unsuccessful effort) + as (to be, live, exist)" + }, + { + "text": "प्रत्यवायो", + "units": [], + "pronunciation": "pratyavāyo", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + } + ], + "gloss": "decrease, diminution, KātyŚr" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "विद्यते", + "units": [], + "pronunciation": "vidyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to know, understand, perceive" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-40b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्वल्पमप्यस्य", + "units": [], + "pronunciation": "svalpamapyasya", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "ल्प", + "pronunciation": "lpa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "प्य", + "pronunciation": "pya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "very small or little, minute, very few + mf n being in water, coming from water, connected with water", + "note": "padaccheda: svalpa (very small or little, minute, very few) + apya (mf n being in water, coming from water, connected with water)" + }, + { + "text": "धर्मस्य", + "units": [], + "pronunciation": "dharmasya", + "segments": [ + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "that which is established or firm, steadfast decree, statute" + }, + { + "text": "त्रायते", + "units": [], + "pronunciation": "trāyate", + "segments": [ + { + "text": "त्रा", + "pronunciation": "trā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to protect, preserve, cherish" + }, + { + "text": "महतो", + "units": [], + "pronunciation": "mahato", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "to elate, gladden, exalt" + }, + { + "text": "भयात्", + "units": [], + "pronunciation": "bhayāt", + "segments": [ + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "त्", + "pronunciation": "t", + "akshara": true + } + ], + "gloss": "fear, alarm, dread apprehension" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.40 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४०॥", + "units": [], + "gloss": "verse 2.40 ends", + "segments": [ + { + "text": "४०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-41a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "व्यवसायात्मिका", + "units": [], + "pronunciation": "vyavasāyātmikā", + "segments": [ + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "त्मि", + "pronunciation": "tmi", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + } + ], + "gloss": "full of resolve or energy, energetic, laborious" + }, + { + "text": "बुद्धिरेकेह", + "units": [], + "pronunciation": "buddhirekeha", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "रे", + "pronunciation": "re", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + } + ], + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + reka (&c. See p. 887, col. 1) + aha (surely, certainly)" + }, + { + "text": "कुरुनन्दन", + "units": [], + "pronunciation": "kurunandana", + "segments": [ + { + "text": "कु", + "pronunciation": "ku", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "न्द", + "pronunciation": "nda", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "a descendant of Kuru, Bhag. &c" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-41b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "बहुशाखा", + "units": [], + "pronunciation": "bahuśākhā", + "segments": [ + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "हु", + "pronunciation": "hu", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "खा", + "pronunciation": "khā", + "akshara": true + } + ], + "gloss": "‘many-branched’, having many branches or ramifications, multifarious" + }, + { + "text": "ह्यनन्ताश्च", + "units": [], + "pronunciation": "hyanantāśca", + "segments": [ + { + "text": "ह्य", + "pronunciation": "hya", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "न्ता", + "pronunciation": "ntā", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + } + ], + "note": "padaccheda: hI (ah! oh! alas l &c) + anantA (endless, boundless, eternal) + ca (and)" + }, + { + "text": "बुद्धयोऽव्यवसायिनाम्", + "units": [], + "pronunciation": "buddhayovyavasāyinām", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्ध", + "pronunciation": "ddha", + "akshara": true + }, + { + "text": "योऽ", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "यि", + "pronunciation": "yi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + inactive, negligent, remiss", + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + avyavasAyin (inactive, negligent, remiss)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.41 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४१॥", + "units": [], + "gloss": "verse 2.41 ends", + "segments": [ + { + "text": "४१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-42a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यामिमां", + "units": [], + "pronunciation": "yāmimāṃ", + "segments": [ + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "मां", + "pronunciation": "māṃ", + "akshara": true + } + ], + "gloss": "a goer or mover + base of the first person pl, as used in comp", + "note": "padaccheda: yA (a goer or mover) + asmad (base of the first person pl, as used in comp)" + }, + { + "text": "पुष्पितां", + "units": [], + "pronunciation": "puṣpitāṃ", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "ष्पि", + "pronunciation": "ṣpi", + "akshara": true + }, + { + "text": "तां", + "pronunciation": "tāṃ", + "akshara": true + } + ], + "gloss": "flowered, bearing flowers, blooming" + }, + { + "text": "वाचं", + "units": [], + "pronunciation": "vācaṃ", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "चं", + "pronunciation": "caṃ", + "akshara": true + } + ], + "gloss": "speech, voice, talk" + }, + { + "text": "प्रवदन्त्यविपश्चितः", + "units": [], + "pronunciation": "pravadantyavipaścitaḥ", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "न्त्य", + "pronunciation": "ntya", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "the side or slope of a mountain, elevation, height + before, in the presence of near + unwise, ignorant, Kauś", + "note": "padaccheda: pravat (the side or slope of a mountain, elevation, height) + anti (before, in the presence of near) + avipaScit (unwise, ignorant, Kauś)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-42b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "वेदवादरताः", + "units": [], + "pronunciation": "vedavādaratāḥ", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "ताः", + "pronunciation": "tāḥ", + "akshara": true + } + ] + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "नान्यदस्तीति", + "units": [], + "pronunciation": "nānyadastīti", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "न्य", + "pronunciation": "nya", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "स्ती", + "pronunciation": "stī", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "not + unexhausted, imperishable + Iti f, plague, distress", + "note": "padaccheda: na (not) + adasta (unexhausted, imperishable) + Iti (Iti f, plague, distress)" + }, + { + "text": "वादिनः", + "units": [], + "pronunciation": "vādinaḥ", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "दि", + "pronunciation": "di", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "saying, discoursing, speaking" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.42 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४२॥", + "units": [], + "gloss": "verse 2.42 ends", + "segments": [ + { + "text": "४२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-43a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कामात्मानः", + "units": [], + "pronunciation": "kāmātmānaḥ", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "त्मा", + "pronunciation": "tmā", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "‘whose very essence is desire’, consisting of desire, indulging one's desires" + }, + { + "text": "स्वर्गपरा", + "units": [], + "pronunciation": "svargaparā", + "segments": [ + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + }, + { + "text": "र्ग", + "pronunciation": "rga", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + } + ], + "gloss": "desirous of heaven" + }, + { + "text": "जन्मकर्मफलप्रदाम्", + "units": [], + "pronunciation": "janmakarmaphalapradām", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "न्म", + "pronunciation": "nma", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "फ", + "pronunciation": "pha", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "birth, production, origin + the fruit or recompense of actions + giving, yielding, offering", + "note": "padaccheda: janman (birth, production, origin) + karmaPala (the fruit or recompense of actions) + prada (giving, yielding, offering)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-43b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "क्रियाविशेषबहुलां", + "units": [], + "pronunciation": "kriyāviśeṣabahulāṃ", + "segments": [ + { + "text": "क्रि", + "pronunciation": "kri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "शे", + "pronunciation": "śe", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "हु", + "pronunciation": "hu", + "akshara": true + }, + { + "text": "लां", + "pronunciation": "lāṃ", + "akshara": true + } + ], + "gloss": "doing, performing, performance + distinction, difference between, GṛŚrS + thick, dense, broad", + "note": "padaccheda: kriyA (doing, performing, performance) + viSeza (distinction, difference between, GṛŚrS) + bahula (thick, dense, broad)" + }, + { + "text": "भोगैश्वर्यगतिं", + "units": [], + "pronunciation": "bhogaiśvaryagatiṃ", + "segments": [ + { + "text": "भो", + "pronunciation": "bho", + "akshara": true + }, + { + "text": "गै", + "pronunciation": "gai", + "akshara": true + }, + { + "text": "श्व", + "pronunciation": "śva", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "तिं", + "pronunciation": "tiṃ", + "akshara": true + } + ], + "gloss": "any winding or curve, coil, RV. &c. &c + the state of being a mighty lord, sovereignty, supremacy + going, moving, gait", + "note": "padaccheda: Boga (any winding or curve, coil, RV. &c. &c) + ESvarya (the state of being a mighty lord, sovereignty, supremacy) + gati (going, moving, gait)" + }, + { + "text": "प्रति", + "units": [], + "pronunciation": "prati", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "towards, near to" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.43 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४३॥", + "units": [], + "gloss": "verse 2.43 ends", + "segments": [ + { + "text": "४३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-44a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "भोगैश्वर्यप्रसक्तानां", + "units": [], + "pronunciation": "bhogaiśvaryaprasaktānāṃ", + "segments": [ + { + "text": "भो", + "pronunciation": "bho", + "akshara": true + }, + { + "text": "गै", + "pronunciation": "gai", + "akshara": true + }, + { + "text": "श्व", + "pronunciation": "śva", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "क्ता", + "pronunciation": "ktā", + "akshara": true + }, + { + "text": "नां", + "pronunciation": "nāṃ", + "akshara": true + } + ], + "note": "padaccheda: Boga (any winding or curve, coil, RV. &c. &c) + ESvarya (the state of being a mighty lord, sovereignty, supremacy) + prasakta (˚ti. See under pra-)" + }, + { + "text": "तयापहृतचेतसाम्", + "units": [], + "pronunciation": "tayāpahṛtacetasām", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "हृ", + "pronunciation": "hṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "चे", + "pronunciation": "ce", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "that; he, she, it + taken away, carried off, stolen + splendour", + "note": "padaccheda: tad (that; he, she, it) + apahfta (taken away, carried off, stolen) + cetas (splendour)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-44b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "व्यवसायात्मिका", + "units": [], + "pronunciation": "vyavasāyātmikā", + "segments": [ + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "त्मि", + "pronunciation": "tmi", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + } + ], + "gloss": "full of resolve or energy, energetic, laborious" + }, + { + "text": "बुद्धिः", + "units": [], + "pronunciation": "buddhiḥ", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धिः", + "pronunciation": "ddhiḥ", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "text": "समाधौ", + "units": [], + "pronunciation": "samādhau", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "धौ", + "pronunciation": "dhau", + "akshara": true + } + ], + "gloss": "putting together, joining or combining with, Lāṭy" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "विधीयते", + "units": [], + "pronunciation": "vidhīyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "धी", + "pronunciation": "dhī", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: viDi (a worshipper, one who does homage) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.44 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४४॥", + "units": [], + "gloss": "verse 2.44 ends", + "segments": [ + { + "text": "४४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-45a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "त्रैगुण्यविषया", + "units": [], + "pronunciation": "traiguṇyaviṣayā", + "segments": [ + { + "text": "त्रै", + "pronunciation": "trai", + "akshara": true + }, + { + "text": "गु", + "pronunciation": "gu", + "akshara": true + }, + { + "text": "ण्य", + "pronunciation": "ṇya", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + } + ], + "note": "padaccheda: trEguRya (the state of consisting of 3 threads, tripleness, Mn. ii) + vI (to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV) + za (za the second of the three sibilants)" + }, + { + "text": "वेदा", + "units": [], + "pronunciation": "vedā", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "N. of a pupil of Āyoda" + }, + { + "text": "निस्त्रैगुण्यो", + "units": [], + "pronunciation": "nistraiguṇyo", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "स्त्रै", + "pronunciation": "strai", + "akshara": true + }, + { + "text": "गु", + "pronunciation": "gu", + "akshara": true + }, + { + "text": "ण्यो", + "pronunciation": "ṇyo", + "akshara": true + } + ], + "gloss": "destitute of the three Guṇas, Bhag. ii, 45" + }, + { + "text": "भवार्जुन", + "units": [], + "pronunciation": "bhavārjuna", + "segments": [ + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "र्जु", + "pronunciation": "rju", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "coming into existence, birth, production + N. of Indra, Kāṭh. 34, 3", + "note": "padaccheda: Bava (coming into existence, birth, production) + Arjuna (N. of Indra, Kāṭh. 34, 3)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-45b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "निर्द्वन्द्वो", + "units": [], + "pronunciation": "nirdvandvo", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्द्व", + "pronunciation": "rdva", + "akshara": true + }, + { + "text": "न्द्वो", + "pronunciation": "ndvo", + "akshara": true + } + ], + "gloss": "out, forth, away &c + to go: Caus. dAvayati or davayati Actually occurring only in Subj. aor. davizARi, RV. x, 34 + us, or andU, f. the chain for an elephant's feet a ring or chain worn on the ancle", + "note": "padaccheda: nis (out, forth, away &c) + dU (to go: Caus. dAvayati or davayati Actually occurring only in Subj. aor. davizARi, RV. x, 34) + andU (us, or andU, f. the chain for an elephant's feet a ring or chain worn on the ancle)" + }, + { + "text": "नित्यसत्त्वस्थो", + "units": [], + "pronunciation": "nityasattvastho", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "त्त्व", + "pronunciation": "ttva", + "akshara": true + }, + { + "text": "स्थो", + "pronunciation": "stho", + "akshara": true + } + ], + "gloss": "innate, native, MBh. iii + being in the nature", + "note": "padaccheda: nitya (innate, native, MBh. iii) + sattvasTa (being in the nature)" + }, + { + "text": "निर्योगक्षेम", + "units": [], + "pronunciation": "niryogakṣema", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्यो", + "pronunciation": "ryo", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "क्षे", + "pronunciation": "kṣe", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + } + ], + "gloss": "free from care or anxiety about acquisition or possession, Bh. ii, 45" + }, + { + "text": "आत्मवान्", + "units": [], + "pronunciation": "ātmavān", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "त्म", + "pronunciation": "tma", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "having a soul" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.45 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४५॥", + "units": [], + "gloss": "verse 2.45 ends", + "segments": [ + { + "text": "४५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-46a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यावानर्थ", + "units": [], + "pronunciation": "yāvānartha", + "segments": [ + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "Andrographis Paniculata + aim, purpose", + "note": "padaccheda: yAva (Andrographis Paniculata) + arTa (aim, purpose)" + }, + { + "text": "उदपाने", + "units": [], + "pronunciation": "udapāne", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "ने", + "pronunciation": "ne", + "akshara": true + } + ], + "gloss": "a well" + }, + { + "text": "सर्वतः", + "units": [], + "pronunciation": "sarvataḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "from all sides, in every direction, everywhere" + }, + { + "text": "संप्लुतोदके", + "units": [], + "pronunciation": "saṃplutodake", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "प्लु", + "pronunciation": "plu", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "के", + "pronunciation": "ke", + "akshara": true + } + ], + "gloss": "flooded with water" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-46b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तावान्सर्वेषु", + "units": [], + "pronunciation": "tāvānsarveṣu", + "segments": [ + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "न्स", + "pronunciation": "nsa", + "akshara": true + }, + { + "text": "र्वे", + "pronunciation": "rve", + "akshara": true + }, + { + "text": "षु", + "pronunciation": "ṣu", + "akshara": true + } + ], + "gloss": "so great, so large, so much + all, every", + "note": "padaccheda: tAvat (so great, so large, so much) + sarva (all, every)" + }, + { + "text": "वेदेषु", + "units": [], + "pronunciation": "vedeṣu", + "segments": [ + { + "text": "वे", + "pronunciation": "ve", + "akshara": true + }, + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "षु", + "pronunciation": "ṣu", + "akshara": true + } + ], + "gloss": "knowledge, true or sacred knowledge or lore, knowledge of ritual" + }, + { + "text": "ब्राह्मणस्य", + "units": [], + "pronunciation": "brāhmaṇasya", + "segments": [ + { + "text": "ब्रा", + "pronunciation": "brā", + "akshara": true + }, + { + "text": "ह्म", + "pronunciation": "hma", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ] + }, + { + "text": "विजानतः", + "units": [], + "pronunciation": "vijānataḥ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "understanding, knowing &c" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.46 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४६॥", + "units": [], + "gloss": "verse 2.46 ends", + "segments": [ + { + "text": "४६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-47a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कर्मण्येवाधिकारस्ते", + "units": [], + "pronunciation": "karmaṇyevādhikāraste", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "ण्ये", + "pronunciation": "ṇye", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "स्ते", + "pronunciation": "ste", + "akshara": true + } + ], + "note": "padaccheda: karmaRyA (skilful in work, clever, diligent) + av (to drive, impel, animate) + aDikAra (authority) + as (to be, live, exist)" + }, + { + "text": "मा", + "units": [], + "pronunciation": "mā", + "segments": [ + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + } + ], + "gloss": "do not" + }, + { + "text": "फलेषु", + "units": [], + "pronunciation": "phaleṣu", + "segments": [ + { + "text": "फ", + "pronunciation": "pha", + "akshara": true + }, + { + "text": "ले", + "pronunciation": "le", + "akshara": true + }, + { + "text": "षु", + "pronunciation": "ṣu", + "akshara": true + } + ], + "gloss": "fruit, RV. &c. &c" + }, + { + "text": "कदाचन", + "units": [], + "pronunciation": "kadācana", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "to be confused, suffer mentally + N. of a man + not", + "note": "padaccheda: kad (to be confused, suffer mentally) + Aca (N. of a man) + na (not)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-47b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "मा", + "units": [], + "pronunciation": "mā", + "segments": [ + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + } + ], + "gloss": "do not" + }, + { + "text": "कर्मफलहेतुर्भूर्मा", + "units": [], + "pronunciation": "karmaphalaheturbhūrmā", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "फ", + "pronunciation": "pha", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "हे", + "pronunciation": "he", + "akshara": true + }, + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "र्भू", + "pronunciation": "rbhū", + "akshara": true + }, + { + "text": "र्मा", + "pronunciation": "rmā", + "akshara": true + } + ], + "gloss": "one who is actuated by the result of his acts + to become, be, arise + do not", + "note": "padaccheda: karmaPalahetu (one who is actuated by the result of his acts) + BU (to become, be, arise) + mA (do not)" + }, + { + "text": "ते", + "units": [], + "pronunciation": "te", + "segments": [ + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "thy; to thee" + }, + { + "text": "सङ्गोऽस्त्वकर्मणि", + "units": [], + "pronunciation": "saṅgostvakarmaṇi", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ङ्गोऽ", + "pronunciation": "ṅgo", + "akshara": true + }, + { + "text": "स्त्व", + "pronunciation": "stva", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "sticking, clinging to, touch + to be, live, exist + not working", + "note": "padaccheda: saNga (sticking, clinging to, touch) + as (to be, live, exist) + akarman (not working)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.47 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४७॥", + "units": [], + "gloss": "verse 2.47 ends", + "segments": [ + { + "text": "४७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-48a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "योगस्थः", + "units": [], + "pronunciation": "yogasthaḥ", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "स्थः", + "pronunciation": "sthaḥ", + "akshara": true + } + ] + }, + { + "text": "कुरु", + "units": [], + "pronunciation": "kuru", + "segments": [ + { + "text": "कु", + "pronunciation": "ku", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + } + ], + "gloss": "to make mention of, praise, speak highly of" + }, + { + "text": "कर्माणि", + "units": [], + "pronunciation": "karmāṇi", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्मा", + "pronunciation": "rmā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "act, action, performance" + }, + { + "text": "सङ्गं", + "units": [], + "pronunciation": "saṅgaṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ङ्गं", + "pronunciation": "ṅgaṃ", + "akshara": true + } + ], + "gloss": "sticking, clinging to, touch" + }, + { + "text": "त्यक्त्वा", + "units": [], + "pronunciation": "tyaktvā", + "segments": [ + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "क्त्वा", + "pronunciation": "ktvā", + "akshara": true + } + ], + "gloss": "to leave, abandon, quit" + }, + { + "text": "धनंजय", + "units": [], + "pronunciation": "dhanaṃjaya", + "segments": [ + { + "text": "ध", + "pronunciation": "dha", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + }, + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "the prize of a contest or the contest itself + to win or acquire, conquer, vanquish", + "note": "padaccheda: Dana (the prize of a contest or the contest itself) + ji (to win or acquire, conquer, vanquish)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-48b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सिद्ध्यसिद्ध्योः", + "units": [], + "pronunciation": "siddhyasiddhyoḥ", + "segments": [ + { + "text": "सि", + "pronunciation": "si", + "akshara": true + }, + { + "text": "द्ध्य", + "pronunciation": "ddhya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + }, + { + "text": "द्ध्योः", + "pronunciation": "ddhyoḥ", + "akshara": true + } + ], + "gloss": "du. success and misfortune" + }, + { + "text": "समो", + "units": [], + "pronunciation": "samo", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मो", + "pronunciation": "mo", + "akshara": true + } + ], + "gloss": "any, every" + }, + { + "text": "भूत्वा", + "units": [], + "pronunciation": "bhūtvā", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + } + ], + "gloss": "to become, be, arise" + }, + { + "text": "समत्वं", + "units": [], + "pronunciation": "samatvaṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "त्वं", + "pronunciation": "tvaṃ", + "akshara": true + } + ], + "gloss": "equality with, KātyŚr" + }, + { + "text": "योग", + "units": [], + "pronunciation": "yoga", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + } + ], + "gloss": "the act of yoking, joining, attaching" + }, + { + "text": "उच्यते", + "units": [], + "pronunciation": "ucyate", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.48 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४८॥", + "units": [], + "gloss": "verse 2.48 ends", + "segments": [ + { + "text": "४८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-49a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "दूरेण", + "units": [], + "pronunciation": "dūreṇa", + "segments": [ + { + "text": "दू", + "pronunciation": "dū", + "akshara": true + }, + { + "text": "रे", + "pronunciation": "re", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + } + ], + "gloss": "distant, far, remote" + }, + { + "text": "ह्यवरं", + "units": [], + "pronunciation": "hyavaraṃ", + "segments": [ + { + "text": "ह्य", + "pronunciation": "hya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "note": "padaccheda: hI (ah! oh! alas l &c) + vf (to cover, screen, veil)" + }, + { + "text": "कर्म", + "units": [], + "pronunciation": "karma", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + } + ], + "gloss": "act, action, performance" + }, + { + "text": "बुद्धियोगाद्धनंजय", + "units": [], + "pronunciation": "buddhiyogāddhanaṃjaya", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "गा", + "pronunciation": "gā", + "akshara": true + }, + { + "text": "द्ध", + "pronunciation": "ddha", + "akshara": true + }, + { + "text": "नं", + "pronunciation": "naṃ", + "akshara": true + }, + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "devotion of the intellect, intellectual union with the Supreme Spirit, ib + the prize of a contest or the contest itself + to win or acquire, conquer, vanquish", + "note": "padaccheda: budDiyoga (devotion of the intellect, intellectual union with the Supreme Spirit, ib) + Dana (the prize of a contest or the contest itself) + ji (to win or acquire, conquer, vanquish)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-49b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "बुद्धौ", + "units": [], + "pronunciation": "buddhau", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धौ", + "pronunciation": "ddhau", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "text": "शरणमन्विच्छ", + "units": [], + "pronunciation": "śaraṇamanviccha", + "segments": [ + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "न्वि", + "pronunciation": "nvi", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + } + ], + "gloss": "one of the arrows of Kāma-deva + after, along, alongside + to seek, search, BhP. : cl. 4. P. izyati and 9. P. Ā. izRAti to cause to move quickly", + "note": "padaccheda: SaraRa (one of the arrows of Kāma-deva) + anu (after, along, alongside) + iz (to seek, search, BhP. : cl. 4. P. izyati and 9. P. Ā. izRAti to cause to move quickly)" + }, + { + "text": "कृपणाः", + "units": [], + "pronunciation": "kṛpaṇāḥ", + "segments": [ + { + "text": "कृ", + "pronunciation": "kṛ", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "णाः", + "pronunciation": "ṇāḥ", + "akshara": true + } + ], + "gloss": "inclined to grieve, pitiable, miserable" + }, + { + "text": "फलहेतवः", + "units": [], + "pronunciation": "phalahetavaḥ", + "segments": [ + { + "text": "फ", + "pronunciation": "pha", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "हे", + "pronunciation": "he", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "वः", + "pronunciation": "vaḥ", + "akshara": true + } + ] + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.49 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "४९॥", + "units": [], + "gloss": "verse 2.49 ends", + "segments": [ + { + "text": "४९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-50a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "बुद्धियुक्तो", + "units": [], + "pronunciation": "buddhiyukto", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्तो", + "pronunciation": "kto", + "akshara": true + } + ], + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + yukta (yukti &c. See cols. 2, 3)" + }, + { + "text": "जहातीह", + "units": [], + "pronunciation": "jahātīha", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "ती", + "pronunciation": "tī", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + } + ], + "note": "padaccheda: jaha (see SarDam-) + Iha (attempt)" + }, + { + "text": "उभे", + "units": [], + "pronunciation": "ubhe", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "भे", + "pronunciation": "bhe", + "akshara": true + } + ], + "gloss": "e, e mfn. du. both" + }, + { + "text": "सुकृतदुष्कृते", + "units": [], + "pronunciation": "sukṛtaduṣkṛte", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "कृ", + "pronunciation": "kṛ", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "दु", + "pronunciation": "du", + "akshara": true + }, + { + "text": "ष्कृ", + "pronunciation": "ṣkṛ", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "a good or righteous deed, meritorious act, virtue + wrongly or wickedly done, badly arranged or organized or applied, ŚBr. viii", + "note": "padaccheda: sukfta (a good or righteous deed, meritorious act, virtue) + duzkfta (wrongly or wickedly done, badly arranged or organized or applied, ŚBr. viii)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-50b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्माद्योगाय", + "units": [], + "pronunciation": "tasmādyogāya", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "द्यो", + "pronunciation": "dyo", + "akshara": true + }, + { + "text": "गा", + "pronunciation": "gā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "that; he, she, it + the act of yoking, joining, attaching", + "note": "padaccheda: tad (that; he, she, it) + yoga (the act of yoking, joining, attaching)" + }, + { + "text": "युज्यस्व", + "units": [], + "pronunciation": "yujyasva", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "ज्य", + "pronunciation": "jya", + "akshara": true + }, + { + "text": "स्व", + "pronunciation": "sva", + "akshara": true + } + ], + "gloss": "to yoke or join or fasten or harness, RV. &c. &c" + }, + { + "text": "योगः", + "units": [], + "pronunciation": "yogaḥ", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "गः", + "pronunciation": "gaḥ", + "akshara": true + } + ], + "gloss": "the act of yoking, joining, attaching" + }, + { + "text": "कर्मसु", + "units": [], + "pronunciation": "karmasu", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "सु", + "pronunciation": "su", + "akshara": true + } + ], + "gloss": "act, action, performance" + }, + { + "text": "कौशलम्", + "units": [], + "pronunciation": "kauśalam", + "segments": [ + { + "text": "कौ", + "pronunciation": "kau", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "well-being, welfare, good fortune" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.50 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५०॥", + "units": [], + "gloss": "verse 2.50 ends", + "segments": [ + { + "text": "५०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-51a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "कर्मजं", + "units": [], + "pronunciation": "karmajaṃ", + "segments": [ + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "जं", + "pronunciation": "jaṃ", + "akshara": true + } + ], + "gloss": "‘act-born’, resulting or produced from any act, Mn. xii" + }, + { + "text": "बुद्धियुक्ता", + "units": [], + "pronunciation": "buddhiyuktā", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्ता", + "pronunciation": "ktā", + "akshara": true + } + ], + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + yukta (yukti &c. See cols. 2, 3)" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "फलं", + "units": [], + "pronunciation": "phalaṃ", + "segments": [ + { + "text": "फ", + "pronunciation": "pha", + "akshara": true + }, + { + "text": "लं", + "pronunciation": "laṃ", + "akshara": true + } + ], + "gloss": "fruit, RV. &c. &c" + }, + { + "text": "त्यक्त्वा", + "units": [], + "pronunciation": "tyaktvā", + "segments": [ + { + "text": "त्य", + "pronunciation": "tya", + "akshara": true + }, + { + "text": "क्त्वा", + "pronunciation": "ktvā", + "akshara": true + } + ], + "gloss": "to leave, abandon, quit" + }, + { + "text": "मनीषिणः", + "units": [], + "pronunciation": "manīṣiṇaḥ", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "नी", + "pronunciation": "nī", + "akshara": true + }, + { + "text": "षि", + "pronunciation": "ṣi", + "akshara": true + }, + { + "text": "णः", + "pronunciation": "ṇaḥ", + "akshara": true + } + ], + "gloss": "thoughtful, intelligent, wise" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-51b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "जन्मबन्धविनिर्मुक्ताः", + "units": [], + "pronunciation": "janmabandhavinirmuktāḥ", + "segments": [ + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "न्म", + "pronunciation": "nma", + "akshara": true + }, + { + "text": "ब", + "pronunciation": "ba", + "akshara": true + }, + { + "text": "न्ध", + "pronunciation": "ndha", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्मु", + "pronunciation": "rmu", + "akshara": true + }, + { + "text": "क्ताः", + "pronunciation": "ktāḥ", + "akshara": true + } + ], + "gloss": "the fetters of transmigration, Bhag. ii, 51 + liberated, escaped, free or exempt from", + "note": "padaccheda: janmabanDa (the fetters of transmigration, Bhag. ii, 51) + vinirmukta (liberated, escaped, free or exempt from)" + }, + { + "text": "पदं", + "units": [], + "pronunciation": "padaṃ", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "gloss": "a step, pace, stride" + }, + { + "text": "गच्छन्त्यनामयम्", + "units": [], + "pronunciation": "gacchantyanāmayam", + "segments": [ + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + }, + { + "text": "न्त्य", + "pronunciation": "ntya", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "note": "padaccheda: gacCat (pr. p. P. fr. q.v) + nam (to bend or bow, to bow to, subject or submit one's self)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.51 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५१॥", + "units": [], + "gloss": "verse 2.51 ends", + "segments": [ + { + "text": "५१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-52a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यदा", + "units": [], + "pronunciation": "yadā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "when, at what time, whenever" + }, + { + "text": "ते", + "units": [], + "pronunciation": "te", + "segments": [ + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "thy; to thee" + }, + { + "text": "मोहकलिलं", + "units": [], + "pronunciation": "mohakalilaṃ", + "segments": [ + { + "text": "मो", + "pronunciation": "mo", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "क", + "pronunciation": "ka", + "akshara": true + }, + { + "text": "लि", + "pronunciation": "li", + "akshara": true + }, + { + "text": "लं", + "pronunciation": "laṃ", + "akshara": true + } + ], + "gloss": "thicket or snare of illusion" + }, + { + "text": "बुद्धिर्व्यतितरिष्यति", + "units": [], + "pronunciation": "buddhirvyatitariṣyati", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "र्व्य", + "pronunciation": "rvya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "रि", + "pronunciation": "ri", + "akshara": true + }, + { + "text": "ष्य", + "pronunciation": "ṣya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + a horse + to pass across or over, cross over, sail across", + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + vyati (a horse) + tF (to pass across or over, cross over, sail across)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-52b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तदा", + "units": [], + "pronunciation": "tadā", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "at that time, then, in that case" + }, + { + "text": "गन्तासि", + "units": [], + "pronunciation": "gantāsi", + "segments": [ + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "न्ता", + "pronunciation": "ntā", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "to go, move, go away" + }, + { + "text": "निर्वेदं", + "units": [], + "pronunciation": "nirvedaṃ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्वे", + "pronunciation": "rve", + "akshara": true + }, + { + "text": "दं", + "pronunciation": "daṃ", + "akshara": true + } + ], + "gloss": "not having the Vedas, infidel, unscriptural" + }, + { + "text": "श्रोतव्यस्य", + "units": [], + "pronunciation": "śrotavyasya", + "segments": [ + { + "text": "श्रो", + "pronunciation": "śro", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "व्य", + "pronunciation": "vya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ] + }, + { + "text": "श्रुतस्य", + "units": [], + "pronunciation": "śrutasya", + "segments": [ + { + "text": "श्रु", + "pronunciation": "śru", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "heard, listened to, heard about or of" + }, + { + "text": "च", + "units": [], + "pronunciation": "ca", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "and" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.52 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५२॥", + "units": [], + "gloss": "verse 2.52 ends", + "segments": [ + { + "text": "५२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-53a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "श्रुतिविप्रतिपन्ना", + "units": [], + "pronunciation": "śrutivipratipannā", + "segments": [ + { + "text": "श्रु", + "pronunciation": "śru", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "न्ना", + "pronunciation": "nnā", + "akshara": true + } + ], + "gloss": "dissenting from the Veda or sacred tradition, disregarding the doctrine of the Veda" + }, + { + "text": "ते", + "units": [], + "pronunciation": "te", + "segments": [ + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "thy; to thee" + }, + { + "text": "यदा", + "units": [], + "pronunciation": "yadā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "when, at what time, whenever" + }, + { + "text": "स्थास्यति", + "units": [], + "pronunciation": "sthāsyati", + "segments": [ + { + "text": "स्था", + "pronunciation": "sthā", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to stand, stand firmly, station one's self" + }, + { + "text": "निश्चला", + "units": [], + "pronunciation": "niścalā", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "ला", + "pronunciation": "lā", + "akshara": true + } + ], + "gloss": "motionless, immovable, fixed" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-53b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "समाधावचला", + "units": [], + "pronunciation": "samādhāvacalā", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "धा", + "pronunciation": "dhā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "ला", + "pronunciation": "lā", + "akshara": true + } + ], + "gloss": "putting together, joining or combining with, Lāṭy + not moving, immovable", + "note": "padaccheda: samADi (putting together, joining or combining with, Lāṭy) + acalA (not moving, immovable)" + }, + { + "text": "बुद्धिस्तदा", + "units": [], + "pronunciation": "buddhistadā", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + at that time, then, in that case", + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + tadA (at that time, then, in that case)" + }, + { + "text": "योगमवाप्स्यसि", + "units": [], + "pronunciation": "yogamavāpsyasi", + "segments": [ + { + "text": "यो", + "pronunciation": "yo", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "प्स्य", + "pronunciation": "psya", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "gloss": "the act of yoking, joining, attaching + to drive, impel, animate + to reach, overtake, meet with", + "note": "padaccheda: yoga (the act of yoking, joining, attaching) + av (to drive, impel, animate) + Ap (to reach, overtake, meet with)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.53 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५३॥", + "units": [], + "gloss": "verse 2.53 ends", + "segments": [ + { + "text": "५३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-54s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "अर्जुन", + "units": [], + "pronunciation": "arjuna", + "segments": [ + { + "text": "अ", + "pronunciation": "a", + "akshara": true + }, + { + "text": "र्जु", + "pronunciation": "rju", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "Arjuna" + }, + { + "text": "उवाच", + "units": [], + "pronunciation": "uvāca", + "segments": [ + { + "text": "उ", + "pronunciation": "u", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + } + ] + } + ] + }, + { + "id": "bg2t1-54a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्थितप्रज्ञस्य", + "units": [], + "pronunciation": "sthitaprajñasya", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञ", + "pronunciation": "jña", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "firm in judgement and wisdom, calm, contented" + }, + { + "text": "का", + "units": [], + "pronunciation": "kā", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "भाषा", + "units": [], + "pronunciation": "bhāṣā", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "षा", + "pronunciation": "ṣā", + "akshara": true + } + ], + "gloss": "speech, language" + }, + { + "text": "समाधिस्थस्य", + "units": [], + "pronunciation": "samādhisthasya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "स्थ", + "pronunciation": "stha", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ] + }, + { + "text": "केशव", + "units": [], + "pronunciation": "keśava", + "segments": [ + { + "text": "के", + "pronunciation": "ke", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "Keśava — Kṛṣṇa" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-54b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्थितधीः", + "units": [], + "pronunciation": "sthitadhīḥ", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "धीः", + "pronunciation": "dhīḥ", + "akshara": true + } + ], + "gloss": "steady-minded, firm, unmoved" + }, + { + "text": "किं", + "units": [], + "pronunciation": "kiṃ", + "segments": [ + { + "text": "किं", + "pronunciation": "kiṃ", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "प्रभाषेत", + "units": [], + "pronunciation": "prabhāṣeta", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "षे", + "pronunciation": "ṣe", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "before + to speak, talk, say", + "note": "padaccheda: pra (before) + BAz (to speak, talk, say)" + }, + { + "text": "किमासीत", + "units": [], + "pronunciation": "kimāsīta", + "segments": [ + { + "text": "कि", + "pronunciation": "ki", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "सी", + "pronunciation": "sī", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "note": "padaccheda: kim (what? how? whence? wherefore? why?) + As (Ah! Oh! &c)" + }, + { + "text": "व्रजेत", + "units": [], + "pronunciation": "vrajeta", + "segments": [ + { + "text": "व्र", + "pronunciation": "vra", + "akshara": true + }, + { + "text": "जे", + "pronunciation": "je", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ], + "gloss": "to go, walk, proceed" + }, + { + "text": "किम्", + "units": [], + "pronunciation": "kim", + "segments": [ + { + "text": "कि", + "pronunciation": "ki", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "what? how? whence? wherefore? why?" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.54 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५४॥", + "units": [], + "gloss": "verse 2.54 ends", + "segments": [ + { + "text": "५४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-55s", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "श्रीभगवानुवाच", + "units": [], + "pronunciation": "śrībhagavānuvāca", + "segments": [ + { + "text": "श्री", + "pronunciation": "śrī", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + } + ], + "gloss": "to mix, mingle, cook + the Blessed One + to speak, say, tell", + "note": "padaccheda: SrI (to mix, mingle, cook) + Bagavat (the Blessed One) + vac (to speak, say, tell)" + } + ] + } + ] + }, + { + "id": "bg2t1-55a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "प्रजहाति", + "units": [], + "pronunciation": "prajahāti", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज", + "pronunciation": "ja", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: pra (before) + hA (a form of Śiva or Bhairava)" + }, + { + "text": "यदा", + "units": [], + "pronunciation": "yadā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "when, at what time, whenever" + }, + { + "text": "कामान्सर्वान्पार्थ", + "units": [], + "pronunciation": "kāmānsarvānpārtha", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "न्स", + "pronunciation": "nsa", + "akshara": true + }, + { + "text": "र्वा", + "pronunciation": "rvā", + "akshara": true + }, + { + "text": "न्पा", + "pronunciation": "npā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "wish, desire, longing + all, every + O son of Pṛthā — Arjuna", + "note": "padaccheda: kAma (wish, desire, longing) + sarva (all, every) + pArTa (O son of Pṛthā — Arjuna)" + }, + { + "text": "मनोगतान्", + "units": [], + "pronunciation": "manogatān", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "नो", + "pronunciation": "no", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "‘mind-gone’, existing or passing or concealed in the mind or heart" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-55b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आत्मन्येवात्मना", + "units": [], + "pronunciation": "ātmanyevātmanā", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "त्म", + "pronunciation": "tma", + "akshara": true + }, + { + "text": "न्ये", + "pronunciation": "nye", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "त्म", + "pronunciation": "tma", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + } + ], + "gloss": "the breath + just, only + the vital breath, RV. i, 63", + "note": "padaccheda: Atman (the breath) + eva (just, only) + tmanA (the vital breath, RV. i, 63)" + }, + { + "text": "तुष्टः", + "units": [], + "pronunciation": "tuṣṭaḥ", + "segments": [ + { + "text": "तु", + "pronunciation": "tu", + "akshara": true + }, + { + "text": "ष्टः", + "pronunciation": "ṣṭaḥ", + "akshara": true + } + ], + "gloss": "satisfied, pleased, MBh. &c" + }, + { + "text": "स्थितप्रज्ञस्तदोच्यते", + "units": [], + "pronunciation": "sthitaprajñastadocyate", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञ", + "pronunciation": "jña", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "दो", + "pronunciation": "do", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "firm in judgement and wisdom, calm, contented + at that time, then, in that case + to speak, say, tell", + "note": "padaccheda: sTitaprajYa (firm in judgement and wisdom, calm, contented) + tadA (at that time, then, in that case) + vac (to speak, say, tell)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.55 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५५॥", + "units": [], + "gloss": "verse 2.55 ends", + "segments": [ + { + "text": "५५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-56a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "दुःखेष्वनुद्विग्नमनाः", + "units": [], + "pronunciation": "duḥkheṣvanudvignamanāḥ", + "segments": [ + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "खे", + "pronunciation": "khe", + "akshara": true + }, + { + "text": "ष्व", + "pronunciation": "ṣva", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + }, + { + "text": "द्वि", + "pronunciation": "dvi", + "akshara": true + }, + { + "text": "ग्न", + "pronunciation": "gna", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "नाः", + "pronunciation": "nāḥ", + "akshara": true + } + ], + "gloss": "uneasy, uncomfortable, unpleasant + free from apprehension or perplexity, easy in mind, Mṛcch. &c + mind, intellect, intelligence", + "note": "padaccheda: duHKa (uneasy, uncomfortable, unpleasant) + anudvigna (free from apprehension or perplexity, easy in mind, Mṛcch. &c) + manas (mind, intellect, intelligence)" + }, + { + "text": "सुखेषु", + "units": [], + "pronunciation": "sukheṣu", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "खे", + "pronunciation": "khe", + "akshara": true + }, + { + "text": "षु", + "pronunciation": "ṣu", + "akshara": true + } + ], + "gloss": "see suKa s.v" + }, + { + "text": "विगतस्पृहः", + "units": [], + "pronunciation": "vigataspṛhaḥ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्पृ", + "pronunciation": "spṛ", + "akshara": true + }, + { + "text": "हः", + "pronunciation": "haḥ", + "akshara": true + } + ], + "gloss": "devoid of wish or desire, indifferent" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-56b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "वीतरागभयक्रोधः", + "units": [], + "pronunciation": "vītarāgabhayakrodhaḥ", + "segments": [ + { + "text": "वी", + "pronunciation": "vī", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "क्रो", + "pronunciation": "kro", + "akshara": true + }, + { + "text": "धः", + "pronunciation": "dhaḥ", + "akshara": true + } + ], + "gloss": "free from passions and fear and anger" + }, + { + "text": "स्थितधीर्मुनिरुच्यते", + "units": [], + "pronunciation": "sthitadhīrmunirucyate", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "धी", + "pronunciation": "dhī", + "akshara": true + }, + { + "text": "र्मु", + "pronunciation": "rmu", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "च्य", + "pronunciation": "cya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "steady-minded, firm, unmoved + sage, silent one + to speak, say, tell", + "note": "padaccheda: sTitaDI (steady-minded, firm, unmoved) + muni (sage, silent one) + vac (to speak, say, tell)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.56 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५६॥", + "units": [], + "gloss": "verse 2.56 ends", + "segments": [ + { + "text": "५६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-57a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यः", + "units": [], + "pronunciation": "yaḥ", + "segments": [ + { + "text": "यः", + "pronunciation": "yaḥ", + "akshara": true + } + ], + "gloss": "who, which, what" + }, + { + "text": "सर्वत्रानभिस्नेहस्तत्तत्प्राप्य", + "units": [], + "pronunciation": "sarvatrānabhisnehastattatprāpya", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "त्रा", + "pronunciation": "trā", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "भि", + "pronunciation": "bhi", + "akshara": true + }, + { + "text": "स्ने", + "pronunciation": "sne", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "त्त", + "pronunciation": "tta", + "akshara": true + }, + { + "text": "त्प्रा", + "pronunciation": "tprā", + "akshara": true + }, + { + "text": "प्य", + "pronunciation": "pya", + "akshara": true + } + ], + "note": "padaccheda: sarvatra (everywhere, in every case, always) + anaBisneha (without affection, cold, unimpassioned) + tad (that; he, she, it) + tad (that; he, she, it) + prApya (to be reached, attainable, acquirable)" + }, + { + "text": "शुभाशुभम्", + "units": [], + "pronunciation": "śubhāśubham", + "segments": [ + { + "text": "शु", + "pronunciation": "śu", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "शु", + "pronunciation": "śu", + "akshara": true + }, + { + "text": "भ", + "pronunciation": "bha", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "pleasant and unpleasant, agreeable and disagreeable, prosperous and unfortunate" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-57b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नाभिनन्दति", + "units": [], + "pronunciation": "nābhinandati", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "भि", + "pronunciation": "bhi", + "akshara": true + }, + { + "text": "न", + "pronunciation": "na", + "akshara": true + }, + { + "text": "न्द", + "pronunciation": "nda", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "the navel, a navel-like cavity, RV. &c. &c + to rejoice, delight, to be pleased or satisfied with", + "note": "padaccheda: nABi (the navel, a navel-like cavity, RV. &c. &c) + nand (to rejoice, delight, to be pleased or satisfied with)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "द्वेष्टि", + "units": [], + "pronunciation": "dveṣṭi", + "segments": [ + { + "text": "द्वे", + "pronunciation": "dve", + "akshara": true + }, + { + "text": "ष्टि", + "pronunciation": "ṣṭi", + "akshara": true + } + ], + "gloss": "dviz in comp. for dvis below" + }, + { + "text": "तस्य", + "units": [], + "pronunciation": "tasya", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "प्रज्ञा", + "units": [], + "pronunciation": "prajñā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञा", + "pronunciation": "jñā", + "akshara": true + } + ], + "gloss": "to know, understand, discern" + }, + { + "text": "प्रतिष्ठिता", + "units": [], + "pronunciation": "pratiṣṭhitā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठि", + "pronunciation": "ṣṭhi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "standing, stationed, placed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.57 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५७॥", + "units": [], + "gloss": "verse 2.57 ends", + "segments": [ + { + "text": "५७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-58a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यदा", + "units": [], + "pronunciation": "yadā", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "दा", + "pronunciation": "dā", + "akshara": true + } + ], + "gloss": "when, at what time, whenever" + }, + { + "text": "संहरते", + "units": [], + "pronunciation": "saṃharate", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: saMhara (˚raRa. See saM-) + tad (that; he, she, it)" + }, + { + "text": "चायं", + "units": [], + "pronunciation": "cāyaṃ", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "and + going", + "note": "padaccheda: ca (and) + ya (going)" + }, + { + "text": "कूर्मोऽङ्गानीव", + "units": [], + "pronunciation": "kūrmoṅgānīva", + "segments": [ + { + "text": "कू", + "pronunciation": "kū", + "akshara": true + }, + { + "text": "र्मोऽ", + "pronunciation": "rmo", + "akshara": true + }, + { + "text": "ङ्गा", + "pronunciation": "ṅgā", + "akshara": true + }, + { + "text": "नी", + "pronunciation": "nī", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + } + ], + "gloss": "a tortoise, turtle + a particle implying attention, assent or desire, and sometimes impatience + a species of tree", + "note": "padaccheda: kUrma (a tortoise, turtle) + aNga (a particle implying attention, assent or desire, and sometimes impatience) + nIva (a species of tree)" + }, + { + "text": "सर्वशः", + "units": [], + "pronunciation": "sarvaśaḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "शः", + "pronunciation": "śaḥ", + "akshara": true + } + ], + "gloss": "wholly, completely, entirely" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-58b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य", + "units": [], + "pronunciation": "indriyāṇīndriyārthebhyastasya", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णी", + "pronunciation": "ṇī", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "र्थे", + "pronunciation": "rthe", + "akshara": true + }, + { + "text": "भ्य", + "pronunciation": "bhya", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "fit for or belonging to or agreeable to Indra + an object of sense, anything exciting the senses + that; he, she, it", + "note": "padaccheda: indriya (fit for or belonging to or agreeable to Indra) + indriyArTa (an object of sense, anything exciting the senses) + tad (that; he, she, it)" + }, + { + "text": "प्रज्ञा", + "units": [], + "pronunciation": "prajñā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञा", + "pronunciation": "jñā", + "akshara": true + } + ], + "gloss": "to know, understand, discern" + }, + { + "text": "प्रतिष्ठिता", + "units": [], + "pronunciation": "pratiṣṭhitā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठि", + "pronunciation": "ṣṭhi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "standing, stationed, placed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.58 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५८॥", + "units": [], + "gloss": "verse 2.58 ends", + "segments": [ + { + "text": "५८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-59a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "विषया", + "units": [], + "pronunciation": "viṣayā", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + } + ], + "gloss": "a servant, attendant + going", + "note": "padaccheda: viza (a servant, attendant) + ya (going)" + }, + { + "text": "विनिवर्तन्ते", + "units": [], + "pronunciation": "vinivartante", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "र्त", + "pronunciation": "rta", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + } + ], + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + vft surrounding, enclosing, obstructing", + "note": "padaccheda: vI (to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV) + vft (vft surrounding, enclosing, obstructing)" + }, + { + "text": "निराहारस्य", + "units": [], + "pronunciation": "nirāhārasya", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "want of food, fasting, Yājñ" + }, + { + "text": "देहिनः", + "units": [], + "pronunciation": "dehinaḥ", + "segments": [ + { + "text": "दे", + "pronunciation": "de", + "akshara": true + }, + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "having a body, corporeal" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-59b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "रसवर्जं", + "units": [], + "pronunciation": "rasavarjaṃ", + "segments": [ + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "र्जं", + "pronunciation": "rjaṃ", + "akshara": true + } + ], + "gloss": "avoidance of tastes or flavours" + }, + { + "text": "रसोऽप्यस्य", + "units": [], + "pronunciation": "rasopyasya", + "segments": [ + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "सोऽ", + "pronunciation": "so", + "akshara": true + }, + { + "text": "प्य", + "pronunciation": "pya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "the sap or juice of plants, juice of fruit, any liquid or fluid + mf n being in water, coming from water, connected with water", + "note": "padaccheda: rasa (the sap or juice of plants, juice of fruit, any liquid or fluid) + apya (mf n being in water, coming from water, connected with water)" + }, + { + "text": "परं", + "units": [], + "pronunciation": "paraṃ", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "रं", + "pronunciation": "raṃ", + "akshara": true + } + ], + "gloss": "far, distant, remote" + }, + { + "text": "दृष्ट्वा", + "units": [], + "pronunciation": "dṛṣṭvā", + "segments": [ + { + "text": "दृ", + "pronunciation": "dṛ", + "akshara": true + }, + { + "text": "ष्ट्वा", + "pronunciation": "ṣṭvā", + "akshara": true + } + ], + "gloss": "to see, behold, look at" + }, + { + "text": "निवर्तते", + "units": [], + "pronunciation": "nivartate", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "र्त", + "pronunciation": "rta", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: nivarta (&c. See ni-vft) + tad (that; he, she, it)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.59 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "५९॥", + "units": [], + "gloss": "verse 2.59 ends", + "segments": [ + { + "text": "५९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-60a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यततो", + "units": [], + "pronunciation": "yatato", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "who, which, what + from this, than this", + "note": "padaccheda: yad (who, which, what) + atas (from this, than this)" + }, + { + "text": "ह्यपि", + "units": [], + "pronunciation": "hyapi", + "segments": [ + { + "text": "ह्य", + "pronunciation": "hya", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "note": "padaccheda: hI (ah! oh! alas l &c) + api (also, even)" + }, + { + "text": "कौन्तेय", + "units": [], + "pronunciation": "kaunteya", + "segments": [ + { + "text": "कौ", + "pronunciation": "kau", + "akshara": true + }, + { + "text": "न्ते", + "pronunciation": "nte", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "O son of Kuntī — Arjuna" + }, + { + "text": "पुरुषस्य", + "units": [], + "pronunciation": "puruṣasya", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "रु", + "pronunciation": "ru", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "rarely f" + }, + { + "text": "विपश्चितः", + "units": [], + "pronunciation": "vipaścitaḥ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "श्चि", + "pronunciation": "ści", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "inspired, wise, learned" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-60b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "इन्द्रियाणि", + "units": [], + "pronunciation": "indriyāṇi", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "fit for or belonging to or agreeable to Indra" + }, + { + "text": "प्रमाथीनि", + "units": [], + "pronunciation": "pramāthīni", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "थी", + "pronunciation": "thī", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "stirring about, tearing, rending" + }, + { + "text": "हरन्ति", + "units": [], + "pronunciation": "haranti", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "gloss": "to take, bear, carry in or on" + }, + { + "text": "प्रसभं", + "units": [], + "pronunciation": "prasabhaṃ", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "भं", + "pronunciation": "bhaṃ", + "akshara": true + } + ], + "gloss": "N. of a variety of the Triṣṭubh metre" + }, + { + "text": "मनः", + "units": [], + "pronunciation": "manaḥ", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "नः", + "pronunciation": "naḥ", + "akshara": true + } + ], + "gloss": "mind, intellect, intelligence" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.60 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६०॥", + "units": [], + "gloss": "verse 2.60 ends", + "segments": [ + { + "text": "६०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-61a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तानि", + "units": [], + "pronunciation": "tāni", + "segments": [ + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "सर्वाणि", + "units": [], + "pronunciation": "sarvāṇi", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्वा", + "pronunciation": "rvā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "all, every" + }, + { + "text": "संयम्य", + "units": [], + "pronunciation": "saṃyamya", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "म्य", + "pronunciation": "mya", + "akshara": true + } + ], + "gloss": "to be checked or restrained or subdued" + }, + { + "text": "युक्त", + "units": [], + "pronunciation": "yukta", + "segments": [ + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्त", + "pronunciation": "kta", + "akshara": true + } + ] + }, + { + "text": "आसीत", + "units": [], + "pronunciation": "āsīta", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "सी", + "pronunciation": "sī", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + } + ] + }, + { + "text": "मत्परः", + "units": [], + "pronunciation": "matparaḥ", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "त्प", + "pronunciation": "tpa", + "akshara": true + }, + { + "text": "रः", + "pronunciation": "raḥ", + "akshara": true + } + ], + "gloss": "mat—parama or mat—parAyaRa, mfn. devoted to me" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-61b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "वशे", + "units": [], + "pronunciation": "vaśe", + "segments": [ + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "शे", + "pronunciation": "śe", + "akshara": true + } + ], + "gloss": "to speak, say, tell" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "यस्येन्द्रियाणि", + "units": [], + "pronunciation": "yasyendriyāṇi", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "स्ये", + "pronunciation": "sye", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णि", + "pronunciation": "ṇi", + "akshara": true + } + ], + "gloss": "to froth up, foam + fit for or belonging to or agreeable to Indra", + "note": "padaccheda: yas (to froth up, foam) + indriya (fit for or belonging to or agreeable to Indra)" + }, + { + "text": "तस्य", + "units": [], + "pronunciation": "tasya", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "प्रज्ञा", + "units": [], + "pronunciation": "prajñā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञा", + "pronunciation": "jñā", + "akshara": true + } + ], + "gloss": "to know, understand, discern" + }, + { + "text": "प्रतिष्ठिता", + "units": [], + "pronunciation": "pratiṣṭhitā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठि", + "pronunciation": "ṣṭhi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "standing, stationed, placed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.61 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६१॥", + "units": [], + "gloss": "verse 2.61 ends", + "segments": [ + { + "text": "६१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-62a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "ध्यायतो", + "units": [], + "pronunciation": "dhyāyato", + "segments": [ + { + "text": "ध्या", + "pronunciation": "dhyā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ] + }, + { + "text": "विषयान्पुंसः", + "units": [], + "pronunciation": "viṣayānpuṃsaḥ", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "न्पुं", + "pronunciation": "npuṃ", + "akshara": true + }, + { + "text": "सः", + "pronunciation": "saḥ", + "akshara": true + } + ], + "note": "padaccheda: vizaya + a (a the first letter of the alphabet) + puMs (to crush, grind, Dhātup. xxxii)" + }, + { + "text": "सङ्गस्तेषूपजायते", + "units": [], + "pronunciation": "saṅgasteṣūpajāyate", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ङ्ग", + "pronunciation": "ṅga", + "akshara": true + }, + { + "text": "स्ते", + "pronunciation": "ste", + "akshara": true + }, + { + "text": "षू", + "pronunciation": "ṣū", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: saNga (sticking, clinging to, touch) + tad (that; he, she, it) + upaja (upa-ja mfn, additional, accessory) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-62b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "सङ्गात्संजायते", + "units": [], + "pronunciation": "saṅgātsaṃjāyate", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "ङ्गा", + "pronunciation": "ṅgā", + "akshara": true + }, + { + "text": "त्सं", + "pronunciation": "tsaṃ", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: saNga (sticking, clinging to, touch) + sam (to be disturbed, Dhātup. xix, 82) + jan (to generate, beget, produce)" + }, + { + "text": "कामः", + "units": [], + "pronunciation": "kāmaḥ", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मः", + "pronunciation": "maḥ", + "akshara": true + } + ], + "gloss": "wish, desire, longing" + }, + { + "text": "कामात्क्रोधोऽभिजायते", + "units": [], + "pronunciation": "kāmātkrodhobhijāyate", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "त्क्रो", + "pronunciation": "tkro", + "akshara": true + }, + { + "text": "धोऽ", + "pronunciation": "dho", + "akshara": true + }, + { + "text": "भि", + "pronunciation": "bhi", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: kAma (wish, desire, longing) + kroDa (anger, wrath, passion) + aBija (ifc. produced all around) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.62 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६२॥", + "units": [], + "gloss": "verse 2.62 ends", + "segments": [ + { + "text": "६२॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-63a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "क्रोधाद्भवति", + "units": [], + "pronunciation": "krodhādbhavati", + "segments": [ + { + "text": "क्रो", + "pronunciation": "kro", + "akshara": true + }, + { + "text": "धा", + "pronunciation": "dhā", + "akshara": true + }, + { + "text": "द्भ", + "pronunciation": "dbha", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "anger, wrath, passion + to become, be, arise", + "note": "padaccheda: kroDa (anger, wrath, passion) + BU (to become, be, arise)" + }, + { + "text": "संमोहः", + "units": [], + "pronunciation": "saṃmohaḥ", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "मो", + "pronunciation": "mo", + "akshara": true + }, + { + "text": "हः", + "pronunciation": "haḥ", + "akshara": true + } + ], + "gloss": "stupefaction, bewilderment, confusion" + }, + { + "text": "संमोहात्स्मृतिविभ्रमः", + "units": [], + "pronunciation": "saṃmohātsmṛtivibhramaḥ", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "मो", + "pronunciation": "mo", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "त्स्मृ", + "pronunciation": "tsmṛ", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "भ्र", + "pronunciation": "bhra", + "akshara": true + }, + { + "text": "मः", + "pronunciation": "maḥ", + "akshara": true + } + ], + "note": "padaccheda: sammoha (stupefaction, bewilderment, confusion) + smftiviBrama (confusion of m˚)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-63b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्मृतिभ्रंशाद्बुद्धिनाशो", + "units": [], + "pronunciation": "smṛtibhraṃśādbuddhināśo", + "segments": [ + { + "text": "स्मृ", + "pronunciation": "smṛ", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "भ्रं", + "pronunciation": "bhraṃ", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "द्बु", + "pronunciation": "dbu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शो", + "pronunciation": "śo", + "akshara": true + } + ], + "note": "padaccheda: smftiBraMSa (loss of m˚) + budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + aSas (not blessing or wishing well, cursing, hating)" + }, + { + "text": "बुद्धिनाशात्प्रणश्यति", + "units": [], + "pronunciation": "buddhināśātpraṇaśyati", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "त्प्र", + "pronunciation": "tpra", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "श्य", + "pronunciation": "śya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + nASa (attainment) + praRa + SA" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.63 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६३॥", + "units": [], + "gloss": "verse 2.63 ends", + "segments": [ + { + "text": "६३॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-64a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "रागद्वेषवियुक्तैस्तु", + "units": [], + "pronunciation": "rāgadveṣaviyuktaistu", + "segments": [ + { + "text": "रा", + "pronunciation": "rā", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "द्वे", + "pronunciation": "dve", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्तै", + "pronunciation": "ktai", + "akshara": true + }, + { + "text": "स्तु", + "pronunciation": "stu", + "akshara": true + } + ], + "gloss": "du. love and hatred, Mn. xii, 26 + disjoined, detached, separated or delivered from + but", + "note": "padaccheda: rAgadveza (du. love and hatred, Mn. xii, 26) + viyukta (disjoined, detached, separated or delivered from) + tu (but)" + }, + { + "text": "विषयानिन्द्रियैश्चरन्", + "units": [], + "pronunciation": "viṣayānindriyaiścaran", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "ष", + "pronunciation": "ṣa", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "यै", + "pronunciation": "yai", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "note": "padaccheda: vizaya + anindriya (that which is not the senses, the soul, the reason) + carat" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-64b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आत्मवश्यैर्विधेयात्मा", + "units": [], + "pronunciation": "ātmavaśyairvidheyātmā", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "त्म", + "pronunciation": "tma", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "श्यै", + "pronunciation": "śyai", + "akshara": true + }, + { + "text": "र्वि", + "pronunciation": "rvi", + "akshara": true + }, + { + "text": "धे", + "pronunciation": "dhe", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "त्मा", + "pronunciation": "tmā", + "akshara": true + } + ], + "note": "padaccheda: AtmavaSa (dependent on one's own will, Mn. iv, 159 seq) + i (i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c) + viDeyAtman (having the soul subdued or controlled)" + }, + { + "text": "प्रसादमधिगच्छति", + "units": [], + "pronunciation": "prasādamadhigacchati", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness + aDi m, anxiety + to go, move, go away", + "note": "padaccheda: prasAda (← pra-sAda m. . ) clearness, brightness, pellucidness) + aDi (aDi m, anxiety) + gam (to go, move, go away)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.64 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६४॥", + "units": [], + "gloss": "verse 2.64 ends", + "segments": [ + { + "text": "६४॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-65a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "प्रसादे", + "units": [], + "pronunciation": "prasāde", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + }, + { + "text": "दे", + "pronunciation": "de", + "akshara": true + } + ], + "gloss": "← pra-sAda m. . ) clearness, brightness, pellucidness" + }, + { + "text": "सर्वदुःखानां", + "units": [], + "pronunciation": "sarvaduḥkhānāṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "दुः", + "pronunciation": "duḥ", + "akshara": true + }, + { + "text": "खा", + "pronunciation": "khā", + "akshara": true + }, + { + "text": "नां", + "pronunciation": "nāṃ", + "akshara": true + } + ], + "gloss": "minute, thin, fine + free from evil or trouble, propitious", + "note": "padaccheda: saru (minute, thin, fine) + aduHKa (free from evil or trouble, propitious)" + }, + { + "text": "हानिरस्योपजायते", + "units": [], + "pronunciation": "hānirasyopajāyate", + "segments": [ + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "स्यो", + "pronunciation": "syo", + "akshara": true + }, + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "note": "padaccheda: hAni (abandonment, relinquishment) + rasa (the sap or juice of plants, juice of fruit, any liquid or fluid) + vap (to shear, shave, cut off) + jan (to generate, beget, produce)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-65b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "प्रसन्नचेतसो", + "units": [], + "pronunciation": "prasannacetaso", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "न्न", + "pronunciation": "nna", + "akshara": true + }, + { + "text": "चे", + "pronunciation": "ce", + "akshara": true + }, + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "सो", + "pronunciation": "so", + "akshara": true + } + ], + "gloss": "clear, bright, pure + splendour", + "note": "padaccheda: prasanna (clear, bright, pure) + cetas (splendour)" + }, + { + "text": "ह्याशु", + "units": [], + "pronunciation": "hyāśu", + "segments": [ + { + "text": "ह्या", + "pronunciation": "hyā", + "akshara": true + }, + { + "text": "शु", + "pronunciation": "śu", + "akshara": true + } + ], + "note": "padaccheda: ha (ha the thirty-third and last consonant of the Nāgarī alphabet) + Su (to go &c)" + }, + { + "text": "बुद्धिः", + "units": [], + "pronunciation": "buddhiḥ", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धिः", + "pronunciation": "ddhiḥ", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason" + }, + { + "text": "पर्यवतिष्ठते", + "units": [], + "pronunciation": "paryavatiṣṭhate", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठ", + "pronunciation": "ṣṭha", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "round, around, about + to drive, impel, animate + to stand, stand firmly, station one's self", + "note": "padaccheda: pari (round, around, about) + av (to drive, impel, animate) + sTA (to stand, stand firmly, station one's self)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.65 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६५॥", + "units": [], + "gloss": "verse 2.65 ends", + "segments": [ + { + "text": "६५॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-66a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "नास्ति", + "units": [], + "pronunciation": "nāsti", + "segments": [ + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + }, + { + "text": "स्ति", + "pronunciation": "sti", + "akshara": true + } + ], + "gloss": "it is not, there is not" + }, + { + "text": "बुद्धिरयुक्तस्य", + "units": [], + "pronunciation": "buddhirayuktasya", + "segments": [ + { + "text": "बु", + "pronunciation": "bu", + "akshara": true + }, + { + "text": "द्धि", + "pronunciation": "ddhi", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्त", + "pronunciation": "kta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "the power of forming and retaining conceptions and general notions, intelligence, reason + not yoked, RV. x, 27", + "note": "padaccheda: budDi (the power of forming and retaining conceptions and general notions, intelligence, reason) + ayukta (not yoked, RV. x, 27)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चायुक्तस्य", + "units": [], + "pronunciation": "cāyuktasya", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "क्त", + "pronunciation": "kta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "and + joined with, united, applied to", + "note": "padaccheda: ca (and) + Ayukta (joined with, united, applied to)" + }, + { + "text": "भावना", + "units": [], + "pronunciation": "bhāvanā", + "segments": [ + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "ना", + "pronunciation": "nā", + "akshara": true + } + ], + "gloss": "a forest of rays, Ghaṭ" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-66b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "चाभावयतः", + "units": [], + "pronunciation": "cābhāvayataḥ", + "segments": [ + { + "text": "चा", + "pronunciation": "cā", + "akshara": true + }, + { + "text": "भा", + "pronunciation": "bhā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "and + unconscious, unwise", + "note": "padaccheda: ca (and) + aBAvayat (unconscious, unwise)" + }, + { + "text": "शान्तिरशान्तस्य", + "units": [], + "pronunciation": "śāntiraśāntasya", + "segments": [ + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "tranquillity, peace, quiet + unappeased, indomitable, violent", + "note": "padaccheda: SAnti (tranquillity, peace, quiet) + aSAnta (unappeased, indomitable, violent)" + }, + { + "text": "कुतः", + "units": [], + "pronunciation": "kutaḥ", + "segments": [ + { + "text": "कु", + "pronunciation": "ku", + "akshara": true + }, + { + "text": "तः", + "pronunciation": "taḥ", + "akshara": true + } + ], + "gloss": "from whom?, RV. i, 164" + }, + { + "text": "सुखम्", + "units": [], + "pronunciation": "sukham", + "segments": [ + { + "text": "सु", + "pronunciation": "su", + "akshara": true + }, + { + "text": "ख", + "pronunciation": "kha", + "akshara": true + }, + { + "text": "म्", + "pronunciation": "m", + "akshara": true + } + ], + "gloss": "see suKa s.v" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.66 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६६॥", + "units": [], + "gloss": "verse 2.66 ends", + "segments": [ + { + "text": "६६॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-67a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "इन्द्रियाणां", + "units": [], + "pronunciation": "indriyāṇāṃ", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णां", + "pronunciation": "ṇāṃ", + "akshara": true + } + ], + "gloss": "fit for or belonging to or agreeable to Indra" + }, + { + "text": "हि", + "units": [], + "pronunciation": "hi", + "segments": [ + { + "text": "हि", + "pronunciation": "hi", + "akshara": true + } + ], + "gloss": "for, indeed" + }, + { + "text": "चरतां", + "units": [], + "pronunciation": "caratāṃ", + "segments": [ + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "तां", + "pronunciation": "tāṃ", + "akshara": true + } + ], + "gloss": "to move one's self, go, walk" + }, + { + "text": "यन्मनोऽनु", + "units": [], + "pronunciation": "yanmanonu", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "न्म", + "pronunciation": "nma", + "akshara": true + }, + { + "text": "नोऽ", + "pronunciation": "no", + "akshara": true + }, + { + "text": "नु", + "pronunciation": "nu", + "akshara": true + } + ], + "note": "padaccheda: yad (who, which, what) + manu (thinking, wise, intelligent) + nu (nu ind, now, still)" + }, + { + "text": "विधीयते", + "units": [], + "pronunciation": "vidhīyate", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "धी", + "pronunciation": "dhī", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "ते", + "pronunciation": "te", + "akshara": true + } + ], + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to DA", + "note": "padaccheda: vI (to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV) + DI (to DA)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-67b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तदस्य", + "units": [], + "pronunciation": "tadasya", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "द", + "pronunciation": "da", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "that; he, she, it + to be, live, exist", + "note": "padaccheda: tad (that; he, she, it) + as (to be, live, exist)" + }, + { + "text": "हरति", + "units": [], + "pronunciation": "harati", + "segments": [ + { + "text": "ह", + "pronunciation": "ha", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to take, bear, carry in or on" + }, + { + "text": "प्रज्ञां", + "units": [], + "pronunciation": "prajñāṃ", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञां", + "pronunciation": "jñāṃ", + "akshara": true + } + ], + "gloss": "to know, understand, discern" + }, + { + "text": "वायुर्नावमिवाम्भसि", + "units": [], + "pronunciation": "vāyurnāvamivāmbhasi", + "segments": [ + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "यु", + "pronunciation": "yu", + "akshara": true + }, + { + "text": "र्ना", + "pronunciation": "rnā", + "akshara": true + }, + { + "text": "व", + "pronunciation": "va", + "akshara": true + }, + { + "text": "मि", + "pronunciation": "mi", + "akshara": true + }, + { + "text": "वा", + "pronunciation": "vā", + "akshara": true + }, + { + "text": "म्भ", + "pronunciation": "mbha", + "akshara": true + }, + { + "text": "सि", + "pronunciation": "si", + "akshara": true + } + ], + "note": "padaccheda: vAyu (wind, air, RV. &c. &c) + nO (nO encl. acc. dat. gen. du. of 1st pers. pron, RV. &c. &c) + iva (like, as if) + amBas (water, RV. &c, the celestial waters)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.67 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६७॥", + "units": [], + "gloss": "verse 2.67 ends", + "segments": [ + { + "text": "६७॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-68a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तस्माद्यस्य", + "units": [], + "pronunciation": "tasmādyasya", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्मा", + "pronunciation": "smā", + "akshara": true + }, + { + "text": "द्य", + "pronunciation": "dya", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "that; he, she, it + to froth up, foam", + "note": "padaccheda: tad (that; he, she, it) + yas (to froth up, foam)" + }, + { + "text": "महाबाहो", + "units": [], + "pronunciation": "mahābāho", + "segments": [ + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "बा", + "pronunciation": "bā", + "akshara": true + }, + { + "text": "हो", + "pronunciation": "ho", + "akshara": true + } + ], + "gloss": "long-armed" + }, + { + "text": "निगृहीतानि", + "units": [], + "pronunciation": "nigṛhītāni", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "गृ", + "pronunciation": "gṛ", + "akshara": true + }, + { + "text": "ही", + "pronunciation": "hī", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ] + }, + { + "text": "सर्वशः", + "units": [], + "pronunciation": "sarvaśaḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "शः", + "pronunciation": "śaḥ", + "akshara": true + } + ], + "gloss": "wholly, completely, entirely" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-68b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "इन्द्रियाणीन्द्रियार्थेभ्यस्तस्य", + "units": [], + "pronunciation": "indriyāṇīndriyārthebhyastasya", + "segments": [ + { + "text": "इ", + "pronunciation": "i", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "णी", + "pronunciation": "ṇī", + "akshara": true + }, + { + "text": "न्द्रि", + "pronunciation": "ndri", + "akshara": true + }, + { + "text": "या", + "pronunciation": "yā", + "akshara": true + }, + { + "text": "र्थे", + "pronunciation": "rthe", + "akshara": true + }, + { + "text": "भ्य", + "pronunciation": "bhya", + "akshara": true + }, + { + "text": "स्त", + "pronunciation": "sta", + "akshara": true + }, + { + "text": "स्य", + "pronunciation": "sya", + "akshara": true + } + ], + "gloss": "fit for or belonging to or agreeable to Indra + an object of sense, anything exciting the senses + that; he, she, it", + "note": "padaccheda: indriya (fit for or belonging to or agreeable to Indra) + indriyArTa (an object of sense, anything exciting the senses) + tad (that; he, she, it)" + }, + { + "text": "प्रज्ञा", + "units": [], + "pronunciation": "prajñā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ज्ञा", + "pronunciation": "jñā", + "akshara": true + } + ], + "gloss": "to know, understand, discern" + }, + { + "text": "प्रतिष्ठिता", + "units": [], + "pronunciation": "pratiṣṭhitā", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठि", + "pronunciation": "ṣṭhi", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + } + ], + "gloss": "standing, stationed, placed" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.68 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६८॥", + "units": [], + "gloss": "verse 2.68 ends", + "segments": [ + { + "text": "६८॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-69a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "या", + "units": [], + "pronunciation": "yā", + "segments": [ + { + "text": "या", + "pronunciation": "yā", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "निशा", + "units": [], + "pronunciation": "niśā", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + } + ], + "gloss": "night, GṛŚrS" + }, + { + "text": "सर्वभूतानां", + "units": [], + "pronunciation": "sarvabhūtānāṃ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्व", + "pronunciation": "rva", + "akshara": true + }, + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नां", + "pronunciation": "nāṃ", + "akshara": true + } + ], + "gloss": "being everywhere" + }, + { + "text": "तस्यां", + "units": [], + "pronunciation": "tasyāṃ", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "स्यां", + "pronunciation": "syāṃ", + "akshara": true + } + ], + "gloss": "that; he, she, it" + }, + { + "text": "जागर्ति", + "units": [], + "pronunciation": "jāgarti", + "segments": [ + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "र्ति", + "pronunciation": "rti", + "akshara": true + } + ], + "gloss": "to be awake or watchful" + }, + { + "text": "संयमी", + "units": [], + "pronunciation": "saṃyamī", + "segments": [ + { + "text": "सं", + "pronunciation": "saṃ", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "मी", + "pronunciation": "mī", + "akshara": true + } + ], + "gloss": "who or what restrains or curbs or subdues" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-69b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "यस्यां", + "units": [], + "pronunciation": "yasyāṃ", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "स्यां", + "pronunciation": "syāṃ", + "akshara": true + } + ], + "gloss": "who, which, what" + }, + { + "text": "जाग्रति", + "units": [], + "pronunciation": "jāgrati", + "segments": [ + { + "text": "जा", + "pronunciation": "jā", + "akshara": true + }, + { + "text": "ग्र", + "pronunciation": "gra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to be awake or watchful" + }, + { + "text": "भूतानि", + "units": [], + "pronunciation": "bhūtāni", + "segments": [ + { + "text": "भू", + "pronunciation": "bhū", + "akshara": true + }, + { + "text": "ता", + "pronunciation": "tā", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + } + ], + "gloss": "become, been, gone" + }, + { + "text": "सा", + "units": [], + "pronunciation": "sā", + "segments": [ + { + "text": "सा", + "pronunciation": "sā", + "akshara": true + } + ], + "gloss": "she" + }, + { + "text": "निशा", + "units": [], + "pronunciation": "niśā", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + } + ], + "gloss": "night, GṛŚrS" + }, + { + "text": "पश्यतो", + "units": [], + "pronunciation": "paśyato", + "segments": [ + { + "text": "प", + "pronunciation": "pa", + "akshara": true + }, + { + "text": "श्य", + "pronunciation": "śya", + "akshara": true + }, + { + "text": "तो", + "pronunciation": "to", + "akshara": true + } + ], + "gloss": "to see, behold, look at" + }, + { + "text": "मुनेः", + "units": [], + "pronunciation": "muneḥ", + "segments": [ + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "नेः", + "pronunciation": "neḥ", + "akshara": true + } + ], + "gloss": "sage, silent one" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.69 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "६९॥", + "units": [], + "gloss": "verse 2.69 ends", + "segments": [ + { + "text": "६९॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-70a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "आपूर्यमाणमचलप्रतिष्ठं", + "units": [], + "pronunciation": "āpūryamāṇamacalapratiṣṭhaṃ", + "segments": [ + { + "text": "आ", + "pronunciation": "ā", + "akshara": true + }, + { + "text": "पू", + "pronunciation": "pū", + "akshara": true + }, + { + "text": "र्य", + "pronunciation": "rya", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "च", + "pronunciation": "ca", + "akshara": true + }, + { + "text": "ल", + "pronunciation": "la", + "akshara": true + }, + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + }, + { + "text": "ष्ठं", + "pronunciation": "ṣṭhaṃ", + "akshara": true + } + ], + "gloss": "becoming full, increasing + not moving, immovable + standing firmly, steadfast", + "note": "padaccheda: ApUryamARa (becoming full, increasing) + acala (not moving, immovable) + pratizWa (standing firmly, steadfast)" + }, + { + "text": "समुद्रमापः", + "units": [], + "pronunciation": "samudramāpaḥ", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "द्र", + "pronunciation": "dra", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "पः", + "pronunciation": "paḥ", + "akshara": true + } + ], + "gloss": "N. of two plants + to reach, overtake, meet with", + "note": "padaccheda: samudra (N. of two plants) + Ap (to reach, overtake, meet with)" + }, + { + "text": "प्रविशन्ति", + "units": [], + "pronunciation": "praviśanti", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "note": "padaccheda: pra (before) + viS (to go, Dhātup. xvii, 71 ← viS cl. 6. P. viSati)" + }, + { + "text": "यद्वत्", + "units": [], + "pronunciation": "yadvat", + "segments": [ + { + "text": "य", + "pronunciation": "ya", + "akshara": true + }, + { + "text": "द्व", + "pronunciation": "dva", + "akshara": true + }, + { + "text": "त्", + "pronunciation": "t", + "akshara": true + } + ], + "gloss": "in which way, as" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-70b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "तद्वत्कामा", + "units": [], + "pronunciation": "tadvatkāmā", + "segments": [ + { + "text": "त", + "pronunciation": "ta", + "akshara": true + }, + { + "text": "द्व", + "pronunciation": "dva", + "akshara": true + }, + { + "text": "त्का", + "pronunciation": "tkā", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + } + ], + "gloss": "having or containing that + wish, desire, longing", + "note": "padaccheda: tadvat (having or containing that) + kAma (wish, desire, longing)" + }, + { + "text": "यं", + "units": [], + "pronunciation": "yaṃ", + "segments": [ + { + "text": "यं", + "pronunciation": "yaṃ", + "akshara": true + } + ], + "gloss": "going" + }, + { + "text": "प्रविशन्ति", + "units": [], + "pronunciation": "praviśanti", + "segments": [ + { + "text": "प्र", + "pronunciation": "pra", + "akshara": true + }, + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "श", + "pronunciation": "śa", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + } + ], + "note": "padaccheda: pra (before) + viS (to go, Dhātup. xvii, 71 ← viS cl. 6. P. viSati)" + }, + { + "text": "सर्वे", + "units": [], + "pronunciation": "sarve", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्वे", + "pronunciation": "rve", + "akshara": true + } + ], + "gloss": "all, every" + }, + { + "text": "स", + "units": [], + "pronunciation": "sa", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + } + ], + "gloss": "he" + }, + { + "text": "शान्तिमाप्नोति", + "units": [], + "pronunciation": "śāntimāpnoti", + "segments": [ + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "प्नो", + "pronunciation": "pno", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "tranquillity, peace, quiet + to reach, overtake, meet with", + "note": "padaccheda: SAnti (tranquillity, peace, quiet) + Ap (to reach, overtake, meet with)" + }, + { + "text": "न", + "units": [], + "pronunciation": "na", + "segments": [ + { + "text": "न", + "pronunciation": "na", + "akshara": true + } + ], + "gloss": "not" + }, + { + "text": "कामकामी", + "units": [], + "pronunciation": "kāmakāmī", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मी", + "pronunciation": "mī", + "akshara": true + } + ], + "gloss": "wish, desire, longing + desirous, longing after", + "note": "padaccheda: kAma (wish, desire, longing) + kAmin (desirous, longing after)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.70 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "७०॥", + "units": [], + "gloss": "verse 2.70 ends", + "segments": [ + { + "text": "७०॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-71a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "विहाय", + "units": [], + "pronunciation": "vihāya", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "हा", + "pronunciation": "hā", + "akshara": true + }, + { + "text": "य", + "pronunciation": "ya", + "akshara": true + } + ], + "gloss": "leaving behind i.e. at a distance from" + }, + { + "text": "कामान्यः", + "units": [], + "pronunciation": "kāmānyaḥ", + "segments": [ + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "मा", + "pronunciation": "mā", + "akshara": true + }, + { + "text": "न्यः", + "pronunciation": "nyaḥ", + "akshara": true + } + ], + "note": "padaccheda: ka (ka as, m. N. of Prajāpati or of a Prajāpati, VS. xx) + AmAna" + }, + { + "text": "सर्वान्", + "units": [], + "pronunciation": "sarvān", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + }, + { + "text": "र्वा", + "pronunciation": "rvā", + "akshara": true + }, + { + "text": "न्", + "pronunciation": "n", + "akshara": true + } + ], + "gloss": "all, every" + }, + { + "text": "पुमांश्चरति", + "units": [], + "pronunciation": "pumāṃścarati", + "segments": [ + { + "text": "पु", + "pronunciation": "pu", + "akshara": true + }, + { + "text": "मां", + "pronunciation": "māṃ", + "akshara": true + }, + { + "text": "श्च", + "pronunciation": "śca", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: puMs (to crush, grind, Dhātup. xxxii) + car (to move one's self, go, walk)" + }, + { + "text": "निःस्पृहः", + "units": [], + "pronunciation": "niḥspṛhaḥ", + "segments": [ + { + "text": "निः", + "pronunciation": "niḥ", + "akshara": true + }, + { + "text": "स्पृ", + "pronunciation": "spṛ", + "akshara": true + }, + { + "text": "हः", + "pronunciation": "haḥ", + "akshara": true + } + ], + "gloss": "free from desire, not longing for, abstaining from" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-71b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "निर्ममो", + "units": [], + "pronunciation": "nirmamo", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्म", + "pronunciation": "rma", + "akshara": true + }, + { + "text": "मो", + "pronunciation": "mo", + "akshara": true + } + ], + "gloss": "unselfish, disinterested, free from all worldly connections" + }, + { + "text": "निरहंकारः", + "units": [], + "pronunciation": "nirahaṃkāraḥ", + "segments": [ + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र", + "pronunciation": "ra", + "akshara": true + }, + { + "text": "हं", + "pronunciation": "haṃ", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "रः", + "pronunciation": "raḥ", + "akshara": true + } + ], + "gloss": "free from egotism, unselfish, humble" + }, + { + "text": "स", + "units": [], + "pronunciation": "sa", + "segments": [ + { + "text": "स", + "pronunciation": "sa", + "akshara": true + } + ], + "gloss": "he" + }, + { + "text": "शान्तिमधिगच्छति", + "units": [], + "pronunciation": "śāntimadhigacchati", + "segments": [ + { + "text": "शा", + "pronunciation": "śā", + "akshara": true + }, + { + "text": "न्ति", + "pronunciation": "nti", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "धि", + "pronunciation": "dhi", + "akshara": true + }, + { + "text": "ग", + "pronunciation": "ga", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "tranquillity, peace, quiet + aDi m, anxiety + to go, move, go away", + "note": "padaccheda: SAnti (tranquillity, peace, quiet) + aDi (aDi m, anxiety) + gam (to go, move, go away)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.71 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "७१॥", + "units": [], + "gloss": "verse 2.71 ends", + "segments": [ + { + "text": "७१॥", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-72a", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "एषा", + "units": [], + "pronunciation": "eṣā", + "segments": [ + { + "text": "ए", + "pronunciation": "e", + "akshara": true + }, + { + "text": "षा", + "pronunciation": "ṣā", + "akshara": true + } + ], + "gloss": "this" + }, + { + "text": "ब्राह्मी", + "units": [], + "pronunciation": "brāhmī", + "segments": [ + { + "text": "ब्रा", + "pronunciation": "brā", + "akshara": true + }, + { + "text": "ह्मी", + "pronunciation": "hmī", + "akshara": true + } + ], + "gloss": "relating to Brahmă or Brahmā, holy, sacred" + }, + { + "text": "स्थितिः", + "units": [], + "pronunciation": "sthitiḥ", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "तिः", + "pronunciation": "tiḥ", + "akshara": true + } + ], + "gloss": "standing upright or firmly, not falling" + }, + { + "text": "पार्थ", + "units": [], + "pronunciation": "pārtha", + "segments": [ + { + "text": "पा", + "pronunciation": "pā", + "akshara": true + }, + { + "text": "र्थ", + "pronunciation": "rtha", + "akshara": true + } + ], + "gloss": "O son of Pṛthā — Arjuna" + }, + { + "text": "नैनां", + "units": [], + "pronunciation": "naināṃ", + "segments": [ + { + "text": "नै", + "pronunciation": "nai", + "akshara": true + }, + { + "text": "नां", + "pronunciation": "nāṃ", + "akshara": true + } + ], + "gloss": "thin, spare + ena a pronom. base, he, she", + "note": "padaccheda: nA (thin, spare) + ena (ena a pronom. base, he, she)" + }, + { + "text": "प्राप्य", + "units": [], + "pronunciation": "prāpya", + "segments": [ + { + "text": "प्रा", + "pronunciation": "prā", + "akshara": true + }, + { + "text": "प्य", + "pronunciation": "pya", + "akshara": true + } + ], + "gloss": "to be reached, attainable, acquirable" + }, + { + "text": "विमुह्यति", + "units": [], + "pronunciation": "vimuhyati", + "segments": [ + { + "text": "वि", + "pronunciation": "vi", + "akshara": true + }, + { + "text": "मु", + "pronunciation": "mu", + "akshara": true + }, + { + "text": "ह्य", + "pronunciation": "hya", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "gloss": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV + to become stupefied or unconscious, be bewildered or perplexed, err", + "note": "padaccheda: vI (to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV) + muh (to become stupefied or unconscious, be bewildered or perplexed, err)" + }, + { + "text": "।", + "units": [], + "gloss": "daṇḍa — the line pauses", + "segments": [ + { + "text": "।", + "faint": true + } + ] + } + ] + } + ] + }, + { + "id": "bg2t1-72b", + "units": [], + "renderings": [ + { + "lang": "sa-Deva", + "label": "Sanskrit", + "tokens": [ + { + "text": "स्थित्वास्यामन्तकालेऽपि", + "units": [], + "pronunciation": "sthitvāsyāmantakālepi", + "segments": [ + { + "text": "स्थि", + "pronunciation": "sthi", + "akshara": true + }, + { + "text": "त्वा", + "pronunciation": "tvā", + "akshara": true + }, + { + "text": "स्या", + "pronunciation": "syā", + "akshara": true + }, + { + "text": "म", + "pronunciation": "ma", + "akshara": true + }, + { + "text": "न्त", + "pronunciation": "nta", + "akshara": true + }, + { + "text": "का", + "pronunciation": "kā", + "akshara": true + }, + { + "text": "लेऽ", + "pronunciation": "le", + "akshara": true + }, + { + "text": "पि", + "pronunciation": "pi", + "akshara": true + } + ], + "note": "padaccheda: sTA (to stand, stand firmly, station one's self) + as (to be, live, exist) + antaka (border, boundary) + lepin (besmearing or covering)" + }, + { + "text": "ब्रह्मनिर्वाणमृच्छति", + "units": [], + "pronunciation": "brahmanirvāṇamṛcchati", + "segments": [ + { + "text": "ब्र", + "pronunciation": "bra", + "akshara": true + }, + { + "text": "ह्म", + "pronunciation": "hma", + "akshara": true + }, + { + "text": "नि", + "pronunciation": "ni", + "akshara": true + }, + { + "text": "र्वा", + "pronunciation": "rvā", + "akshara": true + }, + { + "text": "ण", + "pronunciation": "ṇa", + "akshara": true + }, + { + "text": "मृ", + "pronunciation": "mṛ", + "akshara": true + }, + { + "text": "च्छ", + "pronunciation": "ccha", + "akshara": true + }, + { + "text": "ति", + "pronunciation": "ti", + "akshara": true + } + ], + "note": "padaccheda: brahmanirvARa (extinction in Brahmă, absorption into the one self-existent Spirit) + f (f the seventh vowel of the Sanskṛt alphabet and peculiar to it)" + }, + { + "text": "॥२-", + "units": [], + "gloss": "verse 2.72 ends", + "segments": [ + { + "text": "॥२-", + "faint": true + } + ] + }, + { + "text": "७२॥", + "units": [], + "gloss": "verse 2.72 ends", + "segments": [ + { + "text": "७२॥", + "faint": true + } + ] + } + ] + } + ] + } +]; diff --git a/data/gita/mw-cache.json b/data/gita/mw-cache.json new file mode 100644 index 0000000..f0f1608 --- /dev/null +++ b/data/gita/mw-cache.json @@ -0,0 +1,1203 @@ +{ +"tad": "he f. she n. it, that, this, RV. &c", +"taTA": "in that manner, so, thus, RV. &c", +"kfp": "beautiful appearance, beauty, splendour", +"Avizwa": "entered", +"aSrupUrRa": "filled with tears", +"Akula": "confounded, confused, agitated, flurried", +"kzaRa": "any instantaneous point of time, instant, twinkling of an eye, moment", +"kfpA": "N. of a man, RV. viii, 3, 12 and 4", +"vizin": "poisoned, Pañcar", +"danta": "", +"ayam": "this one. See idam", +"vI": "to some in the conjug. tenses substituted for 2. sg. vezi also as Impv. RV", +"za": "za the second of the three sibilants", +"id": "Ved. even, just, only", +"antama": "next, nearest", +"vAkya": "&c. See p. 936, col. 2", +"vac": "to speak, say, tell, utter, announce", +"mU": "to bind, tie, fix, Dhātup. xxii, 71 : Caus. aor. amImavat", +"vAca": "a species of fish", +"maDusUdana": "‘destroyer of honey’, a bee", +"maDu": "sweet, delicious, pleasant, charming", +"sUdana": "putting in order, guiding aright", +"DU": "to shake, agitate, cause to tremble, RV. &c. &c", +"saYjaya": "", +"sat": "being, existing, occurring, happening", +"ji": "to win or acquire, conquer, vanquish, defeat, excel", +"sam": "to be disturbed, Dhātup. xix, 82", +"Aca": "N. of a man", +"kutas": "from whom?, RV. i, 164, 18", +"yuzmad": "the base of the 2nd pers. pron. as used in comp", +"kU": "to sound, make any noise, cry out, moan, cry", +"kaSmala": "foul, dirty, impure", +"mit": "anything set up or erected, a post, pillar", +"am": "quickly, a little", +"vizama": "uneven, rugged, rough", +"viza": "a servant, attendant", +"asmad": "base of the first person pl, as used in comp", +"samupasTita": "approximated, approached, come to", +"upasTita": "come near, approached, arisen, arrived", +"upasTa": "‘the part which is under’, lap, middle or inner part of anything, a well-surrounded or sheltered place", +"anAryajuzwa": "practised, observed, or possessed by non-Āryas", +"asvargya": "not leading to heaven, ŚBr. x", +"akIrtikara": "causing disgrace, disparaging, insulting", +"arjuna": "white, clear", +"svargya": "", +"SrI": "to mix, mingle, cook", +"Bagavat": "&c. See p. 743, col. 3", +"Ba": "Ba aspirate of ba", +"gava": "in comp. before a word beginning with a vowel and ifc. for go, a cow, cattle ←", +"klEbya": "impotence, TS. ii", +"gam": "to go, move, go away, set out, come", +"pArTa": "patr. of Tānva", +"ArTa": "relating to a thing or object", +"pA": "guarding, protecting, ruling", +"etad": "this, this here, here", +"upa": "towards, near to, by the side of, with", +"pad": "to stand fast or fixed, Dhātup. iii, 1, Dhātup. iii, \">4", +"nA": "thin, spare", +"kzudra": "minute, diminutive, tiny, very small", +"kzuD": "to feel hungry, be hungry, RV. i, 104, 7", +"rA": "acquiring, possessing, Naiṣ", +"hfdayadOrbalya": "weakness of h˚, faintheartedness", +"hfdaya": "the heart, soul, mind, RV. &c. &c", +"dOrbalya": "weakness, impotence, MBh. &c", +"aya": "going", +"tyaj": "to leave, abandon, quit, RV. x, 71", +"ut": "a particle of doubt or deliberation", +"sTA": "to stand, stand firmly, station one's self, stand upon, get upon", +"tva": "one, several", +"tti": "‘gift’ . See Baga-", +"parantapa": "", +"para": "far, distant, remote, opposite", +"tap": "to rule, Dhātup. xxvi, 50", +"kaTam": "how? in what manner? whence?", +"BIzma": "terrible, dreadful, ŚBr. &c. &c", +"maha": "great, mighty, strong, abundant", +"ham": "an exclamation expressive of anger or courtesy or respect", +"saMKyA": "to reckon or count up, sum up, enumerate, calculate", +"droRa": "a wooden vessel, bucket, trough &c", +"dra": "AV. xi, 7, 3", +"dru": "to hurt, injure, Dhātup. xxvii, 33", +"izu": "an arrow", +"zu": "or zU, f. child-bearing, parturition, delivery", +"prati": "towards, near to", +"yuD": "to fight, wage war, oppose or overcome in battle", +"yad": "who, which, what, whichever", +"ad": "to eat, consume, devour, Ved. Inf. attave, RV. : Caus. Adayati and ˚te to feed", +"yu": "to separate, keep or drive away, ward off, exclude or protect from", +"pUjArha": "worthy of reverence or honour, venerable, respectable", +"arisUdana": "destroyer of foes", +"varI": "choosing", +"ari": "v.l. for arin below", +"jU": "to press forwards, hurry on, be quick, RV. iii, 33", +"guru": "heavy, weighty, RV. i, 39", +"Una": "wanting, deficient, defective, short of the right quantity", +"han": "to strike, beat, pound, hammer, strike &c. upon", +"gA": "only ifc. singing", +"go": "an ox f. a cow, cattle, kine, herd of cattle", +"mahAnuBAva": "of great might, mighty", +"mah": "to elate, gladden, exalt, arouse, excite", +"anuBAva": "sign or indication of a feeling by look or gesture, Kpr. &c", +"mahat": "great i.e. large, big, huge, ample", +"Sreyas": "more splendid or beautiful, more excellent or distinguished, superior, preferable", +"ayas": "iron, metal, RV. &c", +"Boktu": "", +"aktu": "tinge, ray, light", +"Bu": "", +"BEkzya": "w.r. for BEkza", +"iha": "in this place, here", +"ap": "ap n, work, RV. i, 151", +"Iha": "attempt", +"lok": "to see, behold, perceive : Caus. or cl. 10. lokayati id", +"aka": "aka the suffix aka", +"kim": "what? how? whence? wherefore? why?", +"arTakAma": "du. m. pl. utility and desire, wealth and pleasure", +"kAma": "wish, desire, longing, desire for", +"nih": "", +"nihan": "to strike or fix in, hurl in or upon or against, RV. &c. &c", +"Buj": "to bend, curve", +"jyA": "to overpower, oppress, deprive any one of property", +"jI": "‘sir, mister, Mr.’", +"Boga": "any winding or curve, coil, RV. &c. &c", +"aga": "a snake L", +"ruDirapradigDa": "besmeared with blood", +"vid": "to know, understand, perceive, learn, become or be acquainted with", +"katara": "mfn, who or which of two? whether of two? Analogously to katama above katara may occasionally be used to express ‘who or which of many?’, and may optionally be compounded with the word to which it refers", +"nf": "a man, hero, person", +"garIyas": "heavier", +"garI": "‘swallowing’ See aja-", +"yadvA": "", +"dva": "original stem of dvi, q.v. two, RV. &c. &c", +"ema": "am, eman, a, n. course", +"yadi": "if, in case that, RV. &c. &c. In the earlier language yadi may be joined with Indic. Subj. or Leṭ Pot, or Fut", +"dA": "ifc. giving, granting, offering, effecting", +"no": "", +"yA": "a goer or mover", +"jaya": "ifc. conquering, winning See ftaM-, kftaM-, DanaM-jaya", +"aneva": "otherwise, AV. xvi, 7, 4", +"yAt": "going, moving &c", +"yAna": "leading, conducting", +"av": "to drive, impel, animate", +"jIv": "to live, be or remain alive, RV. &c", +"jijIvizA": "desire to live, MBh. viii, 1790", +"as": "to be, live, exist, be present", +"avasTita": "standing near, placed, having its place or abode, ĀśvŚr", +"stf": "to spread, spread out or about, strew, scatter", +"sTita": "standing", +"pramuKa": "turning the face towards, facing", +"pra": "before", +"muKa": "by means of", +"pram": "See gozpadapram", +"uKa": "a boiler, caldron, vessel, AV. xi", +"DArtarAzwra": "belonging to Dhṛtarāṣṭra", +"Arta": "fallen into, struck by calamity, afflicted, pained", +"rAzwra": "a kingdom, realm, empire, dominion", +"DA": "ifc. placing, putting", +"kArpaRI": "gladness", +"adoza": "faultless, guiltless", +"apahata": "destroyed, warded off, killed", +"svaBAva": "native place, Viṣṇ", +"kArpaRya": "poverty, pitiful circumstances, MBh. &c", +"doza": "evening, darkness", +"upahata": "hit, hurt, damaged, injured", +"praS": "", +"pftanA": "an army or a hostile encounter", +"SAma": "appeasing, curing, having curative properties", +"pfcCA": "asking, questioning, question about", +"Darman": "bearer, supporter, arranger", +"sammUQacetas": "troubled or infatuated in mind, Śāntiś", +"sammUQa": "completely stupefied, astounded, perplexed, bewildered", +"cetas": "splendour", +"mUQacetas": "or mUQa—cetas, mfn. bewildered in mind, foolish, silly", +"sya": "pron. base of 3rd person", +"niScitam": "one who has come to a conclusion or formed a certain opinion, determined to, resolute upon", +"brU": "to speak, say, tell, RV. &c. &c", +"tan": "in comp. for tad", +"Siz": "to hurt, injure, kill, Dhātup. xvii, 36", +"Sizya": "&c. See 1. Sizwa p. 1076, col. 3, and p. 1077, col. 1", +"SAs": "to chastise, correct, censure, punish, RV. &c. &c", +"Sa": "Sa the first of the three sibilants", +"aDi": "aDi m, anxiety", +"Am": "an interjection of assent or recollection", +"prapanna": "arrived at, come to, got into", +"panna": "fallen, fallen down, gone &c", +"pat": "to be master, reign, rule, govern, control", +"ama": "impetuosity, violence, strength, power", +"Ama": "raw, uncooked", +"apanuda": "removing driving away", +"At": "afterwards, then", +"Ap": "to reach, overtake, meet with, fall upon", +"udya": "to be spoken", +"Soka": "&c. See p. 1091, col. 1", +"ucCozaRa": "making dry, parching", +"indriya": "fit for or belonging to or agreeable to Indra", +"yam": "to sustain, hold, hold up, support", +"uka": "", +"mud": "to mix, mingle, blend, unite, Dhātup. xxxiii", +"SozaRa": "drying up, draining, parching, withering", +"avApya": "p. having obtained, Ragh. iii, 33", +"apya": "mf n being in water, coming from water, connected with water", +"BUmi": "the earth, soil, ground, RV. &c. &c", +"asapatna": "not a rival, AV. i, 19, 4", +"fdDa": "increased, thriving, prosperous, abundant", +"mfdDa": "forsaken, helpless", +"BUma": "", +"sapatnI": "a woman who has the same husband with another woman or whose husband has other wives, a fellow-wife or mistress, female rival", +"rAjya": "kingly, princely, royal", +"rAj": "to reign, be king or chief, rule over, direct, govern", +"Ajya": "a descendant of Aja", +"surA": "a god, divinity, deity", +"sur": "to rule, possess supreme or superhuman power, Dhātup. xxviii, 50", +"ADipatya": "supremacy, sovereignty, power, RV. x", +"aDipati": "", +"evam": "thus, in this way, in such a manner, such", +"muc": "to cheat, Dhātup. vi, 12", +"hfzIkeSa": "", +"hfzIka": "an organ of sense", +"Sam": "to toil at, fatigue or exert one's self", +"hfzi": "joy, satisfaction", +"keSa": "the hair of the head", +"guqAkeSa": "‘thick-haired’, the hero Arjuna, MBh. iii, iv", +"guqAkA": "‘sloth’", +"ISa": "owning, possessing, sharing", +"utsya": "coming from a well or fountain, AV. xix, 2, 1", +"sA": "a snake", +"govinda": "‘= -vid ’, Kṛṣṇa", +"vinda": "finding, getting, gaining", +"tUzRIm": "silently, quietly, RV. ii, 43", +"uzRa": "hot, warm", +"Im": "Ved. a particle of affirmation and restriction Im has also the sense ‘now’, and is by, Sāy. sometimes considered as an acc. case for enam", +"BU": "to become, be, arise, come into being, exist", +"prahasat": "laughing, smiling", +"prahasa": "N. of Śiva", +"nI": "nI for nis before r", +"BArata": "descended from Bharata or the Bharatas, RV. &c. &c", +"BAs": "to shine, be bright, RV. &c. &c", +"rata": "rati &c. See under p. 867, cols. 2, 3", +"BAra": "a burden, load, weight, RV. &c. &c", +"senA": "a missile, dart, spear", +"uBa": "e, e mfn. du. both", +"maDya": "middle", +"ina": "able, strong, energetic, determined", +"uBayA": "in both ways, RV. x, 108, 6", +"vacas": "speech, voice, word, RV. &c. &c", +"aSoca": "? = an-ahaMkfti", +"nanu": "See nanu ←", +"Suc": "to shine, flame, gleam, glow, burn", +"aSocya": "id, MBh. &c", +"anu": "after, along, alongside, lengthwise", +"prajYAvAda": "a word of w˚", +"prajYa": "wise, prudent, MāṇḍUp", +"Ada": "See A- dA", +"BAz": "to speak, talk, say, tell, Br. &c. &c", +"BA": "N. of the planet Venus or its regent", +"gatAsu": "one whose breath has gone, expired, dead, RV. x", +"agatAsu": "not dead, alive", +"agata": "not gone", +"asu": "Ved. breath, life", +"Anu": "A- nu Ā. to sound, roar towards or near", +"paRqita": "learned, wise, shrewd, clever", +"dita": "bound", +"iBa": "servants, dependants, domestics, household", +"vAha": "bearing, drawing, conveying, carrying", +"jAtu": "at all, ever, RV. x, 27", +"Atu": "", +"nema": "one, several", +"janADipa": "", +"svajana": "a man of o˚'s own people, kinsman", +"aDipa": "a ruler, commander, regent, king", +"jan": "to generate, beget, produce, create, cause", +"Bavizya": "to be about to become or come to pass, future, imminent, impending", +"sarva": "whole, entire, all, every", +"atas": "from this, than this", +"yama": "a rein, curb, bridle, RV. v", +"-mat": "", +"dehin": "having a body, corporeal", +"yaTA": "in which manner or way, according as, as, like", +"hiMs": "to injure, harm, wound, kill, destroy", +"deha": "the body", +"Ih": "to endeavour to obtain", +"kOmAra": "juvenile, youthful, belonging to a youth or young girl, maiden", +"mAra": "killing, destroying", +"Oma": "", +"ara": "swift, speedy", +"yOvana": "youth, youthfulness, adolescence, puberty", +"vana": "a forest, wood, grove, thicket", +"jarA": "‘becoming old’, see a-jara, ahar-jaram", +"dehAntaraprApti": "obtaining another b˚, transmigration id", +"DIra": "intelligent, wise, skilful, clever", +"tatra": "used for the loc. of tad", +"dehAntara": "another b˚", +"prApti": "advent, occurrence", +"DI": "to DA", +"rasta": "", +"tra": "ifc. ‘protecting’, see aMsa-, aNguli-, Atapa-", +"muh": "to become stupefied or unconscious, be bewildered or perplexed, err, be mistaken, go astray", +"muhyat": "", +"hI": "ah! oh! alas l &c", +"ati": "", +"mAtrAsparSa": "material contact, the concurrence of material elements", +"mAtra": "a Brāhman of the lowest order i.e. only by birth", +"asparSa": "not having the faculty of perception by touch, ŚBr. xiv", +"kOnteya": "metron. fr. Kuntī, N. of Yudhiṣṭhira, Bhīma-sena, and Arjuna", +"anta": "end, limit, boundary, term", +"SItozRa": "cold and hot, GṛŚrS", +"suKaduHKa": "du. pleasure and pain, joy and sorrow, KauṣUp", +"SIta": "cold, cool, chilly, frigid", +"suKa": "see suKa s.v", +"duHKa": "uneasy, uncomfortable, unpleasant, difficult", +"AgamApAyin": "‘coming and going’, transient, Bhag. ii, 14", +"nitya": "innate, native, MBh. iii, 13941", +"tij": "to be or become sharp, RV. i, 55, 1", +"Unita": "lessened, reduced, fewer, less by", +"asta": "asta mfn, thrown, cast, Ragh. xii", +"vyaTayat": "", +"Iti": "Iti f, plague, distress, any calamity of the season", +"puruza": "rarely f", +"puru": "much, many, abundant, RV. &c. &c", +"pu": "cleaning, purifying", +"uz": "to burn, burn down", +"puruzarzaBa": "", +"fzaBa": "as, m, a bull", +"uza": "early morning, dawn, daybreak", +"samaduHKasuKa": "sharing grief and joy with an˚", +"samaduHKa": "feeling pain in common with another, compassionate", +"sama": "any, every", +"Ira": "wind", +"amftatva": "", +"mfta": "dead, deceased, death-like, torpid", +"kxp": "to be well ordered or regulated, be well managed, succeed", +"kalpa": "kalpa mfn, practicable, feasible, possible", +"Asa": "seat", +"viD": "to worship, honour a god with", +"yat": "going, moving, RV. &c. &c", +"aBAva": "nonexistence, nullity, absence", +"uBaya": "both, of both kinds, in both ways, in both manners", +"arapa": "unhurt, VS. viii, 5", +"dfzwa": "seen, looked at, beheld, perceived", +"tattvadarSin": "", +"Um": "an interjection of anger", +"avinASin": "imperishable, ŚBr. xiv", +"avi": "favourable, kindly disposed, AV. v, 1", +"nASin": "perishing, perishable", +"vinASin": "perishing, perishable", +"saru": "minute, thin, fine", +"tata": "chiefly Ved. a father, RV. viii, 91, 5 f", +"vinASa": "utter loss, annihilation, perdition, destruction", +"avyaya": "avyaya or rarely avyaya mfn. made of sheep's skin", +"As": "Ah! Oh! &c", +"vinA": "or vinA ind. without, except, short or exclusive of, AV. xx", +"ASa": "ASa m, reaching, obtaining", +"cid": "cid in comp. for cit", +"kf": "to make mention of, praise, speak highly of", +"arh": "to deserve, merit, be worthy of, to have a claim to, be entitled to", +"cit": "ifc. ‘piling up’, see agni-, UrDva-, and pUrva-cit", +"kartu": "", +"fhat": "small, weak, powerless, RV. x", +"antavat": "having an end or term, limited, perishable, AV. &c", +"tavas": "strong, energetic, courageous", +"ukta": "uttered, said, spoken ukta m. N. of a divine being", +"tyad": "nom. sya, syA, tyad, that", +"SarIrin": "having a body, embodied, corporeal", +"SarI": "a sort of reed or grass, Saccharum Sara, RV. &c. &c", +"IriRa": "desert", +"anASin": "imperishable", +"aprameya": "immeasurable, unlimited, unfathomable, Mn. i", +"prameya": "to be measured, measurable, to be ascertained or proved, provable", +"asva": "having no property", +"sva": "own, one's own, my own, thy own", +"ena": "ena a pronom. base, he, she, it", +"tta": "fr. and dA", +"hantf": "or hantf, mfn. slaying, killing, a slayer", +"Ena": "pl. N. of a people, MBh. xiii", +"man": "in comp. for 1. mad", +"manyat": "", +"jYA": "to know, have knowledge, become acquainted with, perceive, apprehend", +"vijAni": "‘strange, foreign’ or ‘having no wife’, AV. v, 17", +"vij": "to Dhātup. xxix, 23 and xxv, 12 also cl. 7. P. vinakti, and cl. 3. P. Ā. vevekti, vevikte", +"nIta": "led, guided, brought &c, RV. &c. &c", +"nAya": "a leader, guide, RV. vi, 24", +"jAyat": "", +"mf": "to die, decease, RV. &c. &c.: Pass. mriyate, Bhaṭṭ. : Caus. mArayati : Pass. mAryate, to cause to die", +"mriyat": "", +"kadA": "when? at what time?", +"cinna": "", +"kad": "to be confused, suffer mentally", +"Acit": "A- to attend to, keep in mind", +"Bavin": "living, being", +"tA": "a tail, any tail except that of Bos gaurus", +"ita": "ifc. gone", +"BUyas": "becoming", +"aja": "a drove, troop", +"SASvata": "eternal, constant, perpetual, all", +"purARa": "belonging to ancient or olden times, ancient, old, RV. &c. &c", +"pur": "only instr. pl. pUrBis, in abundance, abundantly, RV. v", +"pU": "to make clean or clear or pure or bright, cleanse, purify, purge, clarify", +"rARA": "murmuring", +"hanyamAna": "being killed or slain &c", +"amAna": "", +"SarIra": "", +"Sari": "Sarin. See p. 1056, col. 3", +"rIra": "N. of Śiva", +"veda": "knowledge, true or sacred knowledge or lore, knowledge of ritual", +"vedA": "N. of a pupil of Āyoda", +"vyA": "", +"nam": "to bend or bow, to bow to, subject or submit one's self, RV. &c. &c", +"uzas": "morning light, dawn, morning", +"ruza": "", +"GAta": "ifc. ‘killing’, see amitra-, go-", +"yati": "a disposer, RV. vii, 13, 1", +"ayat": "not making efforts, Bhaṭṭ", +"vAsas": "cloth, clothes, dress, a garment", +"vAsa": "perfuming, perfume", +"si": "to bind, tie, fetter", +"jIrRa": "old, worn out, withered, wasted", +"Ana": "face", +"vihAya": "leaving behind i.e. at a distance from", +"vihA": "hA Ā. -jihIte, to go apart, become expanded, start asunder", +"hA": "a form of Śiva or Bhairava", +"nava": "new, fresh, recent, young", +"grah": "to seize, take, RV. i, 125, 1", +"nara": "a man, a male, a person, TS. &c. &c", +"apara": "having nothing beyond or after, having no rival or superior", +"upara": "situated below, under", +"aRI": "or aRI, f. the point of a needle or of a sharp stake, L. linchpin", +"anya": "anya, am, n. inexhaustibleness, AV. xii", +"anI": "the double panel of a door", +"saMyAta": "gone together, proceeded together, approached, come", +"Cid": "to cut off, amputate, cut through, hew, chop", +"Ci": "abuse", +"dat": "a tooth", +"Sastra": "invocation, praise", +"dah": "to burn, consume by fire, scorch, roast, RV. &c", +"hati": "striking, a stroke or blow with", +"dahat": "", +"pAvaka": "pure, clear, bright, shining", +"avaka": "a grassy plant growing in marshy land", +"kledayat": "", +"klid": "to be or become wet or damp, Suśr", +"Suz": "to dry, become dry or withered, fade, languish, decay", +"Sozayat": "", +"Soza": "&c. See 1. Soza, p. 1092, col. 2", +"mAruta": "or mAruta mfn. relating or belonging to the Maruts, proceeding from or consisting of the M˚s RV. &c. &c", +"ru": "to roar, bellow, howl, yelp, cry aloud", +"aru": "the sun", +"acCedya": "improper or impossible to be cut, indivisible", +"dAhya": "", +"kledya": "See a-kl˚", +"aSozya": "not to be dried up, not drying up, permanent, Bhag. ii", +"adAhya": "incombustible", +"akledya": "not to be wetted", +"sarvaga": "all-pervading, omnipresent", +"gata": "gone, gone away, departed, departed from the world", +"sTARu": "standing firmly, stationary, firm, fixed", +"cal": "to be moved, stir, tremble, shake, quiver", +"sTa": "See p. 1262, col. 3", +"sanAtana": "eternal, perpetual, permanent, everlasting", +"sana": "gain, acquisition", +"tana": "offspring, posterity, i, 39", +"atana": "a passer on Nir", +"avyakta": "undeveloped, not manifest, unapparent, indistinct", +"acintya": "inconceivable, surpassing thought, MaitrS. &c", +"avikAra": "non-change of form or nature, non-alteration", +"cintya": "to be thought about or imagined, ŚvetUp. vi, 2", +"vikArya": "to be changed, liable to change", +"Adeva": "v.l. adeva, q.v", +"tvE": "", +"nityajAta": "constantly born, Bhag. ii, 26", +"jAta": "born, brought into existence by, engendered by, RV. &c", +"at": "a prefix said to imply ‘surprise’, probably a contraction of ati, meaning ‘extraordinary’", +"manas": "mind, intellect, intelligence, understanding", +"mfd": "to press, squeeze, crush, pound, smash", +"taTApi": "", +"mahAbAhu": "long-armed", +"bAha": "the arm = 1. bAhu, Uṇ. i, 28 ", +"has": "to laugh, smile, laugh at, ṢaḍvBr", +"uc": "to take pleasure in, delight in, be fond of RV", +"Druva": "fixed, firm, immovable, unchangeable", +"mftyu": "death, dying, RV. &c", +"janman": "birth, production, origin, RV. iii", +"aparihArya": "id, Gaut. &c", +"arTa": "aim, purpose", +"hf": "to take, bear, carry in or on, carry, convey", +"adIna": "not depressed, noble-minded", +"Adin": "", +"BUta": "become, been, gone, past", +"vyakta": "vy-akti. See cols. 2, 3", +"niDana": "having no property, poor", +"avI": "a woman in her courses", +"akta": "akta mfn, driven", +"paridevanA": "lamentation, bewailing, complaint", +"paridA": "dA P. Ā. -dadAti, -datte, to give, grant", +"parideva": "lamentation", +"AScaryavat": "", +"paSyat": "seeing, beholding &c", +"vad": "to speak, say, utter, tell, report", +"taTEva": "", +"namana": "bending, bowing, Śiś. vi, 30", +"Sru": "to hear, listen or attend to anything, give ear to any one, hear or learn anything about or from, or that anything is", +"Srut": "hearing, listening", +"ApI": "N. of one of the eight demigods called Vasus", +"ada": "or adaka, mfn. chiefly ifc, eating", +"avaDa": "not hurting, innoxious, beneficent, RV. i", +"vaDya": "to be slain or killed, to be capitally punished, to be corporally chastised, sentenced", +"ARi": "the pin of the axle of a cart, RV. i, 35", +"svaDarma": "o˚'s own rights", +"Darma": "that which is established or firm, steadfast decree, statute, ordinance", +"avekzya": "to be attended to, MBh. ii, 2591", +"Ikz": "to see, look, view, behold, look at", +"kamp": "to tremble, shake", +"vika": "N. of a man, Kṣitīś", +"pitu": "juice, drink, nourishment, food", +"Darmya": "legal, legitimate", +"yudDa": "fought, encountered, conquered, subdued", +"kzatriya": "governing, endowed with sovereignty", +"Sreya": "", +"yadfcCa": "spontaneous, accidental", +"fcCA": "See yad-fcCA", +"upapanna": "one who has approached a teacher, Suśr", +"svargadvAra": "heaven's gate", +"apAvft": "unrestrained", +"svarga": "going or leading to or being in light or heaven, heavenly, celestial, AV. &c. &c", +"dvAr": "gate, door, entrance or issue, fig. expedient", +"vft": "vft surrounding, enclosing, obstructing", +"suKin": "possessing or causing happiness or pleasure, happy, joyful, pleasant", +"kzatrI": "sg. and pl. dominion, supremacy, power", +"kza": "kza See dyukza", +"tri": "nom. acc. tisras n. trIRi 3 RV. &c", +"laB": "to take, seize, catch", +"laBat": "", +"IdfS": "endowed with such qualities, such", +"ced": "", +"Darmin": "knowing or obeying the law, faithful to duty, virtuous, pious", +"saNgrAma": "", +"grAma": "an inhabited place, village, hamlet, RV. i", +"gras": "to seize with the mouth, take into the mouth, swallow, devour, eat", +"karizya": "to be done, RV. i, 165, 9", +"riz": "to be hurt or injured, receive harm, suffer wrong, perish, be lost", +"sU": "to Dhātup. xxii, 43 and xxiv, 32 also savati and -sOti", +"aDarma": "unrighteousness, injustice, irreligion, wickedness", +"kIrti": "mention, making mention of, speech", +"pApa": "bad, vicious, wicked, evil", +"mu": "a bond", +"akIrti": "ill-fame, disgrace", +"cApin": "bow-armed, MBh. xii, 10406", +"Api": "an ally, a friend, an acquaintance", +"Uta": "favoured", +"kaT": "to converse with any one", +"kaTA": "conversation, speech, talking together, ĀśvGṛ", +"iz": "to seek, search, BhP. : cl. 4. P. izyati and 9. P. Ā. izRAti to cause to move quickly, let fly, throw", +"vyaya": "passing away, mutable, liable to change or decay", +"samBAvita": "brought together, brought about &c", +"BAvita": "caused to be, created, produced, obtained", +"samBu": "produced from, made of, Yājñ", +"maraRa": "the act of dying, death", +"ric": "to empty, evacuate, leave, give up, resign", +"Baya": "fear, alarm, dread apprehension", +"raRa": "delight, pleasure, gladness, joy", +"uparata": "ceased, stopped, quiet, indifferent", +"raR": "to rejoice, be pleased, take pleasure in", +"maMsyat": "", +"sa": "sa the last of the three sibilants", +"mahAraTa": "a gr˚ chariot", +"mahas": "greatness, might, power, glory", +"raTa": "‘goer’, a chariot, car, esp. a two-wheeled war-chariot", +"IzA": "the pole or shafts of a carriage or plough", +"bahumata": "much thought of, highly esteemed, valued", +"bahu": "much, many, frequent, abundant", +"yAsya": "", +"lAGava": "swiftness, rapidity, speed", +"aGa": "bad, dangerous", +"lA": "N. of Indra", +"avAcya": "not to be addressed, Mn. ii, 128", +"vAda": "speaking of or about", +"cyava": "˚va-tAna˚. See cyu", +"vAhita": "exerted, endeavoured, ib", +"ahitA": "unfit, improper, RV. viii, 62", +"hita": "sent, impelled, urged on, set in motion &c", +"nindat": "", +"sAmarTya": "sameness of aim or object or meaning or signification, belonging or agreeing together, adequacy, accordance", +"arTya": "", +"duHKatara": "greater pain, a greater evil than, Nal. xi, 17 . =", +"tara": "tara an affix forming the compar. degree of adjectives and rarely of substantives, Suśr. i, 20, 11", +"dus": "a prefix to nouns and rarely to verbs or adverbs implying evil, bad, difficult, hard", +"hatu": "winter", +"prA": "to fill", +"apsA": "", +"svar": "to find fault, blame, censure, Dhātup. xxxv, 11", +"arga": "N. of a Ṛṣi of the SV", +"jit": "ifc. winning, acquiring, cf. go- and svar-jit, svarga- &c", +"ukz": "to sprinkle, moisten, wet", +"akz": "to reach, RV. x, 22, 11", +"mahI": "great, strong, powerful mighty, abundant", +"mahi": "mahi in comp. for mahI", +"sman": "", +"dut": "anxiety, uneasiness", +"kftaniScaya": "determined or resolved on, R. iii, 50, 16", +"niScaya": "&c. See niS-ci", +"kft": "only ifc. making, doing, performing, accomplishing", +"ani": "the pin of an axle tree", +"caya": "& 2. caya, &c. See & 3. ci", +"lABAlABa": "du. profit and loss, gain and detriment, Mn. ix, 331", +"lABa": "meeting with, finding", +"alABa": "non-acquirement, Mn. vi, 57", +"jayAjaya": "du. victory and defeat, Bhag. ii, 38", +"ajaya": "non-victory, defeat", +"Aya": "arrival, approach, RV. ii, 38", +"yuj": "to yoke or join or fasten or harness, RV. &c. &c", +"eza": "gliding, running, hastening", +"aBihita": "harnessed or put to", +"iBI": "servants, dependants, domestics, household", +"aBi": "to, towards, into, over", +"sAMKya": "numeral, relating to number", +"aNKya": "", +"budDi": "the power of forming and retaining conceptions and general notions, intelligence, reason, intellect", +"yoga": "the act of yoking, joining, attaching, harnessing", +"buD": "to wake, wake up, be awake, RV. &c. &c", +"yukta": "yukti &c. See cols. 2, 3", +"karmabanDa": "the bonds of action, Bhag. ii, 39", +"karman": "act, action, performance, business", +"banDa": "binding, tying, a bond, tie", +"prahA": "hA Ā, -jihIte, to drive off, haste away", +"prahAsin": "laughing, derisive, satirical", +"nah": "to bind, tie, fasten, bind on or round or together", +"aBikramanASa": "unsuccessful effort", +"aha": "surely, certainly", +"sti": "a dependent, vassal", +"pratyavAya": "decrease, diminution, KātyŚr", +"pratI": "pratI in comp. for prati", +"avAya": "going down, KātyŚr", +"svalpa": "very small or little, minute, very few, short", +"alpa": "small, minute, trifling, little", +"trE": "to protect, preserve, cherish, defend, rescue from", +"tf": "nom. pl. tAras, the stars, RV. viii, 55", +"Ayat": "coming near to", +"vyavasAyAtmaka": "full of resolve or energy, energetic, laborious", +"vyavasAya": "See col. 3", +"Atmaka": "belonging to or forming the nature of, MBh. xv, 926", +"avasa": "Ved. refreshment, food, provisions, viaticum", +"reka": "&c. See p. 887, col. 1", +"eka": "one, RV. &c", +"kurunandana": "a descendant of Kuru, Bhag. &c", +"nandana": "rejoicing, gladdening", +"bahuSAKa": "‘many-branched’, having many branches or ramifications, multifarious, manifold", +"SAKA": "N. of a manifestation of Skanda or of his son", +"hu": "to sacrifice, offer or present an oblation to or in, sacrifice to, worship or honour with, RV. &c. &c", +"anantA": "endless, boundless, eternal, infinite", +"ananta": "endless, boundless, eternal, infinite", +"vyavasAyin": "one who acts resolutely or energetically, resolute, energetic, enterprising", +"avyavasAyin": "inactive, negligent, remiss, Bhag. ii", +"budDa": "budDi. See cols. 2 and 3", +"yAmi": "yAmi = yAmI", +"puzpita": "flowered, bearing flowers, blooming, in bloom", +"puzpin": "bearing flowers, flowering, blossoming, RV. &c. &c", +"vAc": "speech, voice, talk, language", +"pac": "to spread out, make clear or evident, Dhātup. vi, 14 : Caus. -paYcayati, xxxii", +"aYc": "to bend, curve, incline, curl", +"vadat": "", +"avipaScit": "unwise, ignorant, Kauś", +"pravat": "the side or slope of a mountain, elevation, height", +"antI": "an oven", +"vedavAdarata": "delighting in such d˚", +"vedavAda": "id", +"vAdarata": "adhering to or following any partic. proposition or doctrine", +"adasta": "unexhausted, imperishable", +"vAdin": "saying, discoursing, speaking, talking", +"vAt": "g. cAdi", +"kAmAtman": "‘whose very essence is desire’, consisting of desire, indulging one's desires, given to lust", +"Atman": "the breath", +"tman": "the vital breath, RV. i, 63, 8", +"svargapara": "desirous of heaven", +"fc": "to praise, Dhātup. xxviii, 19", +"Palaprada": "bringing profit or a reward", +"karmaPala": "the fruit or recompense of actions", +"prada": "giving, yielding, offering, granting", +"kriyA": "doing, performing, performance, occupation with", +"viSeza": "distinction, difference between, GṛŚrS", +"bahula": "thick, dense, broad, wide", +"aviSeza": "non-distinction, non-difference, uniformity", +"ESvarya": "the state of being a mighty lord, sovereignty, supremacy, power", +"gati": "going, moving, gait, deportment", +"ESvarI": "relating to or coming from a mighty lord or king, mighty powerful, majestic", +"agati": "not going, halting, without resource, helpless", +"prasakta": "˚ti. See under pra-", +"aprasakta": "not addicted, not attached to", +"taya": "g. vfzAdi", +"apahfta": "taken away, carried off, stolen", +"apahft": "taking away", +"acetas": "imprudent", +"Di": "to hold . Prob. formed fr. DA, of which it is the weak form. ←", +"samADi": "putting together, joining or combining with, Lāṭy", +"ADi": "a receptacle, BhP. xi, 13, 33", +"viDi": "a worshipper, one who does homage", +"trEguRya": "the state of consisting of 3 threads, tripleness, Mn. ii, 42", +"vizaya": "", +"idA": "Ved. now, at this moment", +"nistrEguRya": "destitute of the three Guṇas, Bhag. ii, 45", +"nis": "out, forth, away &c", +"guRya": "See guRa", +"Arjuna": "N. of Indra, Kāṭh. 34, 3", +"Bava": "coming into existence, birth, production, origin . = arising or produced from", +"nirdvandva": "", +"dvandva": "", +"dU": "to go: Caus. dAvayati or davayati Actually occurring only in Subj. aor. davizARi, RV. x, 34, 5, ‘na d˚ eBih’", +"sattvasTa": "being in the nature", +"sattva": "being, existence, entity, reality", +"niryogakzema": "free from care or anxiety about acquisition or possession, Bh. ii, 45 ", +"yogakzema": "sg. and pl. the security or secure possession of what has been acquired, the keeping safe of property, welfare, prosperity", +"niryoga": "a decoration", +"kzema": "habitable", +"Atmavat": "having a soul", +"vas": "vas acc. dat. gen. pl. of 2nd pers. pron", +"anarTa": "non-value, a worthless or useless object", +"yAva": "Andrographis Paniculata", +"udapAna": "a well", +"udapa": "helping out of the water Comm. on Uṇ. ii, 58", +"sarvatas": "from all sides, in every direction, everywhere, RV. &c. &c", +"samplutodaka": "flooded with water", +"sampluta": "flowed or streamed together, met", +"udaka": "water", +"tAvat": "so great, so large, so much, so far", +"zU": "or zU, f. child-bearing, parturition, delivery", +"brAhmaRa": "relating to or given by a Brāhman, befitting or becoming a Br˚", +"brAhma": "relating to Brahmă or Brahmā, holy, sacred, divine", +"vijAnat": "understanding, knowing &c", +"jAnat": "pr. p. P, q.v", +"karmaRya": "skilful in work, clever, diligent, RV. i", +"aDikAra": "authority", +"karmaRyA": "skilful in work, clever, diligent, RV. i", +"Pala": "fruit, RV. &c. &c", +"Pal": "to burst, cleave open or asunder, split", +"cana": "", +"kada": "‘water-giver’, a cloud", +"acat": "", +"karmaPalahetu": "one who is actuated by the result of his acts", +"Palahetu": "one who has results for a motive, acting with a view to r˚", +"saNga": "sticking, clinging to, touch, contact with", +"akarman": "not working", +"tvac": "to cover", +"arman": "a disease of the eyes, Suśr", +"yogasTa": "absorbed in Y˚", +"ku": "ku a pronom. base appearing in kutas, kutra, kuvid, kuha", +"DanaMjaya": "", +"Dana": "the prize of a contest or the contest itself", +"naY": "", +"sidDyasidDi": "du. success and misfortune", +"sidDi": "driving off, putting aside, Yājñ", +"asidDa": "imperfect, incomplete, NṛsUp. : unaccomplished, uneffected", +"samatva": "equality with, KātyŚr", +"ucyat": "", +"dUra": "distant, far, remote, long", +"vf": "to cover, screen, veil, conceal, hide", +"budDiyoga": "devotion of the intellect, intellectual union with the Supreme Spirit, ib", +"DanaYjaya": "", +"SaraRa": "one of the arrows of Kāma-deva", +"manu": "thinking, wise, intelligent", +"kfpaRa": "inclined to grieve, pitiable, miserable, poor", +"kfpa": "N. of a man, RV. viii, 3, 12 and 4", +"hetu": "&c. See p. 1303, col. 3", +"Pa": "Pa aspirate of pa", +"budDiyukta": "", +"jaha": "see SarDam-", +"sukfta": "a good or righteous deed, meritorious act, virtue, moral merit", +"duzkfta": "wrongly or wickedly done, badly arranged or organized or applied, ŚBr. viii, 6", +"sukft": "doing good, benevolent, virtuous, pious", +"aduzkft": "not doing evil, RV. iii, 33, 13", +"duzkft": "acting wickedly, criminal, evil-doer", +"kOSala": "well-being, welfare, good fortune, prosperity", +"Sala": "", +"kOSa": "made of Kuśa grass, ŚBr. v", +"karmaja": "‘act-born’, resulting or produced from any act, Mn. xii, 3 and 101", +"manIzin": "thoughtful, intelligent, wise, sage", +"janmabanDa": "the fetters of transmigration, Bhag. ii, 51", +"vinirmukta": "liberated, escaped, free or exempt from", +"nirmukta": "loosed, separated, sundered, liberated or saved or escaped or free from", +"pada": "a step, pace, stride", +"pAda": ") the foot, RV. &c. &c", +"gacCat": "pr. p. P. fr. q.v", +"anA": "hereby, thus, indeed", +"maya": "N. of an Asura", +"yadA": "when, at what time, whenever, RV. &c. &c", +"mohakalila": "thicket or snare of illusion", +"moha": "loss of consciousness, bewilderment, perplexity, distraction", +"kalila": "mixed with, Śiś. xix, 98", +"mohaka": "bewildering, infatuating, causing ignorance or folly", +"lI": "to adhere, obtain", +"vyati": "a horse", +"tF": "to pass across or over, cross over, sail across, RV. &c", +"tadA": "at that time, then, in that case", +"nirveda": "not having the Vedas, infidel, unscriptural", +"Srotavya": "&c. See p. 1103, col. 1", +"avya": "coming from sheep", +"Sruta": "heard, listened to, heard about or of, taught", +"Srutivipratipanna": "dissenting from the Veda or sacred tradition, disregarding the doctrine of the Veda", +"Sruti": "hearing, listening, ŚBr. &c. &c", +"vipratipanna": "gone in different directions &c", +"sTAsyat": "", +"niScala": "motionless, immovable, fixed, steady", +"cala": "moving, trembling, shaking, loose", +"acalA": "not moving, immovable", +"samADA": "to place or put or hold or fix together", +"sTitaprajYa": "firm in judgement and wisdom, calm, contented", +"BAzA": "speech, language", +"samADisTa": "absorbed in m˚, Pañcat", +"keSava": "having long or much or handsome hair, AV. viii, 6, 23", +"Sava": "", +"sTitaDI": "steady-minded, firm, unmoved, calm", +"praBAza": "declaration, doctrine", +"vraj": "to go, walk, proceed, travel, wander", +"vraja": "a way, road", +"praja": "See under pra-", +"hAta": "given up, abandoned", +"manogata": "‘mind-gone’, existing or passing or concealed in the mind or heart", +"manA": "devotion, attachment, zeal, eagerness", +"Atmanya": "being connected with one's self, TāṇḍyaBr", +"tuzwa": "satisfied, pleased, MBh. &c", +"anudvigna": "free from apprehension or perplexity, easy in mind, Mṛcch. &c", +"ana": "an-, occasionally ana-, the substitute for 3. a, or a privative. ←", +"vigataspfha": "devoid of wish or desire, indifferent", +"gataspfha": "having no desire, not finding any pleasure in, R. ii", +"gat": "gata, gati, &c. See", +"aspfha": "undesirous, Mn. vi, 96", +"vItarAgaBayakroDa": "free from passions and fear and anger", +"vItarAga": "free from passions or affections, dispassionate, desireless, calm", +"kroDa": "anger, wrath, passion, VS. xxx", +"rAga": "the act of colouring or dyeing", +"muni": "impulse, eagerness, RV. vii, 56", +"ruc": "to shine, be bright or radiant or resplendent, RV. &c. &c", +"sarvatra": "everywhere, in every case, always, at all times", +"anaBisneha": "without affection, cold, unimpassioned", +"prApya": "to be reached, attainable, acquirable, procurable", +"SuBASuBa": "pleasant and unpleasant, agreeable and disagreeable, prosperous and unfortunate, good and evil", +"SuBa": "splendid, bright, beautiful, handsome", +"aSuBa": "not beautiful or agreeable, disagreeable", +"nABi": "the navel, a navel-like cavity, RV. &c. &c", +"nand": "to rejoice, delight, to be pleased or satisfied with, be glad of, RV. &c. &c.: Pass. nandyate", +"dviz": "dviz in comp. for dvis below", +"izwi": "impulse, acceleration, hurry", +"ezwa": "obtained by offerings or oblations, VS. v, 7", +"prajYA": "to know, understand, discern, distinguish, know about", +"jYa": "jYa for 1. jYu. See UrDva-", +"pratizWita": "standing, stationed, placed, situated in or on", +"pratizWa": "standing firmly, steadfast", +"saMhara": "˚raRa. See saM-", +"kUrma": "a tortoise, turtle", +"aNga": "a particle implying attention, assent or desire, and sometimes impatience", +"nIva": "a species of tree", +"aNg": "to go", +"sarvaSas": "wholly, completely, entirely, thoroughly", +"aSas": "not blessing or wishing well, cursing, hating, RV. ii", +"indriyArTa": "an object of sense, anything exciting the senses", +"aByasta": "accumulated by repeated practice, Suśr", +"nivarta": "&c. See ni-vft", +"varta": "subsistence, livelihood", +"nirAhAra": "want of food, fasting, Yājñ", +"nirAha": "call, exclamation, TāṇḍBr", +"rasa": "the sap or juice of plants, juice of fruit, any liquid or fluid, the best or finest or prime part of anything", +"rasavarjam": "avoidance of tastes or flavours", +"varja": "free from, devoid of, excluding, with the exception of MBh", +"upya": "to be scattered or sown, KātyŚr", +"rasA": "the sap or juice of plants, juice of fruit, any liquid or fluid, the best or finest or prime part of anything", +"yata": "See under p. 845", +"om": "a word of solemn affirmation and respectful assent, sometimes translated by ‘yes, verily, so be it’", +"vipaScit": "inspired, wise, learned, versed in or acquainted with", +"vipas": "inspiration", +"pramATin": "stirring about, tearing, rending, troubling", +"anti": "before, in the presence of near", +"ranti": "a fighter, warrior, RV. vii, 18", +"prasaBa": "N. of a variety of the Triṣṭubh metre", +"saBA": "an assembly, congregation, meeting, council", +"saMyamya": "to be checked or restrained or subdued", +"matpara": "mat—parama or mat—parAyaRa, mfn. devoted to me", +"SI": "to lie, lie down, recline, rest, repose", +"yasya": "to be endeavoured &c", +"yas": "to froth up, foam", +"DyA": "DyAna See under below", +"yatas": "from which or what, whence, whereof, wherefrom", +"puMs": "to crush, grind, Dhātup. xxxii, 94", +"upaja": "upa-ja mfn, additional, accessory, ŚBr. i", +"vap": "to shear, shave, cut off", +"aBija": "ifc. produced all around", +"krA": "See udaDi-", +"Bavat": "being, present, RV. &c. &c", +"sammoha": "stupefaction, bewilderment, confusion, insensibility", +"sammA": "mA P. Ā. -mAti, -mimIte, to measure out, measure", +"Uha": "removing, derangement, transposition, change", +"smftiviBrama": "confusion of m˚", +"smfti": "remembrance, reminiscence, thinking of or upon, calling to mind", +"viBrama": "moving to and fro, rolling or whirling about, restlessness, unsteadiness", +"smftiBraMSa": "loss of m˚", +"nASa": "attainment", +"praRa": "", +"SA": "", +"rAgadveza": "du. love and hatred, Mn. xii, 26", +"viyukta": "disjoined, detached, separated or delivered from, deprived or destitute of", +"dveza": "hatred, dislike, repugnance, enmity to", +"carat": "", +"anindriya": "that which is not the senses, the soul, the reason", +"AtmavaSa": "dependent on one's own will, Mn. iv, 159 seq", +"viDeyAtman": "having the soul subdued or controlled", +"vaSya": "to be subjected &c", +"prasAda": "← pra-sAda m. . ) clearness, brightness, pellucidness, purity", +"sAda": "sitting, riding, RV. i, 162", +"aduHKa": "free from evil or trouble, propitious", +"nirasya": "to be expelled or driven out", +"apa": "away, off, back", +"anira": "destitute of vigour, RV. iv, 5, 14", +"prasanna": "clear, bright, pure", +"sanna": "set down", +"cat": "to hide one's self’. See catat and catta", +"ASu": "fast, quick, going quickly", +"Su": "to go &c", +"pari": "round, around, about, round about", +"nAsti": "it is not, there is not", +"ayukta": "not yoked, RV. x, 27, 9", +"Ayukta": "joined with, united, applied to", +"BAvana": "a forest of rays, Ghaṭ", +"aBAvayat": "unconscious, unwise", +"SAnti": "tranquillity, peace, quiet, peace or calmness of mind", +"aSAnta": "unappeased, indomitable, violent, wild", +"SAnta": "appeased, pacified, tranquil, calm", +"car": "to move one's self, go, walk, move, stir", +"das": "to suffer want, become exhausted, RV. iv, 134, 5", +"rati": "rest, repose", +"vAyu": "wind, air, RV. &c. &c", +"nO": "nO encl. acc. dat. gen. du. of 1st pers. pron, RV. &c. &c", +"amBas": "water, RV. &c, the celestial waters", +"AmBasa": "consisting of water, being watery, fluid", +"adya": "a-dya ind, today", +"nigfhIta": "˚ti. See ni-grah below", +"niSA": "night, GṛŚrS", +"sarvaBUta": "being everywhere", +"aBUta": "whatever has not been or happened", +"tas": "to fade away, perish, Dhātup. xxvi, 103", +"jAgf": "to be awake or watchful", +"gartin": "g. prekzAdi", +"saMyamin": "who or what restrains or curbs or subdues", +"jAgrat": "pr. p. q.v", +"ni": "down, back, in, into", +"ApUryamARa": "becoming full, increasing", +"acala": "not moving, immovable", +"samudra": "N. of two plants", +"mudra": "joyous, glad", +"viS": "to go, Dhātup. xvii, 71 ← viS cl. 6. P. viSati, to enter, enter in or settle down on", +"prava": "fluttering, hovering", +"Santa": "Santi &c. See p. 1055, col. 1", +"yadvat": "in which way, as", +"yadu": "N. of an ancient hero", +"tadvat": "having or containing that", +"tima": "a fish", +"kAmakAma": "", +"kAmin": "desirous, longing after", +"akAma": "without desire or wish", +"niHspfha": "free from desire, not longing for, abstaining from", +"nirmama": "unselfish, disinterested, free from all worldly connections", +"nirahaMkAra": "free from egotism, unselfish, humble", +"niraham": "devoid of self-conceit or selfishness", +"kAra": "kAra mfn, making, doing, working", +"ahaNkAra": "", +"sTiti": "standing upright or firmly, not falling", +"enA": "ena and enA, Ved. instr. of idam, q.v", +"vi": "a bird", +"antakAla": "time of death, death", +"asi": "a sword, scimitar, knife", +"antaka": "border, boundary", +"alepa": "", +"brahmanirvARa": "extinction in Brahmă, absorption into the one self-existent Spirit", +"SatI": "Curcuma Zedoaria, Suśr", +"fcCat": "", +"akulA": "not of good family, low", +"tamI": "night", +"kIrtikara": "conferring fame", +"kzu": "to sneeze", +"hE": "a vocative particle", +"ruDira": "red, blood-red, bloody, AV. v", +"pradigDa": "See pra-", +"paSya": "seeing, beholding, rightly understanding", +"CA": "pure, clean", +"rE": "to bark, bark at", +"patya": "falling", +"arata": "dull, languid, apathetic", +"anita": "not gone to, not having obtained, Ragh. ix, 37", +"avas": "avas n, favour, furtherance, protection", +"nAB": "an opening, fissure, spring, RV. ix", +"sad": "sad in comp. for sat", +"avina": "an officiating priest at a sacrifice, Uṇ", +"aSin": "reaching far, lasting long", +"irin": "powerful, violent", +"apramA": "a rule which is no authority", +"tAra": "carrying across, a saviour, protector, VS. xvi", +"AnIta": "taken, brought near", +"acit": "without understanding", +"ASva": "belonging to a horse, equestrian", +"purA": "before, formerly, of old, RV. &c. &c", +"Ir": "to go, move, rise, arise from", +"jam": "jam jmA, jmas. See 2. kzam", +"aj": "to drive, propel, throw, cast: Desid. ajijizati, to be desirous of driving", +"GAtayat": "", +"IrRa": "See ud-IrRa", +"navan": "pl. nine", +"Sastf": "a cutter, dissector", +"mAs": "", +"dev": "See 2. div", +"itvan": "going. See agretvan and prAtar-itvan", +"dIna": "scarce, scanty", +"niDanA": "settling down, residence or place of r˚, domicile, receptacle", +"devana": "lamentation, wailing, grief, sorrow", +"Anya": "", +"manya": "thinking one's self to be, passing for, appearing as", +"vApI": "any pond, a large oblong pond, an oblong reservoir of water, tank", +"Dama": "blowing, melting", +"samBAvin": "faithfully adhering or devoted to", +"syat": "", +"araTa": "having no car", +"iza": "seeking", +"avAc": "id, ŚBr. xiv", +"Ahita": "", +"aBikrama": "stepping near, approaching", +"vya": "a coverer", +"vasa": "dwelling, residence", +"antya": "&c. See antika, p. 45", +"dantya": "dental, Kāś", +"dina": "cut, divided, mowed, RV. viii", +"samA": "even, smooth, flat, plain", +"andU": "us, or andU, f. the chain for an elephant's feet a ring or chain worn on the ancle", +"anat": "", +"karmaRi": "connected with or being in the action, ŚBr. vi, 6, 4", +"hetf": "or hetf, mfn. urging on, inciting, an inciter", +"aYj": "to apply an ointment or pigment, smear with, anoint", +"yok": "", +"an": "an-, occasionally ana-, the substitute for 3. a, or a privative", +"Uh": "to be distinguished from it, to push, thrust, move, remove", +"vaca": "speaking, talking", +"AtA": "the frame of a door, RV. ix, 5, 5 & VS. xxix", +"tmanA": "the vital breath, RV. i, 63, 8", +"nat": "bowing, bowing one's self", +"AhAra": "&c. See A-", +"vipaSci": "vipaS-cit. See", +"vata": "See 1. bata", +"adveza": "not malevolent, RV. viii, 68, 10 and x", +"irasya": "Nom. P. irasyati, to show enmity to, be angry or envious", +"irasyA": "enmity, malevolence, RV. v, 40", +"BAvat": "possessing light", +"aSan": "stone, rock, RV. x, 68", +"indrI": "the god of the atmosphere and sky", +"harat": "", +"Adya": "being at the beginning, first, primitive, KātyŚr", +"gfhIta": "grasped, taken, seized, caught", +"apas": "apas n, work, action, especially sacred act", +"antima": "&c. See antika, p. 45", +"AsyA": "sitting, Suśr", +"mfD": "to neglect, forsake, abandon", +"vizwa": "entered into, contained in", +"kula": ") a herd, troop, flock", +"argya": "", +"pUjA": "honour, worship, respect, reverence", +"arha": "meriting, deserving, worthy of, having a claim or being entitled to", +"fta": "met with, afflicted by, TS. v", +"aSam": "‘non-welfare’, harm, AV. ii, 25", +"guqa": "a globe or ball, MBh. iii, vii", +"akeSa": "hairless", +"amA": "See ss.vv", +"KadA": "a hut, stable, Kauś", +"ftu": "any settled point of time, fixed time, time appointed for any action, right or fit time", +"anASa": "an-ASa mfn, hopeless, despairing", +"anas": "a cart, RV. &c", +"parihArya": "to be shunned or avoided or omitted or escaped from", +"ahan": "the base of the weak and some other cases of ahar, q.v, e.g. instr. ahnA", +"akzya": "", +"yAs": "yAs = yas, Kāṭh", +"vAr": "water, RV. &c. &c", +"apAna": "that of the five vital airs which goes downwards and out at the anus", +"adaka": "or adaka, mfn. chiefly ifc, eating", +"aDika": "additional, subsequent, later", +"vara": "vara m, ‘environing’, ‘enclosing’, circumference", +"atita": "", +"aBaya": "unfearful, not dangerous, secure", +"upajA": "distant or not immediate posterity, AV. xi, 1, 19", +"sammohA": "stupefaction, bewilderment, confusion, insensibility", +"hAni": "abandonment, relinquishment", +"rasya": "juicy, tasty, savoury, palatable", +"atasa": "wind, air", +"hira": "a band, strip, fillet", +"udra": "as, m, a kind of aquatic animal, VS. xxiv", +"mAnya": "to be respected or honoured, worthy of honour, respectable, venerable", +"lepin": "besmearing or covering", +"vAka": "See bAka and p. 936, col. 2", +"Aryajuzwa": "liked by or agreeable to noble ones", +"BUman": "the earth, world", +"rAji": "a streak, line, row, range", +"Uru": "us, m, the thigh, shank", +"arma": "pl. ruins, rubbish, VS. xxx, 11", +"oman": "help, protection, favour, kindness", +"sparSa": "˚Sana &c. See p. 1269", +"Om": "the sacred syllable of the Śūdras", +"vyaT": "to tremble, waver, go astray, come to naught, fail", +"samadu": "a daughter", +"ASin": "ifc. eating, consuming", +"mAna": "See p. 809, col. 3", +"irA": "any drinkable fluid", +"aRu": "fine, minute, atomic", +"avikArya": "invariable, Bhag. ii, 25", +"avana": "favour, preservation, protection", +"Avft": "A- P. Ā. -vartate to turn or draw round or back or near", +"nata": "bent, bowed, curved, inclined", +"is": "an interjection of anger or pain or sorrow", +"nandat": "", +"DyAyat": "thinking, meditating, imagining", +"hirA": "a band, strip, fillet", +"brahman": "pious effusion or utterance, outpouring of the heart in worshipping the gods, prayer", +"nirvARa": "blown or put out, extinguished, set, calmed", +"Baga": "See p. 743, col. 2", +"atti": "an eater, ŚBr. xiv", +"san": "in comp. for sat", +"van": "to like, love, wish, desire", +"um": "an interjection of anger", +"hanta": "an exclamation or inceptive particle", +"ahi": "a snake, RV. &c", +"calu": "a mouthful of water", +"adat": "eating, RV. x, 4", +"stava": "or n. a partic. substance", +"kriya": "the sign Aries, VarBṛ. i , iii ", +"hana": "id", +"sAt": "sAt a Taddhita affix which when put after a word denotes a total change of anything into the thing expressed by that word", +"pUryamARa": "", +"AmAna": "", +"IkzaRa": "a look, view, aspect sight", +"anudya": "", +"sura": "a god, divinity, deity", +"anitya": "not everlasting, transient, occasional", +"pura": "pura, in comp. for puras", +"Daya": "sucking, sipping, drinking", +"ADAva": "pl. that which is agitated or cleansed by stirring", +"mAMs": "flesh, meat &c", +"kya": "am, n, anything agreeable to Prajā-pati", +"paS": "to see, behold, look at, observe, perceive", +"uru": "wide, broad, spacious", +"nABa": "ifc. = nABi, nave, navel", +"aSva": "ifc. f. a horse, stallion, RV. &c", +"dfS": "to see, behold, look at, regard, consider", +"uda": "water", +"pAna": "drinking, draught, AV. &c. &c", +"daka": "", +"vijAna": "&c. See under vi-", +"Ara": "brass, BhP. x, 41", +"Anta": "See under 3. am", +"ma": "time, L. poison", +"ta": "Lakṣmī", +"da": "id", +"ga": "only ifc. going, moving", +"pa": "guarding, protecting, ruling", +"Wa": "", +"ka": "ka as, m. N. of Prajāpati or of a Prajāpati, VS. xx", +"Ta": "a mountain", +"Ra": "", +"la": "N. of Indra", +"hatva": "", +"va": "going hurting an arrow weaving", +"ya": "going", +"ja": "a race, tribe, AV. v", +"Da": "in 2. tiro-DA", +"ra": "amorous play", +"ba": "", +"sUna": "a daughter", +"oma": "m, a friend helper, protector", +"aSama": "disquietude, uneasiness", +"Ka": "a fountain, well, RV. ii", +"vA": "air, wind", +"u": "u the fifth letter and third short vowel of the alphabet, pronounced as the u in full", +"i": "i the third vowel of the alphabet, corresponding to i short, and pronounced as that letter in kill &c", +"I": "I the fourth letter of the alphabet, corresponding to i long, and having the sound of ee in feel", +"e": "e the eleventh vowel of the alphabet", +"mA": "time, L. poison", +"sma": "a particle perhaps originally equivalent to ‘ever’, ‘always’", +"f": "f the seventh vowel of the Sanskṛt alphabet and peculiar to it", +"na": "na the dental nasal", +"a": "a the first letter of the alphabet", +"ca": "ca the 20th letter of the alphabet, 1st of the 2nd class of consonants, having the sound of ch in church", +"hi": "to send forth, set in motion, impel, urge on, hasten on", +"ha": "ha the thirty-third and last consonant of the Nāgarī alphabet", +"tu": "to have authority, be strong, RV. i, 94, 2", +"eva": "eva ind, so, just so", +"iva": "like, in the same manner as", +"o": "o the thirteenth vowel of the alphabet", +"api": "or sometimes pi, expresses placing near or over, uniting to", +"U": "U the sixth letter of the alphabet", +"iti": "ityE See above", +"hasat": "laughing, smiling &c", +"yos": "welfare, health, happiness", +"A": "A the second vowel of the alphabet corresponding to the a in far", +"nu": "nu ind, now, still", +"F": "F the eighth vowel of the alphabet", +"O": "O the fourteenth vowel of the alphabet", +"aTa": "or aTA, ind. an auspicious and inceptive particle, now", +"Avi": "f, pain, suffering", +"Ga": "Ga the 4th consonant of the Sanskṛt alphabet", +"E": "E the twelfth vowel of the alphabet and having the sound of ei in height", +"azwi": "N. of a metre consisting of sixty-four syllables", +"eRa": "f. a species of deer or antelope, AV. v", +"DAv": "to run, flow, stream, move, glide", +"tavya": "strong, RV. i, 54" +} \ No newline at end of file diff --git a/scripts/gita/build-tier1.ts b/scripts/gita/build-tier1.ts new file mode 100644 index 0000000..b675111 --- /dev/null +++ b/scripts/gita/build-tier1.ts @@ -0,0 +1,178 @@ +/** + * Gītā TIER-1 render-data builder — the deterministic half of the free, + * dictionary-grounded word layer (the "Hybrid" plan). Chapter-parameterized so + * the same pass scales from one chapter to all eighteen. + * + * PIPELINE (two stages, both mechanical — NO LLM authors any gloss or sound): + * + * Stage 1 scripts/gita/fetch_padaccheda_gloss.py (Python; run once/chapter) + * · fetches the mūla from sa.wikisource (public domain), + * · padaccheda via sanskrit_parser (rule-based sandhi split + morphological + * stemming — deterministic, no neural model), + * · glosses each lemma from Monier-Williams (Cologne getword.php), taking a + * short first-substantive-sense head-gloss, cached to data/gita/mw-cache.json, + * → data/gita/chapter-glosses.json { verses: { key: { line, tokens[] } } } + * + * Stage 2 THIS FILE (TS; the render builder) + * · reads that JSON, + * · SOUND: romanizes each written word with the APP romanizer + * (components/liturgy/concept/devanagari.ts) — the per-akshara IAST IS the + * romanizer's output, so `romanizationMatches` holds BY CONSTRUCTION and no + * sound is ever guessed, + * · emits Tier-1 AlignSegment[] (units: [] — no unit spine, no alignment + * threads: those are the deferred Tier-2 curation layer, exactly like + * data/malayalam/urakam-tier1.ts), + * · VALIDATES: surface law (tokens rejoin the source line; each token's + * aksharas rejoin the token), romanization gate, and a gloss-coverage + * report, + * → data/gita/chapter-tier1.ts `export const GITA_CHAPTER_TIER1`. + * + * The four per-word layers: SURFACE (written Devanāgarī, whitespace-tokenized — + * sandhi-fused words stay one written token, per the SUTTA-025 surface law), + * SOUND (per-akshara IAST, deterministic), MEANING (MW head-gloss of the + * padaccheda lemma(s), composed with " + " for a fused word — empty when MW has + * no clean entry, never guessed), and ALIGNMENT THREADS (skipped in Tier-1). + * + * Run: npx tsx scripts/gita/build-tier1.ts 2 + */ + +import * as fs from 'fs'; +import * as path from 'path'; +import { fileURLToPath } from 'url'; +import { aksharasOf, romanizationMatches, segmentAksharas } from '../../components/liturgy/concept/devanagari'; +import type { AlignSegment, AlignToken, AlignSegmentPiece } from '../../types/liturgyAlign'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../..'); + +const chapter = Number(process.argv[2] ?? '2'); +const GLOSSES = path.join(ROOT, `data/gita/chapter${chapter}-glosses.json`); +const OUT = path.join(ROOT, `data/gita/chapter${chapter}-tier1.ts`); + +type SrcPiece = { slp: string; stem: string | null; gloss: string }; +type SrcToken = { surface: string; isMarker: boolean; gloss: string; lemmas: string[]; pieces: SrcPiece[] }; +type SrcVerse = { line: string; tokens: SrcToken[] }; +type SrcFile = { meta: Record; verses: Record }; + +const DEVA_DIG: Record = { '०':'0','१':'1','२':'2','३':'3','४':'4','५':'5','६':'6','७':'7','८':'8','९':'9' }; +const arabicOf = (s: string) => s.replace(/[०-९]/g, (d) => DEVA_DIG[d] ?? d); + +/** Order keys as the source prints them: speaker line, then half a, then half b. */ +const HALF_RANK: Record = { s: 0, a: 1, b: 2 }; +const keyRank = (k: string): [number, number] => [Number(k.replace(/[a-z]$/, '')), HALF_RANK[k.slice(-1)] ?? 9]; + +const isDanda = (t: string) => t === '।'; +// The verse marker "॥२- NN॥" carries an internal space, so it whitespace-splits +// into "॥२-" and "NN॥" — both are markers (a real word never contains ॥). +const isVerseMark = (t: string) => t.includes('॥'); + +/** Marker hover gloss (markers are sounded by no akshara — faint, glossed). */ +function markerGloss(t: string, verseNum: number): string { + if (isDanda(t)) return 'daṇḍa — the line pauses'; + const m = t.match(/([०-९]+)\s*॥\s*$/); + return `verse ${chapter}.${m ? arabicOf(m[1]) : verseNum} ends`; +} + +const diagnostics: string[] = []; +let words = 0; +let glossed = 0; +let compounds = 0; + +function wordToken(tk: SrcToken, seg: string): AlignToken { + words++; + const deva = tk.surface; + + // SOUND — deterministic, self-consistent by construction. + const ak = aksharasOf(deva); + const rom = ak.map((a) => a.rom).join(''); + const segments: AlignSegmentPiece[] = ak.map((a) => ({ text: a.text, pronunciation: a.rom, akshara: true })); + + // Surface-law guard: aksharas must rejoin the exact written word. + const rejoined = segmentAksharas(deva).join(''); + if (rejoined !== deva) diagnostics.push(`${seg}: aksharas of "${deva}" rejoin to "${rejoined}"`); + // Romanization gate (trivially true when rom is the romanizer's own output; + // asserted so a future non-mechanical edit can't slip a guessed sound past). + if (!romanizationMatches(deva, rom)) diagnostics.push(`${seg}: "${deva}" ⇏ romanized "${rom}"`); + // A word whose romanization dropped characters (unknown glyph) — flag it. + if (!rom) diagnostics.push(`${seg}: "${deva}" romanized to empty`); + + const token: AlignToken = { text: deva, units: [], pronunciation: rom, segments }; + if (tk.gloss) { + token.gloss = tk.gloss; + glossed++; + } + // Teach the sandhi cut honestly in a note (the surface stays one written + // word). Only when the padaccheda actually split the word into >1 lemma. + const realPieces = tk.pieces.filter((p) => p.stem); + if (realPieces.length > 1) { + compounds++; + token.note = 'padaccheda: ' + realPieces.map((p) => (p.gloss ? `${p.stem} (${p.gloss})` : p.stem)).join(' + '); + } + return token; +} + +function markerToken(tk: SrcToken, verseNum: number): AlignToken { + return { + text: tk.surface, + units: [], + gloss: markerGloss(tk.surface, verseNum), + segments: [{ text: tk.surface, faint: true }], + }; +} + +function build(): AlignSegment[] { + const data = JSON.parse(fs.readFileSync(GLOSSES, 'utf8')) as SrcFile; + const keys = Object.keys(data.verses).sort((a, b) => { + const [ra, rb] = [keyRank(a), keyRank(b)]; + return ra[0] - rb[0] || ra[1] - rb[1]; + }); + const segs: AlignSegment[] = []; + for (const key of keys) { + const verse = data.verses[key]; + const verseNum = Number(key.replace(/[a-z]$/, '')); + const id = `bg${chapter}t1-${key}`; + const tokens: AlignToken[] = verse.tokens.map((tk) => + tk.isMarker || isDanda(tk.surface) || isVerseMark(tk.surface) + ? markerToken(tk, verseNum) + : wordToken(tk, id), + ); + + // SURFACE LAW: the tokens must rejoin the exact fetched source line. + const rejoined = tokens.map((t) => t.text).join(' '); + if (rejoined !== verse.line) { + diagnostics.push(`${id}: tokens rejoin to\n "${rejoined}"\n ≠ source\n "${verse.line}"`); + } + segs.push({ id, units: [], renderings: [{ lang: 'sa-Deva', label: 'Sanskrit', tokens }] }); + } + return segs; +} + +const segs = build(); + +// ── report ──────────────────────────────────────────────────────────────── +const cov = words ? ((100 * glossed) / words).toFixed(1) : '0'; +console.log(`\nChapter ${chapter} Tier-1 build`); +console.log(` segments (half-verses + speaker lines): ${segs.length}`); +console.log(` words: ${words} with MW gloss: ${glossed} (${cov}%) sandhi-compounds: ${compounds}`); +console.log(` surface/romanization diagnostics: ${diagnostics.length}`); +for (const d of diagnostics.slice(0, 40)) console.log(' ! ' + d); +if (diagnostics.length) { + console.error(`\nBUILD FAILED — ${diagnostics.length} integrity diagnostics (surface law / romanization).`); + process.exit(1); +} + +const CONST = `GITA_CHAPTER${chapter}_TIER1`; +const header = + `/**\n` + + ` * GENERATED — do not edit. Rebuild:\n` + + ` * python scripts/gita/fetch_padaccheda_gloss.py ${chapter} # padaccheda + MW glosses\n` + + ` * npx tsx scripts/gita/build-tier1.ts ${chapter} # romanize + AlignSegment[]\n` + + ` *\n` + + ` * Bhagavad Gītā chapter ${chapter}, TIER-1 (free, dictionary-grounded word layer):\n` + + ` * written Devanāgarī + per-akshara IAST (deterministic romanizer) + Monier-\n` + + ` * Williams head-glosses on hover. units: [] — NO alignment threads (the Tier-2\n` + + ` * curation layer is deferred). Mūla: sa.wikisource (PD). Glosses: MW (PD).\n` + + ` */\n` + + `import type { AlignSegment } from '../../types/liturgyAlign';\n\n`; + +fs.writeFileSync(OUT, header + `export const ${CONST}: AlignSegment[] = ${JSON.stringify(segs, null, 1)};\n`); +console.log(`\nwrote ${path.relative(ROOT, OUT)}`); diff --git a/scripts/gita/fetch_padaccheda_gloss.py b/scripts/gita/fetch_padaccheda_gloss.py new file mode 100644 index 0000000..6083311 --- /dev/null +++ b/scripts/gita/fetch_padaccheda_gloss.py @@ -0,0 +1,396 @@ +#!/usr/bin/env python3 +""" +Gītā TIER-1, stage 1 — the linguistic layer (padaccheda + dictionary glosses). +Chapter-parameterized; NO LLM authors any gloss. + +For a chapter it: + 1. fetches the mūla wikitext from sa.wikisource (public domain) and extracts + the verses from the blocks (the commentaries are ignored), + 2. runs padaccheda on each written word with sanskrit_parser 0.2.6 — a + RULE-BASED sandhi splitter + morphological stemmer (deterministic, no + neural model). The written surface is never altered; splitting only feeds + the gloss lookup (the surface law keeps the printed word whole), + 3. glosses each lemma from Monier-Williams via the Cologne getword.php + endpoint (transLit=slp1), taking a short first-substantive-sense head-gloss, + cached to data/gita/mw-cache.json (public domain; committed for + reproducibility and to show exactly which dictionary text each gloss is + drawn from), + 4. writes data/gita/chapter-glosses.json — consumed by the TS render + builder (scripts/gita/build-tier1.ts), which adds the deterministic sound + layer and emits the AlignSegment[]. + +Requires (a venv is fine; NOT the app's node deps): + pip install sanskrit_parser indic_transliteration + +Run: + python scripts/gita/fetch_padaccheda_gloss.py 2 + python scripts/gita/fetch_padaccheda_gloss.py 2 --page भगवद्गीता/साङ्ख्ययोगः +""" +import sys, os, re, json, time, html, argparse, logging, warnings +import urllib.parse, urllib.request + +logging.disable(logging.WARNING) +warnings.filterwarnings("ignore") + +ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) +DATA = os.path.join(ROOT, "data", "gita") +MW_CACHE = os.path.join(DATA, "mw-cache.json") + +# sa.wikisource page titles (भगवद्गीता/). Chapter 2 is verified; the +# rest are the standard adhyāya names — pass --page to override per chapter. +CHAPTER_PAGE = { + 1: "भगवद्गीता/अर्जुनविषादयोगः", + 2: "भगवद्गीता/साङ्ख्ययोगः", + 3: "भगवद्गीता/कर्मयोगः", + 4: "भगवद्गीता/ज्ञानकर्मसंन्यासयोगः", + 5: "भगवद्गीता/कर्मसंन्यासयोगः", + 6: "भगवद्गीता/आत्मसंयमयोगः", + 7: "भगवद्गीता/ज्ञानविज्ञानयोगः", + 8: "भगवद्गीता/अक्षरब्रह्मयोगः", + 9: "भगवद्गीता/राजविद्याराजगुह्ययोगः", + 10: "भगवद्गीता/विभूतियोगः", + 11: "भगवद्गीता/विश्वरूपदर्शनयोगः", + 12: "भगवद्गीता/भक्तियोगः", + 13: "भगवद्गीता/क्षेत्रक्षेत्रज्ञविभागयोगः", + 14: "भगवद्गीता/गुणत्रयविभागयोगः", + 15: "भगवद्गीता/पुरुषोत्तमयोगः", + 16: "भगवद्गीता/दैवासुरसम्पद्विभागयोगः", + 17: "भगवद्गीता/श्रद्धात्रयविभागयोगः", + 18: "भगवद्गीता/मोक्षसंन्यासयोगः", +} + +DEVA_DIG = {c: str(i) for i, c in enumerate("०१२३४५६७८९")} +def dnum(s): return int("".join(DEVA_DIG.get(c, "") for c in s)) +def dev_digit(n): return "".join("०१२३४५६७८९"[int(d)] for d in str(n)) + +SPEAKERS = ["सञ्जय उवाच", "अर्जुन उवाच", "श्रीभगवानुवाच", "धृतराष्ट्र उवाच", "भगवानुवाच"] + +# ── stage 1a: fetch + extract mūla ────────────────────────────────────────── +def fetch_verses(page, chapter): + api = ("https://sa.wikisource.org/w/api.php?action=parse&prop=wikitext&format=json&page=" + + urllib.parse.quote(page)) + req = urllib.request.Request(api, headers={"User-Agent": "lexicon-research"}) + wt = json.load(urllib.request.urlopen(req, timeout=60))["parse"]["wikitext"]["*"] + poems = re.findall(r"(.*?)", wt, re.DOTALL) + mark = re.compile(r"॥\s*%s\s*-\s*([०-९]+)\s*॥" % dev_digit(chapter)) + lines = [] + for p in poems: + for raw in p.split("\n"): + s = raw.replace("'''", "").strip() + if s: + lines.append(s) + source, speaker_buf, buf_a = {}, [], None + invocation = re.compile(r"^(ॐ|श्री.*नमः|अथ .*ऽध्यायः)$") + for s in lines: + if invocation.match(s): + continue + if s in SPEAKERS: + speaker_buf.append(s) + continue + m = mark.search(s) + if m: + n = dnum(m.group(1)) + for sp in speaker_buf: + source[f"{n}s"] = sp + speaker_buf = [] + source[f"{n}a"] = buf_a if buf_a is not None else "" + source[f"{n}b"] = s + buf_a = None + else: + buf_a = s if buf_a is None else buf_a + " " + s + return source + +# ── stage 1b: Monier-Williams head-gloss (Cologne) ────────────────────────── +_UA = {"User-Agent": "Mozilla/5.0 (lexicon research; adityaprasadiskool@gmail.com)"} +CIT = re.compile(r"^[A-ZĀĪŪṚṜḶṆṬḌṄÑŚṢḤṀṂ][A-Za-zĀĪŪṚṜāīūṛ]*\.?$") +STUB = re.compile(r"(See pp\b|see s\.v|See s\.v|^\s*=\s)", re.I) +POS = re.compile(r"^(mfn?\.|m\.|n\.|f\.|ind\.|mf\([^)]*\)n\.|A\.|L\.)\s*") +BAD_LEAD = re.compile(r"^(either\b|prob\.|and\b|See below|=\s|the above|for\b)", re.I) + +def _mw_raw(stem): + url = ("https://www.sanskrit-lexicon.uni-koeln.de/scans/MWScan/2020/web/webtc/getword.php" + "?key=%s&transLit=slp1" % urllib.parse.quote(stem)) + req = urllib.request.Request(url, headers=_UA) + return urllib.request.urlopen(req, timeout=25).read().decode("utf-8", "replace") + +def _clean_parts(text, limit=3): + text = re.sub(r"\([^)]*\)", "", text) + text = re.sub(r"√\S+", "", text).lstrip(" ),.;:—-") + first = re.split(r";", text)[0] + keep = [] + for p in first.split(","): + p = p.strip(" ),.;:") + if not p or CIT.match(p) or p in ("&c.", "&c", "&c."): + continue + keep.append(p) + if len(keep) >= limit: + break + return ", ".join(keep).strip(" ,.;:") + +def _entry_gloss(sense1): + seg = re.sub(r"(Whitney )?Roots links:.*?Dhatupatha links:\s*[\d.,\s]*", "", sense1, flags=re.S) + seg = re.sub(r"\[Printed book page[^\]]*\]", "", seg) + seg = re.sub(r"\[[^\]]*\]", "", seg) + seg = " ".join(l.strip() for l in seg.splitlines() if l.strip()) + seg = re.sub(r"^\S+\s+", "", seg) # drop leading repeated headword + is_verb = (re.search(r"\bcl\.\s*\d", seg) or seg.startswith("P.") or seg.startswith("Ā.") + or seg.startswith("-") or "Roots links:" in seg) + if is_verb: + # a verb entry's meaning follows the conjugation/roots preamble at "to …" + mto = re.search(r"\bto\s+\S.*", seg) + if mto: + return _clean_parts("to " + re.sub(r"^to\s+", "", mto.group(0)), limit=5) + return _clean_parts(POS.sub("", seg)) + +def mw_head_gloss(stem): + txt = html.unescape(re.sub(r"<[^>]+>", "", _mw_raw(stem))) + if "ID=" not in txt: + return "" + parts = re.split(r"\(H\d+[A-Z]?\)", txt) + for e in (parts[1:] if len(parts) > 1 else [txt]): + m = re.search(r"\[ID=\d+\s*\]", e) + sense1 = e[:m.start()] if m else e + if STUB.search(re.sub(r"\([^)]*\)", "", sense1)): + continue + g = _entry_gloss(sense1) + g = re.sub(r"^\S+\s+(?=(mfn?\.|m\.|n\.|f\.|ind\.))", "", g) + g = re.sub(r"^(mfn?\.|m\.|n\.|f\.|ind\.|A\.|L\.)\s*", "", g).strip(" ,.;:") + g = re.sub(r"\s+", " ", g) + if not g or len(g) < 2 or BAD_LEAD.search(g) or "cf." in g[:6] or "Pāṇ" in g: + continue + return g + return "" + +# ── stage 1c: sandhi split + morphological stemming ───────────────────────── +def make_lemmatizer(): + from sanskrit_parser import Parser + from sanskrit_parser.base.sanskrit_base import SanskritObject + from indic_transliteration import sanscript + from indic_transliteration.sanscript import SLP1 + parser = Parser(output_encoding="slp1") + la = parser.sandhi_analyzer + + def morph_stems(slp): + cands = [slp] + ([slp[:-1] + "s", slp[:-1] + "r", slp[:-1]] if slp.endswith("H") else []) + for c in cands: + try: + tags = la.getMorphologicalTags(SanskritObject(c, encoding=SLP1)) + except Exception: + tags = None + if tags: + seen = [] + for stem, _ in tags: + s = str(stem).split("#")[0] + if s not in seen: + seen.append(s) + return seen + return [] + + def to_slp(deva): + return sanscript.transliterate(deva, sanscript.DEVANAGARI, sanscript.SLP1) + + def analyses(deva): + out, slp = [], to_slp(deva) + ws = morph_stems(slp) + if ws: + out.append([(slp, ws[0])]) + try: + splits = list(parser.split(deva, limit=3)) + except Exception: + splits = [] + for sp in splits: + pieces = [str(x) for x in sp.split] + if len(pieces) <= 1: + if not ws and pieces: + st = morph_stems(pieces[0]) + out.append([(pieces[0], st[0] if st else None)]) + continue + out.append([(pc, (morph_stems(pc) or [None])[0]) for pc in pieces]) + uniq, seen = [], set() + for a in out: + k = tuple(a) + if k not in seen: + seen.add(k) + uniq.append(a) + return uniq + + return analyses + +# ── driver ────────────────────────────────────────────────────────────────── +# A shown gloss must be trustworthy, not merely present: mechanical sandhi +# splitting mis-cuts fused words and short fragments spuriously match MW +# letter/particle entries. Keep a single whole-word hit, or a CLEAN compound +# (<=3 pieces, every piece glossed, no garbage sense); else show nothing — +# an honest blank, never a guess. +# Garbage = MW cross-reference stubs and spurious short-fragment matches. The +# "see …" branch catches cross-refs ("See idam", "See cols.", "see a-jara") +# WITHOUT rejecting the verb sense ("to see, behold") — it fires only when +# "see" is followed by a reference token (a directive word or a hyphenated +# lemma), not a comma/synonym. +_GARBAGE = re.compile( + r"(letter of the alphabet|semivowel|dental consonant|guttural|palatal consonant" + r"|labial|sibilant|nasal consonant|Dhātup|Uṇ\.|q\.v|˚|a form of [SŚsś]iva|Ah! Oh" + r"|the \d+(st|nd|rd|th)" + r"|\bthe\s+[\w-]*\s*(letter|consonant|vowel|semivowel|nasal|dental|guttural|labial|palatal|cerebral|sibilant)\b" + r"|\bsee\s+(idam|ayam|imam|above|below|under|cols?|cf\b|p\.|s\.v|[a-zāīūṛñśṣṭḍ]+-))", re.I) + +# Indeclinable particles (a small CLOSED class): MW's stem lookup returns a noun +# or verb homograph ("vā = wind", "hi = to impel", "na = the dental nasal"), not +# the particle sense. Where the OVERRIDE table below does not carry them, they +# are suppressed (blank) rather than shown a wrong homograph. +_INDECL = {"na", "ca", "vA", "mA", "hi", "eva", "api", "iva", "tu", "vE", "u", + "ha", "sma", "aTa", "uta", "atra", "iti", "aho", "nu", "kila", "KMalu"} + +# ── CURATED OVERRIDE TABLE (the planned particle / pronoun / epithet layer) ── +# The dictionary scorer keys on "any MW entry that matches a parse", so a handful +# of the commonest Gītā words come back confidently WRONG — the pronoun एषा +# collides with the verb root एष ("to glide"), the epithet पार्थ with a stray +# patronymic, and MW's Vedic-first ordering makes मुनि "impulse" not "sage". +# These are a small CLOSED class of grammar words and proper names with settled, +# concise meanings; the override takes PRECEDENCE over the dictionary for them. +# Everything else still comes from Monier-Williams, and anything unresolved is +# left BLANK rather than shown a low-fit hit. +# +# OVERRIDE_SURFACE keys the exact written token (for particles + pronoun forms +# whose lemma is a homograph); OVERRIDE_LEMMA keys the SLP1 stem (for names / +# epithets / muni that inflect, and for the same particles when sandhi-fused). +OVERRIDE_SURFACE = { + # indeclinable particles + "न": "not", "च": "and", "वा": "or", "तु": "but", "हि": "for, indeed", + "एव": "just, only", "इति": "thus — close of speech", "अपि": "also, even", + "मा": "do not", "यथा": "as, just as", "तथा": "so, in that way", "इव": "like, as if", + # pronoun forms (exact — the lemma is a homograph or too broad) + "एषा": "this", "एष": "this", "एषः": "this", "एतत्": "this", "एतद्": "this", + "तत्": "that", "तद्": "that", "अयम्": "this", "इदम्": "this", + "सः": "he", "स": "he", "सा": "she", "अहम्": "I", "माम्": "me", "मया": "by me", + "मे": "my; to me", "मम": "my", "त्वम्": "thou", "त्वाम्": "thee", "ते": "thy; to thee", +} +OVERRIDE_LEMMA = { + # names & epithets (stems stay constant across cases → catch every inflection) + "pArTa": "O son of Pṛthā — Arjuna", "kOnteya": "O son of Kuntī — Arjuna", + "arjuna": "Arjuna", "DftarAzwra": "Dhṛtarāṣṭra", "saYjaya": "Sañjaya", + "kfzRa": "Kṛṣṇa", "keSava": "Keśava — Kṛṣṇa", "mADava": "Mādhava — Kṛṣṇa", + "govinda": "Govinda — Kṛṣṇa", "hfzIkeSa": "Hṛṣīkeśa — Kṛṣṇa", + "Bagavat": "the Blessed One", "BArata": "O descendant of Bharata", + "muni": "sage, silent one", + # pronouns / particles for SANDHI-FUSED occurrences (piece-level) + "tad": "that; he, she, it", "etad": "this", "idam": "this", "sarva": "all, every", + "na": "not", "ca": "and", "vA": "or", "tu": "but", "hi": "for, indeed", + "eva": "just, only", "api": "also, even", "iva": "like, as if", + "iti": "thus — close of speech", "mA": "do not", "yaTA": "as, just as", "taTA": "so, in that way", +} + +def _bad(p): + if p.get("override"): + return False # a curated override is trustworthy by construction + return (not p["gloss"]) or len(p["stem"]) <= 1 or p["stem"] in _INDECL or bool(_GARBAGE.search(p["gloss"])) + +def confident_gloss(pieces): + real = [p for p in pieces if p["stem"]] + if not real: + return "" + if len(real) == 1: + return "" if _bad(real[0]) else real[0]["gloss"] + if len(real) > 3 or any(_bad(p) for p in real): + return "" + return " + ".join(p["gloss"] for p in real) + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("chapter", type=int) + ap.add_argument("--page", default=None, help="override sa.wikisource page title") + args = ap.parse_args() + chapter = args.chapter + page = args.page or CHAPTER_PAGE.get(chapter) + if not page: + sys.exit(f"no page mapping for chapter {chapter}; pass --page") + + os.makedirs(DATA, exist_ok=True) + try: + mw = json.load(open(MW_CACHE)) + except Exception: + mw = {} + + def gloss(stem): + if stem in mw: + return mw[stem] + try: + g = mw_head_gloss(stem) + except Exception: + # TRANSIENT failure (timeout / rate-limit / network): do NOT cache — + # caching "" here would make a future run treat it as a confirmed + # miss forever. Return empty for this run; the stem retries next time. + return "" + mw[stem] = g # cache only completed lookups (incl. a genuine empty miss) + time.sleep(0.15) + return g + + print(f"chapter {chapter}: fetching {page} …", file=sys.stderr) + source = fetch_verses(page, chapter) + analyses = make_lemmatizer() + + is_marker = lambda t: t == "।" or "॥" in t + + def choose(deva): + best, best_key = None, (-1.0, -10**9) + for a in analyses(deva): + # A curated override lemma counts as covered too, so a whole-word name + # (saMjaya, not in MW) beats splitting it into san + jaya. + covered = sum(1 for _, st in a if st and (st in OVERRIDE_LEMMA or gloss(st))) + key = (covered / len(a), -len(a)) # coverage RATIO, then fewest pieces + if key > best_key: + best_key, best = key, a + if not best: + # Even an unparsed token can be a curated indeclinable/pronoun surface. + return {"gloss": OVERRIDE_SURFACE.get(deva, ""), "lemmas": [], "pieces": []} + pieces, lemmas = [], [] + for pc, st in best: + g = gloss(st) if st else "" + gs = ", ".join(x.strip() for x in g.split(",")[:3]).strip() if g else "" + piece = {"slp": pc, "stem": st, "gloss": gs} + if st and st in OVERRIDE_LEMMA: # curated lemma wins over the dictionary + piece["gloss"] = OVERRIDE_LEMMA[st] + piece["override"] = True + pieces.append(piece) + if st: + lemmas.append(st) + # Surface override (highest precedence) → else confident composition, which + # now sees any piece-level curated glosses. + final = OVERRIDE_SURFACE[deva] if deva in OVERRIDE_SURFACE else confident_gloss(pieces) + return {"gloss": final, "lemmas": lemmas, "pieces": pieces} + + verses, wtot, wgot = {}, 0, 0 + keys = sorted(source, key=lambda k: (int(re.match(r"\d+", k).group()), {"s": 0, "a": 1, "b": 2}[k[-1]])) + t0 = time.time() + for k in keys: + toks = [] + for tk in source[k].split(): + if is_marker(tk): + toks.append({"surface": tk, "isMarker": True, "gloss": "", "lemmas": [], "pieces": []}) + else: + r = choose(tk) + wtot += 1 + wgot += 1 if r["gloss"] else 0 + toks.append({"surface": tk, "isMarker": False, **r}) + verses[k] = {"line": source[k], "tokens": toks} + json.dump(mw, open(MW_CACHE, "w"), ensure_ascii=False, indent=0) + print(f" {k} ({time.time()-t0:.0f}s, {wgot}/{wtot} glossed)", file=sys.stderr) + + out = { + "meta": { + "source": f"sa.wikisource.org {page} (public domain)", + "chapter": chapter, + "padaccheda": "sanskrit_parser 0.2.6 (rule-based sandhi split + morphological stemming)", + "dictionary": "Monier-Williams (Cologne getword.php, transLit=slp1), first-substantive-sense head-gloss", + }, + "verses": verses, + } + outpath = os.path.join(DATA, f"chapter{chapter}-glosses.json") + json.dump(out, open(outpath, "w"), ensure_ascii=False, indent=1) + print(f"\nwrote {os.path.relpath(outpath, ROOT)}", file=sys.stderr) + print(f"word gloss coverage {wgot}/{wtot} = {100*wgot/max(wtot,1):.1f}%", file=sys.stderr) + + +if __name__ == "__main__": + main() diff --git a/tests/components/gita/gita-ch2-page.test.tsx b/tests/components/gita/gita-ch2-page.test.tsx new file mode 100644 index 0000000..91ca497 --- /dev/null +++ b/tests/components/gita/gita-ch2-page.test.tsx @@ -0,0 +1,99 @@ +import React from 'react'; +import { describe, it, expect, afterEach, beforeAll } from 'vitest'; +import { render, screen, cleanup, fireEvent, within } from '@testing-library/react'; + +// jsdom has no ResizeObserver; the interlinear's align-mode thread re-measure +// constructs one on hover. Inert stub — geometry isn't under test. +beforeAll(() => { + if (!('ResizeObserver' in globalThis)) { + (globalThis as unknown as { ResizeObserver: unknown }).ResizeObserver = class { + observe() {} + unobserve() {} + disconnect() {} + }; + } +}); + +import { GitaChapter2Page } from '../../../components/gita/GitaChapter2Page'; +import { GitaIndexPage } from '../../../components/gita/GitaIndexPage'; +import { GITA_CHAPTER2_TIER1 } from '../../../data/gita/chapter2-tier1'; +import { aksharasOf } from '../../../components/liturgy/concept/devanagari'; +import type { AlignSegment, AlignToken } from '../../../types/liturgyAlign'; + +/** + * Render contract for the free Tier-1 chapter-2 reader: it shows the whole + * chapter with per-akshara sounds, offers both interaction modes, produces a + * dictionary gloss on hover, and carries the honest mechanical-provenance + * labeling (and does NOT overclaim a reviewed translation). + */ + +afterEach(cleanup); + +const saRow = (s: AlignSegment) => s.renderings.find((r) => r.lang === 'sa-Deva')!; +const isMarker = (t: AlignToken) => !t.pronunciation; + +describe('GitaChapter2Page', () => { + it('renders the chapter with verse-end markers and per-akshara sound rows', async () => { + const { container } = render(); + // The chapter data is dynamically imported, so wait for the interlinear. + // The verse marker "॥२- NN॥" whitespace-splits into "॥२-" (one per verse) + // and the numbered close; there is one verse-end per verse (72). + const markers = await screen.findAllByText('॥२-'); + expect(markers.length, 'expected 72 verse-end markers').toBe(72); + expect(screen.getAllByText('१॥').length, 'verse 2.1 close missing').toBeGreaterThan(0); + expect(screen.getAllByText('७२॥').length, 'verse 2.72 close missing').toBeGreaterThan(0); + // an akshara sound row is present (glyph stacked over its IAST) + expect(container.querySelector('[id^="pc-"]')).toBeTruthy(); + }); + + it('offers both interaction modes and the Sanskrit rail', async () => { + render(); + // the rail + mode toggle live in the interlinear → wait for the async data + expect(await screen.findByText('alignment')).toBeTruthy(); + expect(screen.getByText('etymology')).toBeTruthy(); + // "Sanskrit" appears in both the language rail and the labeling copy. + expect(screen.getAllByText('Sanskrit').length).toBeGreaterThan(0); + }); + + it('hovering a word shows its dictionary meaning as a tooltip', async () => { + render(); + // Data-driven: find a glossed word whose FIRST akshara glyph is unique on + // the page, so hovering that glyph unambiguously targets that word. + const freq = new Map(); + const words = GITA_CHAPTER2_TIER1.flatMap((s) => saRow(s).tokens.filter((t) => !isMarker(t))); + for (const t of words) for (const a of aksharasOf(t.text)) freq.set(a.text, (freq.get(a.text) ?? 0) + 1); + const pick = words.find((t) => { + const first = aksharasOf(t.text)[0]?.text; + return !!t.gloss && !!first && freq.get(first) === 1; + }); + expect(pick, 'no glossed word with a unique first akshara found').toBeTruthy(); + const firstAkshara = aksharasOf(pick!.text)[0].text; + const glyph = await screen.findByText(firstAkshara); // wait for async data + fireEvent.mouseEnter(glyph.closest('[id^="pc-"]')!); + // the gloss text (its first sense fragment) appears in a tooltip + const senseFragment = pick!.gloss!.split(/[,+]/)[0].trim(); + expect(await screen.findByText((c) => c.includes(senseFragment))).toBeTruthy(); + }); + + it('labels the layer as mechanical/public-domain and does NOT claim a reviewed translation', () => { + const { container } = render(); + const text = container.textContent ?? ''; + expect(text).toContain('sa.wikisource'); + expect(text).toContain('public domain'); + expect(text).toContain('Monier-Williams'); + expect(text.toLowerCase()).toContain('mechanical'); + // honest: it points at the curated Tier-2 passage rather than pretending to be it + expect(container.querySelector('a[href="/gita/sthitaprajna"]')).toBeTruthy(); + }); +}); + +describe('GitaIndexPage — chapter-2 card', () => { + it('links to the free chapter-2 reader with honest two-layer labeling', () => { + const { container } = render(); + const link = container.querySelector('a[href="/gita/chapter/2"]'); + expect(link).toBeTruthy(); + expect(within(link as HTMLElement).getByText('साङ्ख्ययोगः')).toBeTruthy(); + expect(link!.textContent).toContain('2.1'); + expect(container.textContent).toContain('curated'); + }); +}); diff --git a/tests/components/gita/gita-ch2-tier1.test.ts b/tests/components/gita/gita-ch2-tier1.test.ts new file mode 100644 index 0000000..be58f7e --- /dev/null +++ b/tests/components/gita/gita-ch2-tier1.test.ts @@ -0,0 +1,128 @@ +// @vitest-environment node +import { describe, it, expect } from 'vitest'; +import { GITA_CHAPTER2_TIER1 } from '../../../data/gita/chapter2-tier1'; +import { BG2_SOURCE } from '../../../data/gita/bg2-source'; +import { romanizationMatches, aksharasOf, segmentAksharas } from '../../../components/liturgy/concept/devanagari'; +import type { AlignSegment, AlignToken } from '../../../types/liturgyAlign'; + +/** + * Integrity of the FREE Tier-1 chapter-2 data (data/gita/chapter2-tier1.ts, + * generated from sa.wikisource + Monier-Williams). The same three mechanical + * guarantees as the curated pilot, plus a bridge to the committed source + * authority and a gloss-coverage floor: + * + * 1. SURFACE — each segment's Sanskrit tokens rejoin to a source line, and + * every token's aksharas rejoin to the token (SUTTA-025 surface law). For + * 2.50–2.72 the rejoined line must equal bg2-source.ts EXACTLY — the + * hand-verified authority the curated pilot is tested against. + * 2. SOUND — every word's per-akshara IAST romanizes back to the word's + * pronunciation (devanagari.ts self-validation). Never a guessed sound. + * 3. TIER-1 SHAPE — units: [] on every segment (no alignment threads), and + * every word carries a sounded akshara row. + * 4. COVERAGE — a floor on the fraction of words carrying a dictionary gloss, + * with the exact number printed for the scaling report. + */ + +const segments = GITA_CHAPTER2_TIER1; +const saRow = (s: AlignSegment) => s.renderings.find((r) => r.lang === 'sa-Deva')!; +const keyOf = (s: AlignSegment) => s.id.replace(/^bg2t1-/, ''); +const isMarker = (t: AlignToken) => !t.pronunciation; // daṇḍa / ॥२- NN॥ tokens +const wordTokens = segments.flatMap((s) => saRow(s).tokens.filter((t) => !isMarker(t))); + +describe('gītā chapter 2 Tier-1 — coverage of the chapter', () => { + it('carries every half-verse 2.1–2.72 (both halves) plus the speaker lines', () => { + const keys = segments.map(keyOf); + const bHalves = new Set(keys.filter((k) => k.endsWith('b')).map((k) => Number(k.slice(0, -1)))); + expect([...bHalves].sort((a, b) => a - b)).toEqual(Array.from({ length: 72 }, (_, i) => i + 1)); + for (let v = 1; v <= 72; v++) { + expect(keys, `2.${v}a missing`).toContain(`${v}a`); + expect(keys, `2.${v}b missing`).toContain(`${v}b`); + } + }); +}); + +describe('gītā chapter 2 Tier-1 — surface law', () => { + it('every segment’s tokens rejoin to a single source line', () => { + for (const seg of segments) { + const joined = saRow(seg).tokens.map((t) => t.text).join(' '); + expect(joined.length, `${seg.id} empty`).toBeGreaterThan(0); + } + }); + + it('for 2.50–2.72, the rejoined line equals the committed bg2-source.ts exactly', () => { + let checked = 0; + for (const seg of segments) { + const k = keyOf(seg); + if (!(k in BG2_SOURCE)) continue; + const joined = saRow(seg).tokens.map((t) => t.text).join(' '); + expect(joined, `segment ${seg.id}`).toBe(BG2_SOURCE[k]); + checked++; + } + expect(checked).toBe(Object.keys(BG2_SOURCE).length); // all 48 pilot keys bridged + }); + + it('every token’s aksharas rejoin to its exact written surface', () => { + for (const seg of segments) + for (const t of saRow(seg).tokens) { + expect(segmentAksharas(t.text).join(''), `${seg.id}: "${t.text}"`).toBe(t.text); + if (t.segments?.length) + expect(t.segments.map((p) => p.text).join(''), `${seg.id}: "${t.text}" pieces`).toBe(t.text); + } + }); +}); + +describe('gītā chapter 2 Tier-1 — no guessed sounds', () => { + it('every word romanizes back to its stated pronunciation', () => { + const fails = wordTokens + .filter((t) => !romanizationMatches(t.text, t.pronunciation!)) + .map((t) => `${t.text}: ${t.pronunciation} ⇏ ${aksharasOf(t.text).map((a) => a.rom).join('')}`); + expect(fails, `romanization mismatches: ${fails.join(' | ')}`).toEqual([]); + }); + + it('every word carries a sounded akshara row', () => { + for (const t of wordTokens) { + expect(t.segments?.length, `"${t.text}" has no akshara pieces`).toBeGreaterThan(0); + for (const p of t.segments!) { + expect(p.akshara, `"${t.text}" piece "${p.text}" not marked akshara`).toBe(true); + expect(p.pronunciation, `"${t.text}" piece "${p.text}" has no sound`).toBeTruthy(); + } + } + }); +}); + +describe('gītā chapter 2 Tier-1 — Tier-1 shape (no threads)', () => { + it('carries no unit spine (units: []) on any segment — threads are the deferred layer', () => { + for (const seg of segments) { + expect(seg.units, `${seg.id} has units`).toEqual([]); + for (const r of seg.renderings) + for (const t of r.tokens) expect(t.units, `${seg.id}: "${t.text}" bound to a unit`).toEqual([]); + } + }); + + it('renders Sanskrit only — no authored translation row', () => { + for (const seg of segments) { + expect(seg.renderings.map((r) => r.lang)).toEqual(['sa-Deva']); + } + }); +}); + +describe('gītā chapter 2 Tier-1 — dictionary-gloss coverage', () => { + it('a majority of words carry a trustworthy MW gloss (floor 0.65); exact figure printed', () => { + const glossed = wordTokens.filter((t) => !!t.gloss).length; + const total = wordTokens.length; + const pct = (100 * glossed) / total; + // eslint-disable-next-line no-console + console.log(`confident MW gloss coverage: ${glossed}/${total} words = ${pct.toFixed(1)}%`); + // Coverage is deliberately conservative: indeclinable particles and + // ambiguous sandhi cuts are left blank rather than shown a wrong gloss. + expect(pct).toBeGreaterThanOrEqual(65); + }); + + it('a word with no gloss shows no meaning at all — honest, never guessed', () => { + // A word either carries a non-empty gloss or has none; there is no + // placeholder/"unknown" text masquerading as a meaning. + for (const t of wordTokens) { + if ('gloss' in t) expect((t.gloss ?? '').length, `"${t.text}"`).toBeGreaterThan(0); + } + }); +});