Browse Source

继续优化

visuddhinanda 3 năm trước cách đây
mục cha
commit
bab95197d0

+ 33 - 8
app/Console/Commands/UpgradeCompound.php

@@ -52,7 +52,12 @@ class UpgradeCompound extends Command
 		$_word = $this->argument('word');
 		if(!empty($_word)){
 			$ts = new TurboSplit();
-			var_dump($ts->splitA($_word));
+			$results = $ts->splitA($_word);
+			Storage::disk('local')->put("tmp/compound1.csv", "word,type,grammar,parent,factors");
+			foreach ($results as $key => $value) {
+				# code...
+				Storage::disk('local')->append("tmp/compound1.csv", "{$value['word']},{$value['type']},{$value['grammar']},{$value['parent']},{$value['factors']}");
+			}
 			return 0;
 		}
 
@@ -85,21 +90,38 @@ class UpgradeCompound extends Command
 			return 0;	
 		}
 
-		$words = WordIndex::where('final',0)->select('word')->orderBy('count','desc')->skip(72300)->cursor();
-		//$words = WbwTemplate::select('real')->where('type','<>','.ctl.')->where('real','<>','')->groupBy('real')->cursor();
+		//$words = WordIndex::where('final',0)->select('word')->orderBy('count','desc')->skip(72300)->cursor();
+		$words = WbwTemplate::select('real')
+						->where('book',118)
+						->whereBetween('paragraph',[1329,1367])
+						->where('type','<>','.ctl.')
+						->where('real','<>','')
+						->groupBy('real')->cursor();
 		$count = 0;
 		foreach ($words as $key => $word) {
+			//先看目前字典里有没有
+			$isExists = UserDict::where('word',$word->real)
+								->whereIn('dict_id',[
+									      '57afac99-0887-455c-b18e-67c8682158b0',
+								          '4d3a0d92-0adc-4052-80f5-512a2603d0e8'
+										  ])
+								->exists();
+
+			if($isExists){
+				$this->info("found:{$word->real}");
+				continue;
+			}
 			# code...
 			$count++;
-			$this->info("{$count}:{$word->word}"); 
+			$this->info("{$count}:{$word->real}"); 
 			$ts = new TurboSplit();
-			$parts = $ts->splitA($word->word);
+			$parts = $ts->splitA($word->real);
 			foreach ($parts as $part) {
 				$new = UserDict::firstOrNew(
 					[
 						'word' => $part['word'],
 						'factors' => $part['factors'],
-						'dict_id' => $dict_id,
+						'dict_id' => $this->dict_id,
 					],
 					[
 						'id' => app('snowflake')->id(),
@@ -112,7 +134,10 @@ class UpgradeCompound extends Command
 				}else{
 					$new->type = ".cp.";
 				}
+				if(isset($part['grammar'])) $new->parent = $part['grammar'];
+				if(isset($part['parent'])) $new->parent = $part['parent'];
 				$new->confidence = (int)(50*$part['confidence']);
+				$new->note = $part['confidence'];
 				$new->language = 'cm';
 				$new->creator_id = 1;
 				$new->flag = 1;
@@ -120,8 +145,8 @@ class UpgradeCompound extends Command
 			}
 		}
 		//删除旧数据
-		UserDict::where('dict_id',$dict_id)->where('flag',0)->delete();
-		UserDict::where('dict_id',$dict_id)->where('flag',1)->update(['flag'=>0]);
+		UserDict::where('dict_id',$this->dict_id)->where('flag',0)->delete();
+		UserDict::where('dict_id',$this->dict_id)->where('flag',1)->update(['flag'=>0]);
 	
         return 0;
     }

+ 21 - 9
app/Console/Commands/UpgradeRegular.php

@@ -16,7 +16,7 @@ class UpgradeRegular extends Command
      *
      * @var string
      */
-    protected $signature = 'upgrade:regular';
+    protected $signature = 'upgrade:regular {word?} {--debug}';
 
     /**
      * The console command description.
@@ -75,12 +75,21 @@ class UpgradeRegular extends Command
 		}
 		fclose($handle);
 
-		
-		$words = UserDict::where('type','.n:base.')
-						->orWhere('type','.v:base.')
-						->orWhere('type','.adj:base.')
-						->orWhere('type','.ti:base.')
-						->select(['word','type','grammar'])
+		if(empty($this->argument('word'))){
+			$words = UserDict::where('type','.n:base.')
+							->orWhere('type','.v:base.')
+							->orWhere('type','.adj:base.')
+							->orWhere('type','.ti:base.');	
+		}else{
+			$words = UserDict::where('word',$this->argument('word'))
+							->where(function($query) {
+								$query->where('type','.n:base.')
+								->orWhere('type','.v:base.')
+								->orWhere('type','.adj:base.')
+								->orWhere('type','.ti:base.');
+							});		
+		}
+		$words = $words->select(['word','type','grammar'])
 						->groupBy(['word','type','grammar'])
 						->orderBy('word');
 		$query = "
@@ -123,7 +132,7 @@ class UpgradeRegular extends Command
 			if($casetable === false){
 				continue;
 			}
-			//$this->info("{$word->word}:{$word->type}");
+			if($this->option('debug'))  $this->info("{$word->word}:{$word->type}");
 			foreach($casetable as $thiscase){
 				if($word->type==".v:base."){
 					$endLen = (int)$thiscase[0];
@@ -161,12 +170,13 @@ class UpgradeRegular extends Command
 				}
 
 				if($isMatch){
-					//$this->error($newword.':match');
+					if($this->option('debug'))  $this->error($newword.':match');
 					//查询这个词是否在三藏存在
 					$exist = Cache::remember('palicanon/word/exists/'.$newword, 10 , function() use($newword) {
 						return WbwTemplate::where('real',$newword)->exists();
 					});
 					if($exist){
+						if($this->option('debug'))  $this->info('exist');
 						$new = UserDict::firstOrNew(
 							[
 								'word' => $newword,
@@ -187,6 +197,8 @@ class UpgradeRegular extends Command
 						$new->creator_id = 1;
 						$new->flag = 1;
 						$new->save();
+					}else{
+						if($this->option('debug'))  $this->info('not exist');
 					}
 				}
 			}

+ 1 - 0
app/Tools/CaseMan.php

@@ -44,6 +44,7 @@ class CaseMan
 					'type'=>$ending[2],
 					'grammar'=>$ending[3],
 					'parent'=>$base,
+					'factors'=>"{$base}+[{$ending[1]}]",
 					'confidence'=>$ending[4],
 				]);
 			}

+ 48 - 16
app/Tools/TurboSplit.php

@@ -7,7 +7,7 @@ use Illuminate\Support\Facades\Log;
 use Illuminate\Support\Facades\DB;
 use App\Models\WordPart;
 use App\Models\UserDict;
-
+use Illuminate\Support\Arr;
 
 class TurboSplit
 {
@@ -614,33 +614,65 @@ class TurboSplit
 				arsort($this->result); //按信心指数排序
 				$iCount = 0;
 				foreach ($this->result as $row => $value) {
+					$newword = ['word'=>$oneword,'type'=>'','grammar'=>'','parent'=>'','factors'=>$row,'confidence'=>$value];
+
 					if($iCount==0){
 						//后处理 找到base
-						$caseman = new CaseMan();
-						$parents = $caseman->WordToBase($oneword);
-						foreach ($parents as  $base) {
-							# code...
-							array_push($output,[
-								'word'=>$oneword,
-								'type'=>$base['type'],
-								'grammar'=>$base['grammar'],
-								'parent'=>$base['parent'],
-								'factors'=>$row,
-								'confidence'=>$value*$base['confidence'],
-							]);
+						if(\strpos($row,'[') !== FALSE){
+							$newword['type'] = '.un.';
+							array_push($output,$newword);
+						}else{
+							$factors = explode('+',$row);
+							$dictExist = UserDict::where('word',end($factors))
+												->where('dict_id','57afac99-0887-455c-b18e-67c8682158b0')
+												->select(['type','grammar','parent','factors'])
+												->get();
+							if(!$dictExist){
+								$dictExist = UserDict::where('word',end($factors))
+												->select(['type','grammar','parent','factors'])
+												->get();
+							}
+							if(isset($dictExist[0])){
+								$dictExitfactors = explode('+',$dictExist[0]->factors);
+								$dictWordEnding = substr(end($dictExitfactors),1) ;
+								//echo($dictWordEnding.PHP_EOL);
+								$caseman = new CaseMan();
+								$parents = $caseman->WordToBase($oneword);
+								foreach ($parents as $parent) {
+									# code...
+									$parentFactors = explode('+',$parent['factors']);
+									$parentFactorEnd = mb_substr(end($parentFactors),-mb_strlen($dictWordEnding,"UTF-8"));
+									//echo($parentFactorEnd.PHP_EOL);
+									if($parentFactorEnd == $dictWordEnding){
+										foreach ($dictExist as $dictExistWord) {
+											# code...
+											$newword['type'] = $dictExistWord->type;
+											$newword['grammar'] = $dictExistWord->grammar;
+											$newword['parent'] = $parent['parent'];
+											array_push($output,$newword);
+										}
+										break;
+									}
+								}
+							}else{
+								array_push($output,$newword);
+							}
 						}
+						
 					}else{
-						array_push($output,['word'=>$oneword,'factors'=>$row,'confidence'=>$value]);
+						array_push($output,$newword);
 					}
 					//后处理 进一步切分没有意思的长词
 					Log::info("后处理 进一步切分没有意思的长词");
 					$new = $this->split2($row);
 					if($new!==$row){
-						array_push($output,['word'=>$oneword,'factors'=>$new,'confidence'=>$value]);
+						$newword = ['word'=>$oneword,'type'=>'','grammar'=>'','parent'=>'','factors'=>$row,'confidence'=>$value];
+						array_push($output,$newword);
 						#再处理一次
 						$new2 = split2($new);
 						if($new2!==$new){
-							array_push($output,['word'=>$oneword,'factors'=>$new2,'confidence'=>$value]);
+							$newword['factors'] = $new2;
+							array_push($output,$newword);
 						}
 					}
 					$iCount++;

+ 3146 - 3146
app/Tools/ending.csv

@@ -1,3147 +1,3147 @@
 a","b","c","","d","","e
-["ti","tuṃ",".v:ind.",".inf.","0.99"],
-["ati","ituṃ",".v:ind.",".inf.","0.99"],
-["ati","itvā",".v:ind.",".abs.","0.99"],
-["ati","atvā",".v:ind.",".abs.","0.99"],
-["ti","tvā",".v:ind.",".abs.","0.99"],
-["ant","antā",".ti.",".m.$.pl.$.nom.","0.99"],
-["ant","antā",".ti.",".m.$.pl.$.voc.","0.3"],
-["ant","antā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","anta",".ti.",".m.$.sg.$.voc.","0.3"],
-["ant","antā",".ti.",".m.$.sg.$.voc.","0.3"],
-["ant","anta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["ant","antā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["ant","anta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["ant","antā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["ant","anta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["ant","antā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["ant","antā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","anta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["ant","antā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["ant","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["ant","antani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["ant","antāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["ant","antani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["ant","antāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["ant","antani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["ant","antāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","antassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["ant","antassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["ant","antassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["ant","antassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["ant","ante",".ti.",".m.$.pl.$.acc.","0.99"],
-["ant","ante",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","ante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["ant","ante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","antebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["ant","antebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["ant","antebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["ant","antebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["ant","antehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["ant","antehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["ant","antehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["ant","antehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["ant","antesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["ant","antī",".ti.",".f.$.pl.$.acc.","0.99"],
-["ant","antī",".ti.",".f.$.pl.$.nom.","0.99"],
-["ant","antī",".ti.",".f.$.pl.$.voc.","0.3"],
-["ant","antī",".ti.",".f.$.sg.$.nom.","0.99"],
-["ant","antī",".ti.",".f.$.sg.$.voc.","0.3"],
-["ant","antībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["ant","antībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["ant","antīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["ant","antīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["ant","antiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["ant","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["ant","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["ant","antīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["ant","antiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["ant","antiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["ant","antiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["ant","antiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["ant","antiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["ant","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["ant","antiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["ant","antiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["ant","antiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["ant","anto",".ti.",".m.$.pl.$.nom.","0.99"],
-["ant","anto",".ti.",".m.$.pl.$.voc.","0.3"],
-["ant","anto",".ti.",".m.$.sg.$.nom.","0.99"],
-["ant","anto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["ant","anto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["ant","anto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["ant","atā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","atā",".ti.",".m.$.sg.$.inst.","0.99"],
-["ant","atā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","atā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["ant","atā",".ti.",".m.$.sg.$.abl.","0.99"],
-["ant","atā",".ti.",".m.$.sg.$.inst.","0.99"],
-["ant","atā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["ant","atā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["ant","ataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["ant","ataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["ant","atena",".ti.",".m.$.sg.$.inst.","0.99"],
-["ant","atena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["ant","atena",".ti.",".m.$.sg.$.inst.","0.99"],
-["ant","atena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["ant","atī",".ti.",".f.$.pl.$.acc.","0.99"],
-["ant","atī",".ti.",".f.$.pl.$.nom.","0.99"],
-["ant","atī",".ti.",".f.$.pl.$.voc.","0.3"],
-["ant","atī",".ti.",".f.$.sg.$.nom.","0.99"],
-["ant","atī",".ti.",".f.$.sg.$.voc.","0.3"],
-["ant","ati",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","ati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","ati",".ti.",".m.$.sg.$.loc.","0.99"],
-["ant","ati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["ant","atībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["ant","atībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["ant","atīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["ant","atīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["ant","atiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["ant","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["ant","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["ant","atīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["ant","atiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["ant","atiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["ant","atiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["ant","atiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["ant","atiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["ant","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["ant","atiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["ant","atiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["ant","atiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["ant","ato",".ti.",".m.$.sg.$.dat.","0.99"],
-["ant","ato",".ti.",".m.$.sg.$.gen.","0.99"],
-["ant","ato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["ant","ato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["ant","ato",".ti.",".m.$.sg.$.dat.","0.99"],
-["ant","ato",".ti.",".m.$.sg.$.gen.","0.99"],
-["ant","ato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["ant","ato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["anta","antā",".ti.",".m.$.pl.$.nom.","0.99"],
-["anta","antā",".ti.",".m.$.pl.$.voc.","0.3"],
-["anta","antā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","anta",".ti.",".m.$.sg.$.voc.","0.3"],
-["anta","antā",".ti.",".m.$.sg.$.voc.","0.3"],
-["anta","anta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["anta","antā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["anta","anta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["anta","antā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["anta","anta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["anta","antā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["anta","antā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","anta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["anta","antā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["anta","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["anta","antani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["anta","antāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["anta","antani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["anta","antāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["anta","antani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["anta","antāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","antassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["anta","antassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["anta","antassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["anta","antassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["anta","ante",".ti.",".m.$.pl.$.acc.","0.99"],
-["anta","ante",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","ante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["anta","ante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","antebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["anta","antebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["anta","antebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["anta","antebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["anta","antehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["anta","antehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["anta","antehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["anta","antehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["anta","antesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["anta","antī",".ti.",".f.$.pl.$.acc.","0.99"],
-["anta","antī",".ti.",".f.$.pl.$.nom.","0.99"],
-["anta","antī",".ti.",".f.$.pl.$.voc.","0.3"],
-["anta","antī",".ti.",".f.$.sg.$.nom.","0.99"],
-["anta","antī",".ti.",".f.$.sg.$.voc.","0.3"],
-["anta","antībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["anta","antībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["anta","antīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["anta","antīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["anta","antiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["anta","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["anta","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["anta","antīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["anta","antiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["anta","antiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["anta","antiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["anta","antiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["anta","antiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["anta","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["anta","antiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["anta","antiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["anta","antiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["anta","anto",".ti.",".m.$.pl.$.nom.","0.99"],
-["anta","anto",".ti.",".m.$.pl.$.voc.","0.3"],
-["anta","anto",".ti.",".m.$.sg.$.nom.","0.99"],
-["anta","anto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["anta","anto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["anta","anto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["anta","atā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","atā",".ti.",".m.$.sg.$.inst.","0.99"],
-["anta","atā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","atā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["anta","atā",".ti.",".m.$.sg.$.abl.","0.99"],
-["anta","atā",".ti.",".m.$.sg.$.inst.","0.99"],
-["anta","atā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["anta","atā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["anta","ataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["anta","ataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["anta","atena",".ti.",".m.$.sg.$.inst.","0.99"],
-["anta","atena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["anta","atena",".ti.",".m.$.sg.$.inst.","0.99"],
-["anta","atena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["anta","atī",".ti.",".f.$.pl.$.acc.","0.99"],
-["anta","atī",".ti.",".f.$.pl.$.nom.","0.99"],
-["anta","atī",".ti.",".f.$.pl.$.voc.","0.3"],
-["anta","atī",".ti.",".f.$.sg.$.nom.","0.99"],
-["anta","atī",".ti.",".f.$.sg.$.voc.","0.3"],
-["anta","ati",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","ati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","ati",".ti.",".m.$.sg.$.loc.","0.99"],
-["anta","ati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["anta","atībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["anta","atībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["anta","atīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["anta","atīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["anta","atiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["anta","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["anta","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["anta","atīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["anta","atiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["anta","atiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["anta","atiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["anta","atiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["anta","atiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["anta","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["anta","atiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["anta","atiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["anta","atiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["anta","ato",".ti.",".m.$.sg.$.dat.","0.99"],
-["anta","ato",".ti.",".m.$.sg.$.gen.","0.99"],
-["anta","ato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["anta","ato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["anta","ato",".ti.",".m.$.sg.$.dat.","0.99"],
-["anta","ato",".ti.",".m.$.sg.$.gen.","0.99"],
-["anta","ato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["anta","ato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mant","mā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mant","mā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mant","mā",".ti.",".m.$.sg.$.nom.","0.99"],
-["mant","ma",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","mā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","mā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","ma",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","maṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mant","maṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mant","maṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mant","maṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mant","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mant","mantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mant","mantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mant","mantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","manta",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","mantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mant","manta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mant","mantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mant","manta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","mantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","manta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","mantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","mantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","manta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","mantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mant","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mant","mantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mant","mantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mant","mantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","mantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","mantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","mantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mant","mante",".ti.",".m.$.pl.$.acc.","0.99"],
-["mant","mante",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mant","mante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mant","mantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mant","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mant","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mant","mantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mant","mantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mant","mantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mant","mantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mant","mantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mant","mantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mant","mantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mant","mantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mant","mantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mant","mantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mant","mantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mant","mantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mant","mantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mant","mantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mant","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mant","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mant","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mant","mantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mant","mantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mant","mantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mant","mantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mant","mantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mant","mantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mant","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mant","mantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mant","mantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mant","mantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mant","manto",".ti.",".m.$.pl.$.nom.","0.99"],
-["mant","manto",".ti.",".m.$.pl.$.voc.","0.3"],
-["mant","manto",".ti.",".m.$.sg.$.nom.","0.99"],
-["mant","manto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mant","manto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mant","manto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mant","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mant","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mant","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mant","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mant","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mant","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mant","mataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mant","mataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mant","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mant","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mant","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mant","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mant","matī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mant","matī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mant","matī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mant","matī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mant","matī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mant","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mant","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mant","matībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mant","matībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mant","matīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mant","matīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mant","matiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mant","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mant","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mant","matīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mant","matiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mant","matiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mant","matiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mant","matiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mant","matiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mant","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mant","matiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mant","matiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mant","matiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mant","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mant","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mant","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mant","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mant","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mant","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mant","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mant","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mant","me",".ti.",".m.$.pl.$.acc.","0.99"],
-["mant","mebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mant","mebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mant","mehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mant","mehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mant","mesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vant","vā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vant","vā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vant","vā",".ti.",".m.$.sg.$.nom.","0.99"],
-["vant","va",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","va",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vant","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vant","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vant","vaṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vant","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vant","vantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vant","vantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vant","vantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vanta",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vant","vanta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vant","vantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vant","vanta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vanta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","vantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","vantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vanta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vant","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vant","vantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vant","vantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vant","vantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","vantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vant","vante",".ti.",".m.$.pl.$.acc.","0.99"],
-["vant","vante",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vant","vante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vant","vantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vant","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vant","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vant","vantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vant","vantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vant","vantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vant","vantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vant","vantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vant","vantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vant","vantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vant","vantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vant","vantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vant","vantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vant","vantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vant","vantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vant","vantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vant","vantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vant","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vant","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vant","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vant","vantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vant","vantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vant","vantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vant","vantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vant","vantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vant","vantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vant","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vant","vantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vant","vantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vant","vantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vant","vanto",".ti.",".m.$.pl.$.nom.","0.99"],
-["vant","vanto",".ti.",".m.$.pl.$.voc.","0.3"],
-["vant","vanto",".ti.",".m.$.sg.$.nom.","0.99"],
-["vant","vanto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vant","vanto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vant","vanto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vant","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vant","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vant","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vant","vataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vant","vataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vant","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vant","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vant","vatī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vant","vatī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vant","vatī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vant","vatī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vant","vatī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vant","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vant","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vant","vatībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vant","vatībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vant","vatīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vant","vatīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vant","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vant","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vant","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vant","vatīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vant","vatiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vant","vatiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vant","vatiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vant","vatiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vant","vatiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vant","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vant","vatiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vant","vatiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vant","vatiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vant","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vant","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vant","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vant","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vant","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vant","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vant","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vant","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vant","ve",".ti.",".m.$.pl.$.acc.","0.99"],
-["vant","vebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vant","vebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vant","vehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vant","vehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vant","vesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["mantu","mā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mantu","mā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mantu","mā",".ti.",".m.$.sg.$.nom.","0.99"],
-["mantu","ma",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","mā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","mā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","ma",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","maṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mantu","maṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mantu","maṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mantu","maṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mantu","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mantu","mantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mantu","mantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mantu","mantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","manta",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","mantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mantu","manta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mantu","mantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mantu","manta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","mantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","manta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","mantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","mantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","manta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","mantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mantu","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mantu","mantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mantu","mantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mantu","mantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","mantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","mantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","mantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mantu","mante",".ti.",".m.$.pl.$.acc.","0.99"],
-["mantu","mante",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mantu","mante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mantu","mantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mantu","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mantu","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mantu","mantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mantu","mantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mantu","mantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mantu","mantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mantu","mantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mantu","mantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mantu","mantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mantu","mantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mantu","mantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mantu","mantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mantu","mantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mantu","mantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mantu","mantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mantu","mantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mantu","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mantu","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mantu","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mantu","mantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mantu","mantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mantu","mantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mantu","mantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mantu","mantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mantu","mantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mantu","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mantu","mantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mantu","mantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mantu","mantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mantu","manto",".ti.",".m.$.pl.$.nom.","0.99"],
-["mantu","manto",".ti.",".m.$.pl.$.voc.","0.3"],
-["mantu","manto",".ti.",".m.$.sg.$.nom.","0.99"],
-["mantu","manto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mantu","manto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mantu","manto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mantu","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mantu","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mantu","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mantu","mataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mantu","mataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mantu","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mantu","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mantu","matī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mantu","matī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mantu","matī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mantu","matī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mantu","matī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mantu","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mantu","matībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mantu","matībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mantu","matīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mantu","matīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mantu","matiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mantu","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mantu","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mantu","matīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mantu","matiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mantu","matiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mantu","matiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mantu","matiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mantu","matiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mantu","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mantu","matiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mantu","matiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mantu","matiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mantu","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mantu","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mantu","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mantu","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mantu","me",".ti.",".m.$.pl.$.acc.","0.99"],
-["mantu","mebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mantu","mebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mantu","mehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mantu","mehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mantu","mesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vantu","vā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vantu","vā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vantu","vā",".ti.",".m.$.sg.$.nom.","0.99"],
-["vantu","va",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","va",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vantu","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vantu","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vantu","vaṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vantu","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vantu","vantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vantu","vantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vantu","vantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vanta",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vantu","vanta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vantu","vantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vantu","vanta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vanta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","vantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","vantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vanta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vantu","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vantu","vantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vantu","vantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vantu","vantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","vantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vantu","vante",".ti.",".m.$.pl.$.acc.","0.99"],
-["vantu","vante",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vantu","vante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vantu","vantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vantu","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vantu","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vantu","vantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vantu","vantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vantu","vantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vantu","vantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vantu","vantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vantu","vantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vantu","vantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vantu","vantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vantu","vantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vantu","vantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vantu","vantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vantu","vantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vantu","vantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vantu","vantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vantu","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vantu","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vantu","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vantu","vantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vantu","vantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vantu","vantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vantu","vantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vantu","vantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vantu","vantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vantu","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vantu","vantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vantu","vantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vantu","vantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vantu","vanto",".ti.",".m.$.pl.$.nom.","0.99"],
-["vantu","vanto",".ti.",".m.$.pl.$.voc.","0.3"],
-["vantu","vanto",".ti.",".m.$.sg.$.nom.","0.99"],
-["vantu","vanto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vantu","vanto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vantu","vanto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vantu","vataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vantu","vataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vantu","vatī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vantu","vatī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vantu","vatī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vantu","vatī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vantu","vatī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vantu","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vantu","vatībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vantu","vatībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vantu","vatīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vantu","vatīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vantu","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vantu","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vantu","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vantu","vatīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vantu","vatiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vantu","vatiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vantu","vatiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vantu","vatiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vantu","vatiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vantu","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vantu","vatiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vantu","vatiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vantu","vatiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vantu","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vantu","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vantu","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vantu","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vantu","ve",".ti.",".m.$.pl.$.acc.","0.99"],
-["vantu","vebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vantu","vebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vantu","vehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vantu","vehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vantu","vesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["mat","mā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mat","mā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mat","mā",".ti.",".m.$.sg.$.nom.","0.99"],
-["mat","ma",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","mā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","mā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","ma",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","maṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mat","maṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mat","maṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mat","maṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mat","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mat","mantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["mat","mantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["mat","mantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","manta",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","mantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["mat","manta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mat","mantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mat","manta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","mantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","manta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","mantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","mantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","manta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","mantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mat","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mat","mantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mat","mantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mat","mantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","mantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","mantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","mantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mat","mante",".ti.",".m.$.pl.$.acc.","0.99"],
-["mat","mante",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["mat","mante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mat","mantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mat","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mat","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mat","mantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mat","mantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mat","mantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["mat","mantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["mat","mantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["mat","mantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mat","mantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mat","mantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mat","mantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mat","mantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mat","mantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mat","mantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mat","mantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mat","mantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mat","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mat","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mat","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mat","mantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mat","mantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mat","mantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mat","mantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mat","mantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mat","mantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mat","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mat","mantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mat","mantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mat","mantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mat","manto",".ti.",".m.$.pl.$.nom.","0.99"],
-["mat","manto",".ti.",".m.$.pl.$.voc.","0.3"],
-["mat","manto",".ti.",".m.$.sg.$.nom.","0.99"],
-["mat","manto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["mat","manto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["mat","manto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["mat","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mat","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mat","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["mat","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["mat","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["mat","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mat","mataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["mat","mataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["mat","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mat","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mat","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["mat","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["mat","matī",".ti.",".f.$.pl.$.acc.","0.99"],
-["mat","matī",".ti.",".f.$.pl.$.nom.","0.99"],
-["mat","matī",".ti.",".f.$.pl.$.voc.","0.3"],
-["mat","matī",".ti.",".f.$.sg.$.nom.","0.99"],
-["mat","matī",".ti.",".f.$.sg.$.voc.","0.3"],
-["mat","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["mat","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["mat","matībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mat","matībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mat","matīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["mat","matīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["mat","matiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["mat","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["mat","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["mat","matīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["mat","matiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["mat","matiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["mat","matiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["mat","matiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["mat","matiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["mat","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["mat","matiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["mat","matiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["mat","matiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["mat","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mat","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mat","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mat","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mat","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["mat","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["mat","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["mat","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["mat","me",".ti.",".m.$.pl.$.acc.","0.99"],
-["mat","mebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mat","mebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mat","mehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["mat","mehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["mat","mesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vat","vā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vat","vā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vat","vā",".ti.",".m.$.sg.$.nom.","0.99"],
-["vat","va",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","va",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vat","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vat","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vat","vaṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vat","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vat","vantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vat","vantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vat","vantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vanta",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vat","vanta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vat","vantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vat","vanta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vanta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","vantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","vantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vanta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vat","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vat","vantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vat","vantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vat","vantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","vantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vat","vante",".ti.",".m.$.pl.$.acc.","0.99"],
-["vat","vante",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vat","vante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vat","vantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vat","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vat","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vat","vantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vat","vantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vat","vantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vat","vantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vat","vantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vat","vantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vat","vantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vat","vantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vat","vantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vat","vantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vat","vantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vat","vantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vat","vantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vat","vantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vat","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vat","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vat","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vat","vantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vat","vantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vat","vantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vat","vantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vat","vantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vat","vantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vat","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vat","vantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vat","vantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vat","vantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vat","vanto",".ti.",".m.$.pl.$.nom.","0.99"],
-["vat","vanto",".ti.",".m.$.pl.$.voc.","0.3"],
-["vat","vanto",".ti.",".m.$.sg.$.nom.","0.99"],
-["vat","vanto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vat","vanto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vat","vanto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vat","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vat","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vat","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vat","vataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vat","vataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vat","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vat","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vat","vatī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vat","vatī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vat","vatī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vat","vatī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vat","vatī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vat","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vat","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vat","vatībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vat","vatībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vat","vatīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vat","vatīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vat","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vat","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vat","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vat","vatīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vat","vatiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vat","vatiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vat","vatiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vat","vatiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vat","vatiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vat","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vat","vatiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vat","vatiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vat","vatiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vat","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vat","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vat","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vat","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vat","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vat","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vat","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vat","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vat","ve",".ti.",".m.$.pl.$.acc.","0.99"],
-["vat","vebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vat","vebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vat","vehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vat","vehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vat","vesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["manta","mā",".ti.",".m.$.pl.$.nom.","0.99"],
-["manta","mā",".ti.",".m.$.pl.$.voc.","0.3"],
-["manta","mā",".ti.",".m.$.sg.$.nom.","0.99"],
-["manta","ma",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","mā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","mā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","ma",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","mā",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","mā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","maṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["manta","maṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["manta","maṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["manta","maṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["manta","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["manta","mantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["manta","mantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["manta","mantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","manta",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","mantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["manta","manta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["manta","mantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["manta","manta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","mantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","manta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","mantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","mantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","manta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","mantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["manta","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["manta","mantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["manta","mantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["manta","mantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","mantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","mantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","mantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["manta","mante",".ti.",".m.$.pl.$.acc.","0.99"],
-["manta","mante",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["manta","mante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["manta","mantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["manta","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["manta","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["manta","mantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["manta","mantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["manta","mantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["manta","mantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["manta","mantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["manta","mantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["manta","mantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["manta","mantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["manta","mantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["manta","mantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["manta","mantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["manta","mantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["manta","mantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["manta","mantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["manta","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["manta","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["manta","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["manta","mantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["manta","mantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["manta","mantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["manta","mantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["manta","mantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["manta","mantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["manta","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["manta","mantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["manta","mantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["manta","mantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["manta","manto",".ti.",".m.$.pl.$.nom.","0.99"],
-["manta","manto",".ti.",".m.$.pl.$.voc.","0.3"],
-["manta","manto",".ti.",".m.$.sg.$.nom.","0.99"],
-["manta","manto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["manta","manto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["manta","manto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["manta","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["manta","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["manta","matā",".ti.",".m.$.sg.$.abl.","0.99"],
-["manta","matā",".ti.",".m.$.sg.$.inst.","0.99"],
-["manta","matā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["manta","matā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["manta","mataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["manta","mataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["manta","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["manta","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["manta","matena",".ti.",".m.$.sg.$.inst.","0.99"],
-["manta","matena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["manta","matī",".ti.",".f.$.pl.$.acc.","0.99"],
-["manta","matī",".ti.",".f.$.pl.$.nom.","0.99"],
-["manta","matī",".ti.",".f.$.pl.$.voc.","0.3"],
-["manta","matī",".ti.",".f.$.sg.$.nom.","0.99"],
-["manta","matī",".ti.",".f.$.sg.$.voc.","0.3"],
-["manta","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","mati",".ti.",".m.$.sg.$.loc.","0.99"],
-["manta","mati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["manta","matībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["manta","matībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["manta","matīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["manta","matīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["manta","matiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["manta","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["manta","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["manta","matīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["manta","matiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["manta","matiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["manta","matiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["manta","matiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["manta","matiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["manta","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["manta","matiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["manta","matiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["manta","matiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["manta","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["manta","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["manta","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["manta","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["manta","mato",".ti.",".m.$.sg.$.dat.","0.99"],
-["manta","mato",".ti.",".m.$.sg.$.gen.","0.99"],
-["manta","mato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["manta","mato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["manta","me",".ti.",".m.$.pl.$.acc.","0.99"],
-["manta","mebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["manta","mebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["manta","mehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["manta","mehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["manta","mesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vanta","vā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vanta","vā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vanta","vā",".ti.",".m.$.sg.$.nom.","0.99"],
-["vanta","va",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","va",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vanta","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vanta","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vanta","vaṃ",".ti.",".m.$.sg.$.nom.","0.99"],
-["vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vanta","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vanta","vantā",".ti.",".m.$.pl.$.nom.","0.99"],
-["vanta","vantā",".ti.",".m.$.pl.$.voc.","0.3"],
-["vanta","vantā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vanta",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vantā",".ti.",".m.$.sg.$.voc.","0.3"],
-["vanta","vanta",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vanta","vantā",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vanta","vanta",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vantā",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vanta",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","vantā",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","vantā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vanta",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vantā",".ti.",".nt.$.sg.$.voc.","0.3"],
-["vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99"],
-["vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99"],
-["vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vanta","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vanta","vantani",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vanta","vantāni",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vanta","vantani",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vantāni",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vantani",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","vantāni",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99"],
-["vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99"],
-["vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vanta","vante",".ti.",".m.$.pl.$.acc.","0.99"],
-["vanta","vante",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vante",".ti.",".nt.$.pl.$.acc.","0.99"],
-["vanta","vante",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vantebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vanta","vantebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vanta","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vanta","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vanta","vantehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vanta","vantehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vanta","vantehi",".ti.",".nt.$.pl.$.abl.","0.99"],
-["vanta","vantehi",".ti.",".nt.$.pl.$.inst.","0.99"],
-["vanta","vantesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99"],
-["vanta","vantī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vanta","vantī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vanta","vantī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vanta","vantī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vanta","vantī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vanta","vantībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vanta","vantībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vanta","vantīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vanta","vantīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vanta","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vanta","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vanta","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vanta","vantīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vanta","vantiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vanta","vantiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vanta","vantiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vanta","vantiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vanta","vantiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vanta","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vanta","vantiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vanta","vantiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vanta","vantiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vanta","vanto",".ti.",".m.$.pl.$.nom.","0.99"],
-["vanta","vanto",".ti.",".m.$.pl.$.voc.","0.3"],
-["vanta","vanto",".ti.",".m.$.sg.$.nom.","0.99"],
-["vanta","vanto",".ti.",".nt.$.pl.$.nom.","0.99"],
-["vanta","vanto",".ti.",".nt.$.pl.$.voc.","0.3"],
-["vanta","vanto",".ti.",".nt.$.sg.$.nom.","0.99"],
-["vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99"],
-["vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99"],
-["vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99"],
-["vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vanta","vataṃ",".ti.",".m.$.pl.$.dat.","0.99"],
-["vanta","vataṃ",".ti.",".m.$.pl.$.gen.","0.99"],
-["vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99"],
-["vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99"],
-["vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99"],
-["vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99"],
-["vanta","vatī",".ti.",".f.$.pl.$.acc.","0.99"],
-["vanta","vatī",".ti.",".f.$.pl.$.nom.","0.99"],
-["vanta","vatī",".ti.",".f.$.pl.$.voc.","0.3"],
-["vanta","vatī",".ti.",".f.$.sg.$.nom.","0.99"],
-["vanta","vatī",".ti.",".f.$.sg.$.voc.","0.3"],
-["vanta","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vati",".ti.",".m.$.sg.$.loc.","0.99"],
-["vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99"],
-["vanta","vatībhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vanta","vatībhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vanta","vatīhi",".ti.",".f.$.pl.$.abl.","0.99"],
-["vanta","vatīhi",".ti.",".f.$.pl.$.inst.","0.99"],
-["vanta","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99"],
-["vanta","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99"],
-["vanta","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99"],
-["vanta","vatīsu",".ti.",".f.$.pl.$.loc.","0.99"],
-["vanta","vatiyā",".ti.",".f.$.sg.$.abl.","0.99"],
-["vanta","vatiyā",".ti.",".f.$.sg.$.dat.","0.99"],
-["vanta","vatiyā",".ti.",".f.$.sg.$.gen.","0.99"],
-["vanta","vatiyā",".ti.",".f.$.sg.$.inst.","0.99"],
-["vanta","vatiyā",".ti.",".f.$.sg.$.loc.","0.99"],
-["vanta","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99"],
-["vanta","vatiyo",".ti.",".f.$.pl.$.acc.","0.99"],
-["vanta","vatiyo",".ti.",".f.$.pl.$.nom.","0.99"],
-["vanta","vatiyo",".ti.",".f.$.pl.$.voc.","0.3"],
-["vanta","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vanta","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vanta","vato",".ti.",".m.$.sg.$.dat.","0.99"],
-["vanta","vato",".ti.",".m.$.sg.$.gen.","0.99"],
-["vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99"],
-["vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99"],
-["vanta","ve",".ti.",".m.$.pl.$.acc.","0.99"],
-["vanta","vebhi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vanta","vebhi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vanta","vehi",".ti.",".m.$.pl.$.abl.","0.99"],
-["vanta","vehi",".ti.",".m.$.pl.$.inst.","0.99"],
-["vanta","vesu",".ti.",".m.$.pl.$.loc.","0.99"],
-["a","o",".n.",".m.$.sg.$.nom.","0.99"],
-["a","a",".n.",".m.$.sg.$.voc.","0.3"],
-["a","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["a","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["a","assa",".n.",".m.$.sg.$.gen.","0.99"],
-["a","assa",".n.",".m.$.sg.$.dat.","0.99"],
-["a","āya",".n.",".m.$.sg.$.dat.","0.99"],
-["a","ena",".n.",".m.$.sg.$.inst.","0.99"],
-["a","ā",".n.",".m.$.sg.$.abl.","0.99"],
-["a","asmā",".n.",".m.$.sg.$.abl.","0.99"],
-["a","amhā",".n.",".m.$.sg.$.abl.","0.99"],
-["a","ato",".n.",".m.$.sg.$.abl.","0.99"],
-["a","e",".n.",".m.$.sg.$.loc.","0.99"],
-["a","asmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["a","amhi",".n.",".m.$.sg.$.loc.","0.99"],
-["a","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["a","āse",".n.",".m.$.pl.$.nom.","0.99"],
-["a","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["a","e",".n.",".m.$.pl.$.acc.","0.99"],
-["a","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["a","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["a","ehi",".n.",".m.$.pl.$.inst.","0.99"],
-["a","ebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["a","ehi",".n.",".m.$.pl.$.abl.","0.99"],
-["a","ebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["a","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["a","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["a","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["a","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["a","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["a","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["a","āya",".n.",".nt.$.sg.$.dat.","0.99"],
-["a","ena",".n.",".nt.$.sg.$.inst.","0.99"],
-["a","ā",".n.",".nt.$.sg.$.abl.","0.99"],
-["a","asmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["a","amhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["a","ato",".n.",".nt.$.sg.$.abl.","0.99"],
-["a","e",".n.",".nt.$.sg.$.loc.","0.99"],
-["a","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["a","amhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["a","āni",".n.",".nt.$.pl.$.nom.","0.99"],
-["a","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["a","āni",".n.",".nt.$.pl.$.voc.","0.3"],
-["a","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["a","āni",".n.",".nt.$.pl.$.acc.","0.99"],
-["a","e",".n.",".nt.$.pl.$.acc.","0.99"],
-["a","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["a","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["a","ehi",".n.",".nt.$.pl.$.inst.","0.99"],
-["a","ebhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["a","ehi",".n.",".nt.$.pl.$.abl.","0.99"],
-["a","ebhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["a","esu",".n.",".nt.$.pl.$.loc.","0.99"],
-["a","esaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["a","esaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["a","esaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["a","esaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["ā","ā",".n.",".f.$.sg.$.nom.","0.99"],
-["ā","ā",".n.",".f.$.sg.$.voc.","0.3"],
-["ā","e",".n.",".f.$.sg.$.voc.","0.3"],
-["ā","aṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ā","āya",".n.",".f.$.sg.$.gen.","0.99"],
-["ā","āya",".n.",".f.$.sg.$.dat.","0.99"],
-["ā","āya",".n.",".f.$.sg.$.inst.","0.99"],
-["ā","āya",".n.",".f.$.sg.$.abl.","0.99"],
-["ā","ato",".n.",".f.$.sg.$.abl.","0.99"],
-["ā","āya",".n.",".f.$.sg.$.loc.","0.99"],
-["ā","āyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ā","ā",".n.",".f.$.pl.$.nom.","0.99"],
-["ā","āyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ā","ā",".n.",".f.$.pl.$.voc.","0.3"],
-["ā","āyo",".n.",".f.$.pl.$.voc.","0.3"],
-["ā","ā",".n.",".f.$.pl.$.acc.","0.99"],
-["ā","āyo",".n.",".f.$.pl.$.acc.","0.99"],
-["ā","ānaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ā","ānaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ā","āhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ā","ābhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ā","āhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ā","ābhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ā","āsu",".n.",".f.$.pl.$.loc.","0.99"],
-["i","i",".n.",".m.$.sg.$.nom.","0.99"],
-["i","i",".n.",".m.$.sg.$.voc.","0.3"],
-["i","iṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["i","issa",".n.",".m.$.sg.$.gen.","0.99"],
-["i","ino",".n.",".m.$.sg.$.gen.","0.99"],
-["i","issa",".n.",".m.$.sg.$.dat.","0.99"],
-["i","ino",".n.",".m.$.sg.$.dat.","0.99"],
-["i","inā",".n.",".m.$.sg.$.inst.","0.99"],
-["i","inā",".n.",".m.$.sg.$.abl.","0.99"],
-["i","ismā",".n.",".m.$.sg.$.abl.","0.99"],
-["i","imhā",".n.",".m.$.sg.$.abl.","0.99"],
-["i","ismiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["i","imhi",".n.",".m.$.sg.$.loc.","0.99"],
-["i","ī",".n.",".m.$.pl.$.nom.","0.99"],
-["i","ayo",".n.",".m.$.pl.$.nom.","0.99"],
-["i","ī",".n.",".m.$.pl.$.voc.","0.3"],
-["i","ayo",".n.",".m.$.pl.$.voc.","0.3"],
-["i","ī",".n.",".m.$.pl.$.acc.","0.99"],
-["i","ayo",".n.",".m.$.pl.$.acc.","0.99"],
-["i","īnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["i","īnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["i","īhi",".n.",".m.$.pl.$.inst.","0.99"],
-["i","ībhi",".n.",".m.$.pl.$.inst.","0.99"],
-["i","īhi",".n.",".m.$.pl.$.abl.","0.99"],
-["i","ībhi",".n.",".m.$.pl.$.abl.","0.99"],
-["i","īsu",".n.",".m.$.pl.$.loc.","0.99"],
-["i","i",".n.",".nt.$.sg.$.nom.","0.99"],
-["i","i",".n.",".nt.$.sg.$.voc.","0.3"],
-["i","iṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["i","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["i","ino",".n.",".nt.$.sg.$.gen.","0.99"],
-["i","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["i","ino",".n.",".nt.$.sg.$.dat.","0.99"],
-["i","inā",".n.",".nt.$.sg.$.inst.","0.99"],
-["i","inā",".n.",".nt.$.sg.$.abl.","0.99"],
-["i","ismā",".n.",".nt.$.sg.$.abl.","0.99"],
-["i","imhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["i","ismiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","imhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","īni",".n.",".nt.$.pl.$.nom.","0.99"],
-["i","ī",".n.",".nt.$.pl.$.nom.","0.99"],
-["i","īni",".n.",".nt.$.pl.$.voc.","0.3"],
-["i","ī",".n.",".nt.$.pl.$.voc.","0.3"],
-["i","īni",".n.",".nt.$.pl.$.acc.","0.99"],
-["i","ī",".n.",".nt.$.pl.$.acc.","0.99"],
-["i","īnaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["i","īnaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["i","īhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ībhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","īhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","ībhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","īsu",".n.",".nt.$.pl.$.loc.","0.99"],
-["i","i",".n.",".f.$.sg.$.nom.","0.99"],
-["i","i",".n.",".f.$.sg.$.voc.","0.3"],
-["i","iṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["i","iyā",".n.",".f.$.sg.$.gen.","0.99"],
-["i","yā",".n.",".f.$.sg.$.gen.","0.99"],
-["i","iyā",".n.",".f.$.sg.$.dat.","0.99"],
-["i","yā",".n.",".f.$.sg.$.dat.","0.99"],
-["i","iyā",".n.",".f.$.sg.$.inst.","0.99"],
-["i","yā",".n.",".f.$.sg.$.inst.","0.99"],
-["i","iyā",".n.",".f.$.sg.$.abl.","0.99"],
-["i","yā",".n.",".f.$.sg.$.abl.","0.99"],
-["i","iyā",".n.",".f.$.sg.$.loc.","0.99"],
-["i","yā",".n.",".f.$.sg.$.loc.","0.99"],
-["i","iyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["i","yaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["i","ī",".n.",".f.$.pl.$.nom.","0.99"],
-["i","iyo",".n.",".f.$.pl.$.nom.","0.99"],
-["i","yo",".n.",".f.$.pl.$.nom.","0.99"],
-["i","ī",".n.",".f.$.pl.$.voc.","0.3"],
-["i","iyo",".n.",".f.$.pl.$.voc.","0.3"],
-["i","yo",".n.",".f.$.pl.$.voc.","0.3"],
-["i","ī",".n.",".f.$.pl.$.acc.","0.99"],
-["i","iyo",".n.",".f.$.pl.$.acc.","0.99"],
-["i","yo",".n.",".f.$.pl.$.acc.","0.99"],
-["i","īnaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["i","īnaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["i","īhi",".n.",".f.$.pl.$.inst.","0.99"],
-["i","ībhi",".n.",".f.$.pl.$.inst.","0.99"],
-["i","īhi",".n.",".f.$.pl.$.abl.","0.99"],
-["i","ībhi",".n.",".f.$.pl.$.abl.","0.99"],
-["i","īsu",".n.",".f.$.pl.$.loc.","0.99"],
-["ī","ī",".n.",".m.$.sg.$.nom.","0.99"],
-["in","ī",".n.",".m.$.sg.$.nom.","0.99"],
-["ī","ī",".n.",".m.$.sg.$.voc.","0.3"],
-["ī","inī",".n.",".m.$.sg.$.voc.","0.3"],
-["in","ī",".n.",".m.$.sg.$.voc.","0.3"],
-["in","inī",".n.",".m.$.sg.$.voc.","0.3"],
-["ī","iṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ī","inaṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["in","iṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["in","inaṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ī","issa",".n.",".m.$.sg.$.gen.","0.99"],
-["ī","ino",".n.",".m.$.sg.$.gen.","0.99"],
-["in","issa",".n.",".m.$.sg.$.gen.","0.99"],
-["in","ino",".n.",".m.$.sg.$.gen.","0.99"],
-["ī","issa",".n.",".m.$.sg.$.dat.","0.99"],
-["ī","ino",".n.",".m.$.sg.$.dat.","0.99"],
-["in","issa",".n.",".m.$.sg.$.dat.","0.99"],
-["in","ino",".n.",".m.$.sg.$.dat.","0.99"],
-["ī","inā",".n.",".m.$.sg.$.inst.","0.99"],
-["in","inā",".n.",".m.$.sg.$.inst.","0.99"],
-["ī","inā",".n.",".m.$.sg.$.abl.","0.99"],
-["ī","ismā",".n.",".m.$.sg.$.abl.","0.99"],
-["ī","imhā",".n.",".m.$.sg.$.abl.","0.99"],
-["in","inā",".n.",".m.$.sg.$.abl.","0.99"],
-["in","ismā",".n.",".m.$.sg.$.abl.","0.99"],
-["in","imhā",".n.",".m.$.sg.$.abl.","0.99"],
-["ī","ismiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["ī","imhi",".n.",".m.$.sg.$.loc.","0.99"],
-["in","ismiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["in","imhi",".n.",".m.$.sg.$.loc.","0.99"],
-["ī","ī",".n.",".m.$.pl.$.nom.","0.99"],
-["ī","ino",".n.",".m.$.pl.$.nom.","0.99"],
-["in","ī",".n.",".m.$.pl.$.nom.","0.99"],
-["in","ino",".n.",".m.$.pl.$.nom.","0.99"],
-["ī","ī",".n.",".m.$.pl.$.voc.","0.3"],
-["ī","ino",".n.",".m.$.pl.$.voc.","0.3"],
-["in","ī",".n.",".m.$.pl.$.voc.","0.3"],
-["in","ino",".n.",".m.$.pl.$.voc.","0.3"],
-["ī","ī",".n.",".m.$.pl.$.acc.","0.99"],
-["ī","ino",".n.",".m.$.pl.$.acc.","0.99"],
-["in","ī",".n.",".m.$.pl.$.acc.","0.99"],
-["in","ino",".n.",".m.$.pl.$.acc.","0.99"],
-["ī","inaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["in","inaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ī","inaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["in","inaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ī","īhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ī","ībhi",".n.",".m.$.pl.$.inst.","0.99"],
-["in","īhi",".n.",".m.$.pl.$.inst.","0.99"],
-["in","ībhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ī","īhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ī","ībhi",".n.",".m.$.pl.$.abl.","0.99"],
-["in","īhi",".n.",".m.$.pl.$.abl.","0.99"],
-["in","ībhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ī","īsu",".n.",".m.$.pl.$.loc.","0.99"],
-["in","īsu",".n.",".m.$.pl.$.loc.","0.99"],
-["ī","ī",".n.",".f.$.sg.$.nom.","0.99"],
-["ī","ī",".n.",".f.$.sg.$.voc.","0.3"],
-["ī","iṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ī","iyā",".n.",".f.$.sg.$.gen.","0.99"],
-["ī","ayā",".n.",".f.$.sg.$.gen.","0.99"],
-["ī","yā",".n.",".f.$.sg.$.gen.","0.99"],
-["ī","iyā",".n.",".f.$.sg.$.dat.","0.99"],
-["ī","ayā",".n.",".f.$.sg.$.dat.","0.99"],
-["ī","yā",".n.",".f.$.sg.$.dat.","0.99"],
-["ī","iyā",".n.",".f.$.sg.$.inst.","0.99"],
-["ī","ayā",".n.",".f.$.sg.$.inst.","0.99"],
-["ī","yā",".n.",".f.$.sg.$.inst.","0.99"],
-["ī","iyā",".n.",".f.$.sg.$.abl.","0.99"],
-["ī","ayā",".n.",".f.$.sg.$.abl.","0.99"],
-["ī","yā",".n.",".f.$.sg.$.abl.","0.99"],
-["ī","iyā",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","ayā",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","yā",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","iyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","ayaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","yaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ī","ī",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","iyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","yo",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","ī",".n.",".f.$.pl.$.voc.","0.3"],
-["ī","iyo",".n.",".f.$.pl.$.voc.","0.3"],
-["ī","yo",".n.",".f.$.pl.$.voc.","0.3"],
-["ī","ī",".n.",".f.$.pl.$.acc.","0.99"],
-["ī","iyo",".n.",".f.$.pl.$.acc.","0.99"],
-["ī","yo",".n.",".f.$.pl.$.acc.","0.99"],
-["ī","īnaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ī","īnaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ī","īhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ī","ībhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ī","īhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ī","ībhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ī","īsu",".n.",".f.$.pl.$.loc.","0.99"],
-["u","u",".n.",".m.$.sg.$.nom.","0.99"],
-["u","u",".n.",".m.$.sg.$.voc.","0.3"],
-["u","uṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["u","ussa",".n.",".m.$.sg.$.gen.","0.99"],
-["u","uno",".n.",".m.$.sg.$.gen.","0.99"],
-["u","ussa",".n.",".m.$.sg.$.dat.","0.99"],
-["u","uno",".n.",".m.$.sg.$.dat.","0.99"],
-["u","unā",".n.",".m.$.sg.$.inst.","0.99"],
-["u","unā",".n.",".m.$.sg.$.abl.","0.99"],
-["u","usmā",".n.",".m.$.sg.$.abl.","0.99"],
-["u","umhā",".n.",".m.$.sg.$.abl.","0.99"],
-["u","usmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["u","umhi",".n.",".m.$.sg.$.loc.","0.99"],
-["u","ū",".n.",".m.$.pl.$.nom.","0.99"],
-["u","avo",".n.",".m.$.pl.$.nom.","0.99"],
-["u","ū",".n.",".m.$.pl.$.voc.","0.3"],
-["u","avo",".n.",".m.$.pl.$.voc.","0.3"],
-["u","ave",".n.",".m.$.pl.$.voc.","0.3"],
-["u","ū",".n.",".m.$.pl.$.acc.","0.99"],
-["u","avo",".n.",".m.$.pl.$.acc.","0.99"],
-["u","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["u","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["u","ūhi",".n.",".m.$.pl.$.inst.","0.99"],
-["u","ūbhi",".n.",".m.$.pl.$.inst.","0.99"],
-["u","ūhi",".n.",".m.$.pl.$.abl.","0.99"],
-["u","ūbhi",".n.",".m.$.pl.$.abl.","0.99"],
-["u","ūsu",".n.",".m.$.pl.$.loc.","0.99"],
-["u","u",".n.",".nt.$.sg.$.nom.","0.99"],
-["u","u",".n.",".nt.$.sg.$.voc.","0.3"],
-["u","uṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["u","ussa",".n.",".nt.$.sg.$.gen.","0.99"],
-["u","uno",".n.",".nt.$.sg.$.gen.","0.99"],
-["u","ussa",".n.",".nt.$.sg.$.dat.","0.99"],
-["u","uno",".n.",".nt.$.sg.$.dat.","0.99"],
-["u","unā",".n.",".nt.$.sg.$.inst.","0.99"],
-["u","unā",".n.",".nt.$.sg.$.abl.","0.99"],
-["u","usmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["u","umhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["u","usmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["u","umhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["u","ū",".n.",".nt.$.pl.$.nom.","0.99"],
-["u","ūni",".n.",".nt.$.pl.$.nom.","0.99"],
-["u","ū",".n.",".nt.$.pl.$.voc.","0.3"],
-["u","ūni",".n.",".nt.$.pl.$.voc.","0.3"],
-["u","ū",".n.",".nt.$.pl.$.acc.","0.99"],
-["u","ūni",".n.",".nt.$.pl.$.acc.","0.99"],
-["u","ūnaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["u","ūnaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["u","ūhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["u","ūbhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["u","ūhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["u","ūbhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["u","ūsu",".n.",".nt.$.pl.$.loc.","0.99"],
-["u","u",".n.",".f.$.sg.$.nom.","0.99"],
-["u","u",".n.",".f.$.sg.$.voc.","0.3"],
-["u","uṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["u","uyā",".n.",".f.$.sg.$.gen.","0.99"],
-["u","uyā",".n.",".f.$.sg.$.dat.","0.99"],
-["u","uyā",".n.",".f.$.sg.$.inst.","0.99"],
-["u","uyā",".n.",".f.$.sg.$.abl.","0.99"],
-["u","uto",".n.",".f.$.sg.$.abl.","0.99"],
-["u","uyā",".n.",".f.$.sg.$.loc.","0.99"],
-["u","uyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["u","ū",".n.",".f.$.pl.$.nom.","0.99"],
-["u","uyo",".n.",".f.$.pl.$.nom.","0.99"],
-["u","ūvo",".n.",".f.$.pl.$.nom.","0.99"],
-["u","ū",".n.",".f.$.pl.$.voc.","0.3"],
-["u","uyo",".n.",".f.$.pl.$.voc.","0.3"],
-["u","ū",".n.",".f.$.pl.$.acc.","0.99"],
-["u","uyo",".n.",".f.$.pl.$.acc.","0.99"],
-["u","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["u","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["u","ūhi",".n.",".f.$.pl.$.inst.","0.99"],
-["u","ūbhi",".n.",".f.$.pl.$.inst.","0.99"],
-["u","ūhi",".n.",".f.$.pl.$.abl.","0.99"],
-["u","ūbhi",".n.",".f.$.pl.$.abl.","0.99"],
-["u","ūsu",".n.",".f.$.pl.$.loc.","0.99"],
-["ū","ū",".n.",".m.$.sg.$.nom.","0.99"],
-["ū","ū",".n.",".m.$.sg.$.voc.","0.3"],
-["ū","uṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ū","ussa",".n.",".m.$.sg.$.gen.","0.99"],
-["ū","uno",".n.",".m.$.sg.$.gen.","0.99"],
-["ū","ussa",".n.",".m.$.sg.$.dat.","0.99"],
-["ū","uno",".n.",".m.$.sg.$.dat.","0.99"],
-["ū","unā",".n.",".m.$.sg.$.inst.","0.99"],
-["ū","unā",".n.",".m.$.sg.$.abl.","0.99"],
-["ū","usmā",".n.",".m.$.sg.$.abl.","0.99"],
-["ū","umhā",".n.",".m.$.sg.$.abl.","0.99"],
-["ū","usmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["ū","umhi",".n.",".m.$.sg.$.loc.","0.99"],
-["ū","ū",".n.",".m.$.pl.$.nom.","0.99"],
-["ū","avo",".n.",".m.$.pl.$.nom.","0.99"],
-["ū","ū",".n.",".m.$.pl.$.voc.","0.3"],
-["ū","avo",".n.",".m.$.pl.$.voc.","0.3"],
-["ū","ave",".n.",".m.$.pl.$.voc.","0.3"],
-["ū","ū",".n.",".m.$.pl.$.acc.","0.99"],
-["ū","avo",".n.",".m.$.pl.$.acc.","0.99"],
-["ū","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ū","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ū","ūhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ū","ūbhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ū","ūhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ū","ūbhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ū","ūsu",".n.",".m.$.pl.$.loc.","0.99"],
-["ū","ū",".n.",".f.$.sg.$.nom.","0.99"],
-["ū","ū",".n.",".f.$.sg.$.voc.","0.3"],
-["ū","uṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ū","uyā",".n.",".f.$.sg.$.gen.","0.99"],
-["ū","uyā",".n.",".f.$.sg.$.dat.","0.99"],
-["ū","uyā",".n.",".f.$.sg.$.inst.","0.99"],
-["ū","uyā",".n.",".f.$.sg.$.abl.","0.99"],
-["ū","uto",".n.",".f.$.sg.$.abl.","0.99"],
-["ū","uyā",".n.",".f.$.sg.$.loc.","0.99"],
-["ū","uyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ū","ū",".n.",".f.$.pl.$.nom.","0.99"],
-["ū","uyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ū","ū",".n.",".f.$.pl.$.voc.","0.3"],
-["ū","uyo",".n.",".f.$.pl.$.voc.","0.3"],
-["ū","ū",".n.",".f.$.pl.$.acc.","0.99"],
-["ū","uyo",".n.",".f.$.pl.$.acc.","0.99"],
-["ū","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ū","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ū","ūhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ū","ūbhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ū","ūhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ū","ūbhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ū","ūsu",".n.",".f.$.pl.$.loc.","0.99"],
-["as","o",".n.",".m.$.sg.$.nom.","0.99"],
-["as","aṃ",".n.",".m.$.sg.$.nom.","0.99"],
-["o","o",".n.",".m.$.sg.$.nom.","0.99"],
-["o","aṃ",".n.",".m.$.sg.$.nom.","0.99"],
-["as","o",".n.",".m.$.sg.$.voc.","0.3"],
-["as","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["as","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["as","a",".n.",".m.$.sg.$.voc.","0.3"],
-["o","o",".n.",".m.$.sg.$.voc.","0.3"],
-["o","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["o","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["o","a",".n.",".m.$.sg.$.voc.","0.3"],
-["as","o",".n.",".m.$.sg.$.acc.","0.99"],
-["as","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["o","o",".n.",".m.$.sg.$.acc.","0.99"],
-["o","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["as","aso",".n.",".m.$.sg.$.gen.","0.99"],
-["as","assa",".n.",".m.$.sg.$.gen.","0.99"],
-["o","aso",".n.",".m.$.sg.$.gen.","0.99"],
-["o","assa",".n.",".m.$.sg.$.gen.","0.99"],
-["as","aso",".n.",".m.$.sg.$.dat.","0.99"],
-["as","assa",".n.",".m.$.sg.$.dat.","0.99"],
-["o","aso",".n.",".m.$.sg.$.dat.","0.99"],
-["o","assa",".n.",".m.$.sg.$.dat.","0.99"],
-["as","asā",".n.",".m.$.sg.$.inst.","0.99"],
-["as","ena",".n.",".m.$.sg.$.inst.","0.99"],
-["o","asā",".n.",".m.$.sg.$.inst.","0.99"],
-["o","ena",".n.",".m.$.sg.$.inst.","0.99"],
-["as","asā",".n.",".m.$.sg.$.abl.","0.99"],
-["as","asmā",".n.",".m.$.sg.$.abl.","0.99"],
-["as","amhā",".n.",".m.$.sg.$.abl.","0.99"],
-["as","ā",".n.",".m.$.sg.$.abl.","0.99"],
-["o","asā",".n.",".m.$.sg.$.abl.","0.99"],
-["o","asmā",".n.",".m.$.sg.$.abl.","0.99"],
-["o","amhā",".n.",".m.$.sg.$.abl.","0.99"],
-["o","ā",".n.",".m.$.sg.$.abl.","0.99"],
-["as","asi",".n.",".m.$.sg.$.loc.","0.99"],
-["as","e",".n.",".m.$.sg.$.loc.","0.99"],
-["as","asmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["as","amhi",".n.",".m.$.sg.$.loc.","0.99"],
-["o","asi",".n.",".m.$.sg.$.loc.","0.99"],
-["o","e",".n.",".m.$.sg.$.loc.","0.99"],
-["o","asmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["o","amhi",".n.",".m.$.sg.$.loc.","0.99"],
-["as","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["o","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["o","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["as","e",".n.",".m.$.pl.$.acc.","0.99"],
-["o","e",".n.",".m.$.pl.$.acc.","0.99"],
-["as","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["o","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["as","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["o","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["as","ehi",".n.",".m.$.pl.$.inst.","0.99"],
-["as","ebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["o","ehi",".n.",".m.$.pl.$.inst.","0.99"],
-["o","ebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["as","ehi",".n.",".m.$.pl.$.abl.","0.99"],
-["as","ebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["o","ehi",".n.",".m.$.pl.$.abl.","0.99"],
-["o","ebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["as","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["o","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["as","o",".n.",".nt.$.sg.$.nom.","0.99"],
-["as","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["o","o",".n.",".nt.$.sg.$.nom.","0.99"],
-["o","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["as","o",".n.",".nt.$.sg.$.voc.","0.3"],
-["as","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["as","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["as","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["o","o",".n.",".nt.$.sg.$.voc.","0.3"],
-["o","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["o","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["o","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["as","o",".n.",".nt.$.sg.$.acc.","0.99"],
-["as","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["o","o",".n.",".nt.$.sg.$.acc.","0.99"],
-["o","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["as","aso",".n.",".nt.$.sg.$.gen.","0.99"],
-["as","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["o","aso",".n.",".nt.$.sg.$.gen.","0.99"],
-["o","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["as","aso",".n.",".nt.$.sg.$.dat.","0.99"],
-["as","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["o","aso",".n.",".nt.$.sg.$.dat.","0.99"],
-["o","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["as","asā",".n.",".nt.$.sg.$.inst.","0.99"],
-["as","ena",".n.",".nt.$.sg.$.inst.","0.99"],
-["o","asā",".n.",".nt.$.sg.$.inst.","0.99"],
-["o","ena",".n.",".nt.$.sg.$.inst.","0.99"],
-["as","asā",".n.",".nt.$.sg.$.abl.","0.99"],
-["as","asmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["as","amhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["as","ā",".n.",".nt.$.sg.$.abl.","0.99"],
-["o","asā",".n.",".nt.$.sg.$.abl.","0.99"],
-["o","asmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["o","amhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["o","ā",".n.",".nt.$.sg.$.abl.","0.99"],
-["as","asi",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","e",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","amhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","asi",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","e",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","amhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["o","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["as","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["o","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["as","e",".n.",".nt.$.pl.$.acc.","0.99"],
-["o","e",".n.",".nt.$.pl.$.acc.","0.99"],
-["as","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["o","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["as","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["o","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["as","ehi",".n.",".nt.$.pl.$.inst.","0.99"],
-["as","ebhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["o","ehi",".n.",".nt.$.pl.$.inst.","0.99"],
-["o","ebhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["as","ehi",".n.",".nt.$.pl.$.abl.","0.99"],
-["as","ebhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["o","ehi",".n.",".nt.$.pl.$.abl.","0.99"],
-["o","ebhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["as","esu",".n.",".nt.$.pl.$.loc.","0.99"],
-["o","esu",".n.",".nt.$.pl.$.loc.","0.99"],
-["an","ā",".n.",".m.$.sg.$.nom.","0.99"],
-["an","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["an","a",".n.",".m.$.sg.$.voc.","0.3"],
-["an","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["an","ānaṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["an","anaṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["an","assa",".n.",".m.$.sg.$.gen.","0.99"],
-["an","ano",".n.",".m.$.sg.$.gen.","0.99"],
-["an","assa",".n.",".m.$.sg.$.dat.","0.99"],
-["an","ano",".n.",".m.$.sg.$.dat.","0.99"],
-["an","ena",".n.",".m.$.sg.$.inst.","0.99"],
-["an","anā",".n.",".m.$.sg.$.inst.","0.99"],
-["an","anā",".n.",".m.$.sg.$.abl.","0.99"],
-["an","asmā",".n.",".m.$.sg.$.abl.","0.99"],
-["an","amhā",".n.",".m.$.sg.$.abl.","0.99"],
-["an","ani",".n.",".m.$.sg.$.loc.","0.99"],
-["an","asmiṃ",".n.",".m.$.sg.$.loc.","0.99"],
-["an","amhi",".n.",".m.$.sg.$.loc.","0.99"],
-["an","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["an","āno",".n.",".m.$.pl.$.nom.","0.99"],
-["an","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["an","āno",".n.",".m.$.pl.$.voc.","0.3"],
-["an","āno",".n.",".m.$.pl.$.acc.","0.99"],
-["an","e",".n.",".m.$.pl.$.acc.","0.99"],
-["an","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["an","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["an","anehi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","anebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","anehi",".n.",".m.$.pl.$.abl.","0.99"],
-["an","anebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["an","anesu",".n.",".m.$.pl.$.loc.","0.99"],
-["an","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["an","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["an","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["an","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["an","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["an","āya",".n.",".nt.$.sg.$.dat.","0.99"],
-["an","ena",".n.",".nt.$.sg.$.inst.","0.99"],
-["an","ā",".n.",".nt.$.sg.$.abl.","0.99"],
-["an","asmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["an","amhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["an","ato",".n.",".nt.$.sg.$.abl.","0.99"],
-["an","e",".n.",".nt.$.sg.$.loc.","0.99"],
-["an","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["an","amhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["an","āni",".n.",".nt.$.pl.$.nom.","0.99"],
-["an","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["an","āni",".n.",".nt.$.pl.$.voc.","0.3"],
-["an","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["an","āni",".n.",".nt.$.pl.$.acc.","0.99"],
-["an","e",".n.",".nt.$.pl.$.acc.","0.99"],
-["an","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["an","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["an","ehi",".n.",".nt.$.pl.$.inst.","0.99"],
-["an","ebhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["an","ehi",".n.",".nt.$.pl.$.abl.","0.99"],
-["an","ebhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["an","esu",".n.",".nt.$.pl.$.loc.","0.99"],
-["ar","ā",".n.",".f.$.sg.$.nom.","0.99"],
-["ar","ā",".n.",".f.$.sg.$.voc.","0.3"],
-["ar","aṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ar","ānaṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ar","assa",".n.",".f.$.sg.$.gen.","0.99"],
-["ar","ino",".n.",".f.$.sg.$.gen.","0.99"],
-["ar","assa",".n.",".f.$.sg.$.dat.","0.99"],
-["ar","ino",".n.",".f.$.sg.$.dat.","0.99"],
-["ar","ena",".n.",".f.$.sg.$.inst.","0.99"],
-["ar","inā",".n.",".f.$.sg.$.inst.","0.99"],
-["ar","asmā",".n.",".f.$.sg.$.abl.","0.99"],
-["ar","amhā",".n.",".f.$.sg.$.abl.","0.99"],
-["ar","ini",".n.",".f.$.sg.$.loc.","0.99"],
-["ar","asmiṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["ar","amhi",".n.",".f.$.sg.$.loc.","0.99"],
-["ar","ā",".n.",".f.$.pl.$.nom.","0.99"],
-["ar","āno",".n.",".f.$.pl.$.nom.","0.99"],
-["ar","ā",".n.",".f.$.pl.$.voc.","0.3"],
-["ar","āno",".n.",".f.$.pl.$.voc.","0.3"],
-["ar","ā",".n.",".f.$.pl.$.acc.","0.99"],
-["ar","āno",".n.",".f.$.pl.$.acc.","0.99"],
-["ar","ānaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ar","ānaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ar","ehi",".n.",".f.$.pl.$.inst.","0.99"],
-["ar","āhi",".n.",".f.$.pl.$.inst.","0.99"],
-["ar","ehi",".n.",".f.$.pl.$.abl.","0.99"],
-["ar","āhi",".n.",".f.$.pl.$.abl.","0.99"],
-["ar","esu",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","āsu",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","ā",".n.",".nt.$.sg.$.nom.","0.99"],
-["ar","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["ar","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["ar","ānaṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["ar","assa",".n.",".nt.$.sg.$.gen.","0.99"],
-["ar","ino",".n.",".nt.$.sg.$.gen.","0.99"],
-["ar","assa",".n.",".nt.$.sg.$.dat.","0.99"],
-["ar","ino",".n.",".nt.$.sg.$.dat.","0.99"],
-["ar","ena",".n.",".nt.$.sg.$.inst.","0.99"],
-["ar","inā",".n.",".nt.$.sg.$.inst.","0.99"],
-["ar","asmā",".n.",".nt.$.sg.$.abl.","0.99"],
-["ar","amhā",".n.",".nt.$.sg.$.abl.","0.99"],
-["ar","ini",".n.",".nt.$.sg.$.loc.","0.99"],
-["ar","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99"],
-["ar","amhi",".n.",".nt.$.sg.$.loc.","0.99"],
-["ar","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["ar","āno",".n.",".nt.$.pl.$.nom.","0.99"],
-["ar","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["ar","āno",".n.",".nt.$.pl.$.voc.","0.3"],
-["ar","ā",".n.",".nt.$.pl.$.acc.","0.99"],
-["ar","āno",".n.",".nt.$.pl.$.acc.","0.99"],
-["ar","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["ar","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["ar","ehi",".n.",".nt.$.pl.$.inst.","0.99"],
-["ar","āhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["ar","ehi",".n.",".nt.$.pl.$.abl.","0.99"],
-["ar","āhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["ar","esu",".n.",".nt.$.pl.$.loc.","0.99"],
-["ar","āsu",".n.",".nt.$.pl.$.loc.","0.99"],
-["a","e",".n.",".m.$.sg.$.nom.","0.99"],
-["a","ā",".n.",".m.$.sg.$.inst.","0.99"],
-["a","asā",".n.",".m.$.sg.$.inst.","0.99"],
-["a","ā",".n.",".m.$.sg.$.dat.","0.99"],
-["a","āya",".n.",".m.$.sg.$.gen.","0.99"],
-["a","ā",".n.",".m.$.sg.$.gen.","0.99"],
-["a","asi",".n.",".m.$.sg.$.loc.","0.99"],
-["a","e",".n.",".m.$.sg.$.voc.","0.3"],
-["a","o",".n.",".m.$.sg.$.voc.","0.3"],
-["a","āse",".n.",".m.$.pl.$.nom.","0.99"],
-["a","o",".n.",".m.$.pl.$.nom.","0.99"],
-["a","ān",".n.",".m.$.pl.$.acc.","0.99"],
-["a","e",".n.",".m.$.pl.$.inst.","0.99"],
-["a","ato",".n.",".m.$.pl.$.abl.","0.99"],
-["a","e",".n.",".nt.$.sg.$.nom.","0.99"],
-["a","ā",".n.",".nt.$.sg.$.inst.","0.99"],
-["a","asā",".n.",".nt.$.sg.$.inst.","0.99"],
-["a","ā",".n.",".nt.$.sg.$.dat.","0.99"],
-["a","asi",".n.",".nt.$.sg.$.loc.","0.99"],
-["a","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["a","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["a","āya",".n.",".nt.$.sg.$.gen.","0.99"],
-["a","ā",".n.",".nt.$.sg.$.gen.","0.99"],
-["a","o",".n.",".nt.$.pl.$.acc.","0.99"],
-["a","ato",".n.",".nt.$.pl.$.abl.","0.99"],
-["ā","ā",".n.",".f.$.sg.$.inst.","0.99"],
-["ā","āto",".n.",".f.$.sg.$.abl.","0.99"],
-["ā","a",".n.",".f.$.sg.$.voc.","0.3"],
-["ā","iyo",".n.",".f.$.pl.$.voc.","0.3"],
-["i","e",".n.",".m.$.sg.$.dat.","0.99"],
-["i","ito",".n.",".m.$.sg.$.abl.","0.99"],
-["i","e",".n.",".m.$.sg.$.gen.","0.99"],
-["i","ini",".n.",".m.$.sg.$.loc.","0.99"],
-["i","e",".n.",".m.$.sg.$.loc.","0.99"],
-["i","o",".n.",".m.$.sg.$.loc.","0.99"],
-["i","iyo",".n.",".m.$.pl.$.nom.","0.99"],
-["i","ino",".n.",".m.$.pl.$.nom.","0.99"],
-["i","iyo",".n.",".m.$.pl.$.acc.","0.99"],
-["i","ihi",".n.",".m.$.pl.$.inst.","0.99"],
-["i","ibhi",".n.",".m.$.pl.$.inst.","0.99"],
-["i","inaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["i","ihi",".n.",".m.$.pl.$.abl.","0.99"],
-["i","ibhi",".n.",".m.$.pl.$.abl.","0.99"],
-["i","inaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["i","isu",".n.",".m.$.pl.$.loc.","0.99"],
-["i","iyo",".n.",".m.$.pl.$.voc.","0.3"],
-["i","ihi",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ibhi",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ihi",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","ibhi",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","inaṃ",".n.",".nt.$.pl.$.gen.","0.99"],
-["i","inaṃ",".n.",".nt.$.pl.$.dat.","0.99"],
-["i","isu",".n.",".nt.$.pl.$.loc.","0.99"],
-["i","iṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["i","i",".n.",".nt.$.sg.$.acc.","0.99"],
-["i","e",".n.",".nt.$.sg.$.dat.","0.99"],
-["i","ito",".n.",".nt.$.sg.$.abl.","0.99"],
-["i","e",".n.",".nt.$.sg.$.gen.","0.99"],
-["i","ini",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","e",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","o",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","iṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["i","ī",".n.",".f.$.sg.$.nom.","0.99"],
-["i","ito",".n.",".f.$.sg.$.abl.","0.99"],
-["i","myā",".n.",".f.$.sg.$.gen.","0.99"],
-["i","o",".n.",".f.$.sg.$.loc.","0.99"],
-["i","āyaṃ",".n.",".f.$.sg.$.loc.","0.99"],
-["i","u",".n.",".f.$.sg.$.loc.","0.99"],
-["i","ī",".n.",".f.$.sg.$.voc.","0.3"],
-["ī","ini",".n.",".m.$.sg.$.loc.","0.99"],
-["ī","īnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ī","īnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ī","īsu",".n.",".m.$.pl.$.loc.","0.99"],
-["ī","i",".n.",".m.$.sg.$.nom.","0.99"],
-["ī","iyo",".n.",".m.$.pl.$.nom.","0.99"],
-["ī","iye",".n.",".m.$.pl.$.acc.","0.99"],
-["ī","iyaṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ī","ito",".n.",".m.$.sg.$.abl.","0.99"],
-["ī","i",".n.",".f.$.sg.$.nom.","0.99"],
-["ī","iyaṃ",".n.",".f.$.sg.$.acc.","0.99"],
-["ī","ito",".n.",".f.$.sg.$.abl.","0.99"],
-["ī","īto",".n.",".f.$.sg.$.abl.","0.99"],
-["ī","āyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","āyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","āyo",".n.",".f.$.pl.$.nom.","0.99"],
-["ī","inaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ī","inaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ī","īyanaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ī","īyanaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ī","iyanaṃ",".n.",".f.$.pl.$.gen.","0.99"],
-["ī","iyanaṃ",".n.",".f.$.pl.$.dat.","0.99"],
-["ī","isu",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","ā",".n.",".m.$.sg.$.nom.","0.99"],
-["ar","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["ar","a",".n.",".m.$.sg.$.voc.","0.3"],
-["ar","araṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ar","āraṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ar","u",".n.",".m.$.sg.$.dat.","0.99"],
-["ar","ussa",".n.",".m.$.sg.$.dat.","0.99"],
-["ar","uno",".n.",".m.$.sg.$.dat.","0.99"],
-["ar","u",".n.",".m.$.sg.$.gen.","0.99"],
-["ar","ussa",".n.",".m.$.sg.$.gen.","0.99"],
-["ar","uno",".n.",".m.$.sg.$.gen.","0.99"],
-["ar","arā",".n.",".m.$.sg.$.inst.","0.99"],
-["ar","ara",".n.",".m.$.sg.$.inst.","0.99"],
-["ar","āra",".n.",".m.$.sg.$.inst.","0.99"],
-["ar","ārā",".n.",".m.$.sg.$.inst.","0.99"],
-["ar","unā",".n.",".m.$.sg.$.inst.","0.99"],
-["ar","arā",".n.",".m.$.sg.$.abl.","0.99"],
-["ar","ara",".n.",".m.$.sg.$.abl.","0.99"],
-["ar","āra",".n.",".m.$.sg.$.abl.","0.99"],
-["ar","ārā",".n.",".m.$.sg.$.abl.","0.99"],
-["ar","unā",".n.",".m.$.sg.$.abl.","0.99"],
-["ar","ari",".n.",".m.$.sg.$.loc.","0.99"],
-["ar","āro",".n.",".m.$.pl.$.nom.","0.99"],
-["ar","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["ar","āro",".n.",".m.$.pl.$.voc.","0.3"],
-["ar","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["ar","āro",".n.",".m.$.pl.$.acc.","0.99"],
-["ar","āre",".n.",".m.$.pl.$.acc.","0.99"],
-["ar","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ar","ārānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ar","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ar","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ar","ārānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ar","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ar","ārehi",".n.",".m.$.pl.$.inst.","0.99"],
-["ar","ārebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ar","ārehi",".n.",".m.$.pl.$.abl.","0.99"],
-["ar","ārebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ar","āresu",".n.",".m.$.pl.$.loc.","0.99"],
-["ar","ūsu",".n.",".m.$.pl.$.loc.","0.99"],
-["ar","āyo",".n.",".m.$.sg.$.voc.","0.3"],
-["ar","iyo",".n.",".m.$.sg.$.voc.","0.3"],
-["an","ane",".n.",".m.$.sg.$.loc.","0.99"],
-["an","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["an","ubhi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","ūbhi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","uhi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","ūhi",".n.",".m.$.pl.$.inst.","0.99"],
-["an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["an","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["an","ūsu",".n.",".m.$.pl.$.loc.","0.99"],
-["an","usu",".n.",".m.$.pl.$.loc.","0.99"],
-["an","a",".n.",".nt.$.sg.$.nom.","0.99"],
-["an","a",".n.",".nt.$.sg.$.acc.","0.99"],
-["an","anā",".n.",".nt.$.sg.$.inst.","0.99"],
-["an","unā",".n.",".nt.$.sg.$.inst.","0.99"],
-["an","no",".n.",".nt.$.sg.$.dat.","0.99"],
-["an","unā",".n.",".nt.$.sg.$.abl.","0.99"],
-["an","no",".n.",".nt.$.sg.$.dat.","0.99"],
-["an","ani",".n.",".nt.$.sg.$.loc.","0.99"],
-["an","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["as","āni",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ā",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.voc.","0.3"],
-["as","āni",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ā",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.voc.","0.3"],
-["as","āni",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ā",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.acc.","0.99"],
-["as","āni",".n.",".m.$.pl.$.voc.","0.3"],
-["us","u",".n.",".m.$.sg.$.nom.","0.99"],
-["us","uṃ",".n.",".m.$.sg.$.nom.","0.99"],
-["us","u",".n.",".m.$.sg.$.voc.","0.3"],
-["us","uṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["us","u",".n.",".m.$.sg.$.acc.","0.99"],
-["us","uṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["us","ussa",".n.",".m.$.sg.$.dat.","0.99"],
-["us","uno",".n.",".m.$.sg.$.dat.","0.99"],
-["us","ussa",".n.",".m.$.sg.$.gen.","0.99"],
-["us","uno",".n.",".m.$.sg.$.gen.","0.99"],
-["us","unā",".n.",".m.$.sg.$.inst.","0.99"],
-["us","usā",".n.",".m.$.sg.$.inst.","0.99"],
-["us","unā",".n.",".m.$.sg.$.abl.","0.99"],
-["us","usā",".n.",".m.$.sg.$.abl.","0.99"],
-["us","uni",".n.",".m.$.sg.$.loc.","0.99"],
-["us","usi",".n.",".m.$.sg.$.loc.","0.99"],
-["us","ū",".n.",".m.$.pl.$.nom.","0.99"],
-["us","ūni",".n.",".m.$.pl.$.nom.","0.99"],
-["us","ū",".n.",".m.$.pl.$.voc.","0.3"],
-["us","ūni",".n.",".m.$.pl.$.voc.","0.3"],
-["us","ū",".n.",".m.$.pl.$.acc.","0.99"],
-["us","ūni",".n.",".m.$.pl.$.acc.","0.99"],
-["us","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["us","ūsaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["us","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["us","ūsaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["us","ūhi",".n.",".m.$.pl.$.inst.","0.99"],
-["us","ūbhi",".n.",".m.$.pl.$.inst.","0.99"],
-["us","ūhi",".n.",".m.$.pl.$.abl.","0.99"],
-["us","ūbhi",".n.",".m.$.pl.$.abl.","0.99"],
-["us","ūsu",".n.",".m.$.pl.$.loc.","0.99"],
-["a","assā",".n.",".m.$.sg.$.gen.","0.99"],
-["a","assā",".n.",".m.$.sg.$.dat.","0.99"],
-["a","enā",".n.",".m.$.sg.$.inst.","0.99"],
-["a","amhī",".n.",".m.$.sg.$.loc.","0.99"],
-["a","ehī",".n.",".m.$.pl.$.inst.","0.99"],
-["a","ebhī",".n.",".m.$.pl.$.inst.","0.99"],
-["a","ehī",".n.",".m.$.pl.$.abl.","0.99"],
-["a","ebhī",".n.",".m.$.pl.$.abl.","0.99"],
-["a","esū",".n.",".m.$.pl.$.loc.","0.99"],
-["a","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["a","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["a","enā",".n.",".nt.$.sg.$.inst.","0.99"],
-["a","amhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["a","ānī",".n.",".nt.$.pl.$.nom.","0.99"],
-["a","ānī",".n.",".nt.$.pl.$.voc.","0.3"],
-["a","ānī",".n.",".nt.$.pl.$.acc.","0.99"],
-["a","ehī",".n.",".nt.$.pl.$.inst.","0.99"],
-["a","ebhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["a","ehī",".n.",".nt.$.pl.$.abl.","0.99"],
-["a","ebhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["a","esū",".n.",".nt.$.pl.$.loc.","0.99"],
-["ā","āhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ā","ābhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ā","āhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ā","ābhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ā","āsū",".n.",".f.$.pl.$.loc.","0.99"],
-["i","issā",".n.",".m.$.sg.$.gen.","0.99"],
-["i","issā",".n.",".m.$.sg.$.dat.","0.99"],
-["i","imhī",".n.",".m.$.sg.$.loc.","0.99"],
-["i","īhī",".n.",".m.$.pl.$.inst.","0.99"],
-["i","ībhī",".n.",".m.$.pl.$.inst.","0.99"],
-["i","īhī",".n.",".m.$.pl.$.abl.","0.99"],
-["i","ībhī",".n.",".m.$.pl.$.abl.","0.99"],
-["i","īsū",".n.",".m.$.pl.$.loc.","0.99"],
-["i","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["i","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["i","imhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","īnī",".n.",".nt.$.pl.$.nom.","0.99"],
-["i","īnī",".n.",".nt.$.pl.$.voc.","0.3"],
-["i","īnī",".n.",".nt.$.pl.$.acc.","0.99"],
-["i","īhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ībhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","īhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","ībhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","īsū",".n.",".nt.$.pl.$.loc.","0.99"],
-["i","īhī",".n.",".f.$.pl.$.inst.","0.99"],
-["i","ībhī",".n.",".f.$.pl.$.inst.","0.99"],
-["i","īhī",".n.",".f.$.pl.$.abl.","0.99"],
-["i","ībhī",".n.",".f.$.pl.$.abl.","0.99"],
-["i","īsū",".n.",".f.$.pl.$.loc.","0.99"],
-["ī","issā",".n.",".m.$.sg.$.gen.","0.99"],
-["in","issā",".n.",".m.$.sg.$.gen.","0.99"],
-["ī","issā",".n.",".m.$.sg.$.dat.","0.99"],
-["in","issā",".n.",".m.$.sg.$.dat.","0.99"],
-["ī","imhī",".n.",".m.$.sg.$.loc.","0.99"],
-["in","imhī",".n.",".m.$.sg.$.loc.","0.99"],
-["ī","īhī",".n.",".m.$.pl.$.inst.","0.99"],
-["ī","ībhī",".n.",".m.$.pl.$.inst.","0.99"],
-["in","īhī",".n.",".m.$.pl.$.inst.","0.99"],
-["in","ībhī",".n.",".m.$.pl.$.inst.","0.99"],
-["ī","īhī",".n.",".m.$.pl.$.abl.","0.99"],
-["ī","ībhī",".n.",".m.$.pl.$.abl.","0.99"],
-["in","īhī",".n.",".m.$.pl.$.abl.","0.99"],
-["in","ībhī",".n.",".m.$.pl.$.abl.","0.99"],
-["ī","īsū",".n.",".m.$.pl.$.loc.","0.99"],
-["in","īsū",".n.",".m.$.pl.$.loc.","0.99"],
-["ī","īhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ī","ībhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ī","īhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ī","ībhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ī","īsū",".n.",".f.$.pl.$.loc.","0.99"],
-["u","ussā",".n.",".m.$.sg.$.gen.","0.99"],
-["u","ussā",".n.",".m.$.sg.$.dat.","0.99"],
-["u","umhī",".n.",".m.$.sg.$.loc.","0.99"],
-["u","ūhī",".n.",".m.$.pl.$.inst.","0.99"],
-["u","ūbhī",".n.",".m.$.pl.$.inst.","0.99"],
-["u","ūhī",".n.",".m.$.pl.$.abl.","0.99"],
-["u","ūbhī",".n.",".m.$.pl.$.abl.","0.99"],
-["u","ūsū",".n.",".m.$.pl.$.loc.","0.99"],
-["u","ussā",".n.",".nt.$.sg.$.gen.","0.99"],
-["u","ussā",".n.",".nt.$.sg.$.dat.","0.99"],
-["u","umhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["u","ūnī",".n.",".nt.$.pl.$.nom.","0.99"],
-["u","ūnī",".n.",".nt.$.pl.$.voc.","0.3"],
-["u","ūnī",".n.",".nt.$.pl.$.acc.","0.99"],
-["u","ūhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["u","ūbhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["u","ūhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["u","ūbhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["u","ūsū",".n.",".nt.$.pl.$.loc.","0.99"],
-["u","ūhī",".n.",".f.$.pl.$.inst.","0.99"],
-["u","ūbhī",".n.",".f.$.pl.$.inst.","0.99"],
-["u","ūhī",".n.",".f.$.pl.$.abl.","0.99"],
-["u","ūbhī",".n.",".f.$.pl.$.abl.","0.99"],
-["u","ūsū",".n.",".f.$.pl.$.loc.","0.99"],
-["ū","ussā",".n.",".m.$.sg.$.gen.","0.99"],
-["ū","ussā",".n.",".m.$.sg.$.dat.","0.99"],
-["ū","umhī",".n.",".m.$.sg.$.loc.","0.99"],
-["ū","ūhī",".n.",".m.$.pl.$.inst.","0.99"],
-["ū","ūbhī",".n.",".m.$.pl.$.inst.","0.99"],
-["ū","ūhī",".n.",".m.$.pl.$.abl.","0.99"],
-["ū","ūbhī",".n.",".m.$.pl.$.abl.","0.99"],
-["ū","ūsū",".n.",".m.$.pl.$.loc.","0.99"],
-["ū","ūhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ū","ūbhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ū","ūhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ū","ūbhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ū","ūsū",".n.",".f.$.pl.$.loc.","0.99"],
-["as","assā",".n.",".m.$.sg.$.gen.","0.99"],
-["o","assā",".n.",".m.$.sg.$.gen.","0.99"],
-["as","assā",".n.",".m.$.sg.$.dat.","0.99"],
-["o","assā",".n.",".m.$.sg.$.dat.","0.99"],
-["as","enā",".n.",".m.$.sg.$.inst.","0.99"],
-["o","enā",".n.",".m.$.sg.$.inst.","0.99"],
-["as","asī",".n.",".m.$.sg.$.loc.","0.99"],
-["as","amhī",".n.",".m.$.sg.$.loc.","0.99"],
-["o","asī",".n.",".m.$.sg.$.loc.","0.99"],
-["o","amhī",".n.",".m.$.sg.$.loc.","0.99"],
-["as","ehī",".n.",".m.$.pl.$.inst.","0.99"],
-["as","ebhī",".n.",".m.$.pl.$.inst.","0.99"],
-["o","ehī",".n.",".m.$.pl.$.inst.","0.99"],
-["o","ebhī",".n.",".m.$.pl.$.inst.","0.99"],
-["as","ehī",".n.",".m.$.pl.$.abl.","0.99"],
-["as","ebhī",".n.",".m.$.pl.$.abl.","0.99"],
-["o","ehī",".n.",".m.$.pl.$.abl.","0.99"],
-["o","ebhī",".n.",".m.$.pl.$.abl.","0.99"],
-["as","esū",".n.",".m.$.pl.$.loc.","0.99"],
-["o","esū",".n.",".m.$.pl.$.loc.","0.99"],
-["as","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["o","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["as","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["o","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["as","enā",".n.",".nt.$.sg.$.inst.","0.99"],
-["o","enā",".n.",".nt.$.sg.$.inst.","0.99"],
-["as","asī",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","amhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","asī",".n.",".nt.$.sg.$.loc.","0.99"],
-["o","amhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","ehī",".n.",".nt.$.pl.$.inst.","0.99"],
-["as","ebhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["o","ehī",".n.",".nt.$.pl.$.inst.","0.99"],
-["o","ebhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["as","ehī",".n.",".nt.$.pl.$.abl.","0.99"],
-["as","ebhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["o","ehī",".n.",".nt.$.pl.$.abl.","0.99"],
-["o","ebhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["as","esū",".n.",".nt.$.pl.$.loc.","0.99"],
-["o","esū",".n.",".nt.$.pl.$.loc.","0.99"],
-["an","assā",".n.",".m.$.sg.$.gen.","0.99"],
-["an","assā",".n.",".m.$.sg.$.dat.","0.99"],
-["an","enā",".n.",".m.$.sg.$.inst.","0.99"],
-["an","anī",".n.",".m.$.sg.$.loc.","0.99"],
-["an","amhī",".n.",".m.$.sg.$.loc.","0.99"],
-["an","anehī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","anebhī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","anehī",".n.",".m.$.pl.$.abl.","0.99"],
-["an","anebhī",".n.",".m.$.pl.$.abl.","0.99"],
-["an","anesū",".n.",".m.$.pl.$.loc.","0.99"],
-["an","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["an","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["an","enā",".n.",".nt.$.sg.$.inst.","0.99"],
-["an","amhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["an","ānī",".n.",".nt.$.pl.$.nom.","0.99"],
-["an","ānī",".n.",".nt.$.pl.$.voc.","0.3"],
-["an","ānī",".n.",".nt.$.pl.$.acc.","0.99"],
-["an","ehī",".n.",".nt.$.pl.$.inst.","0.99"],
-["an","ebhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["an","ehī",".n.",".nt.$.pl.$.abl.","0.99"],
-["an","ebhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["an","esū",".n.",".nt.$.pl.$.loc.","0.99"],
-["ar","assā",".n.",".f.$.sg.$.gen.","0.99"],
-["ar","assā",".n.",".f.$.sg.$.dat.","0.99"],
-["ar","enā",".n.",".f.$.sg.$.inst.","0.99"],
-["ar","amhī",".n.",".f.$.sg.$.loc.","0.99"],
-["ar","ehī",".n.",".f.$.pl.$.inst.","0.99"],
-["ar","āhī",".n.",".f.$.pl.$.inst.","0.99"],
-["ar","ehī",".n.",".f.$.pl.$.abl.","0.99"],
-["ar","āhī",".n.",".f.$.pl.$.abl.","0.99"],
-["ar","esū",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","āsū",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","assā",".n.",".nt.$.sg.$.gen.","0.99"],
-["ar","assā",".n.",".nt.$.sg.$.dat.","0.99"],
-["ar","enā",".n.",".nt.$.sg.$.inst.","0.99"],
-["ar","amhī",".n.",".nt.$.sg.$.loc.","0.99"],
-["ar","ehī",".n.",".nt.$.pl.$.inst.","0.99"],
-["ar","āhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["ar","ehī",".n.",".nt.$.pl.$.abl.","0.99"],
-["ar","āhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["ar","esū",".n.",".nt.$.pl.$.loc.","0.99"],
-["ar","āsū",".n.",".nt.$.pl.$.loc.","0.99"],
-["a","asī",".n.",".m.$.sg.$.loc.","0.99"],
-["a","asī",".n.",".nt.$.sg.$.loc.","0.99"],
-["i","ihī",".n.",".m.$.pl.$.inst.","0.99"],
-["i","ibhī",".n.",".m.$.pl.$.inst.","0.99"],
-["i","ihī",".n.",".m.$.pl.$.abl.","0.99"],
-["i","ibhī",".n.",".m.$.pl.$.abl.","0.99"],
-["i","isū",".n.",".m.$.pl.$.loc.","0.99"],
-["i","ihī",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ibhī",".n.",".nt.$.pl.$.inst.","0.99"],
-["i","ihī",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","ibhī",".n.",".nt.$.pl.$.abl.","0.99"],
-["i","isū",".n.",".nt.$.pl.$.loc.","0.99"],
-["ī","īsū",".n.",".m.$.pl.$.loc.","0.99"],
-["ī","isū",".n.",".f.$.pl.$.loc.","0.99"],
-["ar","ussā",".n.",".m.$.sg.$.dat.","0.99"],
-["ar","ussā",".n.",".m.$.sg.$.gen.","0.99"],
-["ar","arī",".n.",".m.$.sg.$.loc.","0.99"],
-["ar","ārehī",".n.",".m.$.pl.$.inst.","0.99"],
-["ar","ārebhī",".n.",".m.$.pl.$.inst.","0.99"],
-["ar","ārehī",".n.",".m.$.pl.$.abl.","0.99"],
-["ar","ārebhī",".n.",".m.$.pl.$.abl.","0.99"],
-["ar","āresū",".n.",".m.$.pl.$.loc.","0.99"],
-["ar","ūsū",".n.",".m.$.pl.$.loc.","0.99"],
-["an","ubhī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","ūbhī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","uhī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","ūhī",".n.",".m.$.pl.$.inst.","0.99"],
-["an","esū",".n.",".m.$.pl.$.loc.","0.99"],
-["an","ūsū",".n.",".m.$.pl.$.loc.","0.99"],
-["an","usū",".n.",".m.$.pl.$.loc.","0.99"],
-["an","anī",".n.",".nt.$.sg.$.loc.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.acc.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.voc.","0.3"],
-["as","ānī",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.acc.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.voc.","0.3"],
-["as","ānī",".n.",".m.$.pl.$.nom.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.acc.","0.99"],
-["as","ānī",".n.",".m.$.pl.$.voc.","0.3"],
-["us","ussā",".n.",".m.$.sg.$.dat.","0.99"],
-["us","ussā",".n.",".m.$.sg.$.gen.","0.99"],
-["us","unī",".n.",".m.$.sg.$.loc.","0.99"],
-["us","usī",".n.",".m.$.sg.$.loc.","0.99"],
-["us","ūnī",".n.",".m.$.pl.$.nom.","0.99"],
-["us","ūnī",".n.",".m.$.pl.$.voc.","0.3"],
-["us","ūnī",".n.",".m.$.pl.$.acc.","0.99"],
-["us","ūhī",".n.",".m.$.pl.$.inst.","0.99"],
-["us","ūbhī",".n.",".m.$.pl.$.inst.","0.99"],
-["us","ūhī",".n.",".m.$.pl.$.abl.","0.99"],
-["us","ūbhī",".n.",".m.$.pl.$.abl.","0.99"],
-["us","ūsū",".n.",".m.$.pl.$.loc.","0.99"],
-["ant","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["ant","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["ant","ā",".n.",".m.$.sg.$.nom.","0.99"],
-["ant","a",".n.",".m.$.sg.$.voc.","0.3"],
-["ant","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["ant","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["ant","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["ant","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["ant","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["ant","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["ant","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["ant","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["ant","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["ant","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["ant","aṃ",".n.",".m.$.sg.$.nom.","0.99"],
-["ant","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["ant","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["ant","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["ant","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["ant","e",".n.",".m.$.pl.$.acc.","0.99"],
-["ant","ebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["ant","ebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["ant","ehi",".n.",".m.$.pl.$.abl.","0.99"],
-["ant","ehi",".n.",".m.$.pl.$.inst.","0.99"],
-["ant","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["anta","ā",".n.",".m.$.pl.$.nom.","0.99"],
-["anta","ā",".n.",".m.$.pl.$.voc.","0.3"],
-["anta","ā",".n.",".m.$.sg.$.nom.","0.99"],
-["anta","a",".n.",".m.$.sg.$.voc.","0.3"],
-["anta","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["anta","ā",".n.",".nt.$.pl.$.nom.","0.99"],
-["anta","ā",".n.",".nt.$.pl.$.voc.","0.3"],
-["anta","a",".n.",".nt.$.sg.$.voc.","0.3"],
-["anta","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["anta","ā",".n.",".m.$.sg.$.voc.","0.3"],
-["anta","ā",".n.",".nt.$.sg.$.voc.","0.3"],
-["anta","aṃ",".n.",".m.$.sg.$.acc.","0.99"],
-["anta","aṃ",".n.",".nt.$.sg.$.acc.","0.99"],
-["anta","aṃ",".n.",".nt.$.sg.$.nom.","0.99"],
-["anta","aṃ",".n.",".m.$.sg.$.nom.","0.99"],
-["anta","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["anta","aṃ",".n.",".m.$.sg.$.voc.","0.3"],
-["anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3"],
-["anta","ānaṃ",".n.",".m.$.pl.$.dat.","0.99"],
-["anta","ānaṃ",".n.",".m.$.pl.$.gen.","0.99"],
-["anta","e",".n.",".m.$.pl.$.acc.","0.99"],
-["anta","ebhi",".n.",".m.$.pl.$.abl.","0.99"],
-["anta","ebhi",".n.",".m.$.pl.$.inst.","0.99"],
-["anta","ehi",".n.",".m.$.pl.$.abl.","0.99"],
-["anta","ehi",".n.",".m.$.pl.$.inst.","0.99"],
-["anta","esu",".n.",".m.$.pl.$.loc.","0.99"],
-["ti","ti",".v.",".3p.$.sg.$.pres.","0.99"],
-["ti","nti",".v.",".3p.$.pl.$.pres.","0.99"],
-["ti","te",".v.",".3p.$.sg.$.pres.","0.99"],
-["ti","nte",".v.",".3p.$.pl.$.pres.","0.99"],
-["ti","re",".v.",".3p.$.pl.$.pres.","0.99"],
-["ti","ssati",".v.",".3p.$.sg.$.fut.","0.99"],
-["ti","ssanti",".v.",".3p.$.pl.$.fut.","0.99"],
-["ti","ssate",".v.",".3p.$.sg.$.fut.","0.99"],
-["ti","ssante",".v.",".3p.$.pl.$.fut.","0.99"],
-["ti","ssare",".v.",".3p.$.pl.$.fut.","0.99"],
-["ti","tu",".v.",".3p.$.sg.$.imp.","0.99"],
-["ti","ntu",".v.",".3p.$.pl.$.imp.","0.99"],
-["ti","taṃ",".v.",".3p.$.sg.$.imp.","0.99"],
-["ti","ntaṃ",".v.",".3p.$.pl.$.imp.","0.99"],
-["ti","sā",".v.",".3p.$.sg.$.cond.","0.99"],
-["ti","ssa",".v.",".3p.$.sg.$.cond.","0.99"],
-["ti","ssati",".v.",".3p.$.sg.$.cond.","0.99"],
-["ti","ssaṃsu",".v.",".3p.$.pl.$.cond.","0.99"],
-["ti","ssatha",".v.",".3p.$.sg.$.cond.","0.99"],
-["ti","ssiṃsu",".v.",".3p.$.pl.$.cond.","0.99"],
-["ti","si",".v.",".3p.$.sg.$.aor.","0.99"],
-["ti","sī",".v.",".3p.$.sg.$.aor.","0.99"],
-["ti","sā",".v.",".3p.$.sg.$.aor.","0.99"],
-["ti","siṃsu",".v.",".3p.$.pl.$.aor.","0.99"],
-["ti","sṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ti","suṃū",".v.",".3p.$.pl.$.aor.","0.99"],
-["ti","sā",".v.",".3p.$.sg.$.aor.","0.99"],
-["ti","sa",".v.",".3p.$.sg.$.aor.","0.99"],
-["ti","stthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ti","satthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ti","mi",".v.",".1p.$.sg.$.pres.","0.99"],
-["ti","ma",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","e",".v.",".1p.$.sg.$.pres.","0.99"],
-["ti","mhe",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","mahe",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","mha",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","mase",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","mhase",".v.",".1p.$.pl.$.pres.","0.99"],
-["ti","ssāmi",".v.",".1p.$.sg.$.fut.","0.99"],
-["ti","ssāma",".v.",".1p.$.pl.$.fut.","0.99"],
-["ti","ssaṃ",".v.",".1p.$.sg.$.fut.","0.99"],
-["ti","ssāmhe",".v.",".1p.$.pl.$.fut.","0.99"],
-["ti","ssāmase",".v.",".1p.$.pl.$.fut.","0.99"],
-["ti","mi",".v.",".1p.$.sg.$.imp.","0.99"],
-["ti","ma",".v.",".1p.$.pl.$.imp.","0.99"],
-["ti","ssa",".v.",".1p.$.sg.$.cond.","0.99"],
-["ti","ssamhā",".v.",".1p.$.pl.$.cond.","0.99"],
-["ti","ssaṃ",".v.",".1p.$.sg.$.cond.","0.99"],
-["ti","ssāmhase",".v.",".1p.$.pl.$.cond.","0.99"],
-["ti","siṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","saṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","sṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","sa",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","sā",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","simha",".v.",".1p.$.pl.$.aor.","0.99"],
-["ti","simhā",".v.",".1p.$.pl.$.aor.","0.99"],
-["ti","sa",".v.",".1p.$.sg.$.aor.","0.99"],
-["ti","simhe",".v.",".1p.$.pl.$.aor.","0.99"],
-["ti","si",".v.",".2p.$.sg.$.pres.","0.99"],
-["ti","tha",".v.",".2p.$.pl.$.pres.","0.99"],
-["ti","se",".v.",".2p.$.sg.$.pres.","0.99"],
-["ti","vhe",".v.",".2p.$.pl.$.pres.","0.99"],
-["ti","ssasi",".v.",".2p.$.sg.$.fut.","0.99"],
-["ti","ssatha",".v.",".2p.$.pl.$.fut.","0.99"],
-["ti","ssase",".v.",".2p.$.sg.$.fut.","0.99"],
-["ti","ssavhe",".v.",".2p.$.pl.$.fut.","0.99"],
-["ti","hi",".v.",".2p.$.sg.$.imp.","0.99"],
-["ti","ta",".v.",".2p.$.pl.$.imp.","0.99"],
-["ti","ssu",".v.",".2p.$.sg.$.imp.","0.99"],
-["ti","vho",".v.",".2p.$.pl.$.imp.","0.99"],
-["ti","se",".v.",".2p.$.sg.$.cond.","0.99"],
-["ti","ssa",".v.",".2p.$.sg.$.cond.","0.99"],
-["ti","ssasi",".v.",".2p.$.sg.$.cond.","0.99"],
-["ti","ssatha",".v.",".2p.$.pl.$.cond.","0.99"],
-["ti","ssase",".v.",".2p.$.sg.$.cond.","0.99"],
-["ti","ssavhe",".v.",".2p.$.pl.$.cond.","0.99"],
-["ti","si",".v.",".2p.$.sg.$.aor.","0.99"],
-["ti","so",".v.",".2p.$.sg.$.aor.","0.99"],
-["ti","sā",".v.",".2p.$.sg.$.aor.","0.99"],
-["ti","sttha",".v.",".2p.$.pl.$.aor.","0.99"],
-["ti","sse",".v.",".2p.$.sg.$.aor.","0.99"],
-["ti","svhaṃ",".v.",".2p.$.pl.$.aor.","0.99"],
-["ti","eyya",".v.",".3p.$.sg.$.opt.","0.99"],
-["ati","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["ati","etha",".v.",".3p.$.sg.$.opt.","0.99"],
-["ati","eraṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["ati","issati",".v.",".3p.$.sg.$.fut.","0.99"],
-["ati","issanti",".v.",".3p.$.pl.$.fut.","0.99"],
-["ati","issate",".v.",".3p.$.sg.$.fut.","0.99"],
-["ati","issante",".v.",".3p.$.pl.$.fut.","0.99"],
-["ati","issare",".v.",".3p.$.pl.$.fut.","0.99"],
-["ati","i",".v.",".3p.$.sg.$.aor.","0.99"],
-["ati","ī",".v.",".3p.$.sg.$.aor.","0.99"],
-["ati","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["ati","iṃsu",".v.",".3p.$.pl.$.aor.","0.99"],
-["ati","ṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ati","uṃū",".v.",".3p.$.pl.$.aor.","0.99"],
-["ati","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["ati","a",".v.",".3p.$.sg.$.aor.","0.99"],
-["ati","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ati","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["ati","āmi",".v.",".1p.$.sg.$.pres.","0.99"],
-["ati","āma",".v.",".1p.$.pl.$.pres.","0.99"],
-["ati","e",".v.",".1p.$.sg.$.imp.","0.99"],
-["ati","āmase",".v.",".1p.$.pl.$.imp.","0.99"],
-["ati","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99"],
-["ati","eyyāma",".v.",".1p.$.pl.$.opt.","0.99"],
-["ati","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99"],
-["ati","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99"],
-["ati","issāmi",".v.",".1p.$.sg.$.fut.","0.99"],
-["ati","issāma",".v.",".1p.$.pl.$.fut.","0.99"],
-["ati","issaṃ",".v.",".1p.$.sg.$.fut.","0.99"],
-["ati","issāmhe",".v.",".1p.$.pl.$.fut.","0.99"],
-["ati","issāmase",".v.",".1p.$.pl.$.fut.","0.99"],
-["ati","iṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","aṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","ṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","ā",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","imha",".v.",".1p.$.pl.$.aor.","0.99"],
-["ati","imhā",".v.",".1p.$.pl.$.aor.","0.99"],
-["ati","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["ati","imhe",".v.",".1p.$.pl.$.aor.","0.99"],
-["ati","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99"],
-["ati","eyyātha",".v.",".2p.$.pl.$.opt.","0.99"],
-["ati","etho",".v.",".2p.$.sg.$.opt.","0.99"],
-["ati","eyyavho",".v.",".2p.$.pl.$.opt.","0.99"],
-["ati","issasi",".v.",".2p.$.sg.$.fut.","0.99"],
-["ati","issatha",".v.",".2p.$.pl.$.fut.","0.99"],
-["ati","issase",".v.",".2p.$.sg.$.fut.","0.99"],
-["ati","issavhe",".v.",".2p.$.pl.$.fut.","0.99"],
-["ati","i",".v.",".2p.$.sg.$.aor.","0.99"],
-["ati","o",".v.",".2p.$.sg.$.aor.","0.99"],
-["ati","ā",".v.",".2p.$.sg.$.aor.","0.99"],
-["ati","ttha",".v.",".2p.$.pl.$.aor.","0.99"],
-["ati","se",".v.",".2p.$.sg.$.aor.","0.99"],
-["ati","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99"],
-["āti","etha",".v.",".3p.$.sg.$.opt.","0.99"],
-["āti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["āti","issati",".v.",".3p.$.sg.$.fut.","0.99"],
-["āti","issanti",".v.",".3p.$.pl.$.fut.","0.99"],
-["āti","issate",".v.",".3p.$.sg.$.fut.","0.99"],
-["āti","issante",".v.",".3p.$.pl.$.fut.","0.99"],
-["āti","issare",".v.",".3p.$.pl.$.fut.","0.99"],
-["āti","i",".v.",".3p.$.sg.$.aor.","0.99"],
-["āti","ī",".v.",".3p.$.sg.$.aor.","0.99"],
-["āti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["āti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99"],
-["āti","ṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["āti","uṃū",".v.",".3p.$.pl.$.aor.","0.99"],
-["āti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["āti","a",".v.",".3p.$.sg.$.aor.","0.99"],
-["āti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["āti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["āti","e",".v.",".1p.$.sg.$.imp.","0.99"],
-["āti","āmase",".v.",".1p.$.pl.$.imp.","0.99"],
-["āti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["āti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99"],
-["āti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99"],
-["āti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99"],
-["āti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99"],
-["āti","issāmi",".v.",".1p.$.sg.$.fut.","0.99"],
-["āti","issāma",".v.",".1p.$.pl.$.fut.","0.99"],
-["āti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99"],
-["āti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99"],
-["āti","issāmase",".v.",".1p.$.pl.$.fut.","0.99"],
-["āti","iṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","aṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","ṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","ā",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","imha",".v.",".1p.$.pl.$.aor.","0.99"],
-["āti","imhā",".v.",".1p.$.pl.$.aor.","0.99"],
-["āti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["āti","imhe",".v.",".1p.$.pl.$.aor.","0.99"],
-["āti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99"],
-["āti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99"],
-["āti","etho",".v.",".2p.$.sg.$.opt.","0.99"],
-["āti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99"],
-["āti","issasi",".v.",".2p.$.sg.$.fut.","0.99"],
-["āti","issatha",".v.",".2p.$.pl.$.fut.","0.99"],
-["āti","issase",".v.",".2p.$.sg.$.fut.","0.99"],
-["āti","issavhe",".v.",".2p.$.pl.$.fut.","0.99"],
-["āti","i",".v.",".2p.$.sg.$.aor.","0.99"],
-["āti","o",".v.",".2p.$.sg.$.aor.","0.99"],
-["āti","ā",".v.",".2p.$.sg.$.aor.","0.99"],
-["āti","ttha",".v.",".2p.$.pl.$.aor.","0.99"],
-["āti","se",".v.",".2p.$.sg.$.aor.","0.99"],
-["āti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99"],
-["eti","etha",".v.",".3p.$.sg.$.opt.","0.99"],
-["eti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["eti","issati",".v.",".3p.$.sg.$.fut.","0.99"],
-["eti","issanti",".v.",".3p.$.pl.$.fut.","0.99"],
-["eti","issate",".v.",".3p.$.sg.$.fut.","0.99"],
-["eti","issante",".v.",".3p.$.pl.$.fut.","0.99"],
-["eti","issare",".v.",".3p.$.pl.$.fut.","0.99"],
-["eti","i",".v.",".3p.$.sg.$.aor.","0.99"],
-["eti","ī",".v.",".3p.$.sg.$.aor.","0.99"],
-["eti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["eti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99"],
-["eti","ṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["eti","uṃū",".v.",".3p.$.pl.$.aor.","0.99"],
-["eti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["eti","a",".v.",".3p.$.sg.$.aor.","0.99"],
-["eti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["eti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["eti","e",".v.",".1p.$.sg.$.imp.","0.99"],
-["eti","āmase",".v.",".1p.$.pl.$.imp.","0.99"],
-["eti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99"],
-["eti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["eti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99"],
-["eti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99"],
-["eti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99"],
-["eti","issāmi",".v.",".1p.$.sg.$.fut.","0.99"],
-["eti","issāma",".v.",".1p.$.pl.$.fut.","0.99"],
-["eti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99"],
-["eti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99"],
-["eti","issāmase",".v.",".1p.$.pl.$.fut.","0.99"],
-["eti","iṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","aṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","ṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","ā",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","imha",".v.",".1p.$.pl.$.aor.","0.99"],
-["eti","imhā",".v.",".1p.$.pl.$.aor.","0.99"],
-["eti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["eti","imhe",".v.",".1p.$.pl.$.aor.","0.99"],
-["eti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99"],
-["eti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99"],
-["eti","etho",".v.",".2p.$.sg.$.opt.","0.99"],
-["eti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99"],
-["eti","issasi",".v.",".2p.$.sg.$.fut.","0.99"],
-["eti","issatha",".v.",".2p.$.pl.$.fut.","0.99"],
-["eti","issase",".v.",".2p.$.sg.$.fut.","0.99"],
-["eti","issavhe",".v.",".2p.$.pl.$.fut.","0.99"],
-["eti","i",".v.",".2p.$.sg.$.aor.","0.99"],
-["eti","o",".v.",".2p.$.sg.$.aor.","0.99"],
-["eti","ā",".v.",".2p.$.sg.$.aor.","0.99"],
-["eti","ttha",".v.",".2p.$.pl.$.aor.","0.99"],
-["eti","se",".v.",".2p.$.sg.$.aor.","0.99"],
-["eti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99"],
-["oti","etha",".v.",".3p.$.sg.$.opt.","0.99"],
-["oti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["oti","issati",".v.",".3p.$.sg.$.fut.","0.99"],
-["oti","issanti",".v.",".3p.$.pl.$.fut.","0.99"],
-["oti","issate",".v.",".3p.$.sg.$.fut.","0.99"],
-["oti","issante",".v.",".3p.$.pl.$.fut.","0.99"],
-["oti","issare",".v.",".3p.$.pl.$.fut.","0.99"],
-["oti","i",".v.",".3p.$.sg.$.aor.","0.99"],
-["oti","ī",".v.",".3p.$.sg.$.aor.","0.99"],
-["oti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["oti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99"],
-["oti","ṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["oti","uṃū",".v.",".3p.$.pl.$.aor.","0.99"],
-["oti","ā",".v.",".3p.$.sg.$.aor.","0.99"],
-["oti","a",".v.",".3p.$.sg.$.aor.","0.99"],
-["oti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["oti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99"],
-["oti","e",".v.",".1p.$.sg.$.imp.","0.99"],
-["oti","āmase",".v.",".1p.$.pl.$.imp.","0.99"],
-["oti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99"],
-["oti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99"],
-["oti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99"],
-["oti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99"],
-["oti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99"],
-["oti","issāmi",".v.",".1p.$.sg.$.fut.","0.99"],
-["oti","issāma",".v.",".1p.$.pl.$.fut.","0.99"],
-["oti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99"],
-["oti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99"],
-["oti","issāmase",".v.",".1p.$.pl.$.fut.","0.99"],
-["oti","iṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","aṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","ṃ",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","ā",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","imha",".v.",".1p.$.pl.$.aor.","0.99"],
-["oti","imhā",".v.",".1p.$.pl.$.aor.","0.99"],
-["oti","a",".v.",".1p.$.sg.$.aor.","0.99"],
-["oti","imhe",".v.",".1p.$.pl.$.aor.","0.99"],
-["oti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99"],
-["oti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99"],
-["oti","etho",".v.",".2p.$.sg.$.opt.","0.99"],
-["oti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99"],
-["oti","issasi",".v.",".2p.$.sg.$.fut.","0.99"],
-["oti","issatha",".v.",".2p.$.pl.$.fut.","0.99"],
-["oti","issase",".v.",".2p.$.sg.$.fut.","0.99"],
-["oti","issavhe",".v.",".2p.$.pl.$.fut.","0.99"],
-["oti","i",".v.",".2p.$.sg.$.aor.","0.99"],
-["oti","o",".v.",".2p.$.sg.$.aor.","0.99"],
-["oti","ā",".v.",".2p.$.sg.$.aor.","0.99"],
-["oti","ttha",".v.",".2p.$.pl.$.aor.","0.99"],
-["oti","se",".v.",".2p.$.sg.$.aor.","0.99"],
-["oti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99"],
-["ati","ittha",".v.",".2p.$.pl.$.aor.","0.99"],
+[,"ti","tuṃ",".v:ind.",".inf.","0.99",],
+[,"ati","ituṃ",".v:ind.",".inf.","0.99",],
+[,"ati","itvā",".v:ind.",".abs.","0.99",],
+[,"ati","atvā",".v:ind.",".abs.","0.99",],
+[,"ti","tvā",".v:ind.",".abs.","0.99",],
+[,"ant","antā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"ant","antā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","anta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"ant","antā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"ant","anta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","anta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","anta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","anta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","antā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"ant","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","antani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","ante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"ant","ante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"ant","ante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","antebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"ant","antebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"ant","antebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"ant","antebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"ant","antehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"ant","antehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"ant","antehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"ant","antehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"ant","antesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"ant","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","antī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","antī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"ant","antī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"ant","antībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","antībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","antīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","antīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","antiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"ant","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"ant","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"ant","antīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"ant","antiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","antiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"ant","anto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"ant","anto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","anto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","anto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"ant","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","ataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"ant","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"ant","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"ant","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","atī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","atī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"ant","atī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"ant","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"ant","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"ant","atībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","atībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","atīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"ant","atīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"ant","atiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"ant","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"ant","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"ant","atīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"ant","atiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"ant","atiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"ant","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"ant","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","antā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"anta","antā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","anta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"anta","antā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"anta","anta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","anta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","anta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","anta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","antā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","antaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"anta","antaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","antānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","antani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","antasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","antasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","antassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","ante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"anta","ante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"anta","ante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","antebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"anta","antebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"anta","antebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"anta","antebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"anta","antehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"anta","antehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"anta","antehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"anta","antehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"anta","antesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"anta","antesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","antī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","antī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"anta","antī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"anta","antībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","antībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","antīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","antīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","antiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"anta","antīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"anta","antīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"anta","antīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"anta","antiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","antiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","antiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"anta","anto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"anta","anto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","anto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","anto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"anta","atā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","ataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"anta","ataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"anta","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"anta","atena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","atī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","atī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"anta","atī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"anta","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"anta","ati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"anta","atībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","atībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","atīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"anta","atīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"anta","atiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"anta","atīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"anta","atīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"anta","atīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"anta","atiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","atiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"anta","atiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"anta","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"anta","ato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mant","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mant","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mant","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mant","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mant","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mant","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mant","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mant","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mant","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mant","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mant","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mant","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mant","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mant","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mant","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mant","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mant","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mant","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mant","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mant","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mant","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mant","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mant","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mant","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mant","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mant","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mant","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mant","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mant","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mant","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mant","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mant","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mant","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mant","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mant","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mant","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mant","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mant","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mant","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mant","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vant","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vant","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vant","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vant","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vant","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vant","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vant","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vant","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vant","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vant","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vant","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vant","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vant","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vant","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vant","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vant","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vant","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vant","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vant","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vant","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vant","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vant","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vant","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vant","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vant","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vant","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vant","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vant","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vant","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vant","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vant","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vant","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vant","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vant","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vant","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vant","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vant","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vant","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mantu","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mantu","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mantu","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mantu","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mantu","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mantu","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mantu","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mantu","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mantu","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mantu","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mantu","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mantu","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mantu","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mantu","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mantu","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mantu","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mantu","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mantu","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mantu","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mantu","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mantu","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mantu","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mantu","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mantu","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mantu","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mantu","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mantu","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mantu","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mantu","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mantu","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mantu","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mantu","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mantu","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mantu","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mantu","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mantu","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mantu","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mantu","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vantu","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vantu","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vantu","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vantu","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vantu","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vantu","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vantu","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vantu","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vantu","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vantu","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vantu","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vantu","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vantu","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vantu","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vantu","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vantu","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vantu","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vantu","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vantu","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vantu","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vantu","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vantu","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vantu","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vantu","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vantu","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vantu","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vantu","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vantu","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vantu","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vantu","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vantu","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vantu","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vantu","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vantu","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vantu","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vantu","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vantu","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mat","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"mat","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"mat","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mat","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"mat","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mat","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mat","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"mat","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"mat","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mat","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mat","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mat","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mat","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mat","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mat","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mat","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"mat","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"mat","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"mat","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"mat","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"mat","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"mat","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"mat","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"mat","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"mat","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"mat","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"mat","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"mat","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"mat","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"mat","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"mat","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"mat","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"mat","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"mat","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"mat","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"mat","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"mat","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"mat","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"mat","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"mat","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"mat","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vat","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vat","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vat","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vat","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vat","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vat","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vat","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vat","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vat","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vat","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vat","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vat","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vat","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vat","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vat","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vat","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vat","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vat","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vat","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vat","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vat","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vat","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vat","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vat","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vat","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vat","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vat","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vat","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vat","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vat","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vat","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vat","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vat","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vat","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vat","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vat","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vat","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vat","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"manta","mā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","mā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","ma",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","ma",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","maṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","mantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","manta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"manta","manta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","manta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","manta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","manta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","mantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"manta","mantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","mantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","mantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"manta","mante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"manta","mante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"manta","mantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"manta","mantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"manta","mantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"manta","mantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"manta","mantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","mantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","mantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"manta","mantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"manta","mantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","mantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","mantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","mantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","mantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"manta","mantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"manta","mantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"manta","mantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"manta","mantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","mantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","mantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"manta","manto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"manta","manto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"manta","manto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"manta","manto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"manta","matā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","mataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"manta","mataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"manta","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"manta","matena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","matī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","matī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"manta","matī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"manta","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"manta","mati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"manta","matībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","matībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","matīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"manta","matīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"manta","matiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"manta","matīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"manta","matīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"manta","matīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"manta","matiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","matiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"manta","matiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"manta","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"manta","mato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"manta","me",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"manta","mebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"manta","mehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"manta","mesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vanta","vā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","va",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","va",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vaṃ",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vantā",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vantā",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vanta",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".m.$.sg.$.voc.","0.3",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vanta",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vantā",".ti.",".nt.$.sg.$.voc.","0.3",],
+[,"vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vantaṃ",".ti.",".m.$.sg.$.acc.","0.99",],
+[,"vanta","vantaṃ",".ti.",".nt.$.sg.$.acc.","0.99",],
+[,"vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantamhi",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vantānaṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vantani",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantāni",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vantasmiṃ",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vantassa",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vante",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vanta","vante",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vante",".ti.",".nt.$.pl.$.acc.","0.99",],
+[,"vanta","vante",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vantebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vantebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vantebhi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vanta","vantebhi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vanta","vantehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vantehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vantehi",".ti.",".nt.$.pl.$.abl.","0.99",],
+[,"vanta","vantehi",".ti.",".nt.$.pl.$.inst.","0.99",],
+[,"vanta","vantesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vanta","vantesu",".ti.",".nt.$.pl.$.loc.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vantī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vanta","vantī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vanta","vantībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vantībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vantīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vantīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vantiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vanta","vantīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vanta","vantīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vanta","vantīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vanta","vantiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vantiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vantiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".m.$.pl.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".m.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".m.$.sg.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".nt.$.pl.$.nom.","0.99",],
+[,"vanta","vanto",".ti.",".nt.$.pl.$.voc.","0.3",],
+[,"vanta","vanto",".ti.",".nt.$.sg.$.nom.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.abl.","0.99",],
+[,"vanta","vatā",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vataṃ",".ti.",".m.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".m.$.pl.$.gen.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.dat.","0.99",],
+[,"vanta","vataṃ",".ti.",".nt.$.pl.$.gen.","0.99",],
+[,"vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".m.$.sg.$.inst.","0.99",],
+[,"vanta","vatena",".ti.",".nt.$.sg.$.inst.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vatī",".ti.",".f.$.sg.$.nom.","0.99",],
+[,"vanta","vatī",".ti.",".f.$.sg.$.voc.","0.3",],
+[,"vanta","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".m.$.sg.$.loc.","0.99",],
+[,"vanta","vati",".ti.",".nt.$.sg.$.loc.","0.99",],
+[,"vanta","vatībhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vatībhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vatīhi",".ti.",".f.$.pl.$.abl.","0.99",],
+[,"vanta","vatīhi",".ti.",".f.$.pl.$.inst.","0.99",],
+[,"vanta","vatiṃ",".ti.",".f.$.sg.$.acc.","0.99",],
+[,"vanta","vatīnaṃ",".ti.",".f.$.pl.$.dat.","0.99",],
+[,"vanta","vatīnaṃ",".ti.",".f.$.pl.$.gen.","0.99",],
+[,"vanta","vatīsu",".ti.",".f.$.pl.$.loc.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.abl.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.dat.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.gen.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.inst.","0.99",],
+[,"vanta","vatiyā",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vatiyaṃ",".ti.",".f.$.sg.$.loc.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.acc.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.nom.","0.99",],
+[,"vanta","vatiyo",".ti.",".f.$.pl.$.voc.","0.3",],
+[,"vanta","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".m.$.sg.$.gen.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.dat.","0.99",],
+[,"vanta","vato",".ti.",".nt.$.sg.$.gen.","0.99",],
+[,"vanta","ve",".ti.",".m.$.pl.$.acc.","0.99",],
+[,"vanta","vebhi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vebhi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vehi",".ti.",".m.$.pl.$.abl.","0.99",],
+[,"vanta","vehi",".ti.",".m.$.pl.$.inst.","0.99",],
+[,"vanta","vesu",".ti.",".m.$.pl.$.loc.","0.99",],
+[,"a","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"a","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"a","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","ato",".n.",".m.$.sg.$.abl.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","āse",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"a","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"a","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"a","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"a","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"a","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"a","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","ato",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"a","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","āni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","āni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","āni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"a","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"a","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","esaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"a","esaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"a","esaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"a","esaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","e",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","aṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","ato",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","āya",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ā","āyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ā","ā",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ā","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ā","ā",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ā","āyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ā","ā",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ā","āyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ā","ānaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ā","ānaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ā","āhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","ābhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","āhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","ābhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","āsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".m.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".m.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"i","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"i","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ayo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ayo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","ayo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"i","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","ino",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","ino",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","inā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"i","inā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","ismā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","imhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","ismiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","imhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","īni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","īni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","īni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","ī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","i",".n.",".f.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".f.$.sg.$.voc.","0.3",],
+[,"i","iṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","iyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","yā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","iyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","yaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","iyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","yo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"i","ī",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","yo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","ī",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","iyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","yo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"i","īnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"i","īnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"i","īhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","ībhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","īhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","ībhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","īsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ī","ī",".n.",".m.$.sg.$.nom.","0.99",],
+[,"in","ī",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ī","ī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ī","inī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"in","ī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"in","inī",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ī","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"in","iṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"in","inaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","issa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","ino",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","issa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","ino",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"in","inā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ī","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","inā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","ismā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"in","imhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","ismiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","imhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"in","ī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"in","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ī","ino",".n.",".m.$.pl.$.voc.","0.3",],
+[,"in","ī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"in","ino",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ī","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","ino",".n.",".m.$.pl.$.acc.","0.99",],
+[,"in","ī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"in","ino",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"in","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ī","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"in","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ī","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","īhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","ībhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","īhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","ībhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"in","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","ī",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ī","ī",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ī","iṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","iyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ayā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","yā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","iyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ayaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","yaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ī","ī",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","iyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","yo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","ī",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","yo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ī","ī",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","iyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","yo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ī","īnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","īnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","īhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","ībhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","īhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","ībhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","īsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".m.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".m.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"u","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"u","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","usmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","umhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"u","usmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","umhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"u","avo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","avo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","ave",".n.",".m.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"u","avo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"u","ussa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","uno",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","ussa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","uno",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","unā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"u","unā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","usmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","umhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"u","usmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","umhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ūni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ūni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"u","u",".n.",".f.$.sg.$.nom.","0.99",],
+[,"u","u",".n.",".f.$.sg.$.voc.","0.3",],
+[,"u","uṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"u","uto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"u","uyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"u","uyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"u","ū",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","uyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","ūvo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"u","ū",".n.",".f.$.pl.$.voc.","0.3",],
+[,"u","uyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"u","ū",".n.",".f.$.pl.$.acc.","0.99",],
+[,"u","uyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"u","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"u","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"u","ūhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūbhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūbhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ū","ū",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ū","ū",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ū","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ū","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ū","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","usmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","umhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ū","usmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","umhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ū","avo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ū","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","avo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","ave",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ū","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ū","avo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ū","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ū","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ū","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ū","ū",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ū","ū",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ū","uṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ū","uto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ū","uyā",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ū","uyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ū","ū",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ū","uyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ū","ū",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ū","uyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ū","ū",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ū","uyo",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ū","ūnaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ū","ūnaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ū","ūhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūbhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūbhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"as","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"as","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"o","o",".n.",".m.$.sg.$.nom.","0.99",],
+[,"o","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"as","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"o","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"as","o",".n.",".m.$.sg.$.acc.","0.99",],
+[,"as","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"o","o",".n.",".m.$.sg.$.acc.","0.99",],
+[,"o","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"as","aso",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","aso",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","aso",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","aso",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","asā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","asā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"o","ā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"as","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"o","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"o","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"o","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"o","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"as","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"o","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"as","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"o","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"as","o",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"as","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"o","o",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"o","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"as","o",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","o",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"o","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"as","o",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"as","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"o","o",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"o","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"as","aso",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","aso",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","aso",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","aso",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","asā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","asā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"o","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"as","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"o","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"o","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"as","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"o","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"as","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"o","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"as","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"o","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"as","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"o","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"an","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","anaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"an","assa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","ano",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","assa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","ano",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","ena",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","asmā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","amhā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"an","ani",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","asmiṃ",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","amhi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"an","āno",".n.",".m.$.pl.$.nom.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","āno",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","āno",".n.",".m.$.pl.$.acc.","0.99",],
+[,"an","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"an","anehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anesu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"an","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"an","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"an","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","āya",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","ā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","ato",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","āni",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","āni",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","āni",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","e",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"an","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"an","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ebhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","ebhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ar","aṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ar","assa",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","ino",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","assa",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","ino",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","ena",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","inā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","asmā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ar","amhā",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ar","ini",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","asmiṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","amhi",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","ā",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ar","āno",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ar","āno",".n.",".f.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ar","āno",".n.",".f.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ar","ānaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ar","ehi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","āhi",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","ehi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","āhi",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","esu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","āsu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ar","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ar","assa",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","ino",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","assa",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","ino",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","ena",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","inā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","asmā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"ar","amhā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"ar","ini",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","asmiṃ",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","amhi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ar","āno",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ar","āno",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"ar","āno",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"ar","ānaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"ar","ehi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","āhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","ehi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","āhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","esu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","āsu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.nom.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","asā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","āya",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","ā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","asi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","e",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","o",".n.",".m.$.sg.$.voc.","0.3",],
+[,"a","āse",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","o",".n.",".m.$.pl.$.nom.","0.99",],
+[,"a","ān",".n.",".m.$.pl.$.acc.","0.99",],
+[,"a","e",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ato",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","e",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","asā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","asi",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"a","āya",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","ā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","o",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ato",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ā","ā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ā","āto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ā","a",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ā","iyo",".n.",".f.$.pl.$.voc.","0.3",],
+[,"i","e",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","ito",".n.",".m.$.sg.$.abl.","0.99",],
+[,"i","e",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","ini",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","e",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","o",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","ino",".n.",".m.$.pl.$.nom.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.acc.","0.99",],
+[,"i","ihi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ibhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","inaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"i","ihi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ibhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","inaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"i","isu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","iyo",".n.",".m.$.pl.$.voc.","0.3",],
+[,"i","ihi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ibhi",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ihi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ibhi",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","inaṃ",".n.",".nt.$.pl.$.gen.","0.99",],
+[,"i","inaṃ",".n.",".nt.$.pl.$.dat.","0.99",],
+[,"i","isu",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","iṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"i","i",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","ito",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","ini",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","e",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","o",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","iṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"i","ī",".n.",".f.$.sg.$.nom.","0.99",],
+[,"i","ito",".n.",".f.$.sg.$.abl.","0.99",],
+[,"i","myā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"i","o",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","āyaṃ",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","u",".n.",".f.$.sg.$.loc.","0.99",],
+[,"i","ī",".n.",".f.$.sg.$.voc.","0.3",],
+[,"ī","ini",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","īnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ī","īnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ī","īsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","i",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ī","iyo",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ī","iye",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ī","iyaṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ī","ito",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ī","i",".n.",".f.$.sg.$.nom.","0.99",],
+[,"ī","iyaṃ",".n.",".f.$.sg.$.acc.","0.99",],
+[,"ī","ito",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","īto",".n.",".f.$.sg.$.abl.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","āyo",".n.",".f.$.pl.$.nom.","0.99",],
+[,"ī","inaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","inaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","īyanaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","īyanaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","iyanaṃ",".n.",".f.$.pl.$.gen.","0.99",],
+[,"ī","iyanaṃ",".n.",".f.$.pl.$.dat.","0.99",],
+[,"ī","isu",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ar","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","araṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ar","āraṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ar","u",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","u",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","arā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","ara",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","āra",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","ārā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"ar","arā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ara",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","āra",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ārā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"ar","ari",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ar","āro",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ar","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ar","āro",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ar","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ar","āro",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ar","āre",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ar","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ārānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ar","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ārānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ar","ārehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","ārebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","āresu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","āyo",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ar","iyo",".n.",".m.$.sg.$.voc.","0.3",],
+[,"an","ane",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"an","ubhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","uhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"an","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","usu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"an","a",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"an","anā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","unā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","no",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","unā",".n.",".nt.$.sg.$.abl.","0.99",],
+[,"an","no",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","ani",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","āni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ā",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","āni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","u",".n.",".m.$.sg.$.nom.","0.99",],
+[,"us","uṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"us","u",".n.",".m.$.sg.$.voc.","0.3",],
+[,"us","uṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"us","u",".n.",".m.$.sg.$.acc.","0.99",],
+[,"us","uṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"us","ussa",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","uno",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","ussa",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","uno",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","unā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"us","usā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"us","unā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"us","usā",".n.",".m.$.sg.$.abl.","0.99",],
+[,"us","uni",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","usi",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","ū",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ūni",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ū",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ūni",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ū",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūni",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūnaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"us","ūsaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"us","ūnaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"us","ūsaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"us","ūhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūbhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūbhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūsu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"a","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"a","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"a","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"a","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"a","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"a","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"a","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"a","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"a","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"a","ānī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"a","ānī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"a","ānī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"a","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"a","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"a","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ā","āhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","ābhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ā","āhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","ābhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ā","āsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"i","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"i","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"i","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"i","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"i","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"i","imhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","īnī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"i","īnī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"i","īnī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"i","īhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"i","īhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","ībhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"i","īhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","ībhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"i","īsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ī","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"in","issā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ī","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"in","issā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ī","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"in","imhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ī","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","īhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"in","ībhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ī","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","īhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"in","ībhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ī","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"in","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","īhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","ībhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ī","īhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","ībhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ī","īsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"u","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"u","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"u","umhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"u","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"u","ussā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"u","ussā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"u","umhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"u","ūnī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"u","ūnī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"u","ūnī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"u","ūhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"u","ūhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūbhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"u","ūhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūbhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"u","ūsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ū","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ū","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ū","umhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ū","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ū","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ū","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ū","ūhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūbhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ū","ūhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūbhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ū","ūsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"as","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"o","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"as","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"o","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"as","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"o","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"as","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"o","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"as","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"o","ebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"as","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"o","ebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"as","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"o","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"as","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"o","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"as","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"o","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"as","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"o","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"as","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"o","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"o","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"as","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"o","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"as","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"o","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"an","assā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"an","assā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"an","enā",".n.",".m.$.sg.$.inst.","0.99",],
+[,"an","anī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","amhī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"an","anehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","anehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"an","anesū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"an","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"an","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"an","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"an","ānī",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"an","ānī",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"an","ānī",".n.",".nt.$.pl.$.acc.","0.99",],
+[,"an","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ebhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"an","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","ebhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"an","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","assā",".n.",".f.$.sg.$.gen.","0.99",],
+[,"ar","assā",".n.",".f.$.sg.$.dat.","0.99",],
+[,"ar","enā",".n.",".f.$.sg.$.inst.","0.99",],
+[,"ar","amhī",".n.",".f.$.sg.$.loc.","0.99",],
+[,"ar","ehī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","āhī",".n.",".f.$.pl.$.inst.","0.99",],
+[,"ar","ehī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","āhī",".n.",".f.$.pl.$.abl.","0.99",],
+[,"ar","esū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","āsū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","assā",".n.",".nt.$.sg.$.gen.","0.99",],
+[,"ar","assā",".n.",".nt.$.sg.$.dat.","0.99",],
+[,"ar","enā",".n.",".nt.$.sg.$.inst.","0.99",],
+[,"ar","amhī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"ar","ehī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","āhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"ar","ehī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","āhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"ar","esū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ar","āsū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"a","asī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"a","asī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"i","ihī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ibhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"i","ihī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","ibhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"i","isū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"i","ihī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ibhī",".n.",".nt.$.pl.$.inst.","0.99",],
+[,"i","ihī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","ibhī",".n.",".nt.$.pl.$.abl.","0.99",],
+[,"i","isū",".n.",".nt.$.pl.$.loc.","0.99",],
+[,"ī","īsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ī","isū",".n.",".f.$.pl.$.loc.","0.99",],
+[,"ar","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"ar","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"ar","arī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"ar","ārehī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārebhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ar","ārehī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","ārebhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ar","āresū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ar","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ubhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","uhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"an","esū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","usū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"an","anī",".n.",".nt.$.sg.$.loc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"as","ānī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"as","ānī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ussā",".n.",".m.$.sg.$.dat.","0.99",],
+[,"us","ussā",".n.",".m.$.sg.$.gen.","0.99",],
+[,"us","unī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","usī",".n.",".m.$.sg.$.loc.","0.99",],
+[,"us","ūnī",".n.",".m.$.pl.$.nom.","0.99",],
+[,"us","ūnī",".n.",".m.$.pl.$.voc.","0.3",],
+[,"us","ūnī",".n.",".m.$.pl.$.acc.","0.99",],
+[,"us","ūhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūbhī",".n.",".m.$.pl.$.inst.","0.99",],
+[,"us","ūhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūbhī",".n.",".m.$.pl.$.abl.","0.99",],
+[,"us","ūsū",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ant","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"ant","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ant","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"ant","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"ant","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"ant","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"ant","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"ant","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"ant","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"ant","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"ant","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"ant","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ant","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ant","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"ant","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"ant","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"anta","ā",".n.",".m.$.pl.$.nom.","0.99",],
+[,"anta","ā",".n.",".m.$.pl.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.nom.","0.99",],
+[,"anta","a",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.pl.$.nom.","0.99",],
+[,"anta","ā",".n.",".nt.$.pl.$.voc.","0.3",],
+[,"anta","a",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","ā",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".m.$.sg.$.acc.","0.99",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.acc.","0.99",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.nom.","0.99",],
+[,"anta","aṃ",".n.",".m.$.sg.$.nom.","0.99",],
+[,"anta","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".m.$.sg.$.voc.","0.3",],
+[,"anta","aṃ",".n.",".nt.$.sg.$.voc.","0.3",],
+[,"anta","ānaṃ",".n.",".m.$.pl.$.dat.","0.99",],
+[,"anta","ānaṃ",".n.",".m.$.pl.$.gen.","0.99",],
+[,"anta","e",".n.",".m.$.pl.$.acc.","0.99",],
+[,"anta","ebhi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"anta","ebhi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"anta","ehi",".n.",".m.$.pl.$.abl.","0.99",],
+[,"anta","ehi",".n.",".m.$.pl.$.inst.","0.99",],
+[,"anta","esu",".n.",".m.$.pl.$.loc.","0.99",],
+[,"ti","ti",".v.",".3p.$.sg.$.pres.","0.99",],
+[,"ti","nti",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","te",".v.",".3p.$.sg.$.pres.","0.99",],
+[,"ti","nte",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","re",".v.",".3p.$.pl.$.pres.","0.99",],
+[,"ti","ssati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ti","ssanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","ssate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ti","ssante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","ssare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ti","tu",".v.",".3p.$.sg.$.imp.","0.99",],
+[,"ti","ntu",".v.",".3p.$.pl.$.imp.","0.99",],
+[,"ti","taṃ",".v.",".3p.$.sg.$.imp.","0.99",],
+[,"ti","ntaṃ",".v.",".3p.$.pl.$.imp.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssa",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssati",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssaṃsu",".v.",".3p.$.pl.$.cond.","0.99",],
+[,"ti","ssatha",".v.",".3p.$.sg.$.cond.","0.99",],
+[,"ti","ssiṃsu",".v.",".3p.$.pl.$.cond.","0.99",],
+[,"ti","si",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","siṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","sṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","suṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","sā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","sa",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ti","stthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","satthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ti","mi",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ti","ma",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","e",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ti","mhe",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mahe",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mha",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mase",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","mhase",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ti","ssāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ti","ssāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","ssaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ti","ssāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","ssāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ti","mi",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"ti","ma",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"ti","ssa",".v.",".1p.$.sg.$.cond.","0.99",],
+[,"ti","ssamhā",".v.",".1p.$.pl.$.cond.","0.99",],
+[,"ti","ssaṃ",".v.",".1p.$.sg.$.cond.","0.99",],
+[,"ti","ssāmhase",".v.",".1p.$.pl.$.cond.","0.99",],
+[,"ti","siṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","saṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sa",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","simha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","simhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","sa",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ti","simhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ti","si",".v.",".2p.$.sg.$.pres.","0.99",],
+[,"ti","tha",".v.",".2p.$.pl.$.pres.","0.99",],
+[,"ti","se",".v.",".2p.$.sg.$.pres.","0.99",],
+[,"ti","vhe",".v.",".2p.$.pl.$.pres.","0.99",],
+[,"ti","ssasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ti","ssatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ti","ssase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ti","ssavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ti","hi",".v.",".2p.$.sg.$.imp.","0.99",],
+[,"ti","ta",".v.",".2p.$.pl.$.imp.","0.99",],
+[,"ti","ssu",".v.",".2p.$.sg.$.imp.","0.99",],
+[,"ti","vho",".v.",".2p.$.pl.$.imp.","0.99",],
+[,"ti","se",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssa",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssasi",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssatha",".v.",".2p.$.pl.$.cond.","0.99",],
+[,"ti","ssase",".v.",".2p.$.sg.$.cond.","0.99",],
+[,"ti","ssavhe",".v.",".2p.$.pl.$.cond.","0.99",],
+[,"ti","si",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","so",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","sā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","sttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ti","sse",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ti","svhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ti","eyya",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"ati","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"ati","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"ati","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"ati","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ati","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"ati","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"ati","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"ati","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"ati","āmi",".v.",".1p.$.sg.$.pres.","0.99",],
+[,"ati","āma",".v.",".1p.$.pl.$.pres.","0.99",],
+[,"ati","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"ati","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"ati","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"ati","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"ati","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"ati","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"ati","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ati","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"ati","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"ati","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"ati","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"ati","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"ati","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"ati","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"ati","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"ati","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ati","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ati","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"ati","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"ati","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ati","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"ati","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"āti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"āti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"āti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"āti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"āti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"āti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"āti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"āti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"āti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"āti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"āti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"āti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"āti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"āti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"āti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"āti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"āti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"āti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"āti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"āti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"āti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"āti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"āti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"āti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"āti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"āti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"āti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"āti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"āti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"āti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"eti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"eti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"eti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"eti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"eti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"eti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"eti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"eti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"eti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"eti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"eti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"eti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"eti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"eti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"eti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"eti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"eti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"eti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"eti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"eti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"eti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"eti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"eti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"eti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"eti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"eti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"eti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"eti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"eti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"eti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"oti","etha",".v.",".3p.$.sg.$.opt.","0.99",],
+[,"oti","eraṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"oti","issati",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"oti","issanti",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","issate",".v.",".3p.$.sg.$.fut.","0.99",],
+[,"oti","issante",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","issare",".v.",".3p.$.pl.$.fut.","0.99",],
+[,"oti","i",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","ī",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","iṃsu",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","ṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","uṃū",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","ā",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","a",".v.",".3p.$.sg.$.aor.","0.99",],
+[,"oti","tthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","atthuṃ",".v.",".3p.$.pl.$.aor.","0.99",],
+[,"oti","e",".v.",".1p.$.sg.$.imp.","0.99",],
+[,"oti","āmase",".v.",".1p.$.pl.$.imp.","0.99",],
+[,"oti","eyyuṃ",".v.",".3p.$.pl.$.opt.","0.99",],
+[,"oti","eyyāmi",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"oti","eyyāma",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"oti","eyyaṃ",".v.",".1p.$.sg.$.opt.","0.99",],
+[,"oti","eyyāmhe",".v.",".1p.$.pl.$.opt.","0.99",],
+[,"oti","issāmi",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"oti","issāma",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","issaṃ",".v.",".1p.$.sg.$.fut.","0.99",],
+[,"oti","issāmhe",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","issāmase",".v.",".1p.$.pl.$.fut.","0.99",],
+[,"oti","iṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","aṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","ṃ",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","imha",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","imhā",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","a",".v.",".1p.$.sg.$.aor.","0.99",],
+[,"oti","imhe",".v.",".1p.$.pl.$.aor.","0.99",],
+[,"oti","eyyāsi",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"oti","eyyātha",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"oti","etho",".v.",".2p.$.sg.$.opt.","0.99",],
+[,"oti","eyyavho",".v.",".2p.$.pl.$.opt.","0.99",],
+[,"oti","issasi",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"oti","issatha",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"oti","issase",".v.",".2p.$.sg.$.fut.","0.99",],
+[,"oti","issavhe",".v.",".2p.$.pl.$.fut.","0.99",],
+[,"oti","i",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","o",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","ā",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","ttha",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"oti","se",".v.",".2p.$.sg.$.aor.","0.99",],
+[,"oti","vhaṃ",".v.",".2p.$.pl.$.aor.","0.99",],
+[,"ati","ittha",".v.",".2p.$.pl.$.aor.","0.99",],