commit 1ff05ba9dca0ab6334ec42acbb6a34bda7b9b7a0 Author: ModelHub XC Date: Tue Aug 25 02:37:17 2026 +0800 初始化项目,由ModelHub XC社区提供模型 Model: Omarrran/koshur-kouter-ks-en_v1 Source: Original Platform diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f119239 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,37 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +benchmarks/kashmiri_benchmark_500_stage1_safe_pred.xlsx filter=lfs diff=lfs merge=lfs -text +tokenizer.json filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..f583ac9 --- /dev/null +++ b/README.md @@ -0,0 +1,376 @@ +--- +language: + - ks + - en +license: gpl-3.0 +base_model: + - sarvamai/sarvam-translate +library_name: transformers +pipeline_tag: text-generation +tags: + - translation + - kashmiri + - english + - gemma3 + - sarvam-translate + - low-resource + - lora + - merged +model-index: + - name: koshur-kouter-ks-en_v1 + results: + - task: + type: translation + name: Translation (ks→en) + dataset: + name: benchmark_simple_ks2en_200 + type: custom + metrics: + - type: bleu + value: 13.07 + name: BLEU + - type: chrf + value: 46.99 + name: chrF + - type: exact_match + value: 0.0 + name: Exact Match + - task: + type: translation + name: Translation (internal eval) + dataset: + name: internal_eval + type: custom + metrics: + - type: bleu + value: 100.0 + name: BLEU + - type: chrf + value: 100.0 + name: chrF +--- + +# Koshur Kouter KS-EN v1 + +[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/#fileId=https://huggingface.co/Omarrran/koshur-kouter-ks-en_v1/blob/main/notebooks/colab_load_stage1_model.ipynb) + +A Kashmiri ↔ English translation model fine-tuned from [`sarvamai/sarvam-translate`](https://huggingface.co/sarvamai/sarvam-translate) (Gemma 3, 4.5B parameters). A QLoRA adapter has been merged into the base weights and published as a fully self-contained `transformers`-compatible checkpoint. + +--- + +## Model Details + +| | | +|---|---| +| **Authors** | Haq Nawaz Malik ([@Omarrran](https://huggingface.co/Omarrran)) · Nahfid Nissar ([@nafiboi](https://huggingface.co/nafiboi)) | +| **Base model** | `sarvamai/sarvam-translate` | +| **Architecture** | `Gemma3ForCausalLM` | +| **Parameters** | ~4.55 B (bf16) | +| **Languages** | Kashmiri (ks), English (en) | +| **License** | GPL-3.0 | +| **Precision** | bfloat16 | +| **Context length** | 131,072 tokens | +| **Vocabulary size** | 262,208 | +| **Layers / hidden / heads / KV heads** | 34 / 2560 / 8 / 4 | +| **Checkpoint size** | 8.48 GiB (5 shards) | + +--- + +## Intended Use + +**Primary use cases** + +- Kashmiri ↔ English machine translation, in either direction. +- Downstream evaluation, comparison, and benchmarking of Kashmiri NLP systems. +- Manual review workflows on mixed-direction prompts. +- Direct loading via `transformers` without PEFT adapter merging. + +**Out-of-scope use** + +- Production-grade translation without human review. +- Long-form document translation (model is tuned on short, sentence-level pairs). +- Open-ended generation, dialogue, or any task other than translation. +- Safety-critical applications (medical, legal, financial advice). + +--- + +## Quickstart + +### Installation + +```bash +pip install -U transformers accelerate sentencepiece safetensors torch +``` + +### Load the model + +```python +import torch +from transformers import AutoTokenizer, AutoModelForCausalLM + +repo_id = "Omarrran/koshur-kouter-ks-en_v1" + +tokenizer = AutoTokenizer.from_pretrained(repo_id) +model = AutoModelForCausalLM.from_pretrained( + repo_id, + torch_dtype=torch.bfloat16, + device_map="auto", +).eval() +``` + +### Translate + +```python +def first_nonempty_line(text: str) -> str: + for line in text.splitlines(): + if line.strip(): + return line.strip() + return text.strip() + + +def translate(source: str, direction: str, max_new_tokens: int = 48) -> str: + instructions = { + "ks2en": "Translate the text below to English. Return only the translation.", + "en2ks": "Translate the text below to Kashmiri. Return only the translation.", + } + messages = [ + {"role": "system", "content": instructions[direction]}, + {"role": "user", "content": source}, + ] + prompt = tokenizer.apply_chat_template( + messages, tokenize=False, add_generation_prompt=True + ) + inputs = tokenizer( + prompt, return_tensors="pt", truncation=True, max_length=1024 + ).to(model.device) + + with torch.no_grad(): + outputs = model.generate( + **inputs, + max_new_tokens=max_new_tokens, + do_sample=False, + repetition_penalty=1.15, + no_repeat_ngram_size=3, + pad_token_id=tokenizer.eos_token_id, + ) + + suffix = outputs[0][inputs.input_ids.shape[1]:] + return first_nonempty_line(tokenizer.decode(suffix, skip_special_tokens=True)) + + +print(translate("Hello how are you doing today?.", "en2ks")) +print(translate("کٔشیر چھُ اکھ خوبصورت جٲی", "ks2en")) +``` + +A ready-to-run notebook is included at `notebooks/colab_load_stage1_model.ipynb`. + +[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/#fileId=https://huggingface.co/Omarrran/koshur-kouter-ks-en_v1/blob/main/notebooks/colab_load_stage1_model.ipynb) + +--- + +## Recommended Decoding + +The model is sensitive to decoding settings. The defaults shipped in `generation_config.json` are tuned for stable translation rather than open-ended generation: + +| Parameter | Value | +|---|---| +| `do_sample` | `False` | +| `max_new_tokens` | `48` | +| `repetition_penalty` | `1.15` | +| `no_repeat_ngram_size` | `3` | + +**Post-processing:** decode only the generated suffix and take the first non-empty line. Looser decoding (sampling, longer windows, no repetition penalty) produces continuation artifacts and quote-tail noise. + +--- + +## Training + +### Procedure + +The model was trained with a **QLoRA supervised fine-tuning** setup on a bidirectional Kashmiri ↔ English parallel corpus, on top of `sarvamai/sarvam-translate`. The resulting LoRA adapter was merged into the base weights; this release ships the merged checkpoint. + +### Hyperparameters + +| Hyperparameter | Value | +|---|---| +| Max sequence length | 512 | +| Effective batch size | 32 | +| Gradient accumulation | 1 | +| Precision | bf16 | +| Optimizer | `paged_adamw_8bit` | +| Learning rate | 2 × 10⁻⁴ | +| LR scheduler | cosine | +| Warmup ratio | 0.03 | +| Weight decay | 0.01 | +| Max grad norm | 1.0 | +| Epochs | 2 | +| LoRA rank / alpha / dropout | 32 / 64 / 0.05 | +| LoRA target modules | `q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj` | +| Modules saved (full) | `lm_head, embed_tokens` | +| Logging / eval / save steps | 10 / 250 / 250 | + +### Observed training metrics + +| Metric | Value | +|---|---| +| Total steps | 20,060 | +| Wall-clock time | 5.19 h | +| Peak VRAM | 12.88 GB | +| Train loss — first logged | 8.0698 | +| Train loss — best logged | 0.5632 | +| Train loss — last step (step 20,060) | 0.5819 | +| **Final train loss (averaged across run)** | **0.6242** | +| Token accuracy — last / best | 0.8548 / 0.8557 | +| Eval loss — first / best | 1.4610 / 1.2011 | +| **Final eval loss (step 20,000)** | **1.2294** | + +### Training curves + +| Loss | Token accuracy | Eval loss | GPU memory | +|---|---|---|---| +| ![](assets/stage1_training_loss.svg) | ![](assets/stage1_token_accuracy.svg) | ![](assets/stage1_eval_loss.svg) | ![](assets/stage1_gpu_alloc_gb.svg) | + +Raw training logs are available under `artifacts/`: +- `stage1_training_log.jsonl` +- `stage1_summary.json` +- `stage1_eval.json` +- `stage1_metrics_summary.json` + +--- + +## Evaluation + +### Internal eval (200 samples) + +| Metric | Value | +|---|---| +| BLEU | 100.0 | +| chrF | 100.0 | + +> ⚠️ **Caveat.** This score is implausibly perfect and almost certainly reflects an easy or in-distribution slice. It is reported here for completeness and **must not** be interpreted as a generalization estimate. + +### `benchmark_simple_ks2en_200` (ks → en) + +| Metric | Value | +|---|---| +| BLEU | 13.07 | +| chrF | 46.99 | +| Exact match | 0.00 | + +The benchmark contains some noisy or mismatched references; scores should be interpreted as a lower-bound indicator rather than a clean evaluation. Files: `benchmarks/benchmark_simple_ks2en_200.{jsonl,stage1_eval.json}`. + +### 500-sample mixed-direction review set (source-only) + +A 500-sample source-only set is provided for **human review**. Automatic BLEU/chrF is not applicable. + +| File | Purpose | +|---|---| +| `kashmiri_benchmark_500_source_only.jsonl` | Source prompts | +| `kashmiri_benchmark_500_stage1_safe_pred.jsonl` | Model predictions | +| `kashmiri_benchmark_500_stage1_safe_pred.{summary.json, xlsx, summary.xlsx}` | Aggregates and review-friendly spreadsheets | + +--- + +## Hardware Requirements + +### Inference + +| Setting | VRAM | Notes | +|---|---|---| +| Short bf16 inference (observed) | ~8.5 GB | Validated on Modal | +| Recommended for short prompts | ≥ 12 GB | Comfortable headroom | +| Long prompts / batching | 16–24 GB+ | Recommended | +| CPU loading | ≥ 24 GB RAM | Full merged shards held in memory | +| Colab | L4 / A100 | Use 4/8-bit quantization on smaller GPUs | + +### Training (reference) + +- Peak VRAM: **12.88 GB** +- Wall-clock: **5.19 h** for 20,060 steps + +--- + +## Repository Layout + +```text +. +├── README.md +├── config.json +├── generation_config.json +├── model.safetensors.index.json +├── model-0000{1..5}-of-00005.safetensors +├── tokenizer.json +├── tokenizer.model +├── artifacts/ +│ ├── config.json +│ ├── stage1_eval.json +│ ├── stage1_metrics_summary.json +│ ├── stage1_summary.json +│ └── stage1_training_log.jsonl +├── assets/ +│ ├── stage1_training_loss.svg +│ ├── stage1_token_accuracy.svg +│ ├── stage1_eval_loss.svg +│ └── stage1_gpu_alloc_gb.svg +├── benchmarks/ +│ ├── benchmark_simple_ks2en_200.jsonl +│ ├── benchmark_simple_ks2en_200.stage1_eval.json +│ ├── kashmiri_benchmark_500_source_only.jsonl +│ ├── kashmiri_benchmark_500_stage1_safe_pred.jsonl +│ ├── kashmiri_benchmark_500_stage1_safe_pred.summary.json +│ ├── kashmiri_benchmark_500_stage1_safe_pred.xlsx +│ └── kashmiri_benchmark_500_stage1_safe_pred.summary.xlsx +└── notebooks/ + └── colab_load_stage1_model.ipynb +``` + +--- + +## Limitations and Risks + +- **Decoding sensitivity.** Output quality degrades sharply under sampling or loose repetition controls. Use the recommended deterministic settings. +- **Length bias.** The model was trained on sentence-level pairs (≤ 512 tokens). Long-form translation is not supported. +- **Internal eval is not generalization.** The 100/100 BLEU/chrF figure is a fixture, not a quality claim. +- **Benchmark noise.** Reported BLEU/chrF on `benchmark_simple_ks2en_200` is depressed by reference noise; treat as indicative only. +- **Domain coverage.** The training distribution skews toward general / literary Kashmiri; performance on technical, legal, or dialectal inputs is unverified. +- **Artifacts.** Earlier decoding configurations occasionally produced quote-tail or continuation artifacts; the shipped `generation_config.json` mitigates but does not eliminate these. +- **Low-resource caveat.** Kashmiri remains a low-resource language; reference quality, orthographic normalization, and dialectal coverage are open problems that bound any model trained on currently-available data. + +--- + +## Citation + +If you use this model, please cite: + +```bibtex +@misc{malik2026koshurkouter, + title = {Koshur Kouter KS-EN v1: A Merged QLoRA Kashmiri--English Translation Model}, + author = {Malik, Haq Nawaz and Nissar, Nahfid}, + year = {2026}, + howpublished = {\url{https://huggingface.co/Omarrran/koshur-kouter-ks-en_v1}}, + note = {Fine-tuned from sarvamai/sarvam-translate} +} +``` + +Please also cite the base model: + +```bibtex +@misc{sarvam2025translate, + title = {Sarvam-Translate}, + author = {{Sarvam AI}}, + howpublished = {\url{https://huggingface.co/sarvamai/sarvam-translate}} +} +``` + +--- + +## Acknowledgements + +Built on top of `sarvamai/sarvam-translate`. Training and evaluation infrastructure run on Colab and Modal. Thanks to the broader Kashmiri NLP community whose data and tooling made this work possible. + +--- + +## Contact + +- **Hugging Face:** [@Omarrran](https://huggingface.co/Omarrran) · [@nafiboi](https://huggingface.co/nafiboi) +- **Issues / feedback:** open a discussion on the model repository. \ No newline at end of file diff --git a/added_tokens.json b/added_tokens.json new file mode 100644 index 0000000..e17bde0 --- /dev/null +++ b/added_tokens.json @@ -0,0 +1,3 @@ +{ + "": 262144 +} diff --git a/artifacts/README.md b/artifacts/README.md new file mode 100644 index 0000000..0ad1a6e --- /dev/null +++ b/artifacts/README.md @@ -0,0 +1,10 @@ +# Stage 1 artifacts + +This directory contains the Stage 1 training and evaluation artifacts used to document the published full merged model. + +Files: +- `config.json` — training configuration snapshot +- `stage1_summary.json` — high-level summary (`total_hours`, `peak_vram_gb`, `total_steps`) +- `stage1_eval.json` — internal Stage 1 evaluation summary and sample predictions +- `stage1_training_log.jsonl` — stepwise training log +- `stage1_metrics_summary.json` — derived summary metrics used for the model card plots diff --git a/artifacts/config.json b/artifacts/config.json new file mode 100644 index 0000000..df87ad6 --- /dev/null +++ b/artifacts/config.json @@ -0,0 +1,39 @@ +{ + "model_id": "sarvamai/sarvam-translate", + "max_seq_length": 512, + "batch_size": 32, + "grad_accum": 1, + "use_bf16": true, + "s1_lora_r": 32, + "s1_lora_alpha": 64, + "s1_lora_dropout": 0.05, + "s1_lr": 0.0002, + "s1_epochs": 2, + "s1_warmup_ratio": 0.03, + "s2_lora_r": 16, + "s2_lora_alpha": 32, + "s2_lora_dropout": 0.05, + "s2_lr": 5e-05, + "s2_epochs": 3, + "s2_warmup_ratio": 0.05, + "save_steps": 250, + "eval_steps": 250, + "logging_steps": 10, + "lr_scheduler": "cosine", + "optimizer": "paged_adamw_8bit", + "weight_decay": 0.01, + "max_grad_norm": 1.0, + "lora_targets": [ + "q_proj", + "k_proj", + "v_proj", + "o_proj", + "gate_proj", + "up_proj", + "down_proj" + ], + "modules_to_save": [ + "lm_head", + "embed_tokens" + ] +} \ No newline at end of file diff --git a/artifacts/stage1_eval.json b/artifacts/stage1_eval.json new file mode 100644 index 0000000..5b734d5 --- /dev/null +++ b/artifacts/stage1_eval.json @@ -0,0 +1,161 @@ +{ + "stage": 1, + "bleu": 100.00000000000004, + "chrf": 100.0, + "samples": 200, + "sample_predictions": [ + { + "src": "Please translate this into French", + "ref": "مہربٲنی کٔرتھ کٔرو امیک فرانسیسی منٛز ترجمہٕ", + "pred": "مہربٲنی کٔرتھ کٔرو امیک فرانسیسی منٛز ترجمہٕ" + }, + { + "src": "Is their father a doctor", + "ref": "یُہنٛد مول چھا ڈاکٹر", + "pred": "تہنٛد مٲل چھا ڈاکٹر" + }, + { + "src": "Our plan has lots of additional advantages", + "ref": "سانہ منصوبس چھ واریاہ اضٲفی فائدٕ", + "pred": "سٲنؠن منصوٗبن چھ واریاہ اضٲفی فٲئدٕ" + }, + { + "src": "Shiela is putting on her clothes", + "ref": "شیلا چھےٚ پنٕنۍ پلو لاگان", + "pred": "شیلا چھ پنن پلو لاگان" + }, + { + "src": "He is either drunk or mad", + "ref": "سہ چھ یا تہ شرارتس منٛز یا پاگل", + "pred": "سہ چھ یا تہ شرارتس منٛز یا پاگل" + }, + { + "src": "The wedding cake didnt taste very good", + "ref": "خانٛدرٕ کس کیکس اوس نہٕ سؠٹھا مزٕ دار", + "pred": "خانٛدرٕ کس کیکس اوس نہٕ زیادٕ مزٕ دار" + }, + { + "src": "Did Tom seem busy", + "ref": "کیا ٹام اوس مصروف نظر یوان", + "pred": "کیا ٹام اوس مصروف نظر یوان" + }, + { + "src": "Tom needs to go to the hospital", + "ref": "ٹامس چھ ہسپتال گژھنٕچ ضرورت", + "pred": "ٹامس چھ ہسپتال گژھنٕچ ضرورت" + }, + { + "src": "But the night before last I overheard their conversation", + "ref": "مگر اوترٕ راتھ کُیٚتھ بوٗز مےٚ تِہنٛز کَتھ", + "pred": "مگر پٔتمہ رؠتہٕ برٛونٛہہ رؠتہٕ سمجن مےٚ تہنٛز کتھ باتھ" + }, + { + "src": "Return immediately", + "ref": "واپس فوری طور پر", + "pred": "فوری طور پر واپس جائیں" + }, + { + "src": "Tom often has nightmares", + "ref": "ٹامس چھ اکثر ڈراون خواب آسان", + "pred": "ٹامس چھ اکثر ڈراون خواب" + }, + { + "src": "I hate fluorescent lights", + "ref": "مےٚ چُھ فلوروسینٹ لایٹن نفرت", + "pred": "مےٚ چُھ فلوروسینٹ لایٹَن سٟتۍ نفرت" + }, + { + "src": "Mastering English is difficult", + "ref": "انگریزی زبان منٛز مہارت حأصل کرن چھ مشکل", + "pred": "انگریزی منٛز مہارت حأصل کرن چھ مشکل" + }, + { + "src": "I really do like you", + "ref": "بہٕ چُھس پٔزۍ پٲٹھۍ ژٕ پسند کران", + "pred": "بہٕ چُھس پٔزۍ پٲٹھۍ ژٕ پسند" + }, + { + "src": "He seems to be involved in that matter", + "ref": "یہٕ چھ ماننہٕ یوان ز سہ چھ اتھ معاملس منٛز ملوث", + "pred": "مانٛنہٕ چھ یوان ز سہ چھ اتھ معاملس منٛز شٲمل" + }, + { + "src": "Those are rings", + "ref": "ہُمہٕ چھےٚ واجہِ", + "pred": "یم چھ رنٛگ" + }, + { + "src": "Tom longed to see Mary again", + "ref": "ٹامس ٲس میریس دوبارٕ وچھنہٕ خٲطرٕ وۄچھان", + "pred": "ٹام اوس میریس بیٚیہ ؤچھنہٕ خٲطرٕ بے چین" + }, + { + "src": "She asked him to help her father clean the garage but he said that he was too busy to help", + "ref": "تٔمۍ ووٚن أمس پنٛنس مٲلس گیراج صاف کرنس منٛز مدد کرنہٕ خٲطرٕ مگر تٔمۍ ووٚن ز سہ چھ مدد کرنس منٛز واریاہ مصروف", + "pred": "أمۍ ووٚن أمس پننس مٲلس گیراج صاف کرنس منٛز مدد کرنہٕ خٲطرٕ مگر أمۍ ووٚن ز سہ چھ مدد کرنہٕ خٲطرٕ واریاہ مصروف" + }, + { + "src": "The thief made off with the womans handbag", + "ref": "چور گوٚو زنانہٕ سنٛد ہینڈ بیگ ہیتھ", + "pred": "چور اوس زنانہ ہنٛد ہینڈ بیگ تلتھ ژلان" + }, + { + "src": "Isnt it about time to go home", + "ref": "گھر گژھنک ٹایم چھا نہٕ کینٛہہ", + "pred": "کیا یہ چھ نہٕ گرٕ گژھنک وقت" + } + ], + "demo_en_to_ks": [ + { + "src": "The mountains of Kashmir are beautiful.", + "pred": "کشمیرٕکۍ پہاڑ چھ خوبصورت" + }, + { + "src": "He went to the market to buy vegetables.", + "pred": "سہ گوٚو بازرس منٛز سبزی کٕننہٕ خٲطرٕ" + }, + { + "src": "Please sit down and have some tea.", + "pred": "مہربٲنی کٔرتھ بیٹیو تہٕ چائے کھیو" + }, + { + "src": "Education is the most powerful weapon.", + "pred": "تعلیم چھ ساروی کھوتہٕ طاقتور ہتھیار" + }, + { + "src": "The children are playing in the garden.", + "pred": "شرۍ چھ باغس منٛز گنٛدان" + }, + { + "src": "She wrote a letter to her mother.", + "pred": "أمۍ لیوٗکھ پنٛنہ ماجہ اکھ چٹھہ" + }, + { + "src": "Winter in the valley is very cold.", + "pred": "وادی منٛز چھ ونٛد واریاہ سرد آسان" + }, + { + "src": "I love reading books in the evening.", + "pred": "مےٚ چھ شامس کتابہٕ پرن پسند" + } + ], + "demo_ks_to_en": [ + { + "src": "یہِ چھُ کاکُد", + "pred": "This is a cuckoo" + }, + { + "src": "کٔشیر چھُ اکھ خوبصورت جٲی", + "pred": "Kashmir is a very beautiful place" + }, + { + "src": "بۆ چُھس گرٕہ پٹھ یوان", + "pred": "I am coming home" + }, + { + "src": "سۆن وَطَن چُھ اَکھ خوبصورت مُلُک", + "pred": "Sun Valley is a beautiful country" + } + ], + "comparisons": [] +} \ No newline at end of file diff --git a/artifacts/stage1_metrics_summary.json b/artifacts/stage1_metrics_summary.json new file mode 100644 index 0000000..8b47142 --- /dev/null +++ b/artifacts/stage1_metrics_summary.json @@ -0,0 +1,19 @@ +{ + "train_steps_logged": 2010, + "eval_points_logged": 80, + "first_train_loss": 8.0698, + "last_train_loss": 0.5819, + "best_train_loss": 0.5632, + "last_token_accuracy": 0.8547659933567047, + "best_token_accuracy": 0.8557191073894501, + "first_eval_loss": 1.4610004425048828, + "best_eval_loss": 1.2010705471038818, + "last_eval_loss": 1.2293951511383057, + "peak_gpu_alloc_gb_from_logs": 12.88, + "peak_vram_gb_from_summary": 12.88361472, + "total_hours": 5.188692457411024, + "total_steps": 20060, + "internal_eval_bleu": 100.00000000000004, + "internal_eval_chrf": 100.0, + "internal_eval_samples": 200 +} \ No newline at end of file diff --git a/artifacts/stage1_summary.json b/artifacts/stage1_summary.json new file mode 100644 index 0000000..67c3f4d --- /dev/null +++ b/artifacts/stage1_summary.json @@ -0,0 +1,7 @@ +{ + "stage": 1, + "total_hours": 5.188692457411024, + "peak_vram_gb": 12.88361472, + "total_steps": 20060, + "final_loss": null +} \ No newline at end of file diff --git a/artifacts/stage1_training_log.jsonl b/artifacts/stage1_training_log.jsonl new file mode 100644 index 0000000..f39b050 --- /dev/null +++ b/artifacts/stage1_training_log.jsonl @@ -0,0 +1,2171 @@ +{"step": 10, "loss": 8.0698, "learning_rate": 3.322259136212625e-06, "grad_norm": 9.46580982208252, "token_acc": 0.21042284667491912, "gpu_alloc_gb": 10.13, "elapsed_s": 8.5, "epoch": 0.0009970089730807576} +{"step": 20, "loss": 7.658, "learning_rate": 6.64451827242525e-06, "grad_norm": 9.555191993713379, "token_acc": 0.22831477224826813, "gpu_alloc_gb": 10.13, "elapsed_s": 15.1, "epoch": 0.0019940179461615153} +{"step": 30, "loss": 7.2481, "learning_rate": 9.966777408637874e-06, "grad_norm": 9.23176383972168, "token_acc": 0.2315765544772148, "gpu_alloc_gb": 10.13, "elapsed_s": 21.5, "epoch": 0.0029910269192422734} +{"step": 40, "loss": 6.4728, "learning_rate": 1.32890365448505e-05, "grad_norm": 8.058981895446777, "token_acc": 0.2577431261539459, "gpu_alloc_gb": 10.13, "elapsed_s": 28.0, "epoch": 0.003988035892323031} +{"step": 50, "loss": 5.3528, "learning_rate": 1.6611295681063124e-05, "grad_norm": 25.191675186157227, "token_acc": 0.32228841781616213, "gpu_alloc_gb": 10.13, "elapsed_s": 34.3, "epoch": 0.004985044865403789} +{"step": 60, "loss": 4.1739, "learning_rate": 1.9933554817275747e-05, "grad_norm": 6.020596981048584, "token_acc": 0.3971978545188904, "gpu_alloc_gb": 10.13, "elapsed_s": 40.7, "epoch": 0.005982053838484547} +{"step": 70, "loss": 2.9516, "learning_rate": 2.3255813953488374e-05, "grad_norm": 5.543062686920166, "token_acc": 0.5175683081150055, "gpu_alloc_gb": 10.13, "elapsed_s": 47.1, "epoch": 0.006979062811565304} +{"step": 80, "loss": 1.8394, "learning_rate": 2.6578073089701e-05, "grad_norm": 3.3009121417999268, "token_acc": 0.6099971294403076, "gpu_alloc_gb": 10.13, "elapsed_s": 53.5, "epoch": 0.007976071784646061} +{"step": 90, "loss": 1.4716, "learning_rate": 2.9900332225913624e-05, "grad_norm": 2.3222343921661377, "token_acc": 0.6752448499202728, "gpu_alloc_gb": 10.13, "elapsed_s": 59.7, "epoch": 0.00897308075772682} +{"step": 100, "loss": 1.3631, "learning_rate": 3.322259136212625e-05, "grad_norm": 2.2071454524993896, "token_acc": 0.6958916008472442, "gpu_alloc_gb": 10.13, "elapsed_s": 66.0, "epoch": 0.009970089730807577} +{"step": 110, "loss": 1.3891, "learning_rate": 3.654485049833887e-05, "grad_norm": 2.189946413040161, "token_acc": 0.6942026793956757, "gpu_alloc_gb": 10.13, "elapsed_s": 72.4, "epoch": 0.010967098703888335} +{"step": 120, "loss": 1.2694, "learning_rate": 3.9867109634551495e-05, "grad_norm": 1.866609811782837, "token_acc": 0.7113977491855621, "gpu_alloc_gb": 10.13, "elapsed_s": 78.6, "epoch": 0.011964107676969093} +{"step": 130, "loss": 1.3194, "learning_rate": 4.3189368770764125e-05, "grad_norm": 2.215294361114502, "token_acc": 0.7020658910274505, "gpu_alloc_gb": 10.13, "elapsed_s": 85.0, "epoch": 0.01296111665004985} +{"step": 140, "loss": 1.2688, "learning_rate": 4.651162790697675e-05, "grad_norm": 1.8466953039169312, "token_acc": 0.7148169755935669, "gpu_alloc_gb": 10.13, "elapsed_s": 91.6, "epoch": 0.013958125623130608} +{"step": 150, "loss": 1.2207, "learning_rate": 4.983388704318937e-05, "grad_norm": 1.8378409147262573, "token_acc": 0.7183771669864655, "gpu_alloc_gb": 10.13, "elapsed_s": 98.0, "epoch": 0.014955134596211365} +{"step": 160, "loss": 1.2204, "learning_rate": 5.3156146179402e-05, "grad_norm": 1.7767733335494995, "token_acc": 0.7177432239055633, "gpu_alloc_gb": 10.13, "elapsed_s": 104.2, "epoch": 0.015952143569292122} +{"step": 170, "loss": 1.2247, "learning_rate": 5.6478405315614625e-05, "grad_norm": 1.821057915687561, "token_acc": 0.7176571965217591, "gpu_alloc_gb": 10.13, "elapsed_s": 110.4, "epoch": 0.01694915254237288} +{"step": 180, "loss": 1.277, "learning_rate": 5.980066445182725e-05, "grad_norm": 1.8527129888534546, "token_acc": 0.7091449975967408, "gpu_alloc_gb": 10.13, "elapsed_s": 116.8, "epoch": 0.01794616151545364} +{"step": 190, "loss": 1.2052, "learning_rate": 6.312292358803988e-05, "grad_norm": 1.8371437788009644, "token_acc": 0.724218225479126, "gpu_alloc_gb": 10.13, "elapsed_s": 123.1, "epoch": 0.018943170488534396} +{"step": 200, "loss": 1.1959, "learning_rate": 6.64451827242525e-05, "grad_norm": 1.606537103652954, "token_acc": 0.7237110793590545, "gpu_alloc_gb": 10.13, "elapsed_s": 129.6, "epoch": 0.019940179461615155} +{"step": 210, "loss": 1.2582, "learning_rate": 6.976744186046513e-05, "grad_norm": 1.9479594230651855, "token_acc": 0.7157412827014923, "gpu_alloc_gb": 10.13, "elapsed_s": 135.8, "epoch": 0.020937188434695914} +{"step": 220, "loss": 1.2156, "learning_rate": 7.308970099667774e-05, "grad_norm": 1.9595725536346436, "token_acc": 0.7209649622440338, "gpu_alloc_gb": 10.13, "elapsed_s": 142.4, "epoch": 0.02193419740777667} +{"step": 230, "loss": 1.1907, "learning_rate": 7.641196013289037e-05, "grad_norm": 1.8802863359451294, "token_acc": 0.7264571726322174, "gpu_alloc_gb": 10.13, "elapsed_s": 148.8, "epoch": 0.022931206380857428} +{"step": 240, "loss": 1.2146, "learning_rate": 7.973421926910299e-05, "grad_norm": 1.8776878118515015, "token_acc": 0.7214880168437958, "gpu_alloc_gb": 10.13, "elapsed_s": 155.3, "epoch": 0.023928215353938187} +{"step": 250, "loss": 1.1926, "learning_rate": 8.305647840531562e-05, "grad_norm": 1.9922552108764648, "token_acc": 0.7231174409389496, "gpu_alloc_gb": 10.13, "elapsed_s": 161.9, "epoch": 0.024925224327018942} +{"step": 250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 228.4, "epoch": 0.024925224327018942} +{"step": 250, "eval_loss": 1.4610004425048828, "eval_step": true} +{"step": 260, "loss": 1.2486, "learning_rate": 8.637873754152825e-05, "grad_norm": 1.7549281120300293, "token_acc": 0.717340224981308, "gpu_alloc_gb": 10.13, "elapsed_s": 275.2, "epoch": 0.0259222333000997} +{"step": 270, "loss": 1.1993, "learning_rate": 8.970099667774087e-05, "grad_norm": 2.015728235244751, "token_acc": 0.7252647459506989, "gpu_alloc_gb": 10.13, "elapsed_s": 281.7, "epoch": 0.026919242273180457} +{"step": 280, "loss": 1.2104, "learning_rate": 9.30232558139535e-05, "grad_norm": 1.5705828666687012, "token_acc": 0.7186503648757935, "gpu_alloc_gb": 10.13, "elapsed_s": 288.4, "epoch": 0.027916251246261216} +{"step": 290, "loss": 1.1873, "learning_rate": 9.634551495016611e-05, "grad_norm": 1.7159253358840942, "token_acc": 0.726800537109375, "gpu_alloc_gb": 10.13, "elapsed_s": 294.9, "epoch": 0.028913260219341975} +{"step": 300, "loss": 1.1852, "learning_rate": 9.966777408637874e-05, "grad_norm": 1.6213767528533936, "token_acc": 0.7234158217906952, "gpu_alloc_gb": 10.13, "elapsed_s": 301.6, "epoch": 0.02991026919242273} +{"step": 310, "loss": 1.1991, "learning_rate": 0.00010299003322259137, "grad_norm": 1.8780838251113892, "token_acc": 0.7205615878105164, "gpu_alloc_gb": 10.13, "elapsed_s": 308.2, "epoch": 0.03090727816550349} +{"step": 320, "loss": 1.1988, "learning_rate": 0.000106312292358804, "grad_norm": 1.5780259370803833, "token_acc": 0.7240072786808014, "gpu_alloc_gb": 10.13, "elapsed_s": 314.6, "epoch": 0.031904287138584245} +{"step": 330, "loss": 1.1328, "learning_rate": 0.00010963455149501662, "grad_norm": 1.5761191844940186, "token_acc": 0.7351341962814331, "gpu_alloc_gb": 10.13, "elapsed_s": 321.0, "epoch": 0.03290129611166501} +{"step": 340, "loss": 1.1258, "learning_rate": 0.00011295681063122925, "grad_norm": 1.7766693830490112, "token_acc": 0.7365319967269898, "gpu_alloc_gb": 10.13, "elapsed_s": 327.3, "epoch": 0.03389830508474576} +{"step": 350, "loss": 1.1349, "learning_rate": 0.00011627906976744187, "grad_norm": 1.7407512664794922, "token_acc": 0.7326518177986145, "gpu_alloc_gb": 10.13, "elapsed_s": 333.6, "epoch": 0.03489531405782652} +{"step": 360, "loss": 1.1995, "learning_rate": 0.0001196013289036545, "grad_norm": 1.7200978994369507, "token_acc": 0.7252364575862884, "gpu_alloc_gb": 10.13, "elapsed_s": 340.2, "epoch": 0.03589232303090728} +{"step": 370, "loss": 1.1415, "learning_rate": 0.00012292358803986711, "grad_norm": 1.7534373998641968, "token_acc": 0.7328682959079742, "gpu_alloc_gb": 10.13, "elapsed_s": 346.6, "epoch": 0.036889332003988036} +{"step": 380, "loss": 1.1437, "learning_rate": 0.00012624584717607976, "grad_norm": 1.6565196514129639, "token_acc": 0.7349987626075745, "gpu_alloc_gb": 10.13, "elapsed_s": 353.2, "epoch": 0.03788634097706879} +{"step": 390, "loss": 1.1837, "learning_rate": 0.00012956810631229237, "grad_norm": 1.6560602188110352, "token_acc": 0.7246084451675415, "gpu_alloc_gb": 10.13, "elapsed_s": 359.8, "epoch": 0.038883349950149554} +{"step": 400, "loss": 1.1534, "learning_rate": 0.000132890365448505, "grad_norm": 1.5585402250289917, "token_acc": 0.7322696566581726, "gpu_alloc_gb": 10.13, "elapsed_s": 366.3, "epoch": 0.03988035892323031} +{"step": 410, "loss": 1.1432, "learning_rate": 0.0001362126245847176, "grad_norm": 1.990002155303955, "token_acc": 0.7371092557907104, "gpu_alloc_gb": 10.13, "elapsed_s": 372.8, "epoch": 0.040877367896311065} +{"step": 420, "loss": 1.1244, "learning_rate": 0.00013953488372093025, "grad_norm": 1.5192941427230835, "token_acc": 0.7345869183540344, "gpu_alloc_gb": 10.13, "elapsed_s": 379.1, "epoch": 0.04187437686939183} +{"step": 430, "loss": 1.1933, "learning_rate": 0.00014285714285714287, "grad_norm": 1.5899674892425537, "token_acc": 0.7213375270366669, "gpu_alloc_gb": 10.13, "elapsed_s": 385.7, "epoch": 0.04287138584247258} +{"step": 440, "loss": 1.1201, "learning_rate": 0.00014617940199335548, "grad_norm": 1.487918496131897, "token_acc": 0.7357377171516418, "gpu_alloc_gb": 10.13, "elapsed_s": 392.1, "epoch": 0.04386839481555334} +{"step": 450, "loss": 1.1401, "learning_rate": 0.00014950166112956813, "grad_norm": 1.504624366760254, "token_acc": 0.7285640001296997, "gpu_alloc_gb": 10.13, "elapsed_s": 398.6, "epoch": 0.0448654037886341} +{"step": 460, "loss": 1.1283, "learning_rate": 0.00015282392026578074, "grad_norm": 1.3451913595199585, "token_acc": 0.7355675220489502, "gpu_alloc_gb": 10.13, "elapsed_s": 405.0, "epoch": 0.045862412761714856} +{"step": 470, "loss": 1.1312, "learning_rate": 0.00015614617940199336, "grad_norm": 1.5596097707748413, "token_acc": 0.7358750581741333, "gpu_alloc_gb": 10.13, "elapsed_s": 411.3, "epoch": 0.04685942173479561} +{"step": 480, "loss": 1.1728, "learning_rate": 0.00015946843853820598, "grad_norm": 1.5197086334228516, "token_acc": 0.728451007604599, "gpu_alloc_gb": 10.13, "elapsed_s": 417.8, "epoch": 0.047856430707876374} +{"step": 490, "loss": 1.0763, "learning_rate": 0.00016279069767441862, "grad_norm": 1.2610174417495728, "token_acc": 0.7436761617660522, "gpu_alloc_gb": 10.13, "elapsed_s": 424.3, "epoch": 0.04885343968095713} +{"step": 500, "loss": 1.1785, "learning_rate": 0.00016611295681063124, "grad_norm": 1.5648504495620728, "token_acc": 0.7291127264499664, "gpu_alloc_gb": 10.13, "elapsed_s": 430.7, "epoch": 0.049850448654037885} +{"step": 500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 496.4, "epoch": 0.049850448654037885} +{"step": 500, "eval_loss": 1.415954828262329, "eval_step": true} +{"step": 510, "loss": 1.1148, "learning_rate": 0.00016943521594684386, "grad_norm": 1.5097469091415405, "token_acc": 0.7393072783946991, "gpu_alloc_gb": 10.13, "elapsed_s": 545.4, "epoch": 0.05084745762711865} +{"step": 520, "loss": 1.1003, "learning_rate": 0.0001727574750830565, "grad_norm": 1.4324849843978882, "token_acc": 0.7401656806468964, "gpu_alloc_gb": 10.13, "elapsed_s": 551.9, "epoch": 0.0518444666001994} +{"step": 530, "loss": 1.1288, "learning_rate": 0.00017607973421926912, "grad_norm": 1.465628981590271, "token_acc": 0.735613226890564, "gpu_alloc_gb": 10.13, "elapsed_s": 558.3, "epoch": 0.05284147557328016} +{"step": 540, "loss": 1.165, "learning_rate": 0.00017940199335548173, "grad_norm": 1.5184762477874756, "token_acc": 0.7279387891292572, "gpu_alloc_gb": 10.13, "elapsed_s": 564.7, "epoch": 0.053838484546360914} +{"step": 550, "loss": 1.0996, "learning_rate": 0.00018272425249169435, "grad_norm": 1.3603603839874268, "token_acc": 0.7407002151012421, "gpu_alloc_gb": 10.13, "elapsed_s": 571.0, "epoch": 0.054835493519441676} +{"step": 560, "loss": 1.127, "learning_rate": 0.000186046511627907, "grad_norm": 1.4814149141311646, "token_acc": 0.7373980045318603, "gpu_alloc_gb": 10.13, "elapsed_s": 577.6, "epoch": 0.05583250249252243} +{"step": 570, "loss": 1.1077, "learning_rate": 0.0001893687707641196, "grad_norm": 1.6288820505142212, "token_acc": 0.7405263304710388, "gpu_alloc_gb": 10.13, "elapsed_s": 584.2, "epoch": 0.05682951146560319} +{"step": 580, "loss": 1.173, "learning_rate": 0.00019269102990033223, "grad_norm": 1.5314785242080688, "token_acc": 0.7274523377418518, "gpu_alloc_gb": 10.13, "elapsed_s": 590.6, "epoch": 0.05782652043868395} +{"step": 590, "loss": 1.1087, "learning_rate": 0.00019601328903654484, "grad_norm": 1.458659291267395, "token_acc": 0.7380368411540985, "gpu_alloc_gb": 10.13, "elapsed_s": 597.1, "epoch": 0.058823529411764705} +{"step": 600, "loss": 1.1254, "learning_rate": 0.00019933554817275749, "grad_norm": 1.2254860401153564, "token_acc": 0.7333885788917541, "gpu_alloc_gb": 10.13, "elapsed_s": 603.5, "epoch": 0.05982053838484546} +{"step": 610, "loss": 1.1559, "learning_rate": 0.00019999991658325002, "grad_norm": 1.800633430480957, "token_acc": 0.7286465466022491, "gpu_alloc_gb": 10.13, "elapsed_s": 610.0, "epoch": 0.06081754735792622} +{"step": 620, "loss": 1.1544, "learning_rate": 0.0001999995777029417, "grad_norm": 1.3991957902908325, "token_acc": 0.7315087437629699, "gpu_alloc_gb": 10.13, "elapsed_s": 616.1, "epoch": 0.06181455633100698} +{"step": 630, "loss": 1.156, "learning_rate": 0.00019999897814641093, "grad_norm": 1.3515310287475586, "token_acc": 0.7283376216888428, "gpu_alloc_gb": 10.13, "elapsed_s": 622.6, "epoch": 0.06281156530408774} +{"step": 640, "loss": 1.1399, "learning_rate": 0.00019999811791522056, "grad_norm": 1.4098107814788818, "token_acc": 0.734329205751419, "gpu_alloc_gb": 10.13, "elapsed_s": 628.7, "epoch": 0.06380857427716849} +{"step": 650, "loss": 1.0892, "learning_rate": 0.00019999699701161305, "grad_norm": 1.3956125974655151, "token_acc": 0.739745146036148, "gpu_alloc_gb": 10.13, "elapsed_s": 635.3, "epoch": 0.06480558325024925} +{"step": 660, "loss": 1.1839, "learning_rate": 0.00019999561543851033, "grad_norm": 1.4054049253463745, "token_acc": 0.7257741749286651, "gpu_alloc_gb": 10.13, "elapsed_s": 641.9, "epoch": 0.06580259222333001} +{"step": 670, "loss": 1.209, "learning_rate": 0.00019999397319951382, "grad_norm": 1.3258178234100342, "token_acc": 0.7217317044734954, "gpu_alloc_gb": 10.13, "elapsed_s": 648.5, "epoch": 0.06679960119641076} +{"step": 680, "loss": 1.1461, "learning_rate": 0.00019999207029890455, "grad_norm": 1.3911340236663818, "token_acc": 0.7290766716003418, "gpu_alloc_gb": 10.13, "elapsed_s": 655.1, "epoch": 0.06779661016949153} +{"step": 690, "loss": 1.1343, "learning_rate": 0.00019998990674164287, "grad_norm": 1.4611107110977173, "token_acc": 0.7359664857387542, "gpu_alloc_gb": 10.13, "elapsed_s": 661.6, "epoch": 0.06879361914257229} +{"step": 700, "loss": 1.1745, "learning_rate": 0.0001999874825333687, "grad_norm": 1.272727131843567, "token_acc": 0.7315329194068909, "gpu_alloc_gb": 10.13, "elapsed_s": 667.8, "epoch": 0.06979062811565304} +{"step": 710, "loss": 1.0885, "learning_rate": 0.0001999847976804014, "grad_norm": 1.3592551946640015, "token_acc": 0.7415690898895264, "gpu_alloc_gb": 10.13, "elapsed_s": 674.5, "epoch": 0.0707876370887338} +{"step": 720, "loss": 1.1243, "learning_rate": 0.00019998185218973976, "grad_norm": 1.2920244932174683, "token_acc": 0.7393142640590668, "gpu_alloc_gb": 10.13, "elapsed_s": 680.6, "epoch": 0.07178464606181456} +{"step": 730, "loss": 1.1278, "learning_rate": 0.00019997864606906206, "grad_norm": 1.2772618532180786, "token_acc": 0.7347874522209168, "gpu_alloc_gb": 10.13, "elapsed_s": 686.9, "epoch": 0.07278165503489531} +{"step": 740, "loss": 1.1531, "learning_rate": 0.0001999751793267259, "grad_norm": 1.3536088466644287, "token_acc": 0.7303429067134857, "gpu_alloc_gb": 10.13, "elapsed_s": 693.2, "epoch": 0.07377866400797607} +{"step": 750, "loss": 1.1206, "learning_rate": 0.0001999714519717683, "grad_norm": 1.4627819061279297, "token_acc": 0.7382473528385163, "gpu_alloc_gb": 10.13, "elapsed_s": 699.7, "epoch": 0.07477567298105683} +{"step": 750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 765.6, "epoch": 0.07477567298105683} +{"step": 750, "eval_loss": 1.4107069969177246, "eval_step": true} +{"step": 760, "loss": 1.1072, "learning_rate": 0.0001999674640139056, "grad_norm": 1.3645250797271729, "token_acc": 0.7358436405658721, "gpu_alloc_gb": 10.13, "elapsed_s": 816.8, "epoch": 0.07577268195413758} +{"step": 770, "loss": 1.1227, "learning_rate": 0.0001999632154635335, "grad_norm": 1.3036105632781982, "token_acc": 0.7363659262657165, "gpu_alloc_gb": 10.13, "elapsed_s": 823.4, "epoch": 0.07676969092721835} +{"step": 780, "loss": 1.144, "learning_rate": 0.00019995870633172707, "grad_norm": 1.4418121576309204, "token_acc": 0.733782821893692, "gpu_alloc_gb": 10.13, "elapsed_s": 829.8, "epoch": 0.07776669990029911} +{"step": 790, "loss": 1.14, "learning_rate": 0.00019995393663024054, "grad_norm": 1.3214845657348633, "token_acc": 0.7343164503574371, "gpu_alloc_gb": 10.13, "elapsed_s": 836.4, "epoch": 0.07876370887337986} +{"step": 800, "loss": 1.1071, "learning_rate": 0.00019994890637150742, "grad_norm": 1.3267379999160767, "token_acc": 0.7394425690174102, "gpu_alloc_gb": 10.13, "elapsed_s": 842.9, "epoch": 0.07976071784646062} +{"step": 810, "loss": 1.1363, "learning_rate": 0.0001999436155686405, "grad_norm": 1.268235683441162, "token_acc": 0.7343092441558838, "gpu_alloc_gb": 10.13, "elapsed_s": 849.5, "epoch": 0.08075772681954138} +{"step": 820, "loss": 1.1324, "learning_rate": 0.00019993806423543168, "grad_norm": 1.3042731285095215, "token_acc": 0.7343363106250763, "gpu_alloc_gb": 10.13, "elapsed_s": 856.2, "epoch": 0.08175473579262213} +{"step": 830, "loss": 1.1142, "learning_rate": 0.00019993225238635205, "grad_norm": 1.2574703693389893, "token_acc": 0.7388254582881928, "gpu_alloc_gb": 10.13, "elapsed_s": 862.7, "epoch": 0.08275174476570289} +{"step": 840, "loss": 1.1153, "learning_rate": 0.00019992618003655176, "grad_norm": 1.3949404954910278, "token_acc": 0.73681920170784, "gpu_alloc_gb": 10.13, "elapsed_s": 869.3, "epoch": 0.08374875373878365} +{"step": 850, "loss": 1.1453, "learning_rate": 0.00019991984720186005, "grad_norm": 1.2114235162734985, "token_acc": 0.7315539240837097, "gpu_alloc_gb": 10.13, "elapsed_s": 875.8, "epoch": 0.0847457627118644} +{"step": 860, "loss": 1.0927, "learning_rate": 0.0001999132538987852, "grad_norm": 1.3027485609054565, "token_acc": 0.7383873105049134, "gpu_alloc_gb": 10.13, "elapsed_s": 882.7, "epoch": 0.08574277168494517} +{"step": 870, "loss": 1.0403, "learning_rate": 0.00019990640014451447, "grad_norm": 1.2279975414276123, "token_acc": 0.7521632492542267, "gpu_alloc_gb": 10.13, "elapsed_s": 889.1, "epoch": 0.08673978065802593} +{"step": 880, "loss": 1.1079, "learning_rate": 0.00019989928595691398, "grad_norm": 1.342581868171692, "token_acc": 0.7409897923469544, "gpu_alloc_gb": 10.13, "elapsed_s": 895.6, "epoch": 0.08773678963110668} +{"step": 890, "loss": 1.0983, "learning_rate": 0.00019989191135452887, "grad_norm": 1.1387795209884644, "token_acc": 0.7425028264522553, "gpu_alloc_gb": 10.13, "elapsed_s": 901.9, "epoch": 0.08873379860418744} +{"step": 900, "loss": 1.1016, "learning_rate": 0.00019988427635658302, "grad_norm": 1.3100792169570923, "token_acc": 0.7397076308727264, "gpu_alloc_gb": 10.13, "elapsed_s": 908.4, "epoch": 0.0897308075772682} +{"step": 910, "loss": 1.1397, "learning_rate": 0.00019987638098297914, "grad_norm": 1.614213466644287, "token_acc": 0.7396628201007843, "gpu_alloc_gb": 10.13, "elapsed_s": 914.8, "epoch": 0.09072781655034895} +{"step": 920, "loss": 1.1412, "learning_rate": 0.00019986822525429868, "grad_norm": 1.2869293689727783, "token_acc": 0.7327174961566925, "gpu_alloc_gb": 10.13, "elapsed_s": 921.2, "epoch": 0.09172482552342971} +{"step": 930, "loss": 1.1874, "learning_rate": 0.0001998598091918018, "grad_norm": 1.3289892673492432, "token_acc": 0.7289913892745972, "gpu_alloc_gb": 10.13, "elapsed_s": 927.7, "epoch": 0.09272183449651047} +{"step": 940, "loss": 1.1126, "learning_rate": 0.00019985113281742724, "grad_norm": 1.236868977546692, "token_acc": 0.7394167363643647, "gpu_alloc_gb": 10.13, "elapsed_s": 933.9, "epoch": 0.09371884346959122} +{"step": 950, "loss": 1.1912, "learning_rate": 0.00019984219615379236, "grad_norm": 1.2827118635177612, "token_acc": 0.726359075307846, "gpu_alloc_gb": 10.13, "elapsed_s": 940.7, "epoch": 0.09471585244267199} +{"step": 960, "loss": 1.0751, "learning_rate": 0.00019983299922419302, "grad_norm": 1.3858115673065186, "token_acc": 0.7448092222213745, "gpu_alloc_gb": 10.13, "elapsed_s": 947.4, "epoch": 0.09571286141575275} +{"step": 970, "loss": 1.1105, "learning_rate": 0.00019982354205260347, "grad_norm": 1.156567931175232, "token_acc": 0.7430779755115509, "gpu_alloc_gb": 10.13, "elapsed_s": 954.0, "epoch": 0.0967098703888335} +{"step": 980, "loss": 1.1578, "learning_rate": 0.00019981382466367645, "grad_norm": 1.2935036420822144, "token_acc": 0.7312661349773407, "gpu_alloc_gb": 10.13, "elapsed_s": 960.4, "epoch": 0.09770687936191426} +{"step": 990, "loss": 1.1106, "learning_rate": 0.00019980384708274303, "grad_norm": 1.2106730937957764, "token_acc": 0.7399714350700378, "gpu_alloc_gb": 10.13, "elapsed_s": 967.0, "epoch": 0.09870388833499502} +{"step": 1000, "loss": 1.1132, "learning_rate": 0.00019979360933581247, "grad_norm": 1.4632420539855957, "token_acc": 0.7385394394397735, "gpu_alloc_gb": 10.13, "elapsed_s": 973.4, "epoch": 0.09970089730807577} +{"step": 1000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 1039.1, "epoch": 0.09970089730807577} +{"step": 1000, "eval_loss": 1.390550971031189, "eval_step": true} +{"step": 1010, "loss": 1.1381, "learning_rate": 0.0001997831114495722, "grad_norm": 1.2904680967330933, "token_acc": 0.7334746658802033, "gpu_alloc_gb": 10.13, "elapsed_s": 1087.5, "epoch": 0.10069790628115653} +{"step": 1020, "loss": 1.0836, "learning_rate": 0.00019977235345138792, "grad_norm": 1.2233566045761108, "token_acc": 0.7450267016887665, "gpu_alloc_gb": 10.13, "elapsed_s": 1093.9, "epoch": 0.1016949152542373} +{"step": 1030, "loss": 1.0944, "learning_rate": 0.00019976133536930325, "grad_norm": 1.19765305519104, "token_acc": 0.7418350756168366, "gpu_alloc_gb": 10.13, "elapsed_s": 1100.4, "epoch": 0.10269192422731804} +{"step": 1040, "loss": 1.0638, "learning_rate": 0.00019975005723203983, "grad_norm": 1.259864091873169, "token_acc": 0.7494536161422729, "gpu_alloc_gb": 10.13, "elapsed_s": 1107.0, "epoch": 0.1036889332003988} +{"step": 1050, "loss": 1.038, "learning_rate": 0.0001997385190689972, "grad_norm": 1.224252462387085, "token_acc": 0.7493739426136017, "gpu_alloc_gb": 10.13, "elapsed_s": 1113.2, "epoch": 0.10468594217347957} +{"step": 1060, "loss": 1.0938, "learning_rate": 0.00019972672091025278, "grad_norm": 1.2857214212417603, "token_acc": 0.7374264299869537, "gpu_alloc_gb": 10.13, "elapsed_s": 1119.8, "epoch": 0.10568295114656032} +{"step": 1070, "loss": 1.102, "learning_rate": 0.00019971466278656162, "grad_norm": 1.3124257326126099, "token_acc": 0.7401433467864991, "gpu_alloc_gb": 10.13, "elapsed_s": 1126.5, "epoch": 0.10667996011964108} +{"step": 1080, "loss": 1.0853, "learning_rate": 0.00019970234472935653, "grad_norm": 1.2284306287765503, "token_acc": 0.7426680624485016, "gpu_alloc_gb": 10.13, "elapsed_s": 1132.9, "epoch": 0.10767696909272183} +{"step": 1090, "loss": 1.0705, "learning_rate": 0.000199689766770748, "grad_norm": 1.2175970077514648, "token_acc": 0.7479879915714264, "gpu_alloc_gb": 10.13, "elapsed_s": 1139.2, "epoch": 0.10867397806580259} +{"step": 1100, "loss": 1.0832, "learning_rate": 0.00019967692894352372, "grad_norm": 1.168682336807251, "token_acc": 0.7420176148414612, "gpu_alloc_gb": 10.13, "elapsed_s": 1145.8, "epoch": 0.10967098703888335} +{"step": 1110, "loss": 1.0794, "learning_rate": 0.00019966383128114918, "grad_norm": 1.31202232837677, "token_acc": 0.7431760549545288, "gpu_alloc_gb": 10.13, "elapsed_s": 1152.2, "epoch": 0.1106679960119641} +{"step": 1120, "loss": 1.0486, "learning_rate": 0.00019965047381776692, "grad_norm": 1.1516320705413818, "token_acc": 0.7544972062110901, "gpu_alloc_gb": 10.13, "elapsed_s": 1158.6, "epoch": 0.11166500498504486} +{"step": 1130, "loss": 1.0583, "learning_rate": 0.00019963685658819683, "grad_norm": 1.2703033685684204, "token_acc": 0.7483286142349244, "gpu_alloc_gb": 10.13, "elapsed_s": 1165.1, "epoch": 0.11266201395812563} +{"step": 1140, "loss": 1.0918, "learning_rate": 0.00019962297962793595, "grad_norm": 1.2077242136001587, "token_acc": 0.7405943155288697, "gpu_alloc_gb": 10.13, "elapsed_s": 1171.7, "epoch": 0.11365902293120637} +{"step": 1150, "loss": 1.0486, "learning_rate": 0.00019960884297315836, "grad_norm": 1.3572601079940796, "token_acc": 0.7504651844501495, "gpu_alloc_gb": 10.13, "elapsed_s": 1178.0, "epoch": 0.11465603190428714} +{"step": 1160, "loss": 1.1137, "learning_rate": 0.00019959444666071513, "grad_norm": 1.2967289686203003, "token_acc": 0.740147864818573, "gpu_alloc_gb": 10.13, "elapsed_s": 1184.5, "epoch": 0.1156530408773679} +{"step": 1170, "loss": 1.0805, "learning_rate": 0.00019957979072813417, "grad_norm": 1.0436272621154785, "token_acc": 0.7468258917331696, "gpu_alloc_gb": 10.13, "elapsed_s": 1191.0, "epoch": 0.11665004985044865} +{"step": 1180, "loss": 1.0965, "learning_rate": 0.00019956487521362014, "grad_norm": 1.2922296524047852, "token_acc": 0.7414619028568268, "gpu_alloc_gb": 10.13, "elapsed_s": 1197.3, "epoch": 0.11764705882352941} +{"step": 1190, "loss": 1.0839, "learning_rate": 0.0001995497001560545, "grad_norm": 1.1687642335891724, "token_acc": 0.7427840948104858, "gpu_alloc_gb": 10.13, "elapsed_s": 1204.0, "epoch": 0.11864406779661017} +{"step": 1200, "loss": 1.0981, "learning_rate": 0.0001995342655949951, "grad_norm": 1.1735583543777466, "token_acc": 0.7437550544738769, "gpu_alloc_gb": 10.13, "elapsed_s": 1210.5, "epoch": 0.11964107676969092} +{"step": 1210, "loss": 1.0686, "learning_rate": 0.00019951857157067635, "grad_norm": 1.0717689990997314, "token_acc": 0.745136296749115, "gpu_alloc_gb": 10.13, "elapsed_s": 1216.8, "epoch": 0.12063808574277168} +{"step": 1220, "loss": 1.0738, "learning_rate": 0.00019950261812400904, "grad_norm": 1.2868237495422363, "token_acc": 0.7450600087642669, "gpu_alloc_gb": 10.13, "elapsed_s": 1223.4, "epoch": 0.12163509471585245} +{"step": 1230, "loss": 1.1203, "learning_rate": 0.00019948640529658015, "grad_norm": 1.2103979587554932, "token_acc": 0.7348860025405883, "gpu_alloc_gb": 10.13, "elapsed_s": 1229.8, "epoch": 0.1226321036889332} +{"step": 1240, "loss": 1.0546, "learning_rate": 0.00019946993313065288, "grad_norm": 1.2260814905166626, "token_acc": 0.7526019036769866, "gpu_alloc_gb": 10.13, "elapsed_s": 1236.1, "epoch": 0.12362911266201396} +{"step": 1250, "loss": 1.1328, "learning_rate": 0.0001994532016691664, "grad_norm": 1.275570273399353, "token_acc": 0.7374701201915741, "gpu_alloc_gb": 10.13, "elapsed_s": 1242.7, "epoch": 0.12462612163509472} +{"step": 1250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 1308.4, "epoch": 0.12462612163509472} +{"step": 1250, "eval_loss": 1.3823003768920898, "eval_step": true} +{"step": 1260, "loss": 1.099, "learning_rate": 0.00019943621095573586, "grad_norm": 1.170702338218689, "token_acc": 0.7444164395332337, "gpu_alloc_gb": 10.13, "elapsed_s": 1360.3, "epoch": 0.12562313060817548} +{"step": 1270, "loss": 1.1012, "learning_rate": 0.00019941896103465223, "grad_norm": 1.1778290271759033, "token_acc": 0.7447883188724518, "gpu_alloc_gb": 10.13, "elapsed_s": 1366.7, "epoch": 0.12662013958125623} +{"step": 1280, "loss": 1.0571, "learning_rate": 0.00019940145195088206, "grad_norm": 1.3770339488983154, "token_acc": 0.7470934450626373, "gpu_alloc_gb": 10.13, "elapsed_s": 1373.0, "epoch": 0.12761714855433698} +{"step": 1290, "loss": 1.0944, "learning_rate": 0.00019938368375006763, "grad_norm": 1.1743710041046143, "token_acc": 0.7419544100761414, "gpu_alloc_gb": 10.13, "elapsed_s": 1379.4, "epoch": 0.12861415752741776} +{"step": 1300, "loss": 1.0931, "learning_rate": 0.00019936565647852655, "grad_norm": 1.3185242414474487, "token_acc": 0.7460799932479858, "gpu_alloc_gb": 10.13, "elapsed_s": 1385.9, "epoch": 0.1296111665004985} +{"step": 1310, "loss": 1.0894, "learning_rate": 0.00019934737018325192, "grad_norm": 1.1112855672836304, "token_acc": 0.7406203210353851, "gpu_alloc_gb": 10.13, "elapsed_s": 1392.6, "epoch": 0.13060817547357925} +{"step": 1320, "loss": 1.0739, "learning_rate": 0.00019932882491191184, "grad_norm": 1.4948073625564575, "token_acc": 0.7511774957180023, "gpu_alloc_gb": 10.13, "elapsed_s": 1399.2, "epoch": 0.13160518444666003} +{"step": 1330, "loss": 1.0831, "learning_rate": 0.00019931002071284977, "grad_norm": 1.194326400756836, "token_acc": 0.7479390382766724, "gpu_alloc_gb": 10.13, "elapsed_s": 1405.8, "epoch": 0.13260219341974078} +{"step": 1340, "loss": 1.1198, "learning_rate": 0.00019929095763508389, "grad_norm": 1.1706362962722778, "token_acc": 0.738584452867508, "gpu_alloc_gb": 10.13, "elapsed_s": 1412.6, "epoch": 0.13359920239282153} +{"step": 1350, "loss": 1.0855, "learning_rate": 0.00019927163572830731, "grad_norm": 1.077292561531067, "token_acc": 0.743792587518692, "gpu_alloc_gb": 10.13, "elapsed_s": 1419.2, "epoch": 0.1345962113659023} +{"step": 1360, "loss": 1.1157, "learning_rate": 0.00019925205504288794, "grad_norm": 1.270339846611023, "token_acc": 0.7385001838207245, "gpu_alloc_gb": 10.13, "elapsed_s": 1425.8, "epoch": 0.13559322033898305} +{"step": 1370, "loss": 1.0301, "learning_rate": 0.00019923221562986813, "grad_norm": 1.17844820022583, "token_acc": 0.75355144739151, "gpu_alloc_gb": 10.13, "elapsed_s": 1432.6, "epoch": 0.1365902293120638} +{"step": 1380, "loss": 1.0303, "learning_rate": 0.00019921211754096477, "grad_norm": 1.1186970472335815, "token_acc": 0.7576774537563324, "gpu_alloc_gb": 10.13, "elapsed_s": 1439.2, "epoch": 0.13758723828514458} +{"step": 1390, "loss": 1.0518, "learning_rate": 0.000199191760828569, "grad_norm": 1.1223702430725098, "token_acc": 0.7494312167167664, "gpu_alloc_gb": 10.13, "elapsed_s": 1445.7, "epoch": 0.13858424725822532} +{"step": 1400, "loss": 1.0745, "learning_rate": 0.00019917114554574613, "grad_norm": 1.0615721940994263, "token_acc": 0.7483350396156311, "gpu_alloc_gb": 10.13, "elapsed_s": 1452.1, "epoch": 0.13958125623130607} +{"step": 1410, "loss": 1.0509, "learning_rate": 0.00019915027174623553, "grad_norm": 1.157038688659668, "token_acc": 0.7507589817047119, "gpu_alloc_gb": 10.13, "elapsed_s": 1458.6, "epoch": 0.14057826520438685} +{"step": 1420, "loss": 1.0507, "learning_rate": 0.00019912913948445048, "grad_norm": 1.1804020404815674, "token_acc": 0.7503759264945984, "gpu_alloc_gb": 10.13, "elapsed_s": 1465.0, "epoch": 0.1415752741774676} +{"step": 1430, "loss": 1.0575, "learning_rate": 0.000199107748815478, "grad_norm": 1.1022928953170776, "token_acc": 0.7494748353958129, "gpu_alloc_gb": 10.13, "elapsed_s": 1471.6, "epoch": 0.14257228315054835} +{"step": 1440, "loss": 1.0911, "learning_rate": 0.00019908609979507876, "grad_norm": 1.1953188180923462, "token_acc": 0.7427352488040924, "gpu_alloc_gb": 10.13, "elapsed_s": 1478.0, "epoch": 0.14356929212362912} +{"step": 1450, "loss": 1.0886, "learning_rate": 0.00019906419247968672, "grad_norm": 1.225834608078003, "token_acc": 0.7470115780830383, "gpu_alloc_gb": 10.13, "elapsed_s": 1484.4, "epoch": 0.14456630109670987} +{"step": 1460, "loss": 1.0355, "learning_rate": 0.00019904202692640942, "grad_norm": 1.1256550550460815, "token_acc": 0.7546505033969879, "gpu_alloc_gb": 10.13, "elapsed_s": 1490.7, "epoch": 0.14556331006979062} +{"step": 1470, "loss": 1.1556, "learning_rate": 0.0001990196031930273, "grad_norm": 1.3557848930358887, "token_acc": 0.7373951077461243, "gpu_alloc_gb": 10.13, "elapsed_s": 1497.1, "epoch": 0.1465603190428714} +{"step": 1480, "loss": 1.0125, "learning_rate": 0.00019899692133799405, "grad_norm": 1.3160113096237183, "token_acc": 0.7599076569080353, "gpu_alloc_gb": 10.13, "elapsed_s": 1503.5, "epoch": 0.14755732801595214} +{"step": 1490, "loss": 1.1333, "learning_rate": 0.0001989739814204361, "grad_norm": 1.153887391090393, "token_acc": 0.739163738489151, "gpu_alloc_gb": 10.13, "elapsed_s": 1510.2, "epoch": 0.1485543369890329} +{"step": 1500, "loss": 1.0683, "learning_rate": 0.0001989507835001526, "grad_norm": 1.0999687910079956, "token_acc": 0.7474139928817749, "gpu_alloc_gb": 10.13, "elapsed_s": 1516.6, "epoch": 0.14955134596211367} +{"step": 1500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 1582.3, "epoch": 0.14955134596211367} +{"step": 1500, "eval_loss": 1.3652867078781128, "eval_step": true} +{"step": 1510, "loss": 1.0134, "learning_rate": 0.00019892732763761525, "grad_norm": 1.3716107606887817, "token_acc": 0.7593091428279877, "gpu_alloc_gb": 10.13, "elapsed_s": 1628.9, "epoch": 0.15054835493519442} +{"step": 1520, "loss": 1.0623, "learning_rate": 0.0001989036138939682, "grad_norm": 1.2176233530044556, "token_acc": 0.7457018673419953, "gpu_alloc_gb": 10.13, "elapsed_s": 1635.5, "epoch": 0.15154536390827517} +{"step": 1530, "loss": 1.1076, "learning_rate": 0.00019887964233102778, "grad_norm": 1.0932286977767944, "token_acc": 0.7409059941768646, "gpu_alloc_gb": 10.13, "elapsed_s": 1641.9, "epoch": 0.15254237288135594} +{"step": 1540, "loss": 1.056, "learning_rate": 0.0001988554130112824, "grad_norm": 1.1411340236663818, "token_acc": 0.7494001626968384, "gpu_alloc_gb": 10.13, "elapsed_s": 1648.5, "epoch": 0.1535393818544367} +{"step": 1550, "loss": 1.0751, "learning_rate": 0.00019883092599789245, "grad_norm": 1.279876947402954, "token_acc": 0.7470814824104309, "gpu_alloc_gb": 10.13, "elapsed_s": 1654.8, "epoch": 0.15453639082751744} +{"step": 1560, "loss": 1.0598, "learning_rate": 0.00019880618135469002, "grad_norm": 1.0710670948028564, "token_acc": 0.7488464474678039, "gpu_alloc_gb": 10.13, "elapsed_s": 1660.9, "epoch": 0.15553339980059822} +{"step": 1570, "loss": 1.068, "learning_rate": 0.00019878117914617872, "grad_norm": 1.1340041160583496, "token_acc": 0.7476786494255065, "gpu_alloc_gb": 10.13, "elapsed_s": 1667.3, "epoch": 0.15653040877367896} +{"step": 1580, "loss": 1.0221, "learning_rate": 0.0001987559194375337, "grad_norm": 1.1607691049575806, "token_acc": 0.7556912124156951, "gpu_alloc_gb": 10.13, "elapsed_s": 1673.7, "epoch": 0.1575274177467597} +{"step": 1590, "loss": 1.0779, "learning_rate": 0.00019873040229460127, "grad_norm": 1.1570292711257935, "token_acc": 0.7464554190635682, "gpu_alloc_gb": 10.13, "elapsed_s": 1680.0, "epoch": 0.1585244267198405} +{"step": 1600, "loss": 1.029, "learning_rate": 0.00019870462778389885, "grad_norm": 1.1071947813034058, "token_acc": 0.753965699672699, "gpu_alloc_gb": 10.13, "elapsed_s": 1686.5, "epoch": 0.15952143569292124} +{"step": 1610, "loss": 1.0834, "learning_rate": 0.00019867859597261472, "grad_norm": 1.0869934558868408, "token_acc": 0.7462050139904022, "gpu_alloc_gb": 10.13, "elapsed_s": 1693.0, "epoch": 0.16051844466600199} +{"step": 1620, "loss": 1.0379, "learning_rate": 0.00019865230692860792, "grad_norm": 1.1631845235824585, "token_acc": 0.7519640147686004, "gpu_alloc_gb": 10.13, "elapsed_s": 1699.3, "epoch": 0.16151545363908276} +{"step": 1630, "loss": 1.0617, "learning_rate": 0.00019862576072040802, "grad_norm": 1.1658180952072144, "token_acc": 0.7483461260795593, "gpu_alloc_gb": 10.13, "elapsed_s": 1705.8, "epoch": 0.1625124626121635} +{"step": 1640, "loss": 1.1025, "learning_rate": 0.000198598957417215, "grad_norm": 1.112450122833252, "token_acc": 0.7417300283908844, "gpu_alloc_gb": 10.13, "elapsed_s": 1712.2, "epoch": 0.16350947158524426} +{"step": 1650, "loss": 1.0137, "learning_rate": 0.00019857189708889891, "grad_norm": 1.1404786109924316, "token_acc": 0.7618366956710816, "gpu_alloc_gb": 10.13, "elapsed_s": 1718.4, "epoch": 0.16450648055832504} +{"step": 1660, "loss": 1.0336, "learning_rate": 0.000198544579806, "grad_norm": 1.2046011686325073, "token_acc": 0.7571116030216217, "gpu_alloc_gb": 10.13, "elapsed_s": 1724.9, "epoch": 0.16550348953140578} +{"step": 1670, "loss": 1.0894, "learning_rate": 0.00019851700563972816, "grad_norm": 1.3032170534133911, "token_acc": 0.7425276756286621, "gpu_alloc_gb": 10.13, "elapsed_s": 1731.4, "epoch": 0.16650049850448653} +{"step": 1680, "loss": 1.0939, "learning_rate": 0.000198489174661963, "grad_norm": 1.2145777940750122, "token_acc": 0.7445879459381104, "gpu_alloc_gb": 10.13, "elapsed_s": 1737.8, "epoch": 0.1674975074775673} +{"step": 1690, "loss": 1.0799, "learning_rate": 0.00019846108694525355, "grad_norm": 1.4013712406158447, "token_acc": 0.7485975444316864, "gpu_alloc_gb": 10.13, "elapsed_s": 1744.3, "epoch": 0.16849451645064806} +{"step": 1700, "loss": 1.0165, "learning_rate": 0.00019843274256281816, "grad_norm": 1.1797151565551758, "token_acc": 0.7576527237892151, "gpu_alloc_gb": 10.13, "elapsed_s": 1750.2, "epoch": 0.1694915254237288} +{"step": 1710, "loss": 1.0566, "learning_rate": 0.0001984041415885442, "grad_norm": 1.0843216180801392, "token_acc": 0.75080246925354, "gpu_alloc_gb": 10.13, "elapsed_s": 1756.5, "epoch": 0.17048853439680958} +{"step": 1720, "loss": 1.0617, "learning_rate": 0.00019837528409698792, "grad_norm": 1.2277215719223022, "token_acc": 0.7437781929969788, "gpu_alloc_gb": 10.13, "elapsed_s": 1762.8, "epoch": 0.17148554336989033} +{"step": 1730, "loss": 1.1111, "learning_rate": 0.0001983461701633742, "grad_norm": 1.0325329303741455, "token_acc": 0.7355763673782348, "gpu_alloc_gb": 10.13, "elapsed_s": 1769.4, "epoch": 0.17248255234297108} +{"step": 1740, "loss": 1.0624, "learning_rate": 0.00019831679986359656, "grad_norm": 1.0612850189208984, "token_acc": 0.747422742843628, "gpu_alloc_gb": 10.13, "elapsed_s": 1775.9, "epoch": 0.17347956131605186} +{"step": 1750, "loss": 1.0397, "learning_rate": 0.00019828717327421665, "grad_norm": 1.1479965448379517, "token_acc": 0.7503573358058929, "gpu_alloc_gb": 10.13, "elapsed_s": 1782.1, "epoch": 0.1744765702891326} +{"step": 1750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 1848.0, "epoch": 0.1744765702891326} +{"step": 1750, "eval_loss": 1.358515977859497, "eval_step": true} +{"step": 1760, "loss": 1.0022, "learning_rate": 0.00019825729047246427, "grad_norm": 1.0896629095077515, "token_acc": 0.7583122014999389, "gpu_alloc_gb": 10.13, "elapsed_s": 1898.4, "epoch": 0.17547357926221335} +{"step": 1770, "loss": 1.0274, "learning_rate": 0.00019822715153623716, "grad_norm": 1.3998064994812012, "token_acc": 0.7530840516090394, "gpu_alloc_gb": 10.13, "elapsed_s": 1904.8, "epoch": 0.17647058823529413} +{"step": 1780, "loss": 1.0608, "learning_rate": 0.00019819675654410063, "grad_norm": 1.0792458057403564, "token_acc": 0.7485050439834595, "gpu_alloc_gb": 10.13, "elapsed_s": 1911.3, "epoch": 0.17746759720837488} +{"step": 1790, "loss": 1.0661, "learning_rate": 0.00019816610557528753, "grad_norm": 1.087748408317566, "token_acc": 0.7470261216163635, "gpu_alloc_gb": 10.13, "elapsed_s": 1917.8, "epoch": 0.17846460618145563} +{"step": 1800, "loss": 1.0465, "learning_rate": 0.00019813519870969803, "grad_norm": 1.1068400144577026, "token_acc": 0.7501144468784332, "gpu_alloc_gb": 10.13, "elapsed_s": 1924.1, "epoch": 0.1794616151545364} +{"step": 1810, "loss": 1.0447, "learning_rate": 0.0001981040360278993, "grad_norm": 1.5165787935256958, "token_acc": 0.7543721258640289, "gpu_alloc_gb": 10.13, "elapsed_s": 1930.4, "epoch": 0.18045862412761715} +{"step": 1820, "loss": 1.0632, "learning_rate": 0.0001980726176111254, "grad_norm": 1.1327362060546875, "token_acc": 0.7517034351825714, "gpu_alloc_gb": 10.13, "elapsed_s": 1936.9, "epoch": 0.1814556331006979} +{"step": 1830, "loss": 1.0766, "learning_rate": 0.00019804094354127698, "grad_norm": 1.1734397411346436, "token_acc": 0.745357996225357, "gpu_alloc_gb": 10.13, "elapsed_s": 1943.2, "epoch": 0.18245264207377868} +{"step": 1840, "loss": 1.0634, "learning_rate": 0.00019800901390092118, "grad_norm": 1.189956545829773, "token_acc": 0.7473718225955963, "gpu_alloc_gb": 10.13, "elapsed_s": 1949.6, "epoch": 0.18344965104685942} +{"step": 1850, "loss": 1.0941, "learning_rate": 0.00019797682877329136, "grad_norm": 1.052657127380371, "token_acc": 0.7466960251331329, "gpu_alloc_gb": 10.13, "elapsed_s": 1956.0, "epoch": 0.18444666001994017} +{"step": 1860, "loss": 1.0326, "learning_rate": 0.00019794438824228682, "grad_norm": 0.9721708297729492, "token_acc": 0.7564247012138366, "gpu_alloc_gb": 10.13, "elapsed_s": 1962.4, "epoch": 0.18544366899302095} +{"step": 1870, "loss": 1.0319, "learning_rate": 0.00019791169239247262, "grad_norm": 1.0838886499404907, "token_acc": 0.7530239522457123, "gpu_alloc_gb": 10.13, "elapsed_s": 1968.9, "epoch": 0.1864406779661017} +{"step": 1880, "loss": 1.076, "learning_rate": 0.00019787874130907952, "grad_norm": 1.1868846416473389, "token_acc": 0.7435412764549255, "gpu_alloc_gb": 10.13, "elapsed_s": 1976.0, "epoch": 0.18743768693918245} +{"step": 1890, "loss": 1.0201, "learning_rate": 0.00019784553507800349, "grad_norm": 0.939014196395874, "token_acc": 0.7559908092021942, "gpu_alloc_gb": 10.13, "elapsed_s": 1983.0, "epoch": 0.18843469591226322} +{"step": 1900, "loss": 1.0414, "learning_rate": 0.00019781207378580557, "grad_norm": 1.2123017311096191, "token_acc": 0.75193892121315, "gpu_alloc_gb": 10.13, "elapsed_s": 1989.4, "epoch": 0.18943170488534397} +{"step": 1910, "loss": 1.0328, "learning_rate": 0.00019777835751971185, "grad_norm": 0.9955931305885315, "token_acc": 0.7533311963081359, "gpu_alloc_gb": 10.13, "elapsed_s": 1995.7, "epoch": 0.19042871385842472} +{"step": 1920, "loss": 1.0713, "learning_rate": 0.00019774438636761298, "grad_norm": 1.2875831127166748, "token_acc": 0.7469519913196564, "gpu_alloc_gb": 10.13, "elapsed_s": 2002.2, "epoch": 0.1914257228315055} +{"step": 1930, "loss": 1.042, "learning_rate": 0.00019771016041806406, "grad_norm": 1.1702425479888916, "token_acc": 0.7526104509830475, "gpu_alloc_gb": 10.13, "elapsed_s": 2008.6, "epoch": 0.19242273180458624} +{"step": 1940, "loss": 1.0215, "learning_rate": 0.0001976756797602843, "grad_norm": 1.1688710451126099, "token_acc": 0.7550115168094635, "gpu_alloc_gb": 10.13, "elapsed_s": 2014.9, "epoch": 0.193419740777667} +{"step": 1950, "loss": 1.0701, "learning_rate": 0.00019764094448415702, "grad_norm": 1.0984458923339844, "token_acc": 0.7483714997768403, "gpu_alloc_gb": 10.13, "elapsed_s": 2021.5, "epoch": 0.19441674975074777} +{"step": 1960, "loss": 1.0718, "learning_rate": 0.00019760595468022921, "grad_norm": 1.1558140516281128, "token_acc": 0.747494250535965, "gpu_alloc_gb": 10.13, "elapsed_s": 2028.3, "epoch": 0.19541375872382852} +{"step": 1970, "loss": 1.0337, "learning_rate": 0.00019757071043971134, "grad_norm": 1.0996161699295044, "token_acc": 0.7561704397201539, "gpu_alloc_gb": 10.13, "elapsed_s": 2034.6, "epoch": 0.19641076769690927} +{"step": 1980, "loss": 1.0283, "learning_rate": 0.00019753521185447714, "grad_norm": 1.1656612157821655, "token_acc": 0.7532356023788452, "gpu_alloc_gb": 10.13, "elapsed_s": 2041.2, "epoch": 0.19740777666999004} +{"step": 1990, "loss": 1.0635, "learning_rate": 0.0001974994590170634, "grad_norm": 1.1319738626480103, "token_acc": 0.7521080911159516, "gpu_alloc_gb": 10.13, "elapsed_s": 2047.5, "epoch": 0.1984047856430708} +{"step": 2000, "loss": 1.0055, "learning_rate": 0.00019746345202066964, "grad_norm": 1.0645668506622314, "token_acc": 0.7565215051174163, "gpu_alloc_gb": 10.13, "elapsed_s": 2053.8, "epoch": 0.19940179461615154} +{"step": 2000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 2119.6, "epoch": 0.19940179461615154} +{"step": 2000, "eval_loss": 1.353097677230835, "eval_step": true} +{"step": 2010, "loss": 1.0324, "learning_rate": 0.0001974271909591579, "grad_norm": 1.2530349493026733, "token_acc": 0.7553211271762847, "gpu_alloc_gb": 10.13, "elapsed_s": 2170.2, "epoch": 0.20039880358923232} +{"step": 2020, "loss": 1.0115, "learning_rate": 0.00019739067592705264, "grad_norm": 1.2557272911071777, "token_acc": 0.752438223361969, "gpu_alloc_gb": 10.13, "elapsed_s": 2176.6, "epoch": 0.20139581256231306} +{"step": 2030, "loss": 1.0695, "learning_rate": 0.00019735390701954017, "grad_norm": 1.157097578048706, "token_acc": 0.750082266330719, "gpu_alloc_gb": 10.13, "elapsed_s": 2182.9, "epoch": 0.2023928215353938} +{"step": 2040, "loss": 1.035, "learning_rate": 0.00019731688433246878, "grad_norm": 1.1921528577804565, "token_acc": 0.7566770017147064, "gpu_alloc_gb": 10.13, "elapsed_s": 2189.5, "epoch": 0.2033898305084746} +{"step": 2050, "loss": 1.0174, "learning_rate": 0.00019727960796234815, "grad_norm": 1.0653245449066162, "token_acc": 0.7579061329364777, "gpu_alloc_gb": 10.13, "elapsed_s": 2195.6, "epoch": 0.20438683948155534} +{"step": 2060, "loss": 1.0297, "learning_rate": 0.00019724207800634935, "grad_norm": 1.0642585754394531, "token_acc": 0.7547000765800476, "gpu_alloc_gb": 10.13, "elapsed_s": 2202.0, "epoch": 0.2053838484546361} +{"step": 2070, "loss": 1.0498, "learning_rate": 0.00019720429456230446, "grad_norm": 0.9819979071617126, "token_acc": 0.7513695001602173, "gpu_alloc_gb": 10.13, "elapsed_s": 2208.8, "epoch": 0.20638085742771686} +{"step": 2080, "loss": 1.0595, "learning_rate": 0.00019716625772870633, "grad_norm": 1.1613261699676514, "token_acc": 0.7509258031845093, "gpu_alloc_gb": 10.13, "elapsed_s": 2215.3, "epoch": 0.2073778664007976} +{"step": 2090, "loss": 1.0324, "learning_rate": 0.00019712796760470842, "grad_norm": 1.2137197256088257, "token_acc": 0.7576455652713776, "gpu_alloc_gb": 10.13, "elapsed_s": 2221.6, "epoch": 0.20837487537387836} +{"step": 2100, "loss": 1.0222, "learning_rate": 0.00019708942429012437, "grad_norm": 1.0507476329803467, "token_acc": 0.754794466495514, "gpu_alloc_gb": 10.13, "elapsed_s": 2228.0, "epoch": 0.20937188434695914} +{"step": 2110, "loss": 1.0126, "learning_rate": 0.00019705062788542783, "grad_norm": 1.1199575662612915, "token_acc": 0.7596093416213989, "gpu_alloc_gb": 10.13, "elapsed_s": 2234.4, "epoch": 0.21036889332003988} +{"step": 2120, "loss": 1.0355, "learning_rate": 0.00019701157849175228, "grad_norm": 1.171309471130371, "token_acc": 0.7551225781440735, "gpu_alloc_gb": 10.13, "elapsed_s": 2240.6, "epoch": 0.21136590229312063} +{"step": 2130, "loss": 1.0229, "learning_rate": 0.0001969722762108906, "grad_norm": 1.0838630199432373, "token_acc": 0.7532795488834381, "gpu_alloc_gb": 10.13, "elapsed_s": 2246.9, "epoch": 0.2123629112662014} +{"step": 2140, "loss": 0.9923, "learning_rate": 0.0001969327211452949, "grad_norm": 1.0930280685424805, "token_acc": 0.756277322769165, "gpu_alloc_gb": 10.13, "elapsed_s": 2253.3, "epoch": 0.21335992023928216} +{"step": 2150, "loss": 1.0491, "learning_rate": 0.00019689291339807633, "grad_norm": 1.1906729936599731, "token_acc": 0.7510769665241241, "gpu_alloc_gb": 10.13, "elapsed_s": 2259.7, "epoch": 0.2143569292123629} +{"step": 2160, "loss": 1.0451, "learning_rate": 0.00019685285307300462, "grad_norm": 1.1372658014297485, "token_acc": 0.7528624951839447, "gpu_alloc_gb": 10.13, "elapsed_s": 2266.0, "epoch": 0.21535393818544366} +{"step": 2170, "loss": 0.9981, "learning_rate": 0.00019681254027450798, "grad_norm": 1.0856285095214844, "token_acc": 0.7600718319416047, "gpu_alloc_gb": 10.13, "elapsed_s": 2272.3, "epoch": 0.21635094715852443} +{"step": 2180, "loss": 0.9998, "learning_rate": 0.00019677197510767268, "grad_norm": 1.1264920234680176, "token_acc": 0.7598847448825836, "gpu_alloc_gb": 10.13, "elapsed_s": 2278.7, "epoch": 0.21734795613160518} +{"step": 2190, "loss": 1.058, "learning_rate": 0.000196731157678243, "grad_norm": 1.1189172267913818, "token_acc": 0.750264686346054, "gpu_alloc_gb": 10.13, "elapsed_s": 2285.4, "epoch": 0.21834496510468593} +{"step": 2200, "loss": 1.0244, "learning_rate": 0.00019669008809262062, "grad_norm": 0.9573628306388855, "token_acc": 0.7561095237731934, "gpu_alloc_gb": 10.13, "elapsed_s": 2291.3, "epoch": 0.2193419740777667} +{"step": 2210, "loss": 0.9986, "learning_rate": 0.0001966487664578647, "grad_norm": 1.2226788997650146, "token_acc": 0.7562776684761048, "gpu_alloc_gb": 10.13, "elapsed_s": 2297.8, "epoch": 0.22033898305084745} +{"step": 2220, "loss": 1.0632, "learning_rate": 0.00019660719288169137, "grad_norm": 1.1343352794647217, "token_acc": 0.7493990600109101, "gpu_alloc_gb": 10.13, "elapsed_s": 2304.1, "epoch": 0.2213359920239282} +{"step": 2230, "loss": 1.0092, "learning_rate": 0.00019656536747247348, "grad_norm": 1.1920206546783447, "token_acc": 0.7576403975486755, "gpu_alloc_gb": 10.13, "elapsed_s": 2310.5, "epoch": 0.22233300099700898} +{"step": 2240, "loss": 0.989, "learning_rate": 0.00019652329033924043, "grad_norm": 1.1645739078521729, "token_acc": 0.763515704870224, "gpu_alloc_gb": 10.13, "elapsed_s": 2317.0, "epoch": 0.22333000997008973} +{"step": 2250, "loss": 1.011, "learning_rate": 0.00019648096159167775, "grad_norm": 1.0068750381469727, "token_acc": 0.7562952041625977, "gpu_alloc_gb": 10.13, "elapsed_s": 2323.4, "epoch": 0.22432701894317048} +{"step": 2250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 2389.1, "epoch": 0.22432701894317048} +{"step": 2250, "eval_loss": 1.3372070789337158, "eval_step": true} +{"step": 2260, "loss": 1.0433, "learning_rate": 0.00019643838134012685, "grad_norm": 1.1891939640045166, "token_acc": 0.7524372041225433, "gpu_alloc_gb": 10.13, "elapsed_s": 2435.4, "epoch": 0.22532402791625125} +{"step": 2270, "loss": 1.0306, "learning_rate": 0.00019639554969558485, "grad_norm": 1.0595719814300537, "token_acc": 0.7560187101364135, "gpu_alloc_gb": 10.13, "elapsed_s": 2441.9, "epoch": 0.226321036889332} +{"step": 2280, "loss": 1.0726, "learning_rate": 0.00019635246676970409, "grad_norm": 1.095645785331726, "token_acc": 0.7482756674289703, "gpu_alloc_gb": 10.13, "elapsed_s": 2448.2, "epoch": 0.22731804586241275} +{"step": 2290, "loss": 0.9688, "learning_rate": 0.00019630913267479203, "grad_norm": 0.9793089032173157, "token_acc": 0.7667117595672608, "gpu_alloc_gb": 10.13, "elapsed_s": 2454.3, "epoch": 0.22831505483549352} +{"step": 2300, "loss": 1.0056, "learning_rate": 0.00019626554752381076, "grad_norm": 1.1042290925979614, "token_acc": 0.7613164842128753, "gpu_alloc_gb": 10.13, "elapsed_s": 2460.8, "epoch": 0.22931206380857427} +{"step": 2310, "loss": 1.0013, "learning_rate": 0.00019622171143037696, "grad_norm": 1.0184885263442993, "token_acc": 0.7602213740348815, "gpu_alloc_gb": 10.13, "elapsed_s": 2467.1, "epoch": 0.23030907278165502} +{"step": 2320, "loss": 1.0155, "learning_rate": 0.00019617762450876134, "grad_norm": 1.2528330087661743, "token_acc": 0.7543063580989837, "gpu_alloc_gb": 10.13, "elapsed_s": 2473.7, "epoch": 0.2313060817547358} +{"step": 2330, "loss": 1.04, "learning_rate": 0.0001961332868738885, "grad_norm": 1.1096327304840088, "token_acc": 0.7528625309467316, "gpu_alloc_gb": 10.13, "elapsed_s": 2480.3, "epoch": 0.23230309072781655} +{"step": 2340, "loss": 1.0119, "learning_rate": 0.00019608869864133665, "grad_norm": 1.2241601943969727, "token_acc": 0.7562784433364869, "gpu_alloc_gb": 10.13, "elapsed_s": 2486.6, "epoch": 0.2333000997008973} +{"step": 2350, "loss": 1.0791, "learning_rate": 0.00019604385992733715, "grad_norm": 1.137676477432251, "token_acc": 0.7503218829631806, "gpu_alloc_gb": 10.13, "elapsed_s": 2493.1, "epoch": 0.23429710867397807} +{"step": 2360, "loss": 0.9636, "learning_rate": 0.0001959987708487744, "grad_norm": 1.11489999294281, "token_acc": 0.7644761621952056, "gpu_alloc_gb": 10.13, "elapsed_s": 2499.4, "epoch": 0.23529411764705882} +{"step": 2370, "loss": 1.0623, "learning_rate": 0.00019595343152318536, "grad_norm": 1.2472405433654785, "token_acc": 0.7514626920223236, "gpu_alloc_gb": 10.13, "elapsed_s": 2505.9, "epoch": 0.23629112662013957} +{"step": 2380, "loss": 0.9617, "learning_rate": 0.00019590784206875941, "grad_norm": 1.1889350414276123, "token_acc": 0.7688171803951264, "gpu_alloc_gb": 10.13, "elapsed_s": 2511.9, "epoch": 0.23728813559322035} +{"step": 2390, "loss": 0.9737, "learning_rate": 0.0001958620026043379, "grad_norm": 1.0602105855941772, "token_acc": 0.7641203165054321, "gpu_alloc_gb": 10.13, "elapsed_s": 2518.2, "epoch": 0.2382851445663011} +{"step": 2400, "loss": 1.0494, "learning_rate": 0.00019581591324941393, "grad_norm": 1.128535270690918, "token_acc": 0.7489501953125, "gpu_alloc_gb": 10.13, "elapsed_s": 2524.7, "epoch": 0.23928215353938184} +{"step": 2410, "loss": 1.021, "learning_rate": 0.00019576957412413196, "grad_norm": 1.1035398244857788, "token_acc": 0.7561730146408081, "gpu_alloc_gb": 10.13, "elapsed_s": 2531.2, "epoch": 0.24027916251246262} +{"step": 2420, "loss": 1.0357, "learning_rate": 0.00019572298534928763, "grad_norm": 1.1798593997955322, "token_acc": 0.7521441161632538, "gpu_alloc_gb": 10.13, "elapsed_s": 2537.4, "epoch": 0.24127617148554337} +{"step": 2430, "loss": 1.0023, "learning_rate": 0.0001956761470463273, "grad_norm": 1.0529770851135254, "token_acc": 0.7602083683013916, "gpu_alloc_gb": 10.13, "elapsed_s": 2543.7, "epoch": 0.24227318045862412} +{"step": 2440, "loss": 1.0769, "learning_rate": 0.00019562905933734776, "grad_norm": 1.0440572500228882, "token_acc": 0.7475409805774689, "gpu_alloc_gb": 10.13, "elapsed_s": 2550.4, "epoch": 0.2432701894317049} +{"step": 2450, "loss": 1.0032, "learning_rate": 0.00019558172234509607, "grad_norm": 0.988272488117218, "token_acc": 0.7576588869094849, "gpu_alloc_gb": 10.13, "elapsed_s": 2556.8, "epoch": 0.24426719840478564} +{"step": 2460, "loss": 1.0095, "learning_rate": 0.00019553413619296896, "grad_norm": 1.2057504653930664, "token_acc": 0.757947814464569, "gpu_alloc_gb": 10.13, "elapsed_s": 2563.2, "epoch": 0.2452642073778664} +{"step": 2470, "loss": 0.9839, "learning_rate": 0.0001954863010050128, "grad_norm": 0.9559955596923828, "token_acc": 0.7653856575489044, "gpu_alloc_gb": 10.13, "elapsed_s": 2569.4, "epoch": 0.24626121635094717} +{"step": 2480, "loss": 1.0377, "learning_rate": 0.000195438216905923, "grad_norm": 1.1878994703292847, "token_acc": 0.753174090385437, "gpu_alloc_gb": 10.13, "elapsed_s": 2575.8, "epoch": 0.2472582253240279} +{"step": 2490, "loss": 1.0133, "learning_rate": 0.00019538988402104397, "grad_norm": 1.020750880241394, "token_acc": 0.762776780128479, "gpu_alloc_gb": 10.13, "elapsed_s": 2582.1, "epoch": 0.24825523429710866} +{"step": 2500, "loss": 1.0013, "learning_rate": 0.00019534130247636855, "grad_norm": 1.1333993673324585, "token_acc": 0.7615145921707154, "gpu_alloc_gb": 10.13, "elapsed_s": 2588.7, "epoch": 0.24925224327018944} +{"step": 2500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 2654.4, "epoch": 0.24925224327018944} +{"step": 2500, "eval_loss": 1.330933690071106, "eval_step": true} +{"step": 2510, "loss": 0.9921, "learning_rate": 0.00019529247239853784, "grad_norm": 1.0467746257781982, "token_acc": 0.761364632844925, "gpu_alloc_gb": 10.13, "elapsed_s": 2705.5, "epoch": 0.2502492522432702} +{"step": 2520, "loss": 1.0253, "learning_rate": 0.00019524339391484072, "grad_norm": 1.207135558128357, "token_acc": 0.7560178995132446, "gpu_alloc_gb": 10.13, "elapsed_s": 2711.7, "epoch": 0.25124626121635096} +{"step": 2530, "loss": 1.0166, "learning_rate": 0.00019519406715321372, "grad_norm": 1.0557693243026733, "token_acc": 0.7615594923496246, "gpu_alloc_gb": 10.13, "elapsed_s": 2718.2, "epoch": 0.2522432701894317} +{"step": 2540, "loss": 0.9853, "learning_rate": 0.00019514449224224053, "grad_norm": 1.0032247304916382, "token_acc": 0.7620458900928497, "gpu_alloc_gb": 10.13, "elapsed_s": 2724.2, "epoch": 0.25324027916251246} +{"step": 2550, "loss": 0.9719, "learning_rate": 0.00019509466931115163, "grad_norm": 1.203981876373291, "token_acc": 0.7639410614967346, "gpu_alloc_gb": 10.13, "elapsed_s": 2730.5, "epoch": 0.2542372881355932} +{"step": 2560, "loss": 1.0379, "learning_rate": 0.0001950445984898242, "grad_norm": 1.0452873706817627, "token_acc": 0.7565879642963409, "gpu_alloc_gb": 10.13, "elapsed_s": 2736.9, "epoch": 0.25523429710867396} +{"step": 2570, "loss": 1.0364, "learning_rate": 0.00019499427990878144, "grad_norm": 1.4571763277053833, "token_acc": 0.7553370058536529, "gpu_alloc_gb": 10.13, "elapsed_s": 2742.9, "epoch": 0.25623130608175476} +{"step": 2580, "loss": 1.0386, "learning_rate": 0.0001949437136991925, "grad_norm": 1.142570972442627, "token_acc": 0.7533301591873169, "gpu_alloc_gb": 10.13, "elapsed_s": 2749.2, "epoch": 0.2572283150548355} +{"step": 2590, "loss": 0.995, "learning_rate": 0.00019489289999287206, "grad_norm": 1.1094032526016235, "token_acc": 0.7604946494102478, "gpu_alloc_gb": 10.13, "elapsed_s": 2755.8, "epoch": 0.25822532402791626} +{"step": 2600, "loss": 0.9989, "learning_rate": 0.00019484183892227988, "grad_norm": 1.125620722770691, "token_acc": 0.7622276425361634, "gpu_alloc_gb": 10.13, "elapsed_s": 2762.0, "epoch": 0.259222333000997} +{"step": 2610, "loss": 1.0033, "learning_rate": 0.0001947905306205206, "grad_norm": 1.0118709802627563, "token_acc": 0.7617906033992767, "gpu_alloc_gb": 10.13, "elapsed_s": 2768.6, "epoch": 0.26021934197407776} +{"step": 2620, "loss": 0.9626, "learning_rate": 0.00019473897522134337, "grad_norm": 1.1970088481903076, "token_acc": 0.77174112200737, "gpu_alloc_gb": 10.13, "elapsed_s": 2774.6, "epoch": 0.2612163509471585} +{"step": 2630, "loss": 1.0151, "learning_rate": 0.00019468717285914136, "grad_norm": 1.1434075832366943, "token_acc": 0.7567772626876831, "gpu_alloc_gb": 10.13, "elapsed_s": 2780.8, "epoch": 0.2622133599202393} +{"step": 2640, "loss": 1.0473, "learning_rate": 0.00019463512366895165, "grad_norm": 1.137086033821106, "token_acc": 0.751037460565567, "gpu_alloc_gb": 10.13, "elapsed_s": 2787.4, "epoch": 0.26321036889332006} +{"step": 2650, "loss": 0.9949, "learning_rate": 0.00019458282778645462, "grad_norm": 0.9628271460533142, "token_acc": 0.763287615776062, "gpu_alloc_gb": 10.13, "elapsed_s": 2793.6, "epoch": 0.2642073778664008} +{"step": 2660, "loss": 0.9947, "learning_rate": 0.0001945302853479738, "grad_norm": 1.0649755001068115, "token_acc": 0.7595660924911499, "gpu_alloc_gb": 10.13, "elapsed_s": 2799.9, "epoch": 0.26520438683948155} +{"step": 2670, "loss": 0.9869, "learning_rate": 0.00019447749649047542, "grad_norm": 1.3227424621582031, "token_acc": 0.760617583990097, "gpu_alloc_gb": 10.13, "elapsed_s": 2806.1, "epoch": 0.2662013958125623} +{"step": 2680, "loss": 1.0462, "learning_rate": 0.00019442446135156804, "grad_norm": 1.132959008216858, "token_acc": 0.7534664511680603, "gpu_alloc_gb": 10.13, "elapsed_s": 2812.4, "epoch": 0.26719840478564305} +{"step": 2690, "loss": 0.9949, "learning_rate": 0.00019437118006950226, "grad_norm": 1.110953450202942, "token_acc": 0.7634377241134643, "gpu_alloc_gb": 10.13, "elapsed_s": 2818.6, "epoch": 0.26819541375872386} +{"step": 2700, "loss": 1.0134, "learning_rate": 0.00019431765278317027, "grad_norm": 1.0160932540893555, "token_acc": 0.7545815169811249, "gpu_alloc_gb": 10.13, "elapsed_s": 2824.8, "epoch": 0.2691924227318046} +{"step": 2710, "loss": 0.9812, "learning_rate": 0.00019426387963210562, "grad_norm": 1.1941827535629272, "token_acc": 0.7633030712604523, "gpu_alloc_gb": 10.13, "elapsed_s": 2831.0, "epoch": 0.27018943170488535} +{"step": 2720, "loss": 1.0285, "learning_rate": 0.00019420986075648267, "grad_norm": 1.1612601280212402, "token_acc": 0.7563097655773163, "gpu_alloc_gb": 10.13, "elapsed_s": 2837.1, "epoch": 0.2711864406779661} +{"step": 2730, "loss": 1.0046, "learning_rate": 0.0001941555962971164, "grad_norm": 1.0143883228302002, "token_acc": 0.7606202065944672, "gpu_alloc_gb": 10.13, "elapsed_s": 2843.6, "epoch": 0.27218344965104685} +{"step": 2740, "loss": 1.0169, "learning_rate": 0.00019410108639546193, "grad_norm": 1.185113549232483, "token_acc": 0.7624135076999664, "gpu_alloc_gb": 10.13, "elapsed_s": 2849.9, "epoch": 0.2731804586241276} +{"step": 2750, "loss": 1.0171, "learning_rate": 0.00019404633119361427, "grad_norm": 1.1031872034072876, "token_acc": 0.7573584735393524, "gpu_alloc_gb": 10.13, "elapsed_s": 2855.9, "epoch": 0.2741774675972084} +{"step": 2750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 2921.4, "epoch": 0.2741774675972084} +{"step": 2750, "eval_loss": 1.321511149406433, "eval_step": true} +{"step": 2760, "loss": 0.9867, "learning_rate": 0.00019399133083430775, "grad_norm": 1.1005069017410278, "token_acc": 0.7669147312641144, "gpu_alloc_gb": 10.13, "elapsed_s": 2972.0, "epoch": 0.27517447657028915} +{"step": 2770, "loss": 0.9681, "learning_rate": 0.00019393608546091585, "grad_norm": 1.052459478378296, "token_acc": 0.7666733384132385, "gpu_alloc_gb": 10.13, "elapsed_s": 2978.3, "epoch": 0.2761714855433699} +{"step": 2780, "loss": 0.9842, "learning_rate": 0.00019388059521745077, "grad_norm": 1.2240054607391357, "token_acc": 0.7632012367248535, "gpu_alloc_gb": 10.13, "elapsed_s": 2984.7, "epoch": 0.27716849451645065} +{"step": 2790, "loss": 1.0139, "learning_rate": 0.00019382486024856291, "grad_norm": 1.0008918046951294, "token_acc": 0.760044264793396, "gpu_alloc_gb": 10.13, "elapsed_s": 2990.8, "epoch": 0.2781655034895314} +{"step": 2800, "loss": 0.993, "learning_rate": 0.0001937688806995408, "grad_norm": 1.147002100944519, "token_acc": 0.7621406853199005, "gpu_alloc_gb": 10.13, "elapsed_s": 2997.3, "epoch": 0.27916251246261214} +{"step": 2810, "loss": 1.0365, "learning_rate": 0.00019371265671631037, "grad_norm": 1.211297869682312, "token_acc": 0.7550270259380341, "gpu_alloc_gb": 10.13, "elapsed_s": 3003.5, "epoch": 0.28015952143569295} +{"step": 2820, "loss": 1.0025, "learning_rate": 0.00019365618844543477, "grad_norm": 1.0834295749664307, "token_acc": 0.7610085785388947, "gpu_alloc_gb": 10.13, "elapsed_s": 3009.9, "epoch": 0.2811565304087737} +{"step": 2830, "loss": 0.97, "learning_rate": 0.00019359947603411404, "grad_norm": 1.1741442680358887, "token_acc": 0.7659056782722473, "gpu_alloc_gb": 10.13, "elapsed_s": 3016.0, "epoch": 0.28215353938185445} +{"step": 2840, "loss": 0.9694, "learning_rate": 0.00019354251963018453, "grad_norm": 0.9716070890426636, "token_acc": 0.7666661441326141, "gpu_alloc_gb": 10.13, "elapsed_s": 3022.2, "epoch": 0.2831505483549352} +{"step": 2850, "loss": 0.9791, "learning_rate": 0.00019348531938211867, "grad_norm": 1.0845015048980713, "token_acc": 0.766101211309433, "gpu_alloc_gb": 10.13, "elapsed_s": 3028.6, "epoch": 0.28414755732801594} +{"step": 2860, "loss": 1.0104, "learning_rate": 0.00019342787543902458, "grad_norm": 1.0573818683624268, "token_acc": 0.7614919960498809, "gpu_alloc_gb": 10.13, "elapsed_s": 3035.0, "epoch": 0.2851445663010967} +{"step": 2870, "loss": 0.9553, "learning_rate": 0.00019337018795064555, "grad_norm": 1.14957857131958, "token_acc": 0.7690187871456147, "gpu_alloc_gb": 10.13, "elapsed_s": 3041.6, "epoch": 0.28614157527417744} +{"step": 2880, "loss": 0.9785, "learning_rate": 0.00019331225706735978, "grad_norm": 1.0846115350723267, "token_acc": 0.7640945851802826, "gpu_alloc_gb": 10.13, "elapsed_s": 3048.1, "epoch": 0.28713858424725824} +{"step": 2890, "loss": 1.0075, "learning_rate": 0.00019325408294017997, "grad_norm": 1.018438696861267, "token_acc": 0.762420654296875, "gpu_alloc_gb": 10.13, "elapsed_s": 3054.9, "epoch": 0.288135593220339} +{"step": 2900, "loss": 1.0028, "learning_rate": 0.00019319566572075284, "grad_norm": 1.2772793769836426, "token_acc": 0.7632853746414184, "gpu_alloc_gb": 10.13, "elapsed_s": 3061.4, "epoch": 0.28913260219341974} +{"step": 2910, "loss": 1.0235, "learning_rate": 0.00019313700556135893, "grad_norm": 1.128056526184082, "token_acc": 0.7623871922492981, "gpu_alloc_gb": 10.13, "elapsed_s": 3067.7, "epoch": 0.2901296111665005} +{"step": 2920, "loss": 1.0084, "learning_rate": 0.00019307810261491183, "grad_norm": 1.0931682586669922, "token_acc": 0.763366574048996, "gpu_alloc_gb": 10.13, "elapsed_s": 3074.2, "epoch": 0.29112662013958124} +{"step": 2930, "loss": 1.0046, "learning_rate": 0.00019301895703495827, "grad_norm": 1.038068175315857, "token_acc": 0.7607581853866577, "gpu_alloc_gb": 10.13, "elapsed_s": 3080.5, "epoch": 0.292123629112662} +{"step": 2940, "loss": 1.0185, "learning_rate": 0.00019295956897567732, "grad_norm": 1.001013994216919, "token_acc": 0.7621544897556305, "gpu_alloc_gb": 10.13, "elapsed_s": 3086.7, "epoch": 0.2931206380857428} +{"step": 2950, "loss": 1.0271, "learning_rate": 0.0001928999385918802, "grad_norm": 1.13434636592865, "token_acc": 0.759193879365921, "gpu_alloc_gb": 10.13, "elapsed_s": 3093.2, "epoch": 0.29411764705882354} +{"step": 2960, "loss": 1.0153, "learning_rate": 0.00019284006603900982, "grad_norm": 1.0234326124191284, "token_acc": 0.7646292984485626, "gpu_alloc_gb": 10.13, "elapsed_s": 3099.5, "epoch": 0.2951146560319043} +{"step": 2970, "loss": 1.0007, "learning_rate": 0.00019277995147314029, "grad_norm": 1.1705865859985352, "token_acc": 0.7652110934257508, "gpu_alloc_gb": 10.13, "elapsed_s": 3106.0, "epoch": 0.29611166500498504} +{"step": 2980, "loss": 0.9882, "learning_rate": 0.0001927195950509767, "grad_norm": 1.044060468673706, "token_acc": 0.765473484992981, "gpu_alloc_gb": 10.13, "elapsed_s": 3112.1, "epoch": 0.2971086739780658} +{"step": 2990, "loss": 0.9554, "learning_rate": 0.00019265899692985454, "grad_norm": 1.0521575212478638, "token_acc": 0.7703223526477814, "gpu_alloc_gb": 10.13, "elapsed_s": 3118.7, "epoch": 0.29810568295114653} +{"step": 3000, "loss": 0.9702, "learning_rate": 0.00019259815726773937, "grad_norm": 0.9377513527870178, "token_acc": 0.7691072940826416, "gpu_alloc_gb": 10.13, "elapsed_s": 3125.2, "epoch": 0.29910269192422734} +{"step": 3000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 10.13, "elapsed_s": 3191.2, "epoch": 0.29910269192422734} +{"step": 3000, "eval_loss": 1.3218907117843628, "eval_step": true} +{"step": 3010, "loss": 0.962, "learning_rate": 0.00019253707622322636, "grad_norm": 1.205929160118103, "token_acc": 0.7691982567310334, "gpu_alloc_gb": 10.13, "elapsed_s": 3240.2, "epoch": 0.3000997008973081} +{"step": 3020, "loss": 0.9733, "learning_rate": 0.00019247575395554, "grad_norm": 0.9744682908058167, "token_acc": 0.770923775434494, "gpu_alloc_gb": 10.13, "elapsed_s": 3246.3, "epoch": 0.30109670987038883} +{"step": 3030, "loss": 0.9772, "learning_rate": 0.00019241419062453354, "grad_norm": 1.2123428583145142, "token_acc": 0.7691790759563446, "gpu_alloc_gb": 10.13, "elapsed_s": 3252.4, "epoch": 0.3020937188434696} +{"step": 3040, "loss": 0.9357, "learning_rate": 0.00019235238639068856, "grad_norm": 1.0103942155838013, "token_acc": 0.772951602935791, "gpu_alloc_gb": 10.13, "elapsed_s": 3258.4, "epoch": 0.30309072781655033} +{"step": 3010, "loss": 0.962, "learning_rate": 0.00019253707622322636, "grad_norm": 1.205929160118103, "token_acc": 0.7691982567310334, "gpu_alloc_gb": 12.88, "elapsed_s": 9.3, "epoch": 0.3000997008973081} +{"step": 3020, "loss": 0.9733, "learning_rate": 0.00019247575395554, "grad_norm": 0.9744682908058167, "token_acc": 0.770923775434494, "gpu_alloc_gb": 12.88, "elapsed_s": 15.6, "epoch": 0.30109670987038883} +{"step": 3030, "loss": 0.9772, "learning_rate": 0.00019241419062453354, "grad_norm": 1.2123428583145142, "token_acc": 0.7691790759563446, "gpu_alloc_gb": 12.88, "elapsed_s": 22.1, "epoch": 0.3020937188434696} +{"step": 3040, "loss": 0.9357, "learning_rate": 0.00019235238639068856, "grad_norm": 1.0103942155838013, "token_acc": 0.772951602935791, "gpu_alloc_gb": 12.88, "elapsed_s": 28.5, "epoch": 0.30309072781655033} +{"step": 3050, "loss": 0.998, "learning_rate": 0.0001922903414151147, "grad_norm": 1.1679607629776, "token_acc": 0.7611166536808014, "gpu_alloc_gb": 12.88, "elapsed_s": 35.6, "epoch": 0.3040877367896311} +{"step": 3060, "loss": 0.9709, "learning_rate": 0.00019222805585954918, "grad_norm": 1.1217153072357178, "token_acc": 0.7667532682418823, "gpu_alloc_gb": 12.88, "elapsed_s": 42.4, "epoch": 0.3050847457627119} +{"step": 3070, "loss": 0.999, "learning_rate": 0.0001921655298863563, "grad_norm": 0.9946764707565308, "token_acc": 0.7639320671558381, "gpu_alloc_gb": 12.88, "elapsed_s": 49.0, "epoch": 0.30608175473579263} +{"step": 3080, "loss": 0.9832, "learning_rate": 0.00019210276365852708, "grad_norm": 0.9997354745864868, "token_acc": 0.7661615014076233, "gpu_alloc_gb": 12.88, "elapsed_s": 55.6, "epoch": 0.3070787637088734} +{"step": 3090, "loss": 0.988, "learning_rate": 0.00019203975733967887, "grad_norm": 1.1000498533248901, "token_acc": 0.766576498746872, "gpu_alloc_gb": 12.88, "elapsed_s": 62.3, "epoch": 0.30807577268195413} +{"step": 3100, "loss": 0.996, "learning_rate": 0.00019197651109405483, "grad_norm": 1.1153533458709717, "token_acc": 0.7658139348030091, "gpu_alloc_gb": 12.88, "elapsed_s": 68.9, "epoch": 0.3090727816550349} +{"step": 3110, "loss": 1.0049, "learning_rate": 0.0001919130250865236, "grad_norm": 1.1476472616195679, "token_acc": 0.7649011254310608, "gpu_alloc_gb": 12.88, "elapsed_s": 75.8, "epoch": 0.3100697906281156} +{"step": 3120, "loss": 0.9806, "learning_rate": 0.00019184929948257875, "grad_norm": 1.0661542415618896, "token_acc": 0.7664731860160827, "gpu_alloc_gb": 12.88, "elapsed_s": 82.4, "epoch": 0.31106679960119643} +{"step": 3130, "loss": 0.981, "learning_rate": 0.00019178533444833855, "grad_norm": 1.077622652053833, "token_acc": 0.7673212289810181, "gpu_alloc_gb": 12.88, "elapsed_s": 89.3, "epoch": 0.3120638085742772} +{"step": 3140, "loss": 0.9567, "learning_rate": 0.00019172113015054532, "grad_norm": 1.105215072631836, "token_acc": 0.7693643510341645, "gpu_alloc_gb": 12.88, "elapsed_s": 95.9, "epoch": 0.31306081754735793} +{"step": 3150, "loss": 0.9636, "learning_rate": 0.0001916566867565651, "grad_norm": 1.1493393182754517, "token_acc": 0.773028165102005, "gpu_alloc_gb": 12.88, "elapsed_s": 102.6, "epoch": 0.3140578265204387} +{"step": 3160, "loss": 1.0075, "learning_rate": 0.00019159200443438716, "grad_norm": 1.081193447113037, "token_acc": 0.7579323768615722, "gpu_alloc_gb": 12.88, "elapsed_s": 109.0, "epoch": 0.3150548354935194} +{"step": 3170, "loss": 0.9928, "learning_rate": 0.0001915270833526237, "grad_norm": 1.044235110282898, "token_acc": 0.7677383899688721, "gpu_alloc_gb": 12.88, "elapsed_s": 115.5, "epoch": 0.3160518444666002} +{"step": 3180, "loss": 0.9931, "learning_rate": 0.00019146192368050928, "grad_norm": 1.044755458831787, "token_acc": 0.7666860699653626, "gpu_alloc_gb": 12.88, "elapsed_s": 122.2, "epoch": 0.317048853439681} +{"step": 3190, "loss": 0.9658, "learning_rate": 0.00019139652558790033, "grad_norm": 1.0899807214736938, "token_acc": 0.7693017423152924, "gpu_alloc_gb": 12.88, "elapsed_s": 128.5, "epoch": 0.3180458624127617} +{"step": 3200, "loss": 0.9803, "learning_rate": 0.00019133088924527488, "grad_norm": 1.082841396331787, "token_acc": 0.7663097023963928, "gpu_alloc_gb": 12.88, "elapsed_s": 134.8, "epoch": 0.3190428713858425} +{"step": 3210, "loss": 0.9866, "learning_rate": 0.00019126501482373196, "grad_norm": 1.1418037414550781, "token_acc": 0.7646657168865204, "gpu_alloc_gb": 12.88, "elapsed_s": 141.2, "epoch": 0.3200398803589232} +{"step": 3220, "loss": 0.9867, "learning_rate": 0.00019119890249499132, "grad_norm": 1.1820955276489258, "token_acc": 0.7678164124488831, "gpu_alloc_gb": 12.88, "elapsed_s": 147.6, "epoch": 0.32103688933200397} +{"step": 3230, "loss": 0.9607, "learning_rate": 0.00019113255243139273, "grad_norm": 0.9666445851325989, "token_acc": 0.7712029218673706, "gpu_alloc_gb": 12.88, "elapsed_s": 154.0, "epoch": 0.3220338983050847} +{"step": 3240, "loss": 0.8979, "learning_rate": 0.00019106596480589577, "grad_norm": 1.0914784669876099, "token_acc": 0.7794924736022949, "gpu_alloc_gb": 12.88, "elapsed_s": 160.2, "epoch": 0.3230309072781655} +{"step": 3250, "loss": 1.0339, "learning_rate": 0.0001909991397920793, "grad_norm": 1.1055519580841064, "token_acc": 0.7556413829326629, "gpu_alloc_gb": 12.88, "elapsed_s": 166.8, "epoch": 0.3240279162512463} +{"step": 3250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 233.8, "epoch": 0.3240279162512463} +{"step": 3250, "eval_loss": 1.3073451519012451, "eval_step": true} +{"step": 3260, "loss": 0.9801, "learning_rate": 0.000190932077564141, "grad_norm": 1.1176563501358032, "token_acc": 0.7714668273925781, "gpu_alloc_gb": 12.88, "elapsed_s": 279.6, "epoch": 0.325024925224327} +{"step": 3270, "loss": 0.9917, "learning_rate": 0.00019086477829689685, "grad_norm": 1.0584893226623535, "token_acc": 0.7668662667274475, "gpu_alloc_gb": 12.88, "elapsed_s": 285.9, "epoch": 0.32602193419740777} +{"step": 3280, "loss": 0.9708, "learning_rate": 0.00019079724216578082, "grad_norm": 1.1656547784805298, "token_acc": 0.7673676371574402, "gpu_alloc_gb": 12.88, "elapsed_s": 292.0, "epoch": 0.3270189431704885} +{"step": 3290, "loss": 0.9582, "learning_rate": 0.00019072946934684426, "grad_norm": 1.1206141710281372, "token_acc": 0.7694811165332794, "gpu_alloc_gb": 12.88, "elapsed_s": 298.5, "epoch": 0.32801595214356927} +{"step": 3300, "loss": 0.9581, "learning_rate": 0.00019066146001675555, "grad_norm": 1.2018052339553833, "token_acc": 0.7721807301044464, "gpu_alloc_gb": 12.88, "elapsed_s": 304.8, "epoch": 0.32901296111665007} +{"step": 3310, "loss": 0.9891, "learning_rate": 0.00019059321435279959, "grad_norm": 1.138168215751648, "token_acc": 0.7682094812393189, "gpu_alloc_gb": 12.88, "elapsed_s": 311.0, "epoch": 0.3300099700897308} +{"step": 3320, "loss": 0.9939, "learning_rate": 0.00019052473253287731, "grad_norm": 1.0335801839828491, "token_acc": 0.7636611104011536, "gpu_alloc_gb": 12.88, "elapsed_s": 317.3, "epoch": 0.33100697906281157} +{"step": 3330, "loss": 0.9628, "learning_rate": 0.00019045601473550536, "grad_norm": 1.0094003677368164, "token_acc": 0.7710673809051514, "gpu_alloc_gb": 12.88, "elapsed_s": 323.9, "epoch": 0.3320039880358923} +{"step": 3340, "loss": 1.0112, "learning_rate": 0.00019038706113981538, "grad_norm": 0.9862696528434753, "token_acc": 0.7626586139202118, "gpu_alloc_gb": 12.88, "elapsed_s": 330.1, "epoch": 0.33300099700897307} +{"step": 3350, "loss": 0.9977, "learning_rate": 0.00019031787192555383, "grad_norm": 1.0036396980285645, "token_acc": 0.7656583428382874, "gpu_alloc_gb": 12.88, "elapsed_s": 336.6, "epoch": 0.3339980059820538} +{"step": 3360, "loss": 0.9655, "learning_rate": 0.00019024844727308127, "grad_norm": 1.043455719947815, "token_acc": 0.7670275509357453, "gpu_alloc_gb": 12.88, "elapsed_s": 343.1, "epoch": 0.3349950149551346} +{"step": 3370, "loss": 0.9915, "learning_rate": 0.000190178787363372, "grad_norm": 0.994742751121521, "token_acc": 0.7640628397464753, "gpu_alloc_gb": 12.88, "elapsed_s": 349.5, "epoch": 0.33599202392821537} +{"step": 3380, "loss": 0.9935, "learning_rate": 0.00019010889237801364, "grad_norm": 1.0912302732467651, "token_acc": 0.76639683842659, "gpu_alloc_gb": 12.88, "elapsed_s": 356.2, "epoch": 0.3369890329012961} +{"step": 3390, "loss": 1.0054, "learning_rate": 0.00019003876249920656, "grad_norm": 1.0435389280319214, "token_acc": 0.7616146862506866, "gpu_alloc_gb": 12.88, "elapsed_s": 362.8, "epoch": 0.33798604187437686} +{"step": 3400, "loss": 0.9376, "learning_rate": 0.00018996839790976343, "grad_norm": 1.036171317100525, "token_acc": 0.7754011034965516, "gpu_alloc_gb": 12.88, "elapsed_s": 369.2, "epoch": 0.3389830508474576} +{"step": 3410, "loss": 0.9466, "learning_rate": 0.0001898977987931088, "grad_norm": 1.1053780317306519, "token_acc": 0.7775849997997284, "gpu_alloc_gb": 12.88, "elapsed_s": 375.7, "epoch": 0.33998005982053836} +{"step": 3420, "loss": 1.0042, "learning_rate": 0.00018982696533327857, "grad_norm": 1.1044209003448486, "token_acc": 0.7637536227703094, "gpu_alloc_gb": 12.88, "elapsed_s": 382.3, "epoch": 0.34097706879361916} +{"step": 3430, "loss": 1.0017, "learning_rate": 0.0001897558977149195, "grad_norm": 1.040112853050232, "token_acc": 0.7668272256851196, "gpu_alloc_gb": 12.88, "elapsed_s": 388.5, "epoch": 0.3419740777666999} +{"step": 3440, "loss": 0.9708, "learning_rate": 0.0001896845961232887, "grad_norm": 0.9663151502609253, "token_acc": 0.770514065027237, "gpu_alloc_gb": 12.88, "elapsed_s": 394.9, "epoch": 0.34297108673978066} +{"step": 3450, "loss": 0.9743, "learning_rate": 0.00018961306074425337, "grad_norm": 1.0466209650039673, "token_acc": 0.7695633590221405, "gpu_alloc_gb": 12.88, "elapsed_s": 401.4, "epoch": 0.3439680957128614} +{"step": 3460, "loss": 0.9581, "learning_rate": 0.00018954129176428989, "grad_norm": 1.0750592947006226, "token_acc": 0.7706551849842072, "gpu_alloc_gb": 12.88, "elapsed_s": 407.7, "epoch": 0.34496510468594216} +{"step": 3470, "loss": 0.9656, "learning_rate": 0.0001894692893704838, "grad_norm": 1.043543815612793, "token_acc": 0.774398821592331, "gpu_alloc_gb": 12.88, "elapsed_s": 414.1, "epoch": 0.3459621136590229} +{"step": 3480, "loss": 1.0111, "learning_rate": 0.00018939705375052896, "grad_norm": 1.1801178455352783, "token_acc": 0.7597137987613678, "gpu_alloc_gb": 12.88, "elapsed_s": 420.9, "epoch": 0.3469591226321037} +{"step": 3490, "loss": 1.0068, "learning_rate": 0.00018932458509272727, "grad_norm": 1.1294217109680176, "token_acc": 0.7625993371009827, "gpu_alloc_gb": 12.88, "elapsed_s": 427.6, "epoch": 0.34795613160518446} +{"step": 3500, "loss": 0.9424, "learning_rate": 0.00018925188358598813, "grad_norm": 1.0329750776290894, "token_acc": 0.7731778740882873, "gpu_alloc_gb": 12.88, "elapsed_s": 434.2, "epoch": 0.3489531405782652} +{"step": 3500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 500.8, "epoch": 0.3489531405782652} +{"step": 3500, "eval_loss": 1.3015055656433105, "eval_step": true} +{"step": 3510, "loss": 0.9742, "learning_rate": 0.00018917894941982783, "grad_norm": 1.0344798564910889, "token_acc": 0.7711962282657623, "gpu_alloc_gb": 12.88, "elapsed_s": 543.1, "epoch": 0.34995014955134596} +{"step": 3520, "loss": 1.0301, "learning_rate": 0.00018910578278436924, "grad_norm": 1.2422059774398804, "token_acc": 0.7579264938831329, "gpu_alloc_gb": 12.88, "elapsed_s": 549.7, "epoch": 0.3509471585244267} +{"step": 3530, "loss": 0.9593, "learning_rate": 0.00018903238387034114, "grad_norm": 0.9305868148803711, "token_acc": 0.7701558232307434, "gpu_alloc_gb": 12.88, "elapsed_s": 556.1, "epoch": 0.35194416749750745} +{"step": 3540, "loss": 0.9718, "learning_rate": 0.0001889587528690779, "grad_norm": 1.1956229209899902, "token_acc": 0.769100570678711, "gpu_alloc_gb": 12.88, "elapsed_s": 562.5, "epoch": 0.35294117647058826} +{"step": 3550, "loss": 0.9321, "learning_rate": 0.0001888848899725188, "grad_norm": 0.9718959927558899, "token_acc": 0.7783404529094696, "gpu_alloc_gb": 12.88, "elapsed_s": 568.9, "epoch": 0.353938185443669} +{"step": 3560, "loss": 0.9909, "learning_rate": 0.00018881079537320773, "grad_norm": 0.9418357610702515, "token_acc": 0.761687046289444, "gpu_alloc_gb": 12.88, "elapsed_s": 575.5, "epoch": 0.35493519441674976} +{"step": 3570, "loss": 0.9894, "learning_rate": 0.0001887364692642924, "grad_norm": 1.0667054653167725, "token_acc": 0.7601653039455414, "gpu_alloc_gb": 12.88, "elapsed_s": 581.8, "epoch": 0.3559322033898305} +{"step": 3580, "loss": 1.0, "learning_rate": 0.00018866191183952423, "grad_norm": 1.070583462715149, "token_acc": 0.7703284084796905, "gpu_alloc_gb": 12.88, "elapsed_s": 588.5, "epoch": 0.35692921236291125} +{"step": 3590, "loss": 0.9663, "learning_rate": 0.00018858712329325746, "grad_norm": 1.0376455783843994, "token_acc": 0.7728004574775695, "gpu_alloc_gb": 12.88, "elapsed_s": 594.7, "epoch": 0.357926221335992} +{"step": 3600, "loss": 0.9519, "learning_rate": 0.00018851210382044887, "grad_norm": 1.0546016693115234, "token_acc": 0.7741326630115509, "gpu_alloc_gb": 12.88, "elapsed_s": 601.1, "epoch": 0.3589232303090728} +{"step": 3610, "loss": 0.9939, "learning_rate": 0.00018843685361665723, "grad_norm": 1.1608985662460327, "token_acc": 0.7663596749305726, "gpu_alloc_gb": 12.88, "elapsed_s": 607.5, "epoch": 0.35992023928215355} +{"step": 3620, "loss": 0.9665, "learning_rate": 0.0001883613728780428, "grad_norm": 1.0363755226135254, "token_acc": 0.7712890386581421, "gpu_alloc_gb": 12.88, "elapsed_s": 613.9, "epoch": 0.3609172482552343} +{"step": 3630, "loss": 0.9563, "learning_rate": 0.00018828566180136664, "grad_norm": 1.0922892093658447, "token_acc": 0.7727208197116852, "gpu_alloc_gb": 12.88, "elapsed_s": 620.2, "epoch": 0.36191425722831505} +{"step": 3640, "loss": 0.9953, "learning_rate": 0.00018820972058399048, "grad_norm": 1.020142674446106, "token_acc": 0.7649358689785004, "gpu_alloc_gb": 12.88, "elapsed_s": 626.7, "epoch": 0.3629112662013958} +{"step": 3650, "loss": 0.9324, "learning_rate": 0.00018813354942387575, "grad_norm": 1.0712310075759888, "token_acc": 0.7801180958747864, "gpu_alloc_gb": 12.88, "elapsed_s": 633.0, "epoch": 0.36390827517447655} +{"step": 3660, "loss": 1.0017, "learning_rate": 0.00018805714851958345, "grad_norm": 0.9734932780265808, "token_acc": 0.7640020906925201, "gpu_alloc_gb": 12.88, "elapsed_s": 639.4, "epoch": 0.36490528414755735} +{"step": 3670, "loss": 1.0029, "learning_rate": 0.00018798051807027342, "grad_norm": 1.0136524438858032, "token_acc": 0.7623438894748688, "gpu_alloc_gb": 12.88, "elapsed_s": 646.1, "epoch": 0.3659022931206381} +{"step": 3680, "loss": 0.9618, "learning_rate": 0.0001879036582757038, "grad_norm": 1.0266743898391724, "token_acc": 0.7716027736663819, "gpu_alloc_gb": 12.88, "elapsed_s": 652.4, "epoch": 0.36689930209371885} +{"step": 3690, "loss": 0.9362, "learning_rate": 0.00018782656933623076, "grad_norm": 0.9518123865127563, "token_acc": 0.7736282825469971, "gpu_alloc_gb": 12.88, "elapsed_s": 658.8, "epoch": 0.3678963110667996} +{"step": 3700, "loss": 0.9364, "learning_rate": 0.00018774925145280754, "grad_norm": 1.040560245513916, "token_acc": 0.7777177929878235, "gpu_alloc_gb": 12.88, "elapsed_s": 665.1, "epoch": 0.36889332003988035} +{"step": 3710, "loss": 0.9692, "learning_rate": 0.00018767170482698444, "grad_norm": 1.1457380056381226, "token_acc": 0.7752759099006653, "gpu_alloc_gb": 12.88, "elapsed_s": 671.7, "epoch": 0.3698903290129611} +{"step": 3720, "loss": 0.9866, "learning_rate": 0.00018759392966090786, "grad_norm": 1.106117844581604, "token_acc": 0.7675972938537597, "gpu_alloc_gb": 12.88, "elapsed_s": 678.4, "epoch": 0.3708873379860419} +{"step": 3730, "loss": 0.9582, "learning_rate": 0.00018751592615732005, "grad_norm": 1.1252137422561646, "token_acc": 0.7687681615352631, "gpu_alloc_gb": 12.88, "elapsed_s": 684.9, "epoch": 0.37188434695912265} +{"step": 3740, "loss": 0.943, "learning_rate": 0.00018743769451955847, "grad_norm": 0.9716199636459351, "token_acc": 0.774712061882019, "gpu_alloc_gb": 12.88, "elapsed_s": 691.2, "epoch": 0.3728813559322034} +{"step": 3750, "loss": 0.9574, "learning_rate": 0.00018735923495155526, "grad_norm": 1.1209076642990112, "token_acc": 0.7739231169223786, "gpu_alloc_gb": 12.88, "elapsed_s": 697.7, "epoch": 0.37387836490528414} +{"step": 3750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 764.3, "epoch": 0.37387836490528414} +{"step": 3750, "eval_loss": 1.300805687904358, "eval_step": true} +{"step": 3760, "loss": 0.9984, "learning_rate": 0.0001872805476578367, "grad_norm": 1.0947816371917725, "token_acc": 0.7675888359546661, "gpu_alloc_gb": 12.88, "elapsed_s": 806.6, "epoch": 0.3748753738783649} +{"step": 3770, "loss": 0.9523, "learning_rate": 0.00018720163284352271, "grad_norm": 1.0285701751708984, "token_acc": 0.774824035167694, "gpu_alloc_gb": 12.88, "elapsed_s": 813.0, "epoch": 0.37587238285144564} +{"step": 3780, "loss": 0.9781, "learning_rate": 0.00018712249071432634, "grad_norm": 0.9126257300376892, "token_acc": 0.7638582170009613, "gpu_alloc_gb": 12.88, "elapsed_s": 819.5, "epoch": 0.37686939182452645} +{"step": 3790, "loss": 0.9764, "learning_rate": 0.0001870431214765532, "grad_norm": 1.0567936897277832, "token_acc": 0.767673909664154, "gpu_alloc_gb": 12.88, "elapsed_s": 825.6, "epoch": 0.3778664007976072} +{"step": 3800, "loss": 0.9589, "learning_rate": 0.00018696352533710084, "grad_norm": 1.0480554103851318, "token_acc": 0.7715108215808868, "gpu_alloc_gb": 12.88, "elapsed_s": 831.9, "epoch": 0.37886340977068794} +{"step": 3810, "loss": 0.9744, "learning_rate": 0.00018688370250345834, "grad_norm": 1.1265945434570312, "token_acc": 0.7694658160209655, "gpu_alloc_gb": 12.88, "elapsed_s": 838.2, "epoch": 0.3798604187437687} +{"step": 3820, "loss": 0.9625, "learning_rate": 0.00018680365318370578, "grad_norm": 0.9538574814796448, "token_acc": 0.7743113815784455, "gpu_alloc_gb": 12.88, "elapsed_s": 844.5, "epoch": 0.38085742771684944} +{"step": 3830, "loss": 0.9753, "learning_rate": 0.00018672337758651354, "grad_norm": 1.2907357215881348, "token_acc": 0.7665394961833953, "gpu_alloc_gb": 12.88, "elapsed_s": 850.7, "epoch": 0.3818544366899302} +{"step": 3840, "loss": 0.9558, "learning_rate": 0.00018664287592114195, "grad_norm": 1.1480112075805664, "token_acc": 0.7727635085582734, "gpu_alloc_gb": 12.88, "elapsed_s": 856.9, "epoch": 0.382851445663011} +{"step": 3850, "loss": 0.9527, "learning_rate": 0.00018656214839744056, "grad_norm": 1.065802812576294, "token_acc": 0.7760341882705688, "gpu_alloc_gb": 12.88, "elapsed_s": 863.6, "epoch": 0.38384845463609174} +{"step": 3860, "loss": 0.9718, "learning_rate": 0.0001864811952258477, "grad_norm": 1.041881799697876, "token_acc": 0.7707584202289581, "gpu_alloc_gb": 12.88, "elapsed_s": 869.7, "epoch": 0.3848454636091725} +{"step": 3870, "loss": 0.9777, "learning_rate": 0.00018640001661738995, "grad_norm": 1.0168235301971436, "token_acc": 0.7707076072692871, "gpu_alloc_gb": 12.88, "elapsed_s": 876.0, "epoch": 0.38584247258225324} +{"step": 3880, "loss": 0.9608, "learning_rate": 0.00018631861278368156, "grad_norm": 1.1168110370635986, "token_acc": 0.7707832813262939, "gpu_alloc_gb": 12.88, "elapsed_s": 882.5, "epoch": 0.386839481555334} +{"step": 3890, "loss": 0.9811, "learning_rate": 0.0001862369839369238, "grad_norm": 1.1181501150131226, "token_acc": 0.7682232081890106, "gpu_alloc_gb": 12.88, "elapsed_s": 888.9, "epoch": 0.38783649052841473} +{"step": 3900, "loss": 0.9952, "learning_rate": 0.00018615513028990462, "grad_norm": 1.0634840726852417, "token_acc": 0.7631267786026001, "gpu_alloc_gb": 12.88, "elapsed_s": 895.0, "epoch": 0.38883349950149554} +{"step": 3910, "loss": 0.9804, "learning_rate": 0.0001860730520559979, "grad_norm": 1.6208730936050415, "token_acc": 0.7668792188167572, "gpu_alloc_gb": 12.88, "elapsed_s": 901.3, "epoch": 0.3898305084745763} +{"step": 3920, "loss": 0.9651, "learning_rate": 0.000185990749449163, "grad_norm": 0.9887520670890808, "token_acc": 0.7720785439014435, "gpu_alloc_gb": 12.88, "elapsed_s": 907.3, "epoch": 0.39082751744765704} +{"step": 3930, "loss": 0.9617, "learning_rate": 0.0001859082226839441, "grad_norm": 1.1045889854431152, "token_acc": 0.7733156561851502, "gpu_alloc_gb": 12.88, "elapsed_s": 913.6, "epoch": 0.3918245264207378} +{"step": 3940, "loss": 0.9662, "learning_rate": 0.00018582547197546983, "grad_norm": 1.2196909189224243, "token_acc": 0.7718981742858887, "gpu_alloc_gb": 12.88, "elapsed_s": 920.0, "epoch": 0.39282153539381853} +{"step": 3950, "loss": 0.9676, "learning_rate": 0.00018574249753945248, "grad_norm": 1.0899418592453003, "token_acc": 0.7686961233615875, "gpu_alloc_gb": 12.88, "elapsed_s": 926.3, "epoch": 0.3938185443668993} +{"step": 3960, "loss": 0.9498, "learning_rate": 0.00018565929959218758, "grad_norm": 1.0249067544937134, "token_acc": 0.7776678740978241, "gpu_alloc_gb": 12.88, "elapsed_s": 932.6, "epoch": 0.3948155533399801} +{"step": 3970, "loss": 0.9784, "learning_rate": 0.00018557587835055337, "grad_norm": 1.0110522508621216, "token_acc": 0.7721524000167846, "gpu_alloc_gb": 12.88, "elapsed_s": 939.0, "epoch": 0.39581256231306083} +{"step": 3980, "loss": 0.9386, "learning_rate": 0.00018549223403201004, "grad_norm": 0.950251042842865, "token_acc": 0.7755635976791382, "gpu_alloc_gb": 12.88, "elapsed_s": 945.5, "epoch": 0.3968095712861416} +{"step": 3990, "loss": 0.9764, "learning_rate": 0.0001854083668545994, "grad_norm": 1.020920991897583, "token_acc": 0.7686034619808197, "gpu_alloc_gb": 12.88, "elapsed_s": 951.9, "epoch": 0.39780658025922233} +{"step": 4000, "loss": 0.9958, "learning_rate": 0.00018532427703694412, "grad_norm": 1.1240308284759521, "token_acc": 0.7690499246120452, "gpu_alloc_gb": 12.88, "elapsed_s": 958.1, "epoch": 0.3988035892323031} +{"step": 4000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 1025.1, "epoch": 0.3988035892323031} +{"step": 4000, "eval_loss": 1.2882376909255981, "eval_step": true} +{"step": 4010, "loss": 0.9301, "learning_rate": 0.00018523996479824734, "grad_norm": 1.0151691436767578, "token_acc": 0.7764580905437469, "gpu_alloc_gb": 12.88, "elapsed_s": 1067.3, "epoch": 0.39980059820538383} +{"step": 4020, "loss": 0.9729, "learning_rate": 0.00018515543035829194, "grad_norm": 2.0591254234313965, "token_acc": 0.7686798691749572, "gpu_alloc_gb": 12.88, "elapsed_s": 1073.7, "epoch": 0.40079760717846463} +{"step": 4030, "loss": 0.9716, "learning_rate": 0.00018507067393744002, "grad_norm": 1.1184673309326172, "token_acc": 0.7711562037467956, "gpu_alloc_gb": 12.88, "elapsed_s": 1079.9, "epoch": 0.4017946161515454} +{"step": 4040, "loss": 0.9196, "learning_rate": 0.00018498569575663233, "grad_norm": 1.0526210069656372, "token_acc": 0.7830779016017914, "gpu_alloc_gb": 12.88, "elapsed_s": 1086.3, "epoch": 0.40279162512462613} +{"step": 4050, "loss": 0.9405, "learning_rate": 0.00018490049603738778, "grad_norm": 1.0607678890228271, "token_acc": 0.7694017827510834, "gpu_alloc_gb": 12.88, "elapsed_s": 1092.6, "epoch": 0.4037886340977069} +{"step": 4060, "loss": 0.9587, "learning_rate": 0.0001848150750018026, "grad_norm": 1.058680772781372, "token_acc": 0.7726010620594025, "gpu_alloc_gb": 12.88, "elapsed_s": 1099.1, "epoch": 0.4047856430707876} +{"step": 4070, "loss": 0.9793, "learning_rate": 0.00018472943287255024, "grad_norm": 1.0021615028381348, "token_acc": 0.7695858895778656, "gpu_alloc_gb": 12.88, "elapsed_s": 1105.8, "epoch": 0.4057826520438684} +{"step": 4080, "loss": 0.9697, "learning_rate": 0.00018464356987288013, "grad_norm": 1.1736046075820923, "token_acc": 0.77022784948349, "gpu_alloc_gb": 12.88, "elapsed_s": 1112.3, "epoch": 0.4067796610169492} +{"step": 4090, "loss": 0.9755, "learning_rate": 0.0001845574862266177, "grad_norm": 1.084241509437561, "token_acc": 0.7674805819988251, "gpu_alloc_gb": 12.88, "elapsed_s": 1119.2, "epoch": 0.4077766699900299} +{"step": 4100, "loss": 0.932, "learning_rate": 0.00018447118215816354, "grad_norm": 1.047369360923767, "token_acc": 0.7791598320007325, "gpu_alloc_gb": 12.88, "elapsed_s": 1126.0, "epoch": 0.4087736789631107} +{"step": 4110, "loss": 0.987, "learning_rate": 0.00018438465789249276, "grad_norm": 0.960096538066864, "token_acc": 0.7692098081111908, "gpu_alloc_gb": 12.88, "elapsed_s": 1132.5, "epoch": 0.4097706879361914} +{"step": 4120, "loss": 0.9453, "learning_rate": 0.0001842979136551545, "grad_norm": 1.15107262134552, "token_acc": 0.7752520143985748, "gpu_alloc_gb": 12.88, "elapsed_s": 1139.2, "epoch": 0.4107676969092722} +{"step": 4130, "loss": 0.9914, "learning_rate": 0.0001842109496722713, "grad_norm": 1.0934232473373413, "token_acc": 0.764582222700119, "gpu_alloc_gb": 12.88, "elapsed_s": 1146.2, "epoch": 0.4117647058823529} +{"step": 4140, "loss": 0.9505, "learning_rate": 0.00018412376617053854, "grad_norm": 1.0479202270507812, "token_acc": 0.7756706178188324, "gpu_alloc_gb": 12.88, "elapsed_s": 1152.8, "epoch": 0.4127617148554337} +{"step": 4150, "loss": 0.9057, "learning_rate": 0.00018403636337722387, "grad_norm": 0.9919752478599548, "token_acc": 0.7816828310489654, "gpu_alloc_gb": 12.88, "elapsed_s": 1159.3, "epoch": 0.4137587238285145} +{"step": 4160, "loss": 0.9328, "learning_rate": 0.00018394874152016655, "grad_norm": 0.9159994721412659, "token_acc": 0.7813112497329712, "gpu_alloc_gb": 12.88, "elapsed_s": 1166.0, "epoch": 0.4147557328015952} +{"step": 4170, "loss": 0.9825, "learning_rate": 0.00018386090082777684, "grad_norm": 0.9991132020950317, "token_acc": 0.7688007712364197, "gpu_alloc_gb": 12.88, "elapsed_s": 1172.7, "epoch": 0.41575274177467597} +{"step": 4180, "loss": 1.0035, "learning_rate": 0.00018377284152903557, "grad_norm": 1.1038053035736084, "token_acc": 0.7661787748336792, "gpu_alloc_gb": 12.88, "elapsed_s": 1179.1, "epoch": 0.4167497507477567} +{"step": 4190, "loss": 0.9984, "learning_rate": 0.00018368456385349334, "grad_norm": 1.026132583618164, "token_acc": 0.7644035995006562, "gpu_alloc_gb": 12.88, "elapsed_s": 1186.0, "epoch": 0.41774675972083747} +{"step": 4200, "loss": 0.962, "learning_rate": 0.00018359606803126997, "grad_norm": 1.1194289922714233, "token_acc": 0.7753143966197967, "gpu_alloc_gb": 12.88, "elapsed_s": 1192.9, "epoch": 0.4187437686939183} +{"step": 4210, "loss": 0.893, "learning_rate": 0.0001835073542930541, "grad_norm": 1.0793657302856445, "token_acc": 0.7841817378997803, "gpu_alloc_gb": 12.88, "elapsed_s": 1199.7, "epoch": 0.419740777666999} +{"step": 4220, "loss": 0.9961, "learning_rate": 0.00018341842287010227, "grad_norm": 1.112260103225708, "token_acc": 0.7688349604606628, "gpu_alloc_gb": 12.88, "elapsed_s": 1206.6, "epoch": 0.42073778664007977} +{"step": 4230, "loss": 0.8996, "learning_rate": 0.00018332927399423857, "grad_norm": 0.9360843896865845, "token_acc": 0.7815472245216369, "gpu_alloc_gb": 12.88, "elapsed_s": 1213.3, "epoch": 0.4217347956131605} +{"step": 4240, "loss": 0.9651, "learning_rate": 0.00018323990789785385, "grad_norm": 1.1092253923416138, "token_acc": 0.771337378025055, "gpu_alloc_gb": 12.88, "elapsed_s": 1220.1, "epoch": 0.42273180458624127} +{"step": 4250, "loss": 0.9535, "learning_rate": 0.0001831503248139053, "grad_norm": 1.0270558595657349, "token_acc": 0.7764056324958801, "gpu_alloc_gb": 12.88, "elapsed_s": 1227.1, "epoch": 0.423728813559322} +{"step": 4250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 1294.1, "epoch": 0.423728813559322} +{"step": 4250, "eval_loss": 1.2794913053512573, "eval_step": true} +{"step": 4260, "loss": 0.9656, "learning_rate": 0.00018306052497591574, "grad_norm": 1.2058261632919312, "token_acc": 0.7713423013687134, "gpu_alloc_gb": 12.88, "elapsed_s": 1335.4, "epoch": 0.4247258225324028} +{"step": 4270, "loss": 0.9595, "learning_rate": 0.0001829705086179729, "grad_norm": 0.9835702180862427, "token_acc": 0.7759280622005462, "gpu_alloc_gb": 12.88, "elapsed_s": 1342.0, "epoch": 0.42572283150548357} +{"step": 4280, "loss": 0.9293, "learning_rate": 0.00018288027597472903, "grad_norm": 1.0422282218933105, "token_acc": 0.7812872469425202, "gpu_alloc_gb": 12.88, "elapsed_s": 1348.7, "epoch": 0.4267198404785643} +{"step": 4290, "loss": 0.949, "learning_rate": 0.00018278982728140022, "grad_norm": 1.1537158489227295, "token_acc": 0.7755774021148681, "gpu_alloc_gb": 12.88, "elapsed_s": 1355.6, "epoch": 0.42771684945164506} +{"step": 4300, "loss": 0.9525, "learning_rate": 0.00018269916277376566, "grad_norm": 1.000632405281067, "token_acc": 0.7731857299804688, "gpu_alloc_gb": 12.88, "elapsed_s": 1362.2, "epoch": 0.4287138584247258} +{"step": 4310, "loss": 0.93, "learning_rate": 0.00018260828268816716, "grad_norm": 1.7879642248153687, "token_acc": 0.7775423169136048, "gpu_alloc_gb": 12.88, "elapsed_s": 1368.8, "epoch": 0.42971086739780656} +{"step": 4320, "loss": 0.9579, "learning_rate": 0.00018251718726150853, "grad_norm": 1.012149691581726, "token_acc": 0.7774353682994842, "gpu_alloc_gb": 12.88, "elapsed_s": 1375.2, "epoch": 0.4307078763708873} +{"step": 4330, "loss": 0.9036, "learning_rate": 0.00018242587673125487, "grad_norm": 1.0038970708847046, "token_acc": 0.786315792798996, "gpu_alloc_gb": 12.88, "elapsed_s": 1381.8, "epoch": 0.4317048853439681} +{"step": 4340, "loss": 0.9489, "learning_rate": 0.00018233435133543205, "grad_norm": 0.9719177484512329, "token_acc": 0.7754597544670105, "gpu_alloc_gb": 12.88, "elapsed_s": 1388.5, "epoch": 0.43270189431704886} +{"step": 4350, "loss": 0.9871, "learning_rate": 0.00018224261131262595, "grad_norm": 1.1492164134979248, "token_acc": 0.7748423397541047, "gpu_alloc_gb": 12.88, "elapsed_s": 1395.2, "epoch": 0.4336989032901296} +{"step": 4360, "loss": 0.9298, "learning_rate": 0.00018215065690198207, "grad_norm": 1.0464565753936768, "token_acc": 0.7816638588905335, "gpu_alloc_gb": 12.88, "elapsed_s": 1402.0, "epoch": 0.43469591226321036} +{"step": 4370, "loss": 0.9362, "learning_rate": 0.00018205848834320468, "grad_norm": 1.0293796062469482, "token_acc": 0.7777969658374786, "gpu_alloc_gb": 12.88, "elapsed_s": 1408.4, "epoch": 0.4356929212362911} +{"step": 4380, "loss": 0.9545, "learning_rate": 0.00018196610587655637, "grad_norm": 1.0013461112976074, "token_acc": 0.7728529274463654, "gpu_alloc_gb": 12.88, "elapsed_s": 1415.0, "epoch": 0.43668993020937186} +{"step": 4390, "loss": 0.9748, "learning_rate": 0.00018187350974285718, "grad_norm": 1.1421338319778442, "token_acc": 0.7714488863945007, "gpu_alloc_gb": 12.88, "elapsed_s": 1422.0, "epoch": 0.43768693918245266} +{"step": 4400, "loss": 0.9844, "learning_rate": 0.00018178070018348428, "grad_norm": 1.2527637481689453, "token_acc": 0.7710846900939942, "gpu_alloc_gb": 12.88, "elapsed_s": 1428.7, "epoch": 0.4386839481555334} +{"step": 4410, "loss": 0.9057, "learning_rate": 0.00018168767744037117, "grad_norm": 1.126806616783142, "token_acc": 0.781175297498703, "gpu_alloc_gb": 12.88, "elapsed_s": 1435.3, "epoch": 0.43968095712861416} +{"step": 4420, "loss": 0.9955, "learning_rate": 0.00018159444175600703, "grad_norm": 1.068666696548462, "token_acc": 0.7675468325614929, "gpu_alloc_gb": 12.88, "elapsed_s": 1442.0, "epoch": 0.4406779661016949} +{"step": 4430, "loss": 0.8745, "learning_rate": 0.00018150099337343613, "grad_norm": 1.0138754844665527, "token_acc": 0.7893431186676025, "gpu_alloc_gb": 12.88, "elapsed_s": 1448.7, "epoch": 0.44167497507477566} +{"step": 4440, "loss": 0.9427, "learning_rate": 0.00018140733253625726, "grad_norm": 1.2329784631729126, "token_acc": 0.7774293184280395, "gpu_alloc_gb": 12.88, "elapsed_s": 1455.6, "epoch": 0.4426719840478564} +{"step": 4450, "loss": 0.9421, "learning_rate": 0.00018131345948862294, "grad_norm": 1.177497386932373, "token_acc": 0.7743966281414032, "gpu_alloc_gb": 12.88, "elapsed_s": 1462.0, "epoch": 0.4436689930209372} +{"step": 4460, "loss": 0.9617, "learning_rate": 0.0001812193744752389, "grad_norm": 1.0566685199737549, "token_acc": 0.7684310972690582, "gpu_alloc_gb": 12.88, "elapsed_s": 1468.7, "epoch": 0.44466600199401796} +{"step": 4470, "loss": 0.9656, "learning_rate": 0.00018112507774136347, "grad_norm": 1.142606496810913, "token_acc": 0.7691720247268676, "gpu_alloc_gb": 12.88, "elapsed_s": 1475.3, "epoch": 0.4456630109670987} +{"step": 4480, "loss": 0.9593, "learning_rate": 0.00018103056953280687, "grad_norm": 1.0788074731826782, "token_acc": 0.772891390323639, "gpu_alloc_gb": 12.88, "elapsed_s": 1481.8, "epoch": 0.44666001994017945} +{"step": 4490, "loss": 0.9587, "learning_rate": 0.0001809358500959305, "grad_norm": 1.030353307723999, "token_acc": 0.7688432335853577, "gpu_alloc_gb": 12.88, "elapsed_s": 1488.3, "epoch": 0.4476570289132602} +{"step": 4500, "loss": 0.9149, "learning_rate": 0.00018084091967764652, "grad_norm": 1.0120561122894287, "token_acc": 0.7826905608177185, "gpu_alloc_gb": 12.88, "elapsed_s": 1495.1, "epoch": 0.44865403788634095} +{"step": 4500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 1562.0, "epoch": 0.44865403788634095} +{"step": 4500, "eval_loss": 1.2788386344909668, "eval_step": true} +{"step": 4510, "loss": 0.9174, "learning_rate": 0.000180745778525417, "grad_norm": 1.1853312253952026, "token_acc": 0.7857737421989441, "gpu_alloc_gb": 12.88, "elapsed_s": 1606.0, "epoch": 0.44965104685942175} +{"step": 4520, "loss": 0.974, "learning_rate": 0.0001806504268872533, "grad_norm": 2.2351813316345215, "token_acc": 0.7749528586864471, "gpu_alloc_gb": 12.88, "elapsed_s": 1612.7, "epoch": 0.4506480558325025} +{"step": 4530, "loss": 0.9465, "learning_rate": 0.00018055486501171556, "grad_norm": 1.1634396314620972, "token_acc": 0.7754083216190338, "gpu_alloc_gb": 12.88, "elapsed_s": 1619.6, "epoch": 0.45164506480558325} +{"step": 4540, "loss": 0.9093, "learning_rate": 0.00018045909314791188, "grad_norm": 2.4393365383148193, "token_acc": 0.7867788076400757, "gpu_alloc_gb": 12.88, "elapsed_s": 1626.3, "epoch": 0.452642073778664} +{"step": 4550, "loss": 0.8906, "learning_rate": 0.00018036311154549784, "grad_norm": 1.2105156183242798, "token_acc": 0.7806622445583343, "gpu_alloc_gb": 12.88, "elapsed_s": 1632.9, "epoch": 0.45363908275174475} +{"step": 4560, "loss": 0.9409, "learning_rate": 0.00018026692045467567, "grad_norm": 1.2074406147003174, "token_acc": 0.7770403861999512, "gpu_alloc_gb": 12.88, "elapsed_s": 1639.8, "epoch": 0.4546360917248255} +{"step": 4570, "loss": 0.9681, "learning_rate": 0.00018017052012619375, "grad_norm": 1.3482944965362549, "token_acc": 0.7704429924488068, "gpu_alloc_gb": 12.88, "elapsed_s": 1646.4, "epoch": 0.4556331006979063} +{"step": 4580, "loss": 0.9355, "learning_rate": 0.00018007391081134588, "grad_norm": 1.0155823230743408, "token_acc": 0.7783636748790741, "gpu_alloc_gb": 12.88, "elapsed_s": 1653.1, "epoch": 0.45663010967098705} +{"step": 4590, "loss": 0.9322, "learning_rate": 0.00017997709276197063, "grad_norm": 2.198665142059326, "token_acc": 0.7847121953964233, "gpu_alloc_gb": 12.88, "elapsed_s": 1659.9, "epoch": 0.4576271186440678} +{"step": 4600, "loss": 0.926, "learning_rate": 0.0001798800662304507, "grad_norm": 1.099743127822876, "token_acc": 0.7814781367778778, "gpu_alloc_gb": 12.88, "elapsed_s": 1666.5, "epoch": 0.45862412761714855} +{"step": 4610, "loss": 0.8891, "learning_rate": 0.00017978283146971228, "grad_norm": 1.3161516189575195, "token_acc": 0.7899256408214569, "gpu_alloc_gb": 12.88, "elapsed_s": 1673.2, "epoch": 0.4596211365902293} +{"step": 4620, "loss": 0.9429, "learning_rate": 0.00017968538873322428, "grad_norm": 1.4425103664398193, "token_acc": 0.7821548998355865, "gpu_alloc_gb": 12.88, "elapsed_s": 1679.9, "epoch": 0.46061814556331004} +{"step": 4630, "loss": 0.9237, "learning_rate": 0.00017958773827499787, "grad_norm": 1.336451768875122, "token_acc": 0.7848821163177491, "gpu_alloc_gb": 12.88, "elapsed_s": 1686.5, "epoch": 0.46161515453639085} +{"step": 4640, "loss": 0.9232, "learning_rate": 0.00017948988034958562, "grad_norm": 1.074847936630249, "token_acc": 0.7847678244113923, "gpu_alloc_gb": 12.88, "elapsed_s": 1693.1, "epoch": 0.4626121635094716} +{"step": 4650, "loss": 0.9789, "learning_rate": 0.000179391815212081, "grad_norm": 1.13566255569458, "token_acc": 0.774173480272293, "gpu_alloc_gb": 12.88, "elapsed_s": 1699.7, "epoch": 0.46360917248255235} +{"step": 4660, "loss": 0.8869, "learning_rate": 0.00017929354311811753, "grad_norm": 1.3228635787963867, "token_acc": 0.7952123522758484, "gpu_alloc_gb": 12.88, "elapsed_s": 1706.3, "epoch": 0.4646061814556331} +{"step": 4670, "loss": 0.91, "learning_rate": 0.00017919506432386827, "grad_norm": 1.9191392660140991, "token_acc": 0.7850312829017639, "gpu_alloc_gb": 12.88, "elapsed_s": 1712.9, "epoch": 0.46560319042871384} +{"step": 4680, "loss": 0.933, "learning_rate": 0.00017909637908604517, "grad_norm": 1.057944655418396, "token_acc": 0.7824706017971039, "gpu_alloc_gb": 12.88, "elapsed_s": 1719.8, "epoch": 0.4666001994017946} +{"step": 4690, "loss": 0.9253, "learning_rate": 0.00017899748766189822, "grad_norm": 1.0381368398666382, "token_acc": 0.7842055201530457, "gpu_alloc_gb": 12.88, "elapsed_s": 1726.4, "epoch": 0.4675972083748754} +{"step": 4700, "loss": 0.9027, "learning_rate": 0.00017889839030921494, "grad_norm": 1.9463962316513062, "token_acc": 0.7875623226165771, "gpu_alloc_gb": 12.88, "elapsed_s": 1733.2, "epoch": 0.46859421734795614} +{"step": 4710, "loss": 0.9588, "learning_rate": 0.00017879908728631966, "grad_norm": 1.0784718990325928, "token_acc": 0.7835158944129944, "gpu_alloc_gb": 12.88, "elapsed_s": 1740.1, "epoch": 0.4695912263210369} +{"step": 4720, "loss": 0.9189, "learning_rate": 0.00017869957885207282, "grad_norm": 1.2006160020828247, "token_acc": 0.7841075956821442, "gpu_alloc_gb": 12.88, "elapsed_s": 1746.6, "epoch": 0.47058823529411764} +{"step": 4730, "loss": 0.9502, "learning_rate": 0.0001785998652658704, "grad_norm": 1.5444978475570679, "token_acc": 0.7860526442527771, "gpu_alloc_gb": 12.88, "elapsed_s": 1753.3, "epoch": 0.4715852442671984} +{"step": 4740, "loss": 0.9783, "learning_rate": 0.00017849994678764306, "grad_norm": 1.1167839765548706, "token_acc": 0.7724424600601196, "gpu_alloc_gb": 12.88, "elapsed_s": 1759.9, "epoch": 0.47258225324027914} +{"step": 4750, "loss": 0.9958, "learning_rate": 0.00017839982367785561, "grad_norm": 1.1983119249343872, "token_acc": 0.7737887024879455, "gpu_alloc_gb": 12.88, "elapsed_s": 1766.5, "epoch": 0.47357926221335994} +{"step": 4750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 1833.4, "epoch": 0.47357926221335994} +{"step": 4750, "eval_loss": 1.2746877670288086, "eval_step": true} +{"step": 4760, "loss": 0.9223, "learning_rate": 0.00017829949619750635, "grad_norm": 1.2790626287460327, "token_acc": 0.7852567434310913, "gpu_alloc_gb": 12.88, "elapsed_s": 1875.5, "epoch": 0.4745762711864407} +{"step": 4770, "loss": 0.8956, "learning_rate": 0.0001781989646081262, "grad_norm": 0.9406717419624329, "token_acc": 0.7903530418872833, "gpu_alloc_gb": 12.88, "elapsed_s": 1882.0, "epoch": 0.47557328015952144} +{"step": 4780, "loss": 0.9711, "learning_rate": 0.00017809822917177825, "grad_norm": 1.231668472290039, "token_acc": 0.7732785880565644, "gpu_alloc_gb": 12.88, "elapsed_s": 1888.8, "epoch": 0.4765702891326022} +{"step": 4790, "loss": 0.9354, "learning_rate": 0.00017799729015105693, "grad_norm": 2.3938748836517334, "token_acc": 0.7829222500324249, "gpu_alloc_gb": 12.88, "elapsed_s": 1895.5, "epoch": 0.47756729810568294} +{"step": 4800, "loss": 0.92, "learning_rate": 0.00017789614780908738, "grad_norm": 1.1341418027877808, "token_acc": 0.7865439176559448, "gpu_alloc_gb": 12.88, "elapsed_s": 1902.3, "epoch": 0.4785643070787637} +{"step": 4810, "loss": 0.8982, "learning_rate": 0.00017779480240952478, "grad_norm": 1.717880129814148, "token_acc": 0.7872499942779541, "gpu_alloc_gb": 12.88, "elapsed_s": 1908.9, "epoch": 0.4795613160518445} +{"step": 4820, "loss": 0.8687, "learning_rate": 0.00017769325421655355, "grad_norm": 1.2017110586166382, "token_acc": 0.7950017154216766, "gpu_alloc_gb": 12.88, "elapsed_s": 1915.5, "epoch": 0.48055832502492524} +{"step": 4830, "loss": 0.9239, "learning_rate": 0.00017759150349488687, "grad_norm": 1.230088233947754, "token_acc": 0.787564355134964, "gpu_alloc_gb": 12.88, "elapsed_s": 1922.2, "epoch": 0.481555333998006} +{"step": 4840, "loss": 0.8858, "learning_rate": 0.00017748955050976572, "grad_norm": 1.3596343994140625, "token_acc": 0.7891520023345947, "gpu_alloc_gb": 12.88, "elapsed_s": 1928.9, "epoch": 0.48255234297108673} +{"step": 4850, "loss": 0.924, "learning_rate": 0.00017738739552695848, "grad_norm": 1.9958202838897705, "token_acc": 0.7872148633003235, "gpu_alloc_gb": 12.88, "elapsed_s": 1935.6, "epoch": 0.4835493519441675} +{"step": 4860, "loss": 0.9143, "learning_rate": 0.00017728503881275995, "grad_norm": 1.0538711547851562, "token_acc": 0.7895382821559906, "gpu_alloc_gb": 12.88, "elapsed_s": 1942.4, "epoch": 0.48454636091724823} +{"step": 4870, "loss": 0.8991, "learning_rate": 0.00017718248063399095, "grad_norm": 2.5908021926879883, "token_acc": 0.7905626654624939, "gpu_alloc_gb": 12.88, "elapsed_s": 1949.1, "epoch": 0.48554336989032904} +{"step": 4880, "loss": 0.9028, "learning_rate": 0.00017707972125799735, "grad_norm": 1.5069329738616943, "token_acc": 0.7896256983280182, "gpu_alloc_gb": 12.88, "elapsed_s": 1955.7, "epoch": 0.4865403788634098} +{"step": 4890, "loss": 0.9458, "learning_rate": 0.00017697676095264955, "grad_norm": 1.8995970487594604, "token_acc": 0.7787603974342346, "gpu_alloc_gb": 12.88, "elapsed_s": 1962.4, "epoch": 0.48753738783649053} +{"step": 4900, "loss": 0.8978, "learning_rate": 0.00017687359998634175, "grad_norm": 1.380104660987854, "token_acc": 0.7854825377464294, "gpu_alloc_gb": 12.88, "elapsed_s": 1969.0, "epoch": 0.4885343968095713} +{"step": 4910, "loss": 0.8723, "learning_rate": 0.00017677023862799112, "grad_norm": 1.1640520095825195, "token_acc": 0.79126957654953, "gpu_alloc_gb": 12.88, "elapsed_s": 1975.6, "epoch": 0.48953140578265203} +{"step": 4920, "loss": 0.9326, "learning_rate": 0.00017666667714703738, "grad_norm": 1.226270079612732, "token_acc": 0.7790299654006958, "gpu_alloc_gb": 12.88, "elapsed_s": 1982.5, "epoch": 0.4905284147557328} +{"step": 4930, "loss": 0.9208, "learning_rate": 0.00017656291581344172, "grad_norm": 1.1042190790176392, "token_acc": 0.785035502910614, "gpu_alloc_gb": 12.88, "elapsed_s": 1989.1, "epoch": 0.4915254237288136} +{"step": 4940, "loss": 0.9144, "learning_rate": 0.0001764589548976865, "grad_norm": 1.1302289962768555, "token_acc": 0.7885272383689881, "gpu_alloc_gb": 12.88, "elapsed_s": 1995.8, "epoch": 0.49252243270189433} +{"step": 4950, "loss": 0.9274, "learning_rate": 0.00017635479467077424, "grad_norm": 0.9534023404121399, "token_acc": 0.7864316999912262, "gpu_alloc_gb": 12.88, "elapsed_s": 2002.4, "epoch": 0.4935194416749751} +{"step": 4960, "loss": 0.8971, "learning_rate": 0.00017625043540422697, "grad_norm": 2.436746120452881, "token_acc": 0.7891119241714477, "gpu_alloc_gb": 12.88, "elapsed_s": 2009.1, "epoch": 0.4945164506480558} +{"step": 4970, "loss": 0.9279, "learning_rate": 0.00017614587737008566, "grad_norm": 1.193966031074524, "token_acc": 0.7861327767372132, "gpu_alloc_gb": 12.88, "elapsed_s": 2015.7, "epoch": 0.4955134596211366} +{"step": 4980, "loss": 0.886, "learning_rate": 0.00017604112084090945, "grad_norm": 1.3309621810913086, "token_acc": 0.7895757257938385, "gpu_alloc_gb": 12.88, "elapsed_s": 2022.6, "epoch": 0.4965104685942173} +{"step": 4990, "loss": 0.8884, "learning_rate": 0.00017593616608977474, "grad_norm": 1.268131136894226, "token_acc": 0.7929963231086731, "gpu_alloc_gb": 12.88, "elapsed_s": 2029.4, "epoch": 0.49750747756729813} +{"step": 5000, "loss": 0.9441, "learning_rate": 0.0001758310133902749, "grad_norm": 1.39078950881958, "token_acc": 0.7839363813400269, "gpu_alloc_gb": 12.88, "elapsed_s": 2036.0, "epoch": 0.4985044865403789} +{"step": 5000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 2102.9, "epoch": 0.4985044865403789} +{"step": 5000, "eval_loss": 1.2931139469146729, "eval_step": true} +{"step": 5010, "loss": 0.9289, "learning_rate": 0.00017572566301651908, "grad_norm": 1.3242969512939453, "token_acc": 0.7810072004795074, "gpu_alloc_gb": 12.88, "elapsed_s": 2145.9, "epoch": 0.4995014955134596} +{"step": 5020, "loss": 0.8352, "learning_rate": 0.00017562011524313185, "grad_norm": 1.0185080766677856, "token_acc": 0.8045570373535156, "gpu_alloc_gb": 12.88, "elapsed_s": 2152.5, "epoch": 0.5004985044865404} +{"step": 5030, "loss": 0.8474, "learning_rate": 0.00017551437034525234, "grad_norm": 0.9387386441230774, "token_acc": 0.8016848981380462, "gpu_alloc_gb": 12.88, "elapsed_s": 2158.9, "epoch": 0.5014955134596212} +{"step": 5040, "loss": 0.9261, "learning_rate": 0.00017540842859853343, "grad_norm": 1.040710687637329, "token_acc": 0.7876585006713868, "gpu_alloc_gb": 12.88, "elapsed_s": 2165.5, "epoch": 0.5024925224327019} +{"step": 5050, "loss": 0.9343, "learning_rate": 0.00017530229027914134, "grad_norm": 1.2023578882217407, "token_acc": 0.7842430353164673, "gpu_alloc_gb": 12.88, "elapsed_s": 2172.1, "epoch": 0.5034895314057827} +{"step": 5060, "loss": 0.8971, "learning_rate": 0.00017519595566375454, "grad_norm": 1.2107902765274048, "token_acc": 0.7926432073116303, "gpu_alloc_gb": 12.88, "elapsed_s": 2178.6, "epoch": 0.5044865403788634} +{"step": 5070, "loss": 0.9569, "learning_rate": 0.0001750894250295633, "grad_norm": 0.937213122844696, "token_acc": 0.7810645401477814, "gpu_alloc_gb": 12.88, "elapsed_s": 2185.2, "epoch": 0.5054835493519442} +{"step": 5080, "loss": 0.9186, "learning_rate": 0.00017498269865426876, "grad_norm": 1.185049295425415, "token_acc": 0.7873573541641236, "gpu_alloc_gb": 12.88, "elapsed_s": 2191.7, "epoch": 0.5064805583250249} +{"step": 5090, "loss": 0.8868, "learning_rate": 0.00017487577681608242, "grad_norm": 1.0639276504516602, "token_acc": 0.7886783182621002, "gpu_alloc_gb": 12.88, "elapsed_s": 2198.3, "epoch": 0.5074775672981057} +{"step": 5100, "loss": 0.9011, "learning_rate": 0.00017476865979372527, "grad_norm": 1.6604104042053223, "token_acc": 0.7907766282558442, "gpu_alloc_gb": 12.88, "elapsed_s": 2205.1, "epoch": 0.5084745762711864} +{"step": 5110, "loss": 0.9553, "learning_rate": 0.0001746613478664271, "grad_norm": 2.789069175720215, "token_acc": 0.7836264848709107, "gpu_alloc_gb": 12.88, "elapsed_s": 2211.6, "epoch": 0.5094715852442672} +{"step": 5120, "loss": 0.9291, "learning_rate": 0.00017455384131392573, "grad_norm": 1.4117984771728516, "token_acc": 0.7873848795890808, "gpu_alloc_gb": 12.88, "elapsed_s": 2218.3, "epoch": 0.5104685942173479} +{"step": 5130, "loss": 0.8306, "learning_rate": 0.00017444614041646643, "grad_norm": 1.003393530845642, "token_acc": 0.8009976029396058, "gpu_alloc_gb": 12.88, "elapsed_s": 2224.8, "epoch": 0.5114656031904287} +{"step": 5140, "loss": 0.9253, "learning_rate": 0.00017433824545480094, "grad_norm": 1.0767114162445068, "token_acc": 0.7866297483444213, "gpu_alloc_gb": 12.88, "elapsed_s": 2231.4, "epoch": 0.5124626121635095} +{"step": 5150, "loss": 0.9024, "learning_rate": 0.00017423015671018703, "grad_norm": 1.2530882358551025, "token_acc": 0.7931662499904633, "gpu_alloc_gb": 12.88, "elapsed_s": 2238.1, "epoch": 0.5134596211365903} +{"step": 5160, "loss": 0.9186, "learning_rate": 0.0001741218744643875, "grad_norm": 1.5623441934585571, "token_acc": 0.7868448555469513, "gpu_alloc_gb": 12.88, "elapsed_s": 2244.6, "epoch": 0.514456630109671} +{"step": 5170, "loss": 0.9205, "learning_rate": 0.0001740133989996696, "grad_norm": 1.381467342376709, "token_acc": 0.7845302283763885, "gpu_alloc_gb": 12.88, "elapsed_s": 2251.4, "epoch": 0.5154536390827518} +{"step": 5180, "loss": 0.9167, "learning_rate": 0.0001739047305988043, "grad_norm": 1.0269335508346558, "token_acc": 0.7872448265552521, "gpu_alloc_gb": 12.88, "elapsed_s": 2258.1, "epoch": 0.5164506480558325} +{"step": 5190, "loss": 0.9495, "learning_rate": 0.0001737958695450655, "grad_norm": 1.3674908876419067, "token_acc": 0.7839681446552277, "gpu_alloc_gb": 12.88, "elapsed_s": 2264.6, "epoch": 0.5174476570289133} +{"step": 5200, "loss": 1.0064, "learning_rate": 0.00017368681612222922, "grad_norm": 1.0066567659378052, "token_acc": 0.7725669324398041, "gpu_alloc_gb": 12.88, "elapsed_s": 2271.4, "epoch": 0.518444666001994} +{"step": 5210, "loss": 0.8545, "learning_rate": 0.00017357757061457304, "grad_norm": 1.0700631141662598, "token_acc": 0.797204852104187, "gpu_alloc_gb": 12.88, "elapsed_s": 2278.0, "epoch": 0.5194416749750748} +{"step": 5220, "loss": 0.8944, "learning_rate": 0.00017346813330687522, "grad_norm": 2.4273834228515625, "token_acc": 0.7913686573505402, "gpu_alloc_gb": 12.88, "elapsed_s": 2284.4, "epoch": 0.5204386839481555} +{"step": 5230, "loss": 0.9167, "learning_rate": 0.00017335850448441402, "grad_norm": 1.0306506156921387, "token_acc": 0.7909862756729126, "gpu_alloc_gb": 12.88, "elapsed_s": 2291.0, "epoch": 0.5214356929212363} +{"step": 5240, "loss": 0.8845, "learning_rate": 0.00017324868443296688, "grad_norm": 3.980254888534546, "token_acc": 0.7938331246376038, "gpu_alloc_gb": 12.88, "elapsed_s": 2297.5, "epoch": 0.522432701894317} +{"step": 5250, "loss": 0.955, "learning_rate": 0.0001731386734388098, "grad_norm": 1.3472262620925903, "token_acc": 0.7811511158943176, "gpu_alloc_gb": 12.88, "elapsed_s": 2304.2, "epoch": 0.5234297108673978} +{"step": 5250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 2371.0, "epoch": 0.5234297108673978} +{"step": 5250, "eval_loss": 1.285585641860962, "eval_step": true} +{"step": 5260, "loss": 0.9097, "learning_rate": 0.0001730284717887165, "grad_norm": 1.004310131072998, "token_acc": 0.789059853553772, "gpu_alloc_gb": 12.88, "elapsed_s": 2421.5, "epoch": 0.5244267198404786} +{"step": 5270, "loss": 0.9025, "learning_rate": 0.0001729180797699577, "grad_norm": 1.2281912565231323, "token_acc": 0.7867845594882965, "gpu_alloc_gb": 12.88, "elapsed_s": 2428.3, "epoch": 0.5254237288135594} +{"step": 5280, "loss": 0.9152, "learning_rate": 0.00017280749767030032, "grad_norm": 1.9503090381622314, "token_acc": 0.7861041605472565, "gpu_alloc_gb": 12.88, "elapsed_s": 2435.0, "epoch": 0.5264207377866401} +{"step": 5290, "loss": 0.9146, "learning_rate": 0.00017269672577800683, "grad_norm": 1.338590383529663, "token_acc": 0.7879822015762329, "gpu_alloc_gb": 12.88, "elapsed_s": 2441.7, "epoch": 0.5274177467597209} +{"step": 5300, "loss": 0.8699, "learning_rate": 0.00017258576438183444, "grad_norm": 1.0252115726470947, "token_acc": 0.7959616541862488, "gpu_alloc_gb": 12.88, "elapsed_s": 2448.1, "epoch": 0.5284147557328016} +{"step": 5310, "loss": 0.968, "learning_rate": 0.00017247461377103437, "grad_norm": 1.5827606916427612, "token_acc": 0.7791219830513001, "gpu_alloc_gb": 12.88, "elapsed_s": 2454.8, "epoch": 0.5294117647058824} +{"step": 5320, "loss": 0.9315, "learning_rate": 0.000172363274235351, "grad_norm": 1.2717528343200684, "token_acc": 0.7842694222927094, "gpu_alloc_gb": 12.88, "elapsed_s": 2461.6, "epoch": 0.5304087736789631} +{"step": 5330, "loss": 0.917, "learning_rate": 0.00017225174606502131, "grad_norm": 1.4163107872009277, "token_acc": 0.7883171379566193, "gpu_alloc_gb": 12.88, "elapsed_s": 2468.5, "epoch": 0.5314057826520439} +{"step": 5340, "loss": 0.932, "learning_rate": 0.00017214002955077393, "grad_norm": 1.3151018619537354, "token_acc": 0.7873424708843231, "gpu_alloc_gb": 12.88, "elapsed_s": 2475.3, "epoch": 0.5324027916251246} +{"step": 5350, "loss": 0.9348, "learning_rate": 0.00017202812498382848, "grad_norm": 1.0271621942520142, "token_acc": 0.78819540143013, "gpu_alloc_gb": 12.88, "elapsed_s": 2482.1, "epoch": 0.5333998005982054} +{"step": 5360, "loss": 0.8938, "learning_rate": 0.00017191603265589476, "grad_norm": 0.9632974863052368, "token_acc": 0.7938996493816376, "gpu_alloc_gb": 12.88, "elapsed_s": 2488.6, "epoch": 0.5343968095712861} +{"step": 5370, "loss": 0.8706, "learning_rate": 0.0001718037528591721, "grad_norm": 1.1666889190673828, "token_acc": 0.793175333738327, "gpu_alloc_gb": 12.88, "elapsed_s": 2495.3, "epoch": 0.5353938185443669} +{"step": 5380, "loss": 0.8651, "learning_rate": 0.00017169128588634841, "grad_norm": 0.941419243812561, "token_acc": 0.7984056532382965, "gpu_alloc_gb": 12.88, "elapsed_s": 2502.0, "epoch": 0.5363908275174477} +{"step": 5390, "loss": 0.8943, "learning_rate": 0.00017157863203059968, "grad_norm": 1.0446619987487793, "token_acc": 0.788063007593155, "gpu_alloc_gb": 12.88, "elapsed_s": 2508.5, "epoch": 0.5373878364905285} +{"step": 5400, "loss": 0.894, "learning_rate": 0.00017146579158558884, "grad_norm": 1.480899453163147, "token_acc": 0.7914794087409973, "gpu_alloc_gb": 12.88, "elapsed_s": 2515.2, "epoch": 0.5383848454636092} +{"step": 5410, "loss": 0.9132, "learning_rate": 0.00017135276484546544, "grad_norm": 1.835598111152649, "token_acc": 0.7890581786632538, "gpu_alloc_gb": 12.88, "elapsed_s": 2521.8, "epoch": 0.53938185443669} +{"step": 5420, "loss": 0.8969, "learning_rate": 0.00017123955210486454, "grad_norm": 2.0447559356689453, "token_acc": 0.793788343667984, "gpu_alloc_gb": 12.88, "elapsed_s": 2528.4, "epoch": 0.5403788634097707} +{"step": 5430, "loss": 0.9008, "learning_rate": 0.00017112615365890606, "grad_norm": 1.745784878730774, "token_acc": 0.7917542040348053, "gpu_alloc_gb": 12.88, "elapsed_s": 2535.1, "epoch": 0.5413758723828515} +{"step": 5440, "loss": 0.8932, "learning_rate": 0.00017101256980319406, "grad_norm": 1.1462048292160034, "token_acc": 0.7900681912899017, "gpu_alloc_gb": 12.88, "elapsed_s": 2541.7, "epoch": 0.5423728813559322} +{"step": 5450, "loss": 0.8587, "learning_rate": 0.00017089880083381585, "grad_norm": 0.9348031282424927, "token_acc": 0.7976197481155396, "gpu_alloc_gb": 12.88, "elapsed_s": 2548.5, "epoch": 0.543369890329013} +{"step": 5460, "loss": 0.874, "learning_rate": 0.00017078484704734134, "grad_norm": 1.2416960000991821, "token_acc": 0.7896863520145416, "gpu_alloc_gb": 12.88, "elapsed_s": 2555.0, "epoch": 0.5443668993020937} +{"step": 5470, "loss": 0.8892, "learning_rate": 0.00017067070874082226, "grad_norm": 1.3523991107940674, "token_acc": 0.7948075056076049, "gpu_alloc_gb": 12.88, "elapsed_s": 2561.7, "epoch": 0.5453639082751744} +{"step": 5480, "loss": 0.8314, "learning_rate": 0.00017055638621179127, "grad_norm": 0.9935023784637451, "token_acc": 0.8043702244758606, "gpu_alloc_gb": 12.88, "elapsed_s": 2568.1, "epoch": 0.5463609172482552} +{"step": 5490, "loss": 0.9031, "learning_rate": 0.00017044187975826124, "grad_norm": 0.9687727689743042, "token_acc": 0.789616447687149, "gpu_alloc_gb": 12.88, "elapsed_s": 2574.9, "epoch": 0.5473579262213359} +{"step": 5500, "loss": 0.9126, "learning_rate": 0.0001703271896787246, "grad_norm": 1.2027981281280518, "token_acc": 0.7912517964839936, "gpu_alloc_gb": 12.88, "elapsed_s": 2581.6, "epoch": 0.5483549351944168} +{"step": 5500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 2648.6, "epoch": 0.5483549351944168} +{"step": 5500, "eval_loss": 1.279252290725708, "eval_step": true} +{"step": 5510, "loss": 0.89, "learning_rate": 0.00017021231627215234, "grad_norm": 1.0630139112472534, "token_acc": 0.7893257379531861, "gpu_alloc_gb": 12.88, "elapsed_s": 2695.8, "epoch": 0.5493519441674976} +{"step": 5520, "loss": 0.8969, "learning_rate": 0.00017009725983799335, "grad_norm": 1.8759162425994873, "token_acc": 0.792407339811325, "gpu_alloc_gb": 12.88, "elapsed_s": 2702.7, "epoch": 0.5503489531405783} +{"step": 5530, "loss": 0.8915, "learning_rate": 0.0001699820206761737, "grad_norm": 1.233669638633728, "token_acc": 0.7925592482089996, "gpu_alloc_gb": 12.88, "elapsed_s": 2709.3, "epoch": 0.551345962113659} +{"step": 5540, "loss": 0.8786, "learning_rate": 0.00016986659908709576, "grad_norm": 1.1277716159820557, "token_acc": 0.7946866452693939, "gpu_alloc_gb": 12.88, "elapsed_s": 2716.0, "epoch": 0.5523429710867398} +{"step": 5550, "loss": 0.8823, "learning_rate": 0.00016975099537163744, "grad_norm": 2.6591498851776123, "token_acc": 0.7946939647197724, "gpu_alloc_gb": 12.88, "elapsed_s": 2722.6, "epoch": 0.5533399800598205} +{"step": 5560, "loss": 0.9189, "learning_rate": 0.00016963520983115138, "grad_norm": 3.649806261062622, "token_acc": 0.7889827072620392, "gpu_alloc_gb": 12.88, "elapsed_s": 2729.4, "epoch": 0.5543369890329013} +{"step": 5570, "loss": 0.9543, "learning_rate": 0.00016951924276746425, "grad_norm": 1.5527987480163574, "token_acc": 0.7774505913257599, "gpu_alloc_gb": 12.88, "elapsed_s": 2736.2, "epoch": 0.555333998005982} +{"step": 5580, "loss": 0.8979, "learning_rate": 0.00016940309448287586, "grad_norm": 2.4094977378845215, "token_acc": 0.7918379604816437, "gpu_alloc_gb": 12.88, "elapsed_s": 2742.8, "epoch": 0.5563310069790628} +{"step": 5590, "loss": 0.9247, "learning_rate": 0.0001692867652801585, "grad_norm": 1.395956039428711, "token_acc": 0.785673326253891, "gpu_alloc_gb": 12.88, "elapsed_s": 2749.4, "epoch": 0.5573280159521435} +{"step": 5600, "loss": 0.8915, "learning_rate": 0.000169170255462556, "grad_norm": 1.2495639324188232, "token_acc": 0.7894159197807312, "gpu_alloc_gb": 12.88, "elapsed_s": 2756.1, "epoch": 0.5583250249252243} +{"step": 5610, "loss": 0.9034, "learning_rate": 0.000169053565333783, "grad_norm": 1.7336766719818115, "token_acc": 0.79182208776474, "gpu_alloc_gb": 12.88, "elapsed_s": 2762.9, "epoch": 0.559322033898305} +{"step": 5620, "loss": 0.8996, "learning_rate": 0.00016893669519802424, "grad_norm": 1.3346505165100098, "token_acc": 0.7900114834308625, "gpu_alloc_gb": 12.88, "elapsed_s": 2769.5, "epoch": 0.5603190428713859} +{"step": 5630, "loss": 0.9082, "learning_rate": 0.00016881964535993366, "grad_norm": 1.012860894203186, "token_acc": 0.7882323920726776, "gpu_alloc_gb": 12.88, "elapsed_s": 2776.4, "epoch": 0.5613160518444666} +{"step": 5640, "loss": 0.8788, "learning_rate": 0.00016870241612463365, "grad_norm": 2.5158798694610596, "token_acc": 0.7911333739757538, "gpu_alloc_gb": 12.88, "elapsed_s": 2782.9, "epoch": 0.5623130608175474} +{"step": 5650, "loss": 0.9349, "learning_rate": 0.0001685850077977142, "grad_norm": 1.2341268062591553, "token_acc": 0.7862854719161987, "gpu_alloc_gb": 12.88, "elapsed_s": 2789.7, "epoch": 0.5633100697906281} +{"step": 5660, "loss": 0.9345, "learning_rate": 0.00016846742068523223, "grad_norm": 1.5583255290985107, "token_acc": 0.7871057391166687, "gpu_alloc_gb": 12.88, "elapsed_s": 2796.3, "epoch": 0.5643070787637089} +{"step": 5670, "loss": 0.8434, "learning_rate": 0.0001683496550937107, "grad_norm": 2.565128803253174, "token_acc": 0.7986881613731385, "gpu_alloc_gb": 12.88, "elapsed_s": 2803.0, "epoch": 0.5653040877367896} +{"step": 5680, "loss": 0.9078, "learning_rate": 0.00016823171133013775, "grad_norm": 1.8654110431671143, "token_acc": 0.7934959769248963, "gpu_alloc_gb": 12.88, "elapsed_s": 2809.8, "epoch": 0.5663010967098704} +{"step": 5690, "loss": 0.9333, "learning_rate": 0.00016811358970196606, "grad_norm": 1.0432677268981934, "token_acc": 0.7867594063282013, "gpu_alloc_gb": 12.88, "elapsed_s": 2816.4, "epoch": 0.5672981056829511} +{"step": 5700, "loss": 0.875, "learning_rate": 0.00016799529051711193, "grad_norm": 1.1854701042175293, "token_acc": 0.798929500579834, "gpu_alloc_gb": 12.88, "elapsed_s": 2823.1, "epoch": 0.5682951146560319} +{"step": 5710, "loss": 0.8801, "learning_rate": 0.00016787681408395448, "grad_norm": 2.2103171348571777, "token_acc": 0.7957483112812043, "gpu_alloc_gb": 12.88, "elapsed_s": 2829.8, "epoch": 0.5692921236291126} +{"step": 5720, "loss": 0.8879, "learning_rate": 0.00016775816071133495, "grad_norm": 1.330859661102295, "token_acc": 0.7889693558216095, "gpu_alloc_gb": 12.88, "elapsed_s": 2836.6, "epoch": 0.5702891326021934} +{"step": 5730, "loss": 0.9009, "learning_rate": 0.0001676393307085557, "grad_norm": 1.144083857536316, "token_acc": 0.793274211883545, "gpu_alloc_gb": 12.88, "elapsed_s": 2843.2, "epoch": 0.5712861415752741} +{"step": 5740, "loss": 0.8819, "learning_rate": 0.0001675203243853797, "grad_norm": 1.1284936666488647, "token_acc": 0.7919538617134094, "gpu_alloc_gb": 12.88, "elapsed_s": 2849.8, "epoch": 0.5722831505483549} +{"step": 5750, "loss": 0.9269, "learning_rate": 0.00016740114205202934, "grad_norm": 8.32348918914795, "token_acc": 0.7864688515663147, "gpu_alloc_gb": 12.88, "elapsed_s": 2856.8, "epoch": 0.5732801595214357} +{"step": 5750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 2923.6, "epoch": 0.5732801595214357} +{"step": 5750, "eval_loss": 1.473989725112915, "eval_step": true} +{"step": 5760, "loss": 0.9112, "learning_rate": 0.00016728178401918603, "grad_norm": 1.356974720954895, "token_acc": 0.787065190076828, "gpu_alloc_gb": 12.88, "elapsed_s": 2968.1, "epoch": 0.5742771684945165} +{"step": 5770, "loss": 0.9102, "learning_rate": 0.00016716225059798908, "grad_norm": 1.2447377443313599, "token_acc": 0.7894000947475434, "gpu_alloc_gb": 12.88, "elapsed_s": 2975.0, "epoch": 0.5752741774675972} +{"step": 5780, "loss": 0.9304, "learning_rate": 0.00016704254210003495, "grad_norm": 1.2575139999389648, "token_acc": 0.7822899520397186, "gpu_alloc_gb": 12.88, "elapsed_s": 2981.5, "epoch": 0.576271186440678} +{"step": 5790, "loss": 0.8731, "learning_rate": 0.00016692265883737662, "grad_norm": 1.1716543436050415, "token_acc": 0.7930907964706421, "gpu_alloc_gb": 12.88, "elapsed_s": 2988.0, "epoch": 0.5772681954137587} +{"step": 5800, "loss": 0.8727, "learning_rate": 0.0001668026011225225, "grad_norm": 1.725606918334961, "token_acc": 0.7922214388847351, "gpu_alloc_gb": 12.88, "elapsed_s": 2994.4, "epoch": 0.5782652043868395} +{"step": 5810, "loss": 0.9141, "learning_rate": 0.00016668236926843587, "grad_norm": 1.47946035861969, "token_acc": 0.7877192676067353, "gpu_alloc_gb": 12.88, "elapsed_s": 3001.0, "epoch": 0.5792622133599202} +{"step": 5820, "loss": 0.9439, "learning_rate": 0.00016656196358853396, "grad_norm": 1.3411779403686523, "token_acc": 0.7821993052959442, "gpu_alloc_gb": 12.88, "elapsed_s": 3007.9, "epoch": 0.580259222333001} +{"step": 5830, "loss": 0.8748, "learning_rate": 0.00016644138439668698, "grad_norm": 1.0842550992965698, "token_acc": 0.7910940170288085, "gpu_alloc_gb": 12.88, "elapsed_s": 3014.6, "epoch": 0.5812562313060817} +{"step": 5840, "loss": 0.9229, "learning_rate": 0.00016632063200721758, "grad_norm": 1.0492488145828247, "token_acc": 0.7823178887367248, "gpu_alloc_gb": 12.88, "elapsed_s": 3021.2, "epoch": 0.5822532402791625} +{"step": 5850, "loss": 0.9536, "learning_rate": 0.00016619970673489984, "grad_norm": 1.6167627573013306, "token_acc": 0.7771215558052063, "gpu_alloc_gb": 12.88, "elapsed_s": 3027.9, "epoch": 0.5832502492522432} +{"step": 5860, "loss": 0.8806, "learning_rate": 0.00016607860889495857, "grad_norm": 1.379052996635437, "token_acc": 0.797352534532547, "gpu_alloc_gb": 12.88, "elapsed_s": 3034.4, "epoch": 0.584247258225324} +{"step": 5870, "loss": 0.8833, "learning_rate": 0.0001659573388030683, "grad_norm": 1.6041009426116943, "token_acc": 0.7932281792163849, "gpu_alloc_gb": 12.88, "elapsed_s": 3041.1, "epoch": 0.5852442671984048} +{"step": 5880, "loss": 0.9016, "learning_rate": 0.00016583589677535273, "grad_norm": 1.0521941184997559, "token_acc": 0.7860739052295684, "gpu_alloc_gb": 12.88, "elapsed_s": 3047.5, "epoch": 0.5862412761714856} +{"step": 5890, "loss": 0.9042, "learning_rate": 0.0001657142831283837, "grad_norm": 1.1471725702285767, "token_acc": 0.7860418617725372, "gpu_alloc_gb": 12.88, "elapsed_s": 3054.3, "epoch": 0.5872382851445663} +{"step": 5900, "loss": 0.92, "learning_rate": 0.00016559249817918033, "grad_norm": 1.2651293277740479, "token_acc": 0.7896973371505738, "gpu_alloc_gb": 12.88, "elapsed_s": 3061.1, "epoch": 0.5882352941176471} +{"step": 5910, "loss": 0.8912, "learning_rate": 0.00016547054224520842, "grad_norm": 1.1239463090896606, "token_acc": 0.7923783540725708, "gpu_alloc_gb": 12.88, "elapsed_s": 3067.5, "epoch": 0.5892323030907278} +{"step": 5920, "loss": 0.8767, "learning_rate": 0.00016534841564437946, "grad_norm": 2.483574628829956, "token_acc": 0.7916670262813568, "gpu_alloc_gb": 12.88, "elapsed_s": 3074.1, "epoch": 0.5902293120638086} +{"step": 5930, "loss": 0.8799, "learning_rate": 0.00016522611869504973, "grad_norm": 1.1082851886749268, "token_acc": 0.7933678269386292, "gpu_alloc_gb": 12.88, "elapsed_s": 3080.7, "epoch": 0.5912263210368893} +{"step": 5940, "loss": 0.8807, "learning_rate": 0.00016510365171601966, "grad_norm": 1.8260389566421509, "token_acc": 0.7943045318126678, "gpu_alloc_gb": 12.88, "elapsed_s": 3087.2, "epoch": 0.5922233300099701} +{"step": 5950, "loss": 0.9121, "learning_rate": 0.00016498101502653297, "grad_norm": 3.1134564876556396, "token_acc": 0.7864190936088562, "gpu_alloc_gb": 12.88, "elapsed_s": 3093.9, "epoch": 0.5932203389830508} +{"step": 5960, "loss": 0.8646, "learning_rate": 0.0001648582089462756, "grad_norm": 1.3865187168121338, "token_acc": 0.7973354697227478, "gpu_alloc_gb": 12.88, "elapsed_s": 3100.5, "epoch": 0.5942173479561316} +{"step": 5970, "loss": 0.8673, "learning_rate": 0.0001647352337953752, "grad_norm": 1.1817680597305298, "token_acc": 0.7965259611606598, "gpu_alloc_gb": 12.88, "elapsed_s": 3107.1, "epoch": 0.5952143569292123} +{"step": 5980, "loss": 0.9237, "learning_rate": 0.00016461208989440013, "grad_norm": 5.926103591918945, "token_acc": 0.7849665999412536, "gpu_alloc_gb": 12.88, "elapsed_s": 3114.0, "epoch": 0.5962113659022931} +{"step": 5990, "loss": 0.8765, "learning_rate": 0.00016448877756435856, "grad_norm": 1.3704044818878174, "token_acc": 0.793124121427536, "gpu_alloc_gb": 12.88, "elapsed_s": 3120.6, "epoch": 0.5972083748753739} +{"step": 6000, "loss": 0.9099, "learning_rate": 0.0001643652971266978, "grad_norm": 1.0877588987350464, "token_acc": 0.7923658907413482, "gpu_alloc_gb": 12.88, "elapsed_s": 3127.2, "epoch": 0.5982053838484547} +{"step": 6000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 3194.1, "epoch": 0.5982053838484547} +{"step": 6000, "eval_loss": 1.2562572956085205, "eval_step": true} +{"step": 6010, "loss": 0.9026, "learning_rate": 0.00016424164890330333, "grad_norm": 1.0611048936843872, "token_acc": 0.7905822932720185, "gpu_alloc_gb": 12.88, "elapsed_s": 3237.8, "epoch": 0.5992023928215354} +{"step": 6020, "loss": 0.9313, "learning_rate": 0.00016411783321649805, "grad_norm": 2.2581946849823, "token_acc": 0.7886281609535217, "gpu_alloc_gb": 12.88, "elapsed_s": 3244.4, "epoch": 0.6001994017946162} +{"step": 6030, "loss": 0.8907, "learning_rate": 0.00016399385038904138, "grad_norm": 1.0542857646942139, "token_acc": 0.7907134890556335, "gpu_alloc_gb": 12.88, "elapsed_s": 3250.8, "epoch": 0.6011964107676969} +{"step": 6040, "loss": 0.9219, "learning_rate": 0.0001638697007441284, "grad_norm": 2.1800942420959473, "token_acc": 0.7859949052333832, "gpu_alloc_gb": 12.88, "elapsed_s": 3257.6, "epoch": 0.6021934197407777} +{"step": 6050, "loss": 0.8986, "learning_rate": 0.00016374538460538915, "grad_norm": 1.5477687120437622, "token_acc": 0.79115589261055, "gpu_alloc_gb": 12.88, "elapsed_s": 3264.3, "epoch": 0.6031904287138584} +{"step": 6060, "loss": 0.8061, "learning_rate": 0.00016362090229688755, "grad_norm": 1.19125235080719, "token_acc": 0.807897424697876, "gpu_alloc_gb": 12.88, "elapsed_s": 3271.0, "epoch": 0.6041874376869392} +{"step": 6070, "loss": 0.8738, "learning_rate": 0.00016349625414312078, "grad_norm": 2.8927764892578125, "token_acc": 0.7955683290958404, "gpu_alloc_gb": 12.88, "elapsed_s": 3277.5, "epoch": 0.6051844466600199} +{"step": 6080, "loss": 0.8749, "learning_rate": 0.0001633714404690183, "grad_norm": 3.7819104194641113, "token_acc": 0.7970229864120484, "gpu_alloc_gb": 12.88, "elapsed_s": 3284.2, "epoch": 0.6061814556331007} +{"step": 6090, "loss": 0.9108, "learning_rate": 0.00016324646159994103, "grad_norm": 0.967593252658844, "token_acc": 0.7912114202976227, "gpu_alloc_gb": 12.88, "elapsed_s": 3291.0, "epoch": 0.6071784646061814} +{"step": 6100, "loss": 0.9059, "learning_rate": 0.00016312131786168062, "grad_norm": 1.100035548210144, "token_acc": 0.7957141280174256, "gpu_alloc_gb": 12.88, "elapsed_s": 3297.7, "epoch": 0.6081754735792622} +{"step": 6110, "loss": 0.8927, "learning_rate": 0.0001629960095804583, "grad_norm": 2.882683038711548, "token_acc": 0.791493582725525, "gpu_alloc_gb": 12.88, "elapsed_s": 3304.3, "epoch": 0.609172482552343} +{"step": 6120, "loss": 0.9194, "learning_rate": 0.00016287053708292448, "grad_norm": 1.136717438697815, "token_acc": 0.7902750253677369, "gpu_alloc_gb": 12.88, "elapsed_s": 3311.0, "epoch": 0.6101694915254238} +{"step": 6130, "loss": 0.9035, "learning_rate": 0.00016274490069615737, "grad_norm": 1.132293939590454, "token_acc": 0.7896208703517914, "gpu_alloc_gb": 12.88, "elapsed_s": 3317.8, "epoch": 0.6111665004985045} +{"step": 6140, "loss": 0.8675, "learning_rate": 0.00016261910074766265, "grad_norm": 1.7395672798156738, "token_acc": 0.7939759314060211, "gpu_alloc_gb": 12.88, "elapsed_s": 3324.5, "epoch": 0.6121635094715853} +{"step": 6150, "loss": 0.8896, "learning_rate": 0.00016249313756537222, "grad_norm": 1.0622413158416748, "token_acc": 0.7948879361152649, "gpu_alloc_gb": 12.88, "elapsed_s": 3331.1, "epoch": 0.613160518444666} +{"step": 6160, "loss": 0.8638, "learning_rate": 0.00016236701147764347, "grad_norm": 1.4660074710845947, "token_acc": 0.7989866495132446, "gpu_alloc_gb": 12.88, "elapsed_s": 3337.5, "epoch": 0.6141575274177468} +{"step": 6170, "loss": 0.8289, "learning_rate": 0.00016224072281325862, "grad_norm": 1.6536816358566284, "token_acc": 0.7962073862552643, "gpu_alloc_gb": 12.88, "elapsed_s": 3344.2, "epoch": 0.6151545363908275} +{"step": 6180, "loss": 0.8823, "learning_rate": 0.0001621142719014235, "grad_norm": 4.599748134613037, "token_acc": 0.7944949805736542, "gpu_alloc_gb": 12.88, "elapsed_s": 3350.9, "epoch": 0.6161515453639083} +{"step": 6190, "loss": 0.9185, "learning_rate": 0.00016198765907176702, "grad_norm": 1.5138541460037231, "token_acc": 0.7900837361812592, "gpu_alloc_gb": 12.88, "elapsed_s": 3357.6, "epoch": 0.617148554336989} +{"step": 6200, "loss": 0.9109, "learning_rate": 0.00016186088465434007, "grad_norm": 2.2303924560546875, "token_acc": 0.7905972599983215, "gpu_alloc_gb": 12.88, "elapsed_s": 3364.0, "epoch": 0.6181455633100698} +{"step": 6210, "loss": 0.8976, "learning_rate": 0.0001617339489796148, "grad_norm": 1.00619375705719, "token_acc": 0.7939126789569855, "gpu_alloc_gb": 12.88, "elapsed_s": 3370.7, "epoch": 0.6191425722831505} +{"step": 6220, "loss": 0.884, "learning_rate": 0.00016160685237848375, "grad_norm": 1.9487584829330444, "token_acc": 0.7923928916454315, "gpu_alloc_gb": 12.88, "elapsed_s": 3377.3, "epoch": 0.6201395812562313} +{"step": 6230, "loss": 0.8839, "learning_rate": 0.00016147959518225896, "grad_norm": 3.137899398803711, "token_acc": 0.7926324665546417, "gpu_alloc_gb": 12.88, "elapsed_s": 3384.0, "epoch": 0.6211365902293121} +{"step": 6240, "loss": 0.883, "learning_rate": 0.00016135217772267108, "grad_norm": 0.9502324461936951, "token_acc": 0.7958014607429504, "gpu_alloc_gb": 12.88, "elapsed_s": 3390.4, "epoch": 0.6221335992023929} +{"step": 6250, "loss": 0.8726, "learning_rate": 0.00016122460033186849, "grad_norm": 2.9165842533111572, "token_acc": 0.7927962601184845, "gpu_alloc_gb": 12.88, "elapsed_s": 3397.0, "epoch": 0.6231306081754736} +{"step": 6250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 3463.8, "epoch": 0.6231306081754736} +{"step": 6250, "eval_loss": 1.2753942012786865, "eval_step": true} +{"step": 6260, "loss": 0.8516, "learning_rate": 0.00016109686334241655, "grad_norm": 1.4140233993530273, "token_acc": 0.802682739496231, "gpu_alloc_gb": 12.88, "elapsed_s": 3509.3, "epoch": 0.6241276171485544} +{"step": 6270, "loss": 0.8583, "learning_rate": 0.0001609689670872966, "grad_norm": 1.0335215330123901, "token_acc": 0.7953563749790191, "gpu_alloc_gb": 12.88, "elapsed_s": 3516.1, "epoch": 0.6251246261216351} +{"step": 6280, "loss": 0.8504, "learning_rate": 0.0001608409118999052, "grad_norm": 3.8728911876678467, "token_acc": 0.7949465692043305, "gpu_alloc_gb": 12.88, "elapsed_s": 3522.7, "epoch": 0.6261216350947159} +{"step": 6290, "loss": 0.8902, "learning_rate": 0.0001607126981140532, "grad_norm": 1.9908647537231445, "token_acc": 0.7926434099674224, "gpu_alloc_gb": 12.88, "elapsed_s": 3529.4, "epoch": 0.6271186440677966} +{"step": 6300, "loss": 0.8795, "learning_rate": 0.00016058432606396483, "grad_norm": 1.5013306140899658, "token_acc": 0.794289517402649, "gpu_alloc_gb": 12.88, "elapsed_s": 3536.0, "epoch": 0.6281156530408774} +{"step": 6310, "loss": 0.8923, "learning_rate": 0.0001604557960842769, "grad_norm": 2.383528709411621, "token_acc": 0.7944300413131714, "gpu_alloc_gb": 12.88, "elapsed_s": 3542.6, "epoch": 0.6291126620139581} +{"step": 6320, "loss": 0.8849, "learning_rate": 0.00016032710851003796, "grad_norm": 2.5527241230010986, "token_acc": 0.7946394145488739, "gpu_alloc_gb": 12.88, "elapsed_s": 3549.2, "epoch": 0.6301096709870389} +{"step": 6330, "loss": 0.9095, "learning_rate": 0.00016019826367670733, "grad_norm": 1.22055983543396, "token_acc": 0.7884965002536773, "gpu_alloc_gb": 12.88, "elapsed_s": 3555.9, "epoch": 0.6311066799601196} +{"step": 6340, "loss": 0.8776, "learning_rate": 0.00016006926192015425, "grad_norm": 1.0045137405395508, "token_acc": 0.7920867681503296, "gpu_alloc_gb": 12.88, "elapsed_s": 3562.5, "epoch": 0.6321036889332003} +{"step": 6350, "loss": 0.8953, "learning_rate": 0.00015994010357665706, "grad_norm": 1.1071782112121582, "token_acc": 0.7915472447872162, "gpu_alloc_gb": 12.88, "elapsed_s": 3569.0, "epoch": 0.6331006979062812} +{"step": 6360, "loss": 0.885, "learning_rate": 0.00015981078898290232, "grad_norm": 11.455191612243652, "token_acc": 0.7948405623435975, "gpu_alloc_gb": 12.88, "elapsed_s": 3575.6, "epoch": 0.634097706879362} +{"step": 6370, "loss": 0.8768, "learning_rate": 0.00015968131847598376, "grad_norm": 1.8093780279159546, "token_acc": 0.7905903697013855, "gpu_alloc_gb": 12.88, "elapsed_s": 3582.2, "epoch": 0.6350947158524427} +{"step": 6380, "loss": 0.8775, "learning_rate": 0.00015955169239340166, "grad_norm": 1.7740825414657593, "token_acc": 0.7959989845752716, "gpu_alloc_gb": 12.88, "elapsed_s": 3588.9, "epoch": 0.6360917248255235} +{"step": 6390, "loss": 0.9379, "learning_rate": 0.0001594219110730619, "grad_norm": 1.3211766481399536, "token_acc": 0.7818829596042634, "gpu_alloc_gb": 12.88, "elapsed_s": 3595.6, "epoch": 0.6370887337986042} +{"step": 6400, "loss": 0.8903, "learning_rate": 0.0001592919748532748, "grad_norm": 1.246795415878296, "token_acc": 0.794444352388382, "gpu_alloc_gb": 12.88, "elapsed_s": 3602.3, "epoch": 0.638085742771685} +{"step": 6410, "loss": 0.8725, "learning_rate": 0.00015916188407275476, "grad_norm": 1.0461955070495605, "token_acc": 0.7959628343582154, "gpu_alloc_gb": 12.88, "elapsed_s": 3608.9, "epoch": 0.6390827517447657} +{"step": 6420, "loss": 0.8826, "learning_rate": 0.00015903163907061892, "grad_norm": 1.1482124328613281, "token_acc": 0.79094078540802, "gpu_alloc_gb": 12.88, "elapsed_s": 3615.7, "epoch": 0.6400797607178464} +{"step": 6430, "loss": 0.8856, "learning_rate": 0.00015890124018638638, "grad_norm": 2.216980218887329, "token_acc": 0.7919632732868195, "gpu_alloc_gb": 12.88, "elapsed_s": 3622.4, "epoch": 0.6410767696909272} +{"step": 6440, "loss": 0.9014, "learning_rate": 0.00015877068775997758, "grad_norm": 2.1175992488861084, "token_acc": 0.7882701218128204, "gpu_alloc_gb": 12.88, "elapsed_s": 3629.0, "epoch": 0.6420737786640079} +{"step": 6450, "loss": 0.8752, "learning_rate": 0.000158639982131713, "grad_norm": 1.0952500104904175, "token_acc": 0.795261162519455, "gpu_alloc_gb": 12.88, "elapsed_s": 3635.6, "epoch": 0.6430707876370887} +{"step": 6460, "loss": 0.9194, "learning_rate": 0.0001585091236423126, "grad_norm": 1.261217474937439, "token_acc": 0.7880350828170777, "gpu_alloc_gb": 12.88, "elapsed_s": 3642.2, "epoch": 0.6440677966101694} +{"step": 6470, "loss": 0.8428, "learning_rate": 0.0001583781126328948, "grad_norm": 1.8316890001296997, "token_acc": 0.7989335060119629, "gpu_alloc_gb": 12.88, "elapsed_s": 3648.9, "epoch": 0.6450648055832503} +{"step": 6480, "loss": 0.8825, "learning_rate": 0.0001582469494449756, "grad_norm": 1.390586495399475, "token_acc": 0.7955129027366639, "gpu_alloc_gb": 12.88, "elapsed_s": 3655.5, "epoch": 0.646061814556331} +{"step": 6490, "loss": 0.8808, "learning_rate": 0.00015811563442046767, "grad_norm": 1.046820044517517, "token_acc": 0.7923844456672668, "gpu_alloc_gb": 12.88, "elapsed_s": 3662.1, "epoch": 0.6470588235294118} +{"step": 6500, "loss": 0.853, "learning_rate": 0.00015798416790167947, "grad_norm": 1.7032772302627563, "token_acc": 0.7984396517276764, "gpu_alloc_gb": 12.88, "elapsed_s": 3668.6, "epoch": 0.6480558325024925} +{"step": 6500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 3735.4, "epoch": 0.6480558325024925} +{"step": 6500, "eval_loss": 1.2772032022476196, "eval_step": true} +{"step": 6510, "loss": 0.8721, "learning_rate": 0.0001578525502313145, "grad_norm": 1.6346039772033691, "token_acc": 0.7947552382946015, "gpu_alloc_gb": 12.88, "elapsed_s": 3779.3, "epoch": 0.6490528414755733} +{"step": 6520, "loss": 0.8986, "learning_rate": 0.00015772078175247005, "grad_norm": 2.0034689903259277, "token_acc": 0.7908236265182496, "gpu_alloc_gb": 12.88, "elapsed_s": 3786.0, "epoch": 0.650049850448654} +{"step": 6530, "loss": 0.8841, "learning_rate": 0.00015758886280863675, "grad_norm": 1.1441651582717896, "token_acc": 0.7957819938659668, "gpu_alloc_gb": 12.88, "elapsed_s": 3792.9, "epoch": 0.6510468594217348} +{"step": 6540, "loss": 0.911, "learning_rate": 0.00015745679374369736, "grad_norm": 1.2436978816986084, "token_acc": 0.7888322234153747, "gpu_alloc_gb": 12.88, "elapsed_s": 3799.6, "epoch": 0.6520438683948155} +{"step": 6550, "loss": 0.8792, "learning_rate": 0.00015732457490192595, "grad_norm": 1.22257399559021, "token_acc": 0.7940503120422363, "gpu_alloc_gb": 12.88, "elapsed_s": 3806.4, "epoch": 0.6530408773678963} +{"step": 6560, "loss": 0.8926, "learning_rate": 0.00015719220662798708, "grad_norm": 2.5349252223968506, "token_acc": 0.7902323603630066, "gpu_alloc_gb": 12.88, "elapsed_s": 3813.1, "epoch": 0.654037886340977} +{"step": 6570, "loss": 0.8863, "learning_rate": 0.00015705968926693484, "grad_norm": 2.1468143463134766, "token_acc": 0.7945523262023926, "gpu_alloc_gb": 12.88, "elapsed_s": 3819.6, "epoch": 0.6550348953140578} +{"step": 6580, "loss": 0.9143, "learning_rate": 0.00015692702316421196, "grad_norm": 2.1326792240142822, "token_acc": 0.7913073539733887, "gpu_alloc_gb": 12.88, "elapsed_s": 3826.4, "epoch": 0.6560319042871385} +{"step": 6590, "loss": 0.8891, "learning_rate": 0.0001567942086656488, "grad_norm": 1.48844313621521, "token_acc": 0.7949939906597138, "gpu_alloc_gb": 12.88, "elapsed_s": 3833.1, "epoch": 0.6570289132602194} +{"step": 6600, "loss": 0.8604, "learning_rate": 0.00015666124611746272, "grad_norm": 1.5984241962432861, "token_acc": 0.798006534576416, "gpu_alloc_gb": 12.88, "elapsed_s": 3839.8, "epoch": 0.6580259222333001} +{"step": 6610, "loss": 0.8925, "learning_rate": 0.0001565281358662569, "grad_norm": 1.3682653903961182, "token_acc": 0.7909777939319611, "gpu_alloc_gb": 12.88, "elapsed_s": 3846.5, "epoch": 0.6590229312063809} +{"step": 6620, "loss": 0.9322, "learning_rate": 0.00015639487825901957, "grad_norm": 0.9794266223907471, "token_acc": 0.7893683195114136, "gpu_alloc_gb": 12.88, "elapsed_s": 3853.2, "epoch": 0.6600199401794616} +{"step": 6630, "loss": 0.8964, "learning_rate": 0.0001562614736431231, "grad_norm": 1.5716094970703125, "token_acc": 0.7918836832046509, "gpu_alloc_gb": 12.88, "elapsed_s": 3859.8, "epoch": 0.6610169491525424} +{"step": 6640, "loss": 0.8551, "learning_rate": 0.0001561279223663231, "grad_norm": 2.793734073638916, "token_acc": 0.797734934091568, "gpu_alloc_gb": 12.88, "elapsed_s": 3866.3, "epoch": 0.6620139581256231} +{"step": 6650, "loss": 0.8689, "learning_rate": 0.0001559942247767574, "grad_norm": 1.9835113286972046, "token_acc": 0.7932254672050476, "gpu_alloc_gb": 12.88, "elapsed_s": 3872.8, "epoch": 0.6630109670987039} +{"step": 6660, "loss": 0.8268, "learning_rate": 0.0001558603812229454, "grad_norm": 0.9432714581489563, "token_acc": 0.8033138334751129, "gpu_alloc_gb": 12.88, "elapsed_s": 3879.7, "epoch": 0.6640079760717846} +{"step": 6670, "loss": 0.9487, "learning_rate": 0.0001557263920537868, "grad_norm": 3.178169012069702, "token_acc": 0.7811985850334168, "gpu_alloc_gb": 12.88, "elapsed_s": 3886.4, "epoch": 0.6650049850448654} +{"step": 6680, "loss": 0.9598, "learning_rate": 0.00015559225761856103, "grad_norm": 1.016522765159607, "token_acc": 0.7821644425392151, "gpu_alloc_gb": 12.88, "elapsed_s": 3892.9, "epoch": 0.6660019940179461} +{"step": 6690, "loss": 0.8871, "learning_rate": 0.00015545797826692608, "grad_norm": 2.333411455154419, "token_acc": 0.7908639013767242, "gpu_alloc_gb": 12.88, "elapsed_s": 3899.5, "epoch": 0.6669990029910269} +{"step": 6700, "loss": 0.8625, "learning_rate": 0.00015532355434891786, "grad_norm": 1.5195720195770264, "token_acc": 0.7988532066345215, "gpu_alloc_gb": 12.88, "elapsed_s": 3906.1, "epoch": 0.6679960119641076} +{"step": 6710, "loss": 0.8652, "learning_rate": 0.00015518898621494899, "grad_norm": 1.6973761320114136, "token_acc": 0.7967680037021637, "gpu_alloc_gb": 12.88, "elapsed_s": 3913.1, "epoch": 0.6689930209371885} +{"step": 6720, "loss": 0.9014, "learning_rate": 0.00015505427421580808, "grad_norm": 0.9350749850273132, "token_acc": 0.7917969763278961, "gpu_alloc_gb": 12.88, "elapsed_s": 3919.7, "epoch": 0.6699900299102692} +{"step": 6730, "loss": 0.8383, "learning_rate": 0.00015491941870265878, "grad_norm": 0.9711529612541199, "token_acc": 0.8027038276195526, "gpu_alloc_gb": 12.88, "elapsed_s": 3926.4, "epoch": 0.67098703888335} +{"step": 6740, "loss": 0.8382, "learning_rate": 0.00015478442002703883, "grad_norm": 2.403290033340454, "token_acc": 0.7990674614906311, "gpu_alloc_gb": 12.88, "elapsed_s": 3933.1, "epoch": 0.6719840478564307} +{"step": 6750, "loss": 0.8765, "learning_rate": 0.00015464927854085914, "grad_norm": 1.0773499011993408, "token_acc": 0.7975477576255798, "gpu_alloc_gb": 12.88, "elapsed_s": 3939.9, "epoch": 0.6729810568295115} +{"step": 6750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 4006.7, "epoch": 0.6729810568295115} +{"step": 6750, "eval_loss": 1.2816885709762573, "eval_step": true} +{"step": 6760, "loss": 0.8812, "learning_rate": 0.00015451399459640293, "grad_norm": 1.3481559753417969, "token_acc": 0.7961194097995759, "gpu_alloc_gb": 12.88, "elapsed_s": 4050.8, "epoch": 0.6739780658025922} +{"step": 6770, "loss": 0.9127, "learning_rate": 0.0001543785685463248, "grad_norm": 1.0766630172729492, "token_acc": 0.7915514647960663, "gpu_alloc_gb": 12.88, "elapsed_s": 4057.3, "epoch": 0.674975074775673} +{"step": 6780, "loss": 0.8378, "learning_rate": 0.00015424300074364972, "grad_norm": 4.847196578979492, "token_acc": 0.803088653087616, "gpu_alloc_gb": 12.88, "elapsed_s": 4064.2, "epoch": 0.6759720837487537} +{"step": 6790, "loss": 0.8711, "learning_rate": 0.0001541072915417722, "grad_norm": 2.300123929977417, "token_acc": 0.7986135661602021, "gpu_alloc_gb": 12.88, "elapsed_s": 4070.8, "epoch": 0.6769690927218345} +{"step": 6800, "loss": 0.8818, "learning_rate": 0.00015397144129445538, "grad_norm": 1.0713019371032715, "token_acc": 0.7919628143310546, "gpu_alloc_gb": 12.88, "elapsed_s": 4077.3, "epoch": 0.6779661016949152} +{"step": 6810, "loss": 0.8845, "learning_rate": 0.00015383545035583005, "grad_norm": 1.7396461963653564, "token_acc": 0.792633330821991, "gpu_alloc_gb": 12.88, "elapsed_s": 4083.9, "epoch": 0.678963110667996} +{"step": 6820, "loss": 0.8815, "learning_rate": 0.0001536993190803937, "grad_norm": 3.2842049598693848, "token_acc": 0.7946097373962402, "gpu_alloc_gb": 12.88, "elapsed_s": 4090.5, "epoch": 0.6799601196410767} +{"step": 6830, "loss": 0.9049, "learning_rate": 0.00015356304782300977, "grad_norm": 1.2985203266143799, "token_acc": 0.7919992864131927, "gpu_alloc_gb": 12.88, "elapsed_s": 4097.1, "epoch": 0.6809571286141576} +{"step": 6840, "loss": 0.8684, "learning_rate": 0.00015342663693890645, "grad_norm": 1.0227749347686768, "token_acc": 0.7929128229618072, "gpu_alloc_gb": 12.88, "elapsed_s": 4103.7, "epoch": 0.6819541375872383} +{"step": 6850, "loss": 0.9208, "learning_rate": 0.00015329008678367605, "grad_norm": 0.929914116859436, "token_acc": 0.7895145237445831, "gpu_alloc_gb": 12.88, "elapsed_s": 4110.4, "epoch": 0.6829511465603191} +{"step": 6860, "loss": 0.887, "learning_rate": 0.0001531533977132738, "grad_norm": 6.215886116027832, "token_acc": 0.7950583338737488, "gpu_alloc_gb": 12.88, "elapsed_s": 4117.0, "epoch": 0.6839481555333998} +{"step": 6870, "loss": 0.8676, "learning_rate": 0.00015301657008401714, "grad_norm": 1.0431814193725586, "token_acc": 0.7967439353466034, "gpu_alloc_gb": 12.88, "elapsed_s": 4123.5, "epoch": 0.6849451645064806} +{"step": 6880, "loss": 0.8715, "learning_rate": 0.00015287960425258468, "grad_norm": 7.493480682373047, "token_acc": 0.7949179589748383, "gpu_alloc_gb": 12.88, "elapsed_s": 4130.1, "epoch": 0.6859421734795613} +{"step": 6890, "loss": 0.8866, "learning_rate": 0.0001527425005760153, "grad_norm": 1.1309338808059692, "token_acc": 0.7919706702232361, "gpu_alloc_gb": 12.88, "elapsed_s": 4136.6, "epoch": 0.6869391824526421} +{"step": 6900, "loss": 0.8789, "learning_rate": 0.00015260525941170712, "grad_norm": 1.0930949449539185, "token_acc": 0.7916391313076019, "gpu_alloc_gb": 12.88, "elapsed_s": 4143.1, "epoch": 0.6879361914257228} +{"step": 6910, "loss": 0.9046, "learning_rate": 0.0001524678811174168, "grad_norm": 2.402122974395752, "token_acc": 0.7899754405021667, "gpu_alloc_gb": 12.88, "elapsed_s": 4149.9, "epoch": 0.6889332003988036} +{"step": 6920, "loss": 0.8858, "learning_rate": 0.0001523303660512584, "grad_norm": 2.0433645248413086, "token_acc": 0.7936552822589874, "gpu_alloc_gb": 12.88, "elapsed_s": 4156.5, "epoch": 0.6899302093718843} +{"step": 6930, "loss": 0.8931, "learning_rate": 0.00015219271457170248, "grad_norm": 2.3385169506073, "token_acc": 0.7939725279808044, "gpu_alloc_gb": 12.88, "elapsed_s": 4163.2, "epoch": 0.6909272183449651} +{"step": 6940, "loss": 0.8708, "learning_rate": 0.00015205492703757522, "grad_norm": 1.0639963150024414, "token_acc": 0.7973654210567475, "gpu_alloc_gb": 12.88, "elapsed_s": 4169.9, "epoch": 0.6919242273180458} +{"step": 6950, "loss": 0.8848, "learning_rate": 0.00015191700380805752, "grad_norm": 1.7949087619781494, "token_acc": 0.7927723407745362, "gpu_alloc_gb": 12.88, "elapsed_s": 4176.3, "epoch": 0.6929212362911267} +{"step": 6960, "loss": 0.9005, "learning_rate": 0.00015177894524268397, "grad_norm": 2.7595534324645996, "token_acc": 0.7911841094493866, "gpu_alloc_gb": 12.88, "elapsed_s": 4183.3, "epoch": 0.6939182452642074} +{"step": 6970, "loss": 0.8622, "learning_rate": 0.0001516407517013419, "grad_norm": 1.2955243587493896, "token_acc": 0.7955352783203125, "gpu_alloc_gb": 12.88, "elapsed_s": 4189.9, "epoch": 0.6949152542372882} +{"step": 6980, "loss": 0.8681, "learning_rate": 0.00015150242354427057, "grad_norm": 1.0381497144699097, "token_acc": 0.7992049992084503, "gpu_alloc_gb": 12.88, "elapsed_s": 4196.4, "epoch": 0.6959122632103689} +{"step": 6990, "loss": 0.8351, "learning_rate": 0.0001513639611320601, "grad_norm": 2.6158323287963867, "token_acc": 0.8039812862873077, "gpu_alloc_gb": 12.88, "elapsed_s": 4203.0, "epoch": 0.6969092721834497} +{"step": 7000, "loss": 0.8669, "learning_rate": 0.00015122536482565057, "grad_norm": 1.8110357522964478, "token_acc": 0.7947347700595856, "gpu_alloc_gb": 12.88, "elapsed_s": 4209.7, "epoch": 0.6979062811565304} +{"step": 7000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 4276.5, "epoch": 0.6979062811565304} +{"step": 7000, "eval_loss": 1.352038860321045, "eval_step": true} +{"step": 7010, "loss": 0.8514, "learning_rate": 0.00015108663498633119, "grad_norm": 1.1792371273040771, "token_acc": 0.7995307624340058, "gpu_alloc_gb": 12.88, "elapsed_s": 4319.1, "epoch": 0.6989032901296112} +{"step": 7020, "loss": 0.917, "learning_rate": 0.0001509477719757391, "grad_norm": 1.2600016593933105, "token_acc": 0.7867417991161346, "gpu_alloc_gb": 12.88, "elapsed_s": 4325.7, "epoch": 0.6999002991026919} +{"step": 7030, "loss": 0.8812, "learning_rate": 0.0001508087761558588, "grad_norm": 1.2271608114242554, "token_acc": 0.791912978887558, "gpu_alloc_gb": 12.88, "elapsed_s": 4332.5, "epoch": 0.7008973080757727} +{"step": 7040, "loss": 0.8996, "learning_rate": 0.00015066964788902073, "grad_norm": 1.183231234550476, "token_acc": 0.7939021229743958, "gpu_alloc_gb": 12.88, "elapsed_s": 4339.2, "epoch": 0.7018943170488534} +{"step": 7050, "loss": 0.8631, "learning_rate": 0.0001505303875379009, "grad_norm": 1.4974688291549683, "token_acc": 0.7943025052547454, "gpu_alloc_gb": 12.88, "elapsed_s": 4345.8, "epoch": 0.7028913260219342} +{"step": 7060, "loss": 0.8493, "learning_rate": 0.0001503909954655193, "grad_norm": 1.6741896867752075, "token_acc": 0.8013307690620423, "gpu_alloc_gb": 12.88, "elapsed_s": 4353.1, "epoch": 0.7038883349950149} +{"step": 7070, "loss": 0.8783, "learning_rate": 0.00015025147203523957, "grad_norm": 1.4064329862594604, "token_acc": 0.7944309711456299, "gpu_alloc_gb": 12.88, "elapsed_s": 4359.8, "epoch": 0.7048853439680958} +{"step": 7080, "loss": 0.8952, "learning_rate": 0.00015011181761076758, "grad_norm": 1.9740734100341797, "token_acc": 0.7900587260723114, "gpu_alloc_gb": 12.88, "elapsed_s": 4366.4, "epoch": 0.7058823529411765} +{"step": 7090, "loss": 0.8838, "learning_rate": 0.0001499720325561508, "grad_norm": 1.164942979812622, "token_acc": 0.7917413771152496, "gpu_alloc_gb": 12.88, "elapsed_s": 4373.1, "epoch": 0.7068793619142573} +{"step": 7100, "loss": 0.8585, "learning_rate": 0.0001498321172357771, "grad_norm": 1.3606510162353516, "token_acc": 0.797713041305542, "gpu_alloc_gb": 12.88, "elapsed_s": 4379.9, "epoch": 0.707876370887338} +{"step": 7110, "loss": 0.857, "learning_rate": 0.0001496920720143741, "grad_norm": 1.0354652404785156, "token_acc": 0.7992971658706665, "gpu_alloc_gb": 12.88, "elapsed_s": 4386.6, "epoch": 0.7088733798604188} +{"step": 7120, "loss": 0.8597, "learning_rate": 0.00014955189725700783, "grad_norm": 1.0685462951660156, "token_acc": 0.7940939903259278, "gpu_alloc_gb": 12.88, "elapsed_s": 4393.4, "epoch": 0.7098703888334995} +{"step": 7130, "loss": 0.9026, "learning_rate": 0.00014941159332908214, "grad_norm": 1.3794726133346558, "token_acc": 0.7862084984779358, "gpu_alloc_gb": 12.88, "elapsed_s": 4400.0, "epoch": 0.7108673978065803} +{"step": 7140, "loss": 0.861, "learning_rate": 0.00014927116059633758, "grad_norm": 1.2202115058898926, "token_acc": 0.7941043198108673, "gpu_alloc_gb": 12.88, "elapsed_s": 4406.6, "epoch": 0.711864406779661} +{"step": 7150, "loss": 0.8809, "learning_rate": 0.0001491305994248504, "grad_norm": 1.1370410919189453, "token_acc": 0.7923408329486847, "gpu_alloc_gb": 12.88, "elapsed_s": 4413.2, "epoch": 0.7128614157527418} +{"step": 7160, "loss": 0.8789, "learning_rate": 0.00014898991018103168, "grad_norm": 1.0982115268707275, "token_acc": 0.7938166379928588, "gpu_alloc_gb": 12.88, "elapsed_s": 4419.9, "epoch": 0.7138584247258225} +{"step": 7170, "loss": 0.8598, "learning_rate": 0.00014884909323162644, "grad_norm": 3.1639323234558105, "token_acc": 0.8000890791416169, "gpu_alloc_gb": 12.88, "elapsed_s": 4426.6, "epoch": 0.7148554336989033} +{"step": 7180, "loss": 0.8846, "learning_rate": 0.00014870814894371245, "grad_norm": 1.0776304006576538, "token_acc": 0.7920023620128631, "gpu_alloc_gb": 12.88, "elapsed_s": 4433.3, "epoch": 0.715852442671984} +{"step": 7190, "loss": 0.9007, "learning_rate": 0.0001485670776846996, "grad_norm": 1.019692063331604, "token_acc": 0.7923864841461181, "gpu_alloc_gb": 12.88, "elapsed_s": 4440.2, "epoch": 0.7168494516450648} +{"step": 7200, "loss": 0.8368, "learning_rate": 0.00014842587982232862, "grad_norm": 0.8751727342605591, "token_acc": 0.8016586601734161, "gpu_alloc_gb": 12.88, "elapsed_s": 4446.7, "epoch": 0.7178464606181456} +{"step": 7210, "loss": 0.8748, "learning_rate": 0.00014828455572467032, "grad_norm": 1.7598623037338257, "token_acc": 0.7928296625614166, "gpu_alloc_gb": 12.88, "elapsed_s": 4453.6, "epoch": 0.7188434695912264} +{"step": 7220, "loss": 0.8366, "learning_rate": 0.00014814310576012458, "grad_norm": 1.1903278827667236, "token_acc": 0.8021733343601227, "gpu_alloc_gb": 12.88, "elapsed_s": 4460.3, "epoch": 0.7198404785643071} +{"step": 7230, "loss": 0.8935, "learning_rate": 0.00014800153029741937, "grad_norm": 1.3961328268051147, "token_acc": 0.7956274151802063, "gpu_alloc_gb": 12.88, "elapsed_s": 4466.8, "epoch": 0.7208374875373879} +{"step": 7240, "loss": 0.9156, "learning_rate": 0.00014785982970560985, "grad_norm": 0.9865573048591614, "token_acc": 0.7905453681945801, "gpu_alloc_gb": 12.88, "elapsed_s": 4473.6, "epoch": 0.7218344965104686} +{"step": 7250, "loss": 0.8841, "learning_rate": 0.0001477180043540773, "grad_norm": 1.670263648033142, "token_acc": 0.7974004805088043, "gpu_alloc_gb": 12.88, "elapsed_s": 4480.2, "epoch": 0.7228315054835494} +{"step": 7250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 4547.1, "epoch": 0.7228315054835494} +{"step": 7250, "eval_loss": 1.290664792060852, "eval_step": true} +{"step": 7260, "loss": 0.8784, "learning_rate": 0.00014757605461252827, "grad_norm": 1.0001903772354126, "token_acc": 0.7984386622905731, "gpu_alloc_gb": 12.88, "elapsed_s": 4591.1, "epoch": 0.7238285144566301} +{"step": 7270, "loss": 0.8719, "learning_rate": 0.00014743398085099353, "grad_norm": 1.1108235120773315, "token_acc": 0.7964393734931946, "gpu_alloc_gb": 12.88, "elapsed_s": 4597.9, "epoch": 0.7248255234297108} +{"step": 7280, "loss": 0.8735, "learning_rate": 0.00014729178343982717, "grad_norm": 3.350846290588379, "token_acc": 0.7933845102787018, "gpu_alloc_gb": 12.88, "elapsed_s": 4604.7, "epoch": 0.7258225324027916} +{"step": 7290, "loss": 0.8604, "learning_rate": 0.00014714946274970556, "grad_norm": 0.9584260582923889, "token_acc": 0.7994152784347535, "gpu_alloc_gb": 12.88, "elapsed_s": 4611.2, "epoch": 0.7268195413758723} +{"step": 7300, "loss": 0.8697, "learning_rate": 0.00014700701915162652, "grad_norm": 2.0740885734558105, "token_acc": 0.7925560295581817, "gpu_alloc_gb": 12.88, "elapsed_s": 4617.8, "epoch": 0.7278165503489531} +{"step": 7310, "loss": 0.8501, "learning_rate": 0.00014686445301690816, "grad_norm": 2.043776512145996, "token_acc": 0.7974263668060303, "gpu_alloc_gb": 12.88, "elapsed_s": 4624.4, "epoch": 0.7288135593220338} +{"step": 7320, "loss": 0.8879, "learning_rate": 0.0001467217647171881, "grad_norm": 1.3656632900238037, "token_acc": 0.7937078535556793, "gpu_alloc_gb": 12.88, "elapsed_s": 4631.2, "epoch": 0.7298105682951147} +{"step": 7330, "loss": 0.8645, "learning_rate": 0.0001465789546244224, "grad_norm": 1.5400232076644897, "token_acc": 0.7957080602645874, "gpu_alloc_gb": 12.88, "elapsed_s": 4638.0, "epoch": 0.7308075772681955} +{"step": 7340, "loss": 0.8826, "learning_rate": 0.00014643602311088452, "grad_norm": 1.5469224452972412, "token_acc": 0.7929846525192261, "gpu_alloc_gb": 12.88, "elapsed_s": 4644.7, "epoch": 0.7318045862412762} +{"step": 7350, "loss": 0.8767, "learning_rate": 0.00014629297054916454, "grad_norm": 1.2369366884231567, "token_acc": 0.7942182064056397, "gpu_alloc_gb": 12.88, "elapsed_s": 4651.3, "epoch": 0.732801595214357} +{"step": 7360, "loss": 0.8587, "learning_rate": 0.00014614979731216807, "grad_norm": 1.4788516759872437, "token_acc": 0.7962678909301758, "gpu_alloc_gb": 12.88, "elapsed_s": 4657.9, "epoch": 0.7337986041874377} +{"step": 7370, "loss": 0.8617, "learning_rate": 0.00014600650377311522, "grad_norm": 3.1280815601348877, "token_acc": 0.7977173924446106, "gpu_alloc_gb": 12.88, "elapsed_s": 4664.5, "epoch": 0.7347956131605184} +{"step": 7380, "loss": 0.8361, "learning_rate": 0.0001458630903055398, "grad_norm": 1.6914712190628052, "token_acc": 0.8025586009025574, "gpu_alloc_gb": 12.88, "elapsed_s": 4671.1, "epoch": 0.7357926221335992} +{"step": 7390, "loss": 0.8911, "learning_rate": 0.00014571955728328817, "grad_norm": 1.1065573692321777, "token_acc": 0.7910704255104065, "gpu_alloc_gb": 12.88, "elapsed_s": 4677.9, "epoch": 0.7367896311066799} +{"step": 7400, "loss": 0.8812, "learning_rate": 0.00014557590508051843, "grad_norm": 1.6008799076080322, "token_acc": 0.7925477921962738, "gpu_alloc_gb": 12.88, "elapsed_s": 4684.7, "epoch": 0.7377866400797607} +{"step": 7410, "loss": 0.8581, "learning_rate": 0.0001454321340716992, "grad_norm": 4.403233528137207, "token_acc": 0.7914371848106384, "gpu_alloc_gb": 12.88, "elapsed_s": 4691.5, "epoch": 0.7387836490528414} +{"step": 7420, "loss": 0.8462, "learning_rate": 0.00014528824463160892, "grad_norm": 1.0997495651245117, "token_acc": 0.8000938296318054, "gpu_alloc_gb": 12.88, "elapsed_s": 4698.1, "epoch": 0.7397806580259222} +{"step": 7430, "loss": 0.9257, "learning_rate": 0.00014514423713533477, "grad_norm": 1.048861026763916, "token_acc": 0.7863024890422821, "gpu_alloc_gb": 12.88, "elapsed_s": 4704.9, "epoch": 0.7407776669990029} +{"step": 7440, "loss": 0.8765, "learning_rate": 0.00014500011195827165, "grad_norm": 2.252936840057373, "token_acc": 0.7957705855369568, "gpu_alloc_gb": 12.88, "elapsed_s": 4711.4, "epoch": 0.7417746759720838} +{"step": 7450, "loss": 0.8668, "learning_rate": 0.00014485586947612117, "grad_norm": 3.18471097946167, "token_acc": 0.7946390628814697, "gpu_alloc_gb": 12.88, "elapsed_s": 4718.0, "epoch": 0.7427716849451645} +{"step": 7460, "loss": 0.8312, "learning_rate": 0.00014471151006489083, "grad_norm": 1.3419822454452515, "token_acc": 0.8016869962215424, "gpu_alloc_gb": 12.88, "elapsed_s": 4724.9, "epoch": 0.7437686939182453} +{"step": 7470, "loss": 0.8767, "learning_rate": 0.00014456703410089278, "grad_norm": 1.145073652267456, "token_acc": 0.7926475167274475, "gpu_alloc_gb": 12.88, "elapsed_s": 4731.4, "epoch": 0.744765702891326} +{"step": 7480, "loss": 0.8474, "learning_rate": 0.00014442244196074318, "grad_norm": 1.7027595043182373, "token_acc": 0.799245297908783, "gpu_alloc_gb": 12.88, "elapsed_s": 4738.1, "epoch": 0.7457627118644068} +{"step": 7490, "loss": 0.8575, "learning_rate": 0.00014427773402136092, "grad_norm": 1.3816379308700562, "token_acc": 0.8022621631622314, "gpu_alloc_gb": 12.88, "elapsed_s": 4744.8, "epoch": 0.7467597208374875} +{"step": 7500, "loss": 0.8801, "learning_rate": 0.00014413291065996678, "grad_norm": 2.14150071144104, "token_acc": 0.7937973618507386, "gpu_alloc_gb": 12.88, "elapsed_s": 4751.3, "epoch": 0.7477567298105683} +{"step": 7500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 4818.1, "epoch": 0.7477567298105683} +{"step": 7500, "eval_loss": 1.2852990627288818, "eval_step": true} +{"step": 7510, "loss": 0.8536, "learning_rate": 0.00014398797225408246, "grad_norm": 0.934133768081665, "token_acc": 0.8020034968852997, "gpu_alloc_gb": 12.88, "elapsed_s": 4861.7, "epoch": 0.748753738783649} +{"step": 7520, "loss": 0.9203, "learning_rate": 0.00014384291918152948, "grad_norm": 1.7990602254867554, "token_acc": 0.7871445417404175, "gpu_alloc_gb": 12.88, "elapsed_s": 4868.6, "epoch": 0.7497507477567298} +{"step": 7530, "loss": 0.8199, "learning_rate": 0.0001436977518204283, "grad_norm": 1.1273237466812134, "token_acc": 0.8047775447368621, "gpu_alloc_gb": 12.88, "elapsed_s": 4875.3, "epoch": 0.7507477567298105} +{"step": 7540, "loss": 0.8553, "learning_rate": 0.0001435524705491973, "grad_norm": 1.4584382772445679, "token_acc": 0.7988365828990937, "gpu_alloc_gb": 12.88, "elapsed_s": 4881.9, "epoch": 0.7517447657028913} +{"step": 7550, "loss": 0.8986, "learning_rate": 0.00014340707574655184, "grad_norm": 1.688050627708435, "token_acc": 0.790541535615921, "gpu_alloc_gb": 12.88, "elapsed_s": 4888.6, "epoch": 0.752741774675972} +{"step": 7560, "loss": 0.8682, "learning_rate": 0.0001432615677915032, "grad_norm": 1.1868999004364014, "token_acc": 0.7935539126396179, "gpu_alloc_gb": 12.88, "elapsed_s": 4895.6, "epoch": 0.7537387836490529} +{"step": 7570, "loss": 0.8467, "learning_rate": 0.00014311594706335762, "grad_norm": 1.7735915184020996, "token_acc": 0.8010972380638123, "gpu_alloc_gb": 12.88, "elapsed_s": 4902.2, "epoch": 0.7547357926221336} +{"step": 7580, "loss": 0.8818, "learning_rate": 0.00014297021394171533, "grad_norm": 1.9528450965881348, "token_acc": 0.7945511162281036, "gpu_alloc_gb": 12.88, "elapsed_s": 4908.8, "epoch": 0.7557328015952144} +{"step": 7590, "loss": 0.8455, "learning_rate": 0.0001428243688064695, "grad_norm": 1.0599826574325562, "token_acc": 0.7966886460781097, "gpu_alloc_gb": 12.88, "elapsed_s": 4915.5, "epoch": 0.7567298105682951} +{"step": 7600, "loss": 0.856, "learning_rate": 0.00014267841203780533, "grad_norm": 1.2208620309829712, "token_acc": 0.7976365149021148, "gpu_alloc_gb": 12.88, "elapsed_s": 4922.3, "epoch": 0.7577268195413759} +{"step": 7610, "loss": 0.8387, "learning_rate": 0.00014253234401619903, "grad_norm": 1.0444425344467163, "token_acc": 0.8056734025478363, "gpu_alloc_gb": 12.88, "elapsed_s": 4929.1, "epoch": 0.7587238285144566} +{"step": 7620, "loss": 0.8324, "learning_rate": 0.0001423861651224168, "grad_norm": 1.0212197303771973, "token_acc": 0.8023936688899994, "gpu_alloc_gb": 12.88, "elapsed_s": 4935.8, "epoch": 0.7597208374875374} +{"step": 7630, "loss": 0.9153, "learning_rate": 0.00014223987573751387, "grad_norm": 0.9261775016784668, "token_acc": 0.7892080783843994, "gpu_alloc_gb": 12.88, "elapsed_s": 4942.6, "epoch": 0.7607178464606181} +{"step": 7640, "loss": 0.863, "learning_rate": 0.0001420934762428335, "grad_norm": 1.1330313682556152, "token_acc": 0.7983056008815765, "gpu_alloc_gb": 12.88, "elapsed_s": 4949.1, "epoch": 0.7617148554336989} +{"step": 7650, "loss": 0.8494, "learning_rate": 0.00014194696702000598, "grad_norm": 4.500578880310059, "token_acc": 0.7963566660881043, "gpu_alloc_gb": 12.88, "elapsed_s": 4955.8, "epoch": 0.7627118644067796} +{"step": 7660, "loss": 0.8557, "learning_rate": 0.0001418003484509476, "grad_norm": 1.0932942628860474, "token_acc": 0.796148008108139, "gpu_alloc_gb": 12.88, "elapsed_s": 4962.6, "epoch": 0.7637088733798604} +{"step": 7670, "loss": 0.8549, "learning_rate": 0.00014165362091785974, "grad_norm": 0.9548715949058533, "token_acc": 0.7984780013561249, "gpu_alloc_gb": 12.88, "elapsed_s": 4969.3, "epoch": 0.7647058823529411} +{"step": 7680, "loss": 0.8764, "learning_rate": 0.00014150678480322784, "grad_norm": 2.919518232345581, "token_acc": 0.7926168143749237, "gpu_alloc_gb": 12.88, "elapsed_s": 4976.2, "epoch": 0.765702891326022} +{"step": 7690, "loss": 0.8572, "learning_rate": 0.00014135984048982027, "grad_norm": 1.1442075967788696, "token_acc": 0.7997187852859498, "gpu_alloc_gb": 12.88, "elapsed_s": 4983.1, "epoch": 0.7666999002991027} +{"step": 7700, "loss": 0.8644, "learning_rate": 0.00014121278836068762, "grad_norm": 1.0706042051315308, "token_acc": 0.7944074630737304, "gpu_alloc_gb": 12.88, "elapsed_s": 4989.7, "epoch": 0.7676969092721835} +{"step": 7710, "loss": 0.8925, "learning_rate": 0.0001410656287991614, "grad_norm": 1.0590412616729736, "token_acc": 0.7918379366397857, "gpu_alloc_gb": 12.88, "elapsed_s": 4996.3, "epoch": 0.7686939182452642} +{"step": 7720, "loss": 0.8747, "learning_rate": 0.0001409183621888532, "grad_norm": 1.080751895904541, "token_acc": 0.7907957017421723, "gpu_alloc_gb": 12.88, "elapsed_s": 5003.1, "epoch": 0.769690927218345} +{"step": 7730, "loss": 0.8752, "learning_rate": 0.0001407709889136537, "grad_norm": 1.7471638917922974, "token_acc": 0.7960209727287293, "gpu_alloc_gb": 12.88, "elapsed_s": 5009.8, "epoch": 0.7706879361914257} +{"step": 7740, "loss": 0.8611, "learning_rate": 0.00014062350935773162, "grad_norm": 1.2642675638198853, "token_acc": 0.794319623708725, "gpu_alloc_gb": 12.88, "elapsed_s": 5016.4, "epoch": 0.7716849451645065} +{"step": 7750, "loss": 0.891, "learning_rate": 0.0001404759239055327, "grad_norm": 0.9680126905441284, "token_acc": 0.7940785109996795, "gpu_alloc_gb": 12.88, "elapsed_s": 5023.2, "epoch": 0.7726819541375872} +{"step": 7750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 5090.0, "epoch": 0.7726819541375872} +{"step": 7750, "eval_loss": 1.2898319959640503, "eval_step": true} +{"step": 7760, "loss": 0.8918, "learning_rate": 0.0001403282329417788, "grad_norm": 1.4340366125106812, "token_acc": 0.7934511661529541, "gpu_alloc_gb": 12.88, "elapsed_s": 5136.2, "epoch": 0.773678963110668} +{"step": 7770, "loss": 0.8764, "learning_rate": 0.00014018043685146668, "grad_norm": 2.6596872806549072, "token_acc": 0.7938667297363281, "gpu_alloc_gb": 12.88, "elapsed_s": 5142.9, "epoch": 0.7746759720837487} +{"step": 7780, "loss": 0.8468, "learning_rate": 0.0001400325360198673, "grad_norm": 2.653304100036621, "token_acc": 0.8001874387264252, "gpu_alloc_gb": 12.88, "elapsed_s": 5149.4, "epoch": 0.7756729810568295} +{"step": 7790, "loss": 0.8642, "learning_rate": 0.00013988453083252453, "grad_norm": 1.936787486076355, "token_acc": 0.7981626570224762, "gpu_alloc_gb": 12.88, "elapsed_s": 5156.0, "epoch": 0.7766699900299102} +{"step": 7800, "loss": 0.8634, "learning_rate": 0.0001397364216752544, "grad_norm": 1.1633186340332031, "token_acc": 0.7951293289661407, "gpu_alloc_gb": 12.88, "elapsed_s": 5162.8, "epoch": 0.7776669990029911} +{"step": 7810, "loss": 0.8803, "learning_rate": 0.00013958820893414386, "grad_norm": 1.0547196865081787, "token_acc": 0.7961291611194611, "gpu_alloc_gb": 12.88, "elapsed_s": 5169.3, "epoch": 0.7786640079760718} +{"step": 7820, "loss": 0.8628, "learning_rate": 0.00013943989299554995, "grad_norm": 1.0990614891052246, "token_acc": 0.7960062980651855, "gpu_alloc_gb": 12.88, "elapsed_s": 5176.1, "epoch": 0.7796610169491526} +{"step": 7830, "loss": 0.8474, "learning_rate": 0.00013929147424609857, "grad_norm": 3.691679000854492, "token_acc": 0.7998487710952759, "gpu_alloc_gb": 12.88, "elapsed_s": 5182.9, "epoch": 0.7806580259222333} +{"step": 7840, "loss": 0.9093, "learning_rate": 0.00013914295307268396, "grad_norm": 1.9657013416290283, "token_acc": 0.789296668767929, "gpu_alloc_gb": 12.88, "elapsed_s": 5189.5, "epoch": 0.7816550348953141} +{"step": 7850, "loss": 0.8016, "learning_rate": 0.0001389943298624669, "grad_norm": 0.9393318295478821, "token_acc": 0.8045138120651245, "gpu_alloc_gb": 12.88, "elapsed_s": 5196.1, "epoch": 0.7826520438683948} +{"step": 7860, "loss": 0.8858, "learning_rate": 0.00013884560500287456, "grad_norm": 1.0703959465026855, "token_acc": 0.7912882149219513, "gpu_alloc_gb": 12.88, "elapsed_s": 5202.8, "epoch": 0.7836490528414756} +{"step": 7870, "loss": 0.8774, "learning_rate": 0.00013869677888159887, "grad_norm": 1.0059853792190552, "token_acc": 0.7901081800460815, "gpu_alloc_gb": 12.88, "elapsed_s": 5209.5, "epoch": 0.7846460618145563} +{"step": 7880, "loss": 0.8521, "learning_rate": 0.00013854785188659578, "grad_norm": 1.0329034328460693, "token_acc": 0.7999386787414551, "gpu_alloc_gb": 12.88, "elapsed_s": 5216.1, "epoch": 0.7856430707876371} +{"step": 7890, "loss": 0.8204, "learning_rate": 0.00013839882440608417, "grad_norm": 1.1504852771759033, "token_acc": 0.802314031124115, "gpu_alloc_gb": 12.88, "elapsed_s": 5222.9, "epoch": 0.7866400797607178} +{"step": 7900, "loss": 0.82, "learning_rate": 0.00013824969682854496, "grad_norm": 3.002638101577759, "token_acc": 0.8008854627609253, "gpu_alloc_gb": 12.88, "elapsed_s": 5229.3, "epoch": 0.7876370887337986} +{"step": 7910, "loss": 0.8705, "learning_rate": 0.00013810046954271983, "grad_norm": 1.0965547561645508, "token_acc": 0.7988377153873444, "gpu_alloc_gb": 12.88, "elapsed_s": 5236.0, "epoch": 0.7886340977068793} +{"step": 7920, "loss": 0.818, "learning_rate": 0.00013795114293761057, "grad_norm": 0.9477289319038391, "token_acc": 0.8032508194446564, "gpu_alloc_gb": 12.88, "elapsed_s": 5242.6, "epoch": 0.7896311066799602} +{"step": 7930, "loss": 0.8453, "learning_rate": 0.0001378017174024777, "grad_norm": 1.0177311897277832, "token_acc": 0.7983611106872559, "gpu_alloc_gb": 12.88, "elapsed_s": 5249.1, "epoch": 0.7906281156530409} +{"step": 7940, "loss": 0.8957, "learning_rate": 0.00013765219332683977, "grad_norm": 0.9754927754402161, "token_acc": 0.7888126611709595, "gpu_alloc_gb": 12.88, "elapsed_s": 5256.0, "epoch": 0.7916251246261217} +{"step": 7950, "loss": 0.881, "learning_rate": 0.00013750257110047207, "grad_norm": 1.1005847454071045, "token_acc": 0.7974662244319916, "gpu_alloc_gb": 12.88, "elapsed_s": 5262.5, "epoch": 0.7926221335992024} +{"step": 7960, "loss": 0.8842, "learning_rate": 0.00013735285111340586, "grad_norm": 2.438035726547241, "token_acc": 0.7906447529792786, "gpu_alloc_gb": 12.88, "elapsed_s": 5269.0, "epoch": 0.7936191425722832} +{"step": 7970, "loss": 0.8456, "learning_rate": 0.0001372030337559272, "grad_norm": 1.2451531887054443, "token_acc": 0.7994840264320373, "gpu_alloc_gb": 12.88, "elapsed_s": 5275.5, "epoch": 0.7946161515453639} +{"step": 7980, "loss": 0.8881, "learning_rate": 0.0001370531194185759, "grad_norm": 1.996626853942871, "token_acc": 0.794435340166092, "gpu_alloc_gb": 12.88, "elapsed_s": 5282.2, "epoch": 0.7956131605184447} +{"step": 7990, "loss": 0.8645, "learning_rate": 0.00013690310849214473, "grad_norm": 1.9956448078155518, "token_acc": 0.7927476942539216, "gpu_alloc_gb": 12.88, "elapsed_s": 5288.9, "epoch": 0.7966101694915254} +{"step": 8000, "loss": 0.8265, "learning_rate": 0.00013675300136767814, "grad_norm": 1.0795341730117798, "token_acc": 0.8021160185337066, "gpu_alloc_gb": 12.88, "elapsed_s": 5295.4, "epoch": 0.7976071784646062} +{"step": 8000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 5362.3, "epoch": 0.7976071784646062} +{"step": 8000, "eval_loss": 1.261101245880127, "eval_step": true} +{"step": 8010, "loss": 0.8553, "learning_rate": 0.00013660279843647133, "grad_norm": 1.3402321338653564, "token_acc": 0.8001614511013031, "gpu_alloc_gb": 12.88, "elapsed_s": 5407.0, "epoch": 0.7986041874376869} +{"step": 8020, "loss": 0.8259, "learning_rate": 0.00013645250009006928, "grad_norm": 1.3516491651535034, "token_acc": 0.8023705244064331, "gpu_alloc_gb": 12.88, "elapsed_s": 5413.7, "epoch": 0.7996011964107677} +{"step": 8030, "loss": 0.8502, "learning_rate": 0.00013630210672026572, "grad_norm": 1.7097175121307373, "token_acc": 0.8010087549686432, "gpu_alloc_gb": 12.88, "elapsed_s": 5420.5, "epoch": 0.8005982053838484} +{"step": 8040, "loss": 0.8518, "learning_rate": 0.00013615161871910207, "grad_norm": 1.3817769289016724, "token_acc": 0.7974221587181092, "gpu_alloc_gb": 12.88, "elapsed_s": 5427.3, "epoch": 0.8015952143569293} +{"step": 8050, "loss": 0.8304, "learning_rate": 0.00013600103647886638, "grad_norm": 2.8576018810272217, "token_acc": 0.7981055915355683, "gpu_alloc_gb": 12.88, "elapsed_s": 5434.0, "epoch": 0.80259222333001} +{"step": 8060, "loss": 0.8541, "learning_rate": 0.00013585036039209247, "grad_norm": 1.1199676990509033, "token_acc": 0.7967860758304596, "gpu_alloc_gb": 12.88, "elapsed_s": 5440.6, "epoch": 0.8035892323030908} +{"step": 8070, "loss": 0.8325, "learning_rate": 0.00013569959085155868, "grad_norm": 1.6732428073883057, "token_acc": 0.7996277213096619, "gpu_alloc_gb": 12.88, "elapsed_s": 5447.4, "epoch": 0.8045862412761715} +{"step": 8080, "loss": 0.7913, "learning_rate": 0.00013554872825028696, "grad_norm": 1.028990626335144, "token_acc": 0.8099043190479278, "gpu_alloc_gb": 12.88, "elapsed_s": 5453.9, "epoch": 0.8055832502492523} +{"step": 8090, "loss": 0.8568, "learning_rate": 0.00013539777298154205, "grad_norm": 1.9663867950439453, "token_acc": 0.7998857438564301, "gpu_alloc_gb": 12.88, "elapsed_s": 5460.5, "epoch": 0.806580259222333} +{"step": 8100, "loss": 0.815, "learning_rate": 0.00013524672543882996, "grad_norm": 2.6998066902160645, "token_acc": 0.8032804727554321, "gpu_alloc_gb": 12.88, "elapsed_s": 5467.4, "epoch": 0.8075772681954138} +{"step": 8110, "loss": 0.8374, "learning_rate": 0.00013509558601589746, "grad_norm": 1.0087412595748901, "token_acc": 0.8011101722717285, "gpu_alloc_gb": 12.88, "elapsed_s": 5474.0, "epoch": 0.8085742771684945} +{"step": 8120, "loss": 0.8617, "learning_rate": 0.00013494435510673074, "grad_norm": 1.2080705165863037, "token_acc": 0.7970361232757568, "gpu_alloc_gb": 12.88, "elapsed_s": 5480.9, "epoch": 0.8095712861415753} +{"step": 8130, "loss": 0.8275, "learning_rate": 0.00013479303310555448, "grad_norm": 1.8593711853027344, "token_acc": 0.8043996691703796, "gpu_alloc_gb": 12.88, "elapsed_s": 5487.5, "epoch": 0.810568295114656} +{"step": 8140, "loss": 0.8473, "learning_rate": 0.00013464162040683077, "grad_norm": 1.1597859859466553, "token_acc": 0.7960629999637604, "gpu_alloc_gb": 12.88, "elapsed_s": 5494.1, "epoch": 0.8115653040877367} +{"step": 8150, "loss": 0.8437, "learning_rate": 0.0001344901174052583, "grad_norm": 1.2056097984313965, "token_acc": 0.8003918409347535, "gpu_alloc_gb": 12.88, "elapsed_s": 5500.9, "epoch": 0.8125623130608175} +{"step": 8160, "loss": 0.8618, "learning_rate": 0.0001343385244957709, "grad_norm": 1.177144169807434, "token_acc": 0.7945165455341339, "gpu_alloc_gb": 12.88, "elapsed_s": 5507.7, "epoch": 0.8135593220338984} +{"step": 8170, "loss": 0.8484, "learning_rate": 0.00013418684207353702, "grad_norm": 1.8798871040344238, "token_acc": 0.8000050783157349, "gpu_alloc_gb": 12.88, "elapsed_s": 5514.4, "epoch": 0.8145563310069791} +{"step": 8180, "loss": 0.87, "learning_rate": 0.0001340350705339583, "grad_norm": 1.80402672290802, "token_acc": 0.7939883768558502, "gpu_alloc_gb": 12.88, "elapsed_s": 5521.0, "epoch": 0.8155533399800599} +{"step": 8190, "loss": 0.8447, "learning_rate": 0.0001338832102726687, "grad_norm": 1.4542303085327148, "token_acc": 0.7965773820877076, "gpu_alloc_gb": 12.88, "elapsed_s": 5527.8, "epoch": 0.8165503489531406} +{"step": 8200, "loss": 0.8289, "learning_rate": 0.0001337312616855335, "grad_norm": 1.183573842048645, "token_acc": 0.7995305716991424, "gpu_alloc_gb": 12.88, "elapsed_s": 5534.4, "epoch": 0.8175473579262214} +{"step": 8210, "loss": 0.8745, "learning_rate": 0.00013357922516864828, "grad_norm": 1.65680730342865, "token_acc": 0.7936543166637421, "gpu_alloc_gb": 12.88, "elapsed_s": 5541.0, "epoch": 0.8185443668993021} +{"step": 8220, "loss": 0.8822, "learning_rate": 0.00013342710111833762, "grad_norm": 1.2277424335479736, "token_acc": 0.7917815864086151, "gpu_alloc_gb": 12.88, "elapsed_s": 5547.6, "epoch": 0.8195413758723828} +{"step": 8230, "loss": 0.8141, "learning_rate": 0.00013327488993115452, "grad_norm": 2.951137065887451, "token_acc": 0.8024018466472626, "gpu_alloc_gb": 12.88, "elapsed_s": 5554.1, "epoch": 0.8205383848454636} +{"step": 8240, "loss": 0.8675, "learning_rate": 0.00013312259200387903, "grad_norm": 1.1943846940994263, "token_acc": 0.7860419094562531, "gpu_alloc_gb": 12.88, "elapsed_s": 5560.7, "epoch": 0.8215353938185443} +{"step": 8250, "loss": 0.8736, "learning_rate": 0.0001329702077335173, "grad_norm": 2.3037354946136475, "token_acc": 0.796388429403305, "gpu_alloc_gb": 12.88, "elapsed_s": 5567.5, "epoch": 0.8225324027916251} +{"step": 8250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 5634.3, "epoch": 0.8225324027916251} +{"step": 8250, "eval_loss": 1.2547940015792847, "eval_step": true} +{"step": 8260, "loss": 0.8715, "learning_rate": 0.00013281773751730054, "grad_norm": 1.9111276865005493, "token_acc": 0.793378210067749, "gpu_alloc_gb": 12.88, "elapsed_s": 5678.2, "epoch": 0.8235294117647058} +{"step": 8270, "loss": 0.8474, "learning_rate": 0.00013266518175268402, "grad_norm": 1.1046643257141113, "token_acc": 0.7989541471004487, "gpu_alloc_gb": 12.88, "elapsed_s": 5684.8, "epoch": 0.8245264207377866} +{"step": 8280, "loss": 0.8475, "learning_rate": 0.0001325125408373461, "grad_norm": 1.008616328239441, "token_acc": 0.8004277527332306, "gpu_alloc_gb": 12.88, "elapsed_s": 5691.6, "epoch": 0.8255234297108675} +{"step": 8290, "loss": 0.8813, "learning_rate": 0.00013235981516918695, "grad_norm": 2.3096442222595215, "token_acc": 0.7941502809524537, "gpu_alloc_gb": 12.88, "elapsed_s": 5698.5, "epoch": 0.8265204386839482} +{"step": 8300, "loss": 0.9091, "learning_rate": 0.00013220700514632777, "grad_norm": 1.3821649551391602, "token_acc": 0.7872118532657624, "gpu_alloc_gb": 12.88, "elapsed_s": 5705.3, "epoch": 0.827517447657029} +{"step": 8310, "loss": 0.8636, "learning_rate": 0.00013205411116710972, "grad_norm": 1.2012656927108765, "token_acc": 0.7977287828922272, "gpu_alloc_gb": 12.88, "elapsed_s": 5712.0, "epoch": 0.8285144566301097} +{"step": 8320, "loss": 0.8901, "learning_rate": 0.0001319011336300926, "grad_norm": 1.7899513244628906, "token_acc": 0.7942230761051178, "gpu_alloc_gb": 12.88, "elapsed_s": 5718.7, "epoch": 0.8295114656031904} +{"step": 8330, "loss": 0.8265, "learning_rate": 0.00013174807293405428, "grad_norm": 1.1142679452896118, "token_acc": 0.8024062752723694, "gpu_alloc_gb": 12.88, "elapsed_s": 5725.5, "epoch": 0.8305084745762712} +{"step": 8340, "loss": 0.8358, "learning_rate": 0.0001315949294779892, "grad_norm": 1.0771152973175049, "token_acc": 0.8011821866035461, "gpu_alloc_gb": 12.88, "elapsed_s": 5732.1, "epoch": 0.8315054835493519} +{"step": 8350, "loss": 0.8455, "learning_rate": 0.00013144170366110767, "grad_norm": 1.0411851406097412, "token_acc": 0.8009439408779144, "gpu_alloc_gb": 12.88, "elapsed_s": 5738.9, "epoch": 0.8325024925224327} +{"step": 8360, "loss": 0.8184, "learning_rate": 0.00013128839588283456, "grad_norm": 2.6594204902648926, "token_acc": 0.8054869592189788, "gpu_alloc_gb": 12.88, "elapsed_s": 5745.6, "epoch": 0.8334995014955134} +{"step": 8370, "loss": 0.8655, "learning_rate": 0.00013113500654280866, "grad_norm": 1.6957688331604004, "token_acc": 0.7931931555271149, "gpu_alloc_gb": 12.88, "elapsed_s": 5752.3, "epoch": 0.8344965104685942} +{"step": 8380, "loss": 0.8228, "learning_rate": 0.00013098153604088102, "grad_norm": 1.0154484510421753, "token_acc": 0.8018922805786133, "gpu_alloc_gb": 12.88, "elapsed_s": 5759.2, "epoch": 0.8354935194416749} +{"step": 8390, "loss": 0.8357, "learning_rate": 0.0001308279847771145, "grad_norm": 1.3169142007827759, "token_acc": 0.802396833896637, "gpu_alloc_gb": 12.88, "elapsed_s": 5766.0, "epoch": 0.8364905284147557} +{"step": 8400, "loss": 0.8641, "learning_rate": 0.00013067435315178248, "grad_norm": 1.265540599822998, "token_acc": 0.7959597706794739, "gpu_alloc_gb": 12.88, "elapsed_s": 5772.8, "epoch": 0.8374875373878365} +{"step": 8410, "loss": 0.8874, "learning_rate": 0.0001305206415653677, "grad_norm": 1.7579456567764282, "token_acc": 0.793998783826828, "gpu_alloc_gb": 12.88, "elapsed_s": 5779.6, "epoch": 0.8384845463609173} +{"step": 8420, "loss": 0.8622, "learning_rate": 0.00013036685041856137, "grad_norm": 1.1807423830032349, "token_acc": 0.7947416007518768, "gpu_alloc_gb": 12.88, "elapsed_s": 5786.5, "epoch": 0.839481555333998} +{"step": 8430, "loss": 0.8584, "learning_rate": 0.00013021298011226228, "grad_norm": 1.0872256755828857, "token_acc": 0.7945210099220276, "gpu_alloc_gb": 12.88, "elapsed_s": 5793.3, "epoch": 0.8404785643070788} +{"step": 8440, "loss": 0.8882, "learning_rate": 0.0001300590310475753, "grad_norm": 1.219294786453247, "token_acc": 0.7881730318069458, "gpu_alloc_gb": 12.88, "elapsed_s": 5800.0, "epoch": 0.8414755732801595} +{"step": 8450, "loss": 0.846, "learning_rate": 0.00012990500362581076, "grad_norm": 1.1354296207427979, "token_acc": 0.8000052213668823, "gpu_alloc_gb": 12.88, "elapsed_s": 5806.7, "epoch": 0.8424725822532403} +{"step": 8460, "loss": 0.838, "learning_rate": 0.00012975089824848323, "grad_norm": 1.0194292068481445, "token_acc": 0.7997109115123748, "gpu_alloc_gb": 12.88, "elapsed_s": 5813.5, "epoch": 0.843469591226321} +{"step": 8470, "loss": 0.8137, "learning_rate": 0.0001295967153173105, "grad_norm": 1.0643267631530762, "token_acc": 0.8053916215896606, "gpu_alloc_gb": 12.88, "elapsed_s": 5820.4, "epoch": 0.8444666001994018} +{"step": 8480, "loss": 0.8298, "learning_rate": 0.00012944245523421248, "grad_norm": 1.0469948053359985, "token_acc": 0.8037092387676239, "gpu_alloc_gb": 12.88, "elapsed_s": 5827.2, "epoch": 0.8454636091724825} +{"step": 8490, "loss": 0.8583, "learning_rate": 0.00012928811840131024, "grad_norm": 0.979512095451355, "token_acc": 0.7936890304088593, "gpu_alloc_gb": 12.88, "elapsed_s": 5834.0, "epoch": 0.8464606181455633} +{"step": 8500, "loss": 0.8325, "learning_rate": 0.0001291337052209249, "grad_norm": 1.0000625848770142, "token_acc": 0.802352637052536, "gpu_alloc_gb": 12.88, "elapsed_s": 5840.6, "epoch": 0.847457627118644} +{"step": 8500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 5907.5, "epoch": 0.847457627118644} +{"step": 8500, "eval_loss": 1.2560011148452759, "eval_step": true} +{"step": 8510, "loss": 0.7936, "learning_rate": 0.0001289792160955766, "grad_norm": 1.0192269086837769, "token_acc": 0.807566475868225, "gpu_alloc_gb": 12.88, "elapsed_s": 5955.2, "epoch": 0.8484546360917248} +{"step": 8520, "loss": 0.8481, "learning_rate": 0.00012882465142798345, "grad_norm": 0.8952286839485168, "token_acc": 0.8034879744052887, "gpu_alloc_gb": 12.88, "elapsed_s": 5961.8, "epoch": 0.8494516450648056} +{"step": 8530, "loss": 0.8939, "learning_rate": 0.00012867001162106056, "grad_norm": 0.9743002653121948, "token_acc": 0.788653165102005, "gpu_alloc_gb": 12.88, "elapsed_s": 5968.6, "epoch": 0.8504486540378864} +{"step": 8540, "loss": 0.8649, "learning_rate": 0.00012851529707791874, "grad_norm": 1.5055238008499146, "token_acc": 0.7949854493141174, "gpu_alloc_gb": 12.88, "elapsed_s": 5975.4, "epoch": 0.8514456630109671} +{"step": 8550, "loss": 0.8458, "learning_rate": 0.00012836050820186375, "grad_norm": 0.9267898797988892, "token_acc": 0.797117269039154, "gpu_alloc_gb": 12.88, "elapsed_s": 5981.9, "epoch": 0.8524426719840479} +{"step": 8560, "loss": 0.8362, "learning_rate": 0.00012820564539639512, "grad_norm": 1.2339543104171753, "token_acc": 0.8022220611572266, "gpu_alloc_gb": 12.88, "elapsed_s": 5988.6, "epoch": 0.8534396809571286} +{"step": 8570, "loss": 0.8915, "learning_rate": 0.00012805070906520504, "grad_norm": 8.171072959899902, "token_acc": 0.7924008727073669, "gpu_alloc_gb": 12.88, "elapsed_s": 5995.2, "epoch": 0.8544366899302094} +{"step": 8580, "loss": 0.8515, "learning_rate": 0.00012789569961217738, "grad_norm": 2.136478900909424, "token_acc": 0.7974299967288971, "gpu_alloc_gb": 12.88, "elapsed_s": 6001.9, "epoch": 0.8554336989032901} +{"step": 8590, "loss": 0.8796, "learning_rate": 0.0001277406174413867, "grad_norm": 1.1891618967056274, "token_acc": 0.7958296775817871, "gpu_alloc_gb": 12.88, "elapsed_s": 6008.6, "epoch": 0.8564307078763709} +{"step": 8600, "loss": 0.7802, "learning_rate": 0.00012758546295709694, "grad_norm": 6.470229625701904, "token_acc": 0.8133362889289856, "gpu_alloc_gb": 12.88, "elapsed_s": 6015.3, "epoch": 0.8574277168494516} +{"step": 8610, "loss": 0.8438, "learning_rate": 0.00012743023656376076, "grad_norm": 3.445314645767212, "token_acc": 0.8032610535621643, "gpu_alloc_gb": 12.88, "elapsed_s": 6021.9, "epoch": 0.8584247258225324} +{"step": 8620, "loss": 0.8306, "learning_rate": 0.00012727493866601812, "grad_norm": 1.1883207559585571, "token_acc": 0.8030418455600739, "gpu_alloc_gb": 12.88, "elapsed_s": 6028.7, "epoch": 0.8594217347956131} +{"step": 8630, "loss": 0.8207, "learning_rate": 0.00012711956966869544, "grad_norm": 0.9995777606964111, "token_acc": 0.8031899869441986, "gpu_alloc_gb": 12.88, "elapsed_s": 6035.4, "epoch": 0.8604187437686939} +{"step": 8640, "loss": 0.8615, "learning_rate": 0.0001269641299768044, "grad_norm": 5.744531631469727, "token_acc": 0.795758044719696, "gpu_alloc_gb": 12.88, "elapsed_s": 6042.0, "epoch": 0.8614157527417746} +{"step": 8650, "loss": 0.894, "learning_rate": 0.0001268086199955411, "grad_norm": 1.076462984085083, "token_acc": 0.7931145310401917, "gpu_alloc_gb": 12.88, "elapsed_s": 6048.8, "epoch": 0.8624127617148555} +{"step": 8660, "loss": 0.8283, "learning_rate": 0.00012665304013028482, "grad_norm": 0.9989609122276306, "token_acc": 0.8001443147659302, "gpu_alloc_gb": 12.88, "elapsed_s": 6055.3, "epoch": 0.8634097706879362} +{"step": 8670, "loss": 0.8328, "learning_rate": 0.0001264973907865969, "grad_norm": 1.0647695064544678, "token_acc": 0.8028216540813446, "gpu_alloc_gb": 12.88, "elapsed_s": 6061.9, "epoch": 0.864406779661017} +{"step": 8680, "loss": 0.83, "learning_rate": 0.00012634167237021997, "grad_norm": 1.1640934944152832, "token_acc": 0.8029118955135346, "gpu_alloc_gb": 12.88, "elapsed_s": 6068.6, "epoch": 0.8654037886340977} +{"step": 8690, "loss": 0.8195, "learning_rate": 0.00012618588528707654, "grad_norm": 1.065418004989624, "token_acc": 0.8033814668655396, "gpu_alloc_gb": 12.88, "elapsed_s": 6075.2, "epoch": 0.8664007976071785} +{"step": 8700, "loss": 0.8878, "learning_rate": 0.00012603002994326828, "grad_norm": 1.122702956199646, "token_acc": 0.7900082170963287, "gpu_alloc_gb": 12.88, "elapsed_s": 6081.8, "epoch": 0.8673978065802592} +{"step": 8710, "loss": 0.8217, "learning_rate": 0.0001258741067450747, "grad_norm": 0.9309684634208679, "token_acc": 0.8030640304088592, "gpu_alloc_gb": 12.88, "elapsed_s": 6088.5, "epoch": 0.86839481555334} +{"step": 8720, "loss": 0.8248, "learning_rate": 0.00012571811609895223, "grad_norm": 4.631176948547363, "token_acc": 0.8039683401584625, "gpu_alloc_gb": 12.88, "elapsed_s": 6095.3, "epoch": 0.8693918245264207} +{"step": 8730, "loss": 0.8814, "learning_rate": 0.0001255620584115331, "grad_norm": 1.3940762281417847, "token_acc": 0.7935612261295318, "gpu_alloc_gb": 12.88, "elapsed_s": 6101.8, "epoch": 0.8703888334995015} +{"step": 8740, "loss": 0.8373, "learning_rate": 0.00012540593408962434, "grad_norm": 1.1664068698883057, "token_acc": 0.8009687066078186, "gpu_alloc_gb": 12.88, "elapsed_s": 6108.5, "epoch": 0.8713858424725822} +{"step": 8750, "loss": 0.8906, "learning_rate": 0.0001252497435402066, "grad_norm": 2.832103967666626, "token_acc": 0.7917367219924927, "gpu_alloc_gb": 12.88, "elapsed_s": 6115.3, "epoch": 0.872382851445663} +{"step": 8750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 6182.4, "epoch": 0.872382851445663} +{"step": 8750, "eval_loss": 1.2577608823776245, "eval_step": true} +{"step": 8760, "loss": 0.8508, "learning_rate": 0.00012509348717043328, "grad_norm": 1.8463053703308105, "token_acc": 0.7998460173606873, "gpu_alloc_gb": 12.88, "elapsed_s": 6228.4, "epoch": 0.8733798604187437} +{"step": 8770, "loss": 0.7964, "learning_rate": 0.00012493716538762925, "grad_norm": 1.0361080169677734, "token_acc": 0.8104954063892365, "gpu_alloc_gb": 12.88, "elapsed_s": 6235.0, "epoch": 0.8743768693918246} +{"step": 8780, "loss": 0.8466, "learning_rate": 0.00012478077859929, "grad_norm": 1.7719769477844238, "token_acc": 0.8013041734695434, "gpu_alloc_gb": 12.88, "elapsed_s": 6241.7, "epoch": 0.8753738783649053} +{"step": 8790, "loss": 0.8717, "learning_rate": 0.0001246243272130804, "grad_norm": 1.8303008079528809, "token_acc": 0.7953844845294953, "gpu_alloc_gb": 12.88, "elapsed_s": 6248.5, "epoch": 0.8763708873379861} +{"step": 8800, "loss": 0.8275, "learning_rate": 0.0001244678116368337, "grad_norm": 1.1439929008483887, "token_acc": 0.8072925806045532, "gpu_alloc_gb": 12.88, "elapsed_s": 6255.2, "epoch": 0.8773678963110668} +{"step": 8810, "loss": 0.8409, "learning_rate": 0.00012431123227855058, "grad_norm": 1.7782349586486816, "token_acc": 0.8058653771877289, "gpu_alloc_gb": 12.88, "elapsed_s": 6262.0, "epoch": 0.8783649052841476} +{"step": 8820, "loss": 0.8479, "learning_rate": 0.0001241545895463979, "grad_norm": 1.3206580877304077, "token_acc": 0.8013449907302856, "gpu_alloc_gb": 12.88, "elapsed_s": 6268.6, "epoch": 0.8793619142572283} +{"step": 8830, "loss": 0.7848, "learning_rate": 0.00012399788384870772, "grad_norm": 0.9720423817634583, "token_acc": 0.8117626905441284, "gpu_alloc_gb": 12.88, "elapsed_s": 6275.1, "epoch": 0.8803589232303091} +{"step": 8840, "loss": 0.8371, "learning_rate": 0.00012384111559397625, "grad_norm": 2.5526580810546875, "token_acc": 0.80339475274086, "gpu_alloc_gb": 12.88, "elapsed_s": 6281.9, "epoch": 0.8813559322033898} +{"step": 8850, "loss": 0.8097, "learning_rate": 0.00012368428519086283, "grad_norm": 1.2785942554473877, "token_acc": 0.8064897537231446, "gpu_alloc_gb": 12.88, "elapsed_s": 6288.7, "epoch": 0.8823529411764706} +{"step": 8860, "loss": 0.8542, "learning_rate": 0.00012352739304818873, "grad_norm": 1.1257758140563965, "token_acc": 0.8004123568534851, "gpu_alloc_gb": 12.88, "elapsed_s": 6295.4, "epoch": 0.8833499501495513} +{"step": 8870, "loss": 0.8388, "learning_rate": 0.00012337043957493614, "grad_norm": 0.9537046551704407, "token_acc": 0.8002840578556061, "gpu_alloc_gb": 12.88, "elapsed_s": 6302.1, "epoch": 0.8843469591226321} +{"step": 8880, "loss": 0.8765, "learning_rate": 0.0001232134251802473, "grad_norm": 1.7098714113235474, "token_acc": 0.7968111991882324, "gpu_alloc_gb": 12.88, "elapsed_s": 6309.0, "epoch": 0.8853439680957128} +{"step": 8890, "loss": 0.8278, "learning_rate": 0.00012305635027342297, "grad_norm": 1.6083070039749146, "token_acc": 0.8052355110645294, "gpu_alloc_gb": 12.88, "elapsed_s": 6315.5, "epoch": 0.8863409770687937} +{"step": 8900, "loss": 0.8694, "learning_rate": 0.00012289921526392194, "grad_norm": 1.1826984882354736, "token_acc": 0.7991580188274383, "gpu_alloc_gb": 12.88, "elapsed_s": 6322.3, "epoch": 0.8873379860418744} +{"step": 8910, "loss": 0.8085, "learning_rate": 0.00012274202056135948, "grad_norm": 1.9671066999435425, "token_acc": 0.8051293432712555, "gpu_alloc_gb": 12.88, "elapsed_s": 6329.0, "epoch": 0.8883349950149552} +{"step": 8920, "loss": 0.7821, "learning_rate": 0.00012258476657550654, "grad_norm": 1.2114754915237427, "token_acc": 0.8099616408348084, "gpu_alloc_gb": 12.88, "elapsed_s": 6335.6, "epoch": 0.8893320039880359} +{"step": 8930, "loss": 0.8523, "learning_rate": 0.00012242745371628862, "grad_norm": 0.9647796750068665, "token_acc": 0.7989835321903229, "gpu_alloc_gb": 12.88, "elapsed_s": 6342.4, "epoch": 0.8903290129611167} +{"step": 8940, "loss": 0.8371, "learning_rate": 0.0001222700823937847, "grad_norm": 1.6352746486663818, "token_acc": 0.7963019013404846, "gpu_alloc_gb": 12.88, "elapsed_s": 6349.0, "epoch": 0.8913260219341974} +{"step": 8950, "loss": 0.841, "learning_rate": 0.00012211265301822604, "grad_norm": 1.1162898540496826, "token_acc": 0.8000122904777527, "gpu_alloc_gb": 12.88, "elapsed_s": 6355.6, "epoch": 0.8923230309072782} +{"step": 8960, "loss": 0.8599, "learning_rate": 0.00012195516599999541, "grad_norm": 1.273097276687622, "token_acc": 0.7950390040874481, "gpu_alloc_gb": 12.88, "elapsed_s": 6363.1, "epoch": 0.8933200398803589} +{"step": 8970, "loss": 0.8614, "learning_rate": 0.00012179762174962573, "grad_norm": 1.0949898958206177, "token_acc": 0.7939191102981568, "gpu_alloc_gb": 12.88, "elapsed_s": 6370.0, "epoch": 0.8943170488534397} +{"step": 8980, "loss": 0.8355, "learning_rate": 0.0001216400206777991, "grad_norm": 0.8734021186828613, "token_acc": 0.8030223548412323, "gpu_alloc_gb": 12.88, "elapsed_s": 6376.8, "epoch": 0.8953140578265204} +{"step": 8990, "loss": 0.82, "learning_rate": 0.0001214823631953458, "grad_norm": 2.2778024673461914, "token_acc": 0.8065328419208526, "gpu_alloc_gb": 12.88, "elapsed_s": 6383.4, "epoch": 0.8963110667996012} +{"step": 9000, "loss": 0.7849, "learning_rate": 0.00012132464971324317, "grad_norm": 0.9865330457687378, "token_acc": 0.8104633808135986, "gpu_alloc_gb": 12.88, "elapsed_s": 6390.3, "epoch": 0.8973080757726819} +{"step": 9000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 6457.3, "epoch": 0.8973080757726819} +{"step": 9000, "eval_loss": 1.2750381231307983, "eval_step": true} +{"step": 9010, "loss": 0.8225, "learning_rate": 0.00012116688064261441, "grad_norm": 1.1017625331878662, "token_acc": 0.8049637794494628, "gpu_alloc_gb": 12.88, "elapsed_s": 6506.6, "epoch": 0.8983050847457628} +{"step": 9020, "loss": 0.7914, "learning_rate": 0.00012100905639472779, "grad_norm": 1.6254138946533203, "token_acc": 0.8087950468063354, "gpu_alloc_gb": 12.88, "elapsed_s": 6513.0, "epoch": 0.8993020937188435} +{"step": 9030, "loss": 0.8167, "learning_rate": 0.00012085117738099532, "grad_norm": 1.1433460712432861, "token_acc": 0.8026266753673553, "gpu_alloc_gb": 12.88, "elapsed_s": 6519.8, "epoch": 0.9002991026919243} +{"step": 9040, "loss": 0.8256, "learning_rate": 0.00012069324401297178, "grad_norm": 1.2639116048812866, "token_acc": 0.8039147973060607, "gpu_alloc_gb": 12.88, "elapsed_s": 6526.4, "epoch": 0.901296111665005} +{"step": 9050, "loss": 0.8614, "learning_rate": 0.0001205352567023536, "grad_norm": 1.161465048789978, "token_acc": 0.7960692524909974, "gpu_alloc_gb": 12.88, "elapsed_s": 6533.5, "epoch": 0.9022931206380858} +{"step": 9060, "loss": 0.8309, "learning_rate": 0.00012037721586097794, "grad_norm": 1.047273874282837, "token_acc": 0.8004530489444732, "gpu_alloc_gb": 12.88, "elapsed_s": 6540.2, "epoch": 0.9032901296111665} +{"step": 9070, "loss": 0.8397, "learning_rate": 0.00012021912190082138, "grad_norm": 1.0956605672836304, "token_acc": 0.8013022184371948, "gpu_alloc_gb": 12.88, "elapsed_s": 6546.9, "epoch": 0.9042871385842473} +{"step": 9080, "loss": 0.8553, "learning_rate": 0.00012006097523399907, "grad_norm": 1.7510892152786255, "token_acc": 0.7998752176761628, "gpu_alloc_gb": 12.88, "elapsed_s": 6553.4, "epoch": 0.905284147557328} +{"step": 9090, "loss": 0.8272, "learning_rate": 0.00011990277627276347, "grad_norm": 1.3026477098464966, "token_acc": 0.8025671362876892, "gpu_alloc_gb": 12.88, "elapsed_s": 6560.3, "epoch": 0.9062811565304087} +{"step": 9100, "loss": 0.8275, "learning_rate": 0.00011974452542950345, "grad_norm": 1.2583765983581543, "token_acc": 0.8045180559158325, "gpu_alloc_gb": 12.88, "elapsed_s": 6567.0, "epoch": 0.9072781655034895} +{"step": 9110, "loss": 0.8346, "learning_rate": 0.00011958622311674301, "grad_norm": 1.3780672550201416, "token_acc": 0.8031991183757782, "gpu_alloc_gb": 12.88, "elapsed_s": 6573.7, "epoch": 0.9082751744765702} +{"step": 9120, "loss": 0.8476, "learning_rate": 0.00011942786974714042, "grad_norm": 1.0535497665405273, "token_acc": 0.8014811456203461, "gpu_alloc_gb": 12.88, "elapsed_s": 6580.4, "epoch": 0.909272183449651} +{"step": 9130, "loss": 0.8649, "learning_rate": 0.00011926946573348701, "grad_norm": 1.119327187538147, "token_acc": 0.799462741613388, "gpu_alloc_gb": 12.88, "elapsed_s": 6587.1, "epoch": 0.9102691924227319} +{"step": 9140, "loss": 0.8559, "learning_rate": 0.0001191110114887061, "grad_norm": 0.9990797638893127, "token_acc": 0.7995920717716217, "gpu_alloc_gb": 12.88, "elapsed_s": 6593.7, "epoch": 0.9112662013958126} +{"step": 9150, "loss": 0.8355, "learning_rate": 0.00011895250742585196, "grad_norm": 1.085598349571228, "token_acc": 0.8010922133922577, "gpu_alloc_gb": 12.88, "elapsed_s": 6600.5, "epoch": 0.9122632103688934} +{"step": 9160, "loss": 0.7966, "learning_rate": 0.0001187939539581088, "grad_norm": 1.074130654335022, "token_acc": 0.8071608424186707, "gpu_alloc_gb": 12.88, "elapsed_s": 6607.2, "epoch": 0.9132602193419741} +{"step": 9170, "loss": 0.8473, "learning_rate": 0.00011863535149878946, "grad_norm": 2.5440685749053955, "token_acc": 0.8021305680274964, "gpu_alloc_gb": 12.88, "elapsed_s": 6613.8, "epoch": 0.9142572283150548} +{"step": 9180, "loss": 0.8418, "learning_rate": 0.00011847670046133468, "grad_norm": 5.300566673278809, "token_acc": 0.7963027834892273, "gpu_alloc_gb": 12.88, "elapsed_s": 6620.9, "epoch": 0.9152542372881356} +{"step": 9190, "loss": 0.8701, "learning_rate": 0.0001183180012593117, "grad_norm": 4.57758903503418, "token_acc": 0.7988169252872467, "gpu_alloc_gb": 12.88, "elapsed_s": 6627.8, "epoch": 0.9162512462612163} +{"step": 9200, "loss": 0.8502, "learning_rate": 0.00011815925430641335, "grad_norm": 1.0944290161132812, "token_acc": 0.7974327564239502, "gpu_alloc_gb": 12.88, "elapsed_s": 6634.2, "epoch": 0.9172482552342971} +{"step": 9210, "loss": 0.8162, "learning_rate": 0.0001180004600164569, "grad_norm": 1.2132741212844849, "token_acc": 0.8019622147083283, "gpu_alloc_gb": 12.88, "elapsed_s": 6641.0, "epoch": 0.9182452642073778} +{"step": 9220, "loss": 0.8567, "learning_rate": 0.00011784161880338315, "grad_norm": 1.2605613470077515, "token_acc": 0.8002374827861786, "gpu_alloc_gb": 12.88, "elapsed_s": 6647.8, "epoch": 0.9192422731804586} +{"step": 9230, "loss": 0.8282, "learning_rate": 0.00011768273108125505, "grad_norm": 1.1024110317230225, "token_acc": 0.8050571143627167, "gpu_alloc_gb": 12.88, "elapsed_s": 6654.6, "epoch": 0.9202392821535393} +{"step": 9240, "loss": 0.8342, "learning_rate": 0.00011752379726425688, "grad_norm": 5.884418487548828, "token_acc": 0.801437932252884, "gpu_alloc_gb": 12.88, "elapsed_s": 6661.3, "epoch": 0.9212362911266201} +{"step": 9250, "loss": 0.8484, "learning_rate": 0.00011736481776669306, "grad_norm": 1.90988290309906, "token_acc": 0.8002288401126861, "gpu_alloc_gb": 12.88, "elapsed_s": 6668.0, "epoch": 0.922233300099701} +{"step": 9250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 6735.0, "epoch": 0.922233300099701} +{"step": 9250, "eval_loss": 1.2665798664093018, "eval_step": true} +{"step": 9260, "loss": 0.8526, "learning_rate": 0.00011720579300298706, "grad_norm": 1.3488330841064453, "token_acc": 0.7982625544071198, "gpu_alloc_gb": 12.88, "elapsed_s": 6782.9, "epoch": 0.9232303090727817} +{"step": 9270, "loss": 0.8239, "learning_rate": 0.00011704672338768041, "grad_norm": 1.1555333137512207, "token_acc": 0.799391359090805, "gpu_alloc_gb": 12.88, "elapsed_s": 6789.6, "epoch": 0.9242273180458624} +{"step": 9280, "loss": 0.823, "learning_rate": 0.00011688760933543157, "grad_norm": 1.1225929260253906, "token_acc": 0.8025399923324585, "gpu_alloc_gb": 12.88, "elapsed_s": 6796.4, "epoch": 0.9252243270189432} +{"step": 9290, "loss": 0.8436, "learning_rate": 0.00011672845126101468, "grad_norm": 1.1254222393035889, "token_acc": 0.8017998456954956, "gpu_alloc_gb": 12.88, "elapsed_s": 6803.2, "epoch": 0.9262213359920239} +{"step": 9300, "loss": 0.8593, "learning_rate": 0.00011656924957931883, "grad_norm": 3.1881179809570312, "token_acc": 0.7975149393081665, "gpu_alloc_gb": 12.88, "elapsed_s": 6809.8, "epoch": 0.9272183449651047} +{"step": 9310, "loss": 0.8385, "learning_rate": 0.00011641000470534669, "grad_norm": 1.8667253255844116, "token_acc": 0.7989960312843323, "gpu_alloc_gb": 12.88, "elapsed_s": 6816.8, "epoch": 0.9282153539381854} +{"step": 9320, "loss": 0.8087, "learning_rate": 0.00011625071705421353, "grad_norm": 2.5659215450286865, "token_acc": 0.805476987361908, "gpu_alloc_gb": 12.88, "elapsed_s": 6823.5, "epoch": 0.9292123629112662} +{"step": 9330, "loss": 0.8268, "learning_rate": 0.0001160913870411461, "grad_norm": 1.0756134986877441, "token_acc": 0.8014650821685791, "gpu_alloc_gb": 12.88, "elapsed_s": 6830.2, "epoch": 0.9302093718843469} +{"step": 9340, "loss": 0.8284, "learning_rate": 0.00011593201508148168, "grad_norm": 2.219790458679199, "token_acc": 0.8049473881721496, "gpu_alloc_gb": 12.88, "elapsed_s": 6837.0, "epoch": 0.9312063808574277} +{"step": 9350, "loss": 0.8069, "learning_rate": 0.00011577260159066681, "grad_norm": 1.10478675365448, "token_acc": 0.8056349217891693, "gpu_alloc_gb": 12.88, "elapsed_s": 6843.6, "epoch": 0.9322033898305084} +{"step": 9360, "loss": 0.8047, "learning_rate": 0.00011561314698425627, "grad_norm": 4.017104625701904, "token_acc": 0.8059788823127747, "gpu_alloc_gb": 12.88, "elapsed_s": 6850.3, "epoch": 0.9332003988035892} +{"step": 9370, "loss": 0.7947, "learning_rate": 0.00011545365167791207, "grad_norm": 1.1422659158706665, "token_acc": 0.8064077198505402, "gpu_alloc_gb": 12.88, "elapsed_s": 6856.9, "epoch": 0.93419740777667} +{"step": 9380, "loss": 0.8054, "learning_rate": 0.00011529411608740237, "grad_norm": 1.0803815126419067, "token_acc": 0.8082692742347717, "gpu_alloc_gb": 12.88, "elapsed_s": 6863.6, "epoch": 0.9351944167497508} +{"step": 9390, "loss": 0.8358, "learning_rate": 0.00011513454062860018, "grad_norm": 1.6430691480636597, "token_acc": 0.798289692401886, "gpu_alloc_gb": 12.88, "elapsed_s": 6870.5, "epoch": 0.9361914257228315} +{"step": 9400, "loss": 0.8444, "learning_rate": 0.00011497492571748261, "grad_norm": 1.2602145671844482, "token_acc": 0.7986491084098816, "gpu_alloc_gb": 12.88, "elapsed_s": 6877.2, "epoch": 0.9371884346959123} +{"step": 9410, "loss": 0.8459, "learning_rate": 0.00011481527177012949, "grad_norm": 1.1084598302841187, "token_acc": 0.7969745576381684, "gpu_alloc_gb": 12.88, "elapsed_s": 6884.0, "epoch": 0.938185443668993} +{"step": 9420, "loss": 0.8121, "learning_rate": 0.00011465557920272249, "grad_norm": 2.299546241760254, "token_acc": 0.8011396944522857, "gpu_alloc_gb": 12.88, "elapsed_s": 6890.8, "epoch": 0.9391824526420738} +{"step": 9430, "loss": 0.8146, "learning_rate": 0.00011449584843154393, "grad_norm": 1.2414089441299438, "token_acc": 0.80659019947052, "gpu_alloc_gb": 12.88, "elapsed_s": 6897.4, "epoch": 0.9401794616151545} +{"step": 9440, "loss": 0.8161, "learning_rate": 0.00011433607987297568, "grad_norm": 1.0701818466186523, "token_acc": 0.803025770187378, "gpu_alloc_gb": 12.88, "elapsed_s": 6904.1, "epoch": 0.9411764705882353} +{"step": 9450, "loss": 0.866, "learning_rate": 0.00011417627394349811, "grad_norm": 1.0416913032531738, "token_acc": 0.791566264629364, "gpu_alloc_gb": 12.88, "elapsed_s": 6911.1, "epoch": 0.942173479561316} +{"step": 9460, "loss": 0.8197, "learning_rate": 0.00011401643105968908, "grad_norm": 1.7109768390655518, "token_acc": 0.8049717426300049, "gpu_alloc_gb": 12.88, "elapsed_s": 6918.0, "epoch": 0.9431704885343968} +{"step": 9470, "loss": 0.8304, "learning_rate": 0.00011385655163822277, "grad_norm": 1.200753092765808, "token_acc": 0.8011469364166259, "gpu_alloc_gb": 12.88, "elapsed_s": 6925.2, "epoch": 0.9441674975074775} +{"step": 9480, "loss": 0.8566, "learning_rate": 0.00011369663609586854, "grad_norm": 1.4056360721588135, "token_acc": 0.7988486111164093, "gpu_alloc_gb": 12.88, "elapsed_s": 6931.9, "epoch": 0.9451645064805583} +{"step": 9490, "loss": 0.7887, "learning_rate": 0.00011353668484948996, "grad_norm": 0.9363288283348083, "token_acc": 0.809601777791977, "gpu_alloc_gb": 12.88, "elapsed_s": 6938.5, "epoch": 0.9461615154536391} +{"step": 9500, "loss": 0.779, "learning_rate": 0.0001133766983160436, "grad_norm": 1.1552549600601196, "token_acc": 0.809763616323471, "gpu_alloc_gb": 12.88, "elapsed_s": 6945.2, "epoch": 0.9471585244267199} +{"step": 9500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 7012.1, "epoch": 0.9471585244267199} +{"step": 9500, "eval_loss": 1.2441773414611816, "eval_step": true} +{"step": 9510, "loss": 0.8258, "learning_rate": 0.00011321667691257816, "grad_norm": 3.0902256965637207, "token_acc": 0.8026722609996796, "gpu_alloc_gb": 12.88, "elapsed_s": 7058.1, "epoch": 0.9481555333998006} +{"step": 9520, "loss": 0.8412, "learning_rate": 0.00011305662105623312, "grad_norm": 1.7750725746154785, "token_acc": 0.8007253468036651, "gpu_alloc_gb": 12.88, "elapsed_s": 7064.7, "epoch": 0.9491525423728814} +{"step": 9530, "loss": 0.8614, "learning_rate": 0.00011289653116423777, "grad_norm": 1.3313407897949219, "token_acc": 0.7929327189922333, "gpu_alloc_gb": 12.88, "elapsed_s": 7071.5, "epoch": 0.9501495513459621} +{"step": 9540, "loss": 0.8007, "learning_rate": 0.00011273640765391021, "grad_norm": 1.1743208169937134, "token_acc": 0.807463014125824, "gpu_alloc_gb": 12.88, "elapsed_s": 7078.1, "epoch": 0.9511465603190429} +{"step": 9550, "loss": 0.8326, "learning_rate": 0.00011257625094265607, "grad_norm": 1.0742791891098022, "token_acc": 0.8024621129035949, "gpu_alloc_gb": 12.88, "elapsed_s": 7084.8, "epoch": 0.9521435692921236} +{"step": 9560, "loss": 0.8195, "learning_rate": 0.0001124160614479676, "grad_norm": 1.035054087638855, "token_acc": 0.8058145403861999, "gpu_alloc_gb": 12.88, "elapsed_s": 7091.6, "epoch": 0.9531405782652044} +{"step": 9570, "loss": 0.8348, "learning_rate": 0.00011225583958742247, "grad_norm": 2.1608409881591797, "token_acc": 0.8019890189170837, "gpu_alloc_gb": 12.88, "elapsed_s": 7098.1, "epoch": 0.9541375872382851} +{"step": 9580, "loss": 0.8376, "learning_rate": 0.00011209558577868278, "grad_norm": 1.6775118112564087, "token_acc": 0.8022753655910492, "gpu_alloc_gb": 12.88, "elapsed_s": 7104.8, "epoch": 0.9551345962113659} +{"step": 9590, "loss": 0.8231, "learning_rate": 0.00011193530043949384, "grad_norm": 1.0331774950027466, "token_acc": 0.8040249526500702, "gpu_alloc_gb": 12.88, "elapsed_s": 7111.5, "epoch": 0.9561316051844466} +{"step": 9600, "loss": 0.8234, "learning_rate": 0.00011177498398768318, "grad_norm": 1.3209142684936523, "token_acc": 0.8035985171794892, "gpu_alloc_gb": 12.88, "elapsed_s": 7118.3, "epoch": 0.9571286141575274} +{"step": 9610, "loss": 0.8411, "learning_rate": 0.00011161463684115944, "grad_norm": 1.651719331741333, "token_acc": 0.8052774250507355, "gpu_alloc_gb": 12.88, "elapsed_s": 7124.9, "epoch": 0.9581256231306082} +{"step": 9620, "loss": 0.8488, "learning_rate": 0.00011145425941791126, "grad_norm": 1.1947336196899414, "token_acc": 0.7967454016208648, "gpu_alloc_gb": 12.88, "elapsed_s": 7131.6, "epoch": 0.959122632103689} +{"step": 9630, "loss": 0.8192, "learning_rate": 0.00011129385213600625, "grad_norm": 1.0319013595581055, "token_acc": 0.8059814453125, "gpu_alloc_gb": 12.88, "elapsed_s": 7138.3, "epoch": 0.9601196410767697} +{"step": 9640, "loss": 0.8087, "learning_rate": 0.00011113341541358975, "grad_norm": 1.2035291194915771, "token_acc": 0.8099612534046173, "gpu_alloc_gb": 12.88, "elapsed_s": 7144.9, "epoch": 0.9611166500498505} +{"step": 9650, "loss": 0.8394, "learning_rate": 0.00011097294966888399, "grad_norm": 1.042150855064392, "token_acc": 0.7999983966350556, "gpu_alloc_gb": 12.88, "elapsed_s": 7151.6, "epoch": 0.9621136590229312} +{"step": 9660, "loss": 0.798, "learning_rate": 0.00011081245532018674, "grad_norm": 1.1083298921585083, "token_acc": 0.8090142428874969, "gpu_alloc_gb": 12.88, "elapsed_s": 7158.3, "epoch": 0.963110667996012} +{"step": 9670, "loss": 0.8514, "learning_rate": 0.00011065193278587036, "grad_norm": 1.058349847793579, "token_acc": 0.7969250023365021, "gpu_alloc_gb": 12.88, "elapsed_s": 7165.1, "epoch": 0.9641076769690927} +{"step": 9680, "loss": 0.7943, "learning_rate": 0.00011049138248438071, "grad_norm": 1.0333749055862427, "token_acc": 0.8067643463611602, "gpu_alloc_gb": 12.88, "elapsed_s": 7171.7, "epoch": 0.9651046859421735} +{"step": 9690, "loss": 0.8293, "learning_rate": 0.00011033080483423606, "grad_norm": 0.9659123420715332, "token_acc": 0.8036950170993805, "gpu_alloc_gb": 12.88, "elapsed_s": 7178.4, "epoch": 0.9661016949152542} +{"step": 9700, "loss": 0.8355, "learning_rate": 0.00011017020025402584, "grad_norm": 1.1063343286514282, "token_acc": 0.7999964118003845, "gpu_alloc_gb": 12.88, "elapsed_s": 7185.2, "epoch": 0.967098703888335} +{"step": 9710, "loss": 0.8342, "learning_rate": 0.00011000956916240985, "grad_norm": 1.003238558769226, "token_acc": 0.8021792411804199, "gpu_alloc_gb": 12.88, "elapsed_s": 7191.9, "epoch": 0.9680957128614157} +{"step": 9720, "loss": 0.8601, "learning_rate": 0.00010984891197811687, "grad_norm": 1.175994873046875, "token_acc": 0.7986819863319397, "gpu_alloc_gb": 12.88, "elapsed_s": 7198.7, "epoch": 0.9690927218344965} +{"step": 9730, "loss": 0.8041, "learning_rate": 0.00010968822911994381, "grad_norm": 0.9763241410255432, "token_acc": 0.8099817395210266, "gpu_alloc_gb": 12.88, "elapsed_s": 7205.3, "epoch": 0.9700897308075773} +{"step": 9740, "loss": 0.8265, "learning_rate": 0.00010952752100675436, "grad_norm": 1.1304281949996948, "token_acc": 0.80368931889534, "gpu_alloc_gb": 12.88, "elapsed_s": 7211.8, "epoch": 0.9710867397806581} +{"step": 9750, "loss": 0.7873, "learning_rate": 0.0001093667880574782, "grad_norm": 1.0163331031799316, "token_acc": 0.809384161233902, "gpu_alloc_gb": 12.88, "elapsed_s": 7218.3, "epoch": 0.9720837487537388} +{"step": 9750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 7285.2, "epoch": 0.9720837487537388} +{"step": 9750, "eval_loss": 1.259377121925354, "eval_step": true} +{"step": 9760, "loss": 0.8312, "learning_rate": 0.00010920603069110964, "grad_norm": 1.726889729499817, "token_acc": 0.8028629660606384, "gpu_alloc_gb": 12.88, "elapsed_s": 7328.7, "epoch": 0.9730807577268196} +{"step": 9770, "loss": 0.7912, "learning_rate": 0.0001090452493267067, "grad_norm": 2.0728960037231445, "token_acc": 0.8108691155910492, "gpu_alloc_gb": 12.88, "elapsed_s": 7335.4, "epoch": 0.9740777666999003} +{"step": 9780, "loss": 0.8097, "learning_rate": 0.00010888444438338989, "grad_norm": 1.5518332719802856, "token_acc": 0.8087420344352723, "gpu_alloc_gb": 12.88, "elapsed_s": 7342.1, "epoch": 0.9750747756729811} +{"step": 9790, "loss": 0.8308, "learning_rate": 0.00010872361628034133, "grad_norm": 1.0389320850372314, "token_acc": 0.8002066969871521, "gpu_alloc_gb": 12.88, "elapsed_s": 7348.8, "epoch": 0.9760717846460618} +{"step": 9800, "loss": 0.8279, "learning_rate": 0.0001085627654368033, "grad_norm": 1.155907154083252, "token_acc": 0.8004069030284882, "gpu_alloc_gb": 12.88, "elapsed_s": 7355.6, "epoch": 0.9770687936191426} +{"step": 9810, "loss": 0.8237, "learning_rate": 0.00010840189227207755, "grad_norm": 1.1415860652923584, "token_acc": 0.8036462485790252, "gpu_alloc_gb": 12.88, "elapsed_s": 7362.4, "epoch": 0.9780658025922233} +{"step": 9820, "loss": 0.8204, "learning_rate": 0.00010824099720552392, "grad_norm": 1.0684900283813477, "token_acc": 0.8039858222007752, "gpu_alloc_gb": 12.88, "elapsed_s": 7369.3, "epoch": 0.9790628115653041} +{"step": 9830, "loss": 0.8181, "learning_rate": 0.00010808008065655936, "grad_norm": 2.4988763332366943, "token_acc": 0.8024367094039917, "gpu_alloc_gb": 12.88, "elapsed_s": 7376.0, "epoch": 0.9800598205383848} +{"step": 9840, "loss": 0.8212, "learning_rate": 0.0001079191430446568, "grad_norm": 4.4752278327941895, "token_acc": 0.8010034501552582, "gpu_alloc_gb": 12.88, "elapsed_s": 7382.7, "epoch": 0.9810568295114656} +{"step": 9850, "loss": 0.8489, "learning_rate": 0.00010775818478934417, "grad_norm": 1.3193823099136353, "token_acc": 0.7975051522254943, "gpu_alloc_gb": 12.88, "elapsed_s": 7389.5, "epoch": 0.9820538384845464} +{"step": 9860, "loss": 0.8164, "learning_rate": 0.00010759720631020305, "grad_norm": 2.5298357009887695, "token_acc": 0.8073133051395416, "gpu_alloc_gb": 12.88, "elapsed_s": 7396.2, "epoch": 0.9830508474576272} +{"step": 9870, "loss": 0.8115, "learning_rate": 0.00010743620802686789, "grad_norm": 1.579123616218567, "token_acc": 0.8067251324653626, "gpu_alloc_gb": 12.88, "elapsed_s": 7402.8, "epoch": 0.9840478564307079} +{"step": 9880, "loss": 0.8329, "learning_rate": 0.00010727519035902469, "grad_norm": 1.0924131870269775, "token_acc": 0.8028601467609405, "gpu_alloc_gb": 12.88, "elapsed_s": 7409.4, "epoch": 0.9850448654037887} +{"step": 9890, "loss": 0.8257, "learning_rate": 0.00010711415372640998, "grad_norm": 1.1842747926712036, "token_acc": 0.8042810440063477, "gpu_alloc_gb": 12.88, "elapsed_s": 7416.0, "epoch": 0.9860418743768694} +{"step": 9900, "loss": 0.8014, "learning_rate": 0.00010695309854880977, "grad_norm": 1.5186601877212524, "token_acc": 0.8065235376358032, "gpu_alloc_gb": 12.88, "elapsed_s": 7422.9, "epoch": 0.9870388833499502} +{"step": 9910, "loss": 0.7912, "learning_rate": 0.00010679202524605841, "grad_norm": 1.0056811571121216, "token_acc": 0.8101585745811463, "gpu_alloc_gb": 12.88, "elapsed_s": 7429.7, "epoch": 0.9880358923230309} +{"step": 9920, "loss": 0.8183, "learning_rate": 0.00010663093423803738, "grad_norm": 0.9821873903274536, "token_acc": 0.8052767872810364, "gpu_alloc_gb": 12.88, "elapsed_s": 7436.3, "epoch": 0.9890329012961117} +{"step": 9930, "loss": 0.814, "learning_rate": 0.0001064698259446745, "grad_norm": 2.75600528717041, "token_acc": 0.8055715680122375, "gpu_alloc_gb": 12.88, "elapsed_s": 7442.8, "epoch": 0.9900299102691924} +{"step": 9940, "loss": 0.8298, "learning_rate": 0.00010630870078594249, "grad_norm": 1.0167866945266724, "token_acc": 0.80216845870018, "gpu_alloc_gb": 12.88, "elapsed_s": 7449.4, "epoch": 0.9910269192422732} +{"step": 9950, "loss": 0.8655, "learning_rate": 0.00010614755918185819, "grad_norm": 1.076743483543396, "token_acc": 0.794974809885025, "gpu_alloc_gb": 12.88, "elapsed_s": 7456.2, "epoch": 0.9920239282153539} +{"step": 9960, "loss": 0.7931, "learning_rate": 0.00010598640155248112, "grad_norm": 1.9650378227233887, "token_acc": 0.8070922136306763, "gpu_alloc_gb": 12.88, "elapsed_s": 7462.9, "epoch": 0.9930209371884346} +{"step": 9970, "loss": 0.8341, "learning_rate": 0.00010582522831791272, "grad_norm": 1.0821716785430908, "token_acc": 0.8043250560760498, "gpu_alloc_gb": 12.88, "elapsed_s": 7469.5, "epoch": 0.9940179461615155} +{"step": 9980, "loss": 0.7973, "learning_rate": 0.0001056640398982951, "grad_norm": 1.9759079217910767, "token_acc": 0.8105189979076386, "gpu_alloc_gb": 12.88, "elapsed_s": 7476.1, "epoch": 0.9950149551345963} +{"step": 9990, "loss": 0.7955, "learning_rate": 0.00010550283671380987, "grad_norm": 1.3237199783325195, "token_acc": 0.8079818546772003, "gpu_alloc_gb": 12.88, "elapsed_s": 7482.8, "epoch": 0.996011964107677} +{"step": 10000, "loss": 0.8287, "learning_rate": 0.00010534161918467716, "grad_norm": 1.1948738098144531, "token_acc": 0.8002350866794586, "gpu_alloc_gb": 12.88, "elapsed_s": 7489.9, "epoch": 0.9970089730807578} +{"step": 10000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 7556.8, "epoch": 0.9970089730807578} +{"step": 10000, "eval_loss": 1.2010705471038818, "eval_step": true} +{"step": 10010, "loss": 0.8, "learning_rate": 0.00010518038773115458, "grad_norm": 1.8349359035491943, "token_acc": 0.8086929142475128, "gpu_alloc_gb": 12.88, "elapsed_s": 7603.6, "epoch": 0.9980059820538385} +{"step": 10020, "loss": 0.7972, "learning_rate": 0.00010501914277353588, "grad_norm": 1.4055067300796509, "token_acc": 0.8039562046527863, "gpu_alloc_gb": 12.88, "elapsed_s": 7610.2, "epoch": 0.9990029910269193} +{"step": 10030, "loss": 0.8925, "learning_rate": 0.00010485788473215017, "grad_norm": 3.6795129776000977, "token_acc": 0.7912352800369262, "gpu_alloc_gb": 12.88, "elapsed_s": 7616.9, "epoch": 1.0} +{"step": 10040, "loss": 0.6475, "learning_rate": 0.00010469661402736058, "grad_norm": 1.0678815841674805, "token_acc": 0.8392745196819306, "gpu_alloc_gb": 12.88, "elapsed_s": 7624.7, "epoch": 1.0009970089730809} +{"step": 10050, "loss": 0.671, "learning_rate": 0.00010453533107956323, "grad_norm": 2.4559390544891357, "token_acc": 0.8314817786216736, "gpu_alloc_gb": 12.88, "elapsed_s": 7631.5, "epoch": 1.0019940179461615} +{"step": 10060, "loss": 0.6611, "learning_rate": 0.00010437403630918624, "grad_norm": 1.0636136531829834, "token_acc": 0.8341429889202118, "gpu_alloc_gb": 12.88, "elapsed_s": 7638.5, "epoch": 1.0029910269192424} +{"step": 10070, "loss": 0.68, "learning_rate": 0.00010421273013668848, "grad_norm": 1.452484130859375, "token_acc": 0.8263648867607116, "gpu_alloc_gb": 12.88, "elapsed_s": 7645.3, "epoch": 1.003988035892323} +{"step": 10080, "loss": 0.6469, "learning_rate": 0.00010405141298255853, "grad_norm": 1.3221416473388672, "token_acc": 0.8309677362442016, "gpu_alloc_gb": 12.88, "elapsed_s": 7651.9, "epoch": 1.0049850448654039} +{"step": 10090, "loss": 0.6784, "learning_rate": 0.0001038900852673137, "grad_norm": 1.093432068824768, "token_acc": 0.831003212928772, "gpu_alloc_gb": 12.88, "elapsed_s": 7658.5, "epoch": 1.0059820538384845} +{"step": 10100, "loss": 0.6836, "learning_rate": 0.00010372874741149869, "grad_norm": 1.3501771688461304, "token_acc": 0.8275977432727813, "gpu_alloc_gb": 12.88, "elapsed_s": 7665.2, "epoch": 1.0069790628115654} +{"step": 10110, "loss": 0.698, "learning_rate": 0.00010356739983568478, "grad_norm": 2.096301555633545, "token_acc": 0.8247012615203857, "gpu_alloc_gb": 12.88, "elapsed_s": 7672.0, "epoch": 1.007976071784646} +{"step": 10120, "loss": 0.6432, "learning_rate": 0.00010340604296046841, "grad_norm": 3.001410722732544, "token_acc": 0.8349579095840454, "gpu_alloc_gb": 12.88, "elapsed_s": 7678.8, "epoch": 1.0089730807577268} +{"step": 10130, "loss": 0.6424, "learning_rate": 0.00010324467720647047, "grad_norm": 1.6112074851989746, "token_acc": 0.8357767164707184, "gpu_alloc_gb": 12.88, "elapsed_s": 7685.8, "epoch": 1.0099700897308075} +{"step": 10140, "loss": 0.6579, "learning_rate": 0.00010308330299433477, "grad_norm": 1.1253927946090698, "token_acc": 0.8321124613285065, "gpu_alloc_gb": 12.88, "elapsed_s": 7692.5, "epoch": 1.0109670987038883} +{"step": 10150, "loss": 0.6618, "learning_rate": 0.00010292192074472742, "grad_norm": 1.0656192302703857, "token_acc": 0.8314270138740539, "gpu_alloc_gb": 12.88, "elapsed_s": 7699.2, "epoch": 1.011964107676969} +{"step": 10160, "loss": 0.6528, "learning_rate": 0.00010276053087833525, "grad_norm": 1.3682981729507446, "token_acc": 0.8328098118305206, "gpu_alloc_gb": 12.88, "elapsed_s": 7706.1, "epoch": 1.0129611166500498} +{"step": 10170, "loss": 0.653, "learning_rate": 0.0001025991338158651, "grad_norm": 1.0778483152389526, "token_acc": 0.8365736305713654, "gpu_alloc_gb": 12.88, "elapsed_s": 7712.8, "epoch": 1.0139581256231307} +{"step": 10180, "loss": 0.6646, "learning_rate": 0.00010243772997804245, "grad_norm": 2.240774393081665, "token_acc": 0.8298756241798401, "gpu_alloc_gb": 12.88, "elapsed_s": 7719.5, "epoch": 1.0149551345962113} +{"step": 10190, "loss": 0.6674, "learning_rate": 0.00010227631978561056, "grad_norm": 1.4725545644760132, "token_acc": 0.8313747406005859, "gpu_alloc_gb": 12.88, "elapsed_s": 7726.2, "epoch": 1.0159521435692922} +{"step": 10200, "loss": 0.7024, "learning_rate": 0.00010211490365932921, "grad_norm": 1.8812166452407837, "token_acc": 0.8249622046947479, "gpu_alloc_gb": 12.88, "elapsed_s": 7733.0, "epoch": 1.0169491525423728} +{"step": 10210, "loss": 0.6618, "learning_rate": 0.0001019534820199736, "grad_norm": 2.2288269996643066, "token_acc": 0.832110059261322, "gpu_alloc_gb": 12.88, "elapsed_s": 7739.6, "epoch": 1.0179461615154537} +{"step": 10220, "loss": 0.644, "learning_rate": 0.00010179205528833334, "grad_norm": 1.1293056011199951, "token_acc": 0.8361339330673218, "gpu_alloc_gb": 12.88, "elapsed_s": 7746.3, "epoch": 1.0189431704885343} +{"step": 10230, "loss": 0.6728, "learning_rate": 0.00010163062388521132, "grad_norm": 1.1856763362884521, "token_acc": 0.8302263736724853, "gpu_alloc_gb": 12.88, "elapsed_s": 7753.1, "epoch": 1.0199401794616152} +{"step": 10240, "loss": 0.6374, "learning_rate": 0.0001014691882314226, "grad_norm": 1.059985637664795, "token_acc": 0.8356038928031921, "gpu_alloc_gb": 12.88, "elapsed_s": 7759.8, "epoch": 1.0209371884346958} +{"step": 10250, "loss": 0.6311, "learning_rate": 0.00010130774874779332, "grad_norm": 1.193991780281067, "token_acc": 0.8407273471355439, "gpu_alloc_gb": 12.88, "elapsed_s": 7766.4, "epoch": 1.0219341974077767} +{"step": 10250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 7833.2, "epoch": 1.0219341974077767} +{"step": 10250, "eval_loss": 1.2805274724960327, "eval_step": true} +{"step": 10260, "loss": 0.6464, "learning_rate": 0.00010114630585515962, "grad_norm": 2.2358946800231934, "token_acc": 0.836064338684082, "gpu_alloc_gb": 12.88, "elapsed_s": 7881.8, "epoch": 1.0229312063808573} +{"step": 10270, "loss": 0.6748, "learning_rate": 0.0001009848599743665, "grad_norm": 1.8781254291534424, "token_acc": 0.830416351556778, "gpu_alloc_gb": 12.88, "elapsed_s": 7888.2, "epoch": 1.0239282153539382} +{"step": 10280, "loss": 0.668, "learning_rate": 0.00010082341152626675, "grad_norm": 1.0914480686187744, "token_acc": 0.8304571151733399, "gpu_alloc_gb": 12.88, "elapsed_s": 7895.0, "epoch": 1.024925224327019} +{"step": 10290, "loss": 0.6547, "learning_rate": 0.00010066196093171989, "grad_norm": 1.454105019569397, "token_acc": 0.834029632806778, "gpu_alloc_gb": 12.88, "elapsed_s": 7901.6, "epoch": 1.0259222333000997} +{"step": 10300, "loss": 0.6544, "learning_rate": 0.000100500508611591, "grad_norm": 1.0628561973571777, "token_acc": 0.8343888521194458, "gpu_alloc_gb": 12.88, "elapsed_s": 7908.1, "epoch": 1.0269192422731805} +{"step": 10310, "loss": 0.6415, "learning_rate": 0.0001003390549867496, "grad_norm": 5.771035194396973, "token_acc": 0.8368795156478882, "gpu_alloc_gb": 12.88, "elapsed_s": 7914.8, "epoch": 1.0279162512462612} +{"step": 10320, "loss": 0.6421, "learning_rate": 0.00010017760047806878, "grad_norm": 0.9966579675674438, "token_acc": 0.8357198119163514, "gpu_alloc_gb": 12.88, "elapsed_s": 7921.4, "epoch": 1.028913260219342} +{"step": 10330, "loss": 0.6784, "learning_rate": 0.0001000161455064238, "grad_norm": 2.82834529876709, "token_acc": 0.8298895359039307, "gpu_alloc_gb": 12.88, "elapsed_s": 7928.0, "epoch": 1.0299102691924227} +{"step": 10340, "loss": 0.6225, "learning_rate": 9.985469049269114e-05, "grad_norm": 1.0379366874694824, "token_acc": 0.8405663251876831, "gpu_alloc_gb": 12.88, "elapsed_s": 7934.6, "epoch": 1.0309072781655035} +{"step": 10350, "loss": 0.6644, "learning_rate": 9.969323585774738e-05, "grad_norm": 1.1323951482772827, "token_acc": 0.8341241717338562, "gpu_alloc_gb": 12.88, "elapsed_s": 7941.3, "epoch": 1.0319042871385842} +{"step": 10360, "loss": 0.6857, "learning_rate": 9.953178202246822e-05, "grad_norm": 2.374608278274536, "token_acc": 0.8310838997364044, "gpu_alloc_gb": 12.88, "elapsed_s": 7947.7, "epoch": 1.032901296111665} +{"step": 10370, "loss": 0.6712, "learning_rate": 9.937032940772713e-05, "grad_norm": 2.3035740852355957, "token_acc": 0.8300837457180024, "gpu_alloc_gb": 12.88, "elapsed_s": 7954.5, "epoch": 1.0338983050847457} +{"step": 10380, "loss": 0.6682, "learning_rate": 9.920887843439448e-05, "grad_norm": 5.778019905090332, "token_acc": 0.8303883254528046, "gpu_alloc_gb": 12.88, "elapsed_s": 7961.2, "epoch": 1.0348953140578265} +{"step": 10390, "loss": 0.6689, "learning_rate": 9.904742952333636e-05, "grad_norm": 1.0388565063476562, "token_acc": 0.8297362983226776, "gpu_alloc_gb": 12.88, "elapsed_s": 7967.8, "epoch": 1.0358923230309074} +{"step": 10400, "loss": 0.6738, "learning_rate": 9.888598309541347e-05, "grad_norm": 2.372270345687866, "token_acc": 0.8318263351917267, "gpu_alloc_gb": 12.88, "elapsed_s": 7974.7, "epoch": 1.036889332003988} +{"step": 10410, "loss": 0.6471, "learning_rate": 9.872453957148e-05, "grad_norm": 1.1155972480773926, "token_acc": 0.8336365997791291, "gpu_alloc_gb": 12.88, "elapsed_s": 7981.5, "epoch": 1.0378863409770689} +{"step": 10420, "loss": 0.6327, "learning_rate": 9.856309937238268e-05, "grad_norm": 1.015162706375122, "token_acc": 0.8371629476547241, "gpu_alloc_gb": 12.88, "elapsed_s": 7987.9, "epoch": 1.0388833499501495} +{"step": 10430, "loss": 0.6422, "learning_rate": 9.840166291895941e-05, "grad_norm": 1.101983904838562, "token_acc": 0.839232325553894, "gpu_alloc_gb": 12.88, "elapsed_s": 7994.8, "epoch": 1.0398803589232304} +{"step": 10440, "loss": 0.6616, "learning_rate": 9.824023063203847e-05, "grad_norm": 1.3427064418792725, "token_acc": 0.8337553322315217, "gpu_alloc_gb": 12.88, "elapsed_s": 8001.5, "epoch": 1.040877367896311} +{"step": 10450, "loss": 0.6618, "learning_rate": 9.807880293243722e-05, "grad_norm": 1.436614990234375, "token_acc": 0.8337953567504883, "gpu_alloc_gb": 12.88, "elapsed_s": 8008.0, "epoch": 1.0418743768693919} +{"step": 10460, "loss": 0.6782, "learning_rate": 9.791738024096105e-05, "grad_norm": 1.3473743200302124, "token_acc": 0.8291190981864929, "gpu_alloc_gb": 12.88, "elapsed_s": 8014.8, "epoch": 1.0428713858424725} +{"step": 10470, "loss": 0.6431, "learning_rate": 9.775596297840234e-05, "grad_norm": 2.9844980239868164, "token_acc": 0.8358238279819489, "gpu_alloc_gb": 12.88, "elapsed_s": 8022.2, "epoch": 1.0438683948155534} +{"step": 10480, "loss": 0.6491, "learning_rate": 9.75945515655393e-05, "grad_norm": 2.7912135124206543, "token_acc": 0.834324061870575, "gpu_alloc_gb": 12.88, "elapsed_s": 8028.8, "epoch": 1.044865403788634} +{"step": 10490, "loss": 0.6389, "learning_rate": 9.743314642313477e-05, "grad_norm": 1.1109145879745483, "token_acc": 0.8390415132045745, "gpu_alloc_gb": 12.88, "elapsed_s": 8035.6, "epoch": 1.0458624127617149} +{"step": 10500, "loss": 0.6589, "learning_rate": 9.727174797193553e-05, "grad_norm": 1.1265294551849365, "token_acc": 0.8312826573848724, "gpu_alloc_gb": 12.88, "elapsed_s": 8042.2, "epoch": 1.0468594217347955} +{"step": 10500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 8109.0, "epoch": 1.0468594217347955} +{"step": 10500, "eval_loss": 1.2596733570098877, "eval_step": true} +{"step": 10510, "loss": 0.6763, "learning_rate": 9.71103566326706e-05, "grad_norm": 5.580000400543213, "token_acc": 0.8321973621845246, "gpu_alloc_gb": 12.88, "elapsed_s": 8153.6, "epoch": 1.0478564307078764} +{"step": 10520, "loss": 0.6717, "learning_rate": 9.694897282605064e-05, "grad_norm": 1.0445287227630615, "token_acc": 0.8313080906867981, "gpu_alloc_gb": 12.88, "elapsed_s": 8160.3, "epoch": 1.0488534396809572} +{"step": 10530, "loss": 0.6758, "learning_rate": 9.678759697276668e-05, "grad_norm": 1.5365478992462158, "token_acc": 0.83145712018013, "gpu_alloc_gb": 12.88, "elapsed_s": 8167.1, "epoch": 1.0498504486540379} +{"step": 10540, "loss": 0.6783, "learning_rate": 9.662622949348897e-05, "grad_norm": 1.2514082193374634, "token_acc": 0.8281467080116272, "gpu_alloc_gb": 12.88, "elapsed_s": 8173.9, "epoch": 1.0508474576271187} +{"step": 10550, "loss": 0.6809, "learning_rate": 9.646487080886584e-05, "grad_norm": 2.2133212089538574, "token_acc": 0.8290444016456604, "gpu_alloc_gb": 12.88, "elapsed_s": 8180.8, "epoch": 1.0518444666001994} +{"step": 10560, "loss": 0.6584, "learning_rate": 9.630352133952293e-05, "grad_norm": 1.1845498085021973, "token_acc": 0.8323269605636596, "gpu_alloc_gb": 12.88, "elapsed_s": 8187.7, "epoch": 1.0528414755732802} +{"step": 10570, "loss": 0.6542, "learning_rate": 9.614218150606162e-05, "grad_norm": 0.9472981691360474, "token_acc": 0.835743534564972, "gpu_alloc_gb": 12.88, "elapsed_s": 8194.6, "epoch": 1.0538384845463609} +{"step": 10580, "loss": 0.675, "learning_rate": 9.598085172905828e-05, "grad_norm": 1.2021938562393188, "token_acc": 0.8302055716514587, "gpu_alloc_gb": 12.88, "elapsed_s": 8201.4, "epoch": 1.0548354935194417} +{"step": 10590, "loss": 0.6449, "learning_rate": 9.58195324290631e-05, "grad_norm": 1.7994978427886963, "token_acc": 0.8380464136600494, "gpu_alloc_gb": 12.88, "elapsed_s": 8208.2, "epoch": 1.0558325024925224} +{"step": 10600, "loss": 0.6491, "learning_rate": 9.565822402659889e-05, "grad_norm": 2.47027850151062, "token_acc": 0.8363560557365417, "gpu_alloc_gb": 12.88, "elapsed_s": 8215.0, "epoch": 1.0568295114656032} +{"step": 10610, "loss": 0.6548, "learning_rate": 9.549692694216003e-05, "grad_norm": 2.5885391235351562, "token_acc": 0.8383570551872254, "gpu_alloc_gb": 12.88, "elapsed_s": 8221.6, "epoch": 1.0578265204386839} +{"step": 10620, "loss": 0.6509, "learning_rate": 9.533564159621155e-05, "grad_norm": 1.021355390548706, "token_acc": 0.8361770331859588, "gpu_alloc_gb": 12.88, "elapsed_s": 8228.4, "epoch": 1.0588235294117647} +{"step": 10630, "loss": 0.6575, "learning_rate": 9.517436840918766e-05, "grad_norm": 1.0978599786758423, "token_acc": 0.831979262828827, "gpu_alloc_gb": 12.88, "elapsed_s": 8235.1, "epoch": 1.0598205383848454} +{"step": 10640, "loss": 0.6914, "learning_rate": 9.501310780149103e-05, "grad_norm": 1.1042494773864746, "token_acc": 0.8268830418586731, "gpu_alloc_gb": 12.88, "elapsed_s": 8241.9, "epoch": 1.0608175473579262} +{"step": 10650, "loss": 0.6586, "learning_rate": 9.485186019349153e-05, "grad_norm": 1.1141796112060547, "token_acc": 0.8359502971172332, "gpu_alloc_gb": 12.88, "elapsed_s": 8248.7, "epoch": 1.061814556331007} +{"step": 10660, "loss": 0.6632, "learning_rate": 9.469062600552509e-05, "grad_norm": 2.746197462081909, "token_acc": 0.8316701650619507, "gpu_alloc_gb": 12.88, "elapsed_s": 8255.5, "epoch": 1.0628115653040877} +{"step": 10670, "loss": 0.662, "learning_rate": 9.452940565789259e-05, "grad_norm": 1.303641438484192, "token_acc": 0.835490483045578, "gpu_alloc_gb": 12.88, "elapsed_s": 8262.2, "epoch": 1.0638085742771686} +{"step": 10680, "loss": 0.6272, "learning_rate": 9.436819957085907e-05, "grad_norm": 5.234071731567383, "token_acc": 0.8380409777164459, "gpu_alloc_gb": 12.88, "elapsed_s": 8269.2, "epoch": 1.0648055832502492} +{"step": 10690, "loss": 0.6719, "learning_rate": 9.420700816465212e-05, "grad_norm": 3.5693306922912598, "token_acc": 0.8314740896224976, "gpu_alloc_gb": 12.88, "elapsed_s": 8275.8, "epoch": 1.06580259222333} +{"step": 10700, "loss": 0.6276, "learning_rate": 9.404583185946124e-05, "grad_norm": 1.8815075159072876, "token_acc": 0.8419347465038299, "gpu_alloc_gb": 12.88, "elapsed_s": 8282.4, "epoch": 1.0667996011964107} +{"step": 10710, "loss": 0.6465, "learning_rate": 9.388467107543648e-05, "grad_norm": 0.9506457448005676, "token_acc": 0.8352678537368774, "gpu_alloc_gb": 12.88, "elapsed_s": 8289.2, "epoch": 1.0677966101694916} +{"step": 10720, "loss": 0.6502, "learning_rate": 9.372352623268751e-05, "grad_norm": 1.88021981716156, "token_acc": 0.8347683370113372, "gpu_alloc_gb": 12.88, "elapsed_s": 8296.1, "epoch": 1.0687936191425722} +{"step": 10730, "loss": 0.6347, "learning_rate": 9.356239775128229e-05, "grad_norm": 1.007871389389038, "token_acc": 0.8408460855484009, "gpu_alloc_gb": 12.88, "elapsed_s": 8302.6, "epoch": 1.069790628115653} +{"step": 10740, "loss": 0.6668, "learning_rate": 9.340128605124637e-05, "grad_norm": 3.0024356842041016, "token_acc": 0.8299155354499816, "gpu_alloc_gb": 12.88, "elapsed_s": 8309.3, "epoch": 1.0707876370887337} +{"step": 10750, "loss": 0.6519, "learning_rate": 9.324019155256132e-05, "grad_norm": 1.3030186891555786, "token_acc": 0.836190938949585, "gpu_alloc_gb": 12.88, "elapsed_s": 8316.0, "epoch": 1.0717846460618146} +{"step": 10750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 8383.5, "epoch": 1.0717846460618146} +{"step": 10750, "eval_loss": 1.2635788917541504, "eval_step": true} +{"step": 10760, "loss": 0.6537, "learning_rate": 9.307911467516396e-05, "grad_norm": 1.1539249420166016, "token_acc": 0.8330151855945587, "gpu_alloc_gb": 12.88, "elapsed_s": 8444.3, "epoch": 1.0727816550348952} +{"step": 10770, "loss": 0.6842, "learning_rate": 9.291805583894525e-05, "grad_norm": 2.8473453521728516, "token_acc": 0.8272728860378266, "gpu_alloc_gb": 12.88, "elapsed_s": 8451.2, "epoch": 1.073778664007976} +{"step": 10780, "loss": 0.6538, "learning_rate": 9.275701546374904e-05, "grad_norm": 1.1400319337844849, "token_acc": 0.8347866475582123, "gpu_alloc_gb": 12.88, "elapsed_s": 8458.0, "epoch": 1.074775672981057} +{"step": 10790, "loss": 0.6521, "learning_rate": 9.259599396937097e-05, "grad_norm": 5.644893169403076, "token_acc": 0.8361915349960327, "gpu_alloc_gb": 12.88, "elapsed_s": 8464.9, "epoch": 1.0757726819541376} +{"step": 10800, "loss": 0.6769, "learning_rate": 9.24349917755577e-05, "grad_norm": 1.2567628622055054, "token_acc": 0.8300255000591278, "gpu_alloc_gb": 12.88, "elapsed_s": 8471.7, "epoch": 1.0767696909272184} +{"step": 10810, "loss": 0.6438, "learning_rate": 9.227400930200536e-05, "grad_norm": 1.1531898975372314, "token_acc": 0.8365427851676941, "gpu_alloc_gb": 12.88, "elapsed_s": 8478.2, "epoch": 1.077766699900299} +{"step": 10820, "loss": 0.6602, "learning_rate": 9.211304696835876e-05, "grad_norm": 2.1369452476501465, "token_acc": 0.8305852174758911, "gpu_alloc_gb": 12.88, "elapsed_s": 8485.2, "epoch": 1.07876370887338} +{"step": 10830, "loss": 0.6708, "learning_rate": 9.195210519421024e-05, "grad_norm": 1.2119123935699463, "token_acc": 0.833766758441925, "gpu_alloc_gb": 12.88, "elapsed_s": 8492.0, "epoch": 1.0797607178464605} +{"step": 10840, "loss": 0.6581, "learning_rate": 9.179118439909849e-05, "grad_norm": 1.1081901788711548, "token_acc": 0.8341552913188934, "gpu_alloc_gb": 12.88, "elapsed_s": 8499.0, "epoch": 1.0807577268195414} +{"step": 10850, "loss": 0.643, "learning_rate": 9.163028500250748e-05, "grad_norm": 1.1203707456588745, "token_acc": 0.8378164589405059, "gpu_alloc_gb": 12.88, "elapsed_s": 8505.7, "epoch": 1.081754735792622} +{"step": 10860, "loss": 0.637, "learning_rate": 9.146940742386553e-05, "grad_norm": 1.8751081228256226, "token_acc": 0.8342368066310882, "gpu_alloc_gb": 12.88, "elapsed_s": 8512.5, "epoch": 1.082751744765703} +{"step": 10870, "loss": 0.665, "learning_rate": 9.130855208254397e-05, "grad_norm": 1.445967197418213, "token_acc": 0.8327033162117005, "gpu_alloc_gb": 12.88, "elapsed_s": 8519.5, "epoch": 1.0837487537387838} +{"step": 10880, "loss": 0.6767, "learning_rate": 9.114771939785617e-05, "grad_norm": 1.9076389074325562, "token_acc": 0.8299152731895447, "gpu_alloc_gb": 12.88, "elapsed_s": 8526.3, "epoch": 1.0847457627118644} +{"step": 10890, "loss": 0.6428, "learning_rate": 9.098690978905652e-05, "grad_norm": 2.784480333328247, "token_acc": 0.8365295946598053, "gpu_alloc_gb": 12.88, "elapsed_s": 8533.1, "epoch": 1.0857427716849453} +{"step": 10900, "loss": 0.6664, "learning_rate": 9.082612367533918e-05, "grad_norm": 10.27392292022705, "token_acc": 0.8349547684192657, "gpu_alloc_gb": 12.88, "elapsed_s": 8539.9, "epoch": 1.086739780658026} +{"step": 10910, "loss": 0.6554, "learning_rate": 9.066536147583707e-05, "grad_norm": 2.03590726852417, "token_acc": 0.8325871884822845, "gpu_alloc_gb": 12.88, "elapsed_s": 8546.9, "epoch": 1.0877367896311068} +{"step": 10920, "loss": 0.6261, "learning_rate": 9.050462360962085e-05, "grad_norm": 2.4971001148223877, "token_acc": 0.8386002779006958, "gpu_alloc_gb": 12.88, "elapsed_s": 8553.5, "epoch": 1.0887337986041874} +{"step": 10930, "loss": 0.6643, "learning_rate": 9.034391049569761e-05, "grad_norm": 3.660722017288208, "token_acc": 0.8315764784812927, "gpu_alloc_gb": 12.88, "elapsed_s": 8560.3, "epoch": 1.0897308075772683} +{"step": 10940, "loss": 0.6553, "learning_rate": 9.018322255301002e-05, "grad_norm": 3.5416979789733887, "token_acc": 0.8330135643482208, "gpu_alloc_gb": 12.88, "elapsed_s": 8567.2, "epoch": 1.090727816550349} +{"step": 10950, "loss": 0.6716, "learning_rate": 9.002256020043514e-05, "grad_norm": 3.575248956680298, "token_acc": 0.8274100244045257, "gpu_alloc_gb": 12.88, "elapsed_s": 8574.0, "epoch": 1.0917248255234298} +{"step": 10960, "loss": 0.6505, "learning_rate": 8.986192385678323e-05, "grad_norm": 1.2914230823516846, "token_acc": 0.838200569152832, "gpu_alloc_gb": 12.88, "elapsed_s": 8580.8, "epoch": 1.0927218344965104} +{"step": 10970, "loss": 0.6824, "learning_rate": 8.970131394079689e-05, "grad_norm": 1.3763117790222168, "token_acc": 0.8281965255737305, "gpu_alloc_gb": 12.88, "elapsed_s": 8587.5, "epoch": 1.0937188434695913} +{"step": 10980, "loss": 0.6247, "learning_rate": 8.954073087114969e-05, "grad_norm": 1.3256350755691528, "token_acc": 0.8412547647953034, "gpu_alloc_gb": 12.88, "elapsed_s": 8594.2, "epoch": 1.0947158524426719} +{"step": 10990, "loss": 0.6515, "learning_rate": 8.938017506644527e-05, "grad_norm": 1.321929693222046, "token_acc": 0.8379684269428254, "gpu_alloc_gb": 12.88, "elapsed_s": 8601.9, "epoch": 1.0957128614157527} +{"step": 11000, "loss": 0.6581, "learning_rate": 8.921964694521626e-05, "grad_norm": 1.7685683965682983, "token_acc": 0.833244800567627, "gpu_alloc_gb": 12.88, "elapsed_s": 8608.8, "epoch": 1.0967098703888336} +{"step": 11000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 8675.9, "epoch": 1.0967098703888336} +{"step": 11000, "eval_loss": 1.234723448753357, "eval_step": true} +{"step": 11010, "loss": 0.6638, "learning_rate": 8.905914692592302e-05, "grad_norm": 1.1430718898773193, "token_acc": 0.8341712534427643, "gpu_alloc_gb": 12.88, "elapsed_s": 8729.3, "epoch": 1.0977068793619142} +{"step": 11020, "loss": 0.6742, "learning_rate": 8.88986754269527e-05, "grad_norm": 3.9143714904785156, "token_acc": 0.8302502393722534, "gpu_alloc_gb": 12.88, "elapsed_s": 8736.1, "epoch": 1.098703888334995} +{"step": 11030, "loss": 0.6686, "learning_rate": 8.873823286661819e-05, "grad_norm": 1.6440439224243164, "token_acc": 0.8310794413089753, "gpu_alloc_gb": 12.88, "elapsed_s": 8743.1, "epoch": 1.0997008973080757} +{"step": 11040, "loss": 0.6403, "learning_rate": 8.857781966315677e-05, "grad_norm": 1.4174809455871582, "token_acc": 0.8352361619472504, "gpu_alloc_gb": 12.88, "elapsed_s": 8749.9, "epoch": 1.1006979062811566} +{"step": 11050, "loss": 0.6561, "learning_rate": 8.841743623472929e-05, "grad_norm": 2.4086859226226807, "token_acc": 0.8337495625019073, "gpu_alloc_gb": 12.88, "elapsed_s": 8756.8, "epoch": 1.1016949152542372} +{"step": 11060, "loss": 0.6663, "learning_rate": 8.825708299941904e-05, "grad_norm": 7.578053951263428, "token_acc": 0.8325241565704345, "gpu_alloc_gb": 12.88, "elapsed_s": 8763.8, "epoch": 1.102691924227318} +{"step": 11070, "loss": 0.6542, "learning_rate": 8.809676037523049e-05, "grad_norm": 6.933160781860352, "token_acc": 0.8354091286659241, "gpu_alloc_gb": 12.88, "elapsed_s": 8770.8, "epoch": 1.1036889332003987} +{"step": 11080, "loss": 0.6622, "learning_rate": 8.793646878008836e-05, "grad_norm": 1.036292552947998, "token_acc": 0.8325165927410125, "gpu_alloc_gb": 12.88, "elapsed_s": 8777.8, "epoch": 1.1046859421734796} +{"step": 11090, "loss": 0.652, "learning_rate": 8.777620863183657e-05, "grad_norm": 2.5536580085754395, "token_acc": 0.8351325154304504, "gpu_alloc_gb": 12.88, "elapsed_s": 8784.5, "epoch": 1.1056829511465602} +{"step": 11100, "loss": 0.6676, "learning_rate": 8.761598034823691e-05, "grad_norm": 1.1042133569717407, "token_acc": 0.8334405899047852, "gpu_alloc_gb": 12.88, "elapsed_s": 8791.4, "epoch": 1.106679960119641} +{"step": 11110, "loss": 0.6446, "learning_rate": 8.745578434696815e-05, "grad_norm": 2.4697251319885254, "token_acc": 0.8346954762935639, "gpu_alloc_gb": 12.88, "elapsed_s": 8798.2, "epoch": 1.1076769690927217} +{"step": 11120, "loss": 0.6468, "learning_rate": 8.729562104562503e-05, "grad_norm": 1.1296658515930176, "token_acc": 0.8360394477844239, "gpu_alloc_gb": 12.88, "elapsed_s": 8805.0, "epoch": 1.1086739780658026} +{"step": 11130, "loss": 0.6504, "learning_rate": 8.713549086171691e-05, "grad_norm": 1.3828160762786865, "token_acc": 0.8378344058990479, "gpu_alloc_gb": 12.88, "elapsed_s": 8811.8, "epoch": 1.1096709870388834} +{"step": 11140, "loss": 0.6561, "learning_rate": 8.697539421266684e-05, "grad_norm": 2.0897057056427, "token_acc": 0.8344383299350738, "gpu_alloc_gb": 12.88, "elapsed_s": 8818.6, "epoch": 1.110667996011964} +{"step": 11150, "loss": 0.6453, "learning_rate": 8.681533151581055e-05, "grad_norm": 2.2565581798553467, "token_acc": 0.8349129498004914, "gpu_alloc_gb": 12.88, "elapsed_s": 8825.3, "epoch": 1.111665004985045} +{"step": 11160, "loss": 0.6524, "learning_rate": 8.665530318839514e-05, "grad_norm": 0.9534320831298828, "token_acc": 0.8372797667980194, "gpu_alloc_gb": 12.88, "elapsed_s": 8832.4, "epoch": 1.1126620139581256} +{"step": 11170, "loss": 0.6505, "learning_rate": 8.649530964757814e-05, "grad_norm": 3.878340244293213, "token_acc": 0.8334529459476471, "gpu_alloc_gb": 12.88, "elapsed_s": 8839.2, "epoch": 1.1136590229312064} +{"step": 11180, "loss": 0.621, "learning_rate": 8.633535131042653e-05, "grad_norm": 3.416440486907959, "token_acc": 0.8402886509895324, "gpu_alloc_gb": 12.88, "elapsed_s": 8846.0, "epoch": 1.114656031904287} +{"step": 11190, "loss": 0.6697, "learning_rate": 8.617542859391534e-05, "grad_norm": 1.0657947063446045, "token_acc": 0.8282488405704498, "gpu_alloc_gb": 12.88, "elapsed_s": 8852.9, "epoch": 1.115653040877368} +{"step": 11200, "loss": 0.6631, "learning_rate": 8.601554191492684e-05, "grad_norm": 1.1870808601379395, "token_acc": 0.8318523585796356, "gpu_alloc_gb": 12.88, "elapsed_s": 8859.9, "epoch": 1.1166500498504486} +{"step": 11210, "loss": 0.6841, "learning_rate": 8.585569169024941e-05, "grad_norm": 0.9659572839736938, "token_acc": 0.8294208347797394, "gpu_alloc_gb": 12.88, "elapsed_s": 8866.7, "epoch": 1.1176470588235294} +{"step": 11220, "loss": 0.6335, "learning_rate": 8.569587833657624e-05, "grad_norm": 1.188154697418213, "token_acc": 0.8401973187923432, "gpu_alloc_gb": 12.88, "elapsed_s": 8873.6, "epoch": 1.11864406779661} +{"step": 11230, "loss": 0.671, "learning_rate": 8.553610227050454e-05, "grad_norm": 1.1215862035751343, "token_acc": 0.8300078511238098, "gpu_alloc_gb": 12.88, "elapsed_s": 8880.4, "epoch": 1.119641076769691} +{"step": 11240, "loss": 0.6303, "learning_rate": 8.537636390853429e-05, "grad_norm": 1.0501606464385986, "token_acc": 0.837505716085434, "gpu_alloc_gb": 12.88, "elapsed_s": 8887.2, "epoch": 1.1206380857427716} +{"step": 11250, "loss": 0.6748, "learning_rate": 8.52166636670672e-05, "grad_norm": 1.460991621017456, "token_acc": 0.8299511134624481, "gpu_alloc_gb": 12.88, "elapsed_s": 8894.1, "epoch": 1.1216350947158524} +{"step": 11250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 8961.7, "epoch": 1.1216350947158524} +{"step": 11250, "eval_loss": 1.2708537578582764, "eval_step": true} +{"step": 11260, "loss": 0.6656, "learning_rate": 8.505700196240552e-05, "grad_norm": 0.9927176833152771, "token_acc": 0.8368294298648834, "gpu_alloc_gb": 12.88, "elapsed_s": 9017.6, "epoch": 1.1226321036889333} +{"step": 11270, "loss": 0.6482, "learning_rate": 8.48973792107512e-05, "grad_norm": 1.043753981590271, "token_acc": 0.8360359132289886, "gpu_alloc_gb": 12.88, "elapsed_s": 9024.4, "epoch": 1.123629112662014} +{"step": 11280, "loss": 0.6299, "learning_rate": 8.47377958282045e-05, "grad_norm": 0.9614066481590271, "token_acc": 0.8364943563938141, "gpu_alloc_gb": 12.88, "elapsed_s": 9031.5, "epoch": 1.1246261216350948} +{"step": 11290, "loss": 0.6278, "learning_rate": 8.457825223076307e-05, "grad_norm": 1.1275837421417236, "token_acc": 0.8413239657878876, "gpu_alloc_gb": 12.88, "elapsed_s": 9038.2, "epoch": 1.1256231306081754} +{"step": 11300, "loss": 0.6784, "learning_rate": 8.441874883432096e-05, "grad_norm": 3.6652777194976807, "token_acc": 0.8322454869747162, "gpu_alloc_gb": 12.88, "elapsed_s": 9045.2, "epoch": 1.1266201395812563} +{"step": 11310, "loss": 0.641, "learning_rate": 8.425928605466733e-05, "grad_norm": 8.20966625213623, "token_acc": 0.83548823595047, "gpu_alloc_gb": 12.88, "elapsed_s": 9051.9, "epoch": 1.127617148554337} +{"step": 11320, "loss": 0.6368, "learning_rate": 8.409986430748545e-05, "grad_norm": 1.0029414892196655, "token_acc": 0.8388317465782166, "gpu_alloc_gb": 12.88, "elapsed_s": 9058.7, "epoch": 1.1286141575274178} +{"step": 11330, "loss": 0.6315, "learning_rate": 8.394048400835176e-05, "grad_norm": 2.1267902851104736, "token_acc": 0.8399782776832581, "gpu_alloc_gb": 12.88, "elapsed_s": 9065.5, "epoch": 1.1296111665004984} +{"step": 11340, "loss": 0.6286, "learning_rate": 8.378114557273443e-05, "grad_norm": 5.184693336486816, "token_acc": 0.8436004102230072, "gpu_alloc_gb": 12.88, "elapsed_s": 9072.2, "epoch": 1.1306081754735793} +{"step": 11350, "loss": 0.6205, "learning_rate": 8.362184941599273e-05, "grad_norm": 3.1513681411743164, "token_acc": 0.8430272161960601, "gpu_alloc_gb": 12.88, "elapsed_s": 9079.2, "epoch": 1.1316051844466601} +{"step": 11360, "loss": 0.6622, "learning_rate": 8.346259595337559e-05, "grad_norm": 1.0750148296356201, "token_acc": 0.8314763963222503, "gpu_alloc_gb": 12.88, "elapsed_s": 9086.1, "epoch": 1.1326021934197408} +{"step": 11370, "loss": 0.6508, "learning_rate": 8.330338560002064e-05, "grad_norm": 1.8197698593139648, "token_acc": 0.8348020136356353, "gpu_alloc_gb": 12.88, "elapsed_s": 9092.8, "epoch": 1.1335992023928214} +{"step": 11380, "loss": 0.6406, "learning_rate": 8.314421877095319e-05, "grad_norm": 1.1509664058685303, "token_acc": 0.8350627183914184, "gpu_alloc_gb": 12.88, "elapsed_s": 9099.8, "epoch": 1.1345962113659023} +{"step": 11390, "loss": 0.6562, "learning_rate": 8.298509588108511e-05, "grad_norm": 1.0012191534042358, "token_acc": 0.832120668888092, "gpu_alloc_gb": 12.88, "elapsed_s": 9106.4, "epoch": 1.1355932203389831} +{"step": 11400, "loss": 0.6681, "learning_rate": 8.28260173452136e-05, "grad_norm": 3.823622703552246, "token_acc": 0.8329898357391358, "gpu_alloc_gb": 12.88, "elapsed_s": 9113.3, "epoch": 1.1365902293120638} +{"step": 11410, "loss": 0.6534, "learning_rate": 8.266698357802045e-05, "grad_norm": 1.2133562564849854, "token_acc": 0.8348316967487335, "gpu_alloc_gb": 12.88, "elapsed_s": 9120.3, "epoch": 1.1375872382851446} +{"step": 11420, "loss": 0.6728, "learning_rate": 8.250799499407051e-05, "grad_norm": 1.4435855150222778, "token_acc": 0.8339556634426117, "gpu_alloc_gb": 12.88, "elapsed_s": 9126.9, "epoch": 1.1385842472582253} +{"step": 11430, "loss": 0.6256, "learning_rate": 8.2349052007811e-05, "grad_norm": 1.1274713277816772, "token_acc": 0.8400273978710174, "gpu_alloc_gb": 12.88, "elapsed_s": 9133.9, "epoch": 1.1395812562313061} +{"step": 11440, "loss": 0.6805, "learning_rate": 8.219015503357029e-05, "grad_norm": 1.468718409538269, "token_acc": 0.8332350134849549, "gpu_alloc_gb": 12.88, "elapsed_s": 9140.9, "epoch": 1.1405782652043868} +{"step": 11450, "loss": 0.6644, "learning_rate": 8.203130448555674e-05, "grad_norm": 1.0165367126464844, "token_acc": 0.8318879783153534, "gpu_alloc_gb": 12.88, "elapsed_s": 9147.6, "epoch": 1.1415752741774676} +{"step": 11460, "loss": 0.6492, "learning_rate": 8.187250077785764e-05, "grad_norm": 1.8373613357543945, "token_acc": 0.83535937666893, "gpu_alloc_gb": 12.88, "elapsed_s": 9154.4, "epoch": 1.1425722831505483} +{"step": 11470, "loss": 0.6431, "learning_rate": 8.171374432443834e-05, "grad_norm": 2.6096854209899902, "token_acc": 0.8357165098190308, "gpu_alloc_gb": 12.88, "elapsed_s": 9161.2, "epoch": 1.1435692921236291} +{"step": 11480, "loss": 0.6226, "learning_rate": 8.155503553914086e-05, "grad_norm": 5.384186744689941, "token_acc": 0.8402942657470703, "gpu_alloc_gb": 12.88, "elapsed_s": 9168.0, "epoch": 1.14456630109671} +{"step": 11490, "loss": 0.6312, "learning_rate": 8.139637483568299e-05, "grad_norm": 1.1613034009933472, "token_acc": 0.8370012760162353, "gpu_alloc_gb": 12.88, "elapsed_s": 9174.9, "epoch": 1.1455633100697906} +{"step": 11500, "loss": 0.6476, "learning_rate": 8.123776262765728e-05, "grad_norm": 1.1592434644699097, "token_acc": 0.8340487122535706, "gpu_alloc_gb": 12.88, "elapsed_s": 9181.6, "epoch": 1.1465603190428715} +{"step": 11500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 9248.9, "epoch": 1.1465603190428715} +{"step": 11500, "eval_loss": 1.2827595472335815, "eval_step": true} +{"step": 11510, "loss": 0.6669, "learning_rate": 8.107919932852977e-05, "grad_norm": 2.603940486907959, "token_acc": 0.8307349503040313, "gpu_alloc_gb": 12.88, "elapsed_s": 9297.6, "epoch": 1.1475573280159521} +{"step": 11520, "loss": 0.6487, "learning_rate": 8.092068535163892e-05, "grad_norm": 1.089332103729248, "token_acc": 0.8385838627815246, "gpu_alloc_gb": 12.88, "elapsed_s": 9304.5, "epoch": 1.148554336989033} +{"step": 11530, "loss": 0.6555, "learning_rate": 8.076222111019487e-05, "grad_norm": 2.313654899597168, "token_acc": 0.8351632356643677, "gpu_alloc_gb": 12.88, "elapsed_s": 9311.5, "epoch": 1.1495513459621136} +{"step": 11540, "loss": 0.6376, "learning_rate": 8.060380701727787e-05, "grad_norm": 2.9547760486602783, "token_acc": 0.8384142994880677, "gpu_alloc_gb": 12.88, "elapsed_s": 9318.1, "epoch": 1.1505483549351945} +{"step": 11550, "loss": 0.6892, "learning_rate": 8.044544348583755e-05, "grad_norm": 1.3492902517318726, "token_acc": 0.8289425909519196, "gpu_alloc_gb": 12.88, "elapsed_s": 9325.0, "epoch": 1.151545363908275} +{"step": 11560, "loss": 0.689, "learning_rate": 8.028713092869177e-05, "grad_norm": 1.9101110696792603, "token_acc": 0.825892585515976, "gpu_alloc_gb": 12.88, "elapsed_s": 9331.9, "epoch": 1.152542372881356} +{"step": 11570, "loss": 0.6545, "learning_rate": 8.012886975852544e-05, "grad_norm": 3.6834447383880615, "token_acc": 0.8350188195705414, "gpu_alloc_gb": 12.88, "elapsed_s": 9338.7, "epoch": 1.1535393818544366} +{"step": 11580, "loss": 0.6597, "learning_rate": 7.99706603878895e-05, "grad_norm": 1.0721170902252197, "token_acc": 0.8353789210319519, "gpu_alloc_gb": 12.88, "elapsed_s": 9345.5, "epoch": 1.1545363908275175} +{"step": 11590, "loss": 0.6623, "learning_rate": 7.981250322919996e-05, "grad_norm": 2.765444278717041, "token_acc": 0.8298645496368409, "gpu_alloc_gb": 12.88, "elapsed_s": 9352.4, "epoch": 1.155533399800598} +{"step": 11600, "loss": 0.6412, "learning_rate": 7.965439869473664e-05, "grad_norm": 2.8800785541534424, "token_acc": 0.8366325914859771, "gpu_alloc_gb": 12.88, "elapsed_s": 9359.0, "epoch": 1.156530408773679} +{"step": 11610, "loss": 0.6679, "learning_rate": 7.949634719664219e-05, "grad_norm": 1.2594069242477417, "token_acc": 0.8328737437725067, "gpu_alloc_gb": 12.88, "elapsed_s": 9365.5, "epoch": 1.1575274177467598} +{"step": 11620, "loss": 0.6518, "learning_rate": 7.933834914692108e-05, "grad_norm": 2.2375147342681885, "token_acc": 0.8385654628276825, "gpu_alloc_gb": 12.88, "elapsed_s": 9372.1, "epoch": 1.1585244267198405} +{"step": 11630, "loss": 0.6814, "learning_rate": 7.91804049574384e-05, "grad_norm": 1.0233266353607178, "token_acc": 0.8282834231853485, "gpu_alloc_gb": 12.88, "elapsed_s": 9379.0, "epoch": 1.1595214356929213} +{"step": 11640, "loss": 0.6698, "learning_rate": 7.902251503991876e-05, "grad_norm": 3.697662353515625, "token_acc": 0.8315215110778809, "gpu_alloc_gb": 12.88, "elapsed_s": 9385.6, "epoch": 1.160518444666002} +{"step": 11650, "loss": 0.6549, "learning_rate": 7.886467980594542e-05, "grad_norm": 5.061906337738037, "token_acc": 0.83311448097229, "gpu_alloc_gb": 12.88, "elapsed_s": 9392.3, "epoch": 1.1615154536390828} +{"step": 11660, "loss": 0.6452, "learning_rate": 7.870689966695903e-05, "grad_norm": 2.3532016277313232, "token_acc": 0.8357930779457092, "gpu_alloc_gb": 12.88, "elapsed_s": 9399.0, "epoch": 1.1625124626121635} +{"step": 11670, "loss": 0.6448, "learning_rate": 7.854917503425664e-05, "grad_norm": 1.9131520986557007, "token_acc": 0.8355037271976471, "gpu_alloc_gb": 12.88, "elapsed_s": 9405.7, "epoch": 1.1635094715852443} +{"step": 11680, "loss": 0.6585, "learning_rate": 7.839150631899062e-05, "grad_norm": 2.083256483078003, "token_acc": 0.8339818358421326, "gpu_alloc_gb": 12.88, "elapsed_s": 9412.3, "epoch": 1.164506480558325} +{"step": 11690, "loss": 0.6371, "learning_rate": 7.823389393216753e-05, "grad_norm": 2.7937734127044678, "token_acc": 0.8404154121875763, "gpu_alloc_gb": 12.88, "elapsed_s": 9419.0, "epoch": 1.1655034895314058} +{"step": 11700, "loss": 0.6374, "learning_rate": 7.807633828464711e-05, "grad_norm": 1.7507191896438599, "token_acc": 0.8376674175262451, "gpu_alloc_gb": 12.88, "elapsed_s": 9425.6, "epoch": 1.1665004985044864} +{"step": 11710, "loss": 0.6606, "learning_rate": 7.791883978714126e-05, "grad_norm": 1.1020835638046265, "token_acc": 0.8321690022945404, "gpu_alloc_gb": 12.88, "elapsed_s": 9432.1, "epoch": 1.1674975074775673} +{"step": 11720, "loss": 0.6492, "learning_rate": 7.776139885021278e-05, "grad_norm": 4.140831470489502, "token_acc": 0.8363395929336548, "gpu_alloc_gb": 12.88, "elapsed_s": 9438.8, "epoch": 1.168494516450648} +{"step": 11730, "loss": 0.6364, "learning_rate": 7.760401588427451e-05, "grad_norm": 2.176046848297119, "token_acc": 0.8393474578857422, "gpu_alloc_gb": 12.88, "elapsed_s": 9445.3, "epoch": 1.1694915254237288} +{"step": 11740, "loss": 0.6326, "learning_rate": 7.744669129958817e-05, "grad_norm": 1.2320700883865356, "token_acc": 0.8412774443626404, "gpu_alloc_gb": 12.88, "elapsed_s": 9452.0, "epoch": 1.1704885343968097} +{"step": 11750, "loss": 0.6433, "learning_rate": 7.728942550626328e-05, "grad_norm": 1.43128502368927, "token_acc": 0.8370227575302124, "gpu_alloc_gb": 12.88, "elapsed_s": 9458.6, "epoch": 1.1714855433698903} +{"step": 11750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 9525.6, "epoch": 1.1714855433698903} +{"step": 11750, "eval_loss": 1.240237832069397, "eval_step": true} +{"step": 11760, "loss": 0.6223, "learning_rate": 7.71322189142561e-05, "grad_norm": 1.2909873723983765, "token_acc": 0.840499097108841, "gpu_alloc_gb": 12.88, "elapsed_s": 9569.1, "epoch": 1.1724825523429712} +{"step": 11770, "loss": 0.6371, "learning_rate": 7.697507193336856e-05, "grad_norm": 1.501021146774292, "token_acc": 0.8388809323310852, "gpu_alloc_gb": 12.88, "elapsed_s": 9575.7, "epoch": 1.1734795613160518} +{"step": 11780, "loss": 0.6509, "learning_rate": 7.681798497324716e-05, "grad_norm": 1.7523444890975952, "token_acc": 0.835181838274002, "gpu_alloc_gb": 12.88, "elapsed_s": 9582.3, "epoch": 1.1744765702891327} +{"step": 11790, "loss": 0.6413, "learning_rate": 7.666095844338207e-05, "grad_norm": 2.498459577560425, "token_acc": 0.8351294875144959, "gpu_alloc_gb": 12.88, "elapsed_s": 9589.0, "epoch": 1.1754735792622133} +{"step": 11800, "loss": 0.6574, "learning_rate": 7.650399275310578e-05, "grad_norm": 1.0582969188690186, "token_acc": 0.8345009446144104, "gpu_alloc_gb": 12.88, "elapsed_s": 9595.7, "epoch": 1.1764705882352942} +{"step": 11810, "loss": 0.657, "learning_rate": 7.634708831159226e-05, "grad_norm": 2.004650354385376, "token_acc": 0.835766726732254, "gpu_alloc_gb": 12.88, "elapsed_s": 9602.3, "epoch": 1.1774675972083748} +{"step": 11820, "loss": 0.6649, "learning_rate": 7.619024552785585e-05, "grad_norm": 3.5608103275299072, "token_acc": 0.8319324135780335, "gpu_alloc_gb": 12.88, "elapsed_s": 9609.0, "epoch": 1.1784646061814557} +{"step": 11830, "loss": 0.6538, "learning_rate": 7.603346481075005e-05, "grad_norm": 1.1767712831497192, "token_acc": 0.8352752566337586, "gpu_alloc_gb": 12.88, "elapsed_s": 9615.8, "epoch": 1.1794616151545365} +{"step": 11840, "loss": 0.6257, "learning_rate": 7.587674656896667e-05, "grad_norm": 1.1070568561553955, "token_acc": 0.8395534753799438, "gpu_alloc_gb": 12.88, "elapsed_s": 9622.6, "epoch": 1.1804586241276172} +{"step": 11850, "loss": 0.6272, "learning_rate": 7.572009121103464e-05, "grad_norm": 3.4204585552215576, "token_acc": 0.8387408375740051, "gpu_alloc_gb": 12.88, "elapsed_s": 9629.2, "epoch": 1.1814556331006978} +{"step": 11860, "loss": 0.6365, "learning_rate": 7.556349914531896e-05, "grad_norm": 2.6575701236724854, "token_acc": 0.839472234249115, "gpu_alloc_gb": 12.88, "elapsed_s": 9636.0, "epoch": 1.1824526420737786} +{"step": 11870, "loss": 0.6455, "learning_rate": 7.540697078001959e-05, "grad_norm": 1.2453099489212036, "token_acc": 0.8389557838439942, "gpu_alloc_gb": 12.88, "elapsed_s": 9642.4, "epoch": 1.1834496510468595} +{"step": 11880, "loss": 0.6268, "learning_rate": 7.525050652317056e-05, "grad_norm": 1.188989520072937, "token_acc": 0.8398922145366668, "gpu_alloc_gb": 12.88, "elapsed_s": 9649.1, "epoch": 1.1844466600199401} +{"step": 11890, "loss": 0.65, "learning_rate": 7.509410678263864e-05, "grad_norm": 1.2144304513931274, "token_acc": 0.8362857401371002, "gpu_alloc_gb": 12.88, "elapsed_s": 9655.7, "epoch": 1.185443668993021} +{"step": 11900, "loss": 0.6475, "learning_rate": 7.493777196612249e-05, "grad_norm": 1.7180038690567017, "token_acc": 0.8359451591968536, "gpu_alloc_gb": 12.88, "elapsed_s": 9662.6, "epoch": 1.1864406779661016} +{"step": 11910, "loss": 0.6481, "learning_rate": 7.478150248115156e-05, "grad_norm": 1.152686595916748, "token_acc": 0.8352966010570526, "gpu_alloc_gb": 12.88, "elapsed_s": 9669.3, "epoch": 1.1874376869391825} +{"step": 11920, "loss": 0.6443, "learning_rate": 7.462529873508495e-05, "grad_norm": 1.0667729377746582, "token_acc": 0.8379177391529083, "gpu_alloc_gb": 12.88, "elapsed_s": 9676.1, "epoch": 1.1884346959122631} +{"step": 11930, "loss": 0.6827, "learning_rate": 7.446916113511035e-05, "grad_norm": 1.1047286987304688, "token_acc": 0.8307863712310791, "gpu_alloc_gb": 12.88, "elapsed_s": 9682.6, "epoch": 1.189431704885344} +{"step": 11940, "loss": 0.6392, "learning_rate": 7.431309008824319e-05, "grad_norm": 1.056524395942688, "token_acc": 0.8389954388141632, "gpu_alloc_gb": 12.88, "elapsed_s": 9689.3, "epoch": 1.1904287138584246} +{"step": 11950, "loss": 0.649, "learning_rate": 7.41570860013252e-05, "grad_norm": 1.0454517602920532, "token_acc": 0.8340212762355804, "gpu_alloc_gb": 12.88, "elapsed_s": 9696.1, "epoch": 1.1914257228315055} +{"step": 11960, "loss": 0.6624, "learning_rate": 7.400114928102368e-05, "grad_norm": 1.918270230293274, "token_acc": 0.8327248752117157, "gpu_alloc_gb": 12.88, "elapsed_s": 9702.8, "epoch": 1.1924227318045864} +{"step": 11970, "loss": 0.6301, "learning_rate": 7.384528033383032e-05, "grad_norm": 1.117285966873169, "token_acc": 0.8402234554290772, "gpu_alloc_gb": 12.88, "elapsed_s": 9709.9, "epoch": 1.193419740777667} +{"step": 11980, "loss": 0.6493, "learning_rate": 7.368947956606011e-05, "grad_norm": 1.0306696891784668, "token_acc": 0.8367086827754975, "gpu_alloc_gb": 12.88, "elapsed_s": 9716.8, "epoch": 1.1944167497507479} +{"step": 11990, "loss": 0.6519, "learning_rate": 7.35337473838503e-05, "grad_norm": 1.0183844566345215, "token_acc": 0.8339155972003937, "gpu_alloc_gb": 12.88, "elapsed_s": 9723.4, "epoch": 1.1954137587238285} +{"step": 12000, "loss": 0.6677, "learning_rate": 7.337808419315943e-05, "grad_norm": 2.3588428497314453, "token_acc": 0.8303640425205231, "gpu_alloc_gb": 12.88, "elapsed_s": 9730.2, "epoch": 1.1964107676969093} +{"step": 12000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 9797.1, "epoch": 1.1964107676969093} +{"step": 12000, "eval_loss": 1.2489244937896729, "eval_step": true} +{"step": 12010, "loss": 0.6597, "learning_rate": 7.322249039976608e-05, "grad_norm": 5.699969291687012, "token_acc": 0.8311026215553283, "gpu_alloc_gb": 12.88, "elapsed_s": 9842.3, "epoch": 1.19740777666999} +{"step": 12020, "loss": 0.6698, "learning_rate": 7.306696640926798e-05, "grad_norm": 1.1862927675247192, "token_acc": 0.829412442445755, "gpu_alloc_gb": 12.88, "elapsed_s": 9848.9, "epoch": 1.1984047856430708} +{"step": 12030, "loss": 0.6411, "learning_rate": 7.291151262708096e-05, "grad_norm": 1.0286144018173218, "token_acc": 0.8386892318725586, "gpu_alloc_gb": 12.88, "elapsed_s": 9855.7, "epoch": 1.1994017946161515} +{"step": 12040, "loss": 0.6338, "learning_rate": 7.275612945843778e-05, "grad_norm": 1.0865741968154907, "token_acc": 0.8394395768642425, "gpu_alloc_gb": 12.88, "elapsed_s": 9862.4, "epoch": 1.2003988035892323} +{"step": 12050, "loss": 0.6339, "learning_rate": 7.260081730838703e-05, "grad_norm": 1.5214210748672485, "token_acc": 0.8347880840301514, "gpu_alloc_gb": 12.88, "elapsed_s": 9869.0, "epoch": 1.201395812562313} +{"step": 12060, "loss": 0.6482, "learning_rate": 7.244557658179239e-05, "grad_norm": 1.2111186981201172, "token_acc": 0.8379714787006378, "gpu_alloc_gb": 12.88, "elapsed_s": 9875.7, "epoch": 1.2023928215353938} +{"step": 12070, "loss": 0.6539, "learning_rate": 7.229040768333115e-05, "grad_norm": 1.1268492937088013, "token_acc": 0.8363702535629273, "gpu_alloc_gb": 12.88, "elapsed_s": 9882.3, "epoch": 1.2033898305084745} +{"step": 12080, "loss": 0.6134, "learning_rate": 7.213531101749344e-05, "grad_norm": 5.92860746383667, "token_acc": 0.8434275329113007, "gpu_alloc_gb": 12.88, "elapsed_s": 9888.8, "epoch": 1.2043868394815553} +{"step": 12090, "loss": 0.6267, "learning_rate": 7.198028698858115e-05, "grad_norm": 5.249661445617676, "token_acc": 0.8412725985050201, "gpu_alloc_gb": 12.88, "elapsed_s": 9895.5, "epoch": 1.2053838484546362} +{"step": 12100, "loss": 0.641, "learning_rate": 7.182533600070676e-05, "grad_norm": 1.4979510307312012, "token_acc": 0.8375519156455994, "gpu_alloc_gb": 12.88, "elapsed_s": 9902.2, "epoch": 1.2063808574277168} +{"step": 12110, "loss": 0.6608, "learning_rate": 7.167045845779226e-05, "grad_norm": 1.1768808364868164, "token_acc": 0.8323244273662567, "gpu_alloc_gb": 12.88, "elapsed_s": 9908.9, "epoch": 1.2073778664007977} +{"step": 12120, "loss": 0.6356, "learning_rate": 7.151565476356845e-05, "grad_norm": 1.1921401023864746, "token_acc": 0.839936101436615, "gpu_alloc_gb": 12.88, "elapsed_s": 9915.6, "epoch": 1.2083748753738783} +{"step": 12130, "loss": 0.6511, "learning_rate": 7.136092532157332e-05, "grad_norm": 2.7416136264801025, "token_acc": 0.8368191421031952, "gpu_alloc_gb": 12.88, "elapsed_s": 9922.5, "epoch": 1.2093718843469592} +{"step": 12140, "loss": 0.6755, "learning_rate": 7.120627053515147e-05, "grad_norm": 1.222014307975769, "token_acc": 0.8294735193252564, "gpu_alloc_gb": 12.88, "elapsed_s": 9929.1, "epoch": 1.2103688933200398} +{"step": 12150, "loss": 0.6617, "learning_rate": 7.10516908074529e-05, "grad_norm": 1.08780038356781, "token_acc": 0.8341390907764434, "gpu_alloc_gb": 12.88, "elapsed_s": 9935.8, "epoch": 1.2113659022931207} +{"step": 12160, "loss": 0.6518, "learning_rate": 7.08971865414319e-05, "grad_norm": 1.2086495161056519, "token_acc": 0.8362063288688659, "gpu_alloc_gb": 12.88, "elapsed_s": 9942.6, "epoch": 1.2123629112662013} +{"step": 12170, "loss": 0.6509, "learning_rate": 7.074275813984597e-05, "grad_norm": 2.52754545211792, "token_acc": 0.8358612596988678, "gpu_alloc_gb": 12.88, "elapsed_s": 9949.3, "epoch": 1.2133599202392822} +{"step": 12180, "loss": 0.6476, "learning_rate": 7.058840600525507e-05, "grad_norm": 2.0055971145629883, "token_acc": 0.8340368926525116, "gpu_alloc_gb": 12.88, "elapsed_s": 9956.1, "epoch": 1.2143569292123628} +{"step": 12190, "loss": 0.635, "learning_rate": 7.043413054002006e-05, "grad_norm": 2.1942648887634277, "token_acc": 0.8403338432312012, "gpu_alloc_gb": 12.88, "elapsed_s": 9962.6, "epoch": 1.2153539381854437} +{"step": 12200, "loss": 0.6533, "learning_rate": 7.027993214630224e-05, "grad_norm": 1.109371542930603, "token_acc": 0.8355241596698761, "gpu_alloc_gb": 12.88, "elapsed_s": 9969.3, "epoch": 1.2163509471585243} +{"step": 12210, "loss": 0.6505, "learning_rate": 7.012581122606179e-05, "grad_norm": 0.9907912611961365, "token_acc": 0.8375101089477539, "gpu_alloc_gb": 12.88, "elapsed_s": 9975.9, "epoch": 1.2173479561316052} +{"step": 12220, "loss": 0.6354, "learning_rate": 6.997176818105696e-05, "grad_norm": 1.0093514919281006, "token_acc": 0.8388544619083405, "gpu_alloc_gb": 12.88, "elapsed_s": 9982.7, "epoch": 1.218344965104686} +{"step": 12230, "loss": 0.6722, "learning_rate": 6.98178034128431e-05, "grad_norm": 1.7914003133773804, "token_acc": 0.8303673505783081, "gpu_alloc_gb": 12.88, "elapsed_s": 9989.3, "epoch": 1.2193419740777667} +{"step": 12240, "loss": 0.6515, "learning_rate": 6.966391732277143e-05, "grad_norm": 1.0913642644882202, "token_acc": 0.8330131828784942, "gpu_alloc_gb": 12.88, "elapsed_s": 9996.0, "epoch": 1.2203389830508475} +{"step": 12250, "loss": 0.6462, "learning_rate": 6.951011031198805e-05, "grad_norm": 3.6380767822265625, "token_acc": 0.8378016948699951, "gpu_alloc_gb": 12.88, "elapsed_s": 10002.6, "epoch": 1.2213359920239282} +{"step": 12250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 10069.6, "epoch": 1.2213359920239282} +{"step": 12250, "eval_loss": 1.2756611108779907, "eval_step": true} +{"step": 12260, "loss": 0.6279, "learning_rate": 6.935638278143302e-05, "grad_norm": 1.449294924736023, "token_acc": 0.8421344876289367, "gpu_alloc_gb": 12.88, "elapsed_s": 10114.3, "epoch": 1.222333000997009} +{"step": 12270, "loss": 0.6611, "learning_rate": 6.920273513183913e-05, "grad_norm": 4.414867877960205, "token_acc": 0.8335004985332489, "gpu_alloc_gb": 12.88, "elapsed_s": 10121.1, "epoch": 1.2233300099700897} +{"step": 12280, "loss": 0.623, "learning_rate": 6.904916776373092e-05, "grad_norm": 1.160778284072876, "token_acc": 0.8396623313426972, "gpu_alloc_gb": 12.88, "elapsed_s": 10128.0, "epoch": 1.2243270189431705} +{"step": 12290, "loss": 0.6226, "learning_rate": 6.889568107742373e-05, "grad_norm": 1.008298397064209, "token_acc": 0.8384296894073486, "gpu_alloc_gb": 12.88, "elapsed_s": 10134.5, "epoch": 1.2253240279162512} +{"step": 12300, "loss": 0.6505, "learning_rate": 6.87422754730226e-05, "grad_norm": 3.6117963790893555, "token_acc": 0.838305401802063, "gpu_alloc_gb": 12.88, "elapsed_s": 10141.1, "epoch": 1.226321036889332} +{"step": 12310, "loss": 0.6355, "learning_rate": 6.858895135042102e-05, "grad_norm": 1.1155071258544922, "token_acc": 0.8422723114490509, "gpu_alloc_gb": 12.88, "elapsed_s": 10147.7, "epoch": 1.2273180458624127} +{"step": 12320, "loss": 0.6662, "learning_rate": 6.843570910930034e-05, "grad_norm": 1.1921030282974243, "token_acc": 0.8319759845733643, "gpu_alloc_gb": 12.88, "elapsed_s": 10154.3, "epoch": 1.2283150548354935} +{"step": 12330, "loss": 0.6474, "learning_rate": 6.828254914912826e-05, "grad_norm": 2.546729803085327, "token_acc": 0.834433776140213, "gpu_alloc_gb": 12.88, "elapsed_s": 10161.1, "epoch": 1.2293120638085742} +{"step": 12340, "loss": 0.6233, "learning_rate": 6.812947186915807e-05, "grad_norm": 1.0611237287521362, "token_acc": 0.8404519379138946, "gpu_alloc_gb": 12.88, "elapsed_s": 10167.8, "epoch": 1.230309072781655} +{"step": 12350, "loss": 0.6714, "learning_rate": 6.797647766842756e-05, "grad_norm": 1.1105152368545532, "token_acc": 0.8310064494609832, "gpu_alloc_gb": 12.88, "elapsed_s": 10174.5, "epoch": 1.2313060817547359} +{"step": 12360, "loss": 0.6426, "learning_rate": 6.782356694575791e-05, "grad_norm": 1.0476818084716797, "token_acc": 0.8357722580432891, "gpu_alloc_gb": 12.88, "elapsed_s": 10181.2, "epoch": 1.2323030907278165} +{"step": 12370, "loss": 0.6356, "learning_rate": 6.767074009975265e-05, "grad_norm": 2.4509942531585693, "token_acc": 0.8407872557640076, "gpu_alloc_gb": 12.88, "elapsed_s": 10187.8, "epoch": 1.2333000997008974} +{"step": 12380, "loss": 0.6486, "learning_rate": 6.751799752879676e-05, "grad_norm": 1.0983710289001465, "token_acc": 0.8351942479610444, "gpu_alloc_gb": 12.88, "elapsed_s": 10194.5, "epoch": 1.234297108673978} +{"step": 12390, "loss": 0.6641, "learning_rate": 6.736533963105547e-05, "grad_norm": 1.0118523836135864, "token_acc": 0.8331058979034424, "gpu_alloc_gb": 12.88, "elapsed_s": 10201.1, "epoch": 1.2352941176470589} +{"step": 12400, "loss": 0.6748, "learning_rate": 6.72127668044733e-05, "grad_norm": 1.1942474842071533, "token_acc": 0.8269234120845794, "gpu_alloc_gb": 12.88, "elapsed_s": 10207.8, "epoch": 1.2362911266201395} +{"step": 12410, "loss": 0.6655, "learning_rate": 6.706027944677303e-05, "grad_norm": 1.0756696462631226, "token_acc": 0.8335377514362335, "gpu_alloc_gb": 12.88, "elapsed_s": 10214.7, "epoch": 1.2372881355932204} +{"step": 12420, "loss": 0.6267, "learning_rate": 6.690787795545461e-05, "grad_norm": 1.0608282089233398, "token_acc": 0.8414431750774384, "gpu_alloc_gb": 12.88, "elapsed_s": 10221.6, "epoch": 1.238285144566301} +{"step": 12430, "loss": 0.6495, "learning_rate": 6.675556272779415e-05, "grad_norm": 1.1192437410354614, "token_acc": 0.8355603516101837, "gpu_alloc_gb": 12.88, "elapsed_s": 10228.2, "epoch": 1.2392821535393819} +{"step": 12440, "loss": 0.6495, "learning_rate": 6.660333416084292e-05, "grad_norm": 1.0680594444274902, "token_acc": 0.8356175601482392, "gpu_alloc_gb": 12.88, "elapsed_s": 10234.8, "epoch": 1.2402791625124627} +{"step": 12450, "loss": 0.6405, "learning_rate": 6.64511926514263e-05, "grad_norm": 1.0642831325531006, "token_acc": 0.8362057328224182, "gpu_alloc_gb": 12.88, "elapsed_s": 10241.4, "epoch": 1.2412761714855434} +{"step": 12460, "loss": 0.6435, "learning_rate": 6.629913859614264e-05, "grad_norm": 1.112775444984436, "token_acc": 0.8346477270126342, "gpu_alloc_gb": 12.88, "elapsed_s": 10248.0, "epoch": 1.242273180458624} +{"step": 12470, "loss": 0.6126, "learning_rate": 6.614717239136246e-05, "grad_norm": 1.0520755052566528, "token_acc": 0.843894076347351, "gpu_alloc_gb": 12.88, "elapsed_s": 10254.6, "epoch": 1.2432701894317049} +{"step": 12480, "loss": 0.6398, "learning_rate": 6.599529443322716e-05, "grad_norm": 1.0285190343856812, "token_acc": 0.8347033441066742, "gpu_alloc_gb": 12.88, "elapsed_s": 10261.3, "epoch": 1.2442671984047857} +{"step": 12490, "loss": 0.6377, "learning_rate": 6.58435051176481e-05, "grad_norm": 1.035812497138977, "token_acc": 0.8398534655570984, "gpu_alloc_gb": 12.88, "elapsed_s": 10268.1, "epoch": 1.2452642073778664} +{"step": 12500, "loss": 0.6438, "learning_rate": 6.569180484030565e-05, "grad_norm": 1.038216471672058, "token_acc": 0.8378876030445099, "gpu_alloc_gb": 12.88, "elapsed_s": 10274.6, "epoch": 1.2462612163509472} +{"step": 12500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 10341.6, "epoch": 1.2462612163509472} +{"step": 12500, "eval_loss": 1.2629278898239136, "eval_step": true} +{"step": 12510, "loss": 0.6625, "learning_rate": 6.554019399664805e-05, "grad_norm": 1.0729706287384033, "token_acc": 0.8337075650691986, "gpu_alloc_gb": 12.88, "elapsed_s": 10386.2, "epoch": 1.2472582253240279} +{"step": 12520, "loss": 0.6507, "learning_rate": 6.538867298189033e-05, "grad_norm": 4.769057750701904, "token_acc": 0.8375392377376556, "gpu_alloc_gb": 12.88, "elapsed_s": 10392.7, "epoch": 1.2482552342971087} +{"step": 12530, "loss": 0.6308, "learning_rate": 6.523724219101346e-05, "grad_norm": 2.0898220539093018, "token_acc": 0.8407715022563934, "gpu_alloc_gb": 12.88, "elapsed_s": 10399.3, "epoch": 1.2492522432701894} +{"step": 12540, "loss": 0.6248, "learning_rate": 6.508590201876317e-05, "grad_norm": 1.1923599243164062, "token_acc": 0.8429339051246643, "gpu_alloc_gb": 12.88, "elapsed_s": 10406.0, "epoch": 1.2502492522432702} +{"step": 12550, "loss": 0.6371, "learning_rate": 6.493465285964892e-05, "grad_norm": 1.1395559310913086, "token_acc": 0.8387436985969543, "gpu_alloc_gb": 12.88, "elapsed_s": 10412.8, "epoch": 1.2512462612163509} +{"step": 12560, "loss": 0.6468, "learning_rate": 6.478349510794304e-05, "grad_norm": 2.438105583190918, "token_acc": 0.8350139677524566, "gpu_alloc_gb": 12.88, "elapsed_s": 10419.4, "epoch": 1.2522432701894317} +{"step": 12570, "loss": 0.6451, "learning_rate": 6.463242915767946e-05, "grad_norm": 2.9843642711639404, "token_acc": 0.8357150435447693, "gpu_alloc_gb": 12.88, "elapsed_s": 10426.1, "epoch": 1.2532402791625126} +{"step": 12580, "loss": 0.6363, "learning_rate": 6.448145540265287e-05, "grad_norm": 3.37684965133667, "token_acc": 0.8373050272464753, "gpu_alloc_gb": 12.88, "elapsed_s": 10433.0, "epoch": 1.2542372881355932} +{"step": 12590, "loss": 0.6475, "learning_rate": 6.433057423641764e-05, "grad_norm": 1.0658910274505615, "token_acc": 0.8356272399425506, "gpu_alloc_gb": 12.88, "elapsed_s": 10439.7, "epoch": 1.2552342971086738} +{"step": 12600, "loss": 0.6374, "learning_rate": 6.417978605228672e-05, "grad_norm": 1.071393370628357, "token_acc": 0.8382488250732422, "gpu_alloc_gb": 12.88, "elapsed_s": 10446.3, "epoch": 1.2562313060817547} +{"step": 12610, "loss": 0.6531, "learning_rate": 6.402909124333074e-05, "grad_norm": 2.919851064682007, "token_acc": 0.8342172861099243, "gpu_alloc_gb": 12.88, "elapsed_s": 10452.9, "epoch": 1.2572283150548356} +{"step": 12620, "loss": 0.6298, "learning_rate": 6.387849020237689e-05, "grad_norm": 2.3300936222076416, "token_acc": 0.8417462468147278, "gpu_alloc_gb": 12.88, "elapsed_s": 10459.5, "epoch": 1.2582253240279162} +{"step": 12630, "loss": 0.6583, "learning_rate": 6.372798332200787e-05, "grad_norm": 1.2909941673278809, "token_acc": 0.8323439061641693, "gpu_alloc_gb": 12.88, "elapsed_s": 10466.1, "epoch": 1.259222333000997} +{"step": 12640, "loss": 0.6487, "learning_rate": 6.357757099456107e-05, "grad_norm": 3.499844551086426, "token_acc": 0.8373738706111908, "gpu_alloc_gb": 12.88, "elapsed_s": 10472.6, "epoch": 1.2602193419740777} +{"step": 12650, "loss": 0.6455, "learning_rate": 6.342725361212731e-05, "grad_norm": 4.982882976531982, "token_acc": 0.8362643003463746, "gpu_alloc_gb": 12.88, "elapsed_s": 10479.2, "epoch": 1.2612163509471586} +{"step": 12660, "loss": 0.6125, "learning_rate": 6.327703156654985e-05, "grad_norm": 1.0600593090057373, "token_acc": 0.840884667634964, "gpu_alloc_gb": 12.88, "elapsed_s": 10485.8, "epoch": 1.2622133599202394} +{"step": 12670, "loss": 0.6496, "learning_rate": 6.312690524942362e-05, "grad_norm": 1.1000069379806519, "token_acc": 0.8361355423927307, "gpu_alloc_gb": 12.88, "elapsed_s": 10492.4, "epoch": 1.26321036889332} +{"step": 12680, "loss": 0.6584, "learning_rate": 6.297687505209375e-05, "grad_norm": 1.0112957954406738, "token_acc": 0.8339269101619721, "gpu_alloc_gb": 12.88, "elapsed_s": 10499.3, "epoch": 1.2642073778664007} +{"step": 12690, "loss": 0.6212, "learning_rate": 6.282694136565501e-05, "grad_norm": 2.0678839683532715, "token_acc": 0.841934597492218, "gpu_alloc_gb": 12.88, "elapsed_s": 10506.0, "epoch": 1.2652043868394816} +{"step": 12700, "loss": 0.6406, "learning_rate": 6.267710458095053e-05, "grad_norm": 1.2263916730880737, "token_acc": 0.834813517332077, "gpu_alloc_gb": 12.88, "elapsed_s": 10512.7, "epoch": 1.2662013958125624} +{"step": 12710, "loss": 0.6217, "learning_rate": 6.252736508857082e-05, "grad_norm": 2.601238489151001, "token_acc": 0.8419075727462768, "gpu_alloc_gb": 12.88, "elapsed_s": 10519.4, "epoch": 1.267198404785643} +{"step": 12720, "loss": 0.6382, "learning_rate": 6.237772327885273e-05, "grad_norm": 1.349693775177002, "token_acc": 0.8395537436008453, "gpu_alloc_gb": 12.88, "elapsed_s": 10525.8, "epoch": 1.268195413758724} +{"step": 12730, "loss": 0.625, "learning_rate": 6.222817954187863e-05, "grad_norm": 2.496537446975708, "token_acc": 0.8424574136734009, "gpu_alloc_gb": 12.88, "elapsed_s": 10532.5, "epoch": 1.2691924227318045} +{"step": 12740, "loss": 0.6525, "learning_rate": 6.207873426747504e-05, "grad_norm": 5.403807640075684, "token_acc": 0.834589022397995, "gpu_alloc_gb": 12.88, "elapsed_s": 10539.1, "epoch": 1.2701894317048854} +{"step": 12750, "loss": 0.6702, "learning_rate": 6.19293878452119e-05, "grad_norm": 3.7007267475128174, "token_acc": 0.8320233821868896, "gpu_alloc_gb": 12.88, "elapsed_s": 10545.7, "epoch": 1.271186440677966} +{"step": 12750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 10612.7, "epoch": 1.271186440677966} +{"step": 12750, "eval_loss": 1.241822600364685, "eval_step": true} +{"step": 12760, "loss": 0.637, "learning_rate": 6.178014066440154e-05, "grad_norm": 2.3086512088775635, "token_acc": 0.8382309436798095, "gpu_alloc_gb": 12.88, "elapsed_s": 10658.0, "epoch": 1.272183449651047} +{"step": 12770, "loss": 0.6768, "learning_rate": 6.163099311409747e-05, "grad_norm": 1.1404953002929688, "token_acc": 0.8279998481273652, "gpu_alloc_gb": 12.88, "elapsed_s": 10664.9, "epoch": 1.2731804586241275} +{"step": 12780, "loss": 0.6263, "learning_rate": 6.148194558309348e-05, "grad_norm": 1.0873922109603882, "token_acc": 0.8395936191082001, "gpu_alloc_gb": 12.88, "elapsed_s": 10671.6, "epoch": 1.2741774675972084} +{"step": 12790, "loss": 0.6707, "learning_rate": 6.13329984599228e-05, "grad_norm": 1.910167932510376, "token_acc": 0.8323288798332215, "gpu_alloc_gb": 12.88, "elapsed_s": 10678.1, "epoch": 1.2751744765702893} +{"step": 12800, "loss": 0.6449, "learning_rate": 6.118415213285673e-05, "grad_norm": 1.0143778324127197, "token_acc": 0.8352274775505066, "gpu_alloc_gb": 12.88, "elapsed_s": 10684.9, "epoch": 1.27617148554337} +{"step": 12810, "loss": 0.6542, "learning_rate": 6.103540698990387e-05, "grad_norm": 3.0675816535949707, "token_acc": 0.8315575182437897, "gpu_alloc_gb": 12.88, "elapsed_s": 10691.6, "epoch": 1.2771684945164505} +{"step": 12820, "loss": 0.6086, "learning_rate": 6.0886763418809146e-05, "grad_norm": 0.964897096157074, "token_acc": 0.8463476240634918, "gpu_alloc_gb": 12.88, "elapsed_s": 10698.3, "epoch": 1.2781655034895314} +{"step": 12830, "loss": 0.6701, "learning_rate": 6.073822180705262e-05, "grad_norm": 3.0652692317962646, "token_acc": 0.830498343706131, "gpu_alloc_gb": 12.88, "elapsed_s": 10704.9, "epoch": 1.2791625124626123} +{"step": 12840, "loss": 0.6222, "learning_rate": 6.0589782541848506e-05, "grad_norm": 1.032846450805664, "token_acc": 0.8426638185977936, "gpu_alloc_gb": 12.88, "elapsed_s": 10711.5, "epoch": 1.280159521435693} +{"step": 12850, "loss": 0.6358, "learning_rate": 6.044144601014443e-05, "grad_norm": 2.6295645236968994, "token_acc": 0.8392945885658264, "gpu_alloc_gb": 12.88, "elapsed_s": 10718.4, "epoch": 1.2811565304087738} +{"step": 12860, "loss": 0.6522, "learning_rate": 6.0293212598620044e-05, "grad_norm": 1.1283783912658691, "token_acc": 0.8349972605705261, "gpu_alloc_gb": 12.88, "elapsed_s": 10725.3, "epoch": 1.2821535393818544} +{"step": 12870, "loss": 0.6396, "learning_rate": 6.0145082693686196e-05, "grad_norm": 4.093989372253418, "token_acc": 0.8432628393173218, "gpu_alloc_gb": 12.88, "elapsed_s": 10731.9, "epoch": 1.2831505483549352} +{"step": 12880, "loss": 0.6404, "learning_rate": 5.999705668148401e-05, "grad_norm": 1.067934513092041, "token_acc": 0.8411537170410156, "gpu_alloc_gb": 12.88, "elapsed_s": 10738.6, "epoch": 1.2841475573280159} +{"step": 12890, "loss": 0.6274, "learning_rate": 5.9849134947883735e-05, "grad_norm": 5.321004390716553, "token_acc": 0.841471928358078, "gpu_alloc_gb": 12.88, "elapsed_s": 10745.4, "epoch": 1.2851445663010967} +{"step": 12900, "loss": 0.616, "learning_rate": 5.970131787848372e-05, "grad_norm": 0.9698487520217896, "token_acc": 0.8449706971645355, "gpu_alloc_gb": 12.88, "elapsed_s": 10752.0, "epoch": 1.2861415752741774} +{"step": 12910, "loss": 0.6729, "learning_rate": 5.955360585860963e-05, "grad_norm": 1.1508671045303345, "token_acc": 0.8319786190986633, "gpu_alloc_gb": 12.88, "elapsed_s": 10758.7, "epoch": 1.2871385842472582} +{"step": 12920, "loss": 0.6205, "learning_rate": 5.940599927331316e-05, "grad_norm": 1.1181271076202393, "token_acc": 0.8413094520568848, "gpu_alloc_gb": 12.88, "elapsed_s": 10765.1, "epoch": 1.288135593220339} +{"step": 12930, "loss": 0.6365, "learning_rate": 5.9258498507371194e-05, "grad_norm": 6.128238201141357, "token_acc": 0.8392354488372803, "gpu_alloc_gb": 12.88, "elapsed_s": 10771.9, "epoch": 1.2891326021934197} +{"step": 12940, "loss": 0.6217, "learning_rate": 5.911110394528482e-05, "grad_norm": 5.046426296234131, "token_acc": 0.843252569437027, "gpu_alloc_gb": 12.88, "elapsed_s": 10778.7, "epoch": 1.2901296111665004} +{"step": 12950, "loss": 0.6368, "learning_rate": 5.8963815971278234e-05, "grad_norm": 2.6088006496429443, "token_acc": 0.8419911444187165, "gpu_alloc_gb": 12.88, "elapsed_s": 10785.5, "epoch": 1.2911266201395812} +{"step": 12960, "loss": 0.6094, "learning_rate": 5.88166349692977e-05, "grad_norm": 1.1712971925735474, "token_acc": 0.8423011243343353, "gpu_alloc_gb": 12.88, "elapsed_s": 10792.0, "epoch": 1.292123629112662} +{"step": 12970, "loss": 0.639, "learning_rate": 5.866956132301085e-05, "grad_norm": 4.775792598724365, "token_acc": 0.8371156513690948, "gpu_alloc_gb": 12.88, "elapsed_s": 10798.7, "epoch": 1.2931206380857427} +{"step": 12980, "loss": 0.6452, "learning_rate": 5.852259541580523e-05, "grad_norm": 1.1588081121444702, "token_acc": 0.8360670506954193, "gpu_alloc_gb": 12.88, "elapsed_s": 10805.5, "epoch": 1.2941176470588236} +{"step": 12990, "loss": 0.6431, "learning_rate": 5.837573763078763e-05, "grad_norm": 1.1764297485351562, "token_acc": 0.8392525672912597, "gpu_alloc_gb": 12.88, "elapsed_s": 10812.1, "epoch": 1.2951146560319042} +{"step": 13000, "loss": 0.6375, "learning_rate": 5.822898835078308e-05, "grad_norm": 1.0661942958831787, "token_acc": 0.8375327408313751, "gpu_alloc_gb": 12.88, "elapsed_s": 10818.5, "epoch": 1.296111665004985} +{"step": 13000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 10885.4, "epoch": 1.296111665004985} +{"step": 13000, "eval_loss": 1.229648470878601, "eval_step": true} +{"step": 13010, "loss": 0.6509, "learning_rate": 5.8082347958333625e-05, "grad_norm": 1.1913087368011475, "token_acc": 0.8343915462493896, "gpu_alloc_gb": 12.88, "elapsed_s": 10927.7, "epoch": 1.2971086739780657} +{"step": 13020, "loss": 0.6421, "learning_rate": 5.793581683569746e-05, "grad_norm": 1.3235788345336914, "token_acc": 0.8373314321041108, "gpu_alloc_gb": 12.88, "elapsed_s": 10934.5, "epoch": 1.2981056829511466} +{"step": 13030, "loss": 0.6676, "learning_rate": 5.778939536484805e-05, "grad_norm": 1.0634970664978027, "token_acc": 0.831275898218155, "gpu_alloc_gb": 12.88, "elapsed_s": 10941.0, "epoch": 1.2991026919242272} +{"step": 13040, "loss": 0.6491, "learning_rate": 5.764308392747296e-05, "grad_norm": 1.1285823583602905, "token_acc": 0.834906530380249, "gpu_alloc_gb": 12.88, "elapsed_s": 10947.7, "epoch": 1.300099700897308} +{"step": 13050, "loss": 0.6329, "learning_rate": 5.749688290497297e-05, "grad_norm": 1.2611517906188965, "token_acc": 0.8393219172954559, "gpu_alloc_gb": 12.88, "elapsed_s": 10954.5, "epoch": 1.301096709870389} +{"step": 13060, "loss": 0.6212, "learning_rate": 5.7350792678460954e-05, "grad_norm": 1.0910054445266724, "token_acc": 0.841865885257721, "gpu_alloc_gb": 12.88, "elapsed_s": 10961.1, "epoch": 1.3020937188434696} +{"step": 13070, "loss": 0.6927, "learning_rate": 5.720481362876095e-05, "grad_norm": 1.0672485828399658, "token_acc": 0.8295032680034637, "gpu_alloc_gb": 12.88, "elapsed_s": 10968.0, "epoch": 1.3030907278165502} +{"step": 13080, "loss": 0.6243, "learning_rate": 5.7058946136407286e-05, "grad_norm": 1.0181869268417358, "token_acc": 0.840251749753952, "gpu_alloc_gb": 12.88, "elapsed_s": 10974.6, "epoch": 1.304087736789631} +{"step": 13090, "loss": 0.6461, "learning_rate": 5.6913190581643486e-05, "grad_norm": 1.9396814107894897, "token_acc": 0.837447214126587, "gpu_alloc_gb": 12.88, "elapsed_s": 10981.2, "epoch": 1.305084745762712} +{"step": 13100, "loss": 0.6238, "learning_rate": 5.676754734442114e-05, "grad_norm": 1.16514253616333, "token_acc": 0.8437064588069916, "gpu_alloc_gb": 12.88, "elapsed_s": 10987.9, "epoch": 1.3060817547357926} +{"step": 13110, "loss": 0.6423, "learning_rate": 5.662201680439918e-05, "grad_norm": 2.916217803955078, "token_acc": 0.8402673542499542, "gpu_alloc_gb": 12.88, "elapsed_s": 10994.6, "epoch": 1.3070787637088734} +{"step": 13120, "loss": 0.6505, "learning_rate": 5.647659934094276e-05, "grad_norm": 4.349452972412109, "token_acc": 0.8367405652999877, "gpu_alloc_gb": 12.88, "elapsed_s": 11001.4, "epoch": 1.308075772681954} +{"step": 13130, "loss": 0.6358, "learning_rate": 5.633129533312216e-05, "grad_norm": 2.8561794757843018, "token_acc": 0.8389736354351044, "gpu_alloc_gb": 12.88, "elapsed_s": 11008.0, "epoch": 1.309072781655035} +{"step": 13140, "loss": 0.6559, "learning_rate": 5.6186105159712054e-05, "grad_norm": 1.0750160217285156, "token_acc": 0.8359580636024475, "gpu_alloc_gb": 12.88, "elapsed_s": 11014.7, "epoch": 1.3100697906281156} +{"step": 13150, "loss": 0.6195, "learning_rate": 5.604102919919022e-05, "grad_norm": 1.0822653770446777, "token_acc": 0.8410574674606324, "gpu_alloc_gb": 12.88, "elapsed_s": 11021.6, "epoch": 1.3110667996011964} +{"step": 13160, "loss": 0.6466, "learning_rate": 5.589606782973683e-05, "grad_norm": 1.0769312381744385, "token_acc": 0.8368498861789704, "gpu_alloc_gb": 12.88, "elapsed_s": 11028.2, "epoch": 1.312063808574277} +{"step": 13170, "loss": 0.638, "learning_rate": 5.5751221429233336e-05, "grad_norm": 1.0420527458190918, "token_acc": 0.837129944562912, "gpu_alloc_gb": 12.88, "elapsed_s": 11034.8, "epoch": 1.313060817547358} +{"step": 13180, "loss": 0.6215, "learning_rate": 5.560649037526142e-05, "grad_norm": 1.095859169960022, "token_acc": 0.8444632351398468, "gpu_alloc_gb": 12.88, "elapsed_s": 11041.5, "epoch": 1.3140578265204388} +{"step": 13190, "loss": 0.6477, "learning_rate": 5.546187504510208e-05, "grad_norm": 1.9188026189804077, "token_acc": 0.8373953342437744, "gpu_alloc_gb": 12.88, "elapsed_s": 11048.1, "epoch": 1.3150548354935194} +{"step": 13200, "loss": 0.6351, "learning_rate": 5.5317375815734726e-05, "grad_norm": 3.3379247188568115, "token_acc": 0.8400298118591308, "gpu_alloc_gb": 12.88, "elapsed_s": 11054.9, "epoch": 1.3160518444666} +{"step": 13210, "loss": 0.6414, "learning_rate": 5.517299306383614e-05, "grad_norm": 1.6675978899002075, "token_acc": 0.8397334694862366, "gpu_alloc_gb": 12.88, "elapsed_s": 11061.4, "epoch": 1.317048853439681} +{"step": 13220, "loss": 0.6266, "learning_rate": 5.50287271657793e-05, "grad_norm": 10.26417350769043, "token_acc": 0.8421779096126556, "gpu_alloc_gb": 12.88, "elapsed_s": 11068.0, "epoch": 1.3180458624127618} +{"step": 13230, "loss": 0.6264, "learning_rate": 5.488457849763276e-05, "grad_norm": 1.0201114416122437, "token_acc": 0.8414616823196411, "gpu_alloc_gb": 12.88, "elapsed_s": 11074.7, "epoch": 1.3190428713858424} +{"step": 13240, "loss": 0.6315, "learning_rate": 5.474054743515943e-05, "grad_norm": 1.0709339380264282, "token_acc": 0.8390647292137146, "gpu_alloc_gb": 12.88, "elapsed_s": 11081.4, "epoch": 1.3200398803589233} +{"step": 13250, "loss": 0.6376, "learning_rate": 5.459663435381555e-05, "grad_norm": 3.945004463195801, "token_acc": 0.8378843903541565, "gpu_alloc_gb": 12.88, "elapsed_s": 11088.0, "epoch": 1.321036889332004} +{"step": 13250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 11155.0, "epoch": 1.321036889332004} +{"step": 13250, "eval_loss": 1.2514979839324951, "eval_step": true} +{"step": 13260, "loss": 0.6331, "learning_rate": 5.445283962874998e-05, "grad_norm": 1.0225523710250854, "token_acc": 0.841578483581543, "gpu_alloc_gb": 12.88, "elapsed_s": 11200.8, "epoch": 1.3220338983050848} +{"step": 13270, "loss": 0.6208, "learning_rate": 5.4309163634802876e-05, "grad_norm": 0.9198281764984131, "token_acc": 0.8427524328231811, "gpu_alloc_gb": 12.88, "elapsed_s": 11207.5, "epoch": 1.3230309072781656} +{"step": 13280, "loss": 0.6206, "learning_rate": 5.4165606746505e-05, "grad_norm": 1.1049884557724, "token_acc": 0.8415486812591553, "gpu_alloc_gb": 12.88, "elapsed_s": 11214.2, "epoch": 1.3240279162512463} +{"step": 13290, "loss": 0.6589, "learning_rate": 5.402216933807667e-05, "grad_norm": 1.190070629119873, "token_acc": 0.8363484680652619, "gpu_alloc_gb": 12.88, "elapsed_s": 11220.8, "epoch": 1.325024925224327} +{"step": 13300, "loss": 0.6402, "learning_rate": 5.3878851783426624e-05, "grad_norm": 1.1354748010635376, "token_acc": 0.8390370905399323, "gpu_alloc_gb": 12.88, "elapsed_s": 11227.6, "epoch": 1.3260219341974078} +{"step": 13310, "loss": 0.6507, "learning_rate": 5.3735654456151185e-05, "grad_norm": 1.1006214618682861, "token_acc": 0.8375165283679962, "gpu_alloc_gb": 12.88, "elapsed_s": 11234.3, "epoch": 1.3270189431704886} +{"step": 13320, "loss": 0.6377, "learning_rate": 5.3592577729533366e-05, "grad_norm": 1.0594249963760376, "token_acc": 0.840003365278244, "gpu_alloc_gb": 12.88, "elapsed_s": 11240.9, "epoch": 1.3280159521435693} +{"step": 13330, "loss": 0.6112, "learning_rate": 5.344962197654177e-05, "grad_norm": 1.0970478057861328, "token_acc": 0.8406578838825226, "gpu_alloc_gb": 12.88, "elapsed_s": 11247.6, "epoch": 1.3290129611166501} +{"step": 13340, "loss": 0.6386, "learning_rate": 5.3306787569829584e-05, "grad_norm": 1.0000884532928467, "token_acc": 0.8375344157218934, "gpu_alloc_gb": 12.88, "elapsed_s": 11254.3, "epoch": 1.3300099700897308} +{"step": 13350, "loss": 0.6693, "learning_rate": 5.316407488173376e-05, "grad_norm": 5.4470415115356445, "token_acc": 0.8324374556541443, "gpu_alloc_gb": 12.88, "elapsed_s": 11261.0, "epoch": 1.3310069790628116} +{"step": 13360, "loss": 0.6373, "learning_rate": 5.302148428427385e-05, "grad_norm": 0.9916050434112549, "token_acc": 0.8392703592777252, "gpu_alloc_gb": 12.88, "elapsed_s": 11267.6, "epoch": 1.3320039880358923} +{"step": 13370, "loss": 0.6307, "learning_rate": 5.287901614915124e-05, "grad_norm": 1.1412335634231567, "token_acc": 0.8407535672187805, "gpu_alloc_gb": 12.88, "elapsed_s": 11274.4, "epoch": 1.3330009970089731} +{"step": 13380, "loss": 0.6383, "learning_rate": 5.273667084774809e-05, "grad_norm": 0.9517565965652466, "token_acc": 0.8376922488212586, "gpu_alloc_gb": 12.88, "elapsed_s": 11281.1, "epoch": 1.3339980059820538} +{"step": 13390, "loss": 0.661, "learning_rate": 5.259444875112624e-05, "grad_norm": 1.5588035583496094, "token_acc": 0.834698748588562, "gpu_alloc_gb": 12.88, "elapsed_s": 11288.0, "epoch": 1.3349950149551346} +{"step": 13400, "loss": 0.6467, "learning_rate": 5.2452350230026504e-05, "grad_norm": 1.0160139799118042, "token_acc": 0.8351430475711823, "gpu_alloc_gb": 12.88, "elapsed_s": 11294.7, "epoch": 1.3359920239282155} +{"step": 13410, "loss": 0.659, "learning_rate": 5.231037565486753e-05, "grad_norm": 1.030126929283142, "token_acc": 0.832397997379303, "gpu_alloc_gb": 12.88, "elapsed_s": 11301.4, "epoch": 1.3369890329012961} +{"step": 13420, "loss": 0.6194, "learning_rate": 5.216852539574479e-05, "grad_norm": 1.02731454372406, "token_acc": 0.8404738247394562, "gpu_alloc_gb": 12.88, "elapsed_s": 11308.0, "epoch": 1.3379860418743768} +{"step": 13430, "loss": 0.6229, "learning_rate": 5.2026799822429715e-05, "grad_norm": 1.0886834859848022, "token_acc": 0.84003387093544, "gpu_alloc_gb": 12.88, "elapsed_s": 11314.7, "epoch": 1.3389830508474576} +{"step": 13440, "loss": 0.6293, "learning_rate": 5.188519930436877e-05, "grad_norm": 1.0641849040985107, "token_acc": 0.8442583322525025, "gpu_alloc_gb": 12.88, "elapsed_s": 11321.4, "epoch": 1.3399800598205385} +{"step": 13450, "loss": 0.6329, "learning_rate": 5.1743724210682406e-05, "grad_norm": 0.9644116163253784, "token_acc": 0.8363414585590363, "gpu_alloc_gb": 12.88, "elapsed_s": 11328.0, "epoch": 1.340977068793619} +{"step": 13460, "loss": 0.6324, "learning_rate": 5.160237491016413e-05, "grad_norm": 1.1476643085479736, "token_acc": 0.8382406115531922, "gpu_alloc_gb": 12.88, "elapsed_s": 11334.7, "epoch": 1.3419740777667} +{"step": 13470, "loss": 0.6457, "learning_rate": 5.1461151771279505e-05, "grad_norm": 1.0301945209503174, "token_acc": 0.8386945784091949, "gpu_alloc_gb": 12.88, "elapsed_s": 11341.5, "epoch": 1.3429710867397806} +{"step": 13480, "loss": 0.6314, "learning_rate": 5.1320055162165115e-05, "grad_norm": 7.015883922576904, "token_acc": 0.8403583645820618, "gpu_alloc_gb": 12.88, "elapsed_s": 11348.1, "epoch": 1.3439680957128615} +{"step": 13490, "loss": 0.6326, "learning_rate": 5.117908545062802e-05, "grad_norm": 4.053938388824463, "token_acc": 0.8423645973205567, "gpu_alloc_gb": 12.88, "elapsed_s": 11354.7, "epoch": 1.344965104685942} +{"step": 13500, "loss": 0.613, "learning_rate": 5.103824300414417e-05, "grad_norm": 1.1339727640151978, "token_acc": 0.8434464156627655, "gpu_alloc_gb": 12.88, "elapsed_s": 11361.2, "epoch": 1.345962113659023} +{"step": 13500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 11428.0, "epoch": 1.345962113659023} +{"step": 13500, "eval_loss": 1.2708227634429932, "eval_step": true} +{"step": 13510, "loss": 0.654, "learning_rate": 5.089752818985789e-05, "grad_norm": 1.0317553281784058, "token_acc": 0.8382931709289551, "gpu_alloc_gb": 12.88, "elapsed_s": 11472.5, "epoch": 1.3469591226321036} +{"step": 13520, "loss": 0.6382, "learning_rate": 5.075694137458079e-05, "grad_norm": 1.1562089920043945, "token_acc": 0.8386062860488892, "gpu_alloc_gb": 12.88, "elapsed_s": 11479.4, "epoch": 1.3479561316051845} +{"step": 13530, "loss": 0.6346, "learning_rate": 5.061648292479089e-05, "grad_norm": 1.230913758277893, "token_acc": 0.8389106869697571, "gpu_alloc_gb": 12.88, "elapsed_s": 11486.2, "epoch": 1.3489531405782653} +{"step": 13540, "loss": 0.6419, "learning_rate": 5.0476153206631405e-05, "grad_norm": 0.9532985091209412, "token_acc": 0.8396778523921966, "gpu_alloc_gb": 12.88, "elapsed_s": 11492.8, "epoch": 1.349950149551346} +{"step": 13550, "loss": 0.608, "learning_rate": 5.0335952585910195e-05, "grad_norm": 4.18088960647583, "token_acc": 0.8452830851078034, "gpu_alloc_gb": 12.88, "elapsed_s": 11499.4, "epoch": 1.3509471585244266} +{"step": 13560, "loss": 0.6371, "learning_rate": 5.019588142809839e-05, "grad_norm": 1.092191457748413, "token_acc": 0.8403285682201386, "gpu_alloc_gb": 12.88, "elapsed_s": 11506.3, "epoch": 1.3519441674975075} +{"step": 13570, "loss": 0.6326, "learning_rate": 5.005594009832979e-05, "grad_norm": 1.2422441244125366, "token_acc": 0.8432190895080567, "gpu_alloc_gb": 12.88, "elapsed_s": 11513.1, "epoch": 1.3529411764705883} +{"step": 13580, "loss": 0.6195, "learning_rate": 4.9916128961399734e-05, "grad_norm": 1.093868613243103, "token_acc": 0.8408072292804718, "gpu_alloc_gb": 12.88, "elapsed_s": 11519.7, "epoch": 1.353938185443669} +{"step": 13590, "loss": 0.6424, "learning_rate": 4.977644838176411e-05, "grad_norm": 3.7048487663269043, "token_acc": 0.8369819402694703, "gpu_alloc_gb": 12.88, "elapsed_s": 11526.4, "epoch": 1.3549351944167498} +{"step": 13600, "loss": 0.6183, "learning_rate": 4.963689872353845e-05, "grad_norm": 1.1080522537231445, "token_acc": 0.8415059685707093, "gpu_alloc_gb": 12.88, "elapsed_s": 11532.9, "epoch": 1.3559322033898304} +{"step": 13610, "loss": 0.6276, "learning_rate": 4.94974803504972e-05, "grad_norm": 1.124851107597351, "token_acc": 0.8405884444713593, "gpu_alloc_gb": 12.88, "elapsed_s": 11539.8, "epoch": 1.3569292123629113} +{"step": 13620, "loss": 0.647, "learning_rate": 4.93581936260724e-05, "grad_norm": 12.780916213989258, "token_acc": 0.8330694437026978, "gpu_alloc_gb": 12.88, "elapsed_s": 11546.4, "epoch": 1.357926221335992} +{"step": 13630, "loss": 0.6378, "learning_rate": 4.921903891335289e-05, "grad_norm": 1.0586395263671875, "token_acc": 0.8368966221809387, "gpu_alloc_gb": 12.88, "elapsed_s": 11553.1, "epoch": 1.3589232303090728} +{"step": 13640, "loss": 0.6169, "learning_rate": 4.908001657508349e-05, "grad_norm": 1.1257331371307373, "token_acc": 0.8440433263778686, "gpu_alloc_gb": 12.88, "elapsed_s": 11559.7, "epoch": 1.3599202392821534} +{"step": 13650, "loss": 0.638, "learning_rate": 4.894112697366396e-05, "grad_norm": 1.160288691520691, "token_acc": 0.8394424796104432, "gpu_alloc_gb": 12.88, "elapsed_s": 11566.4, "epoch": 1.3609172482552343} +{"step": 13660, "loss": 0.6209, "learning_rate": 4.880237047114792e-05, "grad_norm": 1.1057562828063965, "token_acc": 0.8397764205932617, "gpu_alloc_gb": 12.88, "elapsed_s": 11573.0, "epoch": 1.3619142572283152} +{"step": 13670, "loss": 0.6307, "learning_rate": 4.866374742924217e-05, "grad_norm": 9.267744064331055, "token_acc": 0.8386470139026642, "gpu_alloc_gb": 12.88, "elapsed_s": 11579.6, "epoch": 1.3629112662013958} +{"step": 13680, "loss": 0.6379, "learning_rate": 4.8525258209305466e-05, "grad_norm": 2.2187106609344482, "token_acc": 0.836913776397705, "gpu_alloc_gb": 12.88, "elapsed_s": 11586.3, "epoch": 1.3639082751744764} +{"step": 13690, "loss": 0.6506, "learning_rate": 4.838690317234785e-05, "grad_norm": 9.432096481323242, "token_acc": 0.8334615051746368, "gpu_alloc_gb": 12.88, "elapsed_s": 11593.1, "epoch": 1.3649052841475573} +{"step": 13700, "loss": 0.6336, "learning_rate": 4.8248682679029575e-05, "grad_norm": 2.9113686084747314, "token_acc": 0.8412678122520447, "gpu_alloc_gb": 12.88, "elapsed_s": 11600.1, "epoch": 1.3659022931206382} +{"step": 13710, "loss": 0.6173, "learning_rate": 4.811059708966007e-05, "grad_norm": 1.1937240362167358, "token_acc": 0.8424443542957306, "gpu_alloc_gb": 12.88, "elapsed_s": 11606.7, "epoch": 1.3668993020937188} +{"step": 13720, "loss": 0.6222, "learning_rate": 4.7972646764197084e-05, "grad_norm": 19.263166427612305, "token_acc": 0.8381645262241364, "gpu_alloc_gb": 12.88, "elapsed_s": 11613.4, "epoch": 1.3678963110667997} +{"step": 13730, "loss": 0.6395, "learning_rate": 4.7834832062245984e-05, "grad_norm": 1.0632134675979614, "token_acc": 0.8369073808193207, "gpu_alloc_gb": 12.88, "elapsed_s": 11620.1, "epoch": 1.3688933200398803} +{"step": 13740, "loss": 0.6119, "learning_rate": 4.769715334305835e-05, "grad_norm": 1.073859691619873, "token_acc": 0.8449172377586365, "gpu_alloc_gb": 12.88, "elapsed_s": 11626.6, "epoch": 1.3698903290129611} +{"step": 13750, "loss": 0.6134, "learning_rate": 4.7559610965531385e-05, "grad_norm": 6.66351318359375, "token_acc": 0.8405530333518982, "gpu_alloc_gb": 12.88, "elapsed_s": 11633.3, "epoch": 1.370887337986042} +{"step": 13750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 11700.1, "epoch": 1.370887337986042} +{"step": 13750, "eval_loss": 1.2540552616119385, "eval_step": true} +{"step": 13760, "loss": 0.6209, "learning_rate": 4.742220528820689e-05, "grad_norm": 0.9473468065261841, "token_acc": 0.8411386549472809, "gpu_alloc_gb": 12.88, "elapsed_s": 11743.1, "epoch": 1.3718843469591226} +{"step": 13770, "loss": 0.6317, "learning_rate": 4.728493666927034e-05, "grad_norm": 1.0698416233062744, "token_acc": 0.8430799961090087, "gpu_alloc_gb": 12.88, "elapsed_s": 11749.6, "epoch": 1.3728813559322033} +{"step": 13780, "loss": 0.635, "learning_rate": 4.714780546654982e-05, "grad_norm": 1.2026551961898804, "token_acc": 0.8375989139080048, "gpu_alloc_gb": 12.88, "elapsed_s": 11756.3, "epoch": 1.3738783649052841} +{"step": 13790, "loss": 0.6552, "learning_rate": 4.701081203751538e-05, "grad_norm": 1.0016039609909058, "token_acc": 0.8325484156608581, "gpu_alloc_gb": 12.88, "elapsed_s": 11762.9, "epoch": 1.374875373878365} +{"step": 13800, "loss": 0.6134, "learning_rate": 4.6873956739277724e-05, "grad_norm": 1.1107187271118164, "token_acc": 0.8451265633106232, "gpu_alloc_gb": 12.88, "elapsed_s": 11769.7, "epoch": 1.3758723828514456} +{"step": 13810, "loss": 0.63, "learning_rate": 4.673723992858763e-05, "grad_norm": 1.2464325428009033, "token_acc": 0.8399523675441742, "gpu_alloc_gb": 12.88, "elapsed_s": 11776.3, "epoch": 1.3768693918245265} +{"step": 13820, "loss": 0.6389, "learning_rate": 4.660066196183485e-05, "grad_norm": 1.0704519748687744, "token_acc": 0.8381788790225982, "gpu_alloc_gb": 12.88, "elapsed_s": 11782.8, "epoch": 1.3778664007976071} +{"step": 13830, "loss": 0.639, "learning_rate": 4.646422319504713e-05, "grad_norm": 1.0761836767196655, "token_acc": 0.8392675817012787, "gpu_alloc_gb": 12.88, "elapsed_s": 11789.4, "epoch": 1.378863409770688} +{"step": 13840, "loss": 0.6084, "learning_rate": 4.632792398388933e-05, "grad_norm": 1.089119791984558, "token_acc": 0.8436057507991791, "gpu_alloc_gb": 12.88, "elapsed_s": 11796.0, "epoch": 1.3798604187437686} +{"step": 13850, "loss": 0.627, "learning_rate": 4.6191764683662744e-05, "grad_norm": 3.650752544403076, "token_acc": 0.8418529331684113, "gpu_alloc_gb": 12.88, "elapsed_s": 11802.3, "epoch": 1.3808574277168495} +{"step": 13860, "loss": 0.6173, "learning_rate": 4.6055745649303694e-05, "grad_norm": 1.2578511238098145, "token_acc": 0.8439080834388732, "gpu_alloc_gb": 12.88, "elapsed_s": 11808.9, "epoch": 1.3818544366899301} +{"step": 13870, "loss": 0.6332, "learning_rate": 4.591986723538294e-05, "grad_norm": 4.208638668060303, "token_acc": 0.8423653960227966, "gpu_alloc_gb": 12.88, "elapsed_s": 11815.5, "epoch": 1.382851445663011} +{"step": 13880, "loss": 0.632, "learning_rate": 4.578412979610471e-05, "grad_norm": 1.2949066162109375, "token_acc": 0.8413669645786286, "gpu_alloc_gb": 12.88, "elapsed_s": 11822.3, "epoch": 1.3838484546360919} +{"step": 13890, "loss": 0.6313, "learning_rate": 4.564853368530576e-05, "grad_norm": 1.1007651090621948, "token_acc": 0.8411057472229004, "gpu_alloc_gb": 12.88, "elapsed_s": 11829.1, "epoch": 1.3848454636091725} +{"step": 13900, "loss": 0.6341, "learning_rate": 4.5513079256454416e-05, "grad_norm": 2.623497247695923, "token_acc": 0.8389690041542053, "gpu_alloc_gb": 12.88, "elapsed_s": 11835.8, "epoch": 1.3858424725822531} +{"step": 13910, "loss": 0.6282, "learning_rate": 4.537776686264962e-05, "grad_norm": 1.8984614610671997, "token_acc": 0.8379459857940674, "gpu_alloc_gb": 12.88, "elapsed_s": 11842.6, "epoch": 1.386839481555334} +{"step": 13920, "loss": 0.6368, "learning_rate": 4.524259685662007e-05, "grad_norm": 1.0292595624923706, "token_acc": 0.8384145140647888, "gpu_alloc_gb": 12.88, "elapsed_s": 11849.3, "epoch": 1.3878364905284148} +{"step": 13930, "loss": 0.6423, "learning_rate": 4.510756959072334e-05, "grad_norm": 1.1395374536514282, "token_acc": 0.8386681258678437, "gpu_alloc_gb": 12.88, "elapsed_s": 11856.0, "epoch": 1.3888334995014955} +{"step": 13940, "loss": 0.6444, "learning_rate": 4.497268541694496e-05, "grad_norm": 1.2843961715698242, "token_acc": 0.8382157623767853, "gpu_alloc_gb": 12.88, "elapsed_s": 11862.5, "epoch": 1.3898305084745763} +{"step": 13950, "loss": 0.6355, "learning_rate": 4.483794468689728e-05, "grad_norm": 1.2242074012756348, "token_acc": 0.838784909248352, "gpu_alloc_gb": 12.88, "elapsed_s": 11869.6, "epoch": 1.390827517447657} +{"step": 13960, "loss": 0.6195, "learning_rate": 4.470334775181889e-05, "grad_norm": 20.866722106933594, "token_acc": 0.8418498337268829, "gpu_alloc_gb": 12.88, "elapsed_s": 11876.2, "epoch": 1.3918245264207378} +{"step": 13970, "loss": 0.6197, "learning_rate": 4.4568894962573496e-05, "grad_norm": 6.060154438018799, "token_acc": 0.842568963766098, "gpu_alloc_gb": 12.88, "elapsed_s": 11882.9, "epoch": 1.3928215353938185} +{"step": 13980, "loss": 0.6386, "learning_rate": 4.443458666964896e-05, "grad_norm": 1.00106942653656, "token_acc": 0.83569455742836, "gpu_alloc_gb": 12.88, "elapsed_s": 11889.6, "epoch": 1.3938185443668993} +{"step": 13990, "loss": 0.6454, "learning_rate": 4.430042322315662e-05, "grad_norm": 1.1089105606079102, "token_acc": 0.8372608602046967, "gpu_alloc_gb": 12.88, "elapsed_s": 11896.5, "epoch": 1.39481555333998} +{"step": 14000, "loss": 0.6557, "learning_rate": 4.416640497283009e-05, "grad_norm": 1.1615341901779175, "token_acc": 0.8363606572151184, "gpu_alloc_gb": 12.88, "elapsed_s": 11903.2, "epoch": 1.3958125623130608} +{"step": 14000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 11970.2, "epoch": 1.3958125623130608} +{"step": 14000, "eval_loss": 1.2731753587722778, "eval_step": true} +{"step": 14010, "loss": 0.6346, "learning_rate": 4.4032532268024586e-05, "grad_norm": 2.8809938430786133, "token_acc": 0.8377698600292206, "gpu_alloc_gb": 12.88, "elapsed_s": 12013.2, "epoch": 1.3968095712861417} +{"step": 14020, "loss": 0.6167, "learning_rate": 4.389880545771593e-05, "grad_norm": 1.1367199420928955, "token_acc": 0.8439877212047577, "gpu_alloc_gb": 12.88, "elapsed_s": 12019.9, "epoch": 1.3978065802592223} +{"step": 14030, "loss": 0.634, "learning_rate": 4.376522489049956e-05, "grad_norm": 1.9641484022140503, "token_acc": 0.8391391575336457, "gpu_alloc_gb": 12.88, "elapsed_s": 12026.7, "epoch": 1.398803589232303} +{"step": 14040, "loss": 0.6278, "learning_rate": 4.363179091458968e-05, "grad_norm": 1.2022109031677246, "token_acc": 0.839030510187149, "gpu_alloc_gb": 12.88, "elapsed_s": 12033.3, "epoch": 1.3998005982053838} +{"step": 14050, "loss": 0.649, "learning_rate": 4.349850387781844e-05, "grad_norm": 1.1315704584121704, "token_acc": 0.8376470685005188, "gpu_alloc_gb": 12.88, "elapsed_s": 12040.2, "epoch": 1.4007976071784647} +{"step": 14060, "loss": 0.6284, "learning_rate": 4.3365364127634975e-05, "grad_norm": 2.91373348236084, "token_acc": 0.838787579536438, "gpu_alloc_gb": 12.88, "elapsed_s": 12047.0, "epoch": 1.4017946161515453} +{"step": 14070, "loss": 0.635, "learning_rate": 4.323237201110434e-05, "grad_norm": 1.0659562349319458, "token_acc": 0.837964391708374, "gpu_alloc_gb": 12.88, "elapsed_s": 12053.7, "epoch": 1.4027916251246262} +{"step": 14080, "loss": 0.6373, "learning_rate": 4.309952787490689e-05, "grad_norm": 1.2098757028579712, "token_acc": 0.8382800996303559, "gpu_alloc_gb": 12.88, "elapsed_s": 12060.4, "epoch": 1.4037886340977068} +{"step": 14090, "loss": 0.6232, "learning_rate": 4.296683206533708e-05, "grad_norm": 1.0831248760223389, "token_acc": 0.8429498732089996, "gpu_alloc_gb": 12.88, "elapsed_s": 12067.1, "epoch": 1.4047856430707877} +{"step": 14100, "loss": 0.623, "learning_rate": 4.283428492830286e-05, "grad_norm": 2.3443782329559326, "token_acc": 0.8423195302486419, "gpu_alloc_gb": 12.88, "elapsed_s": 12073.6, "epoch": 1.4057826520438683} +{"step": 14110, "loss": 0.5999, "learning_rate": 4.270188680932458e-05, "grad_norm": 3.7187392711639404, "token_acc": 0.849242889881134, "gpu_alloc_gb": 12.88, "elapsed_s": 12080.2, "epoch": 1.4067796610169492} +{"step": 14120, "loss": 0.6168, "learning_rate": 4.256963805353403e-05, "grad_norm": 1.0561740398406982, "token_acc": 0.8448565363883972, "gpu_alloc_gb": 12.88, "elapsed_s": 12086.9, "epoch": 1.4077766699900298} +{"step": 14130, "loss": 0.6144, "learning_rate": 4.243753900567379e-05, "grad_norm": 1.1539350748062134, "token_acc": 0.8452406287193298, "gpu_alloc_gb": 12.88, "elapsed_s": 12093.5, "epoch": 1.4087736789631107} +{"step": 14140, "loss": 0.6374, "learning_rate": 4.230559001009614e-05, "grad_norm": 1.7912623882293701, "token_acc": 0.8400309145450592, "gpu_alloc_gb": 12.88, "elapsed_s": 12100.1, "epoch": 1.4097706879361915} +{"step": 14150, "loss": 0.6353, "learning_rate": 4.217379141076215e-05, "grad_norm": 1.0155192613601685, "token_acc": 0.8377109825611114, "gpu_alloc_gb": 12.88, "elapsed_s": 12106.9, "epoch": 1.4107676969092722} +{"step": 14160, "loss": 0.6057, "learning_rate": 4.2042143551240856e-05, "grad_norm": 2.2212517261505127, "token_acc": 0.8456434071063995, "gpu_alloc_gb": 12.88, "elapsed_s": 12113.4, "epoch": 1.4117647058823528} +{"step": 14170, "loss": 0.6365, "learning_rate": 4.191064677470839e-05, "grad_norm": 1.1654268503189087, "token_acc": 0.8381600141525268, "gpu_alloc_gb": 12.88, "elapsed_s": 12120.3, "epoch": 1.4127617148554337} +{"step": 14180, "loss": 0.6163, "learning_rate": 4.17793014239471e-05, "grad_norm": 1.1791388988494873, "token_acc": 0.8423537313938141, "gpu_alloc_gb": 12.88, "elapsed_s": 12126.9, "epoch": 1.4137587238285145} +{"step": 14190, "loss": 0.6107, "learning_rate": 4.164810784134443e-05, "grad_norm": 5.252470970153809, "token_acc": 0.8457193017005921, "gpu_alloc_gb": 12.88, "elapsed_s": 12133.4, "epoch": 1.4147557328015952} +{"step": 14200, "loss": 0.6095, "learning_rate": 4.1517066368892386e-05, "grad_norm": 2.2733089923858643, "token_acc": 0.8483878314495087, "gpu_alloc_gb": 12.88, "elapsed_s": 12140.0, "epoch": 1.415752741774676} +{"step": 14210, "loss": 0.6315, "learning_rate": 4.1386177348186294e-05, "grad_norm": 1.1303558349609375, "token_acc": 0.8401788353919983, "gpu_alloc_gb": 12.88, "elapsed_s": 12146.9, "epoch": 1.4167497507477567} +{"step": 14220, "loss": 0.623, "learning_rate": 4.1255441120424175e-05, "grad_norm": 5.803640365600586, "token_acc": 0.843407267332077, "gpu_alloc_gb": 12.88, "elapsed_s": 12153.5, "epoch": 1.4177467597208375} +{"step": 14230, "loss": 0.6126, "learning_rate": 4.1124858026405786e-05, "grad_norm": 1.0410420894622803, "token_acc": 0.840424656867981, "gpu_alloc_gb": 12.88, "elapsed_s": 12160.5, "epoch": 1.4187437686939184} +{"step": 14240, "loss": 0.6282, "learning_rate": 4.099442840653156e-05, "grad_norm": 7.470557689666748, "token_acc": 0.8412367522716522, "gpu_alloc_gb": 12.88, "elapsed_s": 12167.5, "epoch": 1.419740777666999} +{"step": 14250, "loss": 0.6148, "learning_rate": 4.086415260080196e-05, "grad_norm": 1.5731395483016968, "token_acc": 0.8420193076133728, "gpu_alloc_gb": 12.88, "elapsed_s": 12173.9, "epoch": 1.4207377866400797} +{"step": 14250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 12241.2, "epoch": 1.4207377866400797} +{"step": 14250, "eval_loss": 1.244357705116272, "eval_step": true} +{"step": 14260, "loss": 0.6186, "learning_rate": 4.073403094881653e-05, "grad_norm": 3.195073127746582, "token_acc": 0.8424936234951019, "gpu_alloc_gb": 12.88, "elapsed_s": 12287.2, "epoch": 1.4217347956131605} +{"step": 14270, "loss": 0.6164, "learning_rate": 4.060406378977285e-05, "grad_norm": 3.6341397762298584, "token_acc": 0.8413368761539459, "gpu_alloc_gb": 12.88, "elapsed_s": 12294.2, "epoch": 1.4227318045862414} +{"step": 14280, "loss": 0.6185, "learning_rate": 4.047425146246582e-05, "grad_norm": 5.393198490142822, "token_acc": 0.8411301136016845, "gpu_alloc_gb": 12.88, "elapsed_s": 12301.2, "epoch": 1.423728813559322} +{"step": 14290, "loss": 0.5972, "learning_rate": 4.0344594305286744e-05, "grad_norm": 1.0111933946609497, "token_acc": 0.850243228673935, "gpu_alloc_gb": 12.88, "elapsed_s": 12307.9, "epoch": 1.4247258225324029} +{"step": 14300, "loss": 0.6253, "learning_rate": 4.0215092656222464e-05, "grad_norm": 0.955678403377533, "token_acc": 0.8433275163173676, "gpu_alloc_gb": 12.88, "elapsed_s": 12314.8, "epoch": 1.4257228315054835} +{"step": 14310, "loss": 0.6134, "learning_rate": 4.008574685285442e-05, "grad_norm": 1.100813865661621, "token_acc": 0.8432659029960632, "gpu_alloc_gb": 12.88, "elapsed_s": 12321.6, "epoch": 1.4267198404785644} +{"step": 14320, "loss": 0.5956, "learning_rate": 3.9956557232357785e-05, "grad_norm": 2.7285914421081543, "token_acc": 0.8479140102863312, "gpu_alloc_gb": 12.88, "elapsed_s": 12328.4, "epoch": 1.427716849451645} +{"step": 14330, "loss": 0.6214, "learning_rate": 3.982752413150049e-05, "grad_norm": 3.317342758178711, "token_acc": 0.84497771859169, "gpu_alloc_gb": 12.88, "elapsed_s": 12335.1, "epoch": 1.4287138584247259} +{"step": 14340, "loss": 0.6469, "learning_rate": 3.969864788664275e-05, "grad_norm": 1.9417974948883057, "token_acc": 0.837249082326889, "gpu_alloc_gb": 12.88, "elapsed_s": 12341.9, "epoch": 1.4297108673978065} +{"step": 14350, "loss": 0.6067, "learning_rate": 3.9569928833735626e-05, "grad_norm": 1.123228907585144, "token_acc": 0.8450809597969056, "gpu_alloc_gb": 12.88, "elapsed_s": 12348.7, "epoch": 1.4307078763708874} +{"step": 14360, "loss": 0.6165, "learning_rate": 3.9441367308320455e-05, "grad_norm": 2.5590920448303223, "token_acc": 0.8415712237358093, "gpu_alloc_gb": 12.88, "elapsed_s": 12355.3, "epoch": 1.4317048853439682} +{"step": 14370, "loss": 0.6459, "learning_rate": 3.9312963645528024e-05, "grad_norm": 2.7685015201568604, "token_acc": 0.8348825752735138, "gpu_alloc_gb": 12.88, "elapsed_s": 12362.3, "epoch": 1.4327018943170489} +{"step": 14380, "loss": 0.6128, "learning_rate": 3.918471818007759e-05, "grad_norm": 2.234807252883911, "token_acc": 0.8443415462970734, "gpu_alloc_gb": 12.88, "elapsed_s": 12369.2, "epoch": 1.4336989032901295} +{"step": 14390, "loss": 0.648, "learning_rate": 3.9056631246275954e-05, "grad_norm": 1.5096290111541748, "token_acc": 0.8370479941368103, "gpu_alloc_gb": 12.88, "elapsed_s": 12376.1, "epoch": 1.4346959122632104} +{"step": 14400, "loss": 0.6311, "learning_rate": 3.892870317801675e-05, "grad_norm": 1.446353793144226, "token_acc": 0.8417054116725922, "gpu_alloc_gb": 12.88, "elapsed_s": 12382.8, "epoch": 1.4356929212362912} +{"step": 14410, "loss": 0.6098, "learning_rate": 3.880093430877939e-05, "grad_norm": 1.9362963438034058, "token_acc": 0.843566620349884, "gpu_alloc_gb": 12.88, "elapsed_s": 12389.6, "epoch": 1.4366899302093719} +{"step": 14420, "loss": 0.6226, "learning_rate": 3.8673324971628357e-05, "grad_norm": 1.0763972997665405, "token_acc": 0.8448307037353515, "gpu_alloc_gb": 12.88, "elapsed_s": 12396.7, "epoch": 1.4376869391824527} +{"step": 14430, "loss": 0.6363, "learning_rate": 3.8545875499212316e-05, "grad_norm": 1.738338589668274, "token_acc": 0.838631933927536, "gpu_alloc_gb": 12.88, "elapsed_s": 12403.3, "epoch": 1.4386839481555334} +{"step": 14440, "loss": 0.653, "learning_rate": 3.8418586223763086e-05, "grad_norm": 1.8163708448410034, "token_acc": 0.8348918974399566, "gpu_alloc_gb": 12.88, "elapsed_s": 12410.1, "epoch": 1.4396809571286142} +{"step": 14450, "loss": 0.616, "learning_rate": 3.8291457477094885e-05, "grad_norm": 1.1274361610412598, "token_acc": 0.8425909161567688, "gpu_alloc_gb": 12.88, "elapsed_s": 12417.2, "epoch": 1.4406779661016949} +{"step": 14460, "loss": 0.6148, "learning_rate": 3.816448959060366e-05, "grad_norm": 0.9652171730995178, "token_acc": 0.844104939699173, "gpu_alloc_gb": 12.88, "elapsed_s": 12423.9, "epoch": 1.4416749750747757} +{"step": 14470, "loss": 0.6477, "learning_rate": 3.803768289526582e-05, "grad_norm": 1.249047040939331, "token_acc": 0.8407325685024262, "gpu_alloc_gb": 12.88, "elapsed_s": 12430.7, "epoch": 1.4426719840478563} +{"step": 14480, "loss": 0.604, "learning_rate": 3.7911037721637646e-05, "grad_norm": 1.2986758947372437, "token_acc": 0.8464362859725952, "gpu_alloc_gb": 12.88, "elapsed_s": 12437.7, "epoch": 1.4436689930209372} +{"step": 14490, "loss": 0.622, "learning_rate": 3.7784554399854423e-05, "grad_norm": 1.4842965602874756, "token_acc": 0.8405717551708222, "gpu_alloc_gb": 12.88, "elapsed_s": 12444.5, "epoch": 1.444666001994018} +{"step": 14500, "loss": 0.5979, "learning_rate": 3.7658233259629505e-05, "grad_norm": 2.667205333709717, "token_acc": 0.8490219712257385, "gpu_alloc_gb": 12.88, "elapsed_s": 12451.1, "epoch": 1.4456630109670987} +{"step": 14500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 12518.4, "epoch": 1.4456630109670987} +{"step": 14500, "eval_loss": 1.246598482131958, "eval_step": true} +{"step": 14510, "loss": 0.657, "learning_rate": 3.753207463025341e-05, "grad_norm": 1.1861200332641602, "token_acc": 0.8345595002174377, "gpu_alloc_gb": 12.88, "elapsed_s": 12578.5, "epoch": 1.4466600199401793} +{"step": 14520, "loss": 0.6432, "learning_rate": 3.7406078840593126e-05, "grad_norm": 1.1923801898956299, "token_acc": 0.8404650926589966, "gpu_alloc_gb": 12.88, "elapsed_s": 12585.3, "epoch": 1.4476570289132602} +{"step": 14530, "loss": 0.6531, "learning_rate": 3.728024621909105e-05, "grad_norm": 0.9840359687805176, "token_acc": 0.8365981936454773, "gpu_alloc_gb": 12.88, "elapsed_s": 12592.2, "epoch": 1.448654037886341} +{"step": 14540, "loss": 0.616, "learning_rate": 3.7154577093764334e-05, "grad_norm": 1.3821890354156494, "token_acc": 0.8430953741073608, "gpu_alloc_gb": 12.88, "elapsed_s": 12599.0, "epoch": 1.4496510468594217} +{"step": 14550, "loss": 0.6167, "learning_rate": 3.7029071792203896e-05, "grad_norm": 2.0020792484283447, "token_acc": 0.8432746648788452, "gpu_alloc_gb": 12.88, "elapsed_s": 12605.7, "epoch": 1.4506480558325026} +{"step": 14560, "loss": 0.6212, "learning_rate": 3.6903730641573585e-05, "grad_norm": 1.2528353929519653, "token_acc": 0.8388678014278412, "gpu_alloc_gb": 12.88, "elapsed_s": 12612.7, "epoch": 1.4516450648055832} +{"step": 14570, "loss": 0.6452, "learning_rate": 3.6778553968609286e-05, "grad_norm": 1.9310247898101807, "token_acc": 0.8388589382171631, "gpu_alloc_gb": 12.88, "elapsed_s": 12619.6, "epoch": 1.452642073778664} +{"step": 14580, "loss": 0.6336, "learning_rate": 3.6653542099618324e-05, "grad_norm": 1.275679588317871, "token_acc": 0.8432587265968323, "gpu_alloc_gb": 12.88, "elapsed_s": 12626.5, "epoch": 1.4536390827517447} +{"step": 14590, "loss": 0.6342, "learning_rate": 3.6528695360478236e-05, "grad_norm": 1.5000081062316895, "token_acc": 0.8409967720508575, "gpu_alloc_gb": 12.88, "elapsed_s": 12633.2, "epoch": 1.4546360917248256} +{"step": 14600, "loss": 0.6204, "learning_rate": 3.640401407663613e-05, "grad_norm": 1.0077890157699585, "token_acc": 0.8425395727157593, "gpu_alloc_gb": 12.88, "elapsed_s": 12640.0, "epoch": 1.4556331006979062} +{"step": 14610, "loss": 0.6256, "learning_rate": 3.6279498573107864e-05, "grad_norm": 3.351646661758423, "token_acc": 0.8390880107879639, "gpu_alloc_gb": 12.88, "elapsed_s": 12647.1, "epoch": 1.456630109670987} +{"step": 14620, "loss": 0.6231, "learning_rate": 3.6155149174477155e-05, "grad_norm": 2.295740842819214, "token_acc": 0.8417331457138062, "gpu_alloc_gb": 12.88, "elapsed_s": 12654.0, "epoch": 1.457627118644068} +{"step": 14630, "loss": 0.6184, "learning_rate": 3.603096620489462e-05, "grad_norm": 1.2788954973220825, "token_acc": 0.8414539515972137, "gpu_alloc_gb": 12.88, "elapsed_s": 12660.9, "epoch": 1.4586241276171485} +{"step": 14640, "loss": 0.6124, "learning_rate": 3.5906949988077175e-05, "grad_norm": 3.8023910522460938, "token_acc": 0.8427553355693818, "gpu_alloc_gb": 12.88, "elapsed_s": 12667.7, "epoch": 1.4596211365902292} +{"step": 14650, "loss": 0.646, "learning_rate": 3.5783100847306904e-05, "grad_norm": 1.1627494096755981, "token_acc": 0.8375196576118469, "gpu_alloc_gb": 12.88, "elapsed_s": 12674.6, "epoch": 1.46061814556331} +{"step": 14660, "loss": 0.5923, "learning_rate": 3.5659419105430447e-05, "grad_norm": 3.4342596530914307, "token_acc": 0.8465918660163879, "gpu_alloc_gb": 12.88, "elapsed_s": 12681.3, "epoch": 1.461615154536391} +{"step": 14670, "loss": 0.6173, "learning_rate": 3.5535905084858126e-05, "grad_norm": 1.173775553703308, "token_acc": 0.8432450592517853, "gpu_alloc_gb": 12.88, "elapsed_s": 12688.1, "epoch": 1.4626121635094715} +{"step": 14680, "loss": 0.6125, "learning_rate": 3.541255910756291e-05, "grad_norm": 2.3769989013671875, "token_acc": 0.8445761442184448, "gpu_alloc_gb": 12.88, "elapsed_s": 12694.9, "epoch": 1.4636091724825524} +{"step": 14690, "loss": 0.6291, "learning_rate": 3.528938149507979e-05, "grad_norm": 5.756231307983398, "token_acc": 0.8416434466838837, "gpu_alloc_gb": 12.88, "elapsed_s": 12701.7, "epoch": 1.464606181455633} +{"step": 14700, "loss": 0.6058, "learning_rate": 3.516637256850489e-05, "grad_norm": 1.0440126657485962, "token_acc": 0.843771368265152, "gpu_alloc_gb": 12.88, "elapsed_s": 12708.5, "epoch": 1.465603190428714} +{"step": 14710, "loss": 0.6313, "learning_rate": 3.504353264849462e-05, "grad_norm": 1.26490318775177, "token_acc": 0.840822947025299, "gpu_alloc_gb": 12.88, "elapsed_s": 12715.4, "epoch": 1.4666001994017945} +{"step": 14720, "loss": 0.6409, "learning_rate": 3.4920862055264735e-05, "grad_norm": 3.902451276779175, "token_acc": 0.8377624213695526, "gpu_alloc_gb": 12.88, "elapsed_s": 12722.0, "epoch": 1.4675972083748754} +{"step": 14730, "loss": 0.6427, "learning_rate": 3.479836110858968e-05, "grad_norm": 1.1399918794631958, "token_acc": 0.8366700410842896, "gpu_alloc_gb": 12.88, "elapsed_s": 12729.1, "epoch": 1.468594217347956} +{"step": 14740, "loss": 0.6207, "learning_rate": 3.467603012780165e-05, "grad_norm": 1.0960311889648438, "token_acc": 0.8399381160736084, "gpu_alloc_gb": 12.88, "elapsed_s": 12736.0, "epoch": 1.469591226321037} +{"step": 14750, "loss": 0.6328, "learning_rate": 3.45538694317898e-05, "grad_norm": 2.38223934173584, "token_acc": 0.8405298948287964, "gpu_alloc_gb": 12.88, "elapsed_s": 12742.9, "epoch": 1.4705882352941178} +{"step": 14750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 12809.9, "epoch": 1.4705882352941178} +{"step": 14750, "eval_loss": 1.2140876054763794, "eval_step": true} +{"step": 14760, "loss": 0.6308, "learning_rate": 3.443187933899933e-05, "grad_norm": 1.1950552463531494, "token_acc": 0.8434011757373809, "gpu_alloc_gb": 12.88, "elapsed_s": 12858.3, "epoch": 1.4715852442671984} +{"step": 14770, "loss": 0.6327, "learning_rate": 3.4310060167430725e-05, "grad_norm": 1.2628408670425415, "token_acc": 0.840976744890213, "gpu_alloc_gb": 12.88, "elapsed_s": 12865.1, "epoch": 1.472582253240279} +{"step": 14780, "loss": 0.6119, "learning_rate": 3.4188412234638954e-05, "grad_norm": 1.4797788858413696, "token_acc": 0.8424277126789093, "gpu_alloc_gb": 12.88, "elapsed_s": 12871.7, "epoch": 1.4735792622133599} +{"step": 14790, "loss": 0.6188, "learning_rate": 3.406693585773264e-05, "grad_norm": 1.0661824941635132, "token_acc": 0.8437942862510681, "gpu_alloc_gb": 12.88, "elapsed_s": 12878.5, "epoch": 1.4745762711864407} +{"step": 14800, "loss": 0.627, "learning_rate": 3.394563135337307e-05, "grad_norm": 1.2614823579788208, "token_acc": 0.841475909948349, "gpu_alloc_gb": 12.88, "elapsed_s": 12885.2, "epoch": 1.4755732801595214} +{"step": 14810, "loss": 0.6306, "learning_rate": 3.382449903777367e-05, "grad_norm": 3.9471943378448486, "token_acc": 0.8424154460430145, "gpu_alloc_gb": 12.88, "elapsed_s": 12891.9, "epoch": 1.4765702891326022} +{"step": 14820, "loss": 0.6171, "learning_rate": 3.3703539226698834e-05, "grad_norm": 1.1883676052093506, "token_acc": 0.8434785783290863, "gpu_alloc_gb": 12.88, "elapsed_s": 12898.7, "epoch": 1.4775672981056829} +{"step": 14830, "loss": 0.6253, "learning_rate": 3.35827522354634e-05, "grad_norm": 1.1299316883087158, "token_acc": 0.8438614189624787, "gpu_alloc_gb": 12.88, "elapsed_s": 12905.4, "epoch": 1.4785643070787637} +{"step": 14840, "loss": 0.6327, "learning_rate": 3.3462138378931685e-05, "grad_norm": 1.1390151977539062, "token_acc": 0.8418457508087158, "gpu_alloc_gb": 12.88, "elapsed_s": 12911.9, "epoch": 1.4795613160518446} +{"step": 14850, "loss": 0.588, "learning_rate": 3.334169797151661e-05, "grad_norm": 1.0797704458236694, "token_acc": 0.8510442018508911, "gpu_alloc_gb": 12.88, "elapsed_s": 12918.6, "epoch": 1.4805583250249252} +{"step": 14860, "loss": 0.5923, "learning_rate": 3.322143132717903e-05, "grad_norm": 1.091065764427185, "token_acc": 0.8525978446006774, "gpu_alloc_gb": 12.88, "elapsed_s": 12925.2, "epoch": 1.4815553339980059} +{"step": 14870, "loss": 0.6088, "learning_rate": 3.310133875942685e-05, "grad_norm": 1.0901494026184082, "token_acc": 0.8450690388679505, "gpu_alloc_gb": 12.88, "elapsed_s": 12931.9, "epoch": 1.4825523429710867} +{"step": 14880, "loss": 0.6251, "learning_rate": 3.298142058131413e-05, "grad_norm": 1.2738994359970093, "token_acc": 0.8430344998836518, "gpu_alloc_gb": 12.88, "elapsed_s": 12938.7, "epoch": 1.4835493519441676} +{"step": 14890, "loss": 0.6068, "learning_rate": 3.2861677105440336e-05, "grad_norm": 6.397658348083496, "token_acc": 0.8475575983524323, "gpu_alloc_gb": 12.88, "elapsed_s": 12945.5, "epoch": 1.4845463609172482} +{"step": 14900, "loss": 0.6223, "learning_rate": 3.2742108643949576e-05, "grad_norm": 8.277029991149902, "token_acc": 0.8448038220405578, "gpu_alloc_gb": 12.88, "elapsed_s": 12952.1, "epoch": 1.485543369890329} +{"step": 14910, "loss": 0.6262, "learning_rate": 3.262271550852976e-05, "grad_norm": 1.144774079322815, "token_acc": 0.8389655292034149, "gpu_alloc_gb": 12.88, "elapsed_s": 12958.8, "epoch": 1.4865403788634097} +{"step": 14920, "loss": 0.6249, "learning_rate": 3.250349801041165e-05, "grad_norm": 3.58711314201355, "token_acc": 0.8399025440216065, "gpu_alloc_gb": 12.88, "elapsed_s": 12965.5, "epoch": 1.4875373878364906} +{"step": 14930, "loss": 0.5912, "learning_rate": 3.238445646036828e-05, "grad_norm": 1.0215154886245728, "token_acc": 0.8492107033729553, "gpu_alloc_gb": 12.88, "elapsed_s": 12972.3, "epoch": 1.4885343968095712} +{"step": 14940, "loss": 0.6193, "learning_rate": 3.226559116871394e-05, "grad_norm": 1.0647943019866943, "token_acc": 0.8454404771327972, "gpu_alloc_gb": 12.88, "elapsed_s": 12978.9, "epoch": 1.489531405782652} +{"step": 14950, "loss": 0.6045, "learning_rate": 3.21469024453035e-05, "grad_norm": 1.0484199523925781, "token_acc": 0.8453626692295074, "gpu_alloc_gb": 12.88, "elapsed_s": 12985.6, "epoch": 1.4905284147557327} +{"step": 14960, "loss": 0.6182, "learning_rate": 3.2028390599531586e-05, "grad_norm": 1.2340868711471558, "token_acc": 0.8436631202697754, "gpu_alloc_gb": 12.88, "elapsed_s": 12992.2, "epoch": 1.4915254237288136} +{"step": 14970, "loss": 0.6183, "learning_rate": 3.191005594033164e-05, "grad_norm": 3.2467641830444336, "token_acc": 0.839911013841629, "gpu_alloc_gb": 12.88, "elapsed_s": 12999.0, "epoch": 1.4925224327018944} +{"step": 14980, "loss": 0.6479, "learning_rate": 3.1791898776175325e-05, "grad_norm": 1.1463130712509155, "token_acc": 0.8365511178970337, "gpu_alloc_gb": 12.88, "elapsed_s": 13005.7, "epoch": 1.493519441674975} +{"step": 14990, "loss": 0.629, "learning_rate": 3.1673919415071596e-05, "grad_norm": 5.885778903961182, "token_acc": 0.8405660629272461, "gpu_alloc_gb": 12.88, "elapsed_s": 13012.3, "epoch": 1.4945164506480557} +{"step": 15000, "loss": 0.621, "learning_rate": 3.155611816456586e-05, "grad_norm": 1.0057554244995117, "token_acc": 0.8431818962097168, "gpu_alloc_gb": 12.88, "elapsed_s": 13019.2, "epoch": 1.4955134596211366} +{"step": 15000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 13086.0, "epoch": 1.4955134596211366} +{"step": 15000, "eval_loss": 1.2554303407669067, "eval_step": true} +{"step": 15010, "loss": 0.6286, "learning_rate": 3.1438495331739234e-05, "grad_norm": 1.0676957368850708, "token_acc": 0.8423924088478089, "gpu_alloc_gb": 12.88, "elapsed_s": 13135.3, "epoch": 1.4965104685942174} +{"step": 15020, "loss": 0.6144, "learning_rate": 3.132105122320781e-05, "grad_norm": 0.9941176176071167, "token_acc": 0.8432277083396912, "gpu_alloc_gb": 12.88, "elapsed_s": 13142.2, "epoch": 1.497507477567298} +{"step": 15030, "loss": 0.5918, "learning_rate": 3.120378614512177e-05, "grad_norm": 1.0102001428604126, "token_acc": 0.8481844425201416, "gpu_alloc_gb": 12.88, "elapsed_s": 13149.0, "epoch": 1.498504486540379} +{"step": 15040, "loss": 0.6357, "learning_rate": 3.108670040316452e-05, "grad_norm": 1.1981230974197388, "token_acc": 0.8393357455730438, "gpu_alloc_gb": 12.88, "elapsed_s": 13155.8, "epoch": 1.4995014955134596} +{"step": 15050, "loss": 0.616, "learning_rate": 3.0969794302552105e-05, "grad_norm": 1.0648308992385864, "token_acc": 0.8460900127887726, "gpu_alloc_gb": 12.88, "elapsed_s": 13162.5, "epoch": 1.5004985044865404} +{"step": 15060, "loss": 0.6333, "learning_rate": 3.085306814803215e-05, "grad_norm": 1.0470479726791382, "token_acc": 0.8406827032566071, "gpu_alloc_gb": 12.88, "elapsed_s": 13169.3, "epoch": 1.5014955134596213} +{"step": 15070, "loss": 0.6223, "learning_rate": 3.073652224388329e-05, "grad_norm": 1.1407535076141357, "token_acc": 0.8454543888568878, "gpu_alloc_gb": 12.88, "elapsed_s": 13176.1, "epoch": 1.502492522432702} +{"step": 15080, "loss": 0.6275, "learning_rate": 3.062015689391433e-05, "grad_norm": 5.67579460144043, "token_acc": 0.8406547844409943, "gpu_alloc_gb": 12.88, "elapsed_s": 13182.7, "epoch": 1.5034895314057826} +{"step": 15090, "loss": 0.6147, "learning_rate": 3.0503972401463298e-05, "grad_norm": 0.969169020652771, "token_acc": 0.8440296709537506, "gpu_alloc_gb": 12.88, "elapsed_s": 13189.5, "epoch": 1.5044865403788634} +{"step": 15100, "loss": 0.6274, "learning_rate": 3.038796906939676e-05, "grad_norm": 1.194840431213379, "token_acc": 0.8435994148254394, "gpu_alloc_gb": 12.88, "elapsed_s": 13196.1, "epoch": 1.5054835493519443} +{"step": 15110, "loss": 0.6076, "learning_rate": 3.0272147200109213e-05, "grad_norm": 6.630532741546631, "token_acc": 0.8475346505641937, "gpu_alloc_gb": 12.88, "elapsed_s": 13202.8, "epoch": 1.506480558325025} +{"step": 15120, "loss": 0.5997, "learning_rate": 3.015650709552197e-05, "grad_norm": 1.1436753273010254, "token_acc": 0.8450893521308899, "gpu_alloc_gb": 12.88, "elapsed_s": 13209.6, "epoch": 1.5074775672981056} +{"step": 15130, "loss": 0.6371, "learning_rate": 3.0041049057082492e-05, "grad_norm": 4.401617050170898, "token_acc": 0.8385993182659149, "gpu_alloc_gb": 12.88, "elapsed_s": 13216.5, "epoch": 1.5084745762711864} +{"step": 15140, "loss": 0.622, "learning_rate": 2.9925773385763768e-05, "grad_norm": 2.7089147567749023, "token_acc": 0.8444117784500123, "gpu_alloc_gb": 12.88, "elapsed_s": 13223.2, "epoch": 1.5094715852442673} +{"step": 15150, "loss": 0.6355, "learning_rate": 2.981068038206334e-05, "grad_norm": 1.1781330108642578, "token_acc": 0.8388341724872589, "gpu_alloc_gb": 12.88, "elapsed_s": 13230.2, "epoch": 1.510468594217348} +{"step": 15160, "loss": 0.6153, "learning_rate": 2.9695770346002516e-05, "grad_norm": 1.077650547027588, "token_acc": 0.8392840623855591, "gpu_alloc_gb": 12.88, "elapsed_s": 13236.9, "epoch": 1.5114656031904286} +{"step": 15170, "loss": 0.602, "learning_rate": 2.9581043577125778e-05, "grad_norm": 1.2049860954284668, "token_acc": 0.8472372889518738, "gpu_alloc_gb": 12.88, "elapsed_s": 13243.6, "epoch": 1.5124626121635094} +{"step": 15180, "loss": 0.6094, "learning_rate": 2.9466500374499673e-05, "grad_norm": 3.8166801929473877, "token_acc": 0.8425096035003662, "gpu_alloc_gb": 12.88, "elapsed_s": 13250.5, "epoch": 1.5134596211365903} +{"step": 15190, "loss": 0.5988, "learning_rate": 2.935214103671251e-05, "grad_norm": 1.5204136371612549, "token_acc": 0.84811230301857, "gpu_alloc_gb": 12.88, "elapsed_s": 13257.2, "epoch": 1.5144566301096711} +{"step": 15200, "loss": 0.6474, "learning_rate": 2.9237965861873064e-05, "grad_norm": 1.3059698343276978, "token_acc": 0.838146424293518, "gpu_alloc_gb": 12.88, "elapsed_s": 13263.9, "epoch": 1.5154536390827518} +{"step": 15210, "loss": 0.6212, "learning_rate": 2.9123975147610107e-05, "grad_norm": 1.1126348972320557, "token_acc": 0.8452149868011475, "gpu_alloc_gb": 12.88, "elapsed_s": 13270.5, "epoch": 1.5164506480558324} +{"step": 15220, "loss": 0.6253, "learning_rate": 2.9010169191071613e-05, "grad_norm": 1.1494320631027222, "token_acc": 0.8429326951503754, "gpu_alloc_gb": 12.88, "elapsed_s": 13277.2, "epoch": 1.5174476570289133} +{"step": 15230, "loss": 0.5904, "learning_rate": 2.889654828892393e-05, "grad_norm": 1.0966752767562866, "token_acc": 0.8486737430095672, "gpu_alloc_gb": 12.88, "elapsed_s": 13283.9, "epoch": 1.5184446660019941} +{"step": 15240, "loss": 0.6309, "learning_rate": 2.8783112737350927e-05, "grad_norm": 1.1025136709213257, "token_acc": 0.8407605409622192, "gpu_alloc_gb": 12.88, "elapsed_s": 13290.6, "epoch": 1.5194416749750748} +{"step": 15250, "loss": 0.602, "learning_rate": 2.8669862832053418e-05, "grad_norm": 2.39216685295105, "token_acc": 0.8487371563911438, "gpu_alloc_gb": 12.88, "elapsed_s": 13297.4, "epoch": 1.5204386839481554} +{"step": 15250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 13364.2, "epoch": 1.5204386839481554} +{"step": 15250, "eval_loss": 1.236963152885437, "eval_step": true} +{"step": 15260, "loss": 0.6165, "learning_rate": 2.8556798868248157e-05, "grad_norm": 4.967697620391846, "token_acc": 0.8451332926750184, "gpu_alloc_gb": 12.88, "elapsed_s": 13412.2, "epoch": 1.5214356929212363} +{"step": 15270, "loss": 0.642, "learning_rate": 2.844392114066732e-05, "grad_norm": 1.102482557296753, "token_acc": 0.8364949584007263, "gpu_alloc_gb": 12.88, "elapsed_s": 13419.1, "epoch": 1.5224327018943171} +{"step": 15280, "loss": 0.6408, "learning_rate": 2.8331229943557535e-05, "grad_norm": 4.988790035247803, "token_acc": 0.8369035065174103, "gpu_alloc_gb": 12.88, "elapsed_s": 13425.8, "epoch": 1.5234297108673978} +{"step": 15290, "loss": 0.6275, "learning_rate": 2.8218725570679205e-05, "grad_norm": 1.1176884174346924, "token_acc": 0.8406434655189514, "gpu_alloc_gb": 12.88, "elapsed_s": 13432.4, "epoch": 1.5244267198404786} +{"step": 15300, "loss": 0.6327, "learning_rate": 2.8106408315305664e-05, "grad_norm": 1.0630172491073608, "token_acc": 0.8390089213848114, "gpu_alloc_gb": 12.88, "elapsed_s": 13439.5, "epoch": 1.5254237288135593} +{"step": 15310, "loss": 0.6161, "learning_rate": 2.799427847022256e-05, "grad_norm": 1.0115656852722168, "token_acc": 0.8463373303413391, "gpu_alloc_gb": 12.88, "elapsed_s": 13446.4, "epoch": 1.5264207377866401} +{"step": 15320, "loss": 0.5978, "learning_rate": 2.788233632772701e-05, "grad_norm": 1.09378182888031, "token_acc": 0.8469541192054748, "gpu_alloc_gb": 12.88, "elapsed_s": 13453.0, "epoch": 1.527417746759721} +{"step": 15330, "loss": 0.6268, "learning_rate": 2.7770582179626735e-05, "grad_norm": 1.6376490592956543, "token_acc": 0.8419458568096161, "gpu_alloc_gb": 12.88, "elapsed_s": 13459.9, "epoch": 1.5284147557328016} +{"step": 15340, "loss": 0.6025, "learning_rate": 2.765901631723947e-05, "grad_norm": 1.3062158823013306, "token_acc": 0.8452642261981964, "gpu_alloc_gb": 12.88, "elapsed_s": 13466.6, "epoch": 1.5294117647058822} +{"step": 15350, "loss": 0.6311, "learning_rate": 2.754763903139217e-05, "grad_norm": 1.390031099319458, "token_acc": 0.8419467747211457, "gpu_alloc_gb": 12.88, "elapsed_s": 13473.2, "epoch": 1.530408773678963} +{"step": 15360, "loss": 0.625, "learning_rate": 2.7436450612420095e-05, "grad_norm": 1.1532343626022339, "token_acc": 0.8422753810882568, "gpu_alloc_gb": 12.88, "elapsed_s": 13480.0, "epoch": 1.531405782652044} +{"step": 15370, "loss": 0.5964, "learning_rate": 2.7325451350166297e-05, "grad_norm": 0.988190770149231, "token_acc": 0.846534126996994, "gpu_alloc_gb": 12.88, "elapsed_s": 13486.8, "epoch": 1.5324027916251246} +{"step": 15380, "loss": 0.5981, "learning_rate": 2.7214641533980623e-05, "grad_norm": 1.1419638395309448, "token_acc": 0.8455081284046173, "gpu_alloc_gb": 12.88, "elapsed_s": 13493.8, "epoch": 1.5333998005982052} +{"step": 15390, "loss": 0.6094, "learning_rate": 2.7104021452719165e-05, "grad_norm": 1.1356635093688965, "token_acc": 0.8450903952121734, "gpu_alloc_gb": 12.88, "elapsed_s": 13500.6, "epoch": 1.534396809571286} +{"step": 15400, "loss": 0.6086, "learning_rate": 2.6993591394743422e-05, "grad_norm": 5.650378704071045, "token_acc": 0.8435696363449097, "gpu_alloc_gb": 12.88, "elapsed_s": 13507.4, "epoch": 1.535393818544367} +{"step": 15410, "loss": 0.6077, "learning_rate": 2.6883351647919486e-05, "grad_norm": 1.1905841827392578, "token_acc": 0.8445864975452423, "gpu_alloc_gb": 12.88, "elapsed_s": 13514.2, "epoch": 1.5363908275174478} +{"step": 15420, "loss": 0.6367, "learning_rate": 2.6773302499617338e-05, "grad_norm": 5.177981853485107, "token_acc": 0.841670572757721, "gpu_alloc_gb": 12.88, "elapsed_s": 13520.9, "epoch": 1.5373878364905285} +{"step": 15430, "loss": 0.6142, "learning_rate": 2.6663444236710187e-05, "grad_norm": 4.917666435241699, "token_acc": 0.8457518100738526, "gpu_alloc_gb": 12.88, "elapsed_s": 13527.6, "epoch": 1.538384845463609} +{"step": 15440, "loss": 0.6337, "learning_rate": 2.6553777145573654e-05, "grad_norm": 1.2531224489212036, "token_acc": 0.8418809592723846, "gpu_alloc_gb": 12.88, "elapsed_s": 13534.5, "epoch": 1.53938185443669} +{"step": 15450, "loss": 0.6135, "learning_rate": 2.64443015120849e-05, "grad_norm": 1.0386481285095215, "token_acc": 0.8438222348690033, "gpu_alloc_gb": 12.88, "elapsed_s": 13541.2, "epoch": 1.5403788634097708} +{"step": 15460, "loss": 0.6289, "learning_rate": 2.6335017621622116e-05, "grad_norm": 0.9722018837928772, "token_acc": 0.842665034532547, "gpu_alloc_gb": 12.88, "elapsed_s": 13548.0, "epoch": 1.5413758723828515} +{"step": 15470, "loss": 0.6014, "learning_rate": 2.622592575906364e-05, "grad_norm": 1.0136873722076416, "token_acc": 0.8499920487403869, "gpu_alloc_gb": 12.88, "elapsed_s": 13554.6, "epoch": 1.542372881355932} +{"step": 15480, "loss": 0.6306, "learning_rate": 2.6117026208787176e-05, "grad_norm": 0.9692786335945129, "token_acc": 0.8414792954921723, "gpu_alloc_gb": 12.88, "elapsed_s": 13561.6, "epoch": 1.543369890329013} +{"step": 15490, "loss": 0.6166, "learning_rate": 2.6008319254669212e-05, "grad_norm": 1.1474655866622925, "token_acc": 0.845943158864975, "gpu_alloc_gb": 12.88, "elapsed_s": 13568.3, "epoch": 1.5443668993020938} +{"step": 15500, "loss": 0.6253, "learning_rate": 2.589980518008406e-05, "grad_norm": 4.017615795135498, "token_acc": 0.8396892964839935, "gpu_alloc_gb": 12.88, "elapsed_s": 13575.0, "epoch": 1.5453639082751744} +{"step": 15500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 13641.9, "epoch": 1.5453639082751744} +{"step": 15500, "eval_loss": 1.2073755264282227, "eval_step": true} +{"step": 15510, "loss": 0.621, "learning_rate": 2.5791484267903333e-05, "grad_norm": 5.881631374359131, "token_acc": 0.8425438165664673, "gpu_alloc_gb": 12.88, "elapsed_s": 13688.9, "epoch": 1.546360917248255} +{"step": 15520, "loss": 0.5961, "learning_rate": 2.568335680049512e-05, "grad_norm": 1.0400527715682983, "token_acc": 0.8472365260124206, "gpu_alloc_gb": 12.88, "elapsed_s": 13695.7, "epoch": 1.547357926221336} +{"step": 15530, "loss": 0.6023, "learning_rate": 2.557542305972318e-05, "grad_norm": 1.1270368099212646, "token_acc": 0.8520506799221039, "gpu_alloc_gb": 12.88, "elapsed_s": 13702.3, "epoch": 1.5483549351944168} +{"step": 15540, "loss": 0.6137, "learning_rate": 2.5467683326946278e-05, "grad_norm": 1.091620683670044, "token_acc": 0.8427913904190063, "gpu_alloc_gb": 12.88, "elapsed_s": 13708.7, "epoch": 1.5493519441674977} +{"step": 15550, "loss": 0.6061, "learning_rate": 2.5360137883017478e-05, "grad_norm": 1.1076363325119019, "token_acc": 0.8422592580318451, "gpu_alloc_gb": 12.88, "elapsed_s": 13715.4, "epoch": 1.5503489531405783} +{"step": 15560, "loss": 0.5888, "learning_rate": 2.5252787008283407e-05, "grad_norm": 1.1737329959869385, "token_acc": 0.8473578870296479, "gpu_alloc_gb": 12.88, "elapsed_s": 13722.2, "epoch": 1.551345962113659} +{"step": 15570, "loss": 0.6281, "learning_rate": 2.514563098258339e-05, "grad_norm": 12.709851264953613, "token_acc": 0.8396757245063782, "gpu_alloc_gb": 12.88, "elapsed_s": 13728.9, "epoch": 1.5523429710867398} +{"step": 15580, "loss": 0.5695, "learning_rate": 2.5038670085248915e-05, "grad_norm": 1.0903258323669434, "token_acc": 0.8533855557441712, "gpu_alloc_gb": 12.88, "elapsed_s": 13735.7, "epoch": 1.5533399800598207} +{"step": 15590, "loss": 0.6163, "learning_rate": 2.4931904595102786e-05, "grad_norm": 1.1635152101516724, "token_acc": 0.8429427921772004, "gpu_alloc_gb": 12.88, "elapsed_s": 13742.3, "epoch": 1.5543369890329013} +{"step": 15600, "loss": 0.6321, "learning_rate": 2.482533479045844e-05, "grad_norm": 11.22081470489502, "token_acc": 0.8418910384178162, "gpu_alloc_gb": 12.88, "elapsed_s": 13748.8, "epoch": 1.555333998005982} +{"step": 15610, "loss": 0.6064, "learning_rate": 2.4718960949119187e-05, "grad_norm": 1.1507388353347778, "token_acc": 0.8429650068283081, "gpu_alloc_gb": 12.88, "elapsed_s": 13755.5, "epoch": 1.5563310069790628} +{"step": 15620, "loss": 0.631, "learning_rate": 2.4612783348377468e-05, "grad_norm": 1.10649573802948, "token_acc": 0.8381818771362305, "gpu_alloc_gb": 12.88, "elapsed_s": 13762.1, "epoch": 1.5573280159521437} +{"step": 15630, "loss": 0.6331, "learning_rate": 2.450680226501424e-05, "grad_norm": 1.4247947931289673, "token_acc": 0.8426626265048981, "gpu_alloc_gb": 12.88, "elapsed_s": 13768.7, "epoch": 1.5583250249252243} +{"step": 15640, "loss": 0.5824, "learning_rate": 2.440101797529819e-05, "grad_norm": 1.1215885877609253, "token_acc": 0.8474587082862854, "gpu_alloc_gb": 12.88, "elapsed_s": 13775.2, "epoch": 1.559322033898305} +{"step": 15650, "loss": 0.6201, "learning_rate": 2.4295430754984904e-05, "grad_norm": 1.1534154415130615, "token_acc": 0.8408217132091522, "gpu_alloc_gb": 12.88, "elapsed_s": 13781.9, "epoch": 1.5603190428713858} +{"step": 15660, "loss": 0.6203, "learning_rate": 2.4190040879316388e-05, "grad_norm": 14.786104202270508, "token_acc": 0.8423736929893494, "gpu_alloc_gb": 12.88, "elapsed_s": 13789.0, "epoch": 1.5613160518444666} +{"step": 15670, "loss": 0.6288, "learning_rate": 2.4084848623020083e-05, "grad_norm": 1.1298612356185913, "token_acc": 0.8421164989471436, "gpu_alloc_gb": 12.88, "elapsed_s": 13796.1, "epoch": 1.5623130608175475} +{"step": 15680, "loss": 0.6055, "learning_rate": 2.3979854260308378e-05, "grad_norm": 1.1260504722595215, "token_acc": 0.8455368757247925, "gpu_alloc_gb": 12.88, "elapsed_s": 13802.8, "epoch": 1.5633100697906281} +{"step": 15690, "loss": 0.6049, "learning_rate": 2.3875058064877807e-05, "grad_norm": 3.0153446197509766, "token_acc": 0.8450541198253632, "gpu_alloc_gb": 12.88, "elapsed_s": 13809.7, "epoch": 1.5643070787637088} +{"step": 15700, "loss": 0.6218, "learning_rate": 2.3770460309908216e-05, "grad_norm": 1.3454804420471191, "token_acc": 0.8409513711929322, "gpu_alloc_gb": 12.88, "elapsed_s": 13816.5, "epoch": 1.5653040877367896} +{"step": 15710, "loss": 0.6057, "learning_rate": 2.366606126806227e-05, "grad_norm": 6.93276309967041, "token_acc": 0.8456436634063721, "gpu_alloc_gb": 12.88, "elapsed_s": 13823.2, "epoch": 1.5663010967098705} +{"step": 15720, "loss": 0.6226, "learning_rate": 2.3561861211484613e-05, "grad_norm": 1.1108421087265015, "token_acc": 0.8441621959209442, "gpu_alloc_gb": 12.88, "elapsed_s": 13829.9, "epoch": 1.5672981056829511} +{"step": 15730, "loss": 0.5929, "learning_rate": 2.345786041180116e-05, "grad_norm": 0.9325844645500183, "token_acc": 0.8499317049980164, "gpu_alloc_gb": 12.88, "elapsed_s": 13836.7, "epoch": 1.5682951146560318} +{"step": 15740, "loss": 0.6336, "learning_rate": 2.3354059140118357e-05, "grad_norm": 1.23720383644104, "token_acc": 0.8384823679924012, "gpu_alloc_gb": 12.88, "elapsed_s": 13843.5, "epoch": 1.5692921236291126} +{"step": 15750, "loss": 0.6431, "learning_rate": 2.325045766702263e-05, "grad_norm": 7.144843101501465, "token_acc": 0.8376591980457306, "gpu_alloc_gb": 12.88, "elapsed_s": 13850.3, "epoch": 1.5702891326021935} +{"step": 15750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 13917.1, "epoch": 1.5702891326021935} +{"step": 15750, "eval_loss": 1.2332295179367065, "eval_step": true} +{"step": 15760, "loss": 0.5787, "learning_rate": 2.3147056262579536e-05, "grad_norm": 9.689431190490723, "token_acc": 0.8512718915939331, "gpu_alloc_gb": 12.88, "elapsed_s": 13962.5, "epoch": 1.5712861415752741} +{"step": 15770, "loss": 0.5877, "learning_rate": 2.3043855196333043e-05, "grad_norm": 11.144607543945312, "token_acc": 0.8477533519268036, "gpu_alloc_gb": 12.88, "elapsed_s": 13969.3, "epoch": 1.5722831505483548} +{"step": 15780, "loss": 0.5895, "learning_rate": 2.2940854737304972e-05, "grad_norm": 3.307100296020508, "token_acc": 0.8505086779594422, "gpu_alloc_gb": 12.88, "elapsed_s": 13976.0, "epoch": 1.5732801595214356} +{"step": 15790, "loss": 0.608, "learning_rate": 2.283805515399412e-05, "grad_norm": 1.218923807144165, "token_acc": 0.8475378215312958, "gpu_alloc_gb": 12.88, "elapsed_s": 13982.5, "epoch": 1.5742771684945165} +{"step": 15800, "loss": 0.6118, "learning_rate": 2.2735456714375725e-05, "grad_norm": 1.2436398267745972, "token_acc": 0.8431871414184571, "gpu_alloc_gb": 12.88, "elapsed_s": 13989.2, "epoch": 1.5752741774675973} +{"step": 15810, "loss": 0.6215, "learning_rate": 2.263305968590066e-05, "grad_norm": 1.0583394765853882, "token_acc": 0.8400956630706787, "gpu_alloc_gb": 12.88, "elapsed_s": 13995.7, "epoch": 1.576271186440678} +{"step": 15820, "loss": 0.6039, "learning_rate": 2.253086433549474e-05, "grad_norm": 2.097966194152832, "token_acc": 0.8494702458381653, "gpu_alloc_gb": 12.88, "elapsed_s": 14002.2, "epoch": 1.5772681954137586} +{"step": 15830, "loss": 0.6264, "learning_rate": 2.242887092955801e-05, "grad_norm": 6.860851287841797, "token_acc": 0.8422408819198608, "gpu_alloc_gb": 12.88, "elapsed_s": 14009.0, "epoch": 1.5782652043868395} +{"step": 15840, "loss": 0.6527, "learning_rate": 2.232707973396426e-05, "grad_norm": 1.2145614624023438, "token_acc": 0.8370269656181335, "gpu_alloc_gb": 12.88, "elapsed_s": 14015.7, "epoch": 1.5792622133599203} +{"step": 15850, "loss": 0.6041, "learning_rate": 2.222549101406002e-05, "grad_norm": 4.9540205001831055, "token_acc": 0.8456094443798066, "gpu_alloc_gb": 12.88, "elapsed_s": 14022.3, "epoch": 1.580259222333001} +{"step": 15860, "loss": 0.6408, "learning_rate": 2.2124105034663987e-05, "grad_norm": 1.1435606479644775, "token_acc": 0.8391775786876678, "gpu_alloc_gb": 12.88, "elapsed_s": 14029.0, "epoch": 1.5812562313060816} +{"step": 15870, "loss": 0.607, "learning_rate": 2.2022922060066463e-05, "grad_norm": 1.0875937938690186, "token_acc": 0.84550461769104, "gpu_alloc_gb": 12.88, "elapsed_s": 14035.7, "epoch": 1.5822532402791625} +{"step": 15880, "loss": 0.6322, "learning_rate": 2.1921942354028536e-05, "grad_norm": 1.0836584568023682, "token_acc": 0.8394249320030213, "gpu_alloc_gb": 12.88, "elapsed_s": 14042.4, "epoch": 1.5832502492522433} +{"step": 15890, "loss": 0.6182, "learning_rate": 2.182116617978136e-05, "grad_norm": 7.2961249351501465, "token_acc": 0.8438298404216766, "gpu_alloc_gb": 12.88, "elapsed_s": 14049.0, "epoch": 1.584247258225324} +{"step": 15900, "loss": 0.6157, "learning_rate": 2.172059380002561e-05, "grad_norm": 6.152523040771484, "token_acc": 0.8471664428710938, "gpu_alloc_gb": 12.88, "elapsed_s": 14055.6, "epoch": 1.5852442671984048} +{"step": 15910, "loss": 0.6224, "learning_rate": 2.1620225476930634e-05, "grad_norm": 1.2500971555709839, "token_acc": 0.84335076212883, "gpu_alloc_gb": 12.88, "elapsed_s": 14062.2, "epoch": 1.5862412761714855} +{"step": 15920, "loss": 0.5988, "learning_rate": 2.1520061472133902e-05, "grad_norm": 9.0639066696167, "token_acc": 0.8470773935317993, "gpu_alloc_gb": 12.88, "elapsed_s": 14068.6, "epoch": 1.5872382851445663} +{"step": 15930, "loss": 0.6206, "learning_rate": 2.1420102046740288e-05, "grad_norm": 2.5946531295776367, "token_acc": 0.8442752718925476, "gpu_alloc_gb": 12.88, "elapsed_s": 14075.3, "epoch": 1.5882352941176472} +{"step": 15940, "loss": 0.6202, "learning_rate": 2.132034746132133e-05, "grad_norm": 1.1798863410949707, "token_acc": 0.842519748210907, "gpu_alloc_gb": 12.88, "elapsed_s": 14082.1, "epoch": 1.5892323030907278} +{"step": 15950, "loss": 0.6054, "learning_rate": 2.1220797975914553e-05, "grad_norm": 1.1415470838546753, "token_acc": 0.8444440364837646, "gpu_alloc_gb": 12.88, "elapsed_s": 14088.7, "epoch": 1.5902293120638085} +{"step": 15960, "loss": 0.5985, "learning_rate": 2.1121453850023e-05, "grad_norm": 1.0178481340408325, "token_acc": 0.8501287281513215, "gpu_alloc_gb": 12.88, "elapsed_s": 14095.3, "epoch": 1.5912263210368893} +{"step": 15970, "loss": 0.6026, "learning_rate": 2.1022315342614217e-05, "grad_norm": 1.4194624423980713, "token_acc": 0.8454669952392578, "gpu_alloc_gb": 12.88, "elapsed_s": 14102.0, "epoch": 1.5922233300099702} +{"step": 15980, "loss": 0.6139, "learning_rate": 2.09233827121198e-05, "grad_norm": 10.430012702941895, "token_acc": 0.8432459712028504, "gpu_alloc_gb": 12.88, "elapsed_s": 14108.5, "epoch": 1.5932203389830508} +{"step": 15990, "loss": 0.6307, "learning_rate": 2.082465621643469e-05, "grad_norm": 1.1680458784103394, "token_acc": 0.84008509516716, "gpu_alloc_gb": 12.88, "elapsed_s": 14115.1, "epoch": 1.5942173479561315} +{"step": 16000, "loss": 0.6107, "learning_rate": 2.0726136112916515e-05, "grad_norm": 1.0684285163879395, "token_acc": 0.8448364078998566, "gpu_alloc_gb": 12.88, "elapsed_s": 14121.6, "epoch": 1.5952143569292123} +{"step": 16000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 14188.5, "epoch": 1.5952143569292123} +{"step": 16000, "eval_loss": 1.2322598695755005, "eval_step": true} +{"step": 16010, "loss": 0.6165, "learning_rate": 2.0627822658384788e-05, "grad_norm": 1.1642029285430908, "token_acc": 0.8440880298614502, "gpu_alloc_gb": 12.88, "elapsed_s": 14231.8, "epoch": 1.5962113659022932} +{"step": 16020, "loss": 0.6056, "learning_rate": 2.0529716109120434e-05, "grad_norm": 0.9981576204299927, "token_acc": 0.8479638516902923, "gpu_alloc_gb": 12.88, "elapsed_s": 14238.6, "epoch": 1.597208374875374} +{"step": 16030, "loss": 0.5949, "learning_rate": 2.0431816720864937e-05, "grad_norm": 1.257110595703125, "token_acc": 0.8478783786296844, "gpu_alloc_gb": 12.88, "elapsed_s": 14245.0, "epoch": 1.5982053838484547} +{"step": 16040, "loss": 0.6151, "learning_rate": 2.0334124748819827e-05, "grad_norm": 6.336648464202881, "token_acc": 0.8434406757354737, "gpu_alloc_gb": 12.88, "elapsed_s": 14251.6, "epoch": 1.5992023928215353} +{"step": 16050, "loss": 0.6063, "learning_rate": 2.023664044764595e-05, "grad_norm": 1.523435354232788, "token_acc": 0.8443245887756348, "gpu_alloc_gb": 12.88, "elapsed_s": 14258.4, "epoch": 1.6001994017946162} +{"step": 16060, "loss": 0.6066, "learning_rate": 2.0139364071462707e-05, "grad_norm": 1.1207044124603271, "token_acc": 0.8457962334156036, "gpu_alloc_gb": 12.88, "elapsed_s": 14265.0, "epoch": 1.601196410767697} +{"step": 16070, "loss": 0.5934, "learning_rate": 2.0042295873847594e-05, "grad_norm": 1.0898430347442627, "token_acc": 0.8475260078907013, "gpu_alloc_gb": 12.88, "elapsed_s": 14271.6, "epoch": 1.6021934197407777} +{"step": 16080, "loss": 0.6069, "learning_rate": 1.9945436107835414e-05, "grad_norm": 1.1058827638626099, "token_acc": 0.8449386239051819, "gpu_alloc_gb": 12.88, "elapsed_s": 14278.3, "epoch": 1.6031904287138583} +{"step": 16090, "loss": 0.6293, "learning_rate": 1.984878502591755e-05, "grad_norm": 1.1754721403121948, "token_acc": 0.842934376001358, "gpu_alloc_gb": 12.88, "elapsed_s": 14284.9, "epoch": 1.6041874376869392} +{"step": 16100, "loss": 0.6311, "learning_rate": 1.9752342880041508e-05, "grad_norm": 1.0696780681610107, "token_acc": 0.8415214359760285, "gpu_alloc_gb": 12.88, "elapsed_s": 14291.6, "epoch": 1.60518444666002} +{"step": 16110, "loss": 0.6053, "learning_rate": 1.9656109921610056e-05, "grad_norm": 11.894946098327637, "token_acc": 0.847524243593216, "gpu_alloc_gb": 12.88, "elapsed_s": 14298.3, "epoch": 1.6061814556331007} +{"step": 16120, "loss": 0.6199, "learning_rate": 1.9560086401480702e-05, "grad_norm": 1.1076364517211914, "token_acc": 0.8448030710220337, "gpu_alloc_gb": 12.88, "elapsed_s": 14304.8, "epoch": 1.6071784646061813} +{"step": 16130, "loss": 0.6166, "learning_rate": 1.9464272569965024e-05, "grad_norm": 1.1048250198364258, "token_acc": 0.8458056509494781, "gpu_alloc_gb": 12.88, "elapsed_s": 14311.6, "epoch": 1.6081754735792622} +{"step": 16140, "loss": 0.61, "learning_rate": 1.936866867682794e-05, "grad_norm": 1.113279104232788, "token_acc": 0.8455878794193268, "gpu_alloc_gb": 12.88, "elapsed_s": 14318.3, "epoch": 1.609172482552343} +{"step": 16150, "loss": 0.6018, "learning_rate": 1.927327497128706e-05, "grad_norm": 1.1079330444335938, "token_acc": 0.8490026772022248, "gpu_alloc_gb": 12.88, "elapsed_s": 14324.7, "epoch": 1.6101694915254239} +{"step": 16160, "loss": 0.6089, "learning_rate": 1.9178091702012203e-05, "grad_norm": 1.209381341934204, "token_acc": 0.8432436287403107, "gpu_alloc_gb": 12.88, "elapsed_s": 14331.4, "epoch": 1.6111665004985045} +{"step": 16170, "loss": 0.5963, "learning_rate": 1.908311911712457e-05, "grad_norm": 2.080479621887207, "token_acc": 0.8497781753540039, "gpu_alloc_gb": 12.88, "elapsed_s": 14338.2, "epoch": 1.6121635094715852} +{"step": 16180, "loss": 0.6149, "learning_rate": 1.8988357464196103e-05, "grad_norm": 1.2584139108657837, "token_acc": 0.8466639935970306, "gpu_alloc_gb": 12.88, "elapsed_s": 14344.7, "epoch": 1.613160518444666} +{"step": 16190, "loss": 0.6027, "learning_rate": 1.8893806990248985e-05, "grad_norm": 1.0409119129180908, "token_acc": 0.8424376845359802, "gpu_alloc_gb": 12.88, "elapsed_s": 14351.2, "epoch": 1.6141575274177469} +{"step": 16200, "loss": 0.6161, "learning_rate": 1.8799467941754868e-05, "grad_norm": 2.3923499584198, "token_acc": 0.8438198029994964, "gpu_alloc_gb": 12.88, "elapsed_s": 14357.9, "epoch": 1.6151545363908275} +{"step": 16210, "loss": 0.6243, "learning_rate": 1.870534056463422e-05, "grad_norm": 1.135998010635376, "token_acc": 0.8449281036853791, "gpu_alloc_gb": 12.88, "elapsed_s": 14364.5, "epoch": 1.6161515453639081} +{"step": 16220, "loss": 0.6122, "learning_rate": 1.8611425104255818e-05, "grad_norm": 1.0409780740737915, "token_acc": 0.8452413082122803, "gpu_alloc_gb": 12.88, "elapsed_s": 14371.3, "epoch": 1.617148554336989} +{"step": 16230, "loss": 0.5909, "learning_rate": 1.8517721805435906e-05, "grad_norm": 1.064358115196228, "token_acc": 0.850886595249176, "gpu_alloc_gb": 12.88, "elapsed_s": 14377.8, "epoch": 1.6181455633100699} +{"step": 16240, "loss": 0.6065, "learning_rate": 1.842423091243778e-05, "grad_norm": 1.0557668209075928, "token_acc": 0.8491492509841919, "gpu_alloc_gb": 12.88, "elapsed_s": 14384.2, "epoch": 1.6191425722831505} +{"step": 16250, "loss": 0.6258, "learning_rate": 1.8330952668971012e-05, "grad_norm": 1.2183551788330078, "token_acc": 0.842463093996048, "gpu_alloc_gb": 12.88, "elapsed_s": 14390.8, "epoch": 1.6201395812562311} +{"step": 16250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 14457.7, "epoch": 1.6201395812562311} +{"step": 16250, "eval_loss": 1.252853274345398, "eval_step": true} +{"step": 16260, "loss": 0.6329, "learning_rate": 1.8237887318190805e-05, "grad_norm": 14.707898139953613, "token_acc": 0.8399970531463623, "gpu_alloc_gb": 12.88, "elapsed_s": 14510.2, "epoch": 1.621136590229312} +{"step": 16270, "loss": 0.6136, "learning_rate": 1.8145035102697394e-05, "grad_norm": 11.298298835754395, "token_acc": 0.8458179295063019, "gpu_alloc_gb": 12.88, "elapsed_s": 14517.0, "epoch": 1.6221335992023929} +{"step": 16280, "loss": 0.6048, "learning_rate": 1.8052396264535487e-05, "grad_norm": 0.9944936037063599, "token_acc": 0.8478584527969361, "gpu_alloc_gb": 12.88, "elapsed_s": 14523.6, "epoch": 1.6231306081754737} +{"step": 16290, "loss": 0.6145, "learning_rate": 1.7959971045193546e-05, "grad_norm": 11.235288619995117, "token_acc": 0.8444397628307343, "gpu_alloc_gb": 12.88, "elapsed_s": 14530.3, "epoch": 1.6241276171485544} +{"step": 16300, "loss": 0.6185, "learning_rate": 1.7867759685603114e-05, "grad_norm": 1.1917957067489624, "token_acc": 0.8446772992610931, "gpu_alloc_gb": 12.88, "elapsed_s": 14537.1, "epoch": 1.625124626121635} +{"step": 16310, "loss": 0.6181, "learning_rate": 1.7775762426138298e-05, "grad_norm": 10.470331192016602, "token_acc": 0.8424697458744049, "gpu_alloc_gb": 12.88, "elapsed_s": 14543.9, "epoch": 1.6261216350947159} +{"step": 16320, "loss": 0.6044, "learning_rate": 1.7683979506615144e-05, "grad_norm": 1.132935881614685, "token_acc": 0.8448672592639923, "gpu_alloc_gb": 12.88, "elapsed_s": 14550.6, "epoch": 1.6271186440677967} +{"step": 16330, "loss": 0.5941, "learning_rate": 1.7592411166290858e-05, "grad_norm": 3.6156504154205322, "token_acc": 0.8472723960876465, "gpu_alloc_gb": 12.88, "elapsed_s": 14557.1, "epoch": 1.6281156530408774} +{"step": 16340, "loss": 0.6127, "learning_rate": 1.7501057643863374e-05, "grad_norm": 4.158429145812988, "token_acc": 0.8425825536251068, "gpu_alloc_gb": 12.88, "elapsed_s": 14564.0, "epoch": 1.629112662013958} +{"step": 16350, "loss": 0.6142, "learning_rate": 1.7409919177470556e-05, "grad_norm": 1.0874712467193604, "token_acc": 0.8478519082069397, "gpu_alloc_gb": 12.88, "elapsed_s": 14570.7, "epoch": 1.6301096709870389} +{"step": 16360, "loss": 0.5913, "learning_rate": 1.7318996004689758e-05, "grad_norm": 1.0629096031188965, "token_acc": 0.8491636395454407, "gpu_alloc_gb": 12.88, "elapsed_s": 14577.4, "epoch": 1.6311066799601197} +{"step": 16370, "loss": 0.6368, "learning_rate": 1.7228288362537104e-05, "grad_norm": 0.9800346493721008, "token_acc": 0.8406663417816163, "gpu_alloc_gb": 12.88, "elapsed_s": 14583.9, "epoch": 1.6321036889332003} +{"step": 16380, "loss": 0.6361, "learning_rate": 1.7137796487466797e-05, "grad_norm": 1.061062216758728, "token_acc": 0.8403233110904693, "gpu_alloc_gb": 12.88, "elapsed_s": 14590.6, "epoch": 1.6331006979062812} +{"step": 16390, "loss": 0.5982, "learning_rate": 1.7047520615370626e-05, "grad_norm": 0.9613326787948608, "token_acc": 0.8473419666290283, "gpu_alloc_gb": 12.88, "elapsed_s": 14597.5, "epoch": 1.6340977068793618} +{"step": 16400, "loss": 0.6314, "learning_rate": 1.6957460981577343e-05, "grad_norm": 6.79484748840332, "token_acc": 0.841280072927475, "gpu_alloc_gb": 12.88, "elapsed_s": 14604.3, "epoch": 1.6350947158524427} +{"step": 16410, "loss": 0.6141, "learning_rate": 1.6867617820852024e-05, "grad_norm": 10.967827796936035, "token_acc": 0.8437224626541138, "gpu_alloc_gb": 12.88, "elapsed_s": 14610.7, "epoch": 1.6360917248255236} +{"step": 16420, "loss": 0.593, "learning_rate": 1.677799136739534e-05, "grad_norm": 1.0738269090652466, "token_acc": 0.8486208736896514, "gpu_alloc_gb": 12.88, "elapsed_s": 14617.8, "epoch": 1.6370887337986042} +{"step": 16430, "loss": 0.6185, "learning_rate": 1.66885818548432e-05, "grad_norm": 1.0917363166809082, "token_acc": 0.8422804057598114, "gpu_alloc_gb": 12.88, "elapsed_s": 14624.7, "epoch": 1.6380857427716848} +{"step": 16440, "loss": 0.5886, "learning_rate": 1.6599389516265862e-05, "grad_norm": 6.8129777908325195, "token_acc": 0.8507861435413361, "gpu_alloc_gb": 12.88, "elapsed_s": 14631.3, "epoch": 1.6390827517447657} +{"step": 16450, "loss": 0.6155, "learning_rate": 1.65104145841676e-05, "grad_norm": 1.0365662574768066, "token_acc": 0.8485663592815399, "gpu_alloc_gb": 12.88, "elapsed_s": 14637.8, "epoch": 1.6400797607178466} +{"step": 16460, "loss": 0.6076, "learning_rate": 1.6421657290485848e-05, "grad_norm": 1.1051433086395264, "token_acc": 0.8447675108909607, "gpu_alloc_gb": 12.88, "elapsed_s": 14644.5, "epoch": 1.6410767696909272} +{"step": 16470, "loss": 0.6033, "learning_rate": 1.633311786659073e-05, "grad_norm": 1.2312414646148682, "token_acc": 0.849181878566742, "gpu_alloc_gb": 12.88, "elapsed_s": 14651.3, "epoch": 1.6420737786640078} +{"step": 16480, "loss": 0.5952, "learning_rate": 1.624479654328446e-05, "grad_norm": 1.1226187944412231, "token_acc": 0.8469524681568146, "gpu_alloc_gb": 12.88, "elapsed_s": 14658.0, "epoch": 1.6430707876370887} +{"step": 16490, "loss": 0.6317, "learning_rate": 1.615669355080073e-05, "grad_norm": 1.1617836952209473, "token_acc": 0.8425601363182068, "gpu_alloc_gb": 12.88, "elapsed_s": 14664.8, "epoch": 1.6440677966101696} +{"step": 16500, "loss": 0.5869, "learning_rate": 1.6068809118803997e-05, "grad_norm": 1.0687644481658936, "token_acc": 0.8508389472961426, "gpu_alloc_gb": 12.88, "elapsed_s": 14671.3, "epoch": 1.6450648055832504} +{"step": 16500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 14738.2, "epoch": 1.6450648055832504} +{"step": 16500, "eval_loss": 1.246882438659668, "eval_step": true} +{"step": 16510, "loss": 0.6274, "learning_rate": 1.5981143476389103e-05, "grad_norm": 4.933051109313965, "token_acc": 0.8415205657482148, "gpu_alloc_gb": 12.88, "elapsed_s": 14795.9, "epoch": 1.646061814556331} +{"step": 16520, "loss": 0.6253, "learning_rate": 1.5893696852080463e-05, "grad_norm": 1.2221702337265015, "token_acc": 0.8434686899185181, "gpu_alloc_gb": 12.88, "elapsed_s": 14802.4, "epoch": 1.6470588235294117} +{"step": 16530, "loss": 0.6162, "learning_rate": 1.580646947383162e-05, "grad_norm": 10.756424903869629, "token_acc": 0.8461274027824401, "gpu_alloc_gb": 12.88, "elapsed_s": 14809.0, "epoch": 1.6480558325024925} +{"step": 16540, "loss": 0.607, "learning_rate": 1.5719461569024575e-05, "grad_norm": 8.61882209777832, "token_acc": 0.8444727122783661, "gpu_alloc_gb": 12.88, "elapsed_s": 14815.6, "epoch": 1.6490528414755734} +{"step": 16550, "loss": 0.6195, "learning_rate": 1.5632673364469187e-05, "grad_norm": 1.1664209365844727, "token_acc": 0.8448174357414245, "gpu_alloc_gb": 12.88, "elapsed_s": 14822.3, "epoch": 1.650049850448654} +{"step": 16560, "loss": 0.6046, "learning_rate": 1.5546105086402586e-05, "grad_norm": 1.178246021270752, "token_acc": 0.8477382779121398, "gpu_alloc_gb": 12.88, "elapsed_s": 14828.9, "epoch": 1.6510468594217347} +{"step": 16570, "loss": 0.627, "learning_rate": 1.5459756960488725e-05, "grad_norm": 1.0720407962799072, "token_acc": 0.8409058272838592, "gpu_alloc_gb": 12.88, "elapsed_s": 14835.3, "epoch": 1.6520438683948155} +{"step": 16580, "loss": 0.6203, "learning_rate": 1.5373629211817543e-05, "grad_norm": 11.214710235595703, "token_acc": 0.8426652789115906, "gpu_alloc_gb": 12.88, "elapsed_s": 14841.8, "epoch": 1.6530408773678964} +{"step": 16590, "loss": 0.5941, "learning_rate": 1.5287722064904543e-05, "grad_norm": 1.1326861381530762, "token_acc": 0.8492344498634339, "gpu_alloc_gb": 12.88, "elapsed_s": 14848.5, "epoch": 1.654037886340977} +{"step": 16600, "loss": 0.6181, "learning_rate": 1.520203574369018e-05, "grad_norm": 1.1532784700393677, "token_acc": 0.8460063874721527, "gpu_alloc_gb": 12.88, "elapsed_s": 14854.9, "epoch": 1.6550348953140577} +{"step": 16610, "loss": 0.628, "learning_rate": 1.5116570471539293e-05, "grad_norm": 11.873841285705566, "token_acc": 0.8403568685054779, "gpu_alloc_gb": 12.88, "elapsed_s": 14861.9, "epoch": 1.6560319042871385} +{"step": 16620, "loss": 0.6385, "learning_rate": 1.5031326471240415e-05, "grad_norm": 1.5318514108657837, "token_acc": 0.8429775655269622, "gpu_alloc_gb": 12.88, "elapsed_s": 14868.6, "epoch": 1.6570289132602194} +{"step": 16630, "loss": 0.5846, "learning_rate": 1.4946303965005371e-05, "grad_norm": 1.1389110088348389, "token_acc": 0.8511021316051484, "gpu_alloc_gb": 12.88, "elapsed_s": 14875.0, "epoch": 1.6580259222333003} +{"step": 16640, "loss": 0.6056, "learning_rate": 1.4861503174468516e-05, "grad_norm": 1.1130484342575073, "token_acc": 0.8473872363567352, "gpu_alloc_gb": 12.88, "elapsed_s": 14881.7, "epoch": 1.659022931206381} +{"step": 16650, "loss": 0.5983, "learning_rate": 1.4776924320686303e-05, "grad_norm": 7.328729629516602, "token_acc": 0.8494581341743469, "gpu_alloc_gb": 12.88, "elapsed_s": 14888.4, "epoch": 1.6600199401794615} +{"step": 16660, "loss": 0.6198, "learning_rate": 1.4692567624136644e-05, "grad_norm": 1.122616171836853, "token_acc": 0.8435929656028748, "gpu_alloc_gb": 12.88, "elapsed_s": 14894.9, "epoch": 1.6610169491525424} +{"step": 16670, "loss": 0.5793, "learning_rate": 1.4608433304718283e-05, "grad_norm": 20.300647735595703, "token_acc": 0.8488862156867981, "gpu_alloc_gb": 12.88, "elapsed_s": 14901.6, "epoch": 1.6620139581256232} +{"step": 16680, "loss": 0.6313, "learning_rate": 1.4524521581750284e-05, "grad_norm": 1.178206443786621, "token_acc": 0.8419682443141937, "gpu_alloc_gb": 12.88, "elapsed_s": 14908.3, "epoch": 1.6630109670987039} +{"step": 16690, "loss": 0.5758, "learning_rate": 1.4440832673971571e-05, "grad_norm": 11.327980995178223, "token_acc": 0.8557191073894501, "gpu_alloc_gb": 12.88, "elapsed_s": 14914.8, "epoch": 1.6640079760717845} +{"step": 16700, "loss": 0.6045, "learning_rate": 1.4357366799540084e-05, "grad_norm": 0.9425012469291687, "token_acc": 0.8458499848842621, "gpu_alloc_gb": 12.88, "elapsed_s": 14921.4, "epoch": 1.6650049850448654} +{"step": 16710, "loss": 0.6397, "learning_rate": 1.4274124176032434e-05, "grad_norm": 1.7995504140853882, "token_acc": 0.8403782963752746, "gpu_alloc_gb": 12.88, "elapsed_s": 14928.2, "epoch": 1.6660019940179462} +{"step": 16720, "loss": 0.62, "learning_rate": 1.4191105020443263e-05, "grad_norm": 1.1095749139785767, "token_acc": 0.8420697987079621, "gpu_alloc_gb": 12.88, "elapsed_s": 14934.7, "epoch": 1.6669990029910269} +{"step": 16730, "loss": 0.5835, "learning_rate": 1.4108309549184728e-05, "grad_norm": 10.119951248168945, "token_acc": 0.8491222083568573, "gpu_alloc_gb": 12.88, "elapsed_s": 14941.2, "epoch": 1.6679960119641075} +{"step": 16740, "loss": 0.6127, "learning_rate": 1.4025737978085773e-05, "grad_norm": 1.1713531017303467, "token_acc": 0.8411366224288941, "gpu_alloc_gb": 12.88, "elapsed_s": 14947.8, "epoch": 1.6689930209371884} +{"step": 16750, "loss": 0.6244, "learning_rate": 1.3943390522391841e-05, "grad_norm": 1.166213870048523, "token_acc": 0.8448926627635955, "gpu_alloc_gb": 12.88, "elapsed_s": 14954.2, "epoch": 1.6699900299102692} +{"step": 16750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 15021.1, "epoch": 1.6699900299102692} +{"step": 16750, "eval_loss": 1.2362474203109741, "eval_step": true} +{"step": 16760, "loss": 0.5831, "learning_rate": 1.3861267396763999e-05, "grad_norm": 1.0296639204025269, "token_acc": 0.8502747714519501, "gpu_alloc_gb": 12.88, "elapsed_s": 15069.2, "epoch": 1.67098703888335} +{"step": 16770, "loss": 0.6119, "learning_rate": 1.3779368815278647e-05, "grad_norm": 7.408182144165039, "token_acc": 0.8448946058750153, "gpu_alloc_gb": 12.88, "elapsed_s": 15076.0, "epoch": 1.6719840478564307} +{"step": 16780, "loss": 0.6018, "learning_rate": 1.3697694991426846e-05, "grad_norm": 1.1816763877868652, "token_acc": 0.8473436117172242, "gpu_alloc_gb": 12.88, "elapsed_s": 15082.9, "epoch": 1.6729810568295114} +{"step": 16790, "loss": 0.6016, "learning_rate": 1.3616246138113697e-05, "grad_norm": 1.1113935708999634, "token_acc": 0.8483538329601288, "gpu_alloc_gb": 12.88, "elapsed_s": 15089.5, "epoch": 1.6739780658025922} +{"step": 16800, "loss": 0.6151, "learning_rate": 1.3535022467657865e-05, "grad_norm": 1.1392821073532104, "token_acc": 0.8415262162685394, "gpu_alloc_gb": 12.88, "elapsed_s": 15096.1, "epoch": 1.674975074775673} +{"step": 16810, "loss": 0.5992, "learning_rate": 1.3454024191791103e-05, "grad_norm": 1.0620440244674683, "token_acc": 0.8458343625068665, "gpu_alloc_gb": 12.88, "elapsed_s": 15103.0, "epoch": 1.6759720837487537} +{"step": 16820, "loss": 0.6028, "learning_rate": 1.3373251521657526e-05, "grad_norm": 1.1810449361801147, "token_acc": 0.8440033078193665, "gpu_alloc_gb": 12.88, "elapsed_s": 15109.9, "epoch": 1.6769690927218344} +{"step": 16830, "loss": 0.6111, "learning_rate": 1.3292704667813127e-05, "grad_norm": 1.772670865058899, "token_acc": 0.8468392491340637, "gpu_alloc_gb": 12.88, "elapsed_s": 15116.5, "epoch": 1.6779661016949152} +{"step": 16840, "loss": 0.6072, "learning_rate": 1.3212383840225329e-05, "grad_norm": 1.1892389059066772, "token_acc": 0.8462385177612305, "gpu_alloc_gb": 12.88, "elapsed_s": 15123.0, "epoch": 1.678963110667996} +{"step": 16850, "loss": 0.6167, "learning_rate": 1.3132289248272334e-05, "grad_norm": 1.2914842367172241, "token_acc": 0.841748058795929, "gpu_alloc_gb": 12.88, "elapsed_s": 15129.8, "epoch": 1.6799601196410767} +{"step": 16860, "loss": 0.6216, "learning_rate": 1.3052421100742529e-05, "grad_norm": 1.1020535230636597, "token_acc": 0.8446176707744598, "gpu_alloc_gb": 12.88, "elapsed_s": 15136.5, "epoch": 1.6809571286141576} +{"step": 16870, "loss": 0.6255, "learning_rate": 1.2972779605834107e-05, "grad_norm": 9.552967071533203, "token_acc": 0.8447048664093018, "gpu_alloc_gb": 12.88, "elapsed_s": 15143.2, "epoch": 1.6819541375872382} +{"step": 16880, "loss": 0.6095, "learning_rate": 1.2893364971154342e-05, "grad_norm": 1.1025089025497437, "token_acc": 0.8441883087158203, "gpu_alloc_gb": 12.88, "elapsed_s": 15149.7, "epoch": 1.682951146560319} +{"step": 16890, "loss": 0.6228, "learning_rate": 1.2814177403719219e-05, "grad_norm": 1.0799171924591064, "token_acc": 0.8446879029273987, "gpu_alloc_gb": 12.88, "elapsed_s": 15156.3, "epoch": 1.6839481555334} +{"step": 16900, "loss": 0.6083, "learning_rate": 1.2735217109952757e-05, "grad_norm": 1.2433383464813232, "token_acc": 0.8459802448749543, "gpu_alloc_gb": 12.88, "elapsed_s": 15162.9, "epoch": 1.6849451645064806} +{"step": 16910, "loss": 0.6201, "learning_rate": 1.2656484295686521e-05, "grad_norm": 1.5832968950271606, "token_acc": 0.8450376212596893, "gpu_alloc_gb": 12.88, "elapsed_s": 15169.6, "epoch": 1.6859421734795612} +{"step": 16920, "loss": 0.6094, "learning_rate": 1.2577979166159116e-05, "grad_norm": 20.420883178710938, "token_acc": 0.846823388338089, "gpu_alloc_gb": 12.88, "elapsed_s": 15176.1, "epoch": 1.686939182452642} +{"step": 16930, "loss": 0.5918, "learning_rate": 1.2499701926015628e-05, "grad_norm": 1.0765089988708496, "token_acc": 0.8494831085205078, "gpu_alloc_gb": 12.88, "elapsed_s": 15182.9, "epoch": 1.687936191425723} +{"step": 16940, "loss": 0.5711, "learning_rate": 1.2421652779307036e-05, "grad_norm": 1.1188225746154785, "token_acc": 0.8493419289588928, "gpu_alloc_gb": 12.88, "elapsed_s": 15189.4, "epoch": 1.6889332003988036} +{"step": 16950, "loss": 0.6111, "learning_rate": 1.2343831929489802e-05, "grad_norm": 1.2204160690307617, "token_acc": 0.8459178626537323, "gpu_alloc_gb": 12.88, "elapsed_s": 15196.4, "epoch": 1.6899302093718842} +{"step": 16960, "loss": 0.6069, "learning_rate": 1.226623957942521e-05, "grad_norm": 8.820494651794434, "token_acc": 0.843615984916687, "gpu_alloc_gb": 12.88, "elapsed_s": 15202.9, "epoch": 1.690927218344965} +{"step": 16970, "loss": 0.5888, "learning_rate": 1.2188875931378919e-05, "grad_norm": 1.1329950094223022, "token_acc": 0.8490739583969116, "gpu_alloc_gb": 12.88, "elapsed_s": 15209.5, "epoch": 1.691924227318046} +{"step": 16980, "loss": 0.6121, "learning_rate": 1.2111741187020441e-05, "grad_norm": 1.1516097784042358, "token_acc": 0.8467876315116882, "gpu_alloc_gb": 12.88, "elapsed_s": 15216.2, "epoch": 1.6929212362911268} +{"step": 16990, "loss": 0.6005, "learning_rate": 1.2034835547422552e-05, "grad_norm": 1.1122337579727173, "token_acc": 0.8465538740158081, "gpu_alloc_gb": 12.88, "elapsed_s": 15222.7, "epoch": 1.6939182452642074} +{"step": 17000, "loss": 0.5887, "learning_rate": 1.1958159213060794e-05, "grad_norm": 3.857471466064453, "token_acc": 0.8480761587619782, "gpu_alloc_gb": 12.88, "elapsed_s": 15229.5, "epoch": 1.694915254237288} +{"step": 17000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 15296.3, "epoch": 1.694915254237288} +{"step": 17000, "eval_loss": 1.233311414718628, "eval_step": true} +{"step": 17010, "loss": 0.6056, "learning_rate": 1.1881712383813003e-05, "grad_norm": 1.1131004095077515, "token_acc": 0.845526248216629, "gpu_alloc_gb": 12.88, "elapsed_s": 15339.6, "epoch": 1.695912263210369} +{"step": 17020, "loss": 0.6253, "learning_rate": 1.1805495258958731e-05, "grad_norm": 4.181933403015137, "token_acc": 0.8422489285469055, "gpu_alloc_gb": 12.88, "elapsed_s": 15346.5, "epoch": 1.6969092721834498} +{"step": 17030, "loss": 0.589, "learning_rate": 1.1729508037178728e-05, "grad_norm": 1.6356337070465088, "token_acc": 0.8499123752117157, "gpu_alloc_gb": 12.88, "elapsed_s": 15353.2, "epoch": 1.6979062811565304} +{"step": 17040, "loss": 0.6214, "learning_rate": 1.1653750916554462e-05, "grad_norm": 1.286399245262146, "token_acc": 0.8431990385055542, "gpu_alloc_gb": 12.88, "elapsed_s": 15360.0, "epoch": 1.698903290129611} +{"step": 17050, "loss": 0.6158, "learning_rate": 1.1578224094567547e-05, "grad_norm": 26.279773712158203, "token_acc": 0.8447307169437408, "gpu_alloc_gb": 12.88, "elapsed_s": 15366.4, "epoch": 1.699900299102692} +{"step": 17060, "loss": 0.6181, "learning_rate": 1.150292776809928e-05, "grad_norm": 1.0797311067581177, "token_acc": 0.8467457056045532, "gpu_alloc_gb": 12.88, "elapsed_s": 15373.1, "epoch": 1.7008973080757728} +{"step": 17070, "loss": 0.6256, "learning_rate": 1.1427862133430156e-05, "grad_norm": 1.3380467891693115, "token_acc": 0.8438238024711608, "gpu_alloc_gb": 12.88, "elapsed_s": 15379.8, "epoch": 1.7018943170488534} +{"step": 17080, "loss": 0.6072, "learning_rate": 1.13530273862392e-05, "grad_norm": 11.041513442993164, "token_acc": 0.8451373934745788, "gpu_alloc_gb": 12.88, "elapsed_s": 15386.3, "epoch": 1.702891326021934} +{"step": 17090, "loss": 0.5756, "learning_rate": 1.127842372160366e-05, "grad_norm": 1.1102845668792725, "token_acc": 0.8510722517967224, "gpu_alloc_gb": 12.88, "elapsed_s": 15393.0, "epoch": 1.703888334995015} +{"step": 17100, "loss": 0.6205, "learning_rate": 1.1204051333998389e-05, "grad_norm": 1.2801684141159058, "token_acc": 0.8445123136043549, "gpu_alloc_gb": 12.88, "elapsed_s": 15399.6, "epoch": 1.7048853439680958} +{"step": 17110, "loss": 0.5992, "learning_rate": 1.1129910417295319e-05, "grad_norm": 7.460626602172852, "token_acc": 0.8469958424568176, "gpu_alloc_gb": 12.88, "elapsed_s": 15406.2, "epoch": 1.7058823529411766} +{"step": 17120, "loss": 0.6095, "learning_rate": 1.1056001164762975e-05, "grad_norm": 1.0118056535720825, "token_acc": 0.8438609063625335, "gpu_alloc_gb": 12.88, "elapsed_s": 15412.8, "epoch": 1.7068793619142573} +{"step": 17130, "loss": 0.6067, "learning_rate": 1.0982323769066061e-05, "grad_norm": 1.0484603643417358, "token_acc": 0.8445738554000854, "gpu_alloc_gb": 12.88, "elapsed_s": 15419.2, "epoch": 1.707876370887338} +{"step": 17140, "loss": 0.6197, "learning_rate": 1.0908878422264835e-05, "grad_norm": 1.1037561893463135, "token_acc": 0.8409314513206482, "gpu_alloc_gb": 12.88, "elapsed_s": 15425.9, "epoch": 1.7088733798604188} +{"step": 17150, "loss": 0.5905, "learning_rate": 1.0835665315814636e-05, "grad_norm": 0.9570531845092773, "token_acc": 0.8529473662376403, "gpu_alloc_gb": 12.88, "elapsed_s": 15432.4, "epoch": 1.7098703888334996} +{"step": 17160, "loss": 0.6023, "learning_rate": 1.0762684640565457e-05, "grad_norm": 1.104276180267334, "token_acc": 0.8435619950294495, "gpu_alloc_gb": 12.88, "elapsed_s": 15438.9, "epoch": 1.7108673978065803} +{"step": 17170, "loss": 0.6212, "learning_rate": 1.0689936586761352e-05, "grad_norm": 1.153130292892456, "token_acc": 0.8417273998260498, "gpu_alloc_gb": 12.88, "elapsed_s": 15445.5, "epoch": 1.711864406779661} +{"step": 17180, "loss": 0.6014, "learning_rate": 1.061742134404e-05, "grad_norm": 1.0377626419067383, "token_acc": 0.8513704478740692, "gpu_alloc_gb": 12.88, "elapsed_s": 15452.0, "epoch": 1.7128614157527418} +{"step": 17190, "loss": 0.615, "learning_rate": 1.0545139101432223e-05, "grad_norm": 1.1321141719818115, "token_acc": 0.8418856084346771, "gpu_alloc_gb": 12.88, "elapsed_s": 15458.7, "epoch": 1.7138584247258226} +{"step": 17200, "loss": 0.5923, "learning_rate": 1.0473090047361389e-05, "grad_norm": 1.0550837516784668, "token_acc": 0.8476112902164459, "gpu_alloc_gb": 12.88, "elapsed_s": 15465.3, "epoch": 1.7148554336989033} +{"step": 17210, "loss": 0.575, "learning_rate": 1.0401274369643076e-05, "grad_norm": 0.9827185869216919, "token_acc": 0.8514674842357636, "gpu_alloc_gb": 12.88, "elapsed_s": 15471.8, "epoch": 1.715852442671984} +{"step": 17220, "loss": 0.5907, "learning_rate": 1.032969225548448e-05, "grad_norm": 7.468310832977295, "token_acc": 0.8503445684909821, "gpu_alloc_gb": 12.88, "elapsed_s": 15478.5, "epoch": 1.7168494516450648} +{"step": 17230, "loss": 0.6008, "learning_rate": 1.0258343891483924e-05, "grad_norm": 1.052441954612732, "token_acc": 0.8461473464965821, "gpu_alloc_gb": 12.88, "elapsed_s": 15485.1, "epoch": 1.7178464606181456} +{"step": 17240, "loss": 0.6088, "learning_rate": 1.01872294636304e-05, "grad_norm": 1.0730353593826294, "token_acc": 0.8430115044116974, "gpu_alloc_gb": 12.88, "elapsed_s": 15491.8, "epoch": 1.7188434695912265} +{"step": 17250, "loss": 0.597, "learning_rate": 1.0116349157303096e-05, "grad_norm": 1.0637842416763306, "token_acc": 0.8491204380989075, "gpu_alloc_gb": 12.88, "elapsed_s": 15498.4, "epoch": 1.719840478564307} +{"step": 17250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 15565.3, "epoch": 1.719840478564307} +{"step": 17250, "eval_loss": 1.236847162246704, "eval_step": true} +{"step": 17260, "loss": 0.623, "learning_rate": 1.0045703157270936e-05, "grad_norm": 1.324708104133606, "token_acc": 0.8428574919700622, "gpu_alloc_gb": 12.88, "elapsed_s": 15608.2, "epoch": 1.7208374875373877} +{"step": 17270, "loss": 0.596, "learning_rate": 9.975291647691986e-06, "grad_norm": 4.611408233642578, "token_acc": 0.846193379163742, "gpu_alloc_gb": 12.88, "elapsed_s": 15614.8, "epoch": 1.7218344965104686} +{"step": 17280, "loss": 0.6227, "learning_rate": 9.905114812113104e-06, "grad_norm": 8.062012672424316, "token_acc": 0.84019695520401, "gpu_alloc_gb": 12.88, "elapsed_s": 15621.3, "epoch": 1.7228315054835495} +{"step": 17290, "loss": 0.5944, "learning_rate": 9.835172833469331e-06, "grad_norm": 1.1706616878509521, "token_acc": 0.8478233695030213, "gpu_alloc_gb": 12.88, "elapsed_s": 15627.9, "epoch": 1.72382851445663} +{"step": 17300, "loss": 0.605, "learning_rate": 9.765465894083636e-06, "grad_norm": 1.0786739587783813, "token_acc": 0.8469475030899047, "gpu_alloc_gb": 12.88, "elapsed_s": 15634.6, "epoch": 1.7248255234297107} +{"step": 17310, "loss": 0.5806, "learning_rate": 9.695994175666156e-06, "grad_norm": 3.4914839267730713, "token_acc": 0.8487823247909546, "gpu_alloc_gb": 12.88, "elapsed_s": 15641.2, "epoch": 1.7258225324027916} +{"step": 17320, "loss": 0.6039, "learning_rate": 9.626757859313895e-06, "grad_norm": 1.141227126121521, "token_acc": 0.8494286000728607, "gpu_alloc_gb": 12.88, "elapsed_s": 15647.7, "epoch": 1.7268195413758725} +{"step": 17330, "loss": 0.5936, "learning_rate": 9.557757125510236e-06, "grad_norm": 1.0480891466140747, "token_acc": 0.8508416593074799, "gpu_alloc_gb": 12.88, "elapsed_s": 15654.2, "epoch": 1.727816550348953} +{"step": 17340, "loss": 0.587, "learning_rate": 9.488992154124477e-06, "grad_norm": 3.462066888809204, "token_acc": 0.8482256591320038, "gpu_alloc_gb": 12.88, "elapsed_s": 15660.7, "epoch": 1.7288135593220337} +{"step": 17350, "loss": 0.6042, "learning_rate": 9.42046312441125e-06, "grad_norm": 10.537130355834961, "token_acc": 0.8461843311786652, "gpu_alloc_gb": 12.88, "elapsed_s": 15667.8, "epoch": 1.7298105682951146} +{"step": 17360, "loss": 0.6166, "learning_rate": 9.352170215010248e-06, "grad_norm": 1.2818188667297363, "token_acc": 0.8437447488307953, "gpu_alloc_gb": 12.88, "elapsed_s": 15674.4, "epoch": 1.7308075772681955} +{"step": 17370, "loss": 0.6154, "learning_rate": 9.284113603945554e-06, "grad_norm": 7.701406955718994, "token_acc": 0.8449379503726959, "gpu_alloc_gb": 12.88, "elapsed_s": 15681.0, "epoch": 1.7318045862412763} +{"step": 17380, "loss": 0.6022, "learning_rate": 9.216293468625348e-06, "grad_norm": 6.355823040008545, "token_acc": 0.8482015609741211, "gpu_alloc_gb": 12.88, "elapsed_s": 15687.7, "epoch": 1.732801595214357} +{"step": 17390, "loss": 0.6, "learning_rate": 9.148709985841353e-06, "grad_norm": 1.1846845149993896, "token_acc": 0.8479216456413269, "gpu_alloc_gb": 12.88, "elapsed_s": 15694.2, "epoch": 1.7337986041874376} +{"step": 17400, "loss": 0.6111, "learning_rate": 9.081363331768367e-06, "grad_norm": 1.246928334236145, "token_acc": 0.8468023121356965, "gpu_alloc_gb": 12.88, "elapsed_s": 15700.7, "epoch": 1.7347956131605184} +{"step": 17410, "loss": 0.5939, "learning_rate": 9.014253681963813e-06, "grad_norm": 1.056317687034607, "token_acc": 0.8477228999137878, "gpu_alloc_gb": 12.88, "elapsed_s": 15707.3, "epoch": 1.7357926221335993} +{"step": 17420, "loss": 0.5782, "learning_rate": 8.94738121136739e-06, "grad_norm": 1.0563580989837646, "token_acc": 0.852829122543335, "gpu_alloc_gb": 12.88, "elapsed_s": 15713.8, "epoch": 1.73678963110668} +{"step": 17430, "loss": 0.6114, "learning_rate": 8.880746094300441e-06, "grad_norm": 1.1906614303588867, "token_acc": 0.8481184720993042, "gpu_alloc_gb": 12.88, "elapsed_s": 15720.6, "epoch": 1.7377866400797606} +{"step": 17440, "loss": 0.6059, "learning_rate": 8.814348504465585e-06, "grad_norm": 0.9770002365112305, "token_acc": 0.8470851421356201, "gpu_alloc_gb": 12.88, "elapsed_s": 15727.3, "epoch": 1.7387836490528414} +{"step": 17450, "loss": 0.5997, "learning_rate": 8.748188614946295e-06, "grad_norm": 1.1177618503570557, "token_acc": 0.8463676512241364, "gpu_alloc_gb": 12.88, "elapsed_s": 15733.8, "epoch": 1.7397806580259223} +{"step": 17460, "loss": 0.6076, "learning_rate": 8.682266598206423e-06, "grad_norm": 1.3175475597381592, "token_acc": 0.8465232193470001, "gpu_alloc_gb": 12.88, "elapsed_s": 15740.5, "epoch": 1.740777666999003} +{"step": 17470, "loss": 0.6145, "learning_rate": 8.616582626089675e-06, "grad_norm": 1.1481891870498657, "token_acc": 0.8429307997226715, "gpu_alloc_gb": 12.88, "elapsed_s": 15747.2, "epoch": 1.7417746759720838} +{"step": 17480, "loss": 0.6096, "learning_rate": 8.551136869819321e-06, "grad_norm": 1.3178815841674805, "token_acc": 0.8461602687835693, "gpu_alloc_gb": 12.88, "elapsed_s": 15753.8, "epoch": 1.7427716849451644} +{"step": 17490, "loss": 0.6017, "learning_rate": 8.485929499997557e-06, "grad_norm": 1.1091907024383545, "token_acc": 0.8468269407749176, "gpu_alloc_gb": 12.88, "elapsed_s": 15760.3, "epoch": 1.7437686939182453} +{"step": 17500, "loss": 0.5989, "learning_rate": 8.420960686605229e-06, "grad_norm": 1.077163815498352, "token_acc": 0.8481230437755585, "gpu_alloc_gb": 12.88, "elapsed_s": 15766.7, "epoch": 1.7447657028913262} +{"step": 17500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 15833.5, "epoch": 1.7447657028913262} +{"step": 17500, "eval_loss": 1.2342264652252197, "eval_step": true} +{"step": 17510, "loss": 0.6057, "learning_rate": 8.356230599001324e-06, "grad_norm": 1.145600438117981, "token_acc": 0.8469249486923218, "gpu_alloc_gb": 12.88, "elapsed_s": 15877.0, "epoch": 1.7457627118644068} +{"step": 17520, "loss": 0.6403, "learning_rate": 8.291739405922484e-06, "grad_norm": 1.1859540939331055, "token_acc": 0.8376070261001587, "gpu_alloc_gb": 12.88, "elapsed_s": 15883.9, "epoch": 1.7467597208374874} +{"step": 17530, "loss": 0.5988, "learning_rate": 8.227487275482592e-06, "grad_norm": 1.1737544536590576, "token_acc": 0.8493171572685242, "gpu_alloc_gb": 12.88, "elapsed_s": 15890.5, "epoch": 1.7477567298105683} +{"step": 17540, "loss": 0.6003, "learning_rate": 8.163474375172442e-06, "grad_norm": 12.768840789794922, "token_acc": 0.8466849207878113, "gpu_alloc_gb": 12.88, "elapsed_s": 15897.1, "epoch": 1.7487537387836491} +{"step": 17550, "loss": 0.6082, "learning_rate": 8.099700871859117e-06, "grad_norm": 1.156536340713501, "token_acc": 0.8481020629405975, "gpu_alloc_gb": 12.88, "elapsed_s": 15903.8, "epoch": 1.7497507477567298} +{"step": 17560, "loss": 0.5834, "learning_rate": 8.036166931785661e-06, "grad_norm": 1.0646384954452515, "token_acc": 0.8505487322807312, "gpu_alloc_gb": 12.88, "elapsed_s": 15910.3, "epoch": 1.7507477567298104} +{"step": 17570, "loss": 0.5926, "learning_rate": 7.972872720570679e-06, "grad_norm": 1.0744304656982422, "token_acc": 0.8485446095466613, "gpu_alloc_gb": 12.88, "elapsed_s": 15916.9, "epoch": 1.7517447657028913} +{"step": 17580, "loss": 0.6045, "learning_rate": 7.909818403207825e-06, "grad_norm": 13.293928146362305, "token_acc": 0.845343142747879, "gpu_alloc_gb": 12.88, "elapsed_s": 15923.4, "epoch": 1.7527417746759721} +{"step": 17590, "loss": 0.5885, "learning_rate": 7.847004144065384e-06, "grad_norm": 0.9657739400863647, "token_acc": 0.8479887306690216, "gpu_alloc_gb": 12.88, "elapsed_s": 15929.9, "epoch": 1.753738783649053} +{"step": 17600, "loss": 0.6059, "learning_rate": 7.78443010688591e-06, "grad_norm": 7.869048595428467, "token_acc": 0.8438855886459351, "gpu_alloc_gb": 12.88, "elapsed_s": 15936.5, "epoch": 1.7547357926221336} +{"step": 17610, "loss": 0.5916, "learning_rate": 7.722096454785699e-06, "grad_norm": 10.609525680541992, "token_acc": 0.8500885426998138, "gpu_alloc_gb": 12.88, "elapsed_s": 15943.1, "epoch": 1.7557328015952143} +{"step": 17620, "loss": 0.6066, "learning_rate": 7.660003350254474e-06, "grad_norm": 1.184665560722351, "token_acc": 0.8457946062088013, "gpu_alloc_gb": 12.88, "elapsed_s": 15949.8, "epoch": 1.7567298105682951} +{"step": 17630, "loss": 0.609, "learning_rate": 7.59815095515487e-06, "grad_norm": 5.82246208190918, "token_acc": 0.8477942287921906, "gpu_alloc_gb": 12.88, "elapsed_s": 15956.4, "epoch": 1.757726819541376} +{"step": 17640, "loss": 0.6024, "learning_rate": 7.5365394307220675e-06, "grad_norm": 1.0344165563583374, "token_acc": 0.8474148392677308, "gpu_alloc_gb": 12.88, "elapsed_s": 15963.0, "epoch": 1.7587238285144566} +{"step": 17650, "loss": 0.599, "learning_rate": 7.4751689375632815e-06, "grad_norm": 1.1043003797531128, "token_acc": 0.8481548070907593, "gpu_alloc_gb": 12.88, "elapsed_s": 15969.5, "epoch": 1.7597208374875373} +{"step": 17660, "loss": 0.5998, "learning_rate": 7.414039635657544e-06, "grad_norm": 1.269432783126831, "token_acc": 0.8478793263435364, "gpu_alloc_gb": 12.88, "elapsed_s": 15976.3, "epoch": 1.7607178464606181} +{"step": 17670, "loss": 0.6165, "learning_rate": 7.353151684355064e-06, "grad_norm": 1.1174755096435547, "token_acc": 0.8427399456501007, "gpu_alloc_gb": 12.88, "elapsed_s": 15982.9, "epoch": 1.761714855433699} +{"step": 17680, "loss": 0.6111, "learning_rate": 7.29250524237689e-06, "grad_norm": 1.2892051935195923, "token_acc": 0.8438271701335907, "gpu_alloc_gb": 12.88, "elapsed_s": 15989.5, "epoch": 1.7627118644067796} +{"step": 17690, "loss": 0.6032, "learning_rate": 7.232100467814562e-06, "grad_norm": 1.2152597904205322, "token_acc": 0.8458109259605407, "gpu_alloc_gb": 12.88, "elapsed_s": 15996.5, "epoch": 1.7637088733798603} +{"step": 17700, "loss": 0.5838, "learning_rate": 7.171937518129657e-06, "grad_norm": 1.1792957782745361, "token_acc": 0.8524659454822541, "gpu_alloc_gb": 12.88, "elapsed_s": 16002.9, "epoch": 1.7647058823529411} +{"step": 17710, "loss": 0.6106, "learning_rate": 7.1120165501533e-06, "grad_norm": 3.1166203022003174, "token_acc": 0.8483850300312042, "gpu_alloc_gb": 12.88, "elapsed_s": 16009.5, "epoch": 1.765702891326022} +{"step": 17720, "loss": 0.5796, "learning_rate": 7.0523377200859e-06, "grad_norm": 1.0653752088546753, "token_acc": 0.8510367214679718, "gpu_alloc_gb": 12.88, "elapsed_s": 16016.1, "epoch": 1.7666999002991028} +{"step": 17730, "loss": 0.6072, "learning_rate": 6.992901183496603e-06, "grad_norm": 1.1187787055969238, "token_acc": 0.8469208717346192, "gpu_alloc_gb": 12.88, "elapsed_s": 16022.8, "epoch": 1.7676969092721835} +{"step": 17740, "loss": 0.6298, "learning_rate": 6.933707095322994e-06, "grad_norm": 1.1995553970336914, "token_acc": 0.8420338869094849, "gpu_alloc_gb": 12.88, "elapsed_s": 16029.8, "epoch": 1.7686939182452641} +{"step": 17750, "loss": 0.6169, "learning_rate": 6.874755609870653e-06, "grad_norm": 1.1157366037368774, "token_acc": 0.8441327631473541, "gpu_alloc_gb": 12.88, "elapsed_s": 16036.3, "epoch": 1.769690927218345} +{"step": 17750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 16103.1, "epoch": 1.769690927218345} +{"step": 17750, "eval_loss": 1.2355655431747437, "eval_step": true} +{"step": 17760, "loss": 0.5769, "learning_rate": 6.81604688081271e-06, "grad_norm": 0.9792534112930298, "token_acc": 0.8515967965126038, "gpu_alloc_gb": 12.88, "elapsed_s": 16150.2, "epoch": 1.7706879361914258} +{"step": 17770, "loss": 0.6415, "learning_rate": 6.757581061189544e-06, "grad_norm": 10.981800079345703, "token_acc": 0.8403366386890412, "gpu_alloc_gb": 12.88, "elapsed_s": 16156.8, "epoch": 1.7716849451645065} +{"step": 17780, "loss": 0.6361, "learning_rate": 6.699358303408243e-06, "grad_norm": 8.173376083374023, "token_acc": 0.8399646282196045, "gpu_alloc_gb": 12.88, "elapsed_s": 16163.6, "epoch": 1.7726819541375871} +{"step": 17790, "loss": 0.6095, "learning_rate": 6.641378759242356e-06, "grad_norm": 1.1463360786437988, "token_acc": 0.8465604603290557, "gpu_alloc_gb": 12.88, "elapsed_s": 16170.0, "epoch": 1.773678963110668} +{"step": 17800, "loss": 0.6238, "learning_rate": 6.583642579831417e-06, "grad_norm": 9.424409866333008, "token_acc": 0.8459533452987671, "gpu_alloc_gb": 12.88, "elapsed_s": 16176.6, "epoch": 1.7746759720837488} +{"step": 17810, "loss": 0.6068, "learning_rate": 6.526149915680535e-06, "grad_norm": 2.4704630374908447, "token_acc": 0.8426836252212524, "gpu_alloc_gb": 12.88, "elapsed_s": 16183.2, "epoch": 1.7756729810568295} +{"step": 17820, "loss": 0.6101, "learning_rate": 6.468900916660047e-06, "grad_norm": 1.0628923177719116, "token_acc": 0.8460516393184662, "gpu_alloc_gb": 12.88, "elapsed_s": 16189.7, "epoch": 1.77666999002991} +{"step": 17830, "loss": 0.5821, "learning_rate": 6.411895732005146e-06, "grad_norm": 1.1245700120925903, "token_acc": 0.852841567993164, "gpu_alloc_gb": 12.88, "elapsed_s": 16196.3, "epoch": 1.777666999002991} +{"step": 17840, "loss": 0.6166, "learning_rate": 6.3551345103153855e-06, "grad_norm": 12.112223625183105, "token_acc": 0.8461738169193268, "gpu_alloc_gb": 12.88, "elapsed_s": 16202.7, "epoch": 1.7786640079760718} +{"step": 17850, "loss": 0.5893, "learning_rate": 6.298617399554396e-06, "grad_norm": 12.279051780700684, "token_acc": 0.8502644777297974, "gpu_alloc_gb": 12.88, "elapsed_s": 16209.2, "epoch": 1.7796610169491527} +{"step": 17860, "loss": 0.619, "learning_rate": 6.242344547049483e-06, "grad_norm": 1.0427287817001343, "token_acc": 0.8458840072154998, "gpu_alloc_gb": 12.88, "elapsed_s": 16215.9, "epoch": 1.7806580259222333} +{"step": 17870, "loss": 0.6003, "learning_rate": 6.18631609949123e-06, "grad_norm": 5.196781635284424, "token_acc": 0.8455975174903869, "gpu_alloc_gb": 12.88, "elapsed_s": 16222.5, "epoch": 1.781655034895314} +{"step": 17880, "loss": 0.6092, "learning_rate": 6.130532202933048e-06, "grad_norm": 3.231759786605835, "token_acc": 0.8463523089885712, "gpu_alloc_gb": 12.88, "elapsed_s": 16229.2, "epoch": 1.7826520438683948} +{"step": 17890, "loss": 0.5923, "learning_rate": 6.074993002790963e-06, "grad_norm": 1.0973294973373413, "token_acc": 0.8463601887226104, "gpu_alloc_gb": 12.88, "elapsed_s": 16236.0, "epoch": 1.7836490528414757} +{"step": 17900, "loss": 0.627, "learning_rate": 6.019698643843019e-06, "grad_norm": 1.1663206815719604, "token_acc": 0.8439127504825592, "gpu_alloc_gb": 12.88, "elapsed_s": 16242.4, "epoch": 1.7846460618145563} +{"step": 17910, "loss": 0.5838, "learning_rate": 5.964649270229105e-06, "grad_norm": 1.0481032133102417, "token_acc": 0.8514573097229003, "gpu_alloc_gb": 12.88, "elapsed_s": 16248.9, "epoch": 1.785643070787637} +{"step": 17920, "loss": 0.6085, "learning_rate": 5.909845025450455e-06, "grad_norm": 1.1608102321624756, "token_acc": 0.8466977655887604, "gpu_alloc_gb": 12.88, "elapsed_s": 16255.5, "epoch": 1.7866400797607178} +{"step": 17930, "loss": 0.5878, "learning_rate": 5.8552860523692796e-06, "grad_norm": 1.7505308389663696, "token_acc": 0.8466950953006744, "gpu_alloc_gb": 12.88, "elapsed_s": 16262.2, "epoch": 1.7876370887337987} +{"step": 17940, "loss": 0.5987, "learning_rate": 5.800972493208479e-06, "grad_norm": 1.0952966213226318, "token_acc": 0.847496509552002, "gpu_alloc_gb": 12.88, "elapsed_s": 16268.9, "epoch": 1.7886340977068793} +{"step": 17950, "loss": 0.5643, "learning_rate": 5.746904489551186e-06, "grad_norm": 7.928841590881348, "token_acc": 0.8556940913200378, "gpu_alloc_gb": 12.88, "elapsed_s": 16275.3, "epoch": 1.7896311066799602} +{"step": 17960, "loss": 0.6065, "learning_rate": 5.693082182340415e-06, "grad_norm": 1.1577601432800293, "token_acc": 0.8454836070537567, "gpu_alloc_gb": 12.88, "elapsed_s": 16281.8, "epoch": 1.7906281156530408} +{"step": 17970, "loss": 0.5947, "learning_rate": 5.639505711878701e-06, "grad_norm": 1.0812257528305054, "token_acc": 0.8476740419864655, "gpu_alloc_gb": 12.88, "elapsed_s": 16288.5, "epoch": 1.7916251246261217} +{"step": 17980, "loss": 0.6015, "learning_rate": 5.586175217827761e-06, "grad_norm": 1.1201874017715454, "token_acc": 0.8431405365467072, "gpu_alloc_gb": 12.88, "elapsed_s": 16295.0, "epoch": 1.7926221335992025} +{"step": 17990, "loss": 0.6193, "learning_rate": 5.533090839208133e-06, "grad_norm": 6.243620872497559, "token_acc": 0.8464609026908875, "gpu_alloc_gb": 12.88, "elapsed_s": 16301.5, "epoch": 1.7936191425722832} +{"step": 18000, "loss": 0.6033, "learning_rate": 5.4802527143987036e-06, "grad_norm": 2.5586066246032715, "token_acc": 0.8454777002334595, "gpu_alloc_gb": 12.88, "elapsed_s": 16308.2, "epoch": 1.7946161515453638} +{"step": 18000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 16375.0, "epoch": 1.7946161515453638} +{"step": 18000, "eval_loss": 1.2380307912826538, "eval_step": true} +{"step": 18010, "loss": 0.6012, "learning_rate": 5.4276609811365175e-06, "grad_norm": 2.669135332107544, "token_acc": 0.8487318754196167, "gpu_alloc_gb": 12.88, "elapsed_s": 16422.5, "epoch": 1.7956131605184447} +{"step": 18020, "loss": 0.6237, "learning_rate": 5.375315776516276e-06, "grad_norm": 1.0366367101669312, "token_acc": 0.8411139726638794, "gpu_alloc_gb": 12.88, "elapsed_s": 16429.0, "epoch": 1.7966101694915255} +{"step": 18030, "loss": 0.5762, "learning_rate": 5.323217236990063e-06, "grad_norm": 1.2043659687042236, "token_acc": 0.8505030810832978, "gpu_alloc_gb": 12.88, "elapsed_s": 16435.6, "epoch": 1.7976071784646062} +{"step": 18040, "loss": 0.6015, "learning_rate": 5.271365498366976e-06, "grad_norm": 2.8235511779785156, "token_acc": 0.8486657738685608, "gpu_alloc_gb": 12.88, "elapsed_s": 16442.0, "epoch": 1.7986041874376868} +{"step": 18050, "loss": 0.6052, "learning_rate": 5.219760695812714e-06, "grad_norm": 10.188312530517578, "token_acc": 0.8481535196304322, "gpu_alloc_gb": 12.88, "elapsed_s": 16448.7, "epoch": 1.7996011964107677} +{"step": 18060, "loss": 0.6215, "learning_rate": 5.168402963849306e-06, "grad_norm": 11.455307006835938, "token_acc": 0.8456164240837097, "gpu_alloc_gb": 12.88, "elapsed_s": 16455.3, "epoch": 1.8005982053838485} +{"step": 18070, "loss": 0.6015, "learning_rate": 5.117292436354715e-06, "grad_norm": 3.540570020675659, "token_acc": 0.84727863073349, "gpu_alloc_gb": 12.88, "elapsed_s": 16461.8, "epoch": 1.8015952143569294} +{"step": 18080, "loss": 0.6103, "learning_rate": 5.066429246562509e-06, "grad_norm": 1.0711724758148193, "token_acc": 0.8479095935821533, "gpu_alloc_gb": 12.88, "elapsed_s": 16468.4, "epoch": 1.80259222333001} +{"step": 18090, "loss": 0.614, "learning_rate": 5.015813527061452e-06, "grad_norm": 1.074334740638733, "token_acc": 0.846302604675293, "gpu_alloc_gb": 12.88, "elapsed_s": 16474.9, "epoch": 1.8035892323030907} +{"step": 18100, "loss": 0.6004, "learning_rate": 4.965445409795266e-06, "grad_norm": 1.2217587232589722, "token_acc": 0.8465648889541626, "gpu_alloc_gb": 12.88, "elapsed_s": 16481.4, "epoch": 1.8045862412761715} +{"step": 18110, "loss": 0.6105, "learning_rate": 4.915325026062223e-06, "grad_norm": 1.4134495258331299, "token_acc": 0.8443294703960419, "gpu_alloc_gb": 12.88, "elapsed_s": 16488.0, "epoch": 1.8055832502492524} +{"step": 18120, "loss": 0.5959, "learning_rate": 4.865452506514778e-06, "grad_norm": 0.9560612440109253, "token_acc": 0.8493259429931641, "gpu_alloc_gb": 12.88, "elapsed_s": 16494.5, "epoch": 1.806580259222333} +{"step": 18130, "loss": 0.606, "learning_rate": 4.815827981159315e-06, "grad_norm": 1.2814064025878906, "token_acc": 0.8468034863471985, "gpu_alloc_gb": 12.88, "elapsed_s": 16501.0, "epoch": 1.8075772681954136} +{"step": 18140, "loss": 0.6219, "learning_rate": 4.766451579355657e-06, "grad_norm": 1.2413052320480347, "token_acc": 0.8440807700157166, "gpu_alloc_gb": 12.88, "elapsed_s": 16507.6, "epoch": 1.8085742771684945} +{"step": 18150, "loss": 0.5795, "learning_rate": 4.7173234298169445e-06, "grad_norm": 1.29928719997406, "token_acc": 0.8545191347599029, "gpu_alloc_gb": 12.88, "elapsed_s": 16514.1, "epoch": 1.8095712861415754} +{"step": 18160, "loss": 0.5883, "learning_rate": 4.668443660609112e-06, "grad_norm": 1.1056517362594604, "token_acc": 0.8504887998104096, "gpu_alloc_gb": 12.88, "elapsed_s": 16520.5, "epoch": 1.810568295114656} +{"step": 18170, "loss": 0.6112, "learning_rate": 4.6198123991506024e-06, "grad_norm": 0.9792237877845764, "token_acc": 0.8456957161426544, "gpu_alloc_gb": 12.88, "elapsed_s": 16527.2, "epoch": 1.8115653040877366} +{"step": 18180, "loss": 0.6378, "learning_rate": 4.5714297722121106e-06, "grad_norm": 1.237191081047058, "token_acc": 0.8401730060577393, "gpu_alloc_gb": 12.88, "elapsed_s": 16533.8, "epoch": 1.8125623130608175} +{"step": 18190, "loss": 0.5953, "learning_rate": 4.523295905916181e-06, "grad_norm": 5.50045919418335, "token_acc": 0.845851081609726, "gpu_alloc_gb": 12.88, "elapsed_s": 16540.4, "epoch": 1.8135593220338984} +{"step": 18200, "loss": 0.6086, "learning_rate": 4.475410925736867e-06, "grad_norm": 2.077305793762207, "token_acc": 0.8471035361289978, "gpu_alloc_gb": 12.88, "elapsed_s": 16546.7, "epoch": 1.8145563310069792} +{"step": 18210, "loss": 0.5849, "learning_rate": 4.427774956499464e-06, "grad_norm": 2.820258855819702, "token_acc": 0.8514481961727143, "gpu_alloc_gb": 12.88, "elapsed_s": 16553.2, "epoch": 1.8155533399800599} +{"step": 18220, "loss": 0.6032, "learning_rate": 4.380388122380141e-06, "grad_norm": 17.336885452270508, "token_acc": 0.8467388093471527, "gpu_alloc_gb": 12.88, "elapsed_s": 16559.7, "epoch": 1.8165503489531405} +{"step": 18230, "loss": 0.6021, "learning_rate": 4.333250546905621e-06, "grad_norm": 11.101029396057129, "token_acc": 0.8470053434371948, "gpu_alloc_gb": 12.88, "elapsed_s": 16566.2, "epoch": 1.8175473579262214} +{"step": 18240, "loss": 0.6058, "learning_rate": 4.286362352952899e-06, "grad_norm": 1.2071260213851929, "token_acc": 0.8448305487632751, "gpu_alloc_gb": 12.88, "elapsed_s": 16572.9, "epoch": 1.8185443668993022} +{"step": 18250, "loss": 0.6025, "learning_rate": 4.2397236627488406e-06, "grad_norm": 1.2163026332855225, "token_acc": 0.8425884008407593, "gpu_alloc_gb": 12.88, "elapsed_s": 16579.5, "epoch": 1.8195413758723828} +{"step": 18250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 16646.3, "epoch": 1.8195413758723828} +{"step": 18250, "eval_loss": 1.2214901447296143, "eval_step": true} +{"step": 18260, "loss": 0.601, "learning_rate": 4.193334597869913e-06, "grad_norm": 1.0921329259872437, "token_acc": 0.8482480943202972, "gpu_alloc_gb": 12.88, "elapsed_s": 16697.4, "epoch": 1.8205383848454635} +{"step": 18270, "loss": 0.6013, "learning_rate": 4.147195279241955e-06, "grad_norm": 0.9647697806358337, "token_acc": 0.8488239288330078, "gpu_alloc_gb": 12.88, "elapsed_s": 16704.0, "epoch": 1.8215353938185443} +{"step": 18280, "loss": 0.5913, "learning_rate": 4.101305827139656e-06, "grad_norm": 1.0684324502944946, "token_acc": 0.8447914958000183, "gpu_alloc_gb": 12.88, "elapsed_s": 16710.5, "epoch": 1.8225324027916252} +{"step": 18290, "loss": 0.5953, "learning_rate": 4.055666361186416e-06, "grad_norm": 1.1829627752304077, "token_acc": 0.8480785489082336, "gpu_alloc_gb": 12.88, "elapsed_s": 16717.0, "epoch": 1.8235294117647058} +{"step": 18300, "loss": 0.5955, "learning_rate": 4.010277000353979e-06, "grad_norm": 1.0646164417266846, "token_acc": 0.848585444688797, "gpu_alloc_gb": 12.88, "elapsed_s": 16723.7, "epoch": 1.8245264207377865} +{"step": 18310, "loss": 0.5936, "learning_rate": 3.965137862962132e-06, "grad_norm": 3.110764503479004, "token_acc": 0.8521208882331848, "gpu_alloc_gb": 12.88, "elapsed_s": 16730.2, "epoch": 1.8255234297108673} +{"step": 18320, "loss": 0.6055, "learning_rate": 3.92024906667835e-06, "grad_norm": 5.837790489196777, "token_acc": 0.846788078546524, "gpu_alloc_gb": 12.88, "elapsed_s": 16736.7, "epoch": 1.8265204386839482} +{"step": 18330, "loss": 0.5987, "learning_rate": 3.875610728517554e-06, "grad_norm": 1.1723273992538452, "token_acc": 0.8507547855377198, "gpu_alloc_gb": 12.88, "elapsed_s": 16743.2, "epoch": 1.827517447657029} +{"step": 18340, "loss": 0.5895, "learning_rate": 3.831222964841763e-06, "grad_norm": 1.198683500289917, "token_acc": 0.8485257208347321, "gpu_alloc_gb": 12.88, "elapsed_s": 16749.8, "epoch": 1.8285144566301097} +{"step": 18350, "loss": 0.5813, "learning_rate": 3.7870858913598093e-06, "grad_norm": 1.0309818983078003, "token_acc": 0.8510458767414093, "gpu_alloc_gb": 12.88, "elapsed_s": 16756.3, "epoch": 1.8295114656031903} +{"step": 18360, "loss": 0.5957, "learning_rate": 3.7431996231270583e-06, "grad_norm": 6.2588982582092285, "token_acc": 0.8500166654586792, "gpu_alloc_gb": 12.88, "elapsed_s": 16762.8, "epoch": 1.8305084745762712} +{"step": 18370, "loss": 0.6291, "learning_rate": 3.699564274545031e-06, "grad_norm": 1.1703925132751465, "token_acc": 0.8429384052753448, "gpu_alloc_gb": 12.88, "elapsed_s": 16769.6, "epoch": 1.831505483549352} +{"step": 18380, "loss": 0.6267, "learning_rate": 3.6561799593611944e-06, "grad_norm": 2.5012316703796387, "token_acc": 0.8416784942150116, "gpu_alloc_gb": 12.88, "elapsed_s": 16776.2, "epoch": 1.8325024925224327} +{"step": 18390, "loss": 0.5973, "learning_rate": 3.613046790668617e-06, "grad_norm": 1.1432520151138306, "token_acc": 0.846542501449585, "gpu_alloc_gb": 12.88, "elapsed_s": 16782.9, "epoch": 1.8334995014955133} +{"step": 18400, "loss": 0.6084, "learning_rate": 3.570164880905713e-06, "grad_norm": 1.1225413084030151, "token_acc": 0.8475161790847778, "gpu_alloc_gb": 12.88, "elapsed_s": 16789.5, "epoch": 1.8344965104685942} +{"step": 18410, "loss": 0.5849, "learning_rate": 3.527534341855865e-06, "grad_norm": 1.9174574613571167, "token_acc": 0.8502510190010071, "gpu_alloc_gb": 12.88, "elapsed_s": 16796.0, "epoch": 1.835493519441675} +{"step": 18420, "loss": 0.6137, "learning_rate": 3.4851552846472345e-06, "grad_norm": 1.0467666387557983, "token_acc": 0.8431126177310944, "gpu_alloc_gb": 12.88, "elapsed_s": 16802.6, "epoch": 1.8364905284147557} +{"step": 18430, "loss": 0.5994, "learning_rate": 3.4430278197524203e-06, "grad_norm": 1.0889456272125244, "token_acc": 0.8479561030864715, "gpu_alloc_gb": 12.88, "elapsed_s": 16809.1, "epoch": 1.8374875373878365} +{"step": 18440, "loss": 0.5741, "learning_rate": 3.401152056988155e-06, "grad_norm": 6.151186466217041, "token_acc": 0.8539777636528015, "gpu_alloc_gb": 12.88, "elapsed_s": 16815.5, "epoch": 1.8384845463609172} +{"step": 18450, "loss": 0.61, "learning_rate": 3.359528105515064e-06, "grad_norm": 1.1904935836791992, "token_acc": 0.8471774995326996, "gpu_alloc_gb": 12.88, "elapsed_s": 16822.1, "epoch": 1.839481555333998} +{"step": 18460, "loss": 0.606, "learning_rate": 3.318156073837353e-06, "grad_norm": 1.050848126411438, "token_acc": 0.848406994342804, "gpu_alloc_gb": 12.88, "elapsed_s": 16828.5, "epoch": 1.840478564307079} +{"step": 18470, "loss": 0.6049, "learning_rate": 3.2770360698025193e-06, "grad_norm": 1.2105128765106201, "token_acc": 0.8476043581962586, "gpu_alloc_gb": 12.88, "elapsed_s": 16834.8, "epoch": 1.8414755732801595} +{"step": 18480, "loss": 0.5637, "learning_rate": 3.2361682006010972e-06, "grad_norm": 8.829009056091309, "token_acc": 0.8541382193565369, "gpu_alloc_gb": 12.88, "elapsed_s": 16841.5, "epoch": 1.8424725822532402} +{"step": 18490, "loss": 0.6026, "learning_rate": 3.1955525727663584e-06, "grad_norm": 25.171043395996094, "token_acc": 0.8463346660137177, "gpu_alloc_gb": 12.88, "elapsed_s": 16848.2, "epoch": 1.843469591226321} +{"step": 18500, "loss": 0.5957, "learning_rate": 3.15518929217401e-06, "grad_norm": 1.0302613973617554, "token_acc": 0.8470714271068573, "gpu_alloc_gb": 12.88, "elapsed_s": 16854.9, "epoch": 1.844466600199402} +{"step": 18500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 16921.6, "epoch": 1.844466600199402} +{"step": 18500, "eval_loss": 1.2244527339935303, "eval_step": true} +{"step": 18510, "loss": 0.5813, "learning_rate": 3.1150784640419983e-06, "grad_norm": 1.0617918968200684, "token_acc": 0.8509783029556275, "gpu_alloc_gb": 12.88, "elapsed_s": 16973.5, "epoch": 1.8454636091724825} +{"step": 18520, "loss": 0.5924, "learning_rate": 3.0752201929301394e-06, "grad_norm": 1.3142324686050415, "token_acc": 0.8503600776195526, "gpu_alloc_gb": 12.88, "elapsed_s": 16980.1, "epoch": 1.8464606181455632} +{"step": 18530, "loss": 0.6024, "learning_rate": 3.035614582739921e-06, "grad_norm": 2.7083804607391357, "token_acc": 0.8481895446777343, "gpu_alloc_gb": 12.88, "elapsed_s": 16986.6, "epoch": 1.847457627118644} +{"step": 18540, "loss": 0.5937, "learning_rate": 2.9962617367141675e-06, "grad_norm": 1.2409013509750366, "token_acc": 0.8475739002227783, "gpu_alloc_gb": 12.88, "elapsed_s": 16993.2, "epoch": 1.848454636091725} +{"step": 18550, "loss": 0.6044, "learning_rate": 2.957161757436855e-06, "grad_norm": 1.183640718460083, "token_acc": 0.8462996125221253, "gpu_alloc_gb": 12.88, "elapsed_s": 16999.6, "epoch": 1.8494516450648057} +{"step": 18560, "loss": 0.6019, "learning_rate": 2.9183147468327287e-06, "grad_norm": 1.0473759174346924, "token_acc": 0.8482834756374359, "gpu_alloc_gb": 12.88, "elapsed_s": 17006.2, "epoch": 1.8504486540378864} +{"step": 18570, "loss": 0.619, "learning_rate": 2.8797208061671632e-06, "grad_norm": 9.022693634033203, "token_acc": 0.8438853323459625, "gpu_alloc_gb": 12.88, "elapsed_s": 17012.7, "epoch": 1.851445663010967} +{"step": 18580, "loss": 0.6132, "learning_rate": 2.841380036045793e-06, "grad_norm": 6.546276569366455, "token_acc": 0.8454184710979462, "gpu_alloc_gb": 12.88, "elapsed_s": 17019.3, "epoch": 1.8524426719840479} +{"step": 18590, "loss": 0.5872, "learning_rate": 2.8032925364143257e-06, "grad_norm": 8.553434371948242, "token_acc": 0.850079083442688, "gpu_alloc_gb": 12.88, "elapsed_s": 17025.7, "epoch": 1.8534396809571287} +{"step": 18600, "loss": 0.6188, "learning_rate": 2.76545840655823e-06, "grad_norm": 1.2533975839614868, "token_acc": 0.8462904870510102, "gpu_alloc_gb": 12.88, "elapsed_s": 17032.2, "epoch": 1.8544366899302094} +{"step": 18610, "loss": 0.6173, "learning_rate": 2.7278777451024916e-06, "grad_norm": 12.019646644592285, "token_acc": 0.8455230593681335, "gpu_alloc_gb": 12.88, "elapsed_s": 17038.8, "epoch": 1.85543369890329} +{"step": 18620, "loss": 0.6248, "learning_rate": 2.690550650011392e-06, "grad_norm": 1.1630793809890747, "token_acc": 0.8439926147460938, "gpu_alloc_gb": 12.88, "elapsed_s": 17045.4, "epoch": 1.8564307078763709} +{"step": 18630, "loss": 0.6003, "learning_rate": 2.653477218588185e-06, "grad_norm": 1.1756147146224976, "token_acc": 0.8495411336421966, "gpu_alloc_gb": 12.88, "elapsed_s": 17052.0, "epoch": 1.8574277168494517} +{"step": 18640, "loss": 0.6131, "learning_rate": 2.616657547474899e-06, "grad_norm": 1.4415510892868042, "token_acc": 0.8424482583999634, "gpu_alloc_gb": 12.88, "elapsed_s": 17058.8, "epoch": 1.8584247258225324} +{"step": 18650, "loss": 0.5649, "learning_rate": 2.580091732652101e-06, "grad_norm": 2.3457119464874268, "token_acc": 0.8517443835735321, "gpu_alloc_gb": 12.88, "elapsed_s": 17065.2, "epoch": 1.859421734795613} +{"step": 18660, "loss": 0.5759, "learning_rate": 2.5437798694385338e-06, "grad_norm": 5.239325046539307, "token_acc": 0.8528611838817597, "gpu_alloc_gb": 12.88, "elapsed_s": 17071.8, "epoch": 1.8604187437686939} +{"step": 18670, "loss": 0.5832, "learning_rate": 2.507722052491013e-06, "grad_norm": 1.0572152137756348, "token_acc": 0.8509921550750732, "gpu_alloc_gb": 12.88, "elapsed_s": 17078.4, "epoch": 1.8614157527417747} +{"step": 18680, "loss": 0.6093, "learning_rate": 2.471918375804105e-06, "grad_norm": 7.087656021118164, "token_acc": 0.8442928493022919, "gpu_alloc_gb": 12.88, "elapsed_s": 17084.7, "epoch": 1.8624127617148556} +{"step": 18690, "loss": 0.6032, "learning_rate": 2.436368932709843e-06, "grad_norm": 1.2155207395553589, "token_acc": 0.8432950139045715, "gpu_alloc_gb": 12.88, "elapsed_s": 17091.3, "epoch": 1.8634097706879362} +{"step": 18700, "loss": 0.5961, "learning_rate": 2.401073815877586e-06, "grad_norm": 2.2506649494171143, "token_acc": 0.8476294338703155, "gpu_alloc_gb": 12.88, "elapsed_s": 17097.9, "epoch": 1.8644067796610169} +{"step": 18710, "loss": 0.6064, "learning_rate": 2.3660331173136818e-06, "grad_norm": 1.1837900876998901, "token_acc": 0.8473659515380859, "gpu_alloc_gb": 12.88, "elapsed_s": 17104.3, "epoch": 1.8654037886340977} +{"step": 18720, "loss": 0.5925, "learning_rate": 2.331246928361308e-06, "grad_norm": 0.9938032627105713, "token_acc": 0.8489709615707397, "gpu_alloc_gb": 12.88, "elapsed_s": 17110.8, "epoch": 1.8664007976071786} +{"step": 18730, "loss": 0.5976, "learning_rate": 2.296715339700162e-06, "grad_norm": 7.747304916381836, "token_acc": 0.8477626860141754, "gpu_alloc_gb": 12.88, "elapsed_s": 17117.6, "epoch": 1.8673978065802592} +{"step": 18740, "loss": 0.6144, "learning_rate": 2.2624384413462596e-06, "grad_norm": 10.644688606262207, "token_acc": 0.8454220175743103, "gpu_alloc_gb": 12.88, "elapsed_s": 17124.1, "epoch": 1.8683948155533399} +{"step": 18750, "loss": 0.6179, "learning_rate": 2.2284163226517053e-06, "grad_norm": 1.176062822341919, "token_acc": 0.8453060209751129, "gpu_alloc_gb": 12.88, "elapsed_s": 17130.7, "epoch": 1.8693918245264207} +{"step": 18750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 17197.5, "epoch": 1.8693918245264207} +{"step": 18750, "eval_loss": 1.231319785118103, "eval_step": true} +{"step": 18760, "loss": 0.6042, "learning_rate": 2.1946490723044332e-06, "grad_norm": 1.0389125347137451, "token_acc": 0.8457458317279816, "gpu_alloc_gb": 12.88, "elapsed_s": 17244.4, "epoch": 1.8703888334995016} +{"step": 18770, "loss": 0.5906, "learning_rate": 2.1611367783280433e-06, "grad_norm": 1.1271604299545288, "token_acc": 0.8501133143901825, "gpu_alloc_gb": 12.88, "elapsed_s": 17251.1, "epoch": 1.8713858424725822} +{"step": 18780, "loss": 0.613, "learning_rate": 2.1278795280814556e-06, "grad_norm": 1.1153064966201782, "token_acc": 0.8478921294212342, "gpu_alloc_gb": 12.88, "elapsed_s": 17257.7, "epoch": 1.8723828514456629} +{"step": 18790, "loss": 0.6011, "learning_rate": 2.0948774082587773e-06, "grad_norm": 1.0697200298309326, "token_acc": 0.8451857030391693, "gpu_alloc_gb": 12.88, "elapsed_s": 17264.2, "epoch": 1.8733798604187437} +{"step": 18800, "loss": 0.6312, "learning_rate": 2.0621305048890816e-06, "grad_norm": 10.319725036621094, "token_acc": 0.8416049122810364, "gpu_alloc_gb": 12.88, "elapsed_s": 17270.9, "epoch": 1.8743768693918246} +{"step": 18810, "loss": 0.6128, "learning_rate": 2.0296389033360953e-06, "grad_norm": 11.078323364257812, "token_acc": 0.8488866508007049, "gpu_alloc_gb": 12.88, "elapsed_s": 17277.5, "epoch": 1.8753738783649054} +{"step": 18820, "loss": 0.6224, "learning_rate": 1.997402688298056e-06, "grad_norm": 1.3629310131072998, "token_acc": 0.8435725271701813, "gpu_alloc_gb": 12.88, "elapsed_s": 17284.2, "epoch": 1.876370887337986} +{"step": 18830, "loss": 0.6183, "learning_rate": 1.9654219438074773e-06, "grad_norm": 1.056870460510254, "token_acc": 0.8428565621376037, "gpu_alloc_gb": 12.88, "elapsed_s": 17290.7, "epoch": 1.8773678963110667} +{"step": 18840, "loss": 0.613, "learning_rate": 1.933696753230907e-06, "grad_norm": 7.527132987976074, "token_acc": 0.8461392641067504, "gpu_alloc_gb": 12.88, "elapsed_s": 17297.3, "epoch": 1.8783649052841476} +{"step": 18850, "loss": 0.5959, "learning_rate": 1.9022271992687024e-06, "grad_norm": 1.0793486833572388, "token_acc": 0.8496925592422485, "gpu_alloc_gb": 12.88, "elapsed_s": 17303.9, "epoch": 1.8793619142572284} +{"step": 18860, "loss": 0.6179, "learning_rate": 1.8710133639548766e-06, "grad_norm": 6.154022693634033, "token_acc": 0.8473087608814239, "gpu_alloc_gb": 12.88, "elapsed_s": 17310.6, "epoch": 1.880358923230309} +{"step": 18870, "loss": 0.6186, "learning_rate": 1.84005532865682e-06, "grad_norm": 1.0325740575790405, "token_acc": 0.8433261036872863, "gpu_alloc_gb": 12.88, "elapsed_s": 17317.2, "epoch": 1.8813559322033897} +{"step": 18880, "loss": 0.608, "learning_rate": 1.8093531740750903e-06, "grad_norm": 4.499838352203369, "token_acc": 0.8486368000507355, "gpu_alloc_gb": 12.88, "elapsed_s": 17324.0, "epoch": 1.8823529411764706} +{"step": 18890, "loss": 0.6012, "learning_rate": 1.7789069802432667e-06, "grad_norm": 7.537121295928955, "token_acc": 0.8475162208080291, "gpu_alloc_gb": 12.88, "elapsed_s": 17330.6, "epoch": 1.8833499501495514} +{"step": 18900, "loss": 0.5895, "learning_rate": 1.7487168265276631e-06, "grad_norm": 1.061030387878418, "token_acc": 0.8474926948547363, "gpu_alloc_gb": 12.88, "elapsed_s": 17337.1, "epoch": 1.884346959122632} +{"step": 18910, "loss": 0.5992, "learning_rate": 1.7187827916271382e-06, "grad_norm": 1.0802066326141357, "token_acc": 0.8490211486816406, "gpu_alloc_gb": 12.88, "elapsed_s": 17343.9, "epoch": 1.8853439680957127} +{"step": 18920, "loss": 0.5828, "learning_rate": 1.6891049535729842e-06, "grad_norm": 1.1459044218063354, "token_acc": 0.8505041480064393, "gpu_alloc_gb": 12.88, "elapsed_s": 17350.2, "epoch": 1.8863409770687936} +{"step": 18930, "loss": 0.5882, "learning_rate": 1.6596833897285614e-06, "grad_norm": 1.0764106512069702, "token_acc": 0.8520147681236268, "gpu_alloc_gb": 12.88, "elapsed_s": 17356.9, "epoch": 1.8873379860418744} +{"step": 18940, "loss": 0.5929, "learning_rate": 1.6305181767892197e-06, "grad_norm": 1.1070095300674438, "token_acc": 0.8502848386764527, "gpu_alloc_gb": 12.88, "elapsed_s": 17363.6, "epoch": 1.8883349950149553} +{"step": 18950, "loss": 0.6031, "learning_rate": 1.6016093907820552e-06, "grad_norm": 7.0985188484191895, "token_acc": 0.8479864776134491, "gpu_alloc_gb": 12.88, "elapsed_s": 17370.3, "epoch": 1.889332003988036} +{"step": 18960, "loss": 0.5906, "learning_rate": 1.5729571070657202e-06, "grad_norm": 1.0814354419708252, "token_acc": 0.8501875221729278, "gpu_alloc_gb": 12.88, "elapsed_s": 17376.6, "epoch": 1.8903290129611166} +{"step": 18970, "loss": 0.598, "learning_rate": 1.5445614003302134e-06, "grad_norm": 1.0809134244918823, "token_acc": 0.846081119775772, "gpu_alloc_gb": 12.88, "elapsed_s": 17383.3, "epoch": 1.8913260219341974} +{"step": 18980, "loss": 0.6078, "learning_rate": 1.516422344596724e-06, "grad_norm": 1.0929946899414062, "token_acc": 0.8476028561592102, "gpu_alloc_gb": 12.88, "elapsed_s": 17389.8, "epoch": 1.8923230309072783} +{"step": 18990, "loss": 0.5632, "learning_rate": 1.4885400132173654e-06, "grad_norm": 1.0043280124664307, "token_acc": 0.8526999890804291, "gpu_alloc_gb": 12.88, "elapsed_s": 17396.5, "epoch": 1.893320039880359} +{"step": 19000, "loss": 0.6185, "learning_rate": 1.4609144788750529e-06, "grad_norm": 1.5858403444290161, "token_acc": 0.8468614757061005, "gpu_alloc_gb": 12.88, "elapsed_s": 17403.0, "epoch": 1.8943170488534395} +{"step": 19000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 17469.8, "epoch": 1.8943170488534395} +{"step": 19000, "eval_loss": 1.2345818281173706, "eval_step": true} +{"step": 19010, "loss": 0.5808, "learning_rate": 1.4335458135833147e-06, "grad_norm": 1.1453666687011719, "token_acc": 0.8503982901573182, "gpu_alloc_gb": 12.88, "elapsed_s": 17512.7, "epoch": 1.8953140578265204} +{"step": 19020, "loss": 0.6034, "learning_rate": 1.4064340886860372e-06, "grad_norm": 1.0377289056777954, "token_acc": 0.8463251888751984, "gpu_alloc_gb": 12.88, "elapsed_s": 17519.4, "epoch": 1.8963110667996013} +{"step": 19030, "loss": 0.5637, "learning_rate": 1.3795793748573316e-06, "grad_norm": 0.9760129451751709, "token_acc": 0.8553773462772369, "gpu_alloc_gb": 12.88, "elapsed_s": 17526.0, "epoch": 1.897308075772682} +{"step": 19040, "loss": 0.6018, "learning_rate": 1.3529817421013668e-06, "grad_norm": 1.197169303894043, "token_acc": 0.8475324094295502, "gpu_alloc_gb": 12.88, "elapsed_s": 17532.7, "epoch": 1.8983050847457628} +{"step": 19050, "loss": 0.5942, "learning_rate": 1.326641259752126e-06, "grad_norm": 1.2319364547729492, "token_acc": 0.8473530948162079, "gpu_alloc_gb": 12.88, "elapsed_s": 17539.3, "epoch": 1.8993020937188434} +{"step": 19060, "loss": 0.5864, "learning_rate": 1.3005579964732839e-06, "grad_norm": 1.0767191648483276, "token_acc": 0.8497848749160767, "gpu_alloc_gb": 12.88, "elapsed_s": 17545.8, "epoch": 1.9002991026919243} +{"step": 19070, "loss": 0.5914, "learning_rate": 1.2747320202579738e-06, "grad_norm": 1.1102439165115356, "token_acc": 0.8494462490081787, "gpu_alloc_gb": 12.88, "elapsed_s": 17552.2, "epoch": 1.9012961116650051} +{"step": 19080, "loss": 0.5827, "learning_rate": 1.2491633984286877e-06, "grad_norm": 1.1615960597991943, "token_acc": 0.8484493553638458, "gpu_alloc_gb": 12.88, "elapsed_s": 17558.8, "epoch": 1.9022931206380858} +{"step": 19090, "loss": 0.617, "learning_rate": 1.2238521976369988e-06, "grad_norm": 1.2358020544052124, "token_acc": 0.8433438539505005, "gpu_alloc_gb": 12.88, "elapsed_s": 17565.4, "epoch": 1.9032901296111664} +{"step": 19100, "loss": 0.5847, "learning_rate": 1.1987984838634836e-06, "grad_norm": 1.1680430173873901, "token_acc": 0.8495745241641999, "gpu_alloc_gb": 12.88, "elapsed_s": 17572.0, "epoch": 1.9042871385842473} +{"step": 19110, "loss": 0.5937, "learning_rate": 1.174002322417489e-06, "grad_norm": 1.2089698314666748, "token_acc": 0.8494638919830322, "gpu_alloc_gb": 12.88, "elapsed_s": 17578.4, "epoch": 1.9052841475573281} +{"step": 19120, "loss": 0.5848, "learning_rate": 1.1494637779369766e-06, "grad_norm": 1.1329288482666016, "token_acc": 0.8497143268585206, "gpu_alloc_gb": 12.88, "elapsed_s": 17585.0, "epoch": 1.9062811565304087} +{"step": 19130, "loss": 0.5861, "learning_rate": 1.1251829143883785e-06, "grad_norm": 1.300007939338684, "token_acc": 0.8517677366733551, "gpu_alloc_gb": 12.88, "elapsed_s": 17591.5, "epoch": 1.9072781655034894} +{"step": 19140, "loss": 0.5861, "learning_rate": 1.1011597950663865e-06, "grad_norm": 1.167581558227539, "token_acc": 0.8513260662555695, "gpu_alloc_gb": 12.88, "elapsed_s": 17598.1, "epoch": 1.9082751744765702} +{"step": 19150, "loss": 0.6028, "learning_rate": 1.077394482593841e-06, "grad_norm": 1.1842443943023682, "token_acc": 0.8452864468097687, "gpu_alloc_gb": 12.88, "elapsed_s": 17604.7, "epoch": 1.909272183449651} +{"step": 19160, "loss": 0.596, "learning_rate": 1.0538870389215195e-06, "grad_norm": 1.1273643970489502, "token_acc": 0.8499635577201843, "gpu_alloc_gb": 12.88, "elapsed_s": 17611.6, "epoch": 1.910269192422732} +{"step": 19170, "loss": 0.6381, "learning_rate": 1.0306375253279822e-06, "grad_norm": 1.4800102710723877, "token_acc": 0.8393951892852783, "gpu_alloc_gb": 12.88, "elapsed_s": 17618.4, "epoch": 1.9112662013958126} +{"step": 19180, "loss": 0.6201, "learning_rate": 1.0076460024194601e-06, "grad_norm": 1.0418895483016968, "token_acc": 0.8421224296092987, "gpu_alloc_gb": 12.88, "elapsed_s": 17625.0, "epoch": 1.9122632103688932} +{"step": 19190, "loss": 0.6142, "learning_rate": 9.849125301296225e-07, "grad_norm": 1.2061773538589478, "token_acc": 0.8437759757041932, "gpu_alloc_gb": 12.88, "elapsed_s": 17631.6, "epoch": 1.913260219341974} +{"step": 19200, "loss": 0.6104, "learning_rate": 9.624371677194765e-07, "grad_norm": 1.0102828741073608, "token_acc": 0.8456231534481049, "gpu_alloc_gb": 12.88, "elapsed_s": 17638.3, "epoch": 1.914257228315055} +{"step": 19210, "loss": 0.5743, "learning_rate": 9.402199737772122e-07, "grad_norm": 7.2058024406433105, "token_acc": 0.853743851184845, "gpu_alloc_gb": 12.88, "elapsed_s": 17645.0, "epoch": 1.9152542372881356} +{"step": 19220, "loss": 0.6138, "learning_rate": 9.182610062180019e-07, "grad_norm": 0.9882556796073914, "token_acc": 0.8460653185844421, "gpu_alloc_gb": 12.88, "elapsed_s": 17651.7, "epoch": 1.9162512462612162} +{"step": 19230, "loss": 0.6012, "learning_rate": 8.965603222839014e-07, "grad_norm": 1.143775463104248, "token_acc": 0.8481727540493011, "gpu_alloc_gb": 12.88, "elapsed_s": 17658.3, "epoch": 1.917248255234297} +{"step": 19240, "loss": 0.6196, "learning_rate": 8.751179785436603e-07, "grad_norm": 6.303959369659424, "token_acc": 0.842369669675827, "gpu_alloc_gb": 12.88, "elapsed_s": 17665.0, "epoch": 1.918245264207378} +{"step": 19250, "loss": 0.5997, "learning_rate": 8.539340308926225e-07, "grad_norm": 6.964240550994873, "token_acc": 0.8494270622730256, "gpu_alloc_gb": 12.88, "elapsed_s": 17671.7, "epoch": 1.9192422731804586} +{"step": 19250, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 17738.5, "epoch": 1.9192422731804586} +{"step": 19250, "eval_loss": 1.2314131259918213, "eval_step": true} +{"step": 19260, "loss": 0.6074, "learning_rate": 8.330085345525262e-07, "grad_norm": 3.824920177459717, "token_acc": 0.8437673926353455, "gpu_alloc_gb": 12.88, "elapsed_s": 17782.6, "epoch": 1.9202392821535392} +{"step": 19270, "loss": 0.6001, "learning_rate": 8.123415440713933e-07, "grad_norm": 1.1638902425765991, "token_acc": 0.8467615604400635, "gpu_alloc_gb": 12.88, "elapsed_s": 17789.3, "epoch": 1.92123629112662} +{"step": 19280, "loss": 0.5884, "learning_rate": 7.919331133233954e-07, "grad_norm": 1.123132348060608, "token_acc": 0.8492422878742218, "gpu_alloc_gb": 12.88, "elapsed_s": 17795.8, "epoch": 1.922233300099701} +{"step": 19290, "loss": 0.6015, "learning_rate": 7.717832955086657e-07, "grad_norm": 1.0073965787887573, "token_acc": 0.8473867177963257, "gpu_alloc_gb": 12.88, "elapsed_s": 17802.4, "epoch": 1.9232303090727818} +{"step": 19300, "loss": 0.5869, "learning_rate": 7.518921431532211e-07, "grad_norm": 11.124983787536621, "token_acc": 0.8472433030605316, "gpu_alloc_gb": 12.88, "elapsed_s": 17809.1, "epoch": 1.9242273180458624} +{"step": 19310, "loss": 0.6027, "learning_rate": 7.322597081087846e-07, "grad_norm": 1.6374295949935913, "token_acc": 0.8468803405761719, "gpu_alloc_gb": 12.88, "elapsed_s": 17815.7, "epoch": 1.925224327018943} +{"step": 19320, "loss": 0.6122, "learning_rate": 7.128860415526517e-07, "grad_norm": 1.1078661680221558, "token_acc": 0.8429680943489075, "gpu_alloc_gb": 12.88, "elapsed_s": 17822.3, "epoch": 1.926221335992024} +{"step": 19330, "loss": 0.5956, "learning_rate": 6.937711939875912e-07, "grad_norm": 1.0744400024414062, "token_acc": 0.8475861132144928, "gpu_alloc_gb": 12.88, "elapsed_s": 17829.0, "epoch": 1.9272183449651048} +{"step": 19340, "loss": 0.5755, "learning_rate": 6.749152152416782e-07, "grad_norm": 1.0176756381988525, "token_acc": 0.8549980640411377, "gpu_alloc_gb": 12.88, "elapsed_s": 17835.5, "epoch": 1.9282153539381854} +{"step": 19350, "loss": 0.5822, "learning_rate": 6.563181544681496e-07, "grad_norm": 5.003724575042725, "token_acc": 0.8500009894371032, "gpu_alloc_gb": 12.88, "elapsed_s": 17842.5, "epoch": 1.929212362911266} +{"step": 19360, "loss": 0.5873, "learning_rate": 6.379800601453489e-07, "grad_norm": 8.694452285766602, "token_acc": 0.8494722545146942, "gpu_alloc_gb": 12.88, "elapsed_s": 17849.0, "epoch": 1.930209371884347} +{"step": 19370, "loss": 0.5957, "learning_rate": 6.199009800765265e-07, "grad_norm": 1.1202207803726196, "token_acc": 0.8495610773563385, "gpu_alloc_gb": 12.88, "elapsed_s": 17855.7, "epoch": 1.9312063808574278} +{"step": 19380, "loss": 0.5867, "learning_rate": 6.020809613897393e-07, "grad_norm": 1.032227635383606, "token_acc": 0.8507418990135193, "gpu_alloc_gb": 12.88, "elapsed_s": 17862.4, "epoch": 1.9322033898305084} +{"step": 19390, "loss": 0.5855, "learning_rate": 5.845200505377291e-07, "grad_norm": 12.071971893310547, "token_acc": 0.8508519887924194, "gpu_alloc_gb": 12.88, "elapsed_s": 17869.2, "epoch": 1.933200398803589} +{"step": 19400, "loss": 0.6031, "learning_rate": 5.672182932978221e-07, "grad_norm": 1.0917271375656128, "token_acc": 0.847984915971756, "gpu_alloc_gb": 12.88, "elapsed_s": 17875.7, "epoch": 1.93419740777667} +{"step": 19410, "loss": 0.5974, "learning_rate": 5.501757347717629e-07, "grad_norm": 1.0237044095993042, "token_acc": 0.8474477350711822, "gpu_alloc_gb": 12.88, "elapsed_s": 17882.2, "epoch": 1.9351944167497508} +{"step": 19420, "loss": 0.5943, "learning_rate": 5.333924193856587e-07, "grad_norm": 10.694963455200195, "token_acc": 0.8501917541027069, "gpu_alloc_gb": 12.88, "elapsed_s": 17888.9, "epoch": 1.9361914257228316} +{"step": 19430, "loss": 0.5709, "learning_rate": 5.168683908897798e-07, "grad_norm": 1.1307296752929688, "token_acc": 0.8543375790119171, "gpu_alloc_gb": 12.88, "elapsed_s": 17895.4, "epoch": 1.9371884346959123} +{"step": 19440, "loss": 0.6005, "learning_rate": 5.006036923585255e-07, "grad_norm": 4.954545021057129, "token_acc": 0.8458358645439148, "gpu_alloc_gb": 12.88, "elapsed_s": 17902.2, "epoch": 1.938185443668993} +{"step": 19450, "loss": 0.611, "learning_rate": 4.84598366190292e-07, "grad_norm": 1.1893301010131836, "token_acc": 0.8443210303783417, "gpu_alloc_gb": 12.88, "elapsed_s": 17908.8, "epoch": 1.9391824526420738} +{"step": 19460, "loss": 0.5761, "learning_rate": 4.6885245410732694e-07, "grad_norm": 14.144189834594727, "token_acc": 0.8536974012851715, "gpu_alloc_gb": 12.88, "elapsed_s": 17915.3, "epoch": 1.9401794616151546} +{"step": 19470, "loss": 0.607, "learning_rate": 4.533659971556636e-07, "grad_norm": 7.660709381103516, "token_acc": 0.8449838936328888, "gpu_alloc_gb": 12.88, "elapsed_s": 17922.1, "epoch": 1.9411764705882353} +{"step": 19480, "loss": 0.5938, "learning_rate": 4.381390357049542e-07, "grad_norm": 1.3047287464141846, "token_acc": 0.8464247047901153, "gpu_alloc_gb": 12.88, "elapsed_s": 17928.6, "epoch": 1.942173479561316} +{"step": 19490, "loss": 0.5989, "learning_rate": 4.231716094484584e-07, "grad_norm": 1.122154951095581, "token_acc": 0.847860586643219, "gpu_alloc_gb": 12.88, "elapsed_s": 17935.6, "epoch": 1.9431704885343968} +{"step": 19500, "loss": 0.6149, "learning_rate": 4.0846375740286604e-07, "grad_norm": 1.088127851486206, "token_acc": 0.8465648412704467, "gpu_alloc_gb": 12.88, "elapsed_s": 17942.4, "epoch": 1.9441674975074776} +{"step": 19500, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 18009.3, "epoch": 1.9441674975074776} +{"step": 19500, "eval_loss": 1.2304824590682983, "eval_step": true} +{"step": 19510, "loss": 0.6056, "learning_rate": 3.940155179081972e-07, "grad_norm": 0.9583703279495239, "token_acc": 0.846224582195282, "gpu_alloc_gb": 12.88, "elapsed_s": 18054.9, "epoch": 1.9451645064805583} +{"step": 19520, "loss": 0.5927, "learning_rate": 3.798269286277356e-07, "grad_norm": 1.1558464765548706, "token_acc": 0.8501022160053253, "gpu_alloc_gb": 12.88, "elapsed_s": 18061.6, "epoch": 1.9461615154536391} +{"step": 19530, "loss": 0.5761, "learning_rate": 3.658980265479173e-07, "grad_norm": 1.0374730825424194, "token_acc": 0.8528550744056702, "gpu_alloc_gb": 12.88, "elapsed_s": 18068.2, "epoch": 1.9471585244267198} +{"step": 19540, "loss": 0.6259, "learning_rate": 3.522288479782532e-07, "grad_norm": 8.297783851623535, "token_acc": 0.8403019905090332, "gpu_alloc_gb": 12.88, "elapsed_s": 18074.9, "epoch": 1.9481555333998006} +{"step": 19550, "loss": 0.5834, "learning_rate": 3.3881942855116254e-07, "grad_norm": 9.294671058654785, "token_acc": 0.8510247766971588, "gpu_alloc_gb": 12.88, "elapsed_s": 18081.6, "epoch": 1.9491525423728815} +{"step": 19560, "loss": 0.6008, "learning_rate": 3.2566980322197293e-07, "grad_norm": 1.0500880479812622, "token_acc": 0.8485745191574097, "gpu_alloc_gb": 12.88, "elapsed_s": 18088.2, "epoch": 1.9501495513459621} +{"step": 19570, "loss": 0.5947, "learning_rate": 3.127800062687758e-07, "grad_norm": 1.0075616836547852, "token_acc": 0.8506299316883087, "gpu_alloc_gb": 12.88, "elapsed_s": 18094.8, "epoch": 1.9511465603190428} +{"step": 19580, "loss": 0.5886, "learning_rate": 3.001500712923599e-07, "grad_norm": 1.1479154825210571, "token_acc": 0.8486066877841949, "gpu_alloc_gb": 12.88, "elapsed_s": 18101.4, "epoch": 1.9521435692921236} +{"step": 19590, "loss": 0.6287, "learning_rate": 2.877800312160783e-07, "grad_norm": 1.1569780111312866, "token_acc": 0.8435128629207611, "gpu_alloc_gb": 12.88, "elapsed_s": 18108.2, "epoch": 1.9531405782652045} +{"step": 19600, "loss": 0.6216, "learning_rate": 2.756699182858369e-07, "grad_norm": 15.557236671447754, "token_acc": 0.8422544896602631, "gpu_alloc_gb": 12.88, "elapsed_s": 18114.9, "epoch": 1.9541375872382851} +{"step": 19610, "loss": 0.5853, "learning_rate": 2.6381976406995024e-07, "grad_norm": 1.058597445487976, "token_acc": 0.8506164073944091, "gpu_alloc_gb": 12.88, "elapsed_s": 18121.4, "epoch": 1.9551345962113658} +{"step": 19620, "loss": 0.5856, "learning_rate": 2.522295994590862e-07, "grad_norm": 5.794198513031006, "token_acc": 0.8526624321937561, "gpu_alloc_gb": 12.88, "elapsed_s": 18128.0, "epoch": 1.9561316051844466} +{"step": 19630, "loss": 0.5652, "learning_rate": 2.408994546661658e-07, "grad_norm": 1.085800051689148, "token_acc": 0.8556051254272461, "gpu_alloc_gb": 12.88, "elapsed_s": 18134.6, "epoch": 1.9571286141575275} +{"step": 19640, "loss": 0.6213, "learning_rate": 2.2982935922630787e-07, "grad_norm": 1.095096230506897, "token_acc": 0.8435717344284057, "gpu_alloc_gb": 12.88, "elapsed_s": 18141.3, "epoch": 1.9581256231306083} +{"step": 19650, "loss": 0.5888, "learning_rate": 2.1901934199676233e-07, "grad_norm": 1.0049389600753784, "token_acc": 0.8482661664485931, "gpu_alloc_gb": 12.88, "elapsed_s": 18147.8, "epoch": 1.959122632103689} +{"step": 19660, "loss": 0.628, "learning_rate": 2.0846943115676588e-07, "grad_norm": 10.067137718200684, "token_acc": 0.8414850771427155, "gpu_alloc_gb": 12.88, "elapsed_s": 18154.4, "epoch": 1.9601196410767696} +{"step": 19670, "loss": 0.5922, "learning_rate": 1.9817965420755312e-07, "grad_norm": 1.1294010877609253, "token_acc": 0.846944659948349, "gpu_alloc_gb": 12.88, "elapsed_s": 18160.9, "epoch": 1.9611166500498505} +{"step": 19680, "loss": 0.6062, "learning_rate": 1.8815003797224562e-07, "grad_norm": 5.845709800720215, "token_acc": 0.8490949511528015, "gpu_alloc_gb": 12.88, "elapsed_s": 18167.4, "epoch": 1.9621136590229313} +{"step": 19690, "loss": 0.5868, "learning_rate": 1.7838060859577399e-07, "grad_norm": 1.1655765771865845, "token_acc": 0.8508577406406402, "gpu_alloc_gb": 12.88, "elapsed_s": 18174.6, "epoch": 1.963110667996012} +{"step": 19700, "loss": 0.5995, "learning_rate": 1.6887139154483366e-07, "grad_norm": 1.1373172998428345, "token_acc": 0.8477982342243194, "gpu_alloc_gb": 12.88, "elapsed_s": 18181.2, "epoch": 1.9641076769690926} +{"step": 19710, "loss": 0.6299, "learning_rate": 1.596224116077738e-07, "grad_norm": 1.2237141132354736, "token_acc": 0.8411097764968872, "gpu_alloc_gb": 12.88, "elapsed_s": 18188.0, "epoch": 1.9651046859421735} +{"step": 19720, "loss": 0.6127, "learning_rate": 1.5063369289460837e-07, "grad_norm": 10.648662567138672, "token_acc": 0.8469759583473205, "gpu_alloc_gb": 12.88, "elapsed_s": 18194.8, "epoch": 1.9661016949152543} +{"step": 19730, "loss": 0.5921, "learning_rate": 1.4190525883688299e-07, "grad_norm": 6.8884477615356445, "token_acc": 0.8494776546955108, "gpu_alloc_gb": 12.88, "elapsed_s": 18201.7, "epoch": 1.967098703888335} +{"step": 19740, "loss": 0.6119, "learning_rate": 1.3343713218764152e-07, "grad_norm": 1.7666850090026855, "token_acc": 0.8452524900436401, "gpu_alloc_gb": 12.88, "elapsed_s": 18208.3, "epoch": 1.9680957128614156} +{"step": 19750, "loss": 0.5965, "learning_rate": 1.252293350213818e-07, "grad_norm": 1.2557448148727417, "token_acc": 0.8485569894313812, "gpu_alloc_gb": 12.88, "elapsed_s": 18215.0, "epoch": 1.9690927218344965} +{"step": 19750, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 18281.8, "epoch": 1.9690927218344965} +{"step": 19750, "eval_loss": 1.230683445930481, "eval_step": true} +{"step": 19760, "loss": 0.5819, "learning_rate": 1.1728188873395551e-07, "grad_norm": 12.00113582611084, "token_acc": 0.855048543214798, "gpu_alloc_gb": 12.88, "elapsed_s": 18325.7, "epoch": 1.9700897308075773} +{"step": 19770, "loss": 0.5951, "learning_rate": 1.0959481404256844e-07, "grad_norm": 1.2138935327529907, "token_acc": 0.8487338781356811, "gpu_alloc_gb": 12.88, "elapsed_s": 18332.1, "epoch": 1.9710867397806582} +{"step": 19780, "loss": 0.6014, "learning_rate": 1.0216813098565813e-07, "grad_norm": 1.1867752075195312, "token_acc": 0.8507447659969329, "gpu_alloc_gb": 12.88, "elapsed_s": 18338.7, "epoch": 1.9720837487537388} +{"step": 19790, "loss": 0.5982, "learning_rate": 9.500185892292734e-08, "grad_norm": 1.2549536228179932, "token_acc": 0.8468235194683075, "gpu_alloc_gb": 12.88, "elapsed_s": 18345.3, "epoch": 1.9730807577268195} +{"step": 19800, "loss": 0.5868, "learning_rate": 8.809601653521071e-08, "grad_norm": 1.1779029369354248, "token_acc": 0.848979115486145, "gpu_alloc_gb": 12.88, "elapsed_s": 18351.9, "epoch": 1.9740777666999003} +{"step": 19810, "loss": 0.6042, "learning_rate": 8.145062182447483e-08, "grad_norm": 1.1568496227264404, "token_acc": 0.843424528837204, "gpu_alloc_gb": 12.88, "elapsed_s": 18358.4, "epoch": 1.9750747756729812} +{"step": 19820, "loss": 0.5982, "learning_rate": 7.506569211375159e-08, "grad_norm": 1.2345894575119019, "token_acc": 0.8489416241645813, "gpu_alloc_gb": 12.88, "elapsed_s": 18364.9, "epoch": 1.9760717846460618} +{"step": 19830, "loss": 0.6202, "learning_rate": 6.894124404711599e-08, "grad_norm": 1.0305120944976807, "token_acc": 0.8472475409507751, "gpu_alloc_gb": 12.88, "elapsed_s": 18371.5, "epoch": 1.9770687936191425} +{"step": 19840, "loss": 0.5963, "learning_rate": 6.307729358960846e-08, "grad_norm": 1.147986650466919, "token_acc": 0.8442183136940002, "gpu_alloc_gb": 12.88, "elapsed_s": 18378.0, "epoch": 1.9780658025922233} +{"step": 19850, "loss": 0.6119, "learning_rate": 5.747385602721256e-08, "grad_norm": 1.068113088607788, "token_acc": 0.8450192868709564, "gpu_alloc_gb": 12.88, "elapsed_s": 18384.4, "epoch": 1.9790628115653042} +{"step": 19860, "loss": 0.6041, "learning_rate": 5.213094596683288e-08, "grad_norm": 6.724125385284424, "token_acc": 0.8502983689308167, "gpu_alloc_gb": 12.88, "elapsed_s": 18391.0, "epoch": 1.9800598205383848} +{"step": 19870, "loss": 0.5862, "learning_rate": 4.704857733620616e-08, "grad_norm": 1.0909960269927979, "token_acc": 0.8505306959152221, "gpu_alloc_gb": 12.88, "elapsed_s": 18397.5, "epoch": 1.9810568295114654} +{"step": 19880, "loss": 0.5975, "learning_rate": 4.222676338393461e-08, "grad_norm": 3.8544325828552246, "token_acc": 0.8490330100059509, "gpu_alloc_gb": 12.88, "elapsed_s": 18404.1, "epoch": 1.9820538384845463} +{"step": 19890, "loss": 0.6097, "learning_rate": 3.7665516679386e-08, "grad_norm": 1.5917943716049194, "token_acc": 0.8497691452503204, "gpu_alloc_gb": 12.88, "elapsed_s": 18410.9, "epoch": 1.9830508474576272} +{"step": 19900, "loss": 0.6318, "learning_rate": 3.336484911269367e-08, "grad_norm": 3.8052868843078613, "token_acc": 0.8414130449295044, "gpu_alloc_gb": 12.88, "elapsed_s": 18417.3, "epoch": 1.984047856430708} +{"step": 19910, "loss": 0.6166, "learning_rate": 2.9324771894723158e-08, "grad_norm": 1.198836326599121, "token_acc": 0.8417280972003937, "gpu_alloc_gb": 12.88, "elapsed_s": 18424.0, "epoch": 1.9850448654037887} +{"step": 19920, "loss": 0.5997, "learning_rate": 2.5545295557038995e-08, "grad_norm": 1.0205423831939697, "token_acc": 0.8492291986942291, "gpu_alloc_gb": 12.88, "elapsed_s": 18430.6, "epoch": 1.9860418743768693} +{"step": 19930, "loss": 0.5975, "learning_rate": 2.202642995188242e-08, "grad_norm": 1.0944417715072632, "token_acc": 0.8462614119052887, "gpu_alloc_gb": 12.88, "elapsed_s": 18437.0, "epoch": 1.9870388833499502} +{"step": 19940, "loss": 0.603, "learning_rate": 1.876818425213811e-08, "grad_norm": 1.148095726966858, "token_acc": 0.8495570361614228, "gpu_alloc_gb": 12.88, "elapsed_s": 18443.6, "epoch": 1.988035892323031} +{"step": 19950, "loss": 0.6083, "learning_rate": 1.577056695131196e-08, "grad_norm": 1.3270435333251953, "token_acc": 0.8472014248371125, "gpu_alloc_gb": 12.88, "elapsed_s": 18450.2, "epoch": 1.9890329012961117} +{"step": 19960, "loss": 0.6011, "learning_rate": 1.303358586350889e-08, "grad_norm": 24.046672821044922, "token_acc": 0.846558666229248, "gpu_alloc_gb": 12.88, "elapsed_s": 18456.9, "epoch": 1.9900299102691923} +{"step": 19970, "loss": 0.6072, "learning_rate": 1.0557248123421738e-08, "grad_norm": 1.2653604745864868, "token_acc": 0.8471061944961548, "gpu_alloc_gb": 12.88, "elapsed_s": 18463.5, "epoch": 1.9910269192422732} +{"step": 19980, "loss": 0.5822, "learning_rate": 8.341560186309049e-09, "grad_norm": 1.1847857236862183, "token_acc": 0.8505581080913543, "gpu_alloc_gb": 12.88, "elapsed_s": 18469.8, "epoch": 1.992023928215354} +{"step": 19990, "loss": 0.638, "learning_rate": 6.386527827950683e-09, "grad_norm": 2.991002082824707, "token_acc": 0.8429575264453888, "gpu_alloc_gb": 12.88, "elapsed_s": 18476.3, "epoch": 1.9930209371884346} +{"step": 20000, "loss": 0.5726, "learning_rate": 4.692156144681104e-09, "grad_norm": 1.0522457361221313, "token_acc": 0.8556186139583588, "gpu_alloc_gb": 12.88, "elapsed_s": 18482.9, "epoch": 1.9940179461615155} +{"step": 20000, "loss": null, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 18549.7, "epoch": 1.9940179461615155} +{"step": 20000, "eval_loss": 1.2293951511383057, "eval_step": true} +{"step": 20010, "loss": 0.6002, "learning_rate": 3.2584495533449777e-09, "grad_norm": 1.169389247894287, "token_acc": 0.8458126366138459, "gpu_alloc_gb": 12.88, "elapsed_s": 18599.9, "epoch": 1.9950149551345961} +{"step": 20020, "loss": 0.5879, "learning_rate": 2.0854117912860736e-09, "grad_norm": 1.1651439666748047, "token_acc": 0.8492338120937347, "gpu_alloc_gb": 12.88, "elapsed_s": 18606.7, "epoch": 1.996011964107677} +{"step": 20030, "loss": 0.6, "learning_rate": 1.1730459163583618e-09, "grad_norm": 1.2666053771972656, "token_acc": 0.8448554813861847, "gpu_alloc_gb": 12.88, "elapsed_s": 18613.0, "epoch": 1.9970089730807579} +{"step": 20040, "loss": 0.591, "learning_rate": 5.213543068705029e-10, "grad_norm": 1.5935808420181274, "token_acc": 0.8531377375125885, "gpu_alloc_gb": 12.88, "elapsed_s": 18619.7, "epoch": 1.9980059820538385} +{"step": 20050, "loss": 0.5869, "learning_rate": 1.303386616635649e-10, "grad_norm": 1.173348069190979, "token_acc": 0.8483250856399536, "gpu_alloc_gb": 12.88, "elapsed_s": 18626.3, "epoch": 1.9990029910269191} +{"step": 20060, "loss": 0.5819, "learning_rate": 0.0, "grad_norm": 2.376070976257324, "token_acc": 0.8547659933567047, "gpu_alloc_gb": 12.88, "elapsed_s": 18632.5, "epoch": 2.0} +{"step": 20060, "loss": 0.6242397703416088, "learning_rate": null, "grad_norm": null, "token_acc": null, "gpu_alloc_gb": 12.88, "elapsed_s": 18679.3, "epoch": 2.0} diff --git a/assets/stage1_eval_loss.svg b/assets/stage1_eval_loss.svg new file mode 100644 index 0000000..c3ac33d --- /dev/null +++ b/assets/stage1_eval_loss.svg @@ -0,0 +1,35 @@ + + +Stage 1 evaluation loss +Eval points every 250 steps + +1.18 + +1.24 + +1.31 + +1.37 + +1.43 + +1.50 + +250 + +4200 + +8150 + +12100 + +16050 + +20000 + + + +last=1.23 +Training step +Eval loss + \ No newline at end of file diff --git a/assets/stage1_gpu_alloc_gb.svg b/assets/stage1_gpu_alloc_gb.svg new file mode 100644 index 0000000..9095e1d --- /dev/null +++ b/assets/stage1_gpu_alloc_gb.svg @@ -0,0 +1,35 @@ + + +Stage 1 allocated GPU memory +Observed during training log checkpoints + +9.91 + +10.5 + +11.2 + +11.8 + +12.5 + +13.1 + +10 + +4020 + +8030 + +12040 + +16050 + +20060 + + + +last=12.9 +Training step +Allocated GPU memory (GB) + \ No newline at end of file diff --git a/assets/stage1_token_accuracy.svg b/assets/stage1_token_accuracy.svg new file mode 100644 index 0000000..ead9ce7 --- /dev/null +++ b/assets/stage1_token_accuracy.svg @@ -0,0 +1,35 @@ + + +Stage 1 token accuracy +From stage1_training_log.jsonl + +0.16 + +0.31 + +0.46 + +0.61 + +0.76 + +0.91 + +10 + +4020 + +8030 + +12040 + +16050 + +20060 + + + +last=0.85 +Training step +Token accuracy + \ No newline at end of file diff --git a/assets/stage1_training_loss.svg b/assets/stage1_training_loss.svg new file mode 100644 index 0000000..1ac81a9 --- /dev/null +++ b/assets/stage1_training_loss.svg @@ -0,0 +1,35 @@ + + +Stage 1 training loss +From stage1_training_log.jsonl + +-0.04 + +1.70 + +3.45 + +5.19 + +6.93 + +8.67 + +10 + +4020 + +8030 + +12040 + +16050 + +20060 + + + +last=0.58 +Training step +Loss + \ No newline at end of file diff --git a/benchmarks/README.md b/benchmarks/README.md new file mode 100644 index 0000000..385fdd5 --- /dev/null +++ b/benchmarks/README.md @@ -0,0 +1,17 @@ +# Benchmarks and review files + +This directory includes: + +## 500-sample mixed-direction review set +Source-only benchmark for human review: +- `kashmiri_benchmark_500_source_only.jsonl` +- `kashmiri_benchmark_500_stage1_safe_pred.jsonl` +- `kashmiri_benchmark_500_stage1_safe_pred.summary.json` +- `kashmiri_benchmark_500_stage1_safe_pred.xlsx` +- `kashmiri_benchmark_500_stage1_safe_pred.summary.xlsx` + +## 200-sample ks→en evaluated benchmark +- `benchmark_simple_ks2en_200.jsonl` +- `benchmark_simple_ks2en_200.stage1_eval.json` + +The 500-sample file is for manual review. The 200-sample file includes references and saved evaluation output. diff --git a/benchmarks/benchmark_simple_ks2en_200.jsonl b/benchmarks/benchmark_simple_ks2en_200.jsonl new file mode 100644 index 0000000..b606580 --- /dev/null +++ b/benchmarks/benchmark_simple_ks2en_200.jsonl @@ -0,0 +1,200 @@ +{"id": "simple_ks2en_0001", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "میون گۄڈنِیُک اِجلاس اوسنہٕ پورٕ پٲٹھۍ ناخۄشگٔوار تَجرُبہٕ۔", "reference_text": "My first meeting was not a wholly unenjoyable experience.", "char_len_source": 59, "char_len_reference": 57, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0002", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یِتھُے سُہ پھاسہِ تختس پؠٹھ ووت تہٕ دیوان سُنٛد نیٚچُو آو نؠتھہٕ نٔنۍ کرتَل ہؠتھ دوان دوران بادشاہَس قتل کرنہٕ خٲطرٕ تہٕ وزٟر سٕنٛدۍ نیٚچوِۍ دِیٛت پَنہٕ نؠن سپاہَن اِشارٕ زِ أمِس کرَن اَتھ کامہِ منٛز مدد", "reference_text": "As he approached the platform the diwans son rushed forward with drawn sword to slay the king and the ministers son made sign to his soldiers to assist him in the deed", "char_len_source": 205, "char_len_reference": 167, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0003", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ٹیمن کوراتھ پوکجٹس منٛز ترین نُمایا تحقیقی ادارن سٟتؠ اشتعراق اںتڑنیشنل میز اینڈ ویٹ اِمپروُمینٹ سینٹر سی آیہ ایم اایم وایہ ٹی یُس میکسکوہس منٛز چھُ یّنورسٹڮ آف ویسٹرن آسٹریلیا تہٕ روُس کس سکولکووو اِنسچوُٹ اینڈ ٹیکنالجی سکول ٹیک", "reference_text": "The team has collaborated with three premier research institutes on this project the International Maize and Wheat Improvement Center CIMMYT based in Mexico The University of Western Australia and the Skolkovo Institute of Science and Technology Skoltech in Russia", "char_len_source": 229, "char_len_reference": 264, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0004", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أمؠ اوس پنٛنیٚن مدرَسہ کیٚن دۄہَن بہتٔرٟن طٲلبہِ عٔلمہٕ سُنٛد اعزاز تہِ حٲصِل کوٚرمُت تہٕ أمؠ ٲس کوزی کوڈس منٛز نیشنَل اِنسٹی ٹیٛوُٹ آف ٹیٚکنالوجی پؠٹھٕ بی ٹیٚک میٚکینِکَل اِنٛجٟریٚرِنٛگ ہِنٛز ڈگری حٲصِل کٔرمٕژ", "reference_text": "He also had achieved a best student award during his school days and he had a BTECH Mechanical engineering degree from the National Institute of Technology in Kozhikode", "char_len_source": 212, "char_len_reference": 168, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0005", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "چَنہٕ کھہَس منٛز ڈاکٹر راجٟو وارشنے جٟنوم کہِ مدتہٕ سٟتؠ نسٕل پٲدٕ کرنٕکؠو طٔرٟقو سٟتؠ کوٚر أمۍ سٕنٛزِ ٹٟمہِ چَنٕکۍ تِم قٕسٕم تَیار یِم مُشکِل حالاتن منٛز وٕطران چھِ یِمن منٛز ہۄچھرُک مُقابلہٕ کَرن وول قٕسٕم تہِ شٲمِل چُھ", "reference_text": "Dr Rajeev Varshney in a chickpea field Using genomeassisted breeding approaches his team has developed hardy varieties of chickpea including a droughtresistant variety", "char_len_source": 222, "char_len_reference": 167, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0006", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "رُکاوٹ کرنٕک برعکس چھُ کانٛہہ مُخٲلِف دۄگہِ نِش محروم کرنہٕ سٟتؠ تہنٛد تَوازُن دَرہَم بَرہَم گژھان تہٕ یہِ چھُ مُخٲلِف سنٛز بَڑٲمٕژ نٔرِ برونٛہہ کُن پکنُک اِجازت دِوان تہٕ اتھِن چھُ مُقابٕلہٕ کرنہٕ خٲطرٕ یَلہٕ تھوان", "reference_text": "Unlike blocking causing an opponent to miss a punch disrupts his balance this permits forward movement past the opponents extended arm and keeps the hands free to counter", "char_len_source": 215, "char_len_reference": 170, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0007", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھا کُنہِ بوٗزمُت زِ کانٛہہ نفر کیٛاہ تھاوِ کاہ شَتھ رۄپیہِ أکِس کَترِ ژٔڈِس منٛز تِژھہِ جایہِ یا وَنو مَسجدِ منٛز ژوٗرِ", "reference_text": "Have you ever heard of a man keeping eleven hundred rupees in an earthen pot hidden just under the ground of a public place like this mosque", "char_len_source": 125, "char_len_reference": 140, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0008", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مےٚ چُھ سرٛانٛٹھ واینٕکِس تالابس منٛز گٲنٛٹہٕ وادن غۄطہٕ کرُن خۄش کران۔", "reference_text": "I love to plunge in swimming pool for hours.", "char_len_source": 71, "char_len_reference": 44, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0009", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "میون خانٛدار چُھ اکھ صَحافِی۔", "reference_text": "My husband is a journalist", "char_len_source": 29, "char_len_reference": 26, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0010", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أچھَ منٛز دٲخٕل گژھَن وول گاش چھُ ریٹناہَس منٛز ترٚؠن مُختٔلِف فوٹو ریسیپٹرَن عقس نباونَس منٛز استعمال گژھَن واجِنین ویزن لورین تہٕ ترٚوُ کوُنلن تہٕ نوین دریافت سپدِیمژن فوٹو سینزِٹِیو گینگلیون سیلن سٟتؠ ٹکراوان", "reference_text": "Light entering the eye strikes three different photoreceptors in the retina the familiar rods and cones used in image forming and the more newly discovered photosensitive ganglion cells", "char_len_source": 212, "char_len_reference": 185, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0011", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ژھار یُنورسِٹی کہِ زیرِ اِنتِظام پرٛایویٹ یُنورسِٹی میٚنیجڑ پرٛایویٹ ادارٕ یِم ایٚم سی اے مَنٛز پی جی لیولُک پروگرام چھُ پیش کران تہٕ ۲۰۰۸۲۰۰۹ تعلٟمی ورۍ یَس مَنٛز چھِ اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ", "reference_text": "Search University ManagedPrivate institutes which offer PG level programs in MCA and are approved of AICTE in the academic year 20082009", "char_len_source": 200, "char_len_reference": 136, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0012", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد", "reference_text": "When all was ready and the prince and his retinue were about to start something happened", "char_len_source": 211, "char_len_reference": 88, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0013", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "واریٚہَس پھٟرِتھ تھوٗرِتھ وٲتۍ تِم سمندرس لَرِ أکِس جایہِ ییٚتہِ اَکھ سمندری جہاز نیرنَس تیار اوس", "reference_text": "After much wandering about they came to some place by the sea where they found a ship ready to weigh anchor", "char_len_source": 98, "char_len_reference": 107, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0014", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سۄ روٗز شہر چہِ خلوک جایہِ منٛز ژوٗرِ۔", "reference_text": "She hid herself in the corner of the city.", "char_len_source": 38, "char_len_reference": 42, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0015", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "وزیر اعلٰی سُنٛد مقصد اوس حیدر آباد اکھ ہاے ٹیک شہر بناوُن", "reference_text": "She has got a loan from bank with an interest rate of 30%.", "char_len_source": 58, "char_len_reference": 58, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0016", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ زمین چُھ واریاہ میوٕ وۄپداوان یَم سۭتۍ ٲسۍ چھِ سٲری ضروٗرت پوٗرٕ گژھن۔", "reference_text": "This farm yields enough fruit to meet all our needs.", "char_len_source": 74, "char_len_reference": 52, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0017", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "گۄڈٕ ژٔٹِو کاغز أکِس ترٛکوٗنس منٛز۔", "reference_text": "First cut the paper into a triangle.", "char_len_source": 36, "char_len_reference": 36, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0018", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھُس یژھان پانَس پرٛایویٹ ایڈِڈ ذٲتی مٲلی اِمداد سٟتؠ چَلن وول ادارس مَنٛز داخلہٕ نِیُن یِم َ فارمیسی مَنٛز پی جی لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۲۰۲۰۲۱ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", "reference_text": "I want to get enrolled myself in an PrivateAided institutes offering PG level programs in Pharmacy Can I get a list of such institutes in the academic year 20202021", "char_len_source": 220, "char_len_reference": 164, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0019", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ اوس جنٛگس دوران سٲروٕے کھۄتہٕ زیادٕ خوفزدٕ جنٛگی حُکمران۔", "reference_text": "He was the most feared warlord during the war.", "char_len_source": 61, "char_len_reference": 46, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0020", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "میانہِ ایٚم سٕوایپ ویلٹ پؠٹھٕ کَر اَبھِشِک ٹرانسفر ۹۹۳ پۄنٛسہٕ", "reference_text": "Transfer Rs 993 from my MSwipe app wallet to Abhishek", "char_len_source": 62, "char_len_reference": 53, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0021", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مَگر بَڑؠن جٟن نیٚٹؤرکن منٛز چُھ یہِ جٟنَن دَرمِیان أنٛدروُنی تعلُقاتُک پوُرٕ سِلسِلہٕ واضح کرنس منٛز مَدد کَران تہٕ یہِ تہِ ظٲہِر کَران زِ نیٚٹؤرکُک اَکھ حِصہٕ کِتھ کٕنۍ چُھ باقِیَن پؠٹھ اَثر ترٛاوان", "reference_text": "But in large gene networks it helps capture the entire range of interactions among genes and underlines how one part of the network affects the rest", "char_len_source": 203, "char_len_reference": 148, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0022", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "میون از شامُک اکارام کر بند", "reference_text": "please turn off my alarm for this evening", "char_len_source": 27, "char_len_reference": 41, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0023", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ ووٚنُس اے نازنٟن بٔہ چھُس اَکھ شہزادٕ", "reference_text": "Fair lady said he I am a prince", "char_len_source": 42, "char_len_reference": 31, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0024", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ موٗد أنٛدرَمن منٛز تھوٚپ یِنہٕ کِنۍ۔", "reference_text": "He died of a bowel obstruction.", "char_len_source": 41, "char_len_reference": 31, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0025", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ کینژھاژٕ ونُکھ تہِ دِمَے مگر صرف مَتہٕ ترٛاو تہٕ یہِ کتھ نؠبر", "reference_text": "Ask of me what you want and you shall have it but please keep quiet", "char_len_source": 65, "char_len_reference": 67, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0026", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ ووٚن زِ تٔمۍ چھُنہٕ پانژو دۄہَو پؠٹھہٕ کِہنۍ تہِ کھیوٚمُت", "reference_text": "He said that he had not eaten anything for five days", "char_len_source": 62, "char_len_reference": 52, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0027", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہَردَس منٛز چھِ کُلٮ۪ن پَنہٕ ؤتٕھر پٮ۪وان", "reference_text": "Trees shed leaves during autumn.", "char_len_source": 42, "char_len_reference": 32, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0028", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أمِس بے آسرٕ زنانہِ بچارِ اوسنہٕ کِہِنۍ تہِ فِکرِ تران زِ تَس کیٛاہ پَزِ کَرُن تہٕ گٔیہِ حٲکِمَس نِش تہٕ تَس برٛۄنٛہہ کَنہِ نٔمِتھ کوٚرنَس عرض زِ مےٚ کر تہٕ مدد", "reference_text": "So the poor old woman not knowing what else to do went to the governor and falling on her knees before him begged him to help her", "char_len_source": 162, "char_len_reference": 129, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0029", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "دۄشوٕنی دوستن ہُنٛد دَہن وٕرین ہِنٛدِ وقفہٕ پتہٕ سمکُھن اوس اِتفاق", "reference_text": "The meeting of the two friends after a gap of ten years was accidental.", "char_len_source": 66, "char_len_reference": 71, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0030", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "جاسوسی مینشٹرن کیرٕ حکومت کرن واجنہٕ جمٲژ ہندٕ سِکینڈل ہل۔", "reference_text": "The shadow ministers helped in solving the scandals of ruling party.", "char_len_source": 58, "char_len_reference": 68, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0031", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تۄہہِ میلیو یہِ نزدیٖکی وانَس پٮ۪ٹھ۔", "reference_text": "You will get it in the nearby shop.", "char_len_source": 36, "char_len_reference": 35, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0032", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ٹام کر فون", "reference_text": "Tomll call", "char_len_source": 10, "char_len_reference": 10, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0033", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "گوٛڈنِچہِ گیمہِ منٛز سرور یا رسیور بننٕچہِ تہٕ طرفن ہنز ژٲر چھِ تیٲری ہندِ شروعات وِزِ تھر نانُک کرِتھ کرنہٕ یوان", "reference_text": "The choice to be server or receiver in the first game and the choice of ends is decided by a coin toss before the warmup starts", "char_len_source": 113, "char_len_reference": 127, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0034", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھُ نوٚو مکانہٕ", "reference_text": "It is a new house", "char_len_source": 19, "char_len_reference": 17, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0035", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ کیٛاہ کیٛاہ ونووٕ", "reference_text": "What will I say", "char_len_source": 21, "char_len_reference": 15, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0036", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مٔنٛڈیہِ چھےٚ سیٚٹھا زیادٕ نفع زینان۔", "reference_text": "The markets are making whacking profits.", "char_len_source": 37, "char_len_reference": 40, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0037", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مُبینہٕ سربَراہس مُتعلِق چُھ خیال زِ أمؠ چھِ ۲۰۰۴ پؠٹھٕ ہِشی ذحنیت تھون وٲلہِ سٲتھی بٔھرتی کٔرمٕتہِ تہٕ بیٚیہِ چھُن تِہندِ خٲطرٕ نیم فوجی تربِیت ہفتہٕ کیٚن ٲخری دۄہن زِنٛدٕ روزنٕچ تربِیت بٔنٛدوُق چلاونٕہ چین مشقن ہُنٛد احتمام کوٚرمُت", "reference_text": "The alleged leader is thought to have recruited likeminded fellows since 2004 and to have organized paramilitary training survival weekends and firearms practice for them", "char_len_source": 234, "char_len_reference": 170, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0038", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیس ہسٹری عموُمَن اکھ تحریری فارم سوال نامَہٕ ہیتھ ہؠکہِ زرٕ کس ضِمنس منٛز قٲمتی معلوُمات فراہم کٔرِتھ تہٕ کَمہِ قسٕمٕکہِ تشخٟصی طٔریقہٕ کار یِن استعمال کرٕنہٕ تمِیوُک اِشارٕ دِوان", "reference_text": "A case history usually a written form with a questionnaire can provide valuable information about the context of the hearing loss and indicate what kind of diagnostic procedures to employ", "char_len_source": 180, "char_len_reference": 187, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0039", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یُدوَے سُہ یوٗت بوٚڈ تہٕ مالدار موٚہنیوٗ اوس تہِ ٲسِتھ تہِ روٗد اَتھ سٲرۍ سٕے وَقتس اَتہِ گُرِس پلالہٕ کران", "reference_text": "The whole of this time although he was such a great and wealthy man he groomed his horse", "char_len_source": 107, "char_len_reference": 88, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0040", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ییِلِہ تٔمِس سۄ خَبَر مِیٖج تٔمِس ؤژھ وہمہٕ سۭتۍ آوازِ تھَرٕ تھَرٕرے۔", "reference_text": "Her voice trembled with fear when she got the news.", "char_len_source": 70, "char_len_reference": 51, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0041", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سۄ ٲس بےٚ تٲبی سان بیٚیِس خبر نامس پیٛاران۔", "reference_text": "She was eagerly waiting for the next bulletin.", "char_len_source": 43, "char_len_reference": 46, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0042", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مارکہٹ کیپ چھٖ اکشر اکس وقتس دوران کمپنی ہنز وُصعت وُچھنہٕ باپت استعمال سپدان تہٕ مٲلی پیشورو دٕسہِ اتعمال کرنہٕ ییِنہٕ وول کمپنی ہُند باڈو وُچھنُک عام اِشارٕ", "reference_text": "Market cap is often used to measure a companys growth over time and is the most common indicator of a companys size used by financial professionals", "char_len_source": 158, "char_len_reference": 147, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0043", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سنجیو کمار فاؤنڈیشن چھِ اکھ قومی سطحٕچ ترقیٲتی تنظٟم یوٚس پرٛؠتھ ؤرۍ یہِ شُرؠن تہٕ یِہنٛدِؠن خانٛدانَن براہ راست فٲیِدٕ واتناوان چھُ تہِ چھِ بُنیٲدی طور پٲٹھۍ تٔعلٟم صحتٕچ دیکھ بھال ماحولیات ثقافت تہٕ غذٲئیتَس پؠٹھ توجہ دِوان", "reference_text": "The Sanjeev Kumar Foundation is a national level development organisation directly benefiting children and their families every year mainly focusing on education healthcare environment culture and nutrition", "char_len_source": 226, "char_len_reference": 206, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0044", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ تھوو دھات تیٖتِس کالس ریٚہہِ پیٚٹھ ییٖتِس کالس سُہ واریاہ گرم گوٚو۔", "reference_text": "He held the metal in the flame until it became white hot.", "char_len_source": 72, "char_len_reference": 57, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0045", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تِم کالج ژھار یِم ایٚم سی اے مَنٛز پی جی لیولُک پروگرام چھِ پیش کران تہٕ ۲۰۱۳۲۰۱۴ تعلٟمی ورۍ یَس مَنٛز اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ چھِ", "reference_text": "Search colleges which offer PG level programs in MCA and are approved of AICTE in the academic year 20132014", "char_len_source": 139, "char_len_reference": 108, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0046", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھُ درمیٲنی تہٕ دٔچِھنِس طرفَس لاینَس تہٕ رُکاونَس منٛز زِیٛادٕ مٲہِر بناوان", "reference_text": "This allows the middle and right sides to become more specialized at hitting and blocking", "char_len_source": 80, "char_len_reference": 89, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0047", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تم چھ پلو صاف کران", "reference_text": "They clean clothes", "char_len_source": 18, "char_len_reference": 18, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0048", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چُھ حاضِرٟنن ہُنٛد توجہ حٲصِل کرنہٕ خٲطرٕ جوشہِ ہوٚت تہٕ تیز آسان", "reference_text": "It is lively and fast to get the audiences attention", "char_len_source": 69, "char_len_reference": 52, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0049", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھُس یژھان أکِس یِتھِس اِنسٹِٹیوٗٹس مَنٛز داخلہٕ نِیُن یُس اِنٛجِنیٚرِنٛگ اینٛڈ ٹیکنالوجی مَنٛز پی جی لیولُک پروگرام چھُ پیش کران کیا بہٕ ہیٚکا ۲۰۰۶۲۰۰۷ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ حٲصِل کٔرِتھ", "reference_text": "I want to get enrolled myself in an institute offering PG level programs in Engineering and Technology Can I get a list of such institutes in the academic year 20062007", "char_len_source": 214, "char_len_reference": 168, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0050", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شُمٲلی ہِنٛدُستٲنۍ رِیاستَو پَنٛجاب ۂریانہ تہٕ اُتر پرٛدیش کؠو زَرخیز کھہَو تہٕ تِمن پؠٹھ کٲم کَرن والؠو زٔمٟن دارو چُھ تَمہِ دور کہِ کٕنٛکہٕ تہٕ توٚملہٕ چہِ سؠٹھا پٲداوار دِنہٕ والؠن قٔسمَن ہُنٛد فٲیدٕ تُلمُت", "reference_text": "The fertile fields in the northern Indian States of Punjab Haryana and Uttar Pradesh and the farmers who worked on them had benefited from the highyield varieties of wheat and rice of that revolution", "char_len_source": 210, "char_len_reference": 199, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0051", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ کرٕ یہِ یاد تھاونٕچ کوٗشِش", "reference_text": "I will try to remember it.", "char_len_source": 30, "char_len_reference": 26, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0052", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَمہِ علاوٕ چھِ گِر پہاڑٕ بردہ جیسور تہٕ چوٹیلا مِلِتھ گجراتُک اکھ بٔڑ اقلیت", "reference_text": "Apart from this the Gir hills Barda Jessore and Chotila together make up a large minority of Gujarat", "char_len_source": 76, "char_len_reference": 100, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0053", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "رِیاستہٕ کیٚن اَہم مَسٲیِلن منٛز چھِ بنٛگلہ دیشِکہِ غٲر قونوُنی مُہٲجِر تشَدُدٕکہِ واقعیات سِیٲسی عدم استحقام تہٕ رؠوٲیتی طور ژٔٹِتھ تہٕ زٲلِتھ مُنتَقٕل کاشت کٲری ہِنٛدیٚو طٔرٟقو سٟتؠ وَن ختم کَرٕنہِ شٲمِل", "reference_text": "The significant issues in the state include illegal migrants from Bangladesh incidences of violence political instability and deforestation from traditional cutandburn shift farming practices", "char_len_source": 205, "char_len_reference": 191, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0054", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "نٲگۍ رایس توٚر اَمی ساعتہٕ فِکرِ زِ تَس آے کھۄر تِتھہٕ پٲٹھۍ گنڈنہٕ زِ تَس اوسنہٕ ووٚنۍ کانٛہہ تہِ مۄکلن پاے تہٕ کُنہِ وُنہِ ہرگا سُہ آبہٕ منٛزٕ ہیوٚر کھَسہِ تہٕ تیٚلہِ ہیٚکہِ سُہ یِمَن أتی ترٛٲوِتھ", "reference_text": "Ngray at once knew that his feet were hopelessly bound and that if he would escape from the water he must leave them behind", "char_len_source": 201, "char_len_reference": 123, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0055", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھس مستعفی گژھان", "reference_text": "I resign", "char_len_source": 20, "char_len_reference": 8, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0056", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یِتھہٕ کٕنۍ دِتۍ کرٛالَن أمِس خوٗبصورت پَلو تہٕ زیور تہٕ شہزادٕ گۄو محل خانہٕ", "reference_text": "So the potter gave him beautiful raiment and ornaments and the prince went to the palace", "char_len_source": 78, "char_len_reference": 88, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0057", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "فارمَس منٛز چھُ صِرِف سُہ ناو درٕج کرنٕچہِ ضٔروُرت یُس توٚہہِ اِستعمال چِھو کَران تہٕ سُہ تٲرٟخ ییٚتہِ پؠٹھٕ تۄہہِ یہِ اِستعمال کَرُن شُروُع کوٚرُو تہٕ اَتھ سٟتؠ پانس تہٕ پنٛنِس کارٕبارس مُتعلِق بُنیٲدی زانٛکٲری تہِ", "reference_text": "The form simply requires you to list the name youre using and the date you started using it as well as basic information about yourself and your business", "char_len_source": 215, "char_len_reference": 153, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0058", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ سٕنٛدِس نٔوِس گَرس منٛز چُھ اکھ نٔو مناظر وول باغ ۔", "reference_text": "Her modernist home has a newly landscaped garden", "char_len_source": 56, "char_len_reference": 48, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0059", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ ؤسِن آبس منٛز تہٕ ہرگا سُہ اوٗرۍ گۄو تیٚلہِ زٲنۍ زِ شہزٲدۍ زِ سُہ چھُنہٕ واتُل", "reference_text": "Let him throw himself into the water and if he sinks then know O princess that he is not a sweeper", "char_len_source": 84, "char_len_reference": 98, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0060", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پتہٕ بنیو تمہِ سُند نمُنوُنہٕ باقین ٍٕقٕسمن ہندین باہ عرکھ ہِوین رِیکٹرن پہٹھ لوگوُ کرُن لایکھ کمارسٖند نموُنن کٕر تجرُبٲتی عادا شُمارن ہنز پیشنگوُیی تمہِ ساری کھوتہٕ بہتر پٲٹھہِ یہِ تمہِ وِزِ موُجوُد اوسیہِ چھُ تمہِ سُند طالب علم سنجیو کمار ونان یُس وُنکینس آیہ آیہ ایس سی ہکہِ کیمیٲیی شعبُک سربراہ چھُ", "reference_text": "Later his model became applicable to other kinds of reactors like spargers Kumars model predicted experimental data far better than anything that existed at that time says his student Sanjeev Kumar who is now the Chairman of the chemical engineering department at IISc", "char_len_source": 303, "char_len_reference": 268, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0061", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بادشاہ سلامت مےٚ نوکرٕ سُنٛد عرض بوٗزۍ تَو", "reference_text": "O king be pleased to listen to your servants words", "char_len_source": 42, "char_len_reference": 50, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0062", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تہٕ اَمہِ پَتہٕ ییٚلہِ تَس پَتہٕ پَتہٕ بادشاہ تہٕ تِہنٛدؠو دۄیَو نیٚچوؠو کھسُن ہیوٚت تہٕ أتھۍ منٛز رٔٹۍ تِم کینژو طاقتور مُشٹنڈَو یِم ژکہِ جہاز رانَن رۄپیہِ دِتھ پھسٲوۍ مٕتۍ ٲسۍ تہٕ چٟرتھپھ کٔرِتھ رٔٹِکھ جہازس کھسنہٕ نِشہِ پَتھ یوٚت تانۍ زَن جہازٕ پوٗرٕ سمندرس منٛز ووٛت", "reference_text": "and then just as the king and his two sons were about to follow some strong rough men who had been suborned by the captain prevented them and held them tight till the ship was well out to sea", "char_len_source": 271, "char_len_reference": 191, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0063", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "حالانٛکِہ ایپل چھُنہٕ ؤنۍ پرنٹر بَناوان مگر سُہ چھُ پننہِ ویب سائٹہِ پؠٹھ کینٛہہ ماڈل کٕنَان", "reference_text": "Although Apple doesnt make printers anymore they do sell a few models on their website", "char_len_source": 93, "char_len_reference": 86, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0064", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تہٕ باقٕے سوالو ہُریمانہٕ پرٛژُھنکھ اکہِ اکہِ تہٕ الگ الگ پٲٹھۍ زِ یہِ کٔہنٛزِ خۄش قسمتی کِنۍ سَپُد زِمےٚ چھےٚ یِژھ طاقتور تہٕ بٔڈ سلطنت تہٕ بۂ بنوونَس یَتھ قٲبِل زِ بۂ چُھس اَتھ یوٗت گاٹہٕ جار سان حکومَت کران", "reference_text": "and among other questions asked them each one singly and privately by whose good fortune it was that he possessed such a large and powerful kingdom and was enabled to govern it so wisely and so well", "char_len_source": 211, "char_len_reference": 198, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0065", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أکِس راؤنڈس منٛز چھِ عام طور پٲٹھۍ ۱۸ ذدٕ آسان یِم کورس کِس ترتٟبس سٟتؠ طے شدٕ ترتٟبس منٛز گنٛدٕنہٕ چھِ یِوان", "reference_text": "A round typically consists of 18 holes that are played in the order determined by the course layout", "char_len_source": 110, "char_len_reference": 99, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0066", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پرٛؠتھ نیٚٹؤرک کہِ ؤجوُدٕچ حالت چھےٚ بوُلِین عملہِ دٔسۍ مُقرر کرنہٕ یِوان یۄس اَکھ رِیٲضی عمل چھےٚ ییٚمہِ سٟتؠ باینٔری اِنٛپُٹن ہُنٛد باینٔری آوُٹپُٹن تانۍ ۱٠ یا صحٟح غلط کہِ ویلیٛوُ سٟتؠ نقشہٕ کٔشی کرنہٕ یِوان چھےٚ", "reference_text": "The state of each network entity is determined by a Boolean function which is a mathematical function that maps binary inputs to a binary output with the value 10 or truefalse", "char_len_source": 217, "char_len_reference": 175, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0067", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کینژو وزیرو تہٕ یِم اَتہِ حٲضِر ٲسۍ ہیوٚت یہِ وَنُن زِ ٲخٕر کُس جُرم چھُ یِمَو شہرٛادو کوٚرمُت", "reference_text": "Then some of the ministers and others present took upon themselves to ask what the crime of the four princes might be", "char_len_source": 94, "char_len_reference": 117, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0068", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تہٕ أمۍ سٕنٛدۍ مۄلٕلۍ نذرانہٕ پیش کرنہٕ یِنَس پؠٹھ سَپُد سُہ سؠٹھا خۄش تہٕ دِتُن حُکم زِ یٟتس کالس یہِ ییٚتہِ چھُ تٟتِس کالس گژھہِ أمۍ سٕنٛدِ خٲطرٕ اَکھ خاص گَرٕ مےٚ نکھَے مُتعین یُن کرنہٕ", "reference_text": "He was much pleased with the supposed merchants son and with the rich presents that he had received and gave orders that a special house should be set apart for him as long as he stayed in the city", "char_len_source": 190, "char_len_reference": 197, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0069", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "۱۹۹۹ منٛز آو رٔٹتھ نِنہٕ ڈچن کٔر دُبارٕ نصرٲنۍ زینُک داواہ تہٕ ٹول سلینگس منٛز گژھن والؠن واقعن ہنٛز پنٕنۍ ذٲتی ذمہٕ دٲری قبول حالانکہِ سۄ اوس قٲدن ذٲتی طور پٲٹھۍ اذیت دِنہٕ یا پھٲنٛسی دِنہٕ نِش انکار کران", "reference_text": "Arrested in 1999 Duch claims to be a bornagain Christian and has admitted his personal responsibility for events at Tuol Sleng though he denies personally torturing or executing prisoners", "char_len_source": 205, "char_len_reference": 187, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0070", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مےٚ دِیُت تس سخت زخم", "reference_text": "I don`t believe in hypothesis.", "char_len_source": 20, "char_len_reference": 30, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0071", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہِنٛدُستٲنہِ ایٚنٛجِیو سٕپرم کیٚن قٕسمن منٛز چھےٚ ۱۷۶۷۲ ذٲژٕ شٲمِل یَتھ منٛز مُلکہٕ کیٚن تمام رِیاستن منٛز تامِل ناڈوُ سارویہ برونہہ چُھ ییٚتہِ چہِ ۵۶۴۰ ذٲژٕ ہِنٛدُستان کیٚن تمام کُلین کَٹؠن ہُنٛد ترٛیٚیِم حِصہٕ چُھ بناوان", "reference_text": "Indian Angiosperm diversity comprises 17 672 species with Tamil Nadu leading all states in the country with 5640 species accounting for 13 of the total flora of India", "char_len_source": 222, "char_len_reference": 166, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0072", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ونٛدٕ کٮ۪ن رٮ۪تن منٛز پہاڑ کِس تینتٲلِس پٮ۪ٹھ کھسُن چھےٚ اکھ سخت خطرناک مُہِم۔", "reference_text": "To climb the peak during the winter months is a tough venture.", "char_len_source": 78, "char_len_reference": 62, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0073", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سہ چھ بطور ملٲزم کٲم کران", "reference_text": "He works as a labourer", "char_len_source": 25, "char_len_reference": 22, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0074", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سۄ چھےٚ بیٚین مدد کرنہٕ خٲطرٕ مُسلسل کوٗشِش کران۔", "reference_text": "She makes an unceasing effort to help others.", "char_len_source": 49, "char_len_reference": 45, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0075", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یتھ چمرٕ کِس کار خانس منٛز چھِ کھۄر بانہٕ بناونہٕ یِوان۔", "reference_text": "Boots are made in this tannery.", "char_len_source": 56, "char_len_reference": 31, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0076", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پٔزۍ کِنۍ آسہٕ یِمہٕ میچھہِ کَتھہٕ", "reference_text": "Sweet words indeed", "char_len_source": 35, "char_len_reference": 18, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0077", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہُمس بُزرگ اِنسانہٕ سٕنٛدِ کِنۍ پَنہٕ نِس أمِس وَتہٕ ہاوٕکِس کُن اِشارٕ کران یُس کھوژنہٕ کِنۍ ہنا دوٗر پہَن روٗزِتھ اوس ووٚنَس اَمہِ", "reference_text": "By the help of yonder old man she replied pointing to her guide who had tarried at a little distance from fear", "char_len_source": 133, "char_len_reference": 110, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0078", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ اوسنہٕ کانٛہہ کٲما کارا تہِ ہیوٚچھمُت لہذا اوسنہٕ یہِ غرٟب برہمن زِنٛدٕ روزنہٕ خٲطرٕ کِہِنۍ تہِ ہؠکان کٔرِتھ تہٕ کانٛہہ نفرا اوسُس نہٕ دِوان تہِ کینٛہہ", "reference_text": "Not having been brought up to any trade this poor brahman was unable to do anything for a living and no man gave unto him", "char_len_source": 156, "char_len_reference": 121, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0079", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تہٕ ہرگا نہٕ ترٛؠن ہَتن ؤرؠیَن أمِس کانٛہہ انسان وُچھہِ یہِ چھُ وہۍ بنان", "reference_text": "and if for three hundred years it has never been looked on by a human being it becomes a vih", "char_len_source": 74, "char_len_reference": 92, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0080", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہسپَتالس منٛز قٟٲدِ سٕنٛدِ حِفاضتہٕ خٲطرٕ تھاونہٕ آمٕتہِ قٲد خانٕکہِ زٕ افسر چھِ مُعطل کرنہٕ آمٕتہِ تہٕ یِہنٛدِس مٲلِکہٕ سُنٛد وَنُن چُھ زِ یِمن پؠٹھ ہیٚکہِ سؠٹھا لاپروٲیی تہٕ ذِمہٕ وٲری منٛز کوتٲہی ہُند الزام ٲید کرنہٕ یِتھ", "reference_text": "Two corrections officers left to guard the prisoner in hospital have been suspended and their employer says they may face charges of gross negligence and dereliction of responsibility", "char_len_source": 224, "char_len_reference": 183, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0081", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا دھن لَکشمی بیٚنٛک منٛز میٲنِس ۹۸۴۰۶۰۵۹۲۸۹۹ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر موبی کُوِک ذٔریعہٕ دھن لَکشمی بیٚنٛک منٛز ۷۹۹۰ ۹۸۴۰۶۰۵۹۲۸۹۹ پۄنٛسہٕ ٹرانسفر", "reference_text": "Can you check if this months salary was credited to my bank account 984060592899 in Dhanlaxmi Bank and if yes transfer Rs 7990 to 984060592899 in Dhanlaxmi Bank via MobiKwik", "char_len_source": 214, "char_len_reference": 173, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0082", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "گوہاٹی ہائی کورٹُک اکھ سرکٹ بیٚنَٛچ چھُ ۱۹۷۴ پؠٹھ شیلانگس منٛز کٲم کران", "reference_text": "A Circuit Bench of the Guwahati High Court has been functioning at Shillong since 1974", "char_len_source": 71, "char_len_reference": 86, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0083", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شہزادَن مٲنۍ أمۍ سٕنٛز یہِ دعوت تہٕ تَس آو شہزادٕ سٕنٛدی پٲٹھۍ واتنہٕ کرنہٕ", "reference_text": "The prince accepted the invitation and was treated like a prince", "char_len_source": 77, "char_len_reference": 64, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0084", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "میون لِسٹہٕ بناو", "reference_text": "bing up my list", "char_len_source": 16, "char_len_reference": 15, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0085", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تُہۍ کٔرِو آرام تانؠتھ", "reference_text": "You take rest for the time being", "char_len_source": 23, "char_len_reference": 32, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0086", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "حتاکہِ چوپرا ٲہَس گۄڈٕ ایروناٹِکَل اِنجٟنیٚرِنٛگ ہُند مُتعالہٕ کرُنُ یژھان امہِ کٕر ہِنٛدُستٲنہِ فِلِم اِنٛڈسٹرٛی منٛز شٲمِل گَژھنٕچہِ پیشکَس قٔبوُل یوسہٕ أمؠ سٕنٛد خوُبصوُرتی ہِنٛدِ مُقابلہٕ زینٛنہٕ کنہِ أمِس کرنہٕ آیہ", "reference_text": "Although Chopra initially aspired to study aeronautical engineering she accepted offers to join the Indian film industry opportunities which arose as a result of her pageant wins", "char_len_source": 221, "char_len_reference": 178, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0087", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "برنالہ ضلعس مَنٛز ژھار سینٹرٕک قٕسم ڈایگناسٹِکس سیٚنٛٹر تشخٟصی مرکز وٲلۍ ایی ایس آیۍ سی سینٹر", "reference_text": "Search for ESIC Centres with centre type Diagnostics Center in District Barnala", "char_len_source": 93, "char_len_reference": 79, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0088", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَمہِ کِسٕے نتٟجس منٛز ووٚن تَمہِ اَکہِ دوہہٕ پَنہٕ نِس نیٚچوِس تہٕ أمس دوستس زِ بٔہ نژٕ تۄہہِ برٛۄنٛہہ کَنہِ تہٕ تمَو تہِ مون یہِ", "reference_text": "Consequently one evening she suggested to her son and his friend that she should dance before them and they agreed", "char_len_source": 131, "char_len_reference": 114, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0089", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شرفَن وُچھ یہِ تہٕ ووٚنُن أمِس نفرس زِ ژٕ ژھٕن پلو کٔڈِتھ تہٕ تھاو أکِتھ کُن پَتہٕ ہؠکَکھ سہل پٲٹھۍ کٲم کٔرِتھ", "reference_text": "Sharaf noticed them and told the man to take off his clothes and lay them on one side and then he would be able to work easily", "char_len_source": 112, "char_len_reference": 126, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0090", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "قٲد خانہٕ ٲسہِ بھاوے سٕنٛدِ خٲطرٕ پرنٕچہِ تہِ لؠکھنٕچہِ جایہِ بنیمٕتہِ", "reference_text": "The jails for Bhave had become the places of reading and writing", "char_len_source": 70, "char_len_reference": 64, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0091", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مےٚ وُچھ سُہ ٲخری لٹہِ مارکیٹس منٛز", "reference_text": "It is never too late to give up a bad habit.", "char_len_source": 35, "char_len_reference": 44, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0092", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کینژو نزدیکی گامو پؠٹھہٕ تہِ گٔے کینٛہہ لوٗکھ أمِس وُچھنہٕ خٲطرٕ تہٕ یِمَو منٛزٕ اوس اَکھ کرٛال تہِ", "reference_text": "Some few people also went from the neighbouring villages and amongst them was a maker of earthenware", "char_len_source": 100, "char_len_reference": 100, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0093", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پوٚس چھُ بُبرن ہندِ اِکوٹہٕ سمنہٕ سٟتؠ بنان یمن بُبرن ہُند سمُن چھُٖ ُگول آسان لحازا رِیٲضیٲتی نمُوُنہٕ بناونہٕ باپت مُشکل مگر توتہِ چھُ یہِ کرُن یہِ باقین چیزن سٟتؠ سٟتؠ یہِ فِکرِ ترنہٕ باپت ضروُری زِمایہ کتھہٕ کٕنہِ چھُ اندو کنہِ نیران", "reference_text": "Foams are formed when bubbles adhere together The junctions of these bubbles are curved and therefore difficult to model mathematically yet it is necessary to do so to understand how the liquid drains through the borders among other things", "char_len_source": 237, "char_len_reference": 239, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0094", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "باقٕے احتِیٲتی اِقدامن منٛز چھِ جِسمٲنی یا سَمٲجی دوُری الگ روزُن گَرِ چیٚن أنٛدرِمیٚن جاین منٛز ہَواہُک آمدرَفت ژاسہِ تہٕ پۄنٛدِ وِزِ تھوٚپ اَتھٕ پٔٹھراوٕنہِ تہٕ چھلنَے اَتھٕ بٕتِھہِ نِشہِ دوُر تھاوٕنہِ شٲمِل", "reference_text": "Other preventive measures include physical or social distancing quarantining ventilation of indoor spaces covering coughs and sneezes hand washing and keeping unwashed hands away from the face", "char_len_source": 210, "char_len_reference": 192, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0095", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہرگاہ کانٛہہ شخص سفرس پؠٹھ آسہِ تہٕ راتھ کُیٛتھ کُنہِ ازٲنۍ جایہِ واتہِ تَس پَزِ تَتھ جایہِ متعلق حؠسہٕ روزُن ییٚتہِ سُہ ٹھۂرِ تہٕ نِندرِ منٛز پَزنَس نہٕ أچھ وَٹنہِ یُتھ زَن موت أمِس أچھ وَٹناوِنہٕ", "reference_text": "If a person is travelling and reaches any strange place at night let him be careful where he puts up and not close his eyes in sleep lest he close them in death", "char_len_source": 202, "char_len_reference": 160, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0096", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بیٚلجِیم کہِ دِفٲقی مُقدِمہٕ چلاون وٲلہِ دفتَرن چُھ ووٚنمُت زِ گِرِفتار کرنہٕ آمٕتہِ چھِ فوجی تہٕ دچھِنہِ درِکہِ انتہا پسند نظرییہ وٲلہِ لُکھ یِم نسٕل پَرستی غٲر مُلکی لُکن ہِنٛز نفرت جرمٕنہِ قتل عامس اِنٛکار یٔہوُدؠن ہِنٛزِ دُشمٔنی تہٕ نیم نازی پرستی ذریعہ پنُن اظہار چھِ کران", "reference_text": "Belgiums federal prosecutors office has said that those arrested are soldiers and people with an extremeright ideology who clearly express themselves through racism xenophobia Holocaust denial antiSemitism and neoNazism", "char_len_source": 277, "char_len_reference": 219, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0097", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھُس یژھان پانَس ڈٟمڈ پرٛاویٹ یُنورسِٹی ادارس مَنٛز داخلہٕ نِیُن یِم َ آرکِٹیٚکچَر فن تعمیر مَنٛز ڈِپلوما لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۱۶۲۰۱۷ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", "reference_text": "I want to get enrolled myself in an Deemed Private University institutes offering Diploma level programs in Architecture Can I get a list of such institutes in the academic year 20162017", "char_len_source": 212, "char_len_reference": 186, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0098", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "نامنظوٗری کِنۍ گٔیہٕ تٔمِس واریاہ مایوٗسی۔", "reference_text": "The disapproval caused him immense disappointment.", "char_len_source": 42, "char_len_reference": 50, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0099", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "دشرتھس تل حٲرِ امہِ سلطنتن وارِیاہ علاقہٕ یِم زن پتہٕ کنال سٕندِ نیچِوِ سمپرتی ین زینہِ", "reference_text": "The empire lost many territories under Dasharatha which were later reconquered by Samprati Kunalas son", "char_len_source": 87, "char_len_reference": 102, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0100", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "۶۶۸۵۱۲۴۸۵۲۲۳ پران نمبر وٲلِس میٲنِس اے پی واٮٔۍ اکاؤنٹس مَنٛز موٗجوٗدٕ ہولڈنگ کیا چھِ", "reference_text": "What is the current holding in my APY account with PRAN number 668512485223", "char_len_source": 85, "char_len_reference": 75, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0101", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَسہِ چھُ کمٕے کینٛہہ مگر چٲنۍ کِنۍ کَرِ اَسہِ پرمیشور یٲری تہٕ بَنہِ برکت", "reference_text": "It is little that we have but it may be that Parameshwar through you will bless us and increase our store", "char_len_source": 74, "char_len_reference": 105, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0102", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "لوٗکھ چھِ زرٲعتی کامہِ انٛجام دِنہٕ خٲطرٕ کھہن منٛز زمیٖن وایان۔", "reference_text": "People plough the field to carry on their agricultural tasks.", "char_len_source": 64, "char_len_reference": 61, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0103", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مےٚ پھیرِ نہٕ چون", "reference_text": "I shall not miss you", "char_len_source": 17, "char_len_reference": 20, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0104", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "باقٕے دۄیو ووٚنُس خۄش گٔژھِتھ سؠٹھاہ جان", "reference_text": "Well done exclaimed the other two brothers", "char_len_source": 40, "char_len_reference": 42, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0105", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بادشاہ تہٕ أمۍ سٕنزِ ٹاچِھ مٔلکانہِ ہٕنز خوٚشی ہیٚکہِ نہٕ لفظن منٛز بیانٕے سپدِتھ ییٚلہِ تِم پانہٕ وٲنۍ سمٕکھۍ تہٕ یہِ ننیٛاکھ زِ یِم ٲسۍ یِتھؠن ترٛؠن لڑکن تہٕ یِژھہِ مٲرۍ مَنٛزِ شہزادِ ہٕندۍ مول موج", "reference_text": "The joy of the king and his favourite wife when they were restored to one another and knew themselves to be the parents of three such fine boys and such a beautiful princess cannot be described", "char_len_source": 200, "char_len_reference": 193, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0106", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیا بہٕ ہیٚکا پننہِ پران نمبر ۶۵۰۷۳۷۹۰۷۹۳۰ سٟتؠ پننہِ پنشنُک رقم چیک کٔرِتھ", "reference_text": "Can I check my pension amount with my PRAN number 650737907930", "char_len_source": 75, "char_len_reference": 62, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0107", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "لہذا سوٗز تَمہِ اَکھ چِٹھۍ بادشاہَس یَتھ منٛز تَس وَننہٕ آو زِ بٔہ چھَس فلٲنۍ پادشاہ سٕنٛز کوٗر یَس کُن یہِ خراج اوس دِوان", "reference_text": "Accordingly she sent a letter to the king saying that she was the daughter of a certain king to whom he paid tribute", "char_len_source": 123, "char_len_reference": 116, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0108", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مای ایٚس کیٛو ایٚل تہٕ اوریکَلس سان ڈیٹا بیسَن سٟتؠ کَنیٚکشَنہٕ خٲطرٕ کٔرِو یہِ پنٛنِس ٹیبلِٹَس یا لیپ ٹاپس پؠٹھ اِستعمال", "reference_text": "Use this on either your tablet or laptop to build connections to databases including MySQL and Oracle", "char_len_source": 121, "char_len_reference": 101, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0109", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أسۍ چھِ ٲسۍ مٕتۍ تٔمِس ژوٗرَس پَتہٕ کَنہِ نماز پران یَسُنٛد نہٕ کانٛہہ شکھٕے ہیٚکہِ ہے کٔرِتھ", "reference_text": "We have been led in prayer by an unbelieving rogue", "char_len_source": 94, "char_len_reference": 50, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0110", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "حالَے طوٗفانو چھےٚ فصلس تبٲہی کٔرمٕژ۔", "reference_text": "The recent storms have wreaked havoc on crops.", "char_len_source": 37, "char_len_reference": 46, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0111", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "گَوا ہُک چھِ امہِ کین سَفید سیٚکہِ ہِنٛدیٚن سَمنٛدٔری بَٹھؠن سرگَرم روتلِہِ زِنٛدگی عِبادت گاہو تہٕ عالمی مٟراث کِس فہرستس منٛز درٕج فنہِ تعمٟر کہِ وجہ کنہِ پرٛؠتھ ؤرِیہِ بٔڑِس تعدادس منٛز بین الاقوامی تہٕ مُلکی سَیاح اَتیُک دورٕ کَران", "reference_text": "Goa is visited by large number of international and domestic tourists each year because of its whitesand beaches active nightlife places of worship and World Heritagelisted architecture", "char_len_source": 236, "char_len_reference": 185, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0112", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ کرٕ نہٕ مٔزیٖد تفصیٖل بَیان", "reference_text": "I shall not elaborate any further.", "char_len_source": 31, "char_len_reference": 34, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0113", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کھوُپرٕ تہٕ کھوُپرٕ تٟل چھُ بٔڑِس پیمانَس پؠٹھ گوہُک کھؠن بناونَس منٛز مرٕژ مصالہٕ تہٕ سِرکَس سٟتؠ اِستعمال یِوان کرنہٕ یپس کیتھولِک کھانَن منٛز اِستعمال چھُ یِوان کرنہٕ ییٚمہِ سٟتؠ سِنِس اکھ خاص مَزٕ مِلان چھُ", "reference_text": "Coconut and coconut oil are widely used in Goan cooking along with chilli peppers spices and vinegar used in the Catholic cuisine giving the food a unique flavour", "char_len_source": 210, "char_len_reference": 162, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0114", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "راتھ رٲژ کیُتھ ٲس تٔمۍ سٕنٛز گٲڈۍ کٔمۍ تانۍ ژوٗرِ نیٖمٕژ۔", "reference_text": "Somebody lifted his car last night.", "char_len_source": 57, "char_len_reference": 35, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0115", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مگرسرپھَن کوٚرُس یہِ ؤنِتھ انکار زِ بہٕ گژھہٕ نہٕ توٚت تانۍ پَنہٕ نِس مٲلِس نِشہِ حاضِر یوٚ تانۍ نہٕ مےٚ یہِ ازٲنۍ یَلہٕ ترٛاوِ ییٚمۍ بہٕ سؠٹھہٕے خوفناک موتہٕ نِشہِ بچووُس تہٕ ییٚمہِ کِنۍ بٔہ أمۍ سُنٛد غلام چھُس", "reference_text": "But the snake refused saying that it could not go to its father till it was released from this stranger who had saved it from a most terrible death and whose slave it therefore was", "char_len_source": 213, "char_len_reference": 180, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0116", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہے اولی میٲنۍ لِسٹہٕ کیٛاہ چھِ", "reference_text": "hey olly what are my lists", "char_len_source": 30, "char_len_reference": 26, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0117", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَتھ جہازس منٛز اوس اَکھ بارستہٕ سوداگر ییٚمۍ ملکہ ہُنٛد پزنہٕ پیٚٹھی حسُن وُچھِتھ تہٕ جہاز ران سٕنٛدِ طرفہٕ کھاندر تجویزس دۄہَے أمۍ سُنٛد انکار بوٗزِتھ سوٗچ زِ بٔہ ما ہؠمن یہِ مٔلۍ تہٕ زینہٕ أمۍ سُنٛد دِل", "reference_text": "Now there was in the same ship a great merchant who seeing the queens exceeding beauty and hearing her refuse the captains suit day after day thought that perhaps he might buy her and win over her affection", "char_len_source": 207, "char_len_reference": 206, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0118", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیا ژٕ ہیٚککھا ۲۰۰۲۲۰۰۳ تعلٟمی ورۍ یَس مَنٛز ہوٹل میٚنیجمیٚنٛٹ اینٛڈ کیٹرِنٛگ مَنٛز ڈِپلوما لیولُک پروگرام پیش کرن وٲلۍ تمام اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ یُنورسِٹی کہِ زیرِ اِنتِظام یُنورسِٹی میٚنیجڑ ادارن ہُنٛد لسٹ بنٲوِتھ", "reference_text": "In the academic year 20022003 Can you list all the AICTE approved University Managed institutes offering Diploma level programs in Hotel Management and Catering", "char_len_source": 227, "char_len_reference": 160, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0119", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہرگا تہِ سَپُد تہٕ تیٚلہِ ؤنۍ زیوٛس زِ یِمَن ہُنٛد قٟمت چھُ انسان أچھَن ہٕنٛز جوٗرۍ", "reference_text": "If so then tell her that the price is a pair of human eyes", "char_len_source": 85, "char_len_reference": 58, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0120", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ آبشار چُھ وۄنہِ ۱۹۷۹ تھس منٛز قٲیِم کرنہٕ آمژٕ جنٛگلی زُو ذٲژن ہِنٛزِ چھپن جایہِ ہُنٛد اَکھ حِصہٕ تہٕ وۄنہِ چُھ مَگرمَچھن تہٕ باقٕیہ جانوَرن ہِنٛدِس شِکارس پؠٹھ ٹھاک لگاونہٕ آمُت", "reference_text": "The fall is now part of the Kaimur Wildlife Sanctuary established in 1979 and the hunting of crocodiles and other animals is now prohibited", "char_len_source": 182, "char_len_reference": 139, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0121", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یورپس منٛز ٲسۍ تہنٛز ساروِی کھوتہٕ بٔڑ کامیٲبی سینڈوکن یٔمۍ برطانوی نوآبادیاتی دورس منٛز اکھ لولہٕ داستان جنوب مشرقی ایشیائی بحری قزاقٕچ دلٟل اکھ اطالویجرمنفرانسیسی ٹی وی سیریز یٔمۍ پورٕ یورپَس منٛز وُچھَن والؠن ہُنٛد رِیکارڈ پھترٲو", "reference_text": "In Europe his greatest success was Sandokan the saga of a romantic Southeast Asian pirate during British colonial times an ItalianGermanFrench TV series which broke viewership records across Europe", "char_len_source": 232, "char_len_reference": 197, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0122", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہ چھ میٲنۍ دانت", "reference_text": "Here are my teeth", "char_len_source": 16, "char_len_reference": 17, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0123", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بچس چھےٚ نیہٕ زبانہٕ ییٚچھنہٕ خٲطرٕ سٮ۪ٹھا جان قٲبلِیت۔", "reference_text": "The child has a great faculty for learning new languages.", "char_len_source": 55, "char_len_reference": 57, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0124", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھُ اکھ اِنسان دٔسۍ بَناونہٕ آمُت جٟل ییٚمیُک ناو چھُ اُدے پوُر تہٕ میواڑُک مہارانا فتح سنگَس پؠٹھ تھاونہٕ آمُت یُس اُدَے پوُرَس کُن شُمٲلۍ مغرِبَس منٛز پچولا جٟل کِس شُمالَس منٛز ۱۶۸۰ کِس دہائی منٛز اوس بناونہٕ آمُت", "reference_text": "It is an artificial lake named after Maharana Fateh Singh of Udaipur and Mewar constructed northwest of Udaipur to the north of Lake Pichola in the 1680s", "char_len_source": 220, "char_len_reference": 153, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0125", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پنٛنہِ ایٚل ایٚل سی کس بُنیٲدی تشکٟلس مُتعلِق کٔرِو زانٛکٲری درٕج اَمیُک گۄڈنیُوک تہٕ بدلاونہٕ آمُت کارٕبٲرِ ناو اَگر یِم مُختٔلِف چھِ تہٕ نوٚوُے مُقرر کرنہٕ آمُت دفتَر یا نٔوِس رِیاستَس منٛز کارٕبارُک پتاہ", "reference_text": "Enter information about your LLCs original formation its initial and converted business name if they differ and newly designated office or the businesss address in the new state", "char_len_source": 206, "char_len_reference": 177, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0126", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھےٚ زانانَن پؠٹھ مبنی فلمَو منٛز پنِنہِ استعداد تہٕ مضبوُط زانانَن ہٕنٛز تصویر کشی باپتھ یِوان زاننہٕ یہِ چھےٚ میڈیاہَس منٛز ہندوستانٕچ ساروِی کھۄتہٕ زِیٛادٕ معاوضہٕ نِنہٕ واجیٚنۍ اَداکارہ پٲٹھۍ بیان یِوان کرنہٕ", "reference_text": "Known for her versatility and portrayal of strong women in femalecentric films she has been described in the media as one of Indias highestpaid actresses", "char_len_source": 216, "char_len_reference": 153, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0127", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سڑکہِ ہُنٛد شور چُھ مےٚ پاگل کران۔", "reference_text": "The street noise is driving me mad.", "char_len_source": 34, "char_len_reference": 35, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0128", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ییٚلہِ شہزادِ یہِ وُچھ تَس روٗد نہٕ پانس تانۍ سۄ آیہِ ہکہٕ برٛونٛٹھ کُن تہٕ پییٚہِ شہزادٕ سٕنٛدِس سٟنس پؠٹھ تہٕ خوٚشی منٛز ژھچَن وَدَن باکہٕ", "reference_text": "When the princess saw this she could not restrain herself she rushed forward fell on the princes chest and wept for joy", "char_len_source": 141, "char_len_reference": 119, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0129", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "باقین پیشابہٕ نالہِ منٛز ورم پٲدٕ کرن والین جراشیمن ہندین زاژن ہٕندِ پٲٹھی چھُ سی جِنسِیٲتی لاگدار دار بیمارِ ہندِ ین جراشیمن شکل بدلاونہٕ حِسابہٕ زٕ مُختلِف زِندگی ہندِ مرحلہٕ زرن ہندِ خلیہ تہٕ زال ییرن وٲلہِ خلیہ", "reference_text": "Like other Chlamydia species the C trachomatis life cycle consists of two morphologically distinct life stages elementary bodies and reticulate bodies", "char_len_source": 214, "char_len_reference": 150, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0130", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ریتہٕ وار بوموار بوموار بوموار بوموار تہٕ جمع دۄہ علاوٕ پرٛؠتھ دۄہہ", "reference_text": "Every day except for Sunday Monday Tuesday Wednesday Thursday and Friday", "char_len_source": 67, "char_len_reference": 72, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0131", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "نامزد ٹاڈا عدالتَن دِیُت مُلزِم نمبر ۹۳ یَس ممبئیہِ بم دھماکہٕ کیسَس منٛز ۵۵ سرفراز داؤد پھانسے سٲزِش تہٕ حملَن منٛز استعمال گژھَن وٲلۍ اسلحہ تہٕ گولہ باروُد منتقل کرنُک مُجرِم قرار", "reference_text": "The designated TADA court pronounced accused no 55 in the 93 Mumbai bombing case Sarfaraz Dawood Phanse guilty of conspiracy and transporting arms and ammunition used in the attacks", "char_len_source": 181, "char_len_reference": 181, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0132", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مگر اَسہِ ٲس نہٕ کانٛہہ فکر", "reference_text": "But we were not worried", "char_len_source": 27, "char_len_reference": 23, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0133", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمہِ سٕنز پیشورانہٕ زِندگی روُز ۶۵ ؤریہہ کھۄتہٕ زیادٕ کالَس تانہِ چلان ۱۱۴ فِلمَن منٛز اداکاری یِمَو منٛز ۹۲ تَن منٛز تٔمہِ کنی زٕنہِ مرکزی کردار ۍ سولو ہیرو سُنٛد کردار ادا کوٚرتہٕ تٔمہِ کَرِ زٕ انٛگریزۍ فِلمہٕ", "reference_text": "His career spanned more than 65 years acting in 114 Hindi films of which 92 had him play the main solo lead hero and he did two English films", "char_len_source": 213, "char_len_reference": 141, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0134", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "أکِس بھیڑ سنٛز خصوُصِیژ چھِ رُکنہٕ ورٲے حَملٕہ", "reference_text": "The essence of a swarmer is nonstop aggression", "char_len_source": 47, "char_len_reference": 46, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0135", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ نفر یُس بییٚس پانسٕے ہِوِس زُو ذٲژ معمولی رقمہٕ خٲطرٕ کَن ژٹنَس پَژِنہٕ تٔمِس پَزِ نہٕ پَژھ کَرٕنۍ", "reference_text": "The man who would not scruple to deprive a fellowcreature of an ear for a trifle is not the man to be trusted", "char_len_source": 102, "char_len_reference": 109, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0136", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "راتھ سۄ بِل برنہٕ پتہٕ تہِ کیٛازِ چھِ مےٚ کرٛیٚڈِٹ کارڈ ادٲیگی باپتھ ریمنانڑر یِوان", "reference_text": "Why did I get the reminder for Credit Card payment even after completing that transaction yesterday", "char_len_source": 83, "char_len_reference": 99, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0137", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "رژھا آرام تہٕ نِندٕر کرنہٕ پَتہٕ درٛاو شہزادٕ اَتھ جایہِ نظرا دِنہِ تہٕ کمٕے کٲلۍ ژاو أکِس بٔڈِس تہٕ وُٹھۍ وُٹھۍ زنڈن ہٕندِس جنگلس منٛز ییٚتہِ سُہ بیٚیہِ پتھر بِہتھ پَنہٕ نِس قسمتس پؠٹھ ماتم کرنہِ تہٕ وَدنہِ لوٚگ", "reference_text": "After some rest and sleep he set forth to reconnoitre the place and in a little while entered a large and intricate jungle where he again rested mourning and lamenting his lot", "char_len_source": 214, "char_len_reference": 175, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0138", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مہربٲنی کٔرِتھ کَر میانہِ بیڈ روٗمٕچ لایِٹ بنٛد", "reference_text": "turn off the light of my bed room please", "char_len_source": 47, "char_len_reference": 40, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0139", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَمہِ حٔقٟقتہٕ باوجوُد زِ صِرف افغان افیم پٲداوار سٟتؠ چھِ دَہ بٔ اَرب وادٕ امرٟکی ڈالر حٲصِل سپدان ایٚف اے ٹی ایٚفن چُھ نہٕ افغٲنِستان غٲر تعاوُن کرن والیٚن مُلکن ہِنٛدِس بٕلیک لِسٹس منٛز شٲمِل کوٚرمُت", "reference_text": "Despite the fact that tens of billions of USDs are generated from the Afghan opium harvest alone the FATF has not added Afghanistan to its blacklist of uncooperative nations", "char_len_source": 202, "char_len_reference": 173, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0140", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھُس یژھان پانَس یُنورسِٹی کہِ زیرِ اِنتِظام یُنورسِٹی میٚنیجڑ ادارس مَنٛز داخلہٕ نِیُن یِم َ ٹاوُن پٕلینِنٛگ مَنٛز پی جی لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۲۰۲۰۲۱ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", "reference_text": "I want to get enrolled myself in an University Managed institutes offering PG level programs in Town Planning Can I get a list of such institutes in the academic year 20202021", "char_len_source": 228, "char_len_reference": 175, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0141", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا سَوراشٹرٛا گرٛامٟن بیٚنٛک منٛز میٲنِس ۰۴۴۷۵۱۵۹۳۹۳۴ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر اَمیزن پے ذٔریعہٕ سَوراشٹرٛا گرٛامٟن بیٚنٛک منٛز ۹۰۰۸ ۰۴۴۷۵۱۵۹۳۹۳۴ پۄنٛسہٕ ٹرانسفر", "reference_text": "Can you check if this months salary was credited to my bank account 044751593934 in Saurashtra Gramin Bank and if yes transfer Rs 9008 to 044751593934 in Saurashtra Gramin Bank via Amazon Pay", "char_len_source": 229, "char_len_reference": 191, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0142", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کمار گو شعبہٕ منٛزٕ ۱۹۹۵تھس منٛز سُبُقدوش توتام اوس ہِند کس ساینسی سِمتس پؠٹھ وارِیاہن کمیٹِین منٛز یمہِ سنزِ سرپرستی تہٕ رُکنیت سٟتؠ واضح اشر پیومُت یمن منٛز تمہِ کٲنسہِ زٕٹ کرنہٕ ورٲیی پنٕنہِ جوٲزِیٲتی تہٕ بِلا مُقابلہٕ نوقتے نِگاہ پننِس مُنقرد اندازس منٛز بٲوِ", "reference_text": "Kumar retired from the department in 1995 By then he had had a substantial influence on the course of Indian science through mentoring and membership in various committees where he brought his unique style of forcing a logical and uncontestable point of view without running down anyone", "char_len_source": 263, "char_len_reference": 286, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0143", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بِجلی ہُنٛد میٖٹر چُھ ہیرن تلہِ کنہِ۔", "reference_text": "The electricity meter is under the stairs.", "char_len_source": 37, "char_len_reference": 42, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0144", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کانٛگرس پارٹی چھِ رفتار سان بروٚنہہ پکان", "reference_text": "The Congress party seems to be moving into top gear.", "char_len_source": 40, "char_len_reference": 52, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0145", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اکھ قٲبلِ معٲفی گۄناہ، کیازِ کہِ ژےٚ کوٚرُتھ یہِ بغٲر کُنہِ غلط نیت۔", "reference_text": "A venial sin, for you acted without evil intention.", "char_len_source": 68, "char_len_reference": 51, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0146", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بین الاقوٲمی سطحس پؠٹھ چھےٚ اِنٛٹرنیشنل شوُٹِنٛگ سٕپورٹ فیٚڈریشنَس سٲرِسٕے دُنیاہس منٛز سپدن والیٚن اولمپک شوُٹِنٛگ چیٚن تقرٟبن پؠٹھ نِگرٲنی آسان ییٚلہِ زن نیشنل گَورنِنٛگ باڈٟز پرٛؠتھ مُلکس منٛز اَمہِ کھیلُک اِنتِظام چُھِ کَران", "reference_text": "Internationally the International Shooting Sport Federation has oversight of all Olympic shooting events worldwide while National Governing Bodies administer the sport within each country", "char_len_source": 228, "char_len_reference": 187, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0147", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یِمو دۄیَو بادشاہو یوٚدوَے اَکھ أکۍ سُنٛد زٕنٛہے تہِ بوٗزمُت چھُ تہٕ نَہ چھِ زانٛہہ پانہٕ وٲنۍ سمکھیمٕتۍ تہِ کٔرِتھ تہِ چھِ پَنہٕ نؠن شُرؠن ہُنٛد رشتہٕ گنٛڈُن یژھان", "reference_text": "These two kings though they have never seen or heard of one another yet wish their children to be united in marriage", "char_len_source": 165, "char_len_reference": 116, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0148", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مےٚ اوس بازار ؤچھمت مگر کتابہٕ آسہٕ نہٕ ییٚتہ", "reference_text": "I did check out the Market but the books were not there", "char_len_source": 45, "char_len_reference": 55, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0149", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہمساے مُلک چُھ کثیٖر طورس پیٚٹھ آباد۔", "reference_text": "The surrounding country is thickly populated.", "char_len_source": 37, "char_len_reference": 45, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0150", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بڈِس پیمانس پؠٹھ تہٕ تھزِ اندٕ وندٕ ترتیبی تکنیکہِ ہندِ بارسس ہِنہٕ سٟتؠ چھِ اسہِ وٚنہِ بھارٕ جنسوم ترتیبی ٰاداد شُمار بناونس اہل گٲمٕتہِ تھٕ سٕتی کلہِ کیو مُختلِف صو بشمۄُل اکہِ خلیہِ کس سطحس پؠٹھ ترن وول عاداد شُمار تہِ", "reference_text": "With the advent of largescale and highthroughput sequencing technologies we are now able to generate large highdensity genome sequencing data and also transcriptome data from various parts of a plant including at single cell level says Varshney", "char_len_source": 221, "char_len_reference": 244, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0151", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سۄ چھےٚ طبیچ طٲلبہِ علِم ۔", "reference_text": "She's a medical student.", "char_len_source": 26, "char_len_reference": 24, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0152", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "موختصر ناو چھِ اَکثَر یادشت ہُرراونہٕ کین آلاتن ہندِ پٲٹھہِ ہیچھناونہٕ یوان مِسالے فِزیکسس منٛز چھِ بوزنہٕ یِنہٕ والہِ وارِیاہن رنگن ہنزن رٕکھن ہٕندِ رنگ آر او وایی جی بی وی ووزُل سنگتٕرِ لیدُر سبز نِیوُل لاجورٕدِ بُنفشہِ", "reference_text": "Acronyms are often taught as mnemonic devices for example in physics the colors of the visible spectrum are said to be ROY G BIV redorangeyellowgreenblueindigoviolet", "char_len_source": 221, "char_len_reference": 165, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0153", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا نیٚنِتال بیٚنٛک منٛز میٲنِس ۵۶۵۳۳۷۴۶۷۵۵۷ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر پے ٹی ایٚم ذٔریعہٕ نیٚنِتال بیٚنٛک منٛز ۳۵۵۸ ۵۶۵۳۳۷۴۶۷۵۵۷ پۄنٛسہٕ ٹرانسفر", "reference_text": "Can you check if this months salary was credited to my bank account 565337467557 in Nainital Bank and if yes transfer Rs 3558 to 565337467557 in Nainital Bank via PayTm", "char_len_source": 210, "char_len_reference": 168, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0154", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ ہٮ۪کیہِ ژےٚ ژ ٮ۪تس پٲوتھ تہنٚز چِٹھِ جواب لٮ۪کُھن؟", "reference_text": "May I remind you to answer his letter?", "char_len_source": 54, "char_len_reference": 38, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0155", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "وارشٕنییَن سوُنٛچ زِ جینوم کہٕ مَدتہٕ سٟتؠ پٲداوار بناونہٕ چہِ تکنٟکہِ ہُنٛد اِستعمال کٔرِتھ بہتر پٲداوار دِنہٕ واجنہِ دالہٕ تہٕ تِلہٕ گۄگل تَیار کَرنہٕ سٟتؠ گَژھہِ نہٕ صِرِف لۄکٹؠن زٔمٟندارَن ہِنٛزِ آمدٔنی منٛز ہُرؠر بٕلکہِ زٔمٟنُک نٟم خۄشٕک حِصہٕ پٲداوار خٲطرٕ اِستعمال کٔرِتھ بَنہِ مُلکس منٛز غٕزہٕچ فَرٲہمی یٔقٟنی", "reference_text": "Varshney reckoned that developing betteryielding pulses and oilseeds using genomeassisted breeding techniques would not only enhance the income of smallholder farmers but ensure the countrys nutritional security by putting the semiarid stretch of land to productive use", "char_len_source": 317, "char_len_reference": 269, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0156", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کلاس شروٗع گژھنہٕ برٛونٛہہ زٕ گھنٹہٕ کٔر ڈانس کلاس خٲطرٕ الارم سیٹ", "reference_text": "set an alarm for the dance classes two hours before the classes start", "char_len_source": 66, "char_len_reference": 69, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0157", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بہٕ چھس پیاسہ", "reference_text": "Im thirsty", "char_len_source": 13, "char_len_reference": 10, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0158", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "برطانوی عۄہدٕ دارو کوٚر اَکھ ڈاک بٔنٛگلہٕ تعمٟر ییتہِ پؠٹھہٕ ۳۰۰ فٕٹہٕ کھجرٕ تہٕ ۱۰۰ فٕٹہ تھدِ آبٕشارُک نظارٕ بوزنہٕ یوان اوس", "reference_text": "British officials constructed a dak bungalow with a view of the 300 feet wide and 100 feet high waterfall", "char_len_source": 125, "char_len_reference": 105, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0159", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شامس ووت شہزادٕ تہٕ اتہِ وُچھِن پنٕنۍ مٲرۍ مٔنٛز آشِنۍ تہٕ سَپُد سؠٹھاہ خۄش", "reference_text": "In the evening the prince returned and saw his beautiful wife and was delighted", "char_len_source": 76, "char_len_reference": 79, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0160", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تہِ کیٛازِ یہِ ٲس نہٕ کانٛہہ بٔڈ کتھٕے", "reference_text": "Because it would have been a small thing", "char_len_source": 38, "char_len_reference": 40, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0161", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پوٗرٕ ملکس منٛز پھہلیوو تیٖزی سان ۄبا", "reference_text": "An epidemic is raging throughout the country.", "char_len_source": 37, "char_len_reference": 45, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0162", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ کوٚر أکِسبٔڑِس موٚہِنٛوِس سۭتۍ خانٛدر۔", "reference_text": "She married a magnate.", "char_len_source": 44, "char_len_reference": 22, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0163", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیا کانٛہہ پونٛسہٕ دِتھ میلن وول ویکسِنیشن سینٹر چھا یِم کو ویٚکسٟن دٔیُم ڈوز چھِ فراہَم کران", "reference_text": "Are there any Paid vaccination centres which provide Second Dose of COVAXIN", "char_len_source": 93, "char_len_reference": 75, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0164", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "وارشنے یس چُھ یاد پؠوان زِ ۲٠٠۵ پؠٹھٕ دۄن ؤرِین تانۍ کِتھ کٔنۍ کوٚر مےٚ پنٛنِس تحقٟقی کیریَرس منٛز جَدوجَہر یِمن فصلن پؠٹھ مےٚ کٲم کَرٕنۍ صٔحی کٔر تِمن مُتعلِق ٲس محدوُد جٟن یٲیی زانٛکٲری چَنہٕ ہِنٛدُستٲنۍ چَنہٕ چھولہٕ دال تہٕ جلگوزٕ", "reference_text": "For two years from 2005 I struggled in my research career recalls Varshney There was only limited genetic information on the crops I chose to work on chickpea Indian chana pigeon pea and groundnut", "char_len_source": 234, "char_len_reference": 196, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0165", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مے ون نیو یارک شہرک موسم", "reference_text": "tell me the current weather in new york city", "char_len_source": 24, "char_len_reference": 44, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0166", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شیٚستٕر کٲم بنٛد کرنس خلاف عرضی پٮ۪ٹھ کوٚر ساروے رُکنو دستخط", "reference_text": "A petition against closing the iron works was signed by all the members.", "char_len_source": 60, "char_len_reference": 72, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0167", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بٔہ یعنے بادشاہ چون خانہٕ دار تُہنٛد مول اوسنہٕ آبس پھوٚٹمُت یِتھہٕ کٕنۍ تۄہہِ باسان چھُو بلکہِ اوسُس اَکہِ بجہِ گاڈِ نؠنگلوومُت تہٕ اوسُس کینژَن دۄہَن تٔسۍ انٛدر پَتہٕ تُج اَمہِ بلایہِ بٔٹھِس کُن وۄٹھ تہٕ بٔہ آس اَمہِ منٛزٕ کَڈنہٕ", "reference_text": "I the king your husband your father was not drowned as you supposed but was swallowed by a big fish and nourished by it for some days and then the monster threw itself upon the shore and I was extricated", "char_len_source": 233, "char_len_reference": 203, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0168", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہِ چھُ لگ بگ پرٛؠتھ وِزِ أکہ فور ہینڈ ٹاس سٟتؠ یوان کرنہٕ", "reference_text": "It is nearly always done with a forehand stroke", "char_len_source": 59, "char_len_reference": 47, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0169", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "شہزادٕ کشمیرا سنٛگھ پیشوَرا سنٛگھ تہٕ شہزادٕ مُلتانا سِنٛگھ ٲسہِ دیا کورِ تہٕ رَتَن کورِ زامٕتہِ یِمہٕ رنجیت سِنٛگھ سٕنزٕ زنانہٕ آسہٕ", "reference_text": "Prince Kashmira Singh Peshaura Singh and Prince Multana Singh were born to Daya Kaur and Ratan Kaur wives of Ranjit Singh", "char_len_source": 133, "char_len_reference": 121, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0170", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ٲٹھ چھ کارپینٹر تہٕ شیٚیہ میسن", "reference_text": "There are eight carpenters and six masons", "char_len_source": 30, "char_len_reference": 41, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0171", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ٹِکی چُھ یِوان تلنہٕ برٛونٛہہ اوٹ متھنہٕ۔", "reference_text": "Cutlets are floured before frying.", "char_len_source": 41, "char_len_reference": 34, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0172", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "جیزبل موٗد اکھ خوفناک موت۔", "reference_text": "Jezebel died a horrible death.", "char_len_source": 26, "char_len_reference": 30, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0173", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ چَھ یتھ موٗضَوعس پٮ۪ٹھ تحقیٖقَس متعلق ناوٲقٔف باسان۔", "reference_text": "He seems unfamiliar with research on this topic.", "char_len_source": 56, "char_len_reference": 48, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0174", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تِمن علاقن یِمن منٛز سایکل چَلاوُن مقبوُل چُھ تہٕ اتھ حوصلہٕ افزٲیی کرنہٕ یِوان چھِ تتہِ چھےٚ سایکل پارٕک کرنہٕ چہِ سٔہوُلِیاتہٕ یَتھ منٛز سایکل سٕٹینٛڈ قُلُف کرنہٕ یِنہٕ وٲلہِ گیراج تہٕ سایکل پارکہٕ یِمن پؠٹھ نظر گُزر چھےٚ تھاونہٕ یِوان ژوُرٕ کم کرنہٕ خٲطرٕ اِستعمال کرنہٕ یِوان", "reference_text": "In areas in which cycling is popular and encouraged cycleparking facilities using bicycle stands lockable minigarages and patrolled cycle parks are used in order to reduce theft", "char_len_source": 279, "char_len_reference": 177, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0175", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "وارشنی یُس اَمہِ وقتہٕ لیٚبِنٟز اِنسٹی ٹیٛوُٹ آف پٕلانٹ جیٚنیٚٹِکس اینٛڈ کرٛاپ پٕلانٛٹ رِسٲرچ گیٹَرس لیٚبیٚن مرکٔزی جرمٔنی منٛز تحقٟقی ساینس دان اوس یہِ اوس بولوگناہس منٛز أکِس کانفرنسہِ منٛز شِرکت کَران اَتہِ کوٚر بولوگناہن ساینس دانن ہِنٛزِ یِنہٕ واجنہِ نسلن یہِ دعوا زِ تِم کٔرِن زراعت کِس یِنہٕ وٲلِس اِنقِلابس منٛز جٟنومِکس تہٕ بَیو ٹیٚکنالجی ہِنٛدِ طاقتُک اِستعمال", "reference_text": "Varshney then a research scientist at the Leibniz Institute of Plant Genetics and Crop Plant Research at Gatersleben in central Germany was attending a conference in Bologna There Borlaug challenged the next generation of scientists to harness the power of genomics and biotechnology to usher in the next revolution in agriculture", "char_len_source": 371, "char_len_reference": 330, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0176", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "بییٚہِ ووٚننَکھ زِ سۄ کِتھہٕ پٲٹھۍ ٲس سوچان زِ سۄ ہیٚکہِ نہٕ زانٛہہ ووٚنۍ پَنہٕ نِس خانہٕ دارس یعنے تُہنٛدِس مٲلِس سمکھِتھ تہٕ اوسُن أمِس سوداگرس سٟتۍ زٕ ؤری ادا سپدنہٕ پَتہٕ کھاندر کرنُک وعدٕ کوٚرمُت تہٕ یَتھ ووٚنۍ محض ترٛے دۄہ باقٕے چھِ", "reference_text": "and how she thinking that she should never meet with her husband their father again had promised to marry this merchant at the end of two years only three days of which remained now", "char_len_source": 240, "char_len_reference": 181, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0177", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "خراب قٕسمتن اوٚن تٔمِس زوال۔", "reference_text": "Bad luck caused his downfall.", "char_len_source": 28, "char_len_reference": 29, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0178", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تُہۍ چھِوٕ ہمیشہِ میٛانہِ خٲطرٕ کینٛہہ نتہٕ کینٛہہ اَنان", "reference_text": "You always bring something or the other for me", "char_len_source": 56, "char_len_reference": 46, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0179", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ایٚنٹی بَیاٹِک چھِ اکنُک ورم قوبوُہس منٛز تھاونہٕ خٲطرٕ اِستعمال کرنہٕ یِوان تہٕ باقٕیہ تہٕ باقین انتخابن منٛز چھُ بٔڑِس پیمانس پؠٹھ کنہٕ کہِ پردٕچ جَرٲہی شٲمِل کنہٕ کس پردس چاک یا اَگر نَے مٔرٟض ٹھٟک گَژھِ دَباو کم کرنٕچ عمل", "reference_text": "Antibiotics are used to control the otitis media and other options include a wide myringotomy an incision in the tympanic membrane or decompression if the patient does not improve", "char_len_source": 225, "char_len_reference": 179, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0180", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "از راتھ کِیُت پٲیزِ مے یِہ ریکارڈ پلے کرن یاد", "reference_text": "remind me to play this song tonight", "char_len_source": 45, "char_len_reference": 35, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0181", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "کیمکل اِنجینیرِنگ ساینسس پؠٹھ تمہِ سندِس پرچس یُس تمہِ سندِس طالب علم دِلیپ دیسایی ہس سٟتؠ سٟتؠ لیکھنہٕ آو ہوو کمارن زِحساب کرُن کتھہٕ کٕنہِ گژھہِ یہِ مانِتھ زِ اندن ہندِ میلن وٲلہِ حصہٕ چھِ ترکوُنجل نہٕکہِ گول آسان بناوُن", "reference_text": "In one of his famous papers in Chemical Engineering Science authored with his student Dilip Desai Kumar showed how to simplify the calculations by assuming that the border crosssection is a triangle and not curved", "char_len_source": 222, "char_len_reference": 213, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0182", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ڈل جھیٖلس منٛز گنٛد اکھ راؤنڈ", "reference_text": "Play a round in the Dal lake", "char_len_source": 29, "char_len_reference": 28, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0183", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "سُہ اوس نہٕ عام مُسافِر باسان۔", "reference_text": "He seemed not an ordinary mendicant.", "char_len_source": 30, "char_len_reference": 36, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0184", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مثال پٲٹھۍ اگر تُہۍ سپلائرس سٟتؠ مُہادس پؠٹھ تنازٕ گژھہِ تہِ تُہۍ أسِو نہٕ ذٲتی طور پٲٹھۍ پننہِ کمپنی ہنٛد طرفہٕ تِمَن پؠٹھ وٲجب الادا کُنہِ فیس یا پونٛسہٕ ہنٛد ذمہٕ دار", "reference_text": "For instance if you get into a contract dispute with a supplier you will not be personally liable for any fees or charges owed to them by your company", "char_len_source": 170, "char_len_reference": 150, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0185", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "چھاپ پسدن وٲلِس ذرایہ ابلاغس منٛز چھِ آسامٕکہِ روزانہٕ شایع گَژھن وٲلہِ اخبار اَمر اَسوم اَسومیہ خَبر اَسومیہ پرٛتٟدِن دینِک اگرادوُت دینِک جَنم بھوُمی دینِک اَسم گنہ ادِھکار جَناسادَھرن تہٕ نِیومِیا برتا شٲمِل", "reference_text": "Print media include Assamese dailies Amar Asom Asomiya Khabar Asomiya Pratidin Dainik Agradoot Dainik Janambhumi Dainik Asam Gana Adhikar Janasadharan and Niyomiya Barta", "char_len_source": 210, "char_len_reference": 169, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0186", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ریوایتی جہازن چھُ اکوُیہ ڈانچہٕ آسان مگراکہِ کھوتہٕ زیادٕ ڈانچہِ وٲلہِ زٕ برابر مُتوٲتِر ڈانچہ وٲلہِ دُ ڈانچل جہاز تہٕ اکس ڈانچس سٟتؠ زٕ بییہ ڈانچہ جُڈِتھ آسن وٲلہِ ترٚڈانچل جہاز چھِ زیادٕ مقبوُل سپدان َ", "reference_text": "Traditional sailboats are monohulls but multihull catamarans and trimarans are gaining popularity", "char_len_source": 203, "char_len_reference": 97, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0187", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "انگارے باپتھ اوس راجیش کھنہَن ہدایت کار راجیش سیٹھی یَس ووٚنمُت زِ سُہ گژھہِ سلیم خانَس نِش تہٕ کَرِ تَتھ سکرپٹَس پؠٹھ بیٚیہِ کٲم یوٚس تٔمِس نِش ٲس", "reference_text": "For Angaaray Rajesh Khanna asked director Rajesh Sethi to go to Salim Khan and rework on the script he had", "char_len_source": 147, "char_len_reference": 106, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0188", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "مس کس بارس منز چھ کتھ کران", "reference_text": "Talking about hair", "char_len_source": 26, "char_len_reference": 18, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0189", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اورٕ یور دِژٕن نظر تہٕ اَتہِ وُچھِن پَنہٕ نِس معشوق سٕنٛز لاش تہٕ انتہٲیی بد صورت شکلہِ ہُنٛد نفرا اَتھ پؠٹھ وۄدٕنۍ", "reference_text": "Looking about she saw the dead body of her lover and the horrible deformed man standing over it", "char_len_source": 115, "char_len_reference": 95, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0190", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "یہٕ دٮ۪وار سجاونہٕ خٲطرٕ چھِ اسہِ رنٛگ بٔرنٛگی چاکن ہِنٛز ضٔروٗرت", "reference_text": "We need colored chalks for decorating the wall.", "char_len_source": 65, "char_len_reference": 47, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0191", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمۍ اوس واریاہ کال برونٛہہ شہر تروومُت۔", "reference_text": "He left the city long ago.", "char_len_source": 40, "char_len_reference": 26, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0192", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "ہجوٗمس منٛز کینٛہو خراب عناصِرو کٔر تقریٖرِ منٛز خلل۔", "reference_text": "Some bad elements in the crowd disturbed the speech.", "char_len_source": 53, "char_len_reference": 52, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0193", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَتھہٕ سٟتؠ موینہٕ کرنہٕ سٟتؠ مخصوص جاین لگُن چھُ مُتٲصرٕ جاے بدِ کڈنس منٛز فٲیدٕ مند روزان", "reference_text": "Pain elicited by palpating certain structures may be helpful in localizing the affected area", "char_len_source": 91, "char_len_reference": 92, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0194", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "لہذا آیہِ أکِس مُنٛٲسِب وقتس پؠٹھ بادشاہَس یہِ شیٚچھ واتناونہٕ زِ تٔمۍ سٕنٛز اَکھ زنانہٕ چھےٚ گۄبہِ کھۄر تہٕ اَمہِ پتہٕ کمٕے کٲلۍ آیہِ نؠبر تہِ یہِ کَتھ ترٛاونہٕ زِ اَکھ لۄکٕٹۍ شہزٲدۍ پییٚپہِ تھنہٕ", "reference_text": "Accordingly on an appointed time word was sent to the king that one of his wives was pregnant and a little while afterwards the news was spread abroad that a little princess was born", "char_len_source": 200, "char_len_reference": 182, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0195", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اسلم سُنٛد مول چُھ اکھ موم بتہِ بناون وول", "reference_text": "Aslam`s father is a chandler.", "char_len_source": 41, "char_len_reference": 29, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0196", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تٔمِس چُھ کم تنخواہ میلان۔", "reference_text": "She gets a low salary.", "char_len_source": 26, "char_len_reference": 22, "length_bucket": "short", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0197", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "تمہِ کٔر نیشنَل اِنسچوُٹ آف اِنجِنیٚرِنٛگ میسور یُنِورسِٹی منٛز ایٚلیٚکٹِرٛکل اِنجِنیرِنٛگ منٛز بچلٕرس ڈِگری ہیتھ گرٛیجویشَن تہٕ اِنٛڈیَن اِنسٹی ٹیٛوُٹ آف ٹیٚکنالجی کانپوُر پؠٹھہٕ کٕرٕن ماسٹٲرس ڈِگری حٲصِل", "reference_text": "He graduated from the National Institute of Engineering University of Mysore with a bachelors degree in electrical engineering and a masters degree from the Indian Institute of Technology Kanpur", "char_len_source": 205, "char_len_reference": 194, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0198", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "اَمہِ زانکٲری باوٕجوُد تہِ کٔر تِم یہِ حٔقٟقت تسلٟم کرنس منٛز جَدوجَہد زِ سُہ بُلنٛد مقصد وول تحقٟقی منٛصوُبہٕ یُس أمۍ ۲٠٠۳ ہس منٛز سبٕز اِنقلاب کہِ شُروُعات کَرن وٲلۍ نورمن بورلاگ سٕنٛدِ خٕطابہِ سٟتؠ مُتٲثِر گٔژِتھ شُروُع اوس کوٚرمُت گوٚو قٲیِم گَژھنس منٛز ناکام", "reference_text": "Despite that awareness he struggled to come to terms with the fact that the ambitious research project he had embarked upon inspired by a speech in 2003 by Norman Borlaug the Father of Green Revolution had failed to take root", "char_len_source": 264, "char_len_reference": 225, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0199", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "پوُرٕ درجہٕ بندی منٛز چھِ ہسٹوپیتھولوجیکل قٕسم درجہٕ مرحلہٕ رٹن وٲلۍ سنٛز حیثیت تہٕ ڈی این اے ٹیسٹنگ ذریعہٕ طے شدٕ جینٕچ موُجودٕگی یا غٲر موُجودٕگی شٲمِل", "reference_text": "A full classification includes histopathological type grade stage receptor status and the presence or absence of genes as determined by DNA testing", "char_len_source": 153, "char_len_reference": 147, "length_bucket": "medium", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "simple_ks2en_0200", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "domain": "simple_moderate", "source_text": "چوپرایہ کوٚر ۲۰۰۶ ہس منٛز سارِوٕیہ زیادٕ پونٛسہٕ کماون واجِنیٚن پرٛوڈکشَنن کِرٛش تہٕ ڈان فَلمن منٛز اَہم کِردار ادا کرِتھ پَنُن پان قٲیِم تہٕ پتہٕ کوٚر تمہِ یِہنٛدیٚن دویِمیٚن حِصن منٛز پَنُن کِردار دُبارٕ اَدا", "reference_text": "Chopra established herself with starring roles in the topgrossing productions Krrish and Don in 2006 and she later reprised her role in their sequels", "char_len_source": 210, "char_len_reference": 149, "length_bucket": "long", "source_file": "Kashmiri2620translation20dataset.csv", "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} diff --git a/benchmarks/benchmark_simple_ks2en_200.stage1_eval.json b/benchmarks/benchmark_simple_ks2en_200.stage1_eval.json new file mode 100644 index 0000000..458a12d --- /dev/null +++ b/benchmarks/benchmark_simple_ks2en_200.stage1_eval.json @@ -0,0 +1,1330 @@ +{ + "count": 200, + "bleu": 13.071940485844186, + "chrf": 46.989776768425195, + "exact_match_rate": 0.0, + "samples": [ + { + "id": "simple_ks2en_0001", + "source_text": "میون گۄڈنِیُک اِجلاس اوسنہٕ پورٕ پٲٹھۍ ناخۄشگٔوار تَجرُبہٕ۔", + "reference_text": "My first meeting was not a wholly unenjoyable experience.", + "prediction": "My initial meeting was not a pleasant experience altogether." + }, + { + "id": "simple_ks2en_0002", + "source_text": "یِتھُے سُہ پھاسہِ تختس پؠٹھ ووت تہٕ دیوان سُنٛد نیٚچُو آو نؠتھہٕ نٔنۍ کرتَل ہؠتھ دوان دوران بادشاہَس قتل کرنہٕ خٲطرٕ تہٕ وزٟر سٕنٛدۍ نیٚچوِۍ دِیٛت پَنہٕ نؠن سپاہَن اِشارٕ زِ أمِس کرَن اَتھ کامہِ منٛز مدد", + "reference_text": "As he approached the platform the diwans son rushed forward with drawn sword to slay the king and the ministers son made sign to his soldiers to assist him in the deed", + "prediction": "As soon as he ascended the throne Deity brought his son along carrying a sword and instructed one of their soldiers to assist him in this task while delivering up King for execution and Minister sons instructed one among their soldiers whom to help him during this" + }, + { + "id": "simple_ks2en_0003", + "source_text": "ٹیمن کوراتھ پوکجٹس منٛز ترین نُمایا تحقیقی ادارن سٟتؠ اشتعراق اںتڑنیشنل میز اینڈ ویٹ اِمپروُمینٹ سینٹر سی آیہ ایم اایم وایہ ٹی یُس میکسکوہس منٛز چھُ یّنورسٹڮ آف ویسٹرن آسٹریلیا تہٕ روُس کس سکولکووو اِنسچوُٹ اینڈ ٹیکنالجی سکول ٹیک", + "reference_text": "The team has collaborated with three premier research institutes on this project the International Maize and Wheat Improvement Center CIMMYT based in Mexico The University of Western Australia and the Skolkovo Institute of Science and Technology Skoltech in Russia", + "prediction": "The team collaborated with three new research organizations in Mexico namely International میز اینڈ वेट Improvement Centre C I M WY T which operates under the University of Western Australia and Russian school KVOV Institute of Technology School Tech." + }, + { + "id": "simple_ks2en_0004", + "source_text": "أمؠ اوس پنٛنیٚن مدرَسہ کیٚن دۄہَن بہتٔرٟن طٲلبہِ عٔلمہٕ سُنٛد اعزاز تہِ حٲصِل کوٚرمُت تہٕ أمؠ ٲس کوزی کوڈس منٛز نیشنَل اِنسٹی ٹیٛوُٹ آف ٹیٚکنالوجی پؠٹھٕ بی ٹیٚک میٚکینِکَل اِنٛجٟریٚرِنٛگ ہِنٛز ڈگری حٲصِل کٔرمٕژ", + "reference_text": "He also had achieved a best student award during his school days and he had a BTECH Mechanical engineering degree from the National Institute of Technology in Kozhikode", + "prediction": "She had also completed excellent student awards during her school days and holds a B.Tech Mechanical Engineering from National Institute of Technology in Cozhikode.\"" + }, + { + "id": "simple_ks2en_0005", + "source_text": "چَنہٕ کھہَس منٛز ڈاکٹر راجٟو وارشنے جٟنوم کہِ مدتہٕ سٟتؠ نسٕل پٲدٕ کرنٕکؠو طٔرٟقو سٟتؠ کوٚر أمۍ سٕنٛزِ ٹٟمہِ چَنٕکۍ تِم قٕسٕم تَیار یِم مُشکِل حالاتن منٛز وٕطران چھِ یِمن منٛز ہۄچھرُک مُقابلہٕ کَرن وول قٕسٕم تہِ شٲمِل چُھ", + "reference_text": "Dr Rajeev Varshney in a chickpea field Using genomeassisted breeding approaches his team has developed hardy varieties of chickpea including a droughtresistant variety", + "prediction": "Using genome editing tools DrRajiv Varshney of ICAR created animal varieties that can survive tough conditions including a drought resistant variety from wheat breeding techniques in the wheat field.\"" + }, + { + "id": "simple_ks2en_0006", + "source_text": "رُکاوٹ کرنٕک برعکس چھُ کانٛہہ مُخٲلِف دۄگہِ نِش محروم کرنہٕ سٟتؠ تہنٛد تَوازُن دَرہَم بَرہَم گژھان تہٕ یہِ چھُ مُخٲلِف سنٛز بَڑٲمٕژ نٔرِ برونٛہہ کُن پکنُک اِجازت دِوان تہٕ اتھِن چھُ مُقابٕلہٕ کرنہٕ خٲطرٕ یَلہٕ تھوان", + "reference_text": "Unlike blocking causing an opponent to miss a punch disrupts his balance this permits forward movement past the opponents extended arm and keeps the hands free to counter", + "prediction": "Instead of blocking an opponent losing two points allows them to gain a foothold ahead and opens their hands to compete later allowing opponents more space to move away from their opponent due to decreased separation between them causing them to lose their positions further forward towards their" + }, + { + "id": "simple_ks2en_0007", + "source_text": "یہِ چھا کُنہِ بوٗزمُت زِ کانٛہہ نفر کیٛاہ تھاوِ کاہ شَتھ رۄپیہِ أکِس کَترِ ژٔڈِس منٛز تِژھہِ جایہِ یا وَنو مَسجدِ منٛز ژوٗرِ", + "reference_text": "Have you ever heard of a man keeping eleven hundred rupees in an earthen pot hidden just under the ground of a public place like this mosque", + "prediction": "has anyone heard of such a thing putting one hundred dollars into an earthen jar placed in such a place or even into the mosque as a thief would put it away from him?" + }, + { + "id": "simple_ks2en_0008", + "source_text": "مےٚ چُھ سرٛانٛٹھ واینٕکِس تالابس منٛز گٲنٛٹہٕ وادن غۄطہٕ کرُن خۄش کران۔", + "reference_text": "I love to plunge in swimming pool for hours.", + "prediction": "I enjoy spending hours at the pool doing nothing but swimming around trying to see who can reach the fastest times possible.\"\"\"" + }, + { + "id": "simple_ks2en_0009", + "source_text": "میون خانٛدار چُھ اکھ صَحافِی۔", + "reference_text": "My husband is a journalist", + "prediction": "My husband is a journalist." + }, + { + "id": "simple_ks2en_0010", + "source_text": "أچھَ منٛز دٲخٕل گژھَن وول گاش چھُ ریٹناہَس منٛز ترٚؠن مُختٔلِف فوٹو ریسیپٹرَن عقس نباونَس منٛز استعمال گژھَن واجِنین ویزن لورین تہٕ ترٚوُ کوُنلن تہٕ نوین دریافت سپدِیمژن فوٹو سینزِٹِیو گینگلیون سیلن سٟتؠ ٹکراوان", + "reference_text": "Light entering the eye strikes three different photoreceptors in the retina the familiar rods and cones used in image forming and the more newly discovered photosensitive ganglion cells", + "prediction": "Light entering the eye interacts with three different photoreceptors in the retina causing changes in vision levels and focusing mechanisms through lenses and new discovered photo sensory cells Ganglyons cells are involved in this process of sight formation.\"\"\"" + }, + { + "id": "simple_ks2en_0011", + "source_text": "ژھار یُنورسِٹی کہِ زیرِ اِنتِظام پرٛایویٹ یُنورسِٹی میٚنیجڑ پرٛایویٹ ادارٕ یِم ایٚم سی اے مَنٛز پی جی لیولُک پروگرام چھُ پیش کران تہٕ ۲۰۰۸۲۰۰۹ تعلٟمی ورۍ یَس مَنٛز چھِ اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ", + "reference_text": "Search University ManagedPrivate institutes which offer PG level programs in MCA and are approved of AICTE in the academic year 20082009", + "prediction": "Find private universities funded by the University whose programs in MCA are approved of AICTE and provide a PG level program during the academic years 20082019.\"" + }, + { + "id": "simple_ks2en_0012", + "source_text": "ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد", + "reference_text": "When all was ready and the prince and his retinue were about to start something happened", + "prediction": "When everything was ready and the prince and his attendants were about to leave What happened then When everything was finished and the princes servants were ready to depart What happened?\"" + }, + { + "id": "simple_ks2en_0013", + "source_text": "واریٚہَس پھٟرِتھ تھوٗرِتھ وٲتۍ تِم سمندرس لَرِ أکِس جایہِ ییٚتہِ اَکھ سمندری جہاز نیرنَس تیار اوس", + "reference_text": "After much wandering about they came to some place by the sea where they found a ship ready to weigh anchor", + "prediction": "After walking around a long way they reached a place near the sea where one of the ships was getting ready to leave the port.”" + }, + { + "id": "simple_ks2en_0014", + "source_text": "سۄ روٗز شہر چہِ خلوک جایہِ منٛز ژوٗرِ۔", + "reference_text": "She hid herself in the corner of the city.", + "prediction": "She remained hidden in a place near the city centre where she was brought up until she reached adulthood.”" + }, + { + "id": "simple_ks2en_0015", + "source_text": "وزیر اعلٰی سُنٛد مقصد اوس حیدر آباد اکھ ہاے ٹیک شہر بناوُن", + "reference_text": "She has got a loan from bank with an interest rate of 30%.", + "prediction": "The aim of the Director General was to create Hyderabad as a high tech city.\"" + }, + { + "id": "simple_ks2en_0016", + "source_text": "یہِ زمین چُھ واریاہ میوٕ وۄپداوان یَم سۭتۍ ٲسۍ چھِ سٲری ضروٗرت پوٗرٕ گژھن۔", + "reference_text": "This farm yields enough fruit to meet all our needs.", + "prediction": "This land produces crops sufficient for our needs and will provide for all requirements of mankind altogether.\"" + }, + { + "id": "simple_ks2en_0017", + "source_text": "گۄڈٕ ژٔٹِو کاغز أکِس ترٛکوٗنس منٛز۔", + "reference_text": "First cut the paper into a triangle.", + "prediction": "First cut the paper into two pieces of equal size each with a narrow slit in the middle thereof.\"" + }, + { + "id": "simple_ks2en_0018", + "source_text": "بہٕ چھُس یژھان پانَس پرٛایویٹ ایڈِڈ ذٲتی مٲلی اِمداد سٟتؠ چَلن وول ادارس مَنٛز داخلہٕ نِیُن یِم َ فارمیسی مَنٛز پی جی لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۲۰۲۰۲۱ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", + "reference_text": "I want to get enrolled myself in an PrivateAided institutes offering PG level programs in Pharmacy Can I get a list of such institutes in the academic year 20202021", + "prediction": "I want to get myself admitted into a private aided financial assistance supported institution which offers PG level programmes in Pharmacy Could I get access to such institutions during the academic year 2020-2017?" + }, + { + "id": "simple_ks2en_0019", + "source_text": "سُہ اوس جنٛگس دوران سٲروٕے کھۄتہٕ زیادٕ خوفزدٕ جنٛگی حُکمران۔", + "reference_text": "He was the most feared warlord during the war.", + "prediction": "He was the most feared leader during the war period." + }, + { + "id": "simple_ks2en_0020", + "source_text": "میانہِ ایٚم سٕوایپ ویلٹ پؠٹھٕ کَر اَبھِشِک ٹرانسفر ۹۹۳ پۄنٛسہٕ", + "reference_text": "Transfer Rs 993 from my MSwipe app wallet to Abhishek", + "prediction": "Transfer Rs 993 from my M Swaipe wallet to Abhishek.\"\"\"" + } + ], + "all_results": [ + { + "id": "simple_ks2en_0001", + "source_text": "میون گۄڈنِیُک اِجلاس اوسنہٕ پورٕ پٲٹھۍ ناخۄشگٔوار تَجرُبہٕ۔", + "reference_text": "My first meeting was not a wholly unenjoyable experience.", + "prediction": "My initial meeting was not a pleasant experience altogether." + }, + { + "id": "simple_ks2en_0002", + "source_text": "یِتھُے سُہ پھاسہِ تختس پؠٹھ ووت تہٕ دیوان سُنٛد نیٚچُو آو نؠتھہٕ نٔنۍ کرتَل ہؠتھ دوان دوران بادشاہَس قتل کرنہٕ خٲطرٕ تہٕ وزٟر سٕنٛدۍ نیٚچوِۍ دِیٛت پَنہٕ نؠن سپاہَن اِشارٕ زِ أمِس کرَن اَتھ کامہِ منٛز مدد", + "reference_text": "As he approached the platform the diwans son rushed forward with drawn sword to slay the king and the ministers son made sign to his soldiers to assist him in the deed", + "prediction": "As soon as he ascended the throne Deity brought his son along carrying a sword and instructed one of their soldiers to assist him in this task while delivering up King for execution and Minister sons instructed one among their soldiers whom to help him during this" + }, + { + "id": "simple_ks2en_0003", + "source_text": "ٹیمن کوراتھ پوکجٹس منٛز ترین نُمایا تحقیقی ادارن سٟتؠ اشتعراق اںتڑنیشنل میز اینڈ ویٹ اِمپروُمینٹ سینٹر سی آیہ ایم اایم وایہ ٹی یُس میکسکوہس منٛز چھُ یّنورسٹڮ آف ویسٹرن آسٹریلیا تہٕ روُس کس سکولکووو اِنسچوُٹ اینڈ ٹیکنالجی سکول ٹیک", + "reference_text": "The team has collaborated with three premier research institutes on this project the International Maize and Wheat Improvement Center CIMMYT based in Mexico The University of Western Australia and the Skolkovo Institute of Science and Technology Skoltech in Russia", + "prediction": "The team collaborated with three new research organizations in Mexico namely International میز اینڈ वेट Improvement Centre C I M WY T which operates under the University of Western Australia and Russian school KVOV Institute of Technology School Tech." + }, + { + "id": "simple_ks2en_0004", + "source_text": "أمؠ اوس پنٛنیٚن مدرَسہ کیٚن دۄہَن بہتٔرٟن طٲلبہِ عٔلمہٕ سُنٛد اعزاز تہِ حٲصِل کوٚرمُت تہٕ أمؠ ٲس کوزی کوڈس منٛز نیشنَل اِنسٹی ٹیٛوُٹ آف ٹیٚکنالوجی پؠٹھٕ بی ٹیٚک میٚکینِکَل اِنٛجٟریٚرِنٛگ ہِنٛز ڈگری حٲصِل کٔرمٕژ", + "reference_text": "He also had achieved a best student award during his school days and he had a BTECH Mechanical engineering degree from the National Institute of Technology in Kozhikode", + "prediction": "She had also completed excellent student awards during her school days and holds a B.Tech Mechanical Engineering from National Institute of Technology in Cozhikode.\"" + }, + { + "id": "simple_ks2en_0005", + "source_text": "چَنہٕ کھہَس منٛز ڈاکٹر راجٟو وارشنے جٟنوم کہِ مدتہٕ سٟتؠ نسٕل پٲدٕ کرنٕکؠو طٔرٟقو سٟتؠ کوٚر أمۍ سٕنٛزِ ٹٟمہِ چَنٕکۍ تِم قٕسٕم تَیار یِم مُشکِل حالاتن منٛز وٕطران چھِ یِمن منٛز ہۄچھرُک مُقابلہٕ کَرن وول قٕسٕم تہِ شٲمِل چُھ", + "reference_text": "Dr Rajeev Varshney in a chickpea field Using genomeassisted breeding approaches his team has developed hardy varieties of chickpea including a droughtresistant variety", + "prediction": "Using genome editing tools DrRajiv Varshney of ICAR created animal varieties that can survive tough conditions including a drought resistant variety from wheat breeding techniques in the wheat field.\"" + }, + { + "id": "simple_ks2en_0006", + "source_text": "رُکاوٹ کرنٕک برعکس چھُ کانٛہہ مُخٲلِف دۄگہِ نِش محروم کرنہٕ سٟتؠ تہنٛد تَوازُن دَرہَم بَرہَم گژھان تہٕ یہِ چھُ مُخٲلِف سنٛز بَڑٲمٕژ نٔرِ برونٛہہ کُن پکنُک اِجازت دِوان تہٕ اتھِن چھُ مُقابٕلہٕ کرنہٕ خٲطرٕ یَلہٕ تھوان", + "reference_text": "Unlike blocking causing an opponent to miss a punch disrupts his balance this permits forward movement past the opponents extended arm and keeps the hands free to counter", + "prediction": "Instead of blocking an opponent losing two points allows them to gain a foothold ahead and opens their hands to compete later allowing opponents more space to move away from their opponent due to decreased separation between them causing them to lose their positions further forward towards their" + }, + { + "id": "simple_ks2en_0007", + "source_text": "یہِ چھا کُنہِ بوٗزمُت زِ کانٛہہ نفر کیٛاہ تھاوِ کاہ شَتھ رۄپیہِ أکِس کَترِ ژٔڈِس منٛز تِژھہِ جایہِ یا وَنو مَسجدِ منٛز ژوٗرِ", + "reference_text": "Have you ever heard of a man keeping eleven hundred rupees in an earthen pot hidden just under the ground of a public place like this mosque", + "prediction": "has anyone heard of such a thing putting one hundred dollars into an earthen jar placed in such a place or even into the mosque as a thief would put it away from him?" + }, + { + "id": "simple_ks2en_0008", + "source_text": "مےٚ چُھ سرٛانٛٹھ واینٕکِس تالابس منٛز گٲنٛٹہٕ وادن غۄطہٕ کرُن خۄش کران۔", + "reference_text": "I love to plunge in swimming pool for hours.", + "prediction": "I enjoy spending hours at the pool doing nothing but swimming around trying to see who can reach the fastest times possible.\"\"\"" + }, + { + "id": "simple_ks2en_0009", + "source_text": "میون خانٛدار چُھ اکھ صَحافِی۔", + "reference_text": "My husband is a journalist", + "prediction": "My husband is a journalist." + }, + { + "id": "simple_ks2en_0010", + "source_text": "أچھَ منٛز دٲخٕل گژھَن وول گاش چھُ ریٹناہَس منٛز ترٚؠن مُختٔلِف فوٹو ریسیپٹرَن عقس نباونَس منٛز استعمال گژھَن واجِنین ویزن لورین تہٕ ترٚوُ کوُنلن تہٕ نوین دریافت سپدِیمژن فوٹو سینزِٹِیو گینگلیون سیلن سٟتؠ ٹکراوان", + "reference_text": "Light entering the eye strikes three different photoreceptors in the retina the familiar rods and cones used in image forming and the more newly discovered photosensitive ganglion cells", + "prediction": "Light entering the eye interacts with three different photoreceptors in the retina causing changes in vision levels and focusing mechanisms through lenses and new discovered photo sensory cells Ganglyons cells are involved in this process of sight formation.\"\"\"" + }, + { + "id": "simple_ks2en_0011", + "source_text": "ژھار یُنورسِٹی کہِ زیرِ اِنتِظام پرٛایویٹ یُنورسِٹی میٚنیجڑ پرٛایویٹ ادارٕ یِم ایٚم سی اے مَنٛز پی جی لیولُک پروگرام چھُ پیش کران تہٕ ۲۰۰۸۲۰۰۹ تعلٟمی ورۍ یَس مَنٛز چھِ اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ", + "reference_text": "Search University ManagedPrivate institutes which offer PG level programs in MCA and are approved of AICTE in the academic year 20082009", + "prediction": "Find private universities funded by the University whose programs in MCA are approved of AICTE and provide a PG level program during the academic years 20082019.\"" + }, + { + "id": "simple_ks2en_0012", + "source_text": "ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد ییٚلہِ پرٛؠتھ کانٛہہ تیٲری سَپٕز تہٕ شہزادٕ تہٕ تٔمۍ سٕنٛدۍ سٟتۍ وٲلۍ نیرنَس تیار ٲسۍ تہٕ کیٛاہتٲنۍ سَپُد", + "reference_text": "When all was ready and the prince and his retinue were about to start something happened", + "prediction": "When everything was ready and the prince and his attendants were about to leave What happened then When everything was finished and the princes servants were ready to depart What happened?\"" + }, + { + "id": "simple_ks2en_0013", + "source_text": "واریٚہَس پھٟرِتھ تھوٗرِتھ وٲتۍ تِم سمندرس لَرِ أکِس جایہِ ییٚتہِ اَکھ سمندری جہاز نیرنَس تیار اوس", + "reference_text": "After much wandering about they came to some place by the sea where they found a ship ready to weigh anchor", + "prediction": "After walking around a long way they reached a place near the sea where one of the ships was getting ready to leave the port.”" + }, + { + "id": "simple_ks2en_0014", + "source_text": "سۄ روٗز شہر چہِ خلوک جایہِ منٛز ژوٗرِ۔", + "reference_text": "She hid herself in the corner of the city.", + "prediction": "She remained hidden in a place near the city centre where she was brought up until she reached adulthood.”" + }, + { + "id": "simple_ks2en_0015", + "source_text": "وزیر اعلٰی سُنٛد مقصد اوس حیدر آباد اکھ ہاے ٹیک شہر بناوُن", + "reference_text": "She has got a loan from bank with an interest rate of 30%.", + "prediction": "The aim of the Director General was to create Hyderabad as a high tech city.\"" + }, + { + "id": "simple_ks2en_0016", + "source_text": "یہِ زمین چُھ واریاہ میوٕ وۄپداوان یَم سۭتۍ ٲسۍ چھِ سٲری ضروٗرت پوٗرٕ گژھن۔", + "reference_text": "This farm yields enough fruit to meet all our needs.", + "prediction": "This land produces crops sufficient for our needs and will provide for all requirements of mankind altogether.\"" + }, + { + "id": "simple_ks2en_0017", + "source_text": "گۄڈٕ ژٔٹِو کاغز أکِس ترٛکوٗنس منٛز۔", + "reference_text": "First cut the paper into a triangle.", + "prediction": "First cut the paper into two pieces of equal size each with a narrow slit in the middle thereof.\"" + }, + { + "id": "simple_ks2en_0018", + "source_text": "بہٕ چھُس یژھان پانَس پرٛایویٹ ایڈِڈ ذٲتی مٲلی اِمداد سٟتؠ چَلن وول ادارس مَنٛز داخلہٕ نِیُن یِم َ فارمیسی مَنٛز پی جی لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۲۰۲۰۲۱ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", + "reference_text": "I want to get enrolled myself in an PrivateAided institutes offering PG level programs in Pharmacy Can I get a list of such institutes in the academic year 20202021", + "prediction": "I want to get myself admitted into a private aided financial assistance supported institution which offers PG level programmes in Pharmacy Could I get access to such institutions during the academic year 2020-2017?" + }, + { + "id": "simple_ks2en_0019", + "source_text": "سُہ اوس جنٛگس دوران سٲروٕے کھۄتہٕ زیادٕ خوفزدٕ جنٛگی حُکمران۔", + "reference_text": "He was the most feared warlord during the war.", + "prediction": "He was the most feared leader during the war period." + }, + { + "id": "simple_ks2en_0020", + "source_text": "میانہِ ایٚم سٕوایپ ویلٹ پؠٹھٕ کَر اَبھِشِک ٹرانسفر ۹۹۳ پۄنٛسہٕ", + "reference_text": "Transfer Rs 993 from my MSwipe app wallet to Abhishek", + "prediction": "Transfer Rs 993 from my M Swaipe wallet to Abhishek.\"\"\"" + }, + { + "id": "simple_ks2en_0021", + "source_text": "مَگر بَڑؠن جٟن نیٚٹؤرکن منٛز چُھ یہِ جٟنَن دَرمِیان أنٛدروُنی تعلُقاتُک پوُرٕ سِلسِلہٕ واضح کرنس منٛز مَدد کَران تہٕ یہِ تہِ ظٲہِر کَران زِ نیٚٹؤرکُک اَکھ حِصہٕ کِتھ کٕنۍ چُھ باقِیَن پؠٹھ اَثر ترٛاوان", + "reference_text": "But in large gene networks it helps capture the entire range of interactions among genes and underlines how one part of the network affects the rest", + "prediction": "But in large networks this helps improve clarity of internal relationships between genes and shows how one section of the network affects others.\"\"\"" + }, + { + "id": "simple_ks2en_0022", + "source_text": "میون از شامُک اکارام کر بند", + "reference_text": "please turn off my alarm for this evening", + "prediction": "turn off my evening alarm for today" + }, + { + "id": "simple_ks2en_0023", + "source_text": "تٔمۍ ووٚنُس اے نازنٟن بٔہ چھُس اَکھ شہزادٕ", + "reference_text": "Fair lady said he I am a prince", + "prediction": "He said O woman I am a prince and you are my daughter." + }, + { + "id": "simple_ks2en_0024", + "source_text": "سُہ موٗد أنٛدرَمن منٛز تھوٚپ یِنہٕ کِنۍ۔", + "reference_text": "He died of a bowel obstruction.", + "prediction": "He died due to internal injury caused by gunshot wounds sustained during combat operations in Afghanistan and Iraq respectively.”" + }, + { + "id": "simple_ks2en_0025", + "source_text": "یہِ کینژھاژٕ ونُکھ تہِ دِمَے مگر صرف مَتہٕ ترٛاو تہٕ یہِ کتھ نؠبر", + "reference_text": "Ask of me what you want and you shall have it but please keep quiet", + "prediction": "Whatever they may tell you keep them quiet and do not let this secret get out.”" + }, + { + "id": "simple_ks2en_0026", + "source_text": "تٔمۍ ووٚن زِ تٔمۍ چھُنہٕ پانژو دۄہَو پؠٹھہٕ کِہنۍ تہِ کھیوٚمُت", + "reference_text": "He said that he had not eaten anything for five days", + "prediction": "He said that he had not eaten anything for five days afterwards." + }, + { + "id": "simple_ks2en_0027", + "source_text": "ہَردَس منٛز چھِ کُلٮ۪ن پَنہٕ ؤتٕھر پٮ۪وان", + "reference_text": "Trees shed leaves during autumn.", + "prediction": "During winters trees produce new leaves which grow back during autumn months following seed formation stages of plants occurs in June July and August respectively.\"" + }, + { + "id": "simple_ks2en_0028", + "source_text": "أمِس بے آسرٕ زنانہِ بچارِ اوسنہٕ کِہِنۍ تہِ فِکرِ تران زِ تَس کیٛاہ پَزِ کَرُن تہٕ گٔیہِ حٲکِمَس نِش تہٕ تَس برٛۄنٛہہ کَنہِ نٔمِتھ کوٚرنَس عرض زِ مےٚ کر تہٕ مدد", + "reference_text": "So the poor old woman not knowing what else to do went to the governor and falling on her knees before him begged him to help her", + "prediction": "This poor woman had no idea what she should do and went before the governor asked him to assist her by lying down before him.\"\"\"" + }, + { + "id": "simple_ks2en_0029", + "source_text": "دۄشوٕنی دوستن ہُنٛد دَہن وٕرین ہِنٛدِ وقفہٕ پتہٕ سمکُھن اوس اِتفاق", + "reference_text": "The meeting of the two friends after a gap of ten years was accidental.", + "prediction": "It was a coincidence that the two friends met after an interval of ten years had passed by means of communication between them respectively during their visits thereto respectively during these months aforesaid referred to above mentioned seasons respectively during those months referred to respectively during visits thereto" + }, + { + "id": "simple_ks2en_0030", + "source_text": "جاسوسی مینشٹرن کیرٕ حکومت کرن واجنہٕ جمٲژ ہندٕ سِکینڈل ہل۔", + "reference_text": "The shadow ministers helped in solving the scandals of ruling party.", + "prediction": "Disgrigating stories about corruption were brought to light by whistleblowers within the government itself causing significant damage to the reputation of the government.\"" + }, + { + "id": "simple_ks2en_0031", + "source_text": "تۄہہِ میلیو یہِ نزدیٖکی وانَس پٮ۪ٹھ۔", + "reference_text": "You will get it in the nearby shop.", + "prediction": "You found it at a nearby store.\"\"\"" + }, + { + "id": "simple_ks2en_0032", + "source_text": "ٹام کر فون", + "reference_text": "Tomll call", + "prediction": "Tom will call back." + }, + { + "id": "simple_ks2en_0033", + "source_text": "گوٛڈنِچہِ گیمہِ منٛز سرور یا رسیور بننٕچہِ تہٕ طرفن ہنز ژٲر چھِ تیٲری ہندِ شروعات وِزِ تھر نانُک کرِتھ کرنہٕ یوان", + "reference_text": "The choice to be server or receiver in the first game and the choice of ends is decided by a coin toss before the warmup starts", + "prediction": "Choose one of the teams server or receiver and position them during the preparation in Game 1 begins with choosing teams positions.\"\"\"" + }, + { + "id": "simple_ks2en_0034", + "source_text": "یہِ چھُ نوٚو مکانہٕ", + "reference_text": "It is a new house", + "prediction": "This is a new house construction that includes three bedrooms each with their own bathroom facilities as well.”" + }, + { + "id": "simple_ks2en_0035", + "source_text": "بہٕ کیٛاہ کیٛاہ ونووٕ", + "reference_text": "What will I say", + "prediction": "What did I say?" + }, + { + "id": "simple_ks2en_0036", + "source_text": "مٔنٛڈیہِ چھےٚ سیٚٹھا زیادٕ نفع زینان۔", + "reference_text": "The markets are making whacking profits.", + "prediction": "Mundia makes a huge profit from their crops though they suffer losses every year due to diseases and insects attacks etc.\"" + }, + { + "id": "simple_ks2en_0037", + "source_text": "مُبینہٕ سربَراہس مُتعلِق چُھ خیال زِ أمؠ چھِ ۲۰۰۴ پؠٹھٕ ہِشی ذحنیت تھون وٲلہِ سٲتھی بٔھرتی کٔرمٕتہِ تہٕ بیٚیہِ چھُن تِہندِ خٲطرٕ نیم فوجی تربِیت ہفتہٕ کیٚن ٲخری دۄہن زِنٛدٕ روزنٕچ تربِیت بٔنٛدوُق چلاونٕہ چین مشقن ہُنٛد احتمام کوٚرمُت", + "reference_text": "The alleged leader is thought to have recruited likeminded fellows since 2004 and to have organized paramilitary training survival weekends and firearms practice for them", + "prediction": "The alleged head has been believed to have recruited fellow fighters since 2004 and arranged half فوجی training during the last days of week for them by preparing firearms exercises as a survival training exercise.\"" + }, + { + "id": "simple_ks2en_0038", + "source_text": "کیس ہسٹری عموُمَن اکھ تحریری فارم سوال نامَہٕ ہیتھ ہؠکہِ زرٕ کس ضِمنس منٛز قٲمتی معلوُمات فراہم کٔرِتھ تہٕ کَمہِ قسٕمٕکہِ تشخٟصی طٔریقہٕ کار یِن استعمال کرٕنہٕ تمِیوُک اِشارٕ دِوان", + "reference_text": "A case history usually a written form with a questionnaire can provide valuable information about the context of the hearing loss and indicate what kind of diagnostic procedures to employ", + "prediction": "Case history usually provides valuable information about the cause of illness along with a written form questionnaire indicating what type of diagnostic procedures might be used during diagnosis and treatment phases respectively.\"\"\"" + }, + { + "id": "simple_ks2en_0039", + "source_text": "یُدوَے سُہ یوٗت بوٚڈ تہٕ مالدار موٚہنیوٗ اوس تہِ ٲسِتھ تہِ روٗد اَتھ سٲرۍ سٕے وَقتس اَتہِ گُرِس پلالہٕ کران", + "reference_text": "The whole of this time although he was such a great and wealthy man he groomed his horse", + "prediction": "Though he was such a rich and influential businessman he kept visiting it every day during this season just carrying horses back and forth there.\"\"\"" + }, + { + "id": "simple_ks2en_0040", + "source_text": "ییِلِہ تٔمِس سۄ خَبَر مِیٖج تٔمِس ؤژھ وہمہٕ سۭتۍ آوازِ تھَرٕ تھَرٕرے۔", + "reference_text": "Her voice trembled with fear when she got the news.", + "prediction": "When he heard the news his voice shook with emotions of rage and disappointment mixed together in it." + }, + { + "id": "simple_ks2en_0041", + "source_text": "سۄ ٲس بےٚ تٲبی سان بیٚیِس خبر نامس پیٛاران۔", + "reference_text": "She was eagerly waiting for the next bulletin.", + "prediction": "She waited eagerly for another news article from him every day.\"" + }, + { + "id": "simple_ks2en_0042", + "source_text": "مارکہٹ کیپ چھٖ اکشر اکس وقتس دوران کمپنی ہنز وُصعت وُچھنہٕ باپت استعمال سپدان تہٕ مٲلی پیشورو دٕسہِ اتعمال کرنہٕ ییِنہٕ وول کمپنی ہُند باڈو وُچھنُک عام اِشارٕ", + "reference_text": "Market cap is often used to measure a companys growth over time and is the most common indicator of a companys size used by financial professionals", + "prediction": "Market cap is often used to view company growth over a period of time and represents the overall value of the company whose shares are currently trading on the financial markets sectors through professionals using it as an indicator of company growth.\"\"\"" + }, + { + "id": "simple_ks2en_0043", + "source_text": "سنجیو کمار فاؤنڈیشن چھِ اکھ قومی سطحٕچ ترقیٲتی تنظٟم یوٚس پرٛؠتھ ؤرۍ یہِ شُرؠن تہٕ یِہنٛدِؠن خانٛدانَن براہ راست فٲیِدٕ واتناوان چھُ تہِ چھِ بُنیٲدی طور پٲٹھۍ تٔعلٟم صحتٕچ دیکھ بھال ماحولیات ثقافت تہٕ غذٲئیتَس پؠٹھ توجہ دِوان", + "reference_text": "The Sanjeev Kumar Foundation is a national level development organisation directly benefiting children and their families every year mainly focusing on education healthcare environment culture and nutrition", + "prediction": "Sanjiv Kumar Foundation is a national level development organisation which provides direct benefit to children and their families every year focusing mainly on education health care environment culture nutrition etc.\"\"\"" + }, + { + "id": "simple_ks2en_0044", + "source_text": "تٔمۍ تھوو دھات تیٖتِس کالس ریٚہہِ پیٚٹھ ییٖتِس کالس سُہ واریاہ گرم گوٚو۔", + "reference_text": "He held the metal in the flame until it became white hot.", + "prediction": "He kept the metal on the rail until it became very hot during this process.\"\"\"" + }, + { + "id": "simple_ks2en_0045", + "source_text": "تِم کالج ژھار یِم ایٚم سی اے مَنٛز پی جی لیولُک پروگرام چھِ پیش کران تہٕ ۲۰۱۳۲۰۱۴ تعلٟمی ورۍ یَس مَنٛز اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ چھِ", + "reference_text": "Search colleges which offer PG level programs in MCA and are approved of AICTE in the academic year 20132014", + "prediction": "Find colleges that offer a PG level program in MCA and are approved by AICTE for the academic year 20132020.\"" + }, + { + "id": "simple_ks2en_0046", + "source_text": "یہِ چھُ درمیٲنی تہٕ دٔچِھنِس طرفَس لاینَس تہٕ رُکاونَس منٛز زِیٛادٕ مٲہِر بناوان", + "reference_text": "This allows the middle and right sides to become more specialized at hitting and blocking", + "prediction": "This allows for more flexibility in playing middle and right side lines and runs.\"\"\"" + }, + { + "id": "simple_ks2en_0047", + "source_text": "تم چھ پلو صاف کران", + "reference_text": "They clean clothes", + "prediction": "They are cleaning clothes away." + }, + { + "id": "simple_ks2en_0048", + "source_text": "یہِ چُھ حاضِرٟنن ہُنٛد توجہ حٲصِل کرنہٕ خٲطرٕ جوشہِ ہوٚت تہٕ تیز آسان", + "reference_text": "It is lively and fast to get the audiences attention", + "prediction": "It is lively and fast to get the audience attention it deserves." + }, + { + "id": "simple_ks2en_0049", + "source_text": "بہٕ چھُس یژھان أکِس یِتھِس اِنسٹِٹیوٗٹس مَنٛز داخلہٕ نِیُن یُس اِنٛجِنیٚرِنٛگ اینٛڈ ٹیکنالوجی مَنٛز پی جی لیولُک پروگرام چھُ پیش کران کیا بہٕ ہیٚکا ۲۰۰۶۲۰۰۷ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ حٲصِل کٔرِتھ", + "reference_text": "I want to get enrolled myself in an institute offering PG level programs in Engineering and Technology Can I get a list of such institutes in the academic year 20062007", + "prediction": "I want to apply at an institute that offers a PG level programme in engineering and technology Can I get a list of such institutes for the academic year 2006207?\"" + }, + { + "id": "simple_ks2en_0050", + "source_text": "شُمٲلی ہِنٛدُستٲنۍ رِیاستَو پَنٛجاب ۂریانہ تہٕ اُتر پرٛدیش کؠو زَرخیز کھہَو تہٕ تِمن پؠٹھ کٲم کَرن والؠو زٔمٟن دارو چُھ تَمہِ دور کہِ کٕنٛکہٕ تہٕ توٚملہٕ چہِ سؠٹھا پٲداوار دِنہٕ والؠن قٔسمَن ہُنٛد فٲیدٕ تُلمُت", + "reference_text": "The fertile fields in the northern Indian States of Punjab Haryana and Uttar Pradesh and the farmers who worked on them had benefited from the highyield varieties of wheat and rice of that revolution", + "prediction": "The fertile fields of north Indian states Punjab Haryana and Uttar Pradesh along with farmers working on them have benefitted from that era's crops and improved food production levels.\"" + }, + { + "id": "simple_ks2en_0051", + "source_text": "بہٕ کرٕ یہِ یاد تھاونٕچ کوٗشِش", + "reference_text": "I will try to remember it.", + "prediction": "I will try to remember that." + }, + { + "id": "simple_ks2en_0052", + "source_text": "اَمہِ علاوٕ چھِ گِر پہاڑٕ بردہ جیسور تہٕ چوٹیلا مِلِتھ گجراتُک اکھ بٔڑ اقلیت", + "reference_text": "Apart from this the Gir hills Barda Jessore and Chotila together make up a large minority of Gujarat", + "prediction": "Also there is a large minority of Gujarati located in areas such as Gir پہاڑ Baroda Jhsore and Chotila together making up the Gujarati community in Gujarat.\"" + }, + { + "id": "simple_ks2en_0053", + "source_text": "رِیاستہٕ کیٚن اَہم مَسٲیِلن منٛز چھِ بنٛگلہ دیشِکہِ غٲر قونوُنی مُہٲجِر تشَدُدٕکہِ واقعیات سِیٲسی عدم استحقام تہٕ رؠوٲیتی طور ژٔٹِتھ تہٕ زٲلِتھ مُنتَقٕل کاشت کٲری ہِنٛدیٚو طٔرٟقو سٟتؠ وَن ختم کَرٕنہِ شٲمِل", + "reference_text": "The significant issues in the state include illegal migrants from Bangladesh incidences of violence political instability and deforestation from traditional cutandburn shift farming practices", + "prediction": "Among main issues facing the state include illegal migrant persecution incidents political instability and traditional cut and burn methods of providing farmers with assistance removing forests etc.\"" + }, + { + "id": "simple_ks2en_0054", + "source_text": "نٲگۍ رایس توٚر اَمی ساعتہٕ فِکرِ زِ تَس آے کھۄر تِتھہٕ پٲٹھۍ گنڈنہٕ زِ تَس اوسنہٕ ووٚنۍ کانٛہہ تہِ مۄکلن پاے تہٕ کُنہِ وُنہِ ہرگا سُہ آبہٕ منٛزٕ ہیوٚر کھَسہِ تہٕ تیٚلہِ ہیٚکہِ سُہ یِمَن أتی ترٛٲوِتھ", + "reference_text": "Ngray at once knew that his feet were hopelessly bound and that if he would escape from the water he must leave them behind", + "prediction": "Presently it occurred to Nagra that his feet had been imprisoned in such a manner as he could hardly move forward without losing them totally drowned in water and thus rendered unable to climb anymore above ground level unless they could be brought together there at" + }, + { + "id": "simple_ks2en_0055", + "source_text": "بہٕ چھس مستعفی گژھان", + "reference_text": "I resign", + "prediction": "Im resigning myself.\"" + }, + { + "id": "simple_ks2en_0056", + "source_text": "یِتھہٕ کٕنۍ دِتۍ کرٛالَن أمِس خوٗبصورت پَلو تہٕ زیور تہٕ شہزادٕ گۄو محل خانہٕ", + "reference_text": "So the potter gave him beautiful raiment and ornaments and the prince went to the palace", + "prediction": "So Krishna gave her beautiful clothes and jewellery and the prince went to live in her palace.\"\"\"" + }, + { + "id": "simple_ks2en_0057", + "source_text": "فارمَس منٛز چھُ صِرِف سُہ ناو درٕج کرنٕچہِ ضٔروُرت یُس توٚہہِ اِستعمال چِھو کَران تہٕ سُہ تٲرٟخ ییٚتہِ پؠٹھٕ تۄہہِ یہِ اِستعمال کَرُن شُروُع کوٚرُو تہٕ اَتھ سٟتؠ پانس تہٕ پنٛنِس کارٕبارس مُتعلِق بُنیٲدی زانٛکٲری تہِ", + "reference_text": "The form simply requires you to list the name youre using and the date you started using it as well as basic information about yourself and your business", + "prediction": "Simply provide your name and address on the form along with date of birth and basic information regarding yourself and your business that you intend to use it for when filling out this form.\"" + }, + { + "id": "simple_ks2en_0058", + "source_text": "تٔمۍ سٕنٛدِس نٔوِس گَرس منٛز چُھ اکھ نٔو مناظر وول باغ ۔", + "reference_text": "Her modernist home has a newly landscaped garden", + "prediction": "In his new house he has a garden with flowers that grows each spring.\"" + }, + { + "id": "simple_ks2en_0059", + "source_text": "سُہ ؤسِن آبس منٛز تہٕ ہرگا سُہ اوٗرۍ گۄو تیٚلہِ زٲنۍ زِ شہزٲدۍ زِ سُہ چھُنہٕ واتُل", + "reference_text": "Let him throw himself into the water and if he sinks then know O princess that he is not a sweeper", + "prediction": "Test it by throwing it into water and if it becomes liquid it means that the princess knows it is not valuable enough to sell it for money.\"\"\"" + }, + { + "id": "simple_ks2en_0060", + "source_text": "پتہٕ بنیو تمہِ سُند نمُنوُنہٕ باقین ٍٕقٕسمن ہندین باہ عرکھ ہِوین رِیکٹرن پہٹھ لوگوُ کرُن لایکھ کمارسٖند نموُنن کٕر تجرُبٲتی عادا شُمارن ہنز پیشنگوُیی تمہِ ساری کھوتہٕ بہتر پٲٹھہِ یہِ تمہِ وِزِ موُجوُد اوسیہِ چھُ تمہِ سُند طالب علم سنجیو کمار ونان یُس وُنکینس آیہ آیہ ایس سی ہکہِ کیمیٲیی شعبُک سربراہ چھُ", + "reference_text": "Later his model became applicable to other kinds of reactors like spargers Kumars model predicted experimental data far better than anything that existed at that time says his student Sanjeev Kumar who is now the Chairman of the chemical engineering department at IISc", + "prediction": "Later his samples became influential models for others genres of music such as rock artists including Kevin Moore whose performance resulted in experimental numbers were better than those produced by his contemporary DJ Kevin Moore who is now head of chemistry at SC University says.\"" + }, + { + "id": "simple_ks2en_0061", + "source_text": "بادشاہ سلامت مےٚ نوکرٕ سُنٛد عرض بوٗزۍ تَو", + "reference_text": "O king be pleased to listen to your servants words", + "prediction": "Hear this word of your servant king and you will prosper exceedingly.\"\"\"" + }, + { + "id": "simple_ks2en_0062", + "source_text": "تہٕ اَمہِ پَتہٕ ییٚلہِ تَس پَتہٕ پَتہٕ بادشاہ تہٕ تِہنٛدؠو دۄیَو نیٚچوؠو کھسُن ہیوٚت تہٕ أتھۍ منٛز رٔٹۍ تِم کینژو طاقتور مُشٹنڈَو یِم ژکہِ جہاز رانَن رۄپیہِ دِتھ پھسٲوۍ مٕتۍ ٲسۍ تہٕ چٟرتھپھ کٔرِتھ رٔٹِکھ جہازس کھسنہٕ نِشہِ پَتھ یوٚت تانۍ زَن جہازٕ پوٗرٕ سمندرس منٛز ووٛت", + "reference_text": "and then just as the king and his two sons were about to follow some strong rough men who had been suborned by the captain prevented them and held them tight till the ship was well out to sea", + "prediction": "Then when the king and his two sons began climbing they were grabbed back by several powerful ministers who had been instructed by their ship masters to provide funds until the ship reached the sea waters completely covered with water before reaching its destination aboard the ship slowly" + }, + { + "id": "simple_ks2en_0063", + "source_text": "حالانٛکِہ ایپل چھُنہٕ ؤنۍ پرنٹر بَناوان مگر سُہ چھُ پننہِ ویب سائٹہِ پؠٹھ کینٛہہ ماڈل کٕنَان", + "reference_text": "Although Apple doesnt make printers anymore they do sell a few models on their website", + "prediction": "Though Apple doesn't make printers anymore they sell several models on their website.\"\"\"" + }, + { + "id": "simple_ks2en_0064", + "source_text": "تہٕ باقٕے سوالو ہُریمانہٕ پرٛژُھنکھ اکہِ اکہِ تہٕ الگ الگ پٲٹھۍ زِ یہِ کٔہنٛزِ خۄش قسمتی کِنۍ سَپُد زِمےٚ چھےٚ یِژھ طاقتور تہٕ بٔڈ سلطنت تہٕ بۂ بنوونَس یَتھ قٲبِل زِ بۂ چُھس اَتھ یوٗت گاٹہٕ جار سان حکومَت کران", + "reference_text": "and among other questions asked them each one singly and privately by whose good fortune it was that he possessed such a large and powerful kingdom and was enabled to govern it so wisely and so well", + "prediction": "And asked other questions one after another separately and thoroughly investigating why I was thus empowered to rule over such a powerful and splendid kingdom and that I became competent for it by virtue of birth itself.\"" + }, + { + "id": "simple_ks2en_0065", + "source_text": "أکِس راؤنڈس منٛز چھِ عام طور پٲٹھۍ ۱۸ ذدٕ آسان یِم کورس کِس ترتٟبس سٟتؠ طے شدٕ ترتٟبس منٛز گنٛدٕنہٕ چھِ یِوان", + "reference_text": "A round typically consists of 18 holes that are played in the order determined by the course layout", + "prediction": "A round usually consists of 18 holes that are played in a particular order determined by the course layout.\"" + }, + { + "id": "simple_ks2en_0066", + "source_text": "پرٛؠتھ نیٚٹؤرک کہِ ؤجوُدٕچ حالت چھےٚ بوُلِین عملہِ دٔسۍ مُقرر کرنہٕ یِوان یۄس اَکھ رِیٲضی عمل چھےٚ ییٚمہِ سٟتؠ باینٔری اِنٛپُٹن ہُنٛد باینٔری آوُٹپُٹن تانۍ ۱٠ یا صحٟح غلط کہِ ویلیٛوُ سٟتؠ نقشہٕ کٔشی کرنہٕ یِوان چھےٚ", + "reference_text": "The state of each network entity is determined by a Boolean function which is a mathematical function that maps binary inputs to a binary output with the value 10 or truefalse", + "prediction": "The condition of each network s existence is determined by the Boolean operation which maps binary inputs to binary outputs with 10 or true false values respectively using mathematical operations such as arithmetic operators including addition subtraction etcetera.\"\"\"" + }, + { + "id": "simple_ks2en_0067", + "source_text": "کینژو وزیرو تہٕ یِم اَتہِ حٲضِر ٲسۍ ہیوٚت یہِ وَنُن زِ ٲخٕر کُس جُرم چھُ یِمَو شہرٛادو کوٚرمُت", + "reference_text": "Then some of the ministers and others present took upon themselves to ask what the crime of the four princes might be", + "prediction": "Several ministers and others present began talking about what they believed was wrong with these criminals in this town.\"\"\"" + }, + { + "id": "simple_ks2en_0068", + "source_text": "تہٕ أمۍ سٕنٛدۍ مۄلٕلۍ نذرانہٕ پیش کرنہٕ یِنَس پؠٹھ سَپُد سُہ سؠٹھا خۄش تہٕ دِتُن حُکم زِ یٟتس کالس یہِ ییٚتہِ چھُ تٟتِس کالس گژھہِ أمۍ سٕنٛدِ خٲطرٕ اَکھ خاص گَرٕ مےٚ نکھَے مُتعین یُن کرنہٕ", + "reference_text": "He was much pleased with the supposed merchants son and with the rich presents that he had received and gave orders that a special house should be set apart for him as long as he stayed in the city", + "prediction": "And pleased with his valuable gift he ordered that during her stay there should be a special house appointed for him nearby during these months." + }, + { + "id": "simple_ks2en_0069", + "source_text": "۱۹۹۹ منٛز آو رٔٹتھ نِنہٕ ڈچن کٔر دُبارٕ نصرٲنۍ زینُک داواہ تہٕ ٹول سلینگس منٛز گژھن والؠن واقعن ہنٛز پنٕنۍ ذٲتی ذمہٕ دٲری قبول حالانکہِ سۄ اوس قٲدن ذٲتی طور پٲٹھۍ اذیت دِنہٕ یا پھٲنٛسی دِنہٕ نِش انکار کران", + "reference_text": "Arrested in 1999 Duch claims to be a bornagain Christian and has admitted his personal responsibility for events at Tuol Sleng though he denies personally torturing or executing prisoners", + "prediction": "Also detained in 1999 the Dutch claimed a further victory and acknowledged their personal responsibility for what happened at tolerance skating despite refusing to allow torture or execution in prison personally though they refused detention facilities altogether.\"\"\"" + }, + { + "id": "simple_ks2en_0070", + "source_text": "مےٚ دِیُت تس سخت زخم", + "reference_text": "I don`t believe in hypothesis.", + "prediction": "I gave him a severe injury to return home with impaired vision and mobility difficulties due to paralysis and nerve injury sustained during combat operations in Iraq and Syria respectively)." + }, + { + "id": "simple_ks2en_0071", + "source_text": "ہِنٛدُستٲنہِ ایٚنٛجِیو سٕپرم کیٚن قٕسمن منٛز چھےٚ ۱۷۶۷۲ ذٲژٕ شٲمِل یَتھ منٛز مُلکہٕ کیٚن تمام رِیاستن منٛز تامِل ناڈوُ سارویہ برونہہ چُھ ییٚتہِ چہِ ۵۶۴۰ ذٲژٕ ہِنٛدُستان کیٚن تمام کُلین کَٹؠن ہُنٛد ترٛیٚیِم حِصہٕ چُھ بناوان", + "reference_text": "Indian Angiosperm diversity comprises 17 672 species with Tamil Nadu leading all states in the country with 5640 species accounting for 13 of the total flora of India", + "prediction": "Indian angiosperms include 17672 species comprising three generations of plants ranging across all states in India Tamil Nadu making up three quarters of total plant species in India consisting of 5640 species throughout India.\"" + }, + { + "id": "simple_ks2en_0072", + "source_text": "ونٛدٕ کٮ۪ن رٮ۪تن منٛز پہاڑ کِس تینتٲلِس پٮ۪ٹھ کھسُن چھےٚ اکھ سخت خطرناک مُہِم۔", + "reference_text": "To climb the peak during the winter months is a tough venture.", + "prediction": "Climbing up into the mountain is a tremendous risk involved especially during winters months." + }, + { + "id": "simple_ks2en_0073", + "source_text": "سہ چھ بطور ملٲزم کٲم کران", + "reference_text": "He works as a labourer", + "prediction": "He works as an employee of the company.\"\"\"" + }, + { + "id": "simple_ks2en_0074", + "source_text": "سۄ چھےٚ بیٚین مدد کرنہٕ خٲطرٕ مُسلسل کوٗشِش کران۔", + "reference_text": "She makes an unceasing effort to help others.", + "prediction": "She continues making efforts to help others despite her age restrictions.\"\"\"" + }, + { + "id": "simple_ks2en_0075", + "source_text": "یتھ چمرٕ کِس کار خانس منٛز چھِ کھۄر بانہٕ بناونہٕ یِوان۔", + "reference_text": "Boots are made in this tannery.", + "prediction": "Coors are manufactured in leather by artisans ranging from craftsmen to designers and manufacturers themselves creating products based on designs produced by designers such as Louis Vuitton and Dior Balenciaga etcetera.\"\"\"" + }, + { + "id": "simple_ks2en_0076", + "source_text": "پٔزۍ کِنۍ آسہٕ یِمہٕ میچھہِ کَتھہٕ", + "reference_text": "Sweet words indeed", + "prediction": "Indeed these are meaningful statements indeed.\"" + }, + { + "id": "simple_ks2en_0077", + "source_text": "ہُمس بُزرگ اِنسانہٕ سٕنٛدِ کِنۍ پَنہٕ نِس أمِس وَتہٕ ہاوٕکِس کُن اِشارٕ کران یُس کھوژنہٕ کِنۍ ہنا دوٗر پہَن روٗزِتھ اوس ووٚنَس اَمہِ", + "reference_text": "By the help of yonder old man she replied pointing to her guide who had tarried at a little distance from fear", + "prediction": "Show me your way through this man who was afraid and remained apart for some reason said she looking towards him as though pointing towards his path by means of this old man whom he had mentioned previously during their conversation together.\"\"\"" + }, + { + "id": "simple_ks2en_0078", + "source_text": "تٔمۍ اوسنہٕ کانٛہہ کٲما کارا تہِ ہیوٚچھمُت لہذا اوسنہٕ یہِ غرٟب برہمن زِنٛدٕ روزنہٕ خٲطرٕ کِہِنۍ تہِ ہؠکان کٔرِتھ تہٕ کانٛہہ نفرا اوسُس نہٕ دِوان تہِ کینٛہہ", + "reference_text": "Not having been brought up to any trade this poor brahman was unable to do anything for a living and no man gave unto him", + "prediction": "He had learnt nothing and could therefore hardly survive without assistance from anyone else besides this poor brahman whose help he sought every day but received none whatsoever from him either.\"\"\"" + }, + { + "id": "simple_ks2en_0079", + "source_text": "تہٕ ہرگا نہٕ ترٛؠن ہَتن ؤرؠیَن أمِس کانٛہہ انسان وُچھہِ یہِ چھُ وہۍ بنان", + "reference_text": "and if for three hundred years it has never been looked on by a human being it becomes a vih", + "prediction": "And if three hundred years had passed and no human being had seen it becomes a whale.”" + }, + { + "id": "simple_ks2en_0080", + "source_text": "ہسپَتالس منٛز قٟٲدِ سٕنٛدِ حِفاضتہٕ خٲطرٕ تھاونہٕ آمٕتہِ قٲد خانٕکہِ زٕ افسر چھِ مُعطل کرنہٕ آمٕتہِ تہٕ یِہنٛدِس مٲلِکہٕ سُنٛد وَنُن چُھ زِ یِمن پؠٹھ ہیٚکہِ سؠٹھا لاپروٲیی تہٕ ذِمہٕ وٲری منٛز کوتٲہی ہُند الزام ٲید کرنہٕ یِتھ", + "reference_text": "Two corrections officers left to guard the prisoner in hospital have been suspended and their employer says they may face charges of gross negligence and dereliction of responsibility", + "prediction": "Two officers from the prison administration responsible for keeping prisoners in hospital have been suspended and their employer says they could be accused of gross negligence and criminal responsibility for making mistakes during custody.\"\"\"" + }, + { + "id": "simple_ks2en_0081", + "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا دھن لَکشمی بیٚنٛک منٛز میٲنِس ۹۸۴۰۶۰۵۹۲۸۹۹ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر موبی کُوِک ذٔریعہٕ دھن لَکشمی بیٚنٛک منٛز ۷۹۹۰ ۹۸۴۰۶۰۵۹۲۸۹۹ پۄنٛسہٕ ٹرانسفر", + "reference_text": "Can you check if this months salary was credited to my bank account 984060592899 in Dhanlaxmi Bank and if yes transfer Rs 7990 to 984060592899 in Dhanlaxmi Bank via MobiKwik", + "prediction": "Can you check if my 7990 984060592899 money has been transferred to Dhana Lakshmi Bank via MobiKwik this month for my 964000" + }, + { + "id": "simple_ks2en_0082", + "source_text": "گوہاٹی ہائی کورٹُک اکھ سرکٹ بیٚنَٛچ چھُ ۱۹۷۴ پؠٹھ شیلانگس منٛز کٲم کران", + "reference_text": "A Circuit Bench of the Guwahati High Court has been functioning at Shillong since 1974", + "prediction": "A bench of Guwahati High Court has been functioning at Shillong since 1974.\"" + }, + { + "id": "simple_ks2en_0083", + "source_text": "شہزادَن مٲنۍ أمۍ سٕنٛز یہِ دعوت تہٕ تَس آو شہزادٕ سٕنٛدی پٲٹھۍ واتنہٕ کرنہٕ", + "reference_text": "The prince accepted the invitation and was treated like a prince", + "prediction": "The prince accepted his invitation and was treated like a prince throughout the day following their arrival together at the castle together." + }, + { + "id": "simple_ks2en_0084", + "source_text": "میون لِسٹہٕ بناو", + "reference_text": "bing up my list", + "prediction": "make my list of events.\"\"\"" + }, + { + "id": "simple_ks2en_0085", + "source_text": "تُہۍ کٔرِو آرام تانؠتھ", + "reference_text": "You take rest for the time being", + "prediction": "Rest until you are ready to speak again.\"\"\"" + }, + { + "id": "simple_ks2en_0086", + "source_text": "حتاکہِ چوپرا ٲہَس گۄڈٕ ایروناٹِکَل اِنجٟنیٚرِنٛگ ہُند مُتعالہٕ کرُنُ یژھان امہِ کٕر ہِنٛدُستٲنہِ فِلِم اِنٛڈسٹرٛی منٛز شٲمِل گَژھنٕچہِ پیشکَس قٔبوُل یوسہٕ أمؠ سٕنٛد خوُبصوُرتی ہِنٛدِ مُقابلہٕ زینٛنہٕ کنہِ أمِس کرنہٕ آیہ", + "reference_text": "Although Chopra initially aspired to study aeronautical engineering she accepted offers to join the Indian film industry opportunities which arose as a result of her pageant wins", + "prediction": "Though Chopra initially wanted a career in aeronautical engineering she accepted an offer from the Indian Film Industry which garnered her popularity compared to her beauty.\"" + }, + { + "id": "simple_ks2en_0087", + "source_text": "برنالہ ضلعس مَنٛز ژھار سینٹرٕک قٕسم ڈایگناسٹِکس سیٚنٛٹر تشخٟصی مرکز وٲلۍ ایی ایس آیۍ سی سینٹر", + "reference_text": "Search for ESIC Centres with centre type Diagnostics Center in District Barnala", + "prediction": "Find ESIC Centres with Diagnostic Centre type of centre in District Barnala" + }, + { + "id": "simple_ks2en_0088", + "source_text": "اَمہِ کِسٕے نتٟجس منٛز ووٚن تَمہِ اَکہِ دوہہٕ پَنہٕ نِس نیٚچوِس تہٕ أمس دوستس زِ بٔہ نژٕ تۄہہِ برٛۄنٛہہ کَنہِ تہٕ تمَو تہِ مون یہِ", + "reference_text": "Consequently one evening she suggested to her son and his friend that she should dance before them and they agreed", + "prediction": "As a result she told her son and friend one day to dance before her they agreed to do so." + }, + { + "id": "simple_ks2en_0089", + "source_text": "شرفَن وُچھ یہِ تہٕ ووٚنُن أمِس نفرس زِ ژٕ ژھٕن پلو کٔڈِتھ تہٕ تھاو أکِتھ کُن پَتہٕ ہؠکَکھ سہل پٲٹھۍ کٲم کٔرِتھ", + "reference_text": "Sharaf noticed them and told the man to take off his clothes and lay them on one side and then he would be able to work easily", + "prediction": "Sharaf noticed this and instructed the man to remove his clothing and deposit them somewhere thereafter making it easy for him to proceed further activities later in life.\"\"\"" + }, + { + "id": "simple_ks2en_0090", + "source_text": "قٲد خانہٕ ٲسہِ بھاوے سٕنٛدِ خٲطرٕ پرنٕچہِ تہِ لؠکھنٕچہِ جایہِ بنیمٕتہِ", + "reference_text": "The jails for Bhave had become the places of reading and writing", + "prediction": "Prisons became a place of reading and writing for Bhavee though.\"\"\"" + }, + { + "id": "simple_ks2en_0091", + "source_text": "مےٚ وُچھ سُہ ٲخری لٹہِ مارکیٹس منٛز", + "reference_text": "It is never too late to give up a bad habit.", + "prediction": "I saw him last time in market place." + }, + { + "id": "simple_ks2en_0092", + "source_text": "کینژو نزدیکی گامو پؠٹھہٕ تہِ گٔے کینٛہہ لوٗکھ أمِس وُچھنہٕ خٲطرٕ تہٕ یِمَو منٛزٕ اوس اَکھ کرٛال تہِ", + "reference_text": "Some few people also went from the neighbouring villages and amongst them was a maker of earthenware", + "prediction": "Some people from nearby villages also went to see him including a certain Krishna brothers figure who was accompanied by monkeys.\"" + }, + { + "id": "simple_ks2en_0093", + "source_text": "پوٚس چھُ بُبرن ہندِ اِکوٹہٕ سمنہٕ سٟتؠ بنان یمن بُبرن ہُند سمُن چھُٖ ُگول آسان لحازا رِیٲضیٲتی نمُوُنہٕ بناونہٕ باپت مُشکل مگر توتہِ چھُ یہِ کرُن یہِ باقین چیزن سٟتؠ سٟتؠ یہِ فِکرِ ترنہٕ باپت ضروُری زِمایہ کتھہٕ کٕنہِ چھُ اندو کنہِ نیران", + "reference_text": "Foams are formed when bubbles adhere together The junctions of these bubbles are curved and therefore difficult to model mathematically yet it is necessary to do so to understand how the liquid drains through the borders among other things", + "prediction": "Poes are created by combining lines from poetry which allows their separation becomes difficult creating mathematical patterns although this is necessary in order to understand how they combine end up getting around other things etcetera.\"\"\"" + }, + { + "id": "simple_ks2en_0094", + "source_text": "باقٕے احتِیٲتی اِقدامن منٛز چھِ جِسمٲنی یا سَمٲجی دوُری الگ روزُن گَرِ چیٚن أنٛدرِمیٚن جاین منٛز ہَواہُک آمدرَفت ژاسہِ تہٕ پۄنٛدِ وِزِ تھوٚپ اَتھٕ پٔٹھراوٕنہِ تہٕ چھلنَے اَتھٕ بٕتِھہِ نِشہِ دوُر تھاوٕنہِ شٲمِل", + "reference_text": "Other preventive measures include physical or social distancing quarantining ventilation of indoor spaces covering coughs and sneezes hand washing and keeping unwashed hands away from the face", + "prediction": "Other precautions include avoiding physical or social distance keeping indoors when is unable to breathe and avoiding touching objects such as hands from your lips while walking around indoors contain breathing issues due to ventilation problems caused by coughing and colds during walks indoors containing respiratory issues due" + }, + { + "id": "simple_ks2en_0095", + "source_text": "ہرگاہ کانٛہہ شخص سفرس پؠٹھ آسہِ تہٕ راتھ کُیٛتھ کُنہِ ازٲنۍ جایہِ واتہِ تَس پَزِ تَتھ جایہِ متعلق حؠسہٕ روزُن ییٚتہِ سُہ ٹھۂرِ تہٕ نِندرِ منٛز پَزنَس نہٕ أچھ وَٹنہِ یُتھ زَن موت أمِس أچھ وَٹناوِنہٕ", + "reference_text": "If a person is travelling and reaches any strange place at night let him be careful where he puts up and not close his eyes in sleep lest he close them in death", + "prediction": "If anyone goes on a trip and reaches an unknown place at night they should be aware of where they are staying and getting asleep without closing their eyes lest death may strike them by closing their eyelids.\"\"\"" + }, + { + "id": "simple_ks2en_0096", + "source_text": "بیٚلجِیم کہِ دِفٲقی مُقدِمہٕ چلاون وٲلہِ دفتَرن چُھ ووٚنمُت زِ گِرِفتار کرنہٕ آمٕتہِ چھِ فوجی تہٕ دچھِنہِ درِکہِ انتہا پسند نظرییہ وٲلہِ لُکھ یِم نسٕل پَرستی غٲر مُلکی لُکن ہِنٛز نفرت جرمٕنہِ قتل عامس اِنٛکار یٔہوُدؠن ہِنٛزِ دُشمٔنی تہٕ نیم نازی پرستی ذریعہ پنُن اظہار چھِ کران", + "reference_text": "Belgiums federal prosecutors office has said that those arrested are soldiers and people with an extremeright ideology who clearly express themselves through racism xenophobia Holocaust denial antiSemitism and neoNazism", + "prediction": "Belgaum defence litigation office has stated that those arrested are soldiers and political extremists expressing their nationalism against foreigners crimes hate killings deny racism against foreigners sufferism against Jews etc through extremism and semi nationalism." + }, + { + "id": "simple_ks2en_0097", + "source_text": "بہٕ چھُس یژھان پانَس ڈٟمڈ پرٛاویٹ یُنورسِٹی ادارس مَنٛز داخلہٕ نِیُن یِم َ آرکِٹیٚکچَر فن تعمیر مَنٛز ڈِپلوما لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۱۶۲۰۱۷ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", + "reference_text": "I want to get enrolled myself in an Deemed Private University institutes offering Diploma level programs in Architecture Can I get a list of such institutes in the academic year 20162017", + "prediction": "I want to take admission into an Deemed Private University institution offering a diploma level program in Architecture Design What can I get access to such institutions for the academic year 20162020?\"" + }, + { + "id": "simple_ks2en_0098", + "source_text": "نامنظوٗری کِنۍ گٔیہٕ تٔمِس واریاہ مایوٗسی۔", + "reference_text": "The disapproval caused him immense disappointment.", + "prediction": "Dis approval resulted in significant decreased confidence levels of individuals involved within organizations such as businesses and universities alike.”" + }, + { + "id": "simple_ks2en_0099", + "source_text": "دشرتھس تل حٲرِ امہِ سلطنتن وارِیاہ علاقہٕ یِم زن پتہٕ کنال سٕندِ نیچِوِ سمپرتی ین زینہِ", + "reference_text": "The empire lost many territories under Dasharatha which were later reconquered by Samprati Kunalas son", + "prediction": "Dashratha acquired several territories which were later won by Samprati the nephew of Kanda.\"" + }, + { + "id": "simple_ks2en_0100", + "source_text": "۶۶۸۵۱۲۴۸۵۲۲۳ پران نمبر وٲلِس میٲنِس اے پی واٮٔۍ اکاؤنٹس مَنٛز موٗجوٗدٕ ہولڈنگ کیا چھِ", + "reference_text": "What is the current holding in my APY account with PRAN number 668512485223", + "prediction": "What is the current holding in my APV account with PRAN number 668512485223?" + }, + { + "id": "simple_ks2en_0101", + "source_text": "اَسہِ چھُ کمٕے کینٛہہ مگر چٲنۍ کِنۍ کَرِ اَسہِ پرمیشور یٲری تہٕ بَنہِ برکت", + "reference_text": "It is little that we have but it may be that Parameshwar through you will bless us and increase our store", + "prediction": "We have little but we will seek God through you and be blessed by Him.\"\"\"" + }, + { + "id": "simple_ks2en_0102", + "source_text": "لوٗکھ چھِ زرٲعتی کامہِ انٛجام دِنہٕ خٲطرٕ کھہن منٛز زمیٖن وایان۔", + "reference_text": "People plough the field to carry on their agricultural tasks.", + "prediction": "People till the land for agricultural purposes in return for providing crops and services such as irrigation etc.\"" + }, + { + "id": "simple_ks2en_0103", + "source_text": "مےٚ پھیرِ نہٕ چون", + "reference_text": "I shall not miss you", + "prediction": "I will not look back on you anymore.\"\"\"" + }, + { + "id": "simple_ks2en_0104", + "source_text": "باقٕے دۄیو ووٚنُس خۄش گٔژھِتھ سؠٹھاہ جان", + "reference_text": "Well done exclaimed the other two brothers", + "prediction": "Very good very good said the other two sisters delighted themselves upon hearing these words of their brother returned by means of this wicked woman.\"\"\"" + }, + { + "id": "simple_ks2en_0105", + "source_text": "بادشاہ تہٕ أمۍ سٕنزِ ٹاچِھ مٔلکانہِ ہٕنز خوٚشی ہیٚکہِ نہٕ لفظن منٛز بیانٕے سپدِتھ ییٚلہِ تِم پانہٕ وٲنۍ سمٕکھۍ تہٕ یہِ ننیٛاکھ زِ یِم ٲسۍ یِتھؠن ترٛؠن لڑکن تہٕ یِژھہِ مٲرۍ مَنٛزِ شہزادِ ہٕندۍ مول موج", + "reference_text": "The joy of the king and his favourite wife when they were restored to one another and knew themselves to be the parents of three such fine boys and such a beautiful princess cannot be described", + "prediction": "The happiness of King and his beloved queen could not be expressed into words when they met each other knowing that these were their sons born through marriage and mothers from different families respectively from Prince Shuja and Princess Zunekhanu whom they had" + }, + { + "id": "simple_ks2en_0106", + "source_text": "کیا بہٕ ہیٚکا پننہِ پران نمبر ۶۵۰۷۳۷۹۰۷۹۳۰ سٟتؠ پننہِ پنشنُک رقم چیک کٔرِتھ", + "reference_text": "Can I check my pension amount with my PRAN number 650737907930", + "prediction": "Can I check my pension amount with my Pran number 650737907930?" + }, + { + "id": "simple_ks2en_0107", + "source_text": "لہذا سوٗز تَمہِ اَکھ چِٹھۍ بادشاہَس یَتھ منٛز تَس وَننہٕ آو زِ بٔہ چھَس فلٲنۍ پادشاہ سٕنٛز کوٗر یَس کُن یہِ خراج اوس دِوان", + "reference_text": "Accordingly she sent a letter to the king saying that she was the daughter of a certain king to whom he paid tribute", + "prediction": "So she wrote a letter to King saying that I was the daughter of such and such king whom she wanted to marry her off with." + }, + { + "id": "simple_ks2en_0108", + "source_text": "مای ایٚس کیٛو ایٚل تہٕ اوریکَلس سان ڈیٹا بیسَن سٟتؠ کَنیٚکشَنہٕ خٲطرٕ کٔرِو یہِ پنٛنِس ٹیبلِٹَس یا لیپ ٹاپس پؠٹھ اِستعمال", + "reference_text": "Use this on either your tablet or laptop to build connections to databases including MySQL and Oracle", + "prediction": "Use this on your tablet or laptop for connecting with databases including MS SQL and Oracle.\"" + }, + { + "id": "simple_ks2en_0109", + "source_text": "أسۍ چھِ ٲسۍ مٕتۍ تٔمِس ژوٗرَس پَتہٕ کَنہِ نماز پران یَسُنٛد نہٕ کانٛہہ شکھٕے ہیٚکہِ ہے کٔرِتھ", + "reference_text": "We have been led in prayer by an unbelieving rogue", + "prediction": "We are Muslims and we pray in this mosque behind an wall without anyone doubting us of doing so at all.\"\"\"" + }, + { + "id": "simple_ks2en_0110", + "source_text": "حالَے طوٗفانو چھےٚ فصلس تبٲہی کٔرمٕژ۔", + "reference_text": "The recent storms have wreaked havoc on crops.", + "prediction": "Only recently did storms damage crops widely across Louisiana." + }, + { + "id": "simple_ks2en_0111", + "source_text": "گَوا ہُک چھِ امہِ کین سَفید سیٚکہِ ہِنٛدیٚن سَمنٛدٔری بَٹھؠن سرگَرم روتلِہِ زِنٛدگی عِبادت گاہو تہٕ عالمی مٟراث کِس فہرستس منٛز درٕج فنہِ تعمٟر کہِ وجہ کنہِ پرٛؠتھ ؤرِیہِ بٔڑِس تعدادس منٛز بین الاقوامی تہٕ مُلکی سَیاح اَتیُک دورٕ کَران", + "reference_text": "Goa is visited by large number of international and domestic tourists each year because of its whitesand beaches active nightlife places of worship and World Heritagelisted architecture", + "prediction": "Goa is visited by large numbers of international and domestic tourists every year due to its white beaches surfing resorts religious centres and world heritage site architecture listed on UNESCO World Heritage List for these reasons.\"\"\"" + }, + { + "id": "simple_ks2en_0112", + "source_text": "بہٕ کرٕ نہٕ مٔزیٖد تفصیٖل بَیان", + "reference_text": "I shall not elaborate any further.", + "prediction": "I will not provide further details.\"" + }, + { + "id": "simple_ks2en_0113", + "source_text": "کھوُپرٕ تہٕ کھوُپرٕ تٟل چھُ بٔڑِس پیمانَس پؠٹھ گوہُک کھؠن بناونَس منٛز مرٕژ مصالہٕ تہٕ سِرکَس سٟتؠ اِستعمال یِوان کرنہٕ یپس کیتھولِک کھانَن منٛز اِستعمال چھُ یِوان کرنہٕ ییٚمہِ سٟتؠ سِنِس اکھ خاص مَزٕ مِلان چھُ", + "reference_text": "Coconut and coconut oil are widely used in Goan cooking along with chilli peppers spices and vinegar used in the Catholic cuisine giving the food a unique flavour", + "prediction": "Coir and coconut are widely used in cooking seafood dishes along with spices like peppers and salt which gives a distinctive flavor to seafood dishes as Catholic cuisine uses it extensively.\"" + }, + { + "id": "simple_ks2en_0114", + "source_text": "راتھ رٲژ کیُتھ ٲس تٔمۍ سٕنٛز گٲڈۍ کٔمۍ تانۍ ژوٗرِ نیٖمٕژ۔", + "reference_text": "Somebody lifted his car last night.", + "prediction": "Who had stolen his horses during the night?" + }, + { + "id": "simple_ks2en_0115", + "source_text": "مگرسرپھَن کوٚرُس یہِ ؤنِتھ انکار زِ بہٕ گژھہٕ نہٕ توٚت تانۍ پَنہٕ نِس مٲلِس نِشہِ حاضِر یوٚ تانۍ نہٕ مےٚ یہِ ازٲنۍ یَلہٕ ترٛاوِ ییٚمۍ بہٕ سؠٹھہٕے خوفناک موتہٕ نِشہِ بچووُس تہٕ ییٚمہِ کِنۍ بٔہ أمۍ سُنٛد غلام چھُس", + "reference_text": "But the snake refused saying that it could not go to its father till it was released from this stranger who had saved it from a most terrible death and whose slave it therefore was", + "prediction": "But the snake refused to visit his father unless he released this unknown creature from death which had caused him great fear and was why I was its slave.\"\"\"" + }, + { + "id": "simple_ks2en_0116", + "source_text": "ہے اولی میٲنۍ لِسٹہٕ کیٛاہ چھِ", + "reference_text": "hey olly what are my lists", + "prediction": "hey olliwhat are my lists currently listed as" + }, + { + "id": "simple_ks2en_0117", + "source_text": "اَتھ جہازس منٛز اوس اَکھ بارستہٕ سوداگر ییٚمۍ ملکہ ہُنٛد پزنہٕ پیٚٹھی حسُن وُچھِتھ تہٕ جہاز ران سٕنٛدِ طرفہٕ کھاندر تجویزس دۄہَے أمۍ سُنٛد انکار بوٗزِتھ سوٗچ زِ بٔہ ما ہؠمن یہِ مٔلۍ تہٕ زینہٕ أمۍ سُنٛد دِل", + "reference_text": "Now there was in the same ship a great merchant who seeing the queens exceeding beauty and hearing her refuse the captains suit day after day thought that perhaps he might buy her and win over her affection", + "prediction": "A certain wealthy businessman on board noticed that the ship was carrying passengers but refused to discuss their marriage proposal due to disagreements between him and the captain of the ship which he believed could lead to their divorce or death later On board this ship one day" + }, + { + "id": "simple_ks2en_0118", + "source_text": "کیا ژٕ ہیٚککھا ۲۰۰۲۲۰۰۳ تعلٟمی ورۍ یَس مَنٛز ہوٹل میٚنیجمیٚنٛٹ اینٛڈ کیٹرِنٛگ مَنٛز ڈِپلوما لیولُک پروگرام پیش کرن وٲلۍ تمام اے آٮٔۍ سی ٹی ایی یٕک منظور شُدٕ یُنورسِٹی کہِ زیرِ اِنتِظام یُنورسِٹی میٚنیجڑ ادارن ہُنٛد لسٹ بنٲوِتھ", + "reference_text": "In the academic year 20022003 Can you list all the AICTE approved University Managed institutes offering Diploma level programs in Hotel Management and Catering", + "prediction": "Can you create a list of AICTE approved university or college administered universities offering diploma level programs in Hotel Management & Catering for the academic year 20022013?\"" + }, + { + "id": "simple_ks2en_0119", + "source_text": "ہرگا تہِ سَپُد تہٕ تیٚلہِ ؤنۍ زیوٛس زِ یِمَن ہُنٛد قٟمت چھُ انسان أچھَن ہٕنٛز جوٗرۍ", + "reference_text": "If so then tell her that the price is a pair of human eyes", + "prediction": "If this happens tell you that their price is a pair of human eyes worth money.\"\"\"" + }, + { + "id": "simple_ks2en_0120", + "source_text": "یہِ آبشار چُھ وۄنہِ ۱۹۷۹ تھس منٛز قٲیِم کرنہٕ آمژٕ جنٛگلی زُو ذٲژن ہِنٛزِ چھپن جایہِ ہُنٛد اَکھ حِصہٕ تہٕ وۄنہِ چُھ مَگرمَچھن تہٕ باقٕیہ جانوَرن ہِنٛدِس شِکارس پؠٹھ ٹھاک لگاونہٕ آمُت", + "reference_text": "The fall is now part of the Kaimur Wildlife Sanctuary established in 1979 and the hunting of crocodiles and other animals is now prohibited", + "prediction": "The waterfall is currently protected as a part of a wildlife sanctuary established in 1979 along with tigers and other animals prey upon here.\"\"\"" + }, + { + "id": "simple_ks2en_0121", + "source_text": "یورپس منٛز ٲسۍ تہنٛز ساروِی کھوتہٕ بٔڑ کامیٲبی سینڈوکن یٔمۍ برطانوی نوآبادیاتی دورس منٛز اکھ لولہٕ داستان جنوب مشرقی ایشیائی بحری قزاقٕچ دلٟل اکھ اطالویجرمنفرانسیسی ٹی وی سیریز یٔمۍ پورٕ یورپَس منٛز وُچھَن والؠن ہُنٛد رِیکارڈ پھترٲو", + "reference_text": "In Europe his greatest success was Sandokan the saga of a romantic Southeast Asian pirate during British colonial times an ItalianGermanFrench TV series which broke viewership records across Europe", + "prediction": "Their greatest success in Europe was Sandokon the British colonial era love story a Italian German French TV series recorded by viewers throughout Europe.\"" + }, + { + "id": "simple_ks2en_0122", + "source_text": "یہ چھ میٲنۍ دانت", + "reference_text": "Here are my teeth", + "prediction": "This is my toothache relief method by Dr Ayurvedaर्वेद.\"" + }, + { + "id": "simple_ks2en_0123", + "source_text": "بچس چھےٚ نیہٕ زبانہٕ ییٚچھنہٕ خٲطرٕ سٮ۪ٹھا جان قٲبلِیت۔", + "reference_text": "The child has a great faculty for learning new languages.", + "prediction": "The child has enough ability to learn a new language easily enough to complete this task successfully.\"\"\"" + }, + { + "id": "simple_ks2en_0124", + "source_text": "یہِ چھُ اکھ اِنسان دٔسۍ بَناونہٕ آمُت جٟل ییٚمیُک ناو چھُ اُدے پوُر تہٕ میواڑُک مہارانا فتح سنگَس پؠٹھ تھاونہٕ آمُت یُس اُدَے پوُرَس کُن شُمٲلۍ مغرِبَس منٛز پچولا جٟل کِس شُمالَس منٛز ۱۶۸۰ کِس دہائی منٛز اوس بناونہٕ آمُت", + "reference_text": "It is an artificial lake named after Maharana Fateh Singh of Udaipur and Mewar constructed northwest of Udaipur to the north of Lake Pichola in the 1680s", + "prediction": "It is an artificially created lake named Udai Pur which was created during the 1680s in north of Panchola Lake in northeast Udaipur Pradesh India on behalf of Maharana Fateh سنگھ of Mewar Udaipur Pradesh.\"" + }, + { + "id": "simple_ks2en_0125", + "source_text": "پنٛنہِ ایٚل ایٚل سی کس بُنیٲدی تشکٟلس مُتعلِق کٔرِو زانٛکٲری درٕج اَمیُک گۄڈنیُوک تہٕ بدلاونہٕ آمُت کارٕبٲرِ ناو اَگر یِم مُختٔلِف چھِ تہٕ نوٚوُے مُقرر کرنہٕ آمُت دفتَر یا نٔوِس رِیاستَس منٛز کارٕبارُک پتاہ", + "reference_text": "Enter information about your LLCs original formation its initial and converted business name if they differ and newly designated office or the businesss address in the new state", + "prediction": "Enter information regarding your LLC's principal business address its first and altered business name if applicable and whether it addresses a federal state or local area of commerce registered during the registration of the LLC.\"" + }, + { + "id": "simple_ks2en_0126", + "source_text": "یہِ چھےٚ زانانَن پؠٹھ مبنی فلمَو منٛز پنِنہِ استعداد تہٕ مضبوُط زانانَن ہٕنٛز تصویر کشی باپتھ یِوان زاننہٕ یہِ چھےٚ میڈیاہَس منٛز ہندوستانٕچ ساروِی کھۄتہٕ زِیٛادٕ معاوضہٕ نِنہٕ واجیٚنۍ اَداکارہ پٲٹھۍ بیان یِوان کرنہٕ", + "reference_text": "Known for her versatility and portrayal of strong women in femalecentric films she has been described in the media as one of Indias highestpaid actresses", + "prediction": "This is seen as portraying her versatility and strong knowledge within the context of familiar actors making her among India's highest paid actresses in media outlets.\"\"\"" + }, + { + "id": "simple_ks2en_0127", + "source_text": "سڑکہِ ہُنٛد شور چُھ مےٚ پاگل کران۔", + "reference_text": "The street noise is driving me mad.", + "prediction": "The noise from the road makes me crazy.\"" + }, + { + "id": "simple_ks2en_0128", + "source_text": "ییٚلہِ شہزادِ یہِ وُچھ تَس روٗد نہٕ پانس تانۍ سۄ آیہِ ہکہٕ برٛونٛٹھ کُن تہٕ پییٚہِ شہزادٕ سٕنٛدِس سٟنس پؠٹھ تہٕ خوٚشی منٛز ژھچَن وَدَن باکہٕ", + "reference_text": "When the princess saw this she could not restrain herself she rushed forward fell on the princes chest and wept for joy", + "prediction": "When she saw this princess could no longer hold back she rushed forward and cried aloud for joy against her breast before reaching near Prince’s breast.”" + }, + { + "id": "simple_ks2en_0129", + "source_text": "باقین پیشابہٕ نالہِ منٛز ورم پٲدٕ کرن والین جراشیمن ہندین زاژن ہٕندِ پٲٹھی چھُ سی جِنسِیٲتی لاگدار دار بیمارِ ہندِ ین جراشیمن شکل بدلاونہٕ حِسابہٕ زٕ مُختلِف زِندگی ہندِ مرحلہٕ زرن ہندِ خلیہ تہٕ زال ییرن وٲلہِ خلیہ", + "reference_text": "Like other Chlamydia species the C trachomatis life cycle consists of two morphologically distinct life stages elementary bodies and reticulate bodies", + "prediction": "Similar to those organisms responsible for viral pathogenesis cells from two generations of organisms undergo cell transformation due to genetic pathways OF genes responsible for causing inflammation in other tissues organisms tissues belong to cancer genus organisms belong to cancers genus organisms belongs to cancer gene pathways responsible" + }, + { + "id": "simple_ks2en_0130", + "source_text": "ریتہٕ وار بوموار بوموار بوموار بوموار تہٕ جمع دۄہ علاوٕ پرٛؠتھ دۄہہ", + "reference_text": "Every day except for Sunday Monday Tuesday Wednesday Thursday and Friday", + "prediction": "Every day except Sunday Monday Tuesday Thursday Friday and Saturday are Mondays are considered holidays in Delhi Schools provide free education for Free School Students upto grade 5th or until they complete their schooling at Delhi schools.\"" + }, + { + "id": "simple_ks2en_0131", + "source_text": "نامزد ٹاڈا عدالتَن دِیُت مُلزِم نمبر ۹۳ یَس ممبئیہِ بم دھماکہٕ کیسَس منٛز ۵۵ سرفراز داؤد پھانسے سٲزِش تہٕ حملَن منٛز استعمال گژھَن وٲلۍ اسلحہ تہٕ گولہ باروُد منتقل کرنُک مُجرِم قرار", + "reference_text": "The designated TADA court pronounced accused no 55 in the 93 Mumbai bombing case Sarfaraz Dawood Phanse guilty of conspiracy and transporting arms and ammunition used in the attacks", + "prediction": "Designated Tata court convicted accused number 93 of transporting weapons and ammunition used in Mumbai bombings cases conspiracy and attacks as guilty involving 55 arrested Dawood Fanzai Sazai." + }, + { + "id": "simple_ks2en_0132", + "source_text": "مگر اَسہِ ٲس نہٕ کانٛہہ فکر", + "reference_text": "But we were not worried", + "prediction": "But we were not worried at all." + }, + { + "id": "simple_ks2en_0133", + "source_text": "تٔمہِ سٕنز پیشورانہٕ زِندگی روُز ۶۵ ؤریہہ کھۄتہٕ زیادٕ کالَس تانہِ چلان ۱۱۴ فِلمَن منٛز اداکاری یِمَو منٛز ۹۲ تَن منٛز تٔمہِ کنی زٕنہِ مرکزی کردار ۍ سولو ہیرو سُنٛد کردار ادا کوٚرتہٕ تٔمہِ کَرِ زٕ انٛگریزۍ فِلمہٕ", + "reference_text": "His career spanned more than 65 years acting in 114 Hindi films of which 92 had him play the main solo lead hero and he did two English films", + "prediction": "His professional career lasted over 65 years acting in 114 films of which he played his second role as School Hero twice in 92 films and two English films.\"" + }, + { + "id": "simple_ks2en_0134", + "source_text": "أکِس بھیڑ سنٛز خصوُصِیژ چھِ رُکنہٕ ورٲے حَملٕہ", + "reference_text": "The essence of a swarmer is nonstop aggression", + "prediction": "A sheep has its legs separated from the meat with a knife or scissors.\"\"\"" + }, + { + "id": "simple_ks2en_0135", + "source_text": "سُہ نفر یُس بییٚس پانسٕے ہِوِس زُو ذٲژ معمولی رقمہٕ خٲطرٕ کَن ژٹنَس پَژِنہٕ تٔمِس پَزِ نہٕ پَژھ کَرٕنۍ", + "reference_text": "The man who would not scruple to deprive a fellowcreature of an ear for a trifle is not the man to be trusted", + "prediction": "A man who cannot find another of his own kind selling for a small amount of money should not be regarded as valuable enough to sell it to him at all.\"\"\"" + }, + { + "id": "simple_ks2en_0136", + "source_text": "راتھ سۄ بِل برنہٕ پتہٕ تہِ کیٛازِ چھِ مےٚ کرٛیٚڈِٹ کارڈ ادٲیگی باپتھ ریمنانڑر یِوان", + "reference_text": "Why did I get the reminder for Credit Card payment even after completing that transaction yesterday", + "prediction": "Why do I keep getting reminders for credit card payments even after completing that transaction yesterday night?" + }, + { + "id": "simple_ks2en_0137", + "source_text": "رژھا آرام تہٕ نِندٕر کرنہٕ پَتہٕ درٛاو شہزادٕ اَتھ جایہِ نظرا دِنہِ تہٕ کمٕے کٲلۍ ژاو أکِس بٔڈِس تہٕ وُٹھۍ وُٹھۍ زنڈن ہٕندِس جنگلس منٛز ییٚتہِ سُہ بیٚیہِ پتھر بِہتھ پَنہٕ نِس قسمتس پؠٹھ ماتم کرنہِ تہٕ وَدنہِ لوٚگ", + "reference_text": "After some rest and sleep he set forth to reconnoitre the place and in a little while entered a large and intricate jungle where he again rested mourning and lamenting his lot", + "prediction": "After taking a little rest and sleep the prince went to visit again for a while and sat down in one of the big trees covered with thick leaves where he began to lament about his fate and warn others about it during this period of visiting and" + }, + { + "id": "simple_ks2en_0138", + "source_text": "مہربٲنی کٔرِتھ کَر میانہِ بیڈ روٗمٕچ لایِٹ بنٛد", + "reference_text": "turn off the light of my bed room please", + "prediction": "please turn off the light of my bedroom room" + }, + { + "id": "simple_ks2en_0139", + "source_text": "اَمہِ حٔقٟقتہٕ باوجوُد زِ صِرف افغان افیم پٲداوار سٟتؠ چھِ دَہ بٔ اَرب وادٕ امرٟکی ڈالر حٲصِل سپدان ایٚف اے ٹی ایٚفن چُھ نہٕ افغٲنِستان غٲر تعاوُن کرن والیٚن مُلکن ہِنٛدِس بٕلیک لِسٹس منٛز شٲمِل کوٚرمُت", + "reference_text": "Despite the fact that tens of billions of USDs are generated from the Afghan opium harvest alone the FATF has not added Afghanistan to its blacklist of uncooperative nations", + "prediction": "Despite the fact that Afghan opium production alone produces ten billion USDs does not include FTFs black list countries whose cooperation is unavailable.\"\"\"" + }, + { + "id": "simple_ks2en_0140", + "source_text": "بہٕ چھُس یژھان پانَس یُنورسِٹی کہِ زیرِ اِنتِظام یُنورسِٹی میٚنیجڑ ادارس مَنٛز داخلہٕ نِیُن یِم َ ٹاوُن پٕلینِنٛگ مَنٛز پی جی لیولُک پروگرام چھِ پیش کران کیا مےٚ ہیٚکیا ۲۰۲۰۲۰۲۱ تعلٟمی ورۍ یَس مَنٛز یِتھؠن ادارن ہُنٛد لسٹ مِلِتھ", + "reference_text": "I want to get enrolled myself in an University Managed institutes offering PG level programs in Town Planning Can I get a list of such institutes in the academic year 20202021", + "prediction": "I want to take admission into University Managed Institutions recognized by University itself which offers PG Level program in Town Planning Can I get a list of such institutions for the academic year 2020-2017?" + }, + { + "id": "simple_ks2en_0141", + "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا سَوراشٹرٛا گرٛامٟن بیٚنٛک منٛز میٲنِس ۰۴۴۷۵۱۵۹۳۹۳۴ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر اَمیزن پے ذٔریعہٕ سَوراشٹرٛا گرٛامٟن بیٚنٛک منٛز ۹۰۰۸ ۰۴۴۷۵۱۵۹۳۹۳۴ پۄنٛسہٕ ٹرانسفر", + "reference_text": "Can you check if this months salary was credited to my bank account 044751593934 in Saurashtra Gramin Bank and if yes transfer Rs 9008 to 044751593934 in Saurashtra Gramin Bank via Amazon Pay", + "prediction": "Can you check if my 044751593934 bank account at SURASHTRA Gramin Bank for this month is received then transfer ₹9008 064760" + }, + { + "id": "simple_ks2en_0142", + "source_text": "کمار گو شعبہٕ منٛزٕ ۱۹۹۵تھس منٛز سُبُقدوش توتام اوس ہِند کس ساینسی سِمتس پؠٹھ وارِیاہن کمیٹِین منٛز یمہِ سنزِ سرپرستی تہٕ رُکنیت سٟتؠ واضح اشر پیومُت یمن منٛز تمہِ کٲنسہِ زٕٹ کرنہٕ ورٲیی پنٕنہِ جوٲزِیٲتی تہٕ بِلا مُقابلہٕ نوقتے نِگاہ پننِس مُنقرد اندازس منٛز بٲوِ", + "reference_text": "Kumar retired from the department in 1995 By then he had had a substantial influence on the course of Indian science through mentoring and membership in various committees where he brought his unique style of forcing a logical and uncontestable point of view without running down anyone", + "prediction": "Kumar stepped down from the department in 1995 having been influential by virtue of his membership and association with several committees on science in India until reaching retirement without necessarily considering their recommendations or participating directly in their deliberations making them distinctively different" + }, + { + "id": "simple_ks2en_0143", + "source_text": "بِجلی ہُنٛد میٖٹر چُھ ہیرن تلہِ کنہِ۔", + "reference_text": "The electricity meter is under the stairs.", + "prediction": "The electric meters is located at the bottom of the board upstairs.\"\"\"" + }, + { + "id": "simple_ks2en_0144", + "source_text": "کانٛگرس پارٹی چھِ رفتار سان بروٚنہہ پکان", + "reference_text": "The Congress party seems to be moving into top gear.", + "prediction": "Congress party is leading at speed ahead towards victory goals they are saying this slogan." + }, + { + "id": "simple_ks2en_0145", + "source_text": "اکھ قٲبلِ معٲفی گۄناہ، کیازِ کہِ ژےٚ کوٚرُتھ یہِ بغٲر کُنہِ غلط نیت۔", + "reference_text": "A venial sin, for you acted without evil intention.", + "prediction": "O wicked woman You have done wrong for you did not know better than so expecting evil results.”" + }, + { + "id": "simple_ks2en_0146", + "source_text": "بین الاقوٲمی سطحس پؠٹھ چھےٚ اِنٛٹرنیشنل شوُٹِنٛگ سٕپورٹ فیٚڈریشنَس سٲرِسٕے دُنیاہس منٛز سپدن والیٚن اولمپک شوُٹِنٛگ چیٚن تقرٟبن پؠٹھ نِگرٲنی آسان ییٚلہِ زن نیشنل گَورنِنٛگ باڈٟز پرٛؠتھ مُلکس منٛز اَمہِ کھیلُک اِنتِظام چُھِ کَران", + "reference_text": "Internationally the International Shooting Sport Federation has oversight of all Olympic shooting events worldwide while National Governing Bodies administer the sport within each country", + "prediction": "Internationally the International Shooting Sport Federation has oversight over all Olympic shooting events happening around the world while National Governing Bodies organize the sport within each country.\"\"\"" + }, + { + "id": "simple_ks2en_0147", + "source_text": "یِمو دۄیَو بادشاہو یوٚدوَے اَکھ أکۍ سُنٛد زٕنٛہے تہِ بوٗزمُت چھُ تہٕ نَہ چھِ زانٛہہ پانہٕ وٲنۍ سمکھیمٕتۍ تہِ کٔرِتھ تہِ چھِ پَنہٕ نؠن شُرؠن ہُنٛد رشتہٕ گنٛڈُن یژھان", + "reference_text": "These two kings though they have never seen or heard of one another yet wish their children to be united in marriage", + "prediction": "Despite never meeting each other these two kings still want their sons married despite knowing each other for centuries they choose not to marry them together anymore.\"\"\"" + }, + { + "id": "simple_ks2en_0148", + "source_text": "مےٚ اوس بازار ؤچھمت مگر کتابہٕ آسہٕ نہٕ ییٚتہ", + "reference_text": "I did check out the Market but the books were not there", + "prediction": "I went to the market but there were no books available here." + }, + { + "id": "simple_ks2en_0149", + "source_text": "ہمساے مُلک چُھ کثیٖر طورس پیٚٹھ آباد۔", + "reference_text": "The surrounding country is thickly populated.", + "prediction": "The neighboring country is largely uninhabited." + }, + { + "id": "simple_ks2en_0150", + "source_text": "بڈِس پیمانس پؠٹھ تہٕ تھزِ اندٕ وندٕ ترتیبی تکنیکہِ ہندِ بارسس ہِنہٕ سٟتؠ چھِ اسہِ وٚنہِ بھارٕ جنسوم ترتیبی ٰاداد شُمار بناونس اہل گٲمٕتہِ تھٕ سٕتی کلہِ کیو مُختلِف صو بشمۄُل اکہِ خلیہِ کس سطحس پؠٹھ ترن وول عاداد شُمار تہِ", + "reference_text": "With the advent of largescale and highthroughput sequencing technologies we are now able to generate large highdensity genome sequencing data and also transcriptome data from various parts of a plant including at single cell level says Varshney", + "prediction": "Large scale and higher density techniques allows us now to create larger number of objects including cell level calculations based on different types of algorithms such as cellular algorithms etceteraeteraetera इत्यादि ইত্যাদি categories ranging from single cells levels onwards through algorithms composed at higher densities" + }, + { + "id": "simple_ks2en_0151", + "source_text": "سۄ چھےٚ طبیچ طٲلبہِ علِم ۔", + "reference_text": "She's a medical student.", + "prediction": "She is a medical student." + }, + { + "id": "simple_ks2en_0152", + "source_text": "موختصر ناو چھِ اَکثَر یادشت ہُرراونہٕ کین آلاتن ہندِ پٲٹھہِ ہیچھناونہٕ یوان مِسالے فِزیکسس منٛز چھِ بوزنہٕ یِنہٕ والہِ وارِیاہن رنگن ہنزن رٕکھن ہٕندِ رنگ آر او وایی جی بی وی ووزُل سنگتٕرِ لیدُر سبز نِیوُل لاجورٕدِ بُنفشہِ", + "reference_text": "Acronyms are often taught as mnemonic devices for example in physics the colors of the visible spectrum are said to be ROY G BIV redorangeyellowgreenblueindigoviolet", + "prediction": "Abbreviated names are often taught as reminders such as physics uses several acronyms such as B V J C V O W L S green blue purple pink etc for different types of colors heard throughout physics class rooms.\"\"\"" + }, + { + "id": "simple_ks2en_0153", + "source_text": "کیٛاہ ژٕ ہؠکہٕ چیک کٔرِتھ زِ کیٛاہ ییٚمہِ رؠتُک تنخواہ آوا نیٚنِتال بیٚنٛک منٛز میٲنِس ۵۶۵۳۳۷۴۶۷۵۵۷ بینک آکاونٹَس منٛز اگر آو تیٚلہِ کَر پے ٹی ایٚم ذٔریعہٕ نیٚنِتال بیٚنٛک منٛز ۳۵۵۸ ۵۶۵۳۳۷۴۶۷۵۵۷ پۄنٛسہٕ ٹرانسفر", + "reference_text": "Can you check if this months salary was credited to my bank account 565337467557 in Nainital Bank and if yes transfer Rs 3558 to 565337467557 in Nainital Bank via PayTm", + "prediction": "Can you check if my 3558 565337467557 dollars has been transferred through PayT by means of my 5200019775007" + }, + { + "id": "simple_ks2en_0154", + "source_text": "بہٕ ہٮ۪کیہِ ژےٚ ژ ٮ۪تس پٲوتھ تہنٚز چِٹھِ جواب لٮ۪کُھن؟", + "reference_text": "May I remind you to answer his letter?", + "prediction": "Can I give you a messagePlease write down your name and address carefully before leaving for Bangalore tomorrow morning." + }, + { + "id": "simple_ks2en_0155", + "source_text": "وارشٕنییَن سوُنٛچ زِ جینوم کہٕ مَدتہٕ سٟتؠ پٲداوار بناونہٕ چہِ تکنٟکہِ ہُنٛد اِستعمال کٔرِتھ بہتر پٲداوار دِنہٕ واجنہِ دالہٕ تہٕ تِلہٕ گۄگل تَیار کَرنہٕ سٟتؠ گَژھہِ نہٕ صِرِف لۄکٹؠن زٔمٟندارَن ہِنٛزِ آمدٔنی منٛز ہُرؠر بٕلکہِ زٔمٟنُک نٟم خۄشٕک حِصہٕ پٲداوار خٲطرٕ اِستعمال کٔرِتھ بَنہِ مُلکس منٛز غٕزہٕچ فَرٲہمی یٔقٟنی", + "reference_text": "Varshney reckoned that developing betteryielding pulses and oilseeds using genomeassisted breeding techniques would not only enhance the income of smallholder farmers but ensure the countrys nutritional security by putting the semiarid stretch of land to productive use", + "prediction": "Varshni thought using techniques that rely on genome assistance would create better quality seed and soil products which would not just increase farmers income but also ensure food supply for regions of the country currently experiencing drought by utilizing less dry area resources for production purposes" + }, + { + "id": "simple_ks2en_0156", + "source_text": "کلاس شروٗع گژھنہٕ برٛونٛہہ زٕ گھنٹہٕ کٔر ڈانس کلاس خٲطرٕ الارم سیٹ", + "reference_text": "set an alarm for the dance classes two hours before the classes start", + "prediction": "Set an alarm for dance class two hours before class begins.\"\"\"" + }, + { + "id": "simple_ks2en_0157", + "source_text": "بہٕ چھس پیاسہ", + "reference_text": "Im thirsty", + "prediction": "Im thirsty though so please bring me a glass of water too.”" + }, + { + "id": "simple_ks2en_0158", + "source_text": "برطانوی عۄہدٕ دارو کوٚر اَکھ ڈاک بٔنٛگلہٕ تعمٟر ییتہِ پؠٹھہٕ ۳۰۰ فٕٹہٕ کھجرٕ تہٕ ۱۰۰ فٕٹہ تھدِ آبٕشارُک نظارٕ بوزنہٕ یوان اوس", + "reference_text": "British officials constructed a dak bungalow with a view of the 300 feet wide and 100 feet high waterfall", + "prediction": "British officials constructed a ڈاک bungalow which provides views of 300 feet of height and 100 ft of water falling from here.”" + }, + { + "id": "simple_ks2en_0159", + "source_text": "شامس ووت شہزادٕ تہٕ اتہِ وُچھِن پنٕنۍ مٲرۍ مٔنٛز آشِنۍ تہٕ سَپُد سؠٹھاہ خۄش", + "reference_text": "In the evening the prince returned and saw his beautiful wife and was delighted", + "prediction": "Going home late evening the prince found his beautiful wife asleep and was greatly delighted to see her thus comforted.\"\"\"" + }, + { + "id": "simple_ks2en_0160", + "source_text": "تہِ کیٛازِ یہِ ٲس نہٕ کانٛہہ بٔڈ کتھٕے", + "reference_text": "Because it would have been a small thing", + "prediction": "Because it was not difficult to understand why they were doing this wonderful thing.”" + }, + { + "id": "simple_ks2en_0161", + "source_text": "پوٗرٕ ملکس منٛز پھہلیوو تیٖزی سان ۄبا", + "reference_text": "An epidemic is raging throughout the country.", + "prediction": "Disaster struck rapidly throughout the country causing widespread devastation and loss of precious lives worldwide causing huge economic losses worldwide.\"\"\"" + }, + { + "id": "simple_ks2en_0162", + "source_text": "تٔمۍ کوٚر أکِسبٔڑِس موٚہِنٛوِس سۭتۍ خانٛدر۔", + "reference_text": "She married a magnate.", + "prediction": "He married a girl from Bangalore called Mohuinashi.\"" + }, + { + "id": "simple_ks2en_0163", + "source_text": "کیا کانٛہہ پونٛسہٕ دِتھ میلن وول ویکسِنیشن سینٹر چھا یِم کو ویٚکسٟن دٔیُم ڈوز چھِ فراہَم کران", + "reference_text": "Are there any Paid vaccination centres which provide Second Dose of COVAXIN", + "prediction": "Are there any paid vaccination centres providing Second Dose of COVAXIN vaccine?" + }, + { + "id": "simple_ks2en_0164", + "source_text": "وارشنے یس چُھ یاد پؠوان زِ ۲٠٠۵ پؠٹھٕ دۄن ؤرِین تانۍ کِتھ کٔنۍ کوٚر مےٚ پنٛنِس تحقٟقی کیریَرس منٛز جَدوجَہر یِمن فصلن پؠٹھ مےٚ کٲم کَرٕنۍ صٔحی کٔر تِمن مُتعلِق ٲس محدوُد جٟن یٲیی زانٛکٲری چَنہٕ ہِنٛدُستٲنۍ چَنہٕ چھولہٕ دال تہٕ جلگوزٕ", + "reference_text": "For two years from 2005 I struggled in my research career recalls Varshney There was only limited genetic information on the crops I chose to work on chickpea Indian chana pigeon pea and groundnut", + "prediction": "Vارشney remembers how difficult it was for her to choose between two crops from 2005 till then during her research career until she decided on specific genes such as maize corn wheat barley potato etc making them relevant to India potato wheat" + }, + { + "id": "simple_ks2en_0165", + "source_text": "مے ون نیو یارک شہرک موسم", + "reference_text": "tell me the current weather in new york city", + "prediction": "tell me weather conditions in new york city" + }, + { + "id": "simple_ks2en_0166", + "source_text": "شیٚستٕر کٲم بنٛد کرنس خلاف عرضی پٮ۪ٹھ کوٚر ساروے رُکنو دستخط", + "reference_text": "A petition against closing the iron works was signed by all the members.", + "prediction": "A petition against stopping sex work was signed by all members of Parliament.\"\"\"" + }, + { + "id": "simple_ks2en_0167", + "source_text": "بٔہ یعنے بادشاہ چون خانہٕ دار تُہنٛد مول اوسنہٕ آبس پھوٚٹمُت یِتھہٕ کٕنۍ تۄہہِ باسان چھُو بلکہِ اوسُس اَکہِ بجہِ گاڈِ نؠنگلوومُت تہٕ اوسُس کینژَن دۄہَن تٔسۍ انٛدر پَتہٕ تُج اَمہِ بلایہِ بٔٹھِس کُن وۄٹھ تہٕ بٔہ آس اَمہِ منٛزٕ کَڈنہٕ", + "reference_text": "I the king your husband your father was not drowned as you supposed but was swallowed by a big fish and nourished by it for some days and then the monster threw itself upon the shore and I was extricated", + "prediction": "Your father I mean King your husband was not drowned as appears but rather swallowed by a great fish and remained there for several days afterwards until this disaster arose whereby he was drawn from it into the waters.”" + }, + { + "id": "simple_ks2en_0168", + "source_text": "یہِ چھُ لگ بگ پرٛؠتھ وِزِ أکہ فور ہینڈ ٹاس سٟتؠ یوان کرنہٕ", + "reference_text": "It is nearly always done with a forehand stroke", + "prediction": "This is often done along with a forehand stroke at each point of the service line.\"" + }, + { + "id": "simple_ks2en_0169", + "source_text": "شہزادٕ کشمیرا سنٛگھ پیشوَرا سنٛگھ تہٕ شہزادٕ مُلتانا سِنٛگھ ٲسہِ دیا کورِ تہٕ رَتَن کورِ زامٕتہِ یِمہٕ رنجیت سِنٛگھ سٕنزٕ زنانہٕ آسہٕ", + "reference_text": "Prince Kashmira Singh Peshaura Singh and Prince Multana Singh were born to Daya Kaur and Ratan Kaur wives of Ranjit Singh", + "prediction": "Prince Kashmir Singh Peshwara Singh and Prince Multana Singh were born to Dya Kaur and Ratan Kaur respectively who were wives of Ranjit Singh.\"" + }, + { + "id": "simple_ks2en_0170", + "source_text": "ٲٹھ چھ کارپینٹر تہٕ شیٚیہ میسن", + "reference_text": "There are eight carpenters and six masons", + "prediction": "Eight carpenters and six masons are here." + }, + { + "id": "simple_ks2en_0171", + "source_text": "ٹِکی چُھ یِوان تلنہٕ برٛونٛہہ اوٹ متھنہٕ۔", + "reference_text": "Cutlets are floured before frying.", + "prediction": "The ticket is valued before it has been taken away from you at the airport.\"\"\"" + }, + { + "id": "simple_ks2en_0172", + "source_text": "جیزبل موٗد اکھ خوفناک موت۔", + "reference_text": "Jezebel died a horrible death.", + "prediction": "Jizbel died a terrible death." + }, + { + "id": "simple_ks2en_0173", + "source_text": "سُہ چَھ یتھ موٗضَوعس پٮ۪ٹھ تحقیٖقَس متعلق ناوٲقٔف باسان۔", + "reference_text": "He seems unfamiliar with research on this topic.", + "prediction": "He seems unaware of the controversy surrounding this subject matter.\"" + }, + { + "id": "simple_ks2en_0174", + "source_text": "تِمن علاقن یِمن منٛز سایکل چَلاوُن مقبوُل چُھ تہٕ اتھ حوصلہٕ افزٲیی کرنہٕ یِوان چھِ تتہِ چھےٚ سایکل پارٕک کرنہٕ چہِ سٔہوُلِیاتہٕ یَتھ منٛز سایکل سٕٹینٛڈ قُلُف کرنہٕ یِنہٕ وٲلہِ گیراج تہٕ سایکل پارکہٕ یِمن پؠٹھ نظر گُزر چھےٚ تھاونہٕ یِوان ژوُرٕ کم کرنہٕ خٲطرٕ اِستعمال کرنہٕ یِوان", + "reference_text": "In areas in which cycling is popular and encouraged cycleparking facilities using bicycle stands lockable minigarages and patrolled cycle parks are used in order to reduce theft", + "prediction": "In areas where cycling is popular and encouraged bicycle parks facilities such as bicycle سٹینڈ folding garages and bicycle parks are provided in order to reduce theft by sight keeping an eye on them.\"\"\"" + }, + { + "id": "simple_ks2en_0175", + "source_text": "وارشنی یُس اَمہِ وقتہٕ لیٚبِنٟز اِنسٹی ٹیٛوُٹ آف پٕلانٹ جیٚنیٚٹِکس اینٛڈ کرٛاپ پٕلانٛٹ رِسٲرچ گیٹَرس لیٚبیٚن مرکٔزی جرمٔنی منٛز تحقٟقی ساینس دان اوس یہِ اوس بولوگناہس منٛز أکِس کانفرنسہِ منٛز شِرکت کَران اَتہِ کوٚر بولوگناہن ساینس دانن ہِنٛزِ یِنہٕ واجنہِ نسلن یہِ دعوا زِ تِم کٔرِن زراعت کِس یِنہٕ وٲلِس اِنقِلابس منٛز جٟنومِکس تہٕ بَیو ٹیٚکنالجی ہِنٛدِ طاقتُک اِستعمال", + "reference_text": "Varshney then a research scientist at the Leibniz Institute of Plant Genetics and Crop Plant Research at Gatersleben in central Germany was attending a conference in Bologna There Borlaug challenged the next generation of scientists to harness the power of genomics and biotechnology to usher in the next revolution in agriculture", + "prediction": "Ashok Khayut Thumby at NASA Research Coordinator for Space Technology Development Programme NASA conducted this conference attended by scientists from Bangalore claiming that they had used the power of genomics and biotechnology in developing agriculture technologies destined to become the next revolution in" + }, + { + "id": "simple_ks2en_0176", + "source_text": "بییٚہِ ووٚننَکھ زِ سۄ کِتھہٕ پٲٹھۍ ٲس سوچان زِ سۄ ہیٚکہِ نہٕ زانٛہہ ووٚنۍ پَنہٕ نِس خانہٕ دارس یعنے تُہنٛدِس مٲلِس سمکھِتھ تہٕ اوسُن أمِس سوداگرس سٟتۍ زٕ ؤری ادا سپدنہٕ پَتہٕ کھاندر کرنُک وعدٕ کوٚرمُت تہٕ یَتھ ووٚنۍ محض ترٛے دۄہ باقٕے چھِ", + "reference_text": "and how she thinking that she should never meet with her husband their father again had promised to marry this merchant at the end of two years only three days of which remained now", + "prediction": "Also she mentioned how she had promised to marry this businessman after paying these two years apart from your father and husband whom she could never see again due in just three days of remaining alive.\"\"\"" + }, + { + "id": "simple_ks2en_0177", + "source_text": "خراب قٕسمتن اوٚن تٔمِس زوال۔", + "reference_text": "Bad luck caused his downfall.", + "prediction": "Unfortunately fortune smiled upon him causing great prosperity throughout India and beyond India itself।" + }, + { + "id": "simple_ks2en_0178", + "source_text": "تُہۍ چھِوٕ ہمیشہِ میٛانہِ خٲطرٕ کینٛہہ نتہٕ کینٛہہ اَنان", + "reference_text": "You always bring something or the other for me", + "prediction": "You always bring something or the other for me every day at home from work.\"\"\"" + }, + { + "id": "simple_ks2en_0179", + "source_text": "ایٚنٹی بَیاٹِک چھِ اکنُک ورم قوبوُہس منٛز تھاونہٕ خٲطرٕ اِستعمال کرنہٕ یِوان تہٕ باقٕیہ تہٕ باقین انتخابن منٛز چھُ بٔڑِس پیمانس پؠٹھ کنہٕ کہِ پردٕچ جَرٲہی شٲمِل کنہٕ کس پردس چاک یا اَگر نَے مٔرٟض ٹھٟک گَژھِ دَباو کم کرنٕچ عمل", + "reference_text": "Antibiotics are used to control the otitis media and other options include a wide myringotomy an incision in the tympanic membrane or decompression if the patient does not improve", + "prediction": "Antibiotics are used to control inflammation and relieve other symptoms such as infections in both urinary tract wounds or bladder infections for major degree increases in urine volume pressure reduction processes may include rectal or bladder irrigation depending on patient condition causing them to improve significantly.\"" + }, + { + "id": "simple_ks2en_0180", + "source_text": "از راتھ کِیُت پٲیزِ مے یِہ ریکارڈ پلے کرن یاد", + "reference_text": "remind me to play this song tonight", + "prediction": "what song did i play today at night remember" + }, + { + "id": "simple_ks2en_0181", + "source_text": "کیمکل اِنجینیرِنگ ساینسس پؠٹھ تمہِ سندِس پرچس یُس تمہِ سندِس طالب علم دِلیپ دیسایی ہس سٟتؠ سٟتؠ لیکھنہٕ آو ہوو کمارن زِحساب کرُن کتھہٕ کٕنہِ گژھہِ یہِ مانِتھ زِ اندن ہندِ میلن وٲلہِ حصہٕ چھِ ترکوُنجل نہٕکہِ گول آسان بناوُن", + "reference_text": "In one of his famous papers in Chemical Engineering Science authored with his student Dilip Desai Kumar showed how to simplify the calculations by assuming that the border crosssection is a triangle and not curved", + "prediction": "His work on chemical engineering science written along with his student Dilip Desai showed Kumar how accounting calculations must be performed considering that end products are not necessarily round but square shaped pieces of corner angle shapes instead of circles.\"\"\"" + }, + { + "id": "simple_ks2en_0182", + "source_text": "ڈل جھیٖلس منٛز گنٛد اکھ راؤنڈ", + "reference_text": "Play a round in the Dal lake", + "prediction": "Played a round at Dal Lake" + }, + { + "id": "simple_ks2en_0183", + "source_text": "سُہ اوس نہٕ عام مُسافِر باسان۔", + "reference_text": "He seemed not an ordinary mendicant.", + "prediction": "He seemed not a man of much importance but an ordinary traveller visiting this place by chance on occasion." + }, + { + "id": "simple_ks2en_0184", + "source_text": "مثال پٲٹھۍ اگر تُہۍ سپلائرس سٟتؠ مُہادس پؠٹھ تنازٕ گژھہِ تہِ تُہۍ أسِو نہٕ ذٲتی طور پٲٹھۍ پننہِ کمپنی ہنٛد طرفہٕ تِمَن پؠٹھ وٲجب الادا کُنہِ فیس یا پونٛسہٕ ہنٛد ذمہٕ دار", + "reference_text": "For instance if you get into a contract dispute with a supplier you will not be personally liable for any fees or charges owed to them by your company", + "prediction": "For example if a dispute arises with the supplier you will not be personally responsible for any fees or money owed by your company towards them upon contract termination." + }, + { + "id": "simple_ks2en_0185", + "source_text": "چھاپ پسدن وٲلِس ذرایہ ابلاغس منٛز چھِ آسامٕکہِ روزانہٕ شایع گَژھن وٲلہِ اخبار اَمر اَسوم اَسومیہ خَبر اَسومیہ پرٛتٟدِن دینِک اگرادوُت دینِک جَنم بھوُمی دینِک اَسم گنہ ادِھکار جَناسادَھرن تہٕ نِیومِیا برتا شٲمِل", + "reference_text": "Print media include Assamese dailies Amar Asom Asomiya Khabar Asomiya Pratidin Dainik Agradoot Dainik Janambhumi Dainik Asam Gana Adhikar Janasadharan and Niyomiya Barta", + "prediction": "Notable dailies from Assam include Asam Dainik Asam U smita Kh خبر Asam Prtimeidini Agaduet Donik Jنم Bhumi Donik Asma Gana Edhakar Niyumya Barta Sh" + }, + { + "id": "simple_ks2en_0186", + "source_text": "ریوایتی جہازن چھُ اکوُیہ ڈانچہٕ آسان مگراکہِ کھوتہٕ زیادٕ ڈانچہِ وٲلہِ زٕ برابر مُتوٲتِر ڈانچہ وٲلہِ دُ ڈانچل جہاز تہٕ اکس ڈانچس سٟتؠ زٕ بییہ ڈانچہ جُڈِتھ آسن وٲلہِ ترٚڈانچل جہاز چھِ زیادٕ مقبوُل سپدان َ", + "reference_text": "Traditional sailboats are monohulls but multihull catamarans and trimarans are gaining popularity", + "prediction": "Traditional ships have twenty two structures more than they require equivalent structures two with additional structures are becoming increasingly popular including a single structure joined by two others structures with additional structure joining them together constitute an ട്രادانچل ship.\"\"\"" + }, + { + "id": "simple_ks2en_0187", + "source_text": "انگارے باپتھ اوس راجیش کھنہَن ہدایت کار راجیش سیٹھی یَس ووٚنمُت زِ سُہ گژھہِ سلیم خانَس نِش تہٕ کَرِ تَتھ سکرپٹَس پؠٹھ بیٚیہِ کٲم یوٚس تٔمِس نِش ٲس", + "reference_text": "For Angaaray Rajesh Khanna asked director Rajesh Sethi to go to Salim Khan and rework on the script he had", + "prediction": "For Angaare Rajesh Khanna had instructed director Rajesh Sethi to visit Salim Khan and rework on the script he had received from him.\"\"\"" + }, + { + "id": "simple_ks2en_0188", + "source_text": "مس کس بارس منز چھ کتھ کران", + "reference_text": "Talking about hair", + "prediction": "Discussing cats are discussing cats itself.\"" + }, + { + "id": "simple_ks2en_0189", + "source_text": "اورٕ یور دِژٕن نظر تہٕ اَتہِ وُچھِن پَنہٕ نِس معشوق سٕنٛز لاش تہٕ انتہٲیی بد صورت شکلہِ ہُنٛد نفرا اَتھ پؠٹھ وۄدٕنۍ", + "reference_text": "Looking about she saw the dead body of her lover and the horrible deformed man standing over it", + "prediction": "Looking here and there he noticed the body of his beloved husband covered with an extremely foul smell caused by urine from her visitations at that hour of sleep.\"" + }, + { + "id": "simple_ks2en_0190", + "source_text": "یہٕ دٮ۪وار سجاونہٕ خٲطرٕ چھِ اسہِ رنٛگ بٔرنٛگی چاکن ہِنٛز ضٔروٗرت", + "reference_text": "We need colored chalks for decorating the wall.", + "prediction": "We need رنگing agents to decorate this wall.\"\"\"" + }, + { + "id": "simple_ks2en_0191", + "source_text": "تٔمۍ اوس واریاہ کال برونٛہہ شہر تروومُت۔", + "reference_text": "He left the city long ago.", + "prediction": "He had left the city long ago and lived somewhere else instead of here.\"" + }, + { + "id": "simple_ks2en_0192", + "source_text": "ہجوٗمس منٛز کینٛہو خراب عناصِرو کٔر تقریٖرِ منٛز خلل۔", + "reference_text": "Some bad elements in the crowd disturbed the speech.", + "prediction": "Some elements within the composition were disturbed by means of impurities contained therein causing disorders within the speech organ.\"" + }, + { + "id": "simple_ks2en_0193", + "source_text": "اَتھہٕ سٟتؠ موینہٕ کرنہٕ سٟتؠ مخصوص جاین لگُن چھُ مُتٲصرٕ جاے بدِ کڈنس منٛز فٲیدٕ مند روزان", + "reference_text": "Pain elicited by palpating certain structures may be helpful in localizing the affected area", + "prediction": "Fingertip identification allows players to identify positions more quickly than traditional spotting methods provide benefit from finger placement variations.\"" + }, + { + "id": "simple_ks2en_0194", + "source_text": "لہذا آیہِ أکِس مُنٛٲسِب وقتس پؠٹھ بادشاہَس یہِ شیٚچھ واتناونہٕ زِ تٔمۍ سٕنٛز اَکھ زنانہٕ چھےٚ گۄبہِ کھۄر تہٕ اَمہِ پتہٕ کمٕے کٲلۍ آیہِ نؠبر تہِ یہِ کَتھ ترٛاونہٕ زِ اَکھ لۄکٕٹۍ شہزٲدۍ پییٚپہِ تھنہٕ", + "reference_text": "Accordingly on an appointed time word was sent to the king that one of his wives was pregnant and a little while afterwards the news was spread abroad that a little princess was born", + "prediction": "So at an appropriate time news was brought before the king stating that one of his wives had suffered from childbirth injuries and shortly thereafter reports began suggesting a slight birth occurring among them indicating their families ended in distress due to pregnancy injuries sustained by women partners" + }, + { + "id": "simple_ks2en_0195", + "source_text": "اسلم سُنٛد مول چُھ اکھ موم بتہِ بناون وول", + "reference_text": "Aslam`s father is a chandler.", + "prediction": "Asals father is a candle maker by profession." + }, + { + "id": "simple_ks2en_0196", + "source_text": "تٔمِس چُھ کم تنخواہ میلان۔", + "reference_text": "She gets a low salary.", + "prediction": "He earns a low salary." + }, + { + "id": "simple_ks2en_0197", + "source_text": "تمہِ کٔر نیشنَل اِنسچوُٹ آف اِنجِنیٚرِنٛگ میسور یُنِورسِٹی منٛز ایٚلیٚکٹِرٛکل اِنجِنیرِنٛگ منٛز بچلٕرس ڈِگری ہیتھ گرٛیجویشَن تہٕ اِنٛڈیَن اِنسٹی ٹیٛوُٹ آف ٹیٚکنالجی کانپوُر پؠٹھہٕ کٕرٕن ماسٹٲرس ڈِگری حٲصِل", + "reference_text": "He graduated from the National Institute of Engineering University of Mysore with a bachelors degree in electrical engineering and a masters degree from the Indian Institute of Technology Kanpur", + "prediction": "He obtained a bachelor degree in electrical engineering from National Institute of Engineering Mysore University followed by obtaining a masters degree from Indian Institute of Technology Kanpur.\"\"\"" + }, + { + "id": "simple_ks2en_0198", + "source_text": "اَمہِ زانکٲری باوٕجوُد تہِ کٔر تِم یہِ حٔقٟقت تسلٟم کرنس منٛز جَدوجَہد زِ سُہ بُلنٛد مقصد وول تحقٟقی منٛصوُبہٕ یُس أمۍ ۲٠٠۳ ہس منٛز سبٕز اِنقلاب کہِ شُروُعات کَرن وٲلۍ نورمن بورلاگ سٕنٛدِ خٕطابہِ سٟتؠ مُتٲثِر گٔژِتھ شُروُع اوس کوٚرمُت گوٚو قٲیِم گَژھنس منٛز ناکام", + "reference_text": "Despite that awareness he struggled to come to terms with the fact that the ambitious research project he had embarked upon inspired by a speech in 2003 by Norman Borlaug the Father of Green Revolution had failed to take root", + "prediction": "Despite this information they struggled to establish the fact that the ambitious research project started with Norman Burlaగ్ s lectures on Green Revolution in 2003 failed to achieve establishment despite efforts by them.\"\"\"" + }, + { + "id": "simple_ks2en_0199", + "source_text": "پوُرٕ درجہٕ بندی منٛز چھِ ہسٹوپیتھولوجیکل قٕسم درجہٕ مرحلہٕ رٹن وٲلۍ سنٛز حیثیت تہٕ ڈی این اے ٹیسٹنگ ذریعہٕ طے شدٕ جینٕچ موُجودٕگی یا غٲر موُجودٕگی شٲمِل", + "reference_text": "A full classification includes histopathological type grade stage receptor status and the presence or absence of genes as determined by DNA testing", + "prediction": "Full classification includes histopathological type grade staging location determination by DNA testing presence or absence of genes موجود or absent from the cancer cell organisms tissue types and others categories include cancer cells tissues organisms etcetera.\"\"\"" + }, + { + "id": "simple_ks2en_0200", + "source_text": "چوپرایہ کوٚر ۲۰۰۶ ہس منٛز سارِوٕیہ زیادٕ پونٛسہٕ کماون واجِنیٚن پرٛوڈکشَنن کِرٛش تہٕ ڈان فَلمن منٛز اَہم کِردار ادا کرِتھ پَنُن پان قٲیِم تہٕ پتہٕ کوٚر تمہِ یِہنٛدیٚن دویِمیٚن حِصن منٛز پَنُن کِردار دُبارٕ اَدا", + "reference_text": "Chopra established herself with starring roles in the topgrossing productions Krrish and Don in 2006 and she later reprised her role in their sequels", + "prediction": "Chopta established herself with starring roles in highest gross income films Krish and Don films in 2006 then repraning her role in their second instalment of Krish film.\"" + } + ] +} \ No newline at end of file diff --git a/benchmarks/kashmiri_benchmark_500_source_only.jsonl b/benchmarks/kashmiri_benchmark_500_source_only.jsonl new file mode 100644 index 0000000..c3bd3cd --- /dev/null +++ b/benchmarks/kashmiri_benchmark_500_source_only.jsonl @@ -0,0 +1,500 @@ +{"id": "bench_0001", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چمکہٕ وٕنِس ڈٮ۪کس پٮ۪ٹھ ٲسِس عرقہٕ پِھرۍ زوتان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 47, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0002", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I read books.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0003", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لگہِ نہٕ کَنہِ پل بَدل کعبس\nلگہِ نہٕ آہَنس گاسہٕ نار\nلگہِ نہٕ موٚکُر کُنہِ درگاہس\nلگہِ نہٕ شاہس کتھِ اِنکار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0004", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرس منٛز یِیہِ ملی ٹنسی ہُنٛد ماحولیٲتی نظام پرٛتھ قۭمتَس پٮ۪ٹھ ختٕم کرنہٕ: منوج سنہا\nجموں و کشمیرٕکۍ لیفٹیننٹ گورنر منوج سنہاہَن ووٚن زِ فوج چھُ جموں و کشمیر کٮ۪ن سرحدن پٮ۪ٹھ جنگ بٔنٛدی ہٕنٛز خلاف ورزِین ہُنٛد سخٕت جواب دِوان۔\nتٔمۍ ووٚن زِ خٕطس منٛز یِیہِ دہشت گردی ہُنٛد ماحولیٲتی نظام پرٛٮ۪تھ قۭمتَس پٮ۪ٹھ ختٕم کرنہٕ۔\n\nلیفٹیننٹ گورنرَن کوٚر ژٔنٛدٕروارِ دۄہ ییٚتہِ أکِس تقریٖبہِ ہِنٛدِس حاشس پٮ۪ٹھ صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اظہار۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 457, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0005", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفسی کٔرٕم اَدل تہٕ وَدَل\nنفس میون شیطانس بدل آو\nنفس یِرِم کرٛیہِ ہٕندۍ کَدل\nنفس میون دوزخس بَدل آو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0006", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آرٕتُے سرٕ تہٕ سنگر لُنگے\nآرٕتُے ویٖر منگہِ یے ٹنگ\nآرٕتُے یِپِس نِشے سۄنگے\nآرٕتُے دزنس لگہِ نہٕ انگ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0007", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اگر تو٘ہہِ میری لینڈ پیٹھہٕ فلوریڈاہس تام گاڑِ منز بغیر رُکن سفر کران چھِو، تیٚلہِ لگن لگ بگ 14 گٲنٛٹہٕ تہٕ 5 منٹ [1][2][3]۔\nمیری لینڈ تہٕ فلوریڈاہس درمیان چھُ تقریباً 945 میل یا 1,521 کلومیٹر [2]۔ وقفہٕ، ٹریفک تہٕ موسمٕچ صورتحال وٗچھِتھ ، فلوریڈاہس تام واتنس منز لگن لگ بگ 16.5 گٲنٛٹہٕ [2]۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 291, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0008", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس رشیدس کھورن تھپھ کٔرِتھ معٲفی منگٕنۍ یژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0009", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَرزتھ وَن تہٕ وارے\nتتہِ کیا أسۍ حساب گِنَو\nمےٚ تروو آلہٕ کال شکھُر پھَرے\nلُز پٲوٕم أسۍ از وَر دٕنو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0010", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٹاکِنٛگ سٕٹفَر چھِ عام طور لۄکٕٹۍ، سَستۍ تحفہٕ یِم چھِ کرِسمَس سٹاکِنٛگَن مَنٛز چھُٹِین ہٕنٛدِس رِوٲیَت کِس حِصَس پٲٹھۍ تھاونہٕ یِوان [1]. یہِ گژھہِ اَکھ یُتھ چیٖز آسُن ییٚمِچ حٲصِل کَرن وٲلِس قَدر تہٕ مزٕ آسہِ، اگرچہ یہِ اَکھ بۄڈ تحفہٕ آسہِ نہٕ [1].\n\nاَتھ چھِ کینٛہہ اَصٕل سٹاکِنٛگ سٕٹفَرَن خٲطرٕ خیالات [2]:\n1. کینٛڈی تہٕ ٹریٹ\n2. لۄکٕٹۍ گیجٹ\n3. ٹوائلٹریز\n4. مِنی بورڈ گیم یا پزل\n5. بُک مارک\n6. سٹیشنری چیٖز\n7. کی چین\n8. گِفٹ کارڈ\n9. زیورات\n10. سُگتھ سَچٹ\n11. ٹریول سائز بیوٗٹی پروڈکٹ\n12. مِنی پلانٹ\n13. لۄکٕٹۍ کِتابہٕ\n14. آرٹ سَپلای\n15. ہینٛڈ وٲرمَر\n\nیِم چھِ صِرِف کیٚنٛہہ مِثال یِم سٹاکِنٛگ سٕٹفَرَن ہٕنٛدٮ۪ن واریاہن خیالاتَن ہٕنٛدۍ چھِ یِم دٔستیٲب چھِ۔ سٹاکِنٛگ سٕٹفَر ژوٗن وِزِ کٔرِو حٲصِل کَرن وٲلِس ہٕنٛدٮ۪ن دِلچسپیَن تہٕ شوقَن پٮ۪ٹھ غور، سۭتۍ سۭتۍ تِہنٛدِس وٲنٛسہِ تہٕ جِنٛسَس پٮ۪ٹھ تہِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 796, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0011", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was hungry, so he ate quickly.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0012", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wanted to buy a dress, but it was expensive.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0013", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مراجعة الهواتف هذه الأيام من أصعب الأشياء التي يقوم بها المحرر في مجال التقنية، فأنت تتعامل مع عالم من الأجهزة التي أصبحت تتشابه في كل شيء، التصميم و الكاميرا والأداء كلها وصلت لمرحلة من الكمال في عالم الهواتف الذكية.", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 217, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0014", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دۄشوٕنۍ ہٕنٛدۍ یرادٕ ٲسۍ مضبوط۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 31, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0015", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "One may also view the class ReaderLang as the blueprint for determining the meaning of language expressions: int is to tell the meaning of integer literals and add is to tell how to combine the meanings of two argument expressions to obtain the denotation for the addition.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 273, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0016", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فرشتہٕ وسنم ارِنو\nدپنَم بندٕ چُھکھ کوٚہندو\nجوابس روزٮ۪م تھرٕنو\nیا اللہ چُھس شرمندٕ چون", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0017", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They write clearly.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0018", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جواب چھُے نا تگان دیُن۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0019", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا ٲس ودن کرٮ۪کہٕ یژھان دِنۍ مگر خوفہٕ سۭتۍ ٲسۍ یہِ دَم پُھٹۍ گٲمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0020", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اکثر چُھ واریاہ زیادٕ کھین حٲصل یوان کرنہٕ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0021", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can start now, or we can wait for them.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 42, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0022", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فوٹوگرافر بننٕچ تُہٕنٛزِ سفرٕچ شروعات کَرنہٕ خٲطرٕ چھِ یِمَن قدمَن ہٕنٛز مدد:\n1. پنٕنۍ دِلچسپی ژارِو: فوٹوگرافی چھُ دِلچسپی ہُنٛد اَکھ بوٚڈ میدان یَتھ مَنٛز پورٹریٹ، لینڈ سکیپ، وائلڈ لائف، فیشن، سپورٹس، آرکیٹیکچر، سٹریٹ تہٕ باقٕے شٲمِل چھِ۔ یہِ طے کٔرِو زِ کُنہِ قٕسمٕچ فوٹوگرافی چھِ تُہٕنٛدِس سارِوٕے کھۄتہٕ زیٛادٕ دِلچسپی تھاوان، کیٛازِ یہِ کَرِ تُہٕنٛزِ ہیٚچھنَس تہٕ پریکٹسَس رَہنُمٲیی [1].\n2. ساز و سامانَس مَنٛز کٔرِو سرمایہٕ کٲری: فوٹوگرافی خٲطرٕ چھُ اَکھ اَصٕل کیمرہٕ تہٕ مُتعلِقہٕ اِضافی سامان یَتھ مَنٛز لینز، اَکھ مضبوط ٹرایپوڈ، تہٕ میموری کارڈ شٲمِل چھِ۔ تُہٕنٛدِس بجٹَس تہٕ دِلچسپی مُطٲبِق ہیٚکِو تُہۍ ڈی ایس ایل آر، مرر لیس کیمرہٕ، یا اعلیٰ معیارٕکۍ سمارٹ فون کیمرہٕ ژارِتھ [1].\n3. بُنیٲدی کَتھ ہیٚچھِو: فوٹوگرافی ہٕنٛدٮ۪ن بُنیٲدی تصوٗراتَن یَتھ مَنٛز اپرچر، شٹر سپیڈ، آئی ایس او، اِمیج کمپوزیشن، تہٕ لائٹنگ شٲمِل چھِ، تِہنٛدِس سۭتۍ کٔرِو واقفیت [1].\n4. فوٹوگرافی ہٕنٛدٮ۪ن تکنیکن ہُنٛد مطالعہٕ کٔرِو: یہِ چھُ مَشورٕ دِنہٕ یِوان زِ کٔرِو آن لایِن یا آف لایِن فوٹوگرافی کورس۔ تُہۍ ہیٚکِو یوٗنیورسٹیَن، ڈیزائن اِنسٹی ٹیوٗٹَن، یا فوٹوگرافی سکوٗلن نِش اَکھ رَسمی فوٹوگرافی ہُنٛد قابلیت حٲصِل کٔرِتھ۔ کِتابہٕ، فوٹوگرافی میگزین، تہٕ یوٗٹیوٗب ٹیوٗٹوریل چھِ تہِ تُہٕنٛدِس خۄدٕ کَرنہٕ وٲلِس فوٹوگرافی ہُنٛد مطالعہٕ کَرنہٕ خٲطرٕ قٲبِلِ قدر وسٲیِل [1].\n5. باقٲیِدگی سۭتۍ کٔرِو پریکٹس: پنٕنۍ صلاحتہٕ وُچھناونہٕ خٲطرٕ کٔرِو مُختٔلِف سیٹِنٛگَن، کمپوزیشنَن، مضموٗنَن، تہٕ حالتن سۭتۍ تجربہٕ [1].\n6. پنُن پورٹ فولیو بناوِو: فوٹوگرافی ہٕنٛدۍ کٲم یا نوکری حٲصِل کَرنہٕ خٲطرٕ چھُ تُہٕنٛدِس اَکھ مضبوط پورٹ فولیو ضروٗری۔ پنٕنۍ بہترین کٲم ہُنٛد اَکھ پورٹ فولیو بناونہٕ پٮ۪ٹھ کٔرِو کٲم یُس تُہٕنٛدٮ۪ن صلاحتن ہُنٛد رینج چھُ وُچھناوان [1].\n7. ایڈیٹنگ ہیٚچھِو: ایڈیٹنگ چھُ جدیٖد فوٹوگرافی ہُنٛد اَکھ اہم حِصہٕ۔ پنٕنۍ فوٹو ایڈیٹ کَرنہٕ تہٕ بہتر بناونہٕ خٲطرٕ کٔرِو ایڈیٹنگ سافٹ ویئر ی", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1769, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0023", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر کرنل جمال عبدالناصِرن کوٚر پان عرب ازمٕہ کِس نعرس تحت بے اکِہ لٹِہ عرب ملک اِکٕہ وٹٕہ کرنٕچۍ کوٗشِش مگر مصرٕکۍ تٕہ شامٕکۍ عارضی اتحاد بغٲرۍ گٔے نٕہ زیادٕ کامیٲبی حٲصِل۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 172, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0024", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We play games.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0025", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہرنٕنہِ نَینہٕ لوسَم وُچھان\nلۄکہٕ چارَن کرٔنم گرایے\nأرنٮ۪ن گاہ ژلٮ۪م وِرنٮ۪ن وُچھان\nیاوُن سوٗر تہٕ بُڈے بایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 109, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0026", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "United States writer of poems and plays about racial conflict (born in 1934).", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 77, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0027", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "۱۹مِہ تٕہ ۲٠ مِہ صدی منٛز اوس اردو زبان تٕہ ادب ترقی پٮ۪ٹھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0028", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ سلامُن گرم خوٗن ثریا سٕنٛدٮ۪ن پدٮ۪ن بوسہٕ کرنہِ لوٚگ أہندِس وجودس لٔج دٕنن۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 83, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0029", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سارنی خٲطرٕ پرنَس قٲبِل", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0030", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژےٚ آوٕے نہٕ میون لڑایو نِش لوٚب روزن پسند۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0031", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "منشیاتَن خٕلاف کریک ڈاؤن جٲری تھٲوِتھ کٔر سرینگر پولیسَن این ڈی پی ایس ایکٹَس تحت 20 لَچھن رۄپین ہٕنٛز غٲر منقولہ جائیداد ضبط۔\nپُلسہٕ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سری نگر پولیسَن چھےٚ این ڈی پی ایس ایکٹَس تحت تقریباً 20 لَچھن رۄپین ہٕنٛز أکِس کنالس پٮ۪ٹُ ترٛےٚ پۅہر رہٲیشی عمارت منسلک کٔرمٕژ۔\nتٔمۍ ووٚن زِ یہِ جایداد چھےٚ شال ٹیننگ کِس روزَن وٲلِس غلام محمد بٹ سٕنٛدِس نیچوِس فیاض احمد بٹ سٕنٛز یُس شال ٹینِگٕکِس روزَن وٲلِس بدنام ڈرگ ڈیلر منظور احمد بٹ سُنٛد مول چھُ۔\nتٔمۍ ووٚن زِ مُلزِم چھُ پامپور پولیس تھانس منٛز ایف آئی آر نمبر 98/2025 تحت درٕج این ڈی پی ایس ایکٹ کٮ۪ن مُتعلقہٕ دفعاتن منٛز مُلوث۔\nترجمانَن ووٚن زِ تٔحقیٖقاتَس دوران گوٚو یہِ ثٲبت زِ یہِ جایداد ٲس منشیاتٕچ تجارت ذٔریعہٕ حٲصِل کرنہٕ آمٕژ۔\nتٔمۍ ووٚن زِ یِمَن نتیجَن پٮ۪ٹھ عمل کٔرِتھ چُھ مجاز اتھارٹی این ڈی پی ایس ایکٹ کِس دفعہٕ 68-F تحت ضبطی کرنُک حُکُم جٲری کوٚرمُت۔\nتٔمۍ ووٚن زِ اٹیچمنٹٕچ کاروٲیی چھےٚ ایگزیکٹوو دٔسۍ انجام دِنہٕ یِوان۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 913, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0032", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "محلس أندۍ پٔکۍ اوس سٮ۪ٹھاہ وسیع لان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0033", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بیٚیہِ تہٕ بیٚیہِ اوس اژدھا سٕنٛدۍ پٲٹھۍ زہرٕ برٕتۍ شاہ والان تہٕ کھالان شسترٕ چمکییہِ بیٚیہِ ہوہس منٛز والان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 110, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0034", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یتھ واوٕ ہالے ژونگ کُس زالے\nتِلہٕ کنہِ زالٮ۪س علم تہٕ دیٖن\nپرٛکتھ ترٲوِتھ سۄ کتھ پالے\nسورُے علم چُھس الف لام میم\nبوزتو ہینٚدۍ فاقن کران اُلنگنٕے\nاوم پن گٔنڈِتھ کھٮ۪ن مَن پٔشی\nالہٕ پلہٕ کھٮ۪تھ چٮ۪تھ نٮ۪بر ڈُلگٕنے\nہا بمہٕ سادو یِمہٕ روزِ کِژَھے", "domain": "poetry", "length_bucket": "long", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 242, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0035", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اتھ دوران چِھ شانتی بھوشن تٕہ پرشانت بھوشن سٕندِ استعفاء دِنٕچ منگ بڈیامٕژ کیازِ کِہ دلِۍ ُپکیٖس کِہ طرفٕہ چِھ سی ایف ایس ایل رپۄٹ نُن کڈنٕہ آمُت یتھ منز وننٕہ چُھ آمُت زِ شانتی بھوشن سٕندِ کتھ باتھ پٮ۪تھ بناونٕہ آمٕژ سی ڈی سۭتۍ چُھنٕہ چھیڈ چھاڈ کرنٕہ آمٕژ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 257, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0036", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَگہٕ مل ژوٚلُے ژےٚ تَنے\nملہٕ بانگ شٕننہِ دراوٕ\nنکھہٕ بار وسی خفتَنے\nہے زُوٕ مرُن موٚٹھُے کَوے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0037", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was hot, and the sun was bright.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 35, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0038", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توبہٕ یوٚد کرَکھ ییٚمہِ بۄہہٕ سرٕ ترَکھ\nتوبہٕ کرُن چھے تارٕوٕنۍ ناو\nتوبہٕ رستہِ پانو تتہِ کِتھہٕ اوٚبرکھ\nییٚتہِ چھے تۭر تہٕ وُشُن واو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 133, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0039", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٲرۍ مٔندۍ وٕٹھ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0040", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جٔنوٗبی کٔشیٖرِ ہِنٛدِس کُلگام ضِلعہٕ کِس دَمہال ہنٛجی پورہ علاقس منٛز نار لگنہٕ سۭتہِ گٔیہِ ترٛےٚ رِہٲیشی گَھرٕ زالنہٕ۔\n\nنار تہٕ ہنگٲمی محکمہٕ کِس أکِس اہلکارَن ووٚن زِ بۄموارِ دۄہ شامَس لوٚگ کُلگام کِس دمہال ہنجی پورہ علاقَس منٛز أکِس گَرَس منٛز نار تہٕ لٔگِتھ زٕ گَرٕ۔\n\nتٔمۍ ووٚن زِ اطلاع مِلنہٕ پتہٕ ووت فائر ٹینڈر موقعَس پٮ۪ٹھ تہٕ کٔرٕن نار قوبوٗ منٛز۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 357, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0041", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He sees a cat.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0042", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالٕنۍ وُٹھ ٲسۍ مکژِ ہٕنٛدٮ۪ن رتہٕ پھیرٮ۪ن لٲرِتھ گٲمٕتۍ تہٕ نظرٕ آسس ثریا سٕنٛدِس جسمس پٮ۪ٹھ أکِس آبہٕ پھیٖرِس پٮ۪ٹھ درٕ لجمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0043", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کاؤنٹر انٹیلی جنس کٔشیٖرِ کٔر وادی کٔشیٖرِ منٛز سمٲجی سرگرمیَن ژھایہِ کٲم کرن وٲلِس أکِس مبینہ دہشت گرد سپورٹ نیٹ ورکَس خٕلاف اکھ بٔڈ کاروٲیی تہٕ ترٛٲوِکھ اَکی وِزِ واریاہَن ضِلعن منٛز چھاپہٕ۔ یہِ عمل چھُ قوم دشمن عناصرن خٲطرٕ اکھ فٲصلہٕ کُن دھچکا قرار دِنہٕ یِوان۔\nسی آئی کیس مُطٲبِق آیہِ یہِ کاروٲیی ایف آئی آر نمبر 03/2023 کِس سلسلَس منٛز کرنہٕ، یُس پُلیٖس تھانہٕ سی آئی کے سرینگرَس منٛز تعزیرات ہند کِس دفعہٕ 505 تہٕ 153-A سۭتۍ سۭتۍ غٲر قونوٗنی سرگرمین (روک تھام) ایکٹ (یوٗ اے پی اے) کِس دفعہٕ 13 تہٕ 18 ہس تحت درٕج کرنہٕ آمُت چھُ۔ این آیی اے ایکٹس تحت کٔرۍ سرینگر عدالتٕکۍ خصوٗصی ججَو کٔر چھاپَن باپتھ رسمی طور تلاشٕکۍ وارنٹ جٲری۔\nتٔحقیٖقاتَس دوران چھےٚ خفیہ زانکٲری سۭتۍ پتہ لگان زِ جموں و کشمیرَس منٛز چھِ کینٛہہ نفر سوشل میڈیا، انسٲنی حقوق، ماحولیٲتی تحفظ، تہٕ زنانَن بااختیار بناونہٕ کٮ۪ن پلیٹ فارمَن ہُنٛد استعمال کران یِمو سۭتۍ ہندوستانٕچہِ خۄدمختٲری خطرٕ چھُ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 871, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0044", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خواجہ طاروقی صٲب اوس شہرُک اکھ رٮٔیس تہٕ قٲبلِ عزت۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 51, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0045", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It makes sound.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0046", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پُلیٖسن چُھ ووٚنمُت زِ حِفاظتی فوجن چُھ جٔنوٗبی کٔشیٖر کِس شوپِیان ضِلعس منٛز زٕ مشتبہ نفر گِرِفتار کٔرِمٕتہِ تہٕ یِہنٛدِ قبضہٕ منٛزٕ ہتھیار تہٕ گولہٕ باروٗد برآمد کوٚرمُت۔ شوپیاں پولیسَن کٔر ‘ایکس’ پٮ۪ٹھ أکِس پوسٹہٕ ذٔریعہٕ معلوٗمات فراہم یَتھ منٛز وَنُن چھُ زِ ‘دہشت گردی خٕلاف أکِس اَہَم آپریشنَس منٛز کٔر ایس او جی شوپیان، سی آر پی ایفٕچ 178 بٹالین تہٕ فوجٕچ 34 آر آر یَن پٮ۪ٹھ مشتمل ٹیمَن أکِس چیک پوسٹَس پٮ۪ٹھ زٕ مشتبہ افراد گِرِفتار ۔ تِمَو ووٚن زِ تلٲشی دوران آیہِ یِہنٛدِ قبضہٕ پٮ۪ٹھٕ ہتھیار تہٕ گولہٕ باروٗد برآمد کرنہٕ، یِمَن منٛز 4 گرینیڈ، 2 پستول، 43 راؤنڈ تہٕ باقی مُجرِمانہٕ سامان شٲمِل چھِ۔ پوسٹَس منٛز چھُ ذِکِر کرنہٕ آمُت زِ اَتھ مُتعلِق چھُ اکھ کیس درٕج کرنہٕ آمُت، تہٕ تحقیقات چھِ شُروٗع گٔمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 714, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0047", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لفظ ‘سیکولرازم’ چھُ آیین کِس بُنیٲدی ڈھانچُک حصہٕ قرار دِتھ سپریم کورٹَن ژٔنٛدٕروارِ دۄہ ووٚن زِ واریاہ فٲصلہٕ چھِ یِم یہِ واضح کران چھِ زِ یہِ چھُ اکھ غٲر متغیر حصہٕ۔ اشونیَن کوٚر کُمار اپادھیائے بوزنہٕ وِزِ یِژھہِ راے ہُنٛد اِظہار۔\nبنچ ووٚن زِ واریاہ فٲصلہٕ چھِ یِمَن منٛز سپریم کورٹَن یہِ قرار دِیُت زِ ‘سیکولرازم’ چھُ بنیٲدی ڈھانچُک حصہٕ تہٕ درحقیقت چھُ اتھ بنیٲدی ڈھانچہٕ کِس غٲر تبدیل شدٕ حصُک درجہٕ دِنہٕ آمُت۔\nجسٹس کھنہ سٕنٛزِ سربرٲہی منٛز بیٚنچ ووٚن زِ \"اگر أسۍ آینس منٛز استعمال گژھن وٲلۍ ‘مساوات تہٕ بھائی چارٕکۍ حق’ لفظن سۭتۍ سۭتۍ حصہٕ III تحت بُنیٲدی حقوقن وُچھِو، تیٚلہِ چھُ یہِ واضح پٲٹھۍ ظٲہِر کران زِ سیکولرازمس گژھہِ ٲییٖنٕچ اکھ اَہَم خصوٗصیت ماننہٕ یِنۍ”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 674, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0048", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برف چھُ شُرٮ۪ن خٲطرٕ رٮ۪تہٕ کولَس منٛز مزٕ کَرنٕچ واریاہ سرگرمی پیش کَران۔ شُرٮ۪ن خٲطرٕ چھِ کینٛہہ مزٕ دار سرگرمی یِم برفُک مزٕ ہیٚکن ہیٚتھ:\n\n1. سَنوبال لڑٲیی: اَکھ دوستانہٕ سَنوبال لڑٲیی چھُ اَکھ کلاسِک رٮ۪تہٕ کولُک کھیل یُس گھنٹہٕ بٕدۍ تفریح فراہم کٔرِتھ ہیٚکہِ۔ یقیٖنی بَنٲوِو زِ تِمن ہیٚچھٲوِو زِ کِتھ پٲٹھۍ چھِ سَنوبال بناونہٕ یِوان تہٕ تِم کِتھ پٲٹھۍ چھِ ژھنٛڈنہٕ یِوان تاکہ تِمن آسہِ نہٕ زَخم [2].\n2. سَنومین بناوُن: سَنومین یا باقٕے بَرٕفٕچ مُجَسَمہٕ بناوِتھ کٔرِو تخلیقی صلاحیتَن ہُنٛد حوصَلہٕ اَفزٲیی۔ اِضٲفی مزٕ خٲطرٕ کٔرِو ٹوٗپۍ، سکارف تہٕ گاجرٕچ نَک چھُک اِستعمال [2].\n3. سَنو اینجل: شُرۍ ہیٚکن بَرٕفَس منٛز لیٹِتھ تہٕ پنٕنۍ بانہٕ تہٕ زنٛگہٕ ہلاوِتھ اینجل شکلہٕ بناوِتھ سَنو اینجل بناوِتھ [2].\n4. سَنو کیسل: کینٛہہ شُرٮ۪ن ہٕنٛدۍ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1394, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0049", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بدن اوسُس بوٚرُت سروٕ ہیوٗ قد سۄ ٲس دوری حُسنٕچ پٔری باسان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0050", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غرض حُسن و شبانچٕ پٔری ہِش زول مال زَن تہِ نوش لب۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0051", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سیکورٹی فورسَو کوٚر بۄموارِ دۄہ شامس شُمٲلی کشمیر کِس بانڈی پورہ ضلعس منٛز ترٛےٚ نَفر گِرِفتار تہٕ تِہنٛدِ قبضہٕ نِش ہتھیار تہٕ گولہٕ بارود برآمد کٔرِتھ۔ حکامَو وون زِ حِفاظتی فورسَو کٔر بۄموارِ دۄہ شامَس بانڈی پورہ کِس أکِس چیک پوسٹ پٮ۪ٹھ ترٛےٚ نَفر گِرِفتار۔ تِمَو ووٚن زِ مشکوُکو افرادَو کٔر حفاضتی اہلکارَن وُچِھتھ ژلنٕچ کوٗشِش، مگر موقعہٕ پٮ۪ٹھ رٹنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 356, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0052", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نیشنل کانفرنسٕکۍ ترجمان عمران نبی ڈارَن ووٚن زِ پی ڈی پی چھِ موٗجوٗدٕ وقتَس منٛز پنُن پان فٹ تھونہٕ تہٕ پنُن سیاہ ماضِی پردٕ تھونہٕ خٲطرٕ تمام ذٔریعہٕ اختیار کران۔\n\nتٔمۍ ووٚن زِ حقیقت چھِ یہِ زِ جموں و کشمیرٕک لوکو چھِ کلما دعوت پارٹی رَد کٔرمٕژ تِکیازِ امہِ سۭتۍ چھِ نہٕ صرف بی جے پی یَس جموں و کشمیرُک خصوصی درجہٕ چھیننَس منٛز مدد بلکہِ تٲریٖخی ریاست تہِ بنییہِ مرکزی زیر انتظام علاقہٕ۔\n\nتٔمۍ ووٚن زِ محبوبہ مفتی سٕنٛز عمر عبداللہ حکومتس پٮ۪ٹھ لگاتار تنقید ٲس نہٕ حٲران کَران تِکیازِ تٔمِس نِش اوس نہٕ امہِ ورٲے کیٚنٛہہ تہِ", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 525, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0053", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can play now, or we can rest.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 32, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0054", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آرچی میننٛگ چھُ اکھ امریکی سٲبقہٕ پیشہٕ ور فٹ بال کھلٲڑۍ یُس نیشنل فٹ بال لیگ (این ایف ایل) منٛز 13 سیزنَن تام نیو اورلینز سینٹس سۭتۍ کوارٹر بیک اوس۔\n\nمیننٛگَن کٔر ڈریو، مسیسیپی منٛز ڈریو ہائی سکولَس منٛز تٲلیٖم حٲصِل۔ تٔمۍ کٔر پنٛنِس سکولَس منٛز فٹ بال، باسکٹ بال، ٹریک تہٕ بیس بالَس منٛز شاندار کارکردٕگی۔\n\nتٔمۍ کٔر 13 وری وٲنٛسہِ منٛز ورسِٹی بیس بال ٹیمَس منٛز شروٗعات، تہٕ اٹلانٹا بریوزَن کٔر تٔمِس پنٛنِس سینئر سیزن پتہٕ ڈرافٹ۔ میننٛگَن کٔر آکسفورڈَس منٛز یونیورسٹی آف مسیسیپی منٛز تٲلیٖم حٲصِل تہٕ اوس ترٛیٚن ؤریَن تام اولے مس منٛز سٹارٹنگ کوارٹر بیک۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 557, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0055", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نُندٕ سہزٕکہِ آپی لالَے\nژےٚ لالس مۄل اوس کوٗتو\nیہِ لیوکھمُت پیٚوُوے فالَے\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0056", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لرزٕ تہٕ خوفہٕ کِنۍ ٲس یہِ کنہِ ہٕنٛز مۄرٕژ زَن تہِ روٗزِتھ گٲمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 66, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0057", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِتھے کِنۍ چِھ امیتا بھ گھوش ، ارون دھتی راۓ تہٕ مہا شویتا دیوی تہِ پنٛنٮ۪ن تحریٖرَن منٛز عالمی ماحولٔکۍ مسلہٕ موضوٗع بنٲوۍ مٔتۍ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 129, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0058", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بارہمولہ ضِلعہٕ اِنتِظامیہَن چھُ میڈیا شناختُک غلط استعمال تہٕ نقلی صحافتُک بڑوُن رُجحان رُکاونہٕ خٲطرٕ مقٲمی صحافیَن ہٕنٛز سند تہٕ تصدیق کرنُک عمل شُروٗع کوٚرمُت۔ اَتھ سلسلَس منٛز چھُ ڈِسٹرکٹ انفارمیشن آفیسر سٕنٛدِ دفتر طرفہٕ اکھ باقاعدٕ حُکُم جٲری کرنہٕ آمُت، یَتھ منٛز ضِلعَس منٛز کٲم کَرن وٲلۍ تمام صحافیَن ہدایت چھُ دِنہٕ آمُت زِ تِم کٔرِن پنٕنۍ تفصیٖل تہٕ سند سَتن دۄہَن انٛدر دٲخل ۔\nیہِ کاروٲیی چھےٚ جوائنٹ ڈائریکٹر آف انفارمیشن، کشمیر سٕنٛدِس حُکمَس تحت کرنہٕ یِوان۔ حُکمَس منٛز چھُ وننہٕ آمُت زِ تمام میڈیا اہلکارَن چھےٚ پنٕنۍ تفصیٖل بارہمولہ انفارمیشن آفسَس منٛز جمع کرٕنۍ۔\nسرکٲرۍ بیانَس مُطٲبِق چھُ اَمہِ اقدامُک مقصد ‘صحافتُک تقدس برقرار تھاوُن’ تہٕ جعلی صحافیَن ہُنٛد بڑوُن مسلہٕ رُکاوُن، یُتھ زن صرف جٲیز تہٕ تصدیق شُدٕ میڈیا اہلکار ہیٚکن ضِلعَس منٛز پنٕنۍ پیشہٕ ورانہٕ فرائض انجام دِتھ ۔\nحُکُم چھُ یہِ تہِ واضح کران زِ صِرِف تِم صحافی یِم ڈِسٹرکٹ انفارمیشن آفس کہِ ذٔریعہٕ ‘رسمی طور تصدیق شُدٕ’ چھِ، تِمنٕے یوت چُھ سرکٲرۍ تقریبن، پریس کانفرنسَن تہٕ باقٕے سرکٲرۍ تقریبن منٛز شِرکت کرنُک اجازت ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 1008, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0059", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دارالحکومت سرینگر تہٕ وادی کشمیر کٮ۪ن باقی مٲدٲنی علاقن منٛز آو موسمٕچ گۄڈٕنِچ شین ییٚمہِ سۭتۍ جُمعہ دۄہ دُپہرَس وادی کٮ۪ن مٲدٲنی علاقن منٛز شیٖن شروع گژھنہٕ کِنۍ لوٗکَن خوشی ہُنٛد اظہار گوٚو، ییٚمہِ کہِ وجہ سۭتۍ پوٗرٕ وادی منٛز سفید تہٕ جمع گٔیہِ۔\n\nرپورٹَو مُطٲبِق آو کُلگامَس منٛز ترٛےٚ انچ، پُلوامہَس منٛز زٕ انچ، پہلگامَس منٛز ژور انچ، قازیگنڈَس منٛز پانٛژھ انچ، اننت ناگَس منٛز ژور انچ، سری نگرَس منٛز اکھ انچ، چرار شریفَس منٛز ترٛےٚ انچ، یسمرگَس منٛز ژور انچ تہٕ شوپیانَس منٛز زٕ انچ شیٖن رِکارڈ کرنہٕ آمُت۔\nشُمٲلی کٔشیٖرِ ہِنٛدِس بارہمولہ، سوپور، پاٹن، بانڈی پورہ، سمبل تہٕ شادی پورس منٛز تہِ چُھ زٕ پیٚٹھٕ ترٛےٚ اِنٛچ شیٖن رِکارڈ کرنہٕ آمُت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 649, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0060", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You drink water.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0061", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ آبہٕ پھیوٚر تہِ اوس ثریا سٕنٛدۍ پٲٹھۍ روٹہٕ گوٚمُت۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0062", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He goes to work.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0063", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غٲفلو تیٚلہِ گژھکھ حٲرانس\nییٚلہِ پانس تھکی دِٮ۪ہہ\nکیاہ کرٔۍ زِبل یِتِھس شیطانس\nییٚمۍ ہیٚتھۍ سارِ جہانٕکۍ پرٛہہ\nکُنُے نِنَے ییٚلہِ اند مٲدانس\nأرۍ نَس پانس پالنَے پرٛہہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 167, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0064", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر دروازس نکھہٕ وٲتِتھ رُکیوو بیٚیہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0065", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔشۍ زَن پوٚکُس تُنزریے\nکَتھ دِنم اُپہاریے\nؤنۍ ونت نُندٕ سَنزٕیے\nژٮ۪تس بفن ہاریے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0066", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سالانہٕ شری امرناتھ جی یاترا کِس مدنظر چھِ اننت ناگ پولیسَن واریٛاہَن علاقَن منٛز ڈرونس چلاونَس پٮ۪ٹھ عارضی طور پابٔنٛدی لگٲومٕژ۔ یہِ چھُ قٲبلِ ذِکر زِ شری امرناتھ جی یاترا، یوٚس 38 دۄہَن پٮ۪ٹھ محیط چھِ، یِیہِ 3 جولائی شُروٗع تہٕ 9 اگست رکشا بندھن کِس موقعس پٮ۪ٹھ ختٕم۔ یہِ مقدس زیارت گژھِ 48 کلومیٹر نونوان پہلگام وتہٕ تہٕ 14 کلومیٹر بالتال وتہٕ کٮ۪و روایتی وتہٕ پٮ۪ٹھ بیک وقت شروع، تہٕ لیفٹیننٹ گورنر منوج سنہا سوزِ زائرین ہُنٛد گۄڈنیُک جَتھ 2 جولائی جموں کِس بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ کشمیر۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 496, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0067", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جان وین ہوٲیی اَڈٕ چھُ 18601 ایئرپورٹ وے، سانتا اینا، سی اے 92707، یو ایس اے [1] پٮ۪ٹھ واقع۔\n\nیہِ چھُ اورینٛج کاؤنٹی ہُنٛد وٲحِد تجٲرتی ہوٲیی اَڈٕ، تہٕ یہِ چھُ گریٹَر لاس اینجلس علاقس خٔدمات فراہم کَران۔ یہِ بین الاقوٲمی ہوٲیی اَڈٕ چھُ لاس اینجلس شَہَر کِس جنوٗب مشرِقس منٛز تَقریٖبَن 15 میٖل دوٗر تہٕ ڈِزنی لینڈ ریزورٹَس نِش تَقریٖبَن 3 میٖل جنوٗبَس منٛز واقع۔ تُہۍ ہیٚکِو اَتھ ہوٲیی اَڈس مُتعلِق زیٛادٕ مَعلُوٗمات اَتھ کِس [ویب سٲیٹَس] پٮ۪ٹھ لٔبِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 451, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0068", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا یتُھے جمالس نکھہٕ وٲژ سۄ گٔیہِ ہے بُنگہٕ تہٕ روٗزٕس وُچھان تکیازِ تنہٕ اوس واریاہ کال گوٚمُت ینہٕ أہٕنٛز أچھ ترسان آسہٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 127, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0069", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She closes her eyes.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 20, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0070", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "What has it learn that children need formed?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0071", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "منشیاتٕچ سمگلنگ خٕلاف جنگ جٲری تھوِتھ چھِ جموں منٛز پولیسَن زٕ نفر گرفتار کٔرمٕتۍ تہٕ یِمَن نِش چھِ ممنوعہ ہیروئن ہِش چیز برآمد کٔرمٕتۍ۔\nأکِس بیانَس منٛز تفصیٖل دِوان ووٚن پُلیٖسٕکۍ ترجُمانَن زِ پُلیٖس تھانہٕ آر ایس پوٗرا ہٕنٛدِ اکہِ ٹیمَن رُکٲو پبلک ریزورٹ چوہلاہَس نزدیٖک ناکَس دوران چک اسلم پٮ۪ٹھٕ آر ایس پورہ کُن یِنہٕ واجیٚنۍ جے کے 02 اے ایچ-1456 نمبرَس تحت اکھ آلٹو گاڑِ، ییٚمۍ ناکا وُچھِتھ ژلنٕچ کوٗشش کٔر۔\nتٔمۍ ووٚن زِ گاڑِ منٛز سوار دۄن نفرَن ہٕنٛز شناخت آیہِ دھیرج چودھری عرف جانو ایس او جنک راج تہٕ شبھم کمار سٕنٛدِ گھرا رام آر او چوہالا ناوٕ سۭتۍ کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 565, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0072", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "All throughout the book, Barry introduces excerpts from Bishop's poems and archival images.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0073", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وۄنۍ چھِ یمہٕ ایپ أکِس وٲحد تہٕ آسان پورٹلَس منٛز ضم کرنہٕ آمٕتۍ یُس زن الیکٹرانک چُھ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 87, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0074", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بَچَن چھُ ثقافتی، سمٲجی تہٕ خاندٲنی ماحولَن سۭتۍ واریاہ اثر پٮ۪وان یَتھ مَنٛز تِم بَڈان چھِ تہٕ ہیٚچھان چھِ [1][2]. یَتھ مَنٛز مُختٔلِف تہٕ ثقافتی پس منظر اَکھ شُرِس کِتھ پٲٹھۍ ترقی دِتھ ہیٚکہِ، تِمَن کٮ۪ن طٔریٖقَن ہُنٛد ذِکِر چھُ یِتھ:\n1. شناختٕچ تشکیل: اَکھ شُرِس مُختٔلِف ثقافتن سۭتۍ تعرُف چھُ تِہنٛدِس شناختٕچ حِساسیتَس مَنٛز اِضافہٕ کَران۔ شُرۍ چھِ پنٛنِس خاندانس تہٕ برادری نِش پنٛنِس ثقافتی وراثت، اقدار، رٮ۪وایت تہٕ زبانَس مُتعلِق ہیٚچھان۔ تِم چھِ پنٛنِس ثقافتی وراثتَس سَمجِتھ پنُن تہٕ تعلقُک اَکھ مضبوط حِساسیت پٲدٕ کَران [1].\n2. زبانٕچ ترقی: یِم شُرۍ مُتعدِد زبانَن ہٕنٛدِس ماحولَس مَنٛز بَڈان چھِ، تِم چھِ واریاہ زبانہٕ سَمجِتھ تہٕ کَتھ کَران۔ اَتھ سۭتۍ ہیٚکہِ تِمن علمی ترقی، رٲبطہٕ کَرنٕچ صلٲحیَت تہٕ سمٲجی تعامُلَس مَنٛز مدد مِلِتھ [1].\n3. سمٲجی صلاحتہٕ: مُختٔلِف ثقافتن مَنٛز بَڈَن شُرٮ۪ن چھِ سمٲجی صلاحتہٕ بَڈِتھ آسان، یَتھ مَنٛز تِم سَمٲجَس مَنٛز پرٛٮ۪تھ کٲنٛسہِ خٲطرٕ اِحترام، ہمدردی تہٕ روادٲری ہیٚچھان چھِ۔ مُختٔلِف پس منظرَن ہٕنٛدٮ۪ن لوٗکن سۭتۍ رٲبطہٕ کَرنَس سۭتۍ چھِ شُرۍ اِختِلافات قبوٗل کَران تہٕ تِمن اِحترام کَران تہٕ مُختٔلِف سمٲجی ماحولَن مَنٛز کٲم کَران [2].\n4. ثقافتی اقدار تہٕ عقیدٕ: اَکھ مُختٔلِف ثقافتی پس منظر چھُ خاص عقیدَن تہٕ اقدارَن سۭتۍ یِوان۔ مُختٔلِف ثقافتی پس منظرَن سۭتۍ تعرُف کَرَن شُرۍ ہیٚکَن یِمَن عقیدَن تہٕ اقدارَن مَنٛزٕ کیٚنٛہہ اِختیار کٔرِتھ یِم تِمن ہٕنٛدِس اخلاقی ترقی تہٕ فٲصلہٕ کَرنٕچ صلٲحیَتَس پٮ۪ٹھ اثر کَران چھِ [1].\n\nتَمہِ وُجوٗد، یہِ چھُ ضروٗری زِ اَکھ شُرِس ترقی پٮ۪ٹھ مُختٔلِف تہٕ ثقافتی پس منظرُک اثر ہیٚکہِ واریاہَن عواملَن پٮ۪ٹھ مُنحَصِر آسِتھ، یَتھ مَنٛز شُرِس ہُنٛد مزاج، مُختٔلِف ثقافتن سۭتۍ تعرُف، تہٕ تِمن ہٕنٛدٮ۪ن دیکھ بھال کَرن والٮ۪ن تہٕ برادری ہٕنٛدۍ رَوِیہٕ شٲمِل چھِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1644, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0075", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt happy, so I smiled.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 26, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0076", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can choose tea or coffee, and I will order.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 47, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0077", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أہٕنٛز نظر پیٚیہِ رشیدس پٮ۪ٹھ یہ لڑکی ٲس واریاہن لڑکن تہٕ لڑکین منٛز تھدِ تھدِ نعرٕ دِوان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0078", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مایِن کرافٹ چھُ اَز تام ساروٕے کھۄتہٕ زیٛادٕ فروخت گژھَن وٲلۍ وِڈیو گیم۔ یہِ چھُ اَکھ سینڈ باکس گیم یُس موجینٛگَن مئی 2009 ہَس منٛز پی سی، موبایِل تہٕ کنسولَن سۭتۍ واریاہن پلیٹ فارمن خٲطرٕ جٲری کوٚرمُت۔ مایِن کرافٹَن چھِ تمام پلیٹ فارمن پٮ۪ٹھ 238 مِلین کھۄتہٕ زیٛادٕ کاپی فروخت کٔرمٕژ۔\n\nمایِن کرافٹَس منٛز چھِ کھلٲڑۍ اَکھ بلاکی، پروسیجرل طور پٮ۪ٹھ تیار کَرنہٕ آمُت، 3D دُنیاہ دٔریٲفَت کَران یَتھ منٛز اَنٛتھہٕ نہٕ وٲلۍ علاقہٕ چھِ۔ کھلٲڑۍ ہیٚکَن خام مال دٔریٲفَت کٔرِتھ تہٕ کٔڈِتھ، اوزار تہٕ چیٖز بناوِتھ، تہٕ ڈھانچہٕ، زٔمیٖنی کٲم تہٕ مَشیٖن بناوِتھ۔ کھلٲڑین چھُ زِندٕ روزنہٕ تہٕ پنٕنۍ دُنیا بناونہٕ خٲطرٕ باقٕے مخلوقَن سۭتۍ دوستی کَرُن یا لڑُن۔ یہِ ہیٚکہِ اکیلے یا دوستَن سۭتۍ گِنٛدِتھ۔\n\nگرینٛڈ تھیفٹ آٹو V تہٕ ای اے سُنٛد ٹیٹرِس چھِ صِرِف باقٕے وِڈیو گیم یِمَن 100 مِلین کھۄتہٕ زیٛادٕ کاپی فروخت گٔمٕژ چھِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 807, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0079", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سلیمہٕ لٔج رشیدس وننہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0080", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہ ہَن کوٚر بودوارِ دۄہ تٲلیٖمی شعبَس منٛز مذہبَس پٮ۪ٹھ مبنی فٲصلَن تہٕ امتیازی سلوک کِس عملَس پٮ۪ٹھ سخٕت ناراضگی ہُنٛد اِظہار تہٕ وونُن زِ ہِنٛدُستٲنۍ ٲییٖن چھُ واضح پٲٹھۍ پرٮ۪تھ شہریَس مذہب، ذات پات یا عقیدٕ علاوٕ برابر حقوٗق دِوان۔ بدقسمتی سان، تٔمۍ کوٚر نوٹ زِ از چھ تعلیم ہیو اکھ حساس تہٕ مقدس شعبہٕ تہٕ مذہبی شیٖشہٕ سۭتۍ وچھنہٕ یوان۔\n\nپوٗنٛچھَس منٛز أکِس عوٲمی اجتماعَس خٕطاب کٔرِتھ ووٚن وزیر اعلیٰ ہن زِ آییٖن چھُ ضمانت دِوان زِ پرٮ۪تھ شہریَس چھُ جمہوٗرِیَتٕکۍ تمام فٲیدٕ تُلنُک حق مگر موجودٕ صورتحال چھِ تتھ مُقامَس تام ووتمُت زِ میڈیکل کالج ہِوۍ اعلیٰ اِدارٕ تہِ چھِ مذہبی بنیادس پٮ۪ٹھ امتیازی سلوکُک مُظٲہرٕ کران۔ تٔمۍ ووٚن افسوس سان زِ از چھُ یہِ وننہٕ یِوان زِ مسلمان یا غٲر ہیندِ طٲلب علم گژھن نہٕ میڈیکل کالجَن منٛز آسٕنۍ۔ اگر أسۍ شُرین ہٕنزِ قابلیت نظر انداز کٔرِتھ مذہبس پیٹھ مبنی فٲصلہٕ کرُن شروع کٔرِو، تیلہِ کیا بنہِ امہ ملکُک ٲییٖن؟۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 889, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0081", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہِتَس ہٮ۪تھ کار کٔرۍزے\nاَن ہِتَس راوِرۍ زِ رٮ۪تھ کیا پچھ\nیُس یُتھ کری تس تیُتھ کرٔی زے\nآں لَیہِ پَانژاہ نَہ لَیہِ لچھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0082", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٔدرٕ ہُہِتھ کُس ہیٚکہِ زَن\nنِتھ زوو وَتہِ تھاہ پرٛاکتو\nتام وَل ژَھل کٔرِکھ آسرن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0083", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was sunny, so we went outside.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0084", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہندوستانس منز چھِ خاندٲنی راجِچۍ اکھ اثردار تواریکھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0085", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We make plans.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0086", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt cold, so I wore a jacket.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 32, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0087", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تُہٕنٛدِس گاڈِ ہٕنٛز گیس مایلج بہتر بناوُن ہیٚکہِ تُہٕنٛدِس پٮ۪سہٕ بچٲوِتھ تہٕ تُہٕنٛدِس ماحولیٲتی اثرات کم کٔرِتھ۔ بہتر فیوٗل ایفیشینسی حٲصِل کَرنَس منٛز مدد کَرن وٲلۍ کیٚنٛہہ تجاویز چھِ یِم:\n1. باقٲعِدٕ دیکھ بھال: مینوفیکچرر سٕنٛدِس تجویز کَرنہٕ آمُت سروس شیڈوٗلَس پٮ۪ٹھ عمل کٔرِتھ تھاوِو پنٕنۍ گاڈِ چَنٛگ پٲٹھۍ برقرار۔ باقٲعِدٕ تیل تبدیل کَرُن، ایئر فلٹر تبدیل کَرُن، تہٕ سپارک پلگ چیک کَرُن ہیٚکہِ فیوٗل ایفیشینسی بہتر کٔرِتھ [2].\n2. ٹایَرَن ہُنٛد صٔحیٖح اِنفلیشن: کم ہوا وٲلۍ ٹایَر ہیٚکَن گیس مایلج کم کٔرِتھ۔ پنٕنۍ ٹایَر پریشر باقٲعِدٕ چیک کٔرِو تہٕ تِمن تجویز کَرنہٕ آمٕتۍ سطحَن پٮ۪ٹھ برقرار تھاوِو [1][2].\n3. اِڈلِنٛگ نِش پرہیز کَرُن: ییٚلہِ تُہۍ پارک کٔرِتھ آسِو یا زیٛادٕ وقتس تام انتظار کَران آسِو تیٚلہِ کٔرِو پنُن انجن بَنٛد۔ اِڈلِنٛگ چھُ گیس اِستعمال کَران تہٕ اِخراج پٲدٕ کَران [1][2].\n4. آسانی سۭتۍ ڈرایو کَرُن: تیز ڈرایوِنٛگ، یِتھٕ کٔنۍ زَن تیز رفتار تہٕ سخت بریکِنٛگ، ہیٚکہِ فیوٗل ایفیشینسی نمایاں طور کم کٔرِتھ۔ آسانی سۭتۍ تہٕ آہستہ آہستہ شروٗع کَرنٕچ تہٕ رُکَنٕچ مشق کٔرِو [1][2].\n5. پنٕنۍ رُکَنٕچ وقت مُشخص کَرُن: اگر تُہۍ واریاہ لال بَتہٕ یا زیٛادٕ ٹریفک وُچھِو، تیٚلہِ کٔرِو زیٛادٕ وقتس تام رُکَنَس دوران پنُن انجن بَنٛد کَرنُک خیال [2].\n6. کروز کنٹرول اِستعمال کَرُن: ہائی وے پٮ۪ٹھ، کروز کنٹرول اِستعمال کَرُن ہیٚکہِ اَکھ مُستقِل رفتار برقرار تھاونَس منٛز مدد کٔرِتھ، یُس اکثر اُتار چڑھاوَن وٲلۍ رفتارَن کھۄتہٕ زیٛادٕ فیوٗل ایفیشینٹ چھُ [1][2].\n7. بوجھ کم کَرُن: پنٕنِس گاڈِ منٛزٕ غٲر ضروٗری چیٖزٕ ہٹاوِو، خاص کٔرِتھ بھاری سامان یُس وزن چھُ بَڈراوان تہٕ فیوٗل ایفیشینسی چھُ کم کَران [2].\n8. ایئر کنڈیشنِنٛگ اِستعمال کم کَرُن: ایئر کنڈیشنِنٛگ اِستعمال کَرُن چھُ زیٛادٕ فیوٗل اِستعمال کَران۔ گرم موسمَس منٛز، کٔرِو گاڈِ ہُنٛد وینٹیلیشن سسٹم اِستعمال کَرنٕچ یا کم رفتارَس پٮ۪ٹھ ڈرایو کَرنَس دوران کھڑکی کھولنٕچ کوٗشِش [1][2].\n9. پنُن فیوٗل سسٹم برقرار تھاوُن: باقٲعِدٕ پنُن فیوٗل سسٹم کلوگ یا گَنٛدٕ فلٹرَن خٲطرٕ چیک کٔرِو، کیٚ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1848, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0088", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگر-جموں قومی شاہراہَس پٮ۪ٹھ اکھ طرفہٕ ٹریفک نقل و حرکت، یوٚس وادی کشمیر باقی مُلکَس سۭتۍ جوڑان چھِ، آیہِ ژٔنٛدٕروارِ دۄہ اکہِ دۄہ پتہٕ بحال کرنہٕ۔\nیہِ چھُ یاد یِوان زِ رام بن ضِلعَس منٛز واریٛاہَن جایَن پٮ۪ٹھ مرمت تہٕ مٔزیٖد توسیع کہِ وجہ سۭتۍ ٲس راتھ قومی شاہراہ ٹریفک خٲطرٕ بنٛد کرنہٕ آمٕژ۔\n\nٹریفک حکامَو ووٚن زِ قومی شاہراہَس پٮ۪ٹھ چھِ مُسافِر گاڑٮ۪ن ہٕنٛز اَکہِ طرفہٕ نقل و حرکت بحال کرنہٕ آمٕژ تہٕ گاڑٮ۪ن چھُ ژٔنٛدٕروارِ دۄہ جموں پٮ۪ٹھٕ سری نگر گژھنُک اِجازت دِنہٕ آمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 479, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0089", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She tried hard, but she did not win.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0090", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کٲلۍ ییٚلہِ وسن نالہٕ متہِ ہیٚنم\nگرٛیشن عمل تہٕ کیٛاہ میٛون ناو\nزُوٕ تتھ گٹہِ ییٚلہِ اشدر وسنم\nکۄسہٕ میٲنۍ عمل تہٕ کُس میٛون ناو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 128, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0091", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مارس مارٮ۪م ، تارس تارٮ۪م\nیَارس کھیٛاوٮ۪م ژوٗنٹھۍ تہٕ ٹنگ\nعاصہٕ چُھ اَتھہٕ وول طوٗرس کھارٮ۪م\nبیٚیہِ چُھم مالہِ تریٚیم زنگ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 121, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0092", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وارٕ وارٕ آو رشیدس ہوش تٔمۍ مُژرایہِ لۄتہِ لۄتہِ پنٕنہِ أچھ تَس پیٚیہِ سلیمس کُن نظر تہٕ عجیب حالتس منٛز روٗدُس وُچھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 120, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0093", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "راجستھانس منٛز کوٹہ تہٕ بندی ضلن کین کیہٕن علاقن منٛز چِھ یہٕنز تھوڑ تعداد نظرِ گژھان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0094", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شاید اوس أمۍ آبہٕ پھِرۍ یہِ خوفناک تہٕ المناک منظر ژیوٗنمُت تہٕ جمالٕنۍ درندٕگی ٲسٕن برابر ژیٖنۍ مٕژ جمالنہِ نظرٕ زَن وژھہٕ أتھۍ آبہٕ پھِرِس منٛز تہٕ اتھ آبہٕ پھِرِس منٛز اوس سُہ لاکٹ صاف یوان صاف لبنہٕ یُس ثریاہس نٲلۍ اوس ترٲوِتھ ثریا سٕنٛدِس نٮ۪تھہٕ نٔنِس بدٕنس پٮ۪ٹھ اوس نہٕ اَمہِ لاکٹہٕ ورٲے بیٚیہِ کانٛہہ چیٖز البتہٕ یہِ کینژھاہ اوس تہِ اوسُس خدایہِ سٕنٛدِ طرفہٕ عطا سپُدمُت حُسن خوبصورت سنگِ مرمر ہیوٗ بدن۔", "domain": "novel", "length_bucket": "long", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 414, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0095", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کینٛہہ ٲسۍ یِم گولہٕ اَڈٕ وَتی واپس پولیسس پیٹھ لایان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0096", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر صحت تہٕ طبی تعلیم سکینہ یاتوَن ووٚن زِ شیخ محمد عبداللہ اوس اکھ تھوٚد رہنما ییٚمِس نہ صرف ہندوستانَس منٛز بلکہ پوٗرٕ دُنیاہَس منٛز عزت چھِ یِوان کرنہٕ۔\n\nتٔمۍ ووٚن زِ شیخ صٲبس چھُ جموں و کشمیرٕ خٲطرٕ واریاہ دِیُت۔\nوزیرَن کوٚر برٛسوارِ دۄہ ییٚتہِ صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اظہار۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 297, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0097", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کشمیر کِس بارہمولہ ضلعہٕ کِس جٹی خواجہ باغ علاقَس منٛز سرٛان کران جہلم دٔریاوَس منٛز ڈُبن وٲلِس أکِس نوجوان سٕنٛز لاش آیہِ بۄموارِ دۄہ صبحٲے برآمد کرنہٕ۔ ذٔرایعو ووٚن زِ 6 جولائی دۄہ بارہمولہ کِس جٹی خواجہ باغ علاقس منٛز سرٛان کرنہٕ وِزِ اوس اکھ نوجوان جہلم دٔریاوَس منٛز ڈُبیامُت ، ییٚمہِ پتہٕ ایس ڈی آر ایف، بارہمولہ پولیس تہٕ مقٲمی لوٗکَو بٔڑِس پیمانَس پٮ۪ٹھ تلاشی مہم شُروٗع کٔرمٕژ ٲس۔ تِمَو ووٚن زِ آپریشن روٗد لگاتار جٲری تہٕ بۄموارِ دۄہ صبحٲے 8 بجے آیہِ نوجوان سٕنٛز لاش برآمد کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0098", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was busy, but he helped me.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 30, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0099", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It looks nice.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0100", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پولیسَن کٔر وادی کٮ۪ن تقریباً تمام ضِلعن منٛز ممنوعہ تنظیمہِ جماعت اسلامیس خٕلاف اکھ بٔڑ مربوط کاروٲیی ۔ اَتھ کاروٲیی دوران ترٛٲوۍ پولیس، سپیشَل آپریشنز گروپ، سی آر پی ایف تہٕ باقٕے سیکورٹی ایجنسیَن ہِنٛدیو مُشترکہٕ ٹیٖمو کولگام، اننت ناگ، شوپیان، پلوامہ، اننت ناگ، سوپور تہٕ گاندربل ضِلعن منٛز ہتہٕ بٔدۍ مقامن پٮ۪ٹھ بیک وقت چھاپہٕ\n\nاینٹی غٲر قونوٗنی سرگرمین ہٕنٛدِس ایکٹس تحت آو یہِ آپریشن تَمہِ وِزِ شُروٗع کرنہٕ ییٚلہِ انٹیلی جنس ذرایعَن یہِ اطلاع میٖج زِ جماعت اسلامیٕکۍ کینٛہہ سٲبقہٕ رُکُن تہٕ ہمدرد چھِ مُختٔلِف ناوَن تہٕ سمٲجی تنظیمَن ہٕنٛدِس آڑس منٛز پنٕنۍ سرگرمی دوبارٕ شروع کرنٕچ کوٗشِش کران۔\n\nپولیس ذرایعو مُطٲبِق آیہِ سارِوٕے کھۄتہٕ بٔڑ کاروٲیی جنوٗبی کشمیر کِس کوگام ضِلعَس منٛز کرنہٕ۔ پٔتِمٮ۪ن ژورَن دۄہَن منٛز چھِ پولیسَن 200 کھۄتہٕ زِیٛادٕ مقامَن پٮ۪ٹھ چھاپہٕ ترٛٲومٕتی۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 799, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0101", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عوٲمی مسلن پٮ۪ٹھ احتجاج کرناوٕنۍ ثِھ سی پی ایمُک مِشن۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0102", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They feel sad.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0103", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ورزش تہٕ زیادٕ جسمٲنی ورزش خٲطرٕ چھِ تجویٖز دِنہٕ یِوان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0104", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He likes apples.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0105", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شری امرناتھ جی یاترا خٲطرٕ 6600 کھۄتہٕ زِیٛادٕ زائرینن ہُنٛد کٔہِم قافلہ گوٚو بٹوارِ دۄہ صبحٲے سخت حفاظتی اقداماتن تحت کشمیر کُن روانہٕ۔ سرکٲرِ ذٔرایعو ووٚن زِ بَٹہٕ وارِ دۄہ صُبحٲے گٔے 275 لۄ کچن تہٕ بٔجیٚن گاڑیٚن منٛز 6,639 زائرین بھگت نگر بیس کیمپٕ پٮ۪ٹھٕ کٔشیٖرِ کُن روانہٕ۔ تِمَو کوٚر ذِکِر زِ یِمَن زائرین منٛز چھِ 4,302 جنوٗبی کشمیر کِس ضلعہٕ اننت ناگَس منٛز واقع نُنوان پہلگام بیس کیمپس کُن گژھان، ییٚلہِ زَن 2,337 چھِ وسطی کشمیر کِس ضلعہٕ گانٛدربلَس منٛز واقع بالتال بیس کیمپس کُن گژھان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 496, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0106", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سماجی پریشانی چھُ اَکھ عام ذہنی صحتٕچ حالت یۄس باقین سۭتۍ رٲبطہٕ قٲیِم کَرنَس مَنٛز مُشکل ہیٚکہِ بَناوِتھ۔ سمٲجی پریشانی سۭتۍ مُتٲثِر لوٗکھ ہیٚکَن سمٲجی صوٗرتِ حالَس مَنٛز خوف یا پریشانی ہُنٛد تجربہٕ کٔرِتھ یَتھ مَنٛز تِم باقین دٔسۍ چھِ وُچھنہٕ یِوان، جانٛچنہٕ یِوان، یا یِمن ہُنٛد جٲیزٕ نِنہٕ یِوان، یِتھٕ کٔنۍ زَن نوٚو لوٗکھ مِلُن، عوٲمی کَتھ باتھ کَرُن، یا پارٹِین مَنٛز شٲمِل گژھُن۔\n\nاگر تُہۍ چھِو سمٲجی پریشانی ہُنٛد تجربہٕ کَران، تیٚلہِ چھِ یَتھ مَنٛز کیٚنٛہہ طٔریٖقہٕ یِم تُہۍ پنٕنۍ سمٲجی پریشانی کم کَرنہٕ تہٕ اَتھ پٮ۪ٹھ قابوٗ کَرنہٕ خٲطرٕ اِستعمال کٔرِتھ ہیٚکِو:\n1. پنُن پان سمَجھُن: سمٲجی پریشانی، اَمیُک وجوٗہات، تہٕ علاجَن مُتعلِق ہیٚچھُن ہیٚکہِ تُہنٛدِس پانَس بہتر طٔریٖقہٕ سۭتۍ سمَجھنَس مَنٛز مدد کٔرِتھ۔ کُنہِ تہِ وقتَس مَنٛز کٔرِو یہِ سمَجھنَس خٲطرٕ کُنہِ وقتُک اِستعمال زِ تُہنٛدِس چھُ سمٲجی پریشانی کِیاہ۔\n2. صوٗرتِ حالَن ہُنٛد تجزیہٕ کَرُن: مُشکل صوٗرتِ حالَن ہُنٛد لۄکُٹَن کٲمَن مَنٛز تجزیہٕ کَرنٕچ کوٗشِش کٔرِو، پرٛٮ۪تھ لۄکُٹ حِصہٕ حل کٔرِو، تہٕ زیٛادٕ آرام دہ محسوس کَرنَس پٮ۪ٹھ کٲم کٔرِو۔ مُستقبَلَس مُتعلِق سوچنَس نِش بچنٕچ کوٗشِش کٔرِو، تہٕ لۄکُٹَن کٲمَن پٮ۪ٹھ توجہ دِوِو۔\n3. کٲنٛسہِ سۭتۍ کَتھ باتھ کَرُن: اگر تُہۍ چھِو سمٲجی پریشانی ہٕنٛدٮ۪ن علامَتَن ہُنٛد تجربہٕ کَران، تیٚلہِ کٔرِو اَکھ ایماندارانہٕ کَتھ باتھ کٲنٛسہِ سۭتۍ یُس تُہنٛدِس پٮ۪ٹھ بھروسہٕ کَران چھُ، یِتھٕ کٔنۍ زَن دوست، خاندانی، یا تُہنٛدِس ڈاکٹرَس سۭتۍ۔\n4. موٗجوٗدٕ وقتَس پٮ۪ٹھ توجہ دِوِو: اکثر چھِ پریشانی وٲلۍ لوٗکھ پنٕنٮ۪ن خیالَن ہُنٛد پَتہٕ گُم کَران، ییٚمہِ سۭتۍ سۮٹھاہ خراب صوٗرتِ حال چھِ وُچھنہٕ یِوان۔ لۄکُٹَن کٲمَن پٮ۪ٹھ توجہ دِوِو زِ لوٗکھ کیٚاہ چھِ وَنان تہٕ کِتھٕ پٲٹھۍ چھِ تِم تُہنٛدِس سۭتۍ رٲبطہٕ کَران، بَجٲے اَتھ کِہ تِم چھِ لۄکُٹَن کٲمَن ہُنٛد پَتہ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1656, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0107", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یتھ اندر لاکٹ صاف اوس یِوان لبنہٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0108", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We see a tree.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0109", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "محکمہ موسمیات چہِ پیشن گویی مُطٲبِق چھُ پٔتمہِ 24 گھنٹَن دوران بٔڑِس پیمانَس پٮ۪ٹھ شین پینہٕ پتہٕ وادی کشمیرَس منٛز موسم وارٕ وارٕ بہتر گژھان۔\n\nمُتعلقہٕ محکمہٕ کِس ترجُمانَن ووٚن زِ وادی ہُنٛد موسم روزِ 9 مارٕچ تام خۄشٕک روزنُک اِمکان۔\n\nتٔمۍ ووٚن زِ اَمہِ پتہٕ چھُ وادی منٛز شیٖنُک بیٛاکھ اکھ مرحلہٕ یُس 10 مارٕچ پٮ۪ٹھ 12 مارٕچ تام جٲری روزِتھ", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 343, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0110", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "واریاہ اینیمی سیریز چھِ یِمَن مَنٛز مضبوط زنانہٕ کردار، دِلچسپ دٔلیٖلہٕ، تہٕ مُختٔلِف موضوعات چھِ یِم مُختٔلِف ناظرینَن خٲطرٕ چھِ۔ ییٚتہِ چھِ کیٚنٛہہ مَشہوٗر تہٕ پَسَنٛد کَرنہٕ یِنہٕ وٲلۍ اینیمی یِمَن ہُنٛد مزٕ اکثر کوٗرۍ چھِ تُلان [1][2]:\n1. سیلر مون (بِشوٗجو سینشی سیلر مون)\n2. کارڈکیپٹر ساکورا\n3. فروٹس باسکٹ\n4. پرنسس ٹوٗٹو\n5. اے سائلینٹ وایس\n6. یور لائی اِن اپریل\n7. وُلف چلڈرن\n8. چیہایافوٗرو\n9. وایلیٹ ایورگارڈن\n10. یوری آن آئس\n\nاُمید چھُ زِ یہِ فِہرِست آسہِ مَدَتھگار تہٕ تُہۍ لٔبِو اَکھ اینیمی سیریز یۄس تُہۍ وُچھنہٕ خٲطرٕ پسند کَرو۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 540, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0111", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آنتھِ ذات نیرِہم خٲلِص\nنٔنزِ سندان روٗدُم ہونٛژ\nنکھ شِنے کُس دِیَم دٕہِلس\nبہٕ سُت مٲلِس میون نہٕ کوٗنژھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0112", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It sees nothing.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0113", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیٖنٛژۍ ییٚتہِ زلہٕ منزَے دٔدِی\nکیٖنٛژۍ پھیٖرِتھ آے أگنہٕ سُرٛپہ\nکینژَو ییٚتہِ آرٕ بلہٕ لعل لبٔی\nکیٖنٛژۍ ژٔھرِی آے سنگل دِپہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 125, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0114", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر تعلیم تہٕ صحت سکینہ اِٹوَن کٔر پی ڈی پی یَس پٮ۪ٹھ تنقید تہٕ ووٚنُن زِ یہِ پارٹی چھِ جموں و کشمیر کِس سیاستس منٛز غیر متعلقہ گٔمٕژ تِکیازِ لوکو چھُ یہِ مسترد کوٚرمُت۔ تٔمہِ ووٚن زِ عمر عبداللہ سٕنٛزِ قیادتس منٛز چھےٚ حُکوٗمت لُکن ہِنٛزٕ تمام ضٔروٗرتہٕ پوٗرٕ کرنہٕ خٲطرٕ پابنٛد۔ وزیرَن کوٚر یِمَن خیالن ہُنٛد اِظہار جُمعہ دۄہ وسطی کشمیر کِس بڈگام ضلعہٕ کِس چڈورا علاقَس منٛز أکِس تقریٖبہِ دوران صحافیَن سۭتۍ کَتھ کران۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 421, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0115", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بلوٹوتھ چھُ اَکھ وائرلیس ٹیکنالوجی یۄس ڈیوایسَن جسمٲنی کیبلَن ہٕنٛز ضروٗرت بغٲر کم فاصلَس پٮ۪ٹھ کَتھ باتھ کَرنٕچ تہٕ ڈاٹا بَدلاوُنٕچ اِجازت چھُ دِوان۔ یہِ چھُ عام طور پٮ۪ٹھ سمارٹ فون، ہیڈ فون، سپیکر، کی بورڈ تہٕ باقٕے ڈیوایسَن جوڈنہٕ خٲطرٕ اِستعمال گژھان۔ بلوٹوتھ ٹیکنالوجی چھِ ریڈیو لہرَن تہٕ اَکھ کمیونیکیشن پروٹوکول [1] کِس اُصوٗلَس پٮ۪ٹھ کٲم کَران۔\n\nبلوٹوتھ کِتھ پٲٹھۍ چھُ کٲم کَران، اَتھ مُتعلِق چھُ اَتھ پٮ۪ٹھ اَکھ جٲیزٕ:\n1. **ریڈیو لہرَن ہُنٛد اِستعمال:** بلوٹوتھ چھُ ریڈیو لہرَن ہُنٛد اِستعمال کَران، خاص کٔرِتھ 2.4 GHz ISM (صنعتی، سائنسی تہٕ طبی) فریکوینسی بینڈَس مَنٛز۔ یہِ فریکوینسی بینڈ چھُ غٲر لائسنس یافتہٕ تہٕ بلوٹوتھ س٭تۍ س٭تۍ مُختٔلِف وائرلیس ٹیکنالوجین خٲطرٕ چھُ عالمی سطحَس پٮ۪ٹھ دٔستیٲب۔ یہِ چھُ اَکھ فریکوینسی ہوپِنٛگ سپریڈ سپیکٹرم اِستعمال کَران تاکہ اَکھ فریکوینسی بینڈَس مَنٛز کٲم کَرن وٲلؠ باقٕے ڈیوایسَن ہٕنٛدِ مداخلت نِش بچاوُن [1].\n2. **ڈیوایس ڈسکوری تہٕ پیئرِنٛگ:** ییٚلہِ تُہۍ اَکھ یا زیٛادٕ بلوٹوتھ ڈیوایسَن س٭تۍ جوڈُن چھِو یِژھان، تِہنٛدِس بلوٹوتھ آن کٔرِو تہٕ تِمن کٔرِو اَکھ اَکھس خود بخود ژھانٛڈُن۔ اِبتِدٲیی چھُ پنٛنِس رینجَس مَنٛز ممکنہٕ ٹارگٹ ژھانٛڈنہٕ خٲطرٕ انکوائری میسج بوزناوان۔ ییٚلہِ اَکھ ٹارگٹ ڈیوایس لَبنہٕ چھُ یِوان، تیٚلہِ چھُ پیئرِنٛگ شروٗع گژھان۔ پیئرِنٛگَس دوران چھِ ڈیوایس پیٖن کوڈ یا سیکیورٹی کیز بَدلاوان تاکہ اَکھ مَحفوٗظ کنیکشن قٲیِم کَرنہٕ یِیہِ۔ یہِ قدم چھُ اَتھ خٲطرٕ اَہَم زِ صِرِف اِجازت یافتہٕ ڈیوایس ہیٚکَن جوڈِتھ [1].\n3. **کنیکشن قٲیِم کَرُن:** ییٚلہِ ڈیوایس پیئر گژھان چھِ، تِم چھِ کمیونیکیشن خٲطرٕ اَکھ خاص فریکوینسی چینل (لِنٛک) قٲیِم کَران۔ یہِ لِنٛک ہیٚکہِ مُختٔلِف قٕسمٕکِس ڈاٹا ٹرانسفرَس سپورٹ کٔرِتھ، یِتھٕ کٔنۍ زَن آڈیو سٹریمنٛگ، فایِل شیئرِنٛگ، یا کنٹرول کمانڈز [1].\n4. **ڈِسکنیکٹ کَرُن:** ییٚلہِ ڈاٹا ٹرانسفر گژھان چھُ تہٕ کمیونیکیشنٕچ ضروٗرت چھُ نہٕ روزان، تیٚلہِ ہیٚکَن ڈیوایس اَکھ اَکھس نِش ڈِسکنیکٹ کٔرِتھ۔ یہِ ہیٚکہِ کُنہِ تہِ ڈیوای", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1812, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0116", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "These can help guide you through overcoming and preventing jet lag.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0117", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt sick, so I stayed at home.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0118", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس کُپواڑہ ضِلعہٕ کِس کَرمھورا زچلدرہ جنٛگلی علاقس منٛز گوٚو سیکورٹی فورسَن تہٕ ملی ٹنٹن درمِیان مُقابلَس منٛز اکھ نامعلوم ملی ٹنٹ مارنہٕ۔\nژٔنٛدٕروارِ دۄہ صُبحٲے گوٚو کُپواڑہ کِس کرمہورا زچلدرہ جنٛگلی علاقَس منٛز سیکورٹی فورسَن تہٕ ملی ٹنٹن درمِیان تلاشی کاروٲیی دوران مُقابلہٕ۔\nکشمیر زون پولیسَن ووٚن ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز: \"ہندواڑہ کِس کرمہورا زچلدرہ علاقَس منٛز چھُ اکھ مُقابلہٕ شُروٗع گوٚمُت۔ تٔمۍ ووٚن زِ پُلیٖس تہٕ حِفاظتی دستہٕ چھِ کٲم کران۔\nسرکٲرِ ذٔرایعن ووٚن زِ \"اَتھ مُقابلَس منٛز گوٚو اکھ نامعلوم ملی ٹنٹ مارنہٕ”۔ وۄنٛہِ گوٚو، پُلیٖسن چُھنہٕ وُنکیٚنَس اَمِچ تصدیٖق کٔرمٕژ۔\nامہِ برٛونٛہہ ووٚن ذٔرایعو زِ حِفاظتی فوجن کوٚر کرمہوا زائلڈارا علاقس گیرٕ بٔنٛدی تہٕ ملی ٹنٹن ہِنٛزِ موٗجوٗدٕگی ہِنٛز اطلاع مِلنہٕ پتہٕ کٔرٕن تلاشی مہم شُروٗع۔\nتٔمۍ ووٚن زِ ییٚلہِ تلاشی کاروٲیی ہُنٛد اکھ ٹیم مشتبہ جایہِ نزدیٖک وٲژ، تتہِ ژوٗرِ روزَن وٲلۍ ملی ٹنٹو کٔر اتھ پٮ۪ٹھ گولہِ چلٲوِتھ، ییٚمہِ کِس نٔتیٖجس منٛز یہِ گوٚو۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 939, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0119", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تٔمۍ حضرت میران ریشی\nکرٛڈٕ نفسس سۭتۍ کوٚر نیایے\nپونۍ آژمُن قطرن دَندن\nکر بندن توشہِ خدایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 89, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0120", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اردو نثر۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 9, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0121", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٕہن ہر مو کرَن ہانگل\nژِوٕٮ۪ن گانگل گٔیہِ چِھوٕ مَسے\nزُو ژلہِ نیٖرِتھ باج ہٮ۪نے الکانگل\nژھرِ گورِ پنہٕ نُے ڈُنگل وَسے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0122", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یم پارٹی چھ سڑکہ پٮ۪ٹھ واندب کران تہٕ دلِہ منٛز چھ دوٗستی کران ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 64, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0123", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "By Kate Vidinsky, UCSF News Office | May 20, 2011 Individuals who are treated for cancer during childhood have a significantly higher risk of developing gastrointestinal (GI) complications -- from mild to severe -- later in life, according to a study led by the University of California, San Francisco.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 302, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0124", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تٔمۍ وُن زِ تُہۍ ہیٚکیوٗ نٕہ زٕ قٔسم ہندوستان بنٲوتھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0125", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جٔدیٖد ہندوستٲنی زبانٕہ مثلاً گجرٲتی، ہندی، بنگلہ، مرٲٹھی، سندھی، پنجٲبی ، نیپٲلی بیترِ چِھ سنسکرت پٮ۪ٹھ درٚامژٕ ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0126", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were late, but the meeting had not started.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0127", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر تِم چھِ ہائی کمانُک فٲصلہٕ قبوٗل کرنُک تہٕ پنُن پان اَمیُک پابنٛد قرار دِوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0128", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گاہے ٲسۍ لولہٕ کِس سٔدرس منٛز ژھانٹھ وایان نتہٕ یِرَے گژھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 60, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0129", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سری نگرَس منٛز آیہِ سیزنٕچ بیٛاکھ سارِوٕے کھۄتہٕ سرد رٲژ رِکارڈ، ییٚلہِ زن شوپیاں وادی ہٕنٛز سارِوٕے کھۄتہٕ سرد جاے روٗز۔ رٮ۪تہٕ کالہِ رازدٲنہِ سری نگرَس منٛز چھُ کم درجہ حرارت منفی 2.1 ڈگری سیلسیس رِکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 2.0 ڈگری سیلسیس کم اوس۔ جٔنوٗبی کٔشیٖرِ ہُنٛد شوپِیان ضِلعہٕ اوس وادی ہُنٛد سارِوٕے کھۄتہٕ سرد جاے ییٚتہِ کم از کم درجہٕ حرارت منفی 5.5 ڈگری سیٚلسِیَس اوس۔ وادی ہُنٛد اکھ مشہوٗر سیاحتی مُقام گلمرگَس منٛز چھُ کم درجہ حرارت منفی 3.6 ڈگری سیلسیس ریکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 3.5 ڈگری سیلسیس کم اوس۔\nوادی ہُنٛد بیٛاکھ اکھ مشہوٗر سیاحتی مُقام پہلگامَس منٛز چھُ کم درجہ حرارت منفی 5.3 ڈگری سیلسیس ریکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 4.8 ڈگری سیلسیس کم اوس۔ کپواڑہ ضِلعس منٛز رِکارڈ کرنہٕ آمُت کم درجہ حرارت منفی 2.5 ڈگری سیلسیس تہٕ پٔتمہِ رٲژ منٛز رِکارڈ کرنہٕ آمُت منفی 1.3 ڈگری سیلسیس", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 830, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0130", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "4th جولایی چھُ امریکی شَہرو خٲطرٕ اَکھ بۄڈ تہٕ یادگار دۅہ۔ یَتھ دۅہَس چھُ پنٛنِس خاندانس تہٕ دوستَن سۭتۍ گَرَس منٛز مَناونہٕ خٲطرٕ کیٚنٛہہ بۄڈۍ طٔریٖقہٕ:\n1. پُشِتھ کُن کُک آؤٹ: یہِ چھُ یومِ آزادی مَناونُک اَکھ کلاسک طٔریٖقہٕ، تہٕ یہِ چھُ دوستَن تہٕ خاندانس سۭتۍ نٮ۪برٕ کُن گژھنُک اَکھ بۄڈُک طٔریٖقہٕ۔ کینٛہہ برگر، ہاٹ ڈاگ، تہٕ پنٛنۍ سٲری پسندیدٕ سائیڈ ڈِش گرِل کٔرِو، تہٕ مِٹھٲیی مَناونُک مَرتاو نہٕ [1].\n2. پول پارٹی: پول پارٹی چھُ 4th جولایی پٮ۪ٹھ ٹھنٛڈٕ گژھنُک اَکھ بۄڈُک طٔریٖقہٕ۔ پنٛنٮ۪ن دوستَن تہٕ خاندانس دۅہَس تیٖرن، دۅپہَرِ کُن وُچھنَس، تہٕ پول گیمز خٲطرٕ دَعوَت دِو [3].\n3. آتش بازی وُچھِو: واریاہ آتش بازی چھِ 4th جولایی پٮ۪ٹھ پوٗرٕ مُلُکَس منٛز گژھان۔ پنٛنِس گَرَس منٛز آتش بازی وُچھنُک اَکھ بۄڈُک جاے ژھانٛڈِو تہٕ پنٛنٮ۪ن پیارَن سۭتۍ اَکھ مزہ دار رات گُزارِو [4].\n4. بون فائر کٔرِو: اگر تُہُنٛد پُشِتھ کُن یا اَکھ نارٕچ گۄڈٕ چھِ، یہِ چھُ 4th جولایی پٮ۪ٹھ رات ختم کَرنُک اَکھ بۄڈُک طٔریٖقہٕ۔ مارش میلو روٗسٹ کٔرِو، دٔلیٖلہٕ وَنِو، تہٕ اَکھ بۄڈُک بون فائر پارٹی کٔرِو [5].\n5. پنُن گَر سَجاوِو: پنٛنِس گَرَس منٛز کیٚنٛہہ وۄزُل، سُفید، تہٕ نیٖلۍ سَجاوٹ شٲمِل کٔرِو تاکہ 4th جولایی ہُنٛد جوش حٲصِل گژھہِ۔ تُہۍ ہیٚکو جھنڈٕ، سٹریمر، تہٕ بنٹنگ لٹکٲوِتھ، یا تُہۍ ہیٚکو پنٛنۍ سَجاوٹ تہِ بَنٲوِتھ [6].\n6. حب الوطنی ہٕنٛدۍ فِلِم وُچھِو: کیمپ فائر یا گرِلَس نِش جَمَع گژھِو تہٕ کیٚنٛہہ حب الوطنی ہٕنٛدۍ گؠوَن گٲیِو۔ یہِ چھُ امریکہٕچ تٲریخ تہٕ رِوٲیَت مَناونُک اَکھ بۄڈُک طٔریٖقہٕ [2]. تُہۍ ہیٚکو گَرَس منٛز کیٚنٛہہ کلاسک حب الوطنی ہٕنٛدۍ فِلِم تہِ وُچھِتھ اَکھ مزہ دار فِلِم میراتھن مَناوان۔\n\nیِم چھِ سٲری 4th جولایی ہٕنٛدِ چھُٹہِ مَناونہٕ خٲطرٕ بۄڈۍ سرگرمیہٕ!", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1560, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0131", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بَچہٕ خٲطرٕ اَکھ مَحفوٗظ جاے بناوُن چھُ تِہنٛدِ صِحَت یقیٖنی بناونہٕ خٲطرٕ ضروٗری۔ مٲلۍ ماجہِ سٕنٛدِ حٲیِثیتَس منٛز چھُ یہِ ضروٗری زِ تُہۍ کٔرِو پنُن گَر بَچہٕ خٲطرٕ مَحفوٗظ ییٚلہِ تِم بَڈَن تہٕ رینگُن شروٗع کَرَن۔ اَتھ منٛز چھِ مَحفوٗظ رینگن وٲلۍ جاے بناونہٕ خٲطرٕ اَتھ پٲٹھۍ قدم:\n\n1. اَکھ مُناسِب جاے چھانٛٹِو: پنٛنِس گَرس منٛز اَکھ صاف، کشادہ تہٕ ہَوا دار جاے چھانٛٹِو۔ یقیٖنی بَنٲوِو زِ یہِ گَژھہِ کُنہِ تہِ ٹی وی، فرنیچر یا باقٕے چیٖزَن نِش دوٗر یِم وۄتھِتھ ہیٚکَن۔ لِوِنٛگ روٗم یا اَکھ خاص گِنٛدَن وٲلۍ جاے چھِ اکثر اَصٕل اِنتِخاب [1].\n\n2. جاے بَچہٕ خٲطرٕ مَحفوٗظ بَنٲوِو:\n - سٲرِوٕے بجلٮ۪چ لٲن چھانٛٹِو [2].\n - جاے صاف کٔرِو کُنہِ تہِ لۄکٕٹِس چیٖزَس نِش یُس گَٹہٕ دِنہٕ وٲلۍ خطرٕ آسہِ [1][2].\n - کُنہِ تہِ لٹکَن وٲلۍ چیٖز یُس بَچہٕ کٔڈِتھ ہیٚکہِ یِتھٕ کٔنۍ زَن پردٕ، تار تہٕ بلائنڈ، چھِ دُور تھاوِو [1][2].\n - کَبیٖنِٹ، دراز تہٕ لۄکٕٹۍ شیلف کٔرِو کُونہِ تہِ کَنہِ ہٕنٛدِ حِفاظَت خٲطرٕ بَچہٕ خٲطرٕ مَحفوٗظ [1][2].\n - تِمَن جاین خٲطرٕ یِم تُہۍ پوٗرٕ پٲٹھۍ بَچہٕ خٲطرٕ مَحفوٗظ بَنٲوِتھ ہیٚکِو نہٕ یِتھٕ کٔنۍ زَن سیٖڑۍ یا کِچَن، کٔرِو بَچہٕ دوٗر تھاونہٕ خٲطرٕ سیفٹی گیٹ یا پلے پین بیریئر اِستعمال [1][2].\n - تیز چیٖز یِتھٕ کٔنۍ زَن چاقو، قلم تہٕ کینٛچۍ تھاوِو اَکھ درازَس منٛز یَتھ بَچہٕ خٲطرٕ مَحفوٗظ تالے آسہِ [2].\n\n3. فرش: اَکھ نرم فرش اِستعمال کٔرِو یِتھٕ کٔنۍ زَن قالین، دَری، یا فوم پزل میٹ بَچہٕ کُنہِ تہِ پٮ۪وَن نِش بچاونہٕ خٲطرٕ [1].\n\n4. نرم لَنٛڈِنٛگ جاے: رینگن وٲلِس جاے کِس کَنہِ پٮ۪ٹھ نرم تکیہٕ، کُشن یا کَمبل تھاوِو تاکہ ممکنہٕ پٮ۪وَن نِش بچاوُن ییٚیہِ [2].\n\n5. نِگرٲنی: پنُن بَچہٕ کٔرِو نہٕ کُنہِ تہِ وِزِ اَکیلا ییٚلہِ سُہ رینگن وٲلِس جاے آسہِ [1][2].\n\n6. آرام تہٕ صَفٲیی: جاے صاف کٔرِ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1604, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0132", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برٲرۍ ژھیوٚٹ مکروہ تہٕ گگراہ کھیوٚن\nبییٚہِ یِموٕے وٲج رٔٹمٕژ چھَے\nآیری بییٚہِ جانور مۄردار\nکۄکرن ہُند ذمہٕ یِمنٕے خۄے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0133", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انگہٕ زن خۄشبو مۄکھہٕ زن وُدٕے\nنِشہِ وُدِٮ۪ن آسہٕ بۄدٕ کتھن ہتھ مان\nسوستی کریٚیہِ تہٕ روٚستُے کروٗدِے\nسُے دٔپۍ زے مسلمان", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 120, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0134", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Households with gardens were more likely to own cats and dogs than households without gardens.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0135", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتِمہِ تجرُبہٕ کِس بُنیادس پٮ۪ٹھ چھِنہٕ تیٚلنٛگاناہس منٛز سیکولر ووٹر، خاص پٲٹھۍ مُسلمان ووٹر، بی آر ایس کٮ۪ن دعون پٮ۪ٹھ یقین کرنہٕ خٲطرٕ تیار باسان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 151, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0136", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وۄندس کرٕنۍ کرٛیٚے کریوٗٹھو\nییٚتہِ ژےٚ ژھُنٕنے بٔلی تاوو\nتیُتھ اُپدیش رَٹنہِ اوزوتو\nکُلس ہم کوٚل کیا ہٮ۪ڈوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0137", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تُہۍ گٔژھِو یہِ زٲنِتھ حٲران زِ ایازس چھُ لاہورک بٲنۍ تہٕ لاہورک گۄڈنیُک حکمران وَنٛنہٕ یوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 93, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0138", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "2023 ہَس منٛز قتٕل کٮ۪ن شرحن ہٕنٛدِ لحاظہٕ چھُ یوٗکرین یوٗرَپُک سارِوٕے کھۄتہٕ خطرناک مُلُک۔ یوٗکرینُک عالمی جُرمَن ہُنٛد اِنڈیکس سکور چھُ 6.18 [1]. 2021 ہَس منٛز یوٗکرینُک قتٕل/ہومیسایڈ ریٹ اوس 3.84 [2].\n\nیوٗکرینَس منٛز قتٕلٕچ زیٛادٕ شرح چھِ روٗسَس سۭتۍ جٲری جَنٛگہِ سۭتۍ منسوب کَرنہٕ یِوان۔ اَتھ جَنٛگہِ سۭتۍ چھُ قتٕلَس سۭتۍ سۭتۍ تشددَس منٛز تہِ واریاہ اِضافہٕ گومُت۔ اَتھ علاوٕ چھِ جَنٛگہِ سۭتۍ لچھ بٔدۍ یوٗکرینیَن بےٚ گَر گومُت، ییٚمہِ سۭتۍ تِم جُرمَن ہٕنٛدِ خٲطرٕ زیٛادٕ کمزوٗر گومُت چھِ [1].", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0139", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They see a house.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 17, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0140", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Since caffeine is very similar to adenosine, a molecule in our brains, caffeine can function similarly in the brain, blocking off adenosine receptors in the brain cells.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 169, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0141", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعلیٰ عمر عبداللہ گژھِ برٛسوارِ دۄہ کشتواڑ ضلعہٕ کِس واڈوانُک دورٕ ییٚتہِ سُہ نار لگنہٕ والٮ۪ن مُتٲثِریٖنَن سۭتۍ مِلِتھ۔\nوزیر اعلیٰ سُنٛد عہدٕ سنبھالنہٕ پتہٕ آسہِ یہِ تٔمۍ سُنٛد کُنہِ جایہِ ہُنٛد گۄڈٕنیُک دورٕ۔\nبرٛسوارِ دۄہ صُبحٲے ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز ووٚن وزیر اعلیٰ زِ: \"بہٕ کَرٕ آز کشتواڑ کِس ودوان علاقُک سفر تِمَن عیالَن سۭتۍ مِلنہٕ خٲطرٕ یِمَن ہٕنٛز زِنٛدگی حالٕے تباہ شدٕ نارٕ سۭتۍ تباہ گٔمٕژ چھِ۔”\nعمر عبداللہ یَن کوٚر بۄدوارِ دۄہ شیر کشمیر انٹرنیشنل کانووکیشن سینٹرَس منٛز مُنعقد أکِس حلف برداری تقریٖبہِ منٛز مرکزی زیر انتظام علاقہٕ جموں و کشمیرُک گۄڈٕنیُک وزیر اعلیٰ سُنٛد حلف ۔\nحُکامن ووٚن زِ جموں و کشمیر کِس کشتواڑ ضلعہٕ کِس مرواہ واڈوان علاقَس منٛز بۄموارِ دۄہ لگَن وٲلِس بٔڑِس نارَس منٛز گٔیہِ کم از کم 80 رِہٲیشی مکان", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 748, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0142", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They studied together, and they helped each other.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0143", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نادان عقلہِ نِشے اَبق\nقُران خوان عقلہِ نِشے زوٗر\nنماز گُذارن عقلہِ ہٕندٛۍ سبق\nبےٚ نمازۍ عقلہِ نِشے سوٗر", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0144", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ دوٚیمہِ اتھہٕ نیوٗ جمالن أہنزِ گردنہِ منٛز لاکٹتھپہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 58, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0145", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگرَس منٛز حبکادل علاقہٕ کِس گٔنۍ آبادی وٲلِس کرفالی محلس منٛز رٲژ نارٕ لگنہٕ کِس خوفناک واقعَس منٛز گٔیہِ کم از کم 10 رہٲیشی مکانہٕ سوٗر گٔیہِ، ییٚمہِ سۭتۍ اکھ درجن کھۄتہٕ زیٛادٕ خاندان بے گھر گٔیہِ۔ ذرایعَو دِژ اطلاع زِ بۄدوارِ تہٕ برٛسوارِ دۄہ رٲژ درمِیان لوٚگ حبکادل کِس کرفالی محلس منٛز أکِس مکانَس منٛز نار تہٕ نار لوٚگ جلدٕی نزدیٖکی گَرَن منٛز۔ تِمَو ووٚن زِ امہِ خوفناک نارٕ سۭتۍ پھیلوو علاقَس منٛز خوف، تہٕ زنانہٕ تہٕ شُرِ ٲسۍ روان وٕچھنہٕ آمٕتۍ، ییٚلہِ زَن نار تہٕ دوٚہہ تیوٗت تھوٚد زِ یِم ہٮ۪کَو دوٗرِ پٮ۪ٹھٕ ؤچھنہٕ یِوان۔ فائر اینڈ ایمرجنسی ڈیپارٹمنٹٕک أکۍ اہلکارَن ووٚن امہِ واقعٕچ تصدیٖق یہِ ؤنِتھ زِ نارٕچ معلوٗمات آیہِ صبحٲے 2 بجہِ بجہِ مِلنہٕ۔ تٔمۍ ووٚن زِ رپورٹ موصول گژھنہٕ پتہٕ دستی آیہِ شہرٕک مُختٔلِف فائر سٹیشنَو پٮ۪ٹھ 17 فائر ٹینڈر موقعہٕ جایہِ پٮ۪ٹھ سوزنہٕ۔ تٔمۍ ووٚن ووٚن زِ فائر ٹینڈرَن ہٕنٛزِ شٔدیٖد کوٗشِشہِ پتہٕ آو نار قوبوٗہس منٛز اننہٕ۔ تاہم گٔیہِ اَتھ واقعَس منٛز کم از کم 10 مکانہٕ پوٗرٕ پٲٹھۍ تباہ ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 937, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0146", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خیبر ایگرو پرائیویٹ لمیٹڈ، یُس کٔشیٖرِ ہِنٛدِس دۄدٕ صنعتَس منٛز اکھ نُمایاں ناو چھُ، چھُ ماحولیٲتی دوستانہٕ بالٹی پیکیجنگَس منٛز 1 کِلوگرام زامت دۄدک اکھ نوٚو پروڈکٹ مُتعارُف کوٚرمُت۔سرینگر کِس حیدر پورِس منٛز کمپنی ہٕنٛدِس ہیڈ کوارٹرَس منٛز منعقد گژھَن وٲلِس لانچ تقریبہِ منٛز ٲسۍ خیبر ایگرو پرائیویٹ لمیٹڈٕکۍ منیجنگ ڈائریکٹر منان ترمبو، تہٕ کمشنر آف فوڈ اینڈ ڈرگس ایڈمنسٹریشن (ایف ڈی اے)، جموں و کشمیرَن حشمت علی یاتو (آئی اے ایس) شِرکتن کٔرمٕژ۔نوٚو زامُت دۅد پروڈکٹ، یُس بایوڈیگریڈیبل \"آٮٔی ایٚم ایٚل بکٹ” منٛز پیک کرنہٕ آمُت چھُ، چُھ پایدار پیکیجنگ کُن اَکھ اَہَم قدمٕچ نمائندگی کران، یُس ایٚٹ رایِٹ اِنٛڈیا مُہِمہِ ہِنٛدیٚن ماحولِیٲتی دوستانہٕ طریٖقن فروغ دِنہٕ کیٚن مقصدن سۭتۍ ہم آہنگ چُھ ۔ تقریٖبَس منٛز کَتھ کٔرِتھ کٔر کمشنر حشمت علی یاتوَ (آٮٔی اے ایس) ماحولیٲتی ذمہٕ دٲری تہٕ حفاظتَس سۭتۍ خیبر ایگرو سٕنٛدِ وابستگی ہٕنٛز تعریٖف کٔر مژ۔ تٔمۍ دِیُت جدید، ویلیو ایڈڈ مصنوعات متعارف کران فوڈ پروسیسنگس منٛز اعلیٰ معیار برقرار تھاونٕچ اہمیتس پٮ۪ٹھ زور۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 957, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0147", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can come with me, or you can stay here.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0148", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہنرمندی ہنٛزٕ مختصر مدتی تر بیت یا تَصَورَستۭۍ نیز نتیجتہٕ ہنرمندی ہنٛزٕ ضلٔعی منصوبہٕ بندی کِس سلسلَس منٛز مدد کرنہٕ چَہ ضرورتہٕ ستۭۍ ہنرمندی ستۭۍ متعلق ریٲستی مشنَن ہنٛز کٲفی تہٕ مُتحِدٕ مصروفیتَن ہنٛدٕ نمایہٕ تہٕ صریحی فقدانُک چُھ یہِ مطلب زِریاستہٕ /اضلاع ڈی ایس سی منٛز سٲتھیَن ہنٛزموجودگی ستۭۍ بہترین یا ساروی کھۄتہٕ زیادٕ سازگارطریقہٕ ستۭۍ کَران نہٕ اِستفادٕ خٲصِل ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 373, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0149", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تاہم یِہ رپۄرٹ مدِ نظر تھٲوتھ ینٕہ بھولک پور کِس علاقس منز 3+2\\1+1 طرزِ عملس پٮ۪ٹھ مکان بناونٕہ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 96, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0150", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Annual population growth rate (2011 est., CIA World Factbook): 1.284%.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0151", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس وژ ھو أچھَو جمالس کُن وُچھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0152", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مرکٔزی لال چوک تہٕ اَمہِ کِس تٲریٖخی گھنٹہ گھرَس (کلاک ٹاور) منٛز آیہِ بَٹہٕ وارِ دۄہ اکھ شاندار تبدیلی وُچھنہٕ، یُس شہرَس خٲطرٕ گۄڈٕنِچ نشاندٕہی چھُ: ہردٕ کِس دِلَس دوران اکھ متاثر کن بٔڑِس پیمانَس پٮ۪ٹھ کرسنتھیمم بلوم شو۔ امہِ کوٗششہِ ہُنٛد مقصد چُھ پُرسکون زوال کِس وقتس منٛز شہرس خوبصورت بناوُن تہٕ ہلچل وٲلِس رٮ۪تہٕ کالہِ تہٕ شیٖنہٕ ونٛدس درمیان سیاحت خٲطرٕ ‘فرق کم کرُن’۔\n\nاَمہِ نُمٲیشہِ ہُنٛد اہتمام اوس ایس کے یو اے ایس ٹی کے ڈویژن آف فلوریکلچر ہٕنٛدیو پی جی تہٕ پی ایچ ڈی طٲلبہِ عٔلِمَو دٔسۍ ڈویژن ہیڈ پروفیسر امتیاز طاہر نازکی تہٕ فیکلٹی ممبرن ہٕنٛزِ رہنُمٲیی منٛز کرنہٕ آمُت، یِمو راتس راتس تقریباً 3000 بانہٕ رنگین کرسنتھیمم (گُل داؤد) قٲیم کرنہٕ خٲطرٕ کٲم کٔر۔ نُمٲیشہِ منٛز آیہِ 15 کھۄتہٕ زِیٛادٕ مقٲمی قٕسٕم تہٕ پوشٕکۍ 80 رنگ ہاونہٕ، ییٚمہِ سۭتۍ مشہور گھنٹہ گھرس أنٛدۍ پٔکۍ علاقہٕ أکِس واضح تماشہِ منٛز تبدیٖل گوٚو۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 830, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0153", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She worked hard, and she got a promotion.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0154", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انفرااسٹرکچر سیکٹرَس منٛز اثاثَن ستۭۍ رقم حٲصِل کرنہٕ کہ غرضہٕ چِھ ایئر پورٹ اتھارٹی آف انڈیا ،نیشنل ہائی ویز اتھارٹی آف انڈیا سنٛز سڑکہٕ ، پاور گرڈ کارپوریشن آف انڈیا کہ ٹرانسمیشن لاینہٕ ، سنٹرل گودام کار پوریشنٔک گودام ، فریٹ کوریڈورٕک حصہٕ ، پٹرولیم سیکٹرَس منٛزکینٛہہ کمپنیَن ہنٛز پائپ لائنز تہٕ باقی اثاثَن پٮ۪ٹھ چِھ مرکزٕچ نظر ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 334, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0155", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مراقبہٕ کَرنَس سۭتۍ ہیٚکہِ واریاہ فوری تہٕ طویٖل مدتی فٲیِدٕ حٲصِل گژھِتھ۔ واریاہن مطالعن چھُ باقٲعِدگی سۭتۍ مراقبہٕ کَرنٕکۍ مُختٔلِف فٲیِدٕ ظٲہِر کٔرمِتھ، یِتھٕ کٔنۍ زَن توجہَس منٛز بہتری، دباو کم گژھُن، تہٕ خوٗشی تہٕ بہبوٗدَس منٛز اِضافہٕ۔ مراقبہٕ کٮ۪ن کیٚنٛہہ زیٛادٕ طویٖل مدتی فٲیِدٕ چھِ یِم:\n\n1. پریشانی تہٕ افسردگی کم گژھان: مراقبہٕ چھُ ذہنی صحتٕچن حالتن یِتھٕ کٔنۍ زَن پریشانی تہٕ افسردگی سۭتۍ لڑنہٕ خٲطرٕ اَکھ موٗثِر طٔریٖقہٕ۔ مراقبہٕ کَرنَس دوران پنٕنۍ ساہ تہٕ دِماغ دھیٖم کَرُن ہیٚکہِ پریشان کُن خیالَن نِش نِکَلنہٕ تہٕ پنٕنِس سکوٗن تہٕ اَنٛدروٗنی امنَس بحال کَرنَس منٛز مدد کٔرِتھ۔ مراقبہٕ ہیٚکہِ دِماغٕکِس میڈیل پریفرونٹل کورٹیکس تہٕ امیگڈالا علاقن تہِ تبدیل کٔرِتھ، یِم افسردگی مَنٛز اَکھ اَہَم حِصہٕ چھِ ادا کَران۔ وقتَس سۭتۍ چھُ مراقبہٕ دِماغَس سکوٗن تہٕ توجہ دِنہٕ خٲطرٕ تربیت دِوان، ییٚمہِ سۭتۍ منفی خیالَن تہٕ احساسَن نِش بچنہٕ مَنٛز مدد مِلان چھِ [1][2]۔\n\n2. بہتر نِنٛدر: مراقبہٕ ہیٚکہِ آرام دِتھ تہٕ دباو کم کٔرِتھ نِنٛدرٕچ کوالِٹی بہتر بناونَس منٛز مدد کٔرِتھ [1]۔ مراقبہٕ چھُ بے خوابی ہٕنٛدِس علاجَس منٛز اَکھ طاقتور ذٔریعہٕ ثابت گژھمُت [2]۔\n\n3. نشہٕ سۭتۍ لڑنہٕ مَنٛز مدد: مراقبہٕ ہیٚکہِ لوٗکن مُختٔلِف قٕسمٕکٮ۪ن نشَن نِش نِکَلنہٕ مَنٛز موٗثِر ثابت گژھِتھ۔ یہِ ہیٚکہِ دِماغَس زیٛادٕ الگ طٔریٖقہٕ سۭتۍ طلبَن ہُنٛد مُشاہدٕ کَرنہٕ تہٕ تجربہٕ کَرنہٕ خٲطرٕ تربیت دِتھ۔ یہِ ہیٚکہِ وقتَس سۭتۍ طلبٕچ طاقت کم کَرنَس تہٕ نشہٕ کم کَرنَس منٛز مدد کٔرِتھ [2]۔\n\n4. بہتر یادداشت تہٕ توجہ: مراقبہٕ ہیٚکہِ دِماغَس توجہ دِنہٕ تہٕ توجہ دِنہٕ خٲطرٕ تربیت دِتھ یادداشت تہٕ توجہ بہتر بناونَس منٛز مدد کٔرِتھ۔ یہِ چھُ خیالَن ہٕنٛز وضاحت تہٕ توجہٕچ مدت بَڈراوان [1][2]۔\n\n5. یادداشت گُم گژھنُک علاج: واریاہن مطالعن چھُ قدرتی عمرَس سۭتۍ وابستہٕ یادداشت گُم گژھنَس سۭتۍ لڑنہٕ مَنٛز مراقبہٕچ موٗثریت ظٲہِر کٔرمٕژ۔ ٹِم گارڈ سٕنٛدِس اَکِس مطالعَس منٛز آو ظٲہِر گژھُن زِ مراقبہٕ چھُ بوٚڑن رضاکارَن منٛز توجہٕچ مدت، یادداشت، تہٕ ذہنی چُست پَن و", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1834, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0156", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When God wants to accomplish something great for his namesake, he raises up a man or a woman on whom he can anoint, by whom he can fulfill his covenant promise, and through whom he can work.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 190, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0157", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی طور، ییٚتہِ چھِ تُہٕنٛدِ خٲطرٕ کیٚنٛہہ نوٚو تہٕ مَقبول کے-ڈراما یِم تُہۍ وُچھِتھ ہیٚکو [1][2][3]:\n- کریش کورس اِن رومانس (2023)\n- دی گلوری پارٹ 2 (2023)\n- ڈاکٹر رومانٹِک 3 (2023)\n- لو ٹو ہیٹ یو (2023)\n- کوٗین میکر (2023)\n- ڈِورس اٹارنی شِن (2023)\n- ایجنسی (2023)\n- ماسک گرل (2023)\n- ڈیسٹائنڈ وِد یو (2023)\n- بیونٛڈ یوَر ٹچ (2023)\n- آور بلومِنٛگ یوٗتھ (2023)\n- سی یو اِن مائی 19تھ لائف (2023)\n- مووِنٛگ (2023)\n- مائی ڈیریسٹ (2023)\n- بلڈ ہاؤنڈز (2023)\n- بِگ بیٹ پارٹ (2023)\n- گیونٛگ سیونٛگ کریچر (2023)\n- دی گُڈ بیڈ مدر (2023)\n- سیلیبریٹی (2023)\n- اے ٹائم کالڈ یو (2023)\n- الکیمی آف سولز (2022)\n- ٹوئنٛٹی فایو ٹوئنٛٹی وٲن (2022)\n- بِزنس پروپوزل (2022)\n- آور بیلووِڈ سمر (2021-2022)\n- ہوم ٹاؤن چا-چا-چا (2021)\n- وِنٛچنٛزو (2021)\n- ہاسپِتال پلے لِسٹ (2020-2021)\n- کریش لینٛڈِنٛگ آن یو (2019-2020)\n- گوبلِن (2016-2017)\n- ڈیسینڈنٛٹس آف دی سَن (2016)\n\nاَتھ لِسٹَس منٛز چھِ مُختٔلِف قٕسمٕکۍ صنف شٲمِل، یَتھ منٛز رومانس، کامیڈی، ڈراما تہٕ مِسٹری شٲمِل چھِ۔ اُمید چھُ زِ تُہۍ وُچھِو یِمَن منٛزٕ کانٛہہ اَکھ کے-ڈراما۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1013, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0158", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیٖنٛژۍ ییٚتہِ زلہٕ منزَے دٔدِی\nکیٖنٛژۍ پھیٖرِتھ آے أگنہٕ سُرٛپہ\nکینژَو ییٚتہِ آرٕ بَلہٕ لعل لٔبی\nکیٖنٛژۍ ژٔھرِی آے سنگل دِپہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0159", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted tea, but there was no milk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0160", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیا منگہٕ مٲلِس تاولِس اِنلس\nکِتھہٕ نہٕ أنِتھ دِژامکھ لوٗژھ\nوُچھتہٕ کٮ۪تھہٕ یہِ ژوٚلُم گاٹِلس\nبہٕ سُت مٲلس میون نہ کوٗنژھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0161", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سری نگر سمارٹ سٹی لمیٹڈَس تحت تعمیر کرنہٕ آمُت امیرا کدل فٹ برج چھُ مُکمل گژھنہٕ کِس ٲخری مرحلَس منٛز، یہِ چھُ سرینگر کٮ۪و سَتو مشہوٗر پرٛانٮ۪و کٔدلَو منٛز اکھ، یُس قدیم وقتس سۭتۍ غٲر ٹرانزٹ گوٚو۔ یہِ آسہِ نہٕ صِرِف لُکن ہِنٛدِ خٲطرٕ راحتُک ذٔریعہٕ بٔلکہِ آسہِ سیاحن خٲطرٕ پُرکٔشش تہِ۔\nرفی ثاقب آرکیٹیکٹس تہٕ البرج کنسلٹنسی چھِ پننہِ قٕسمُک یہِ منفرد کٔدٕل بناونہٕ خٲطرٕ کٲم کران۔\nرفیع ثاقب آرکیٹیکٹس کِس نجم الثاقب یَن ووٚن یو این آی یَس زِ \"کٔدٕل ڈیزائن کرنس لوٚگ ترٛےٚ رٮ۪ت، امیُک کھجر چھُ 9 میٹر تہٕ یہِ بناونہٕ خٲطرٕ چھُ اعلیٰ معیارٕچ دیودار لٔکرِ استعمال کرنہٕ آمٕژ”۔\nتٔمۍ ووٚن: \"یہِ چھُ ہوبا کدل تہٕ زیرو برج کٮ۪و کٔدلَو نِش ڈیزائنَس منٛز تھوڑا مختلف تِکیازِ اتھ کٔدلَس منٛز چھِ زیادٕ جاے یوٚس چھتہٕ پٮ۪ٹھٕ ؤلِتھ چھِ تہٕ ییٚتہِ لۄکٕٹۍ دُکان ہٮ۪کَو قٲیِم کٔرِتھ تہٕ ییٚتہِ بِہنہٕ خٲطرٕ کٲفی جاے چھِ۔”\nتِم چھِ ونان", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 819, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0162", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ادکیاہ! یارا ، مےٚ چھ یہِ میوٗٹھ میٚو کھیٚاونوومُت ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0163", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "\"پرٛٮ۪تھ کمرٕچ الگ وال پیلنگ: گَرٕ ڈیزائن کرنُک اکھ واریاہ جٔدید طریقہٕ چُھ اَمہِ خٲطرٕ \"\"اوپن پلان\"\" ہُنٛد انتخاب کرُن۔\"", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 121, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0164", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پونی ٹیلَس منٛز بنٛد کرنہٕ آمُت لوٹ کٔرِو کم کم مَستس منٛز تقسیٖم۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 66, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0165", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہینٛڈ سٹینٛڈ کَرنہٕ خٲطرٕ چھُ ہمت، طاقت تہٕ مشقٕچ ضروٗرت۔ ہینٛڈ سٹینٛڈ کَرنہٕ وِزِ خوفس پٮ۪ٹھ قابو پاونہٕ خٲطرٕ چھِ یِم کینٛہہ مشوَرٕ:\n1. پنُن خوف تسلیٖم کٔرِو: اُلٹہٕ آسُن چھُ خوفناک تہٕ پرٛٮ۪تھ کٲنٛسہِ چھُ یہِ خوف دُور کَرنہٕ خٲطرٕ یہِ کَران۔ لۄکٕٹۍ قدم تُلِو یِتھٕ کٔنۍ زَن بۄن کُن کُتہٕ کَرُن یا بسترٕ کِس بۄنِس کُن۔ یِم پوزیشنہٕ کَرَن تُہنٛدِس اُلٹہٕ آسَنٕچ عادت پٲدٕ کَرنَس منٛز مدد۔\n2. سٲس نِیو: ییٚلہِ تُہۍ تیٲری کَران چھِو، یقیٖنی بَنٲوِو زِ تُہۍ چھِو گۄڈٕ تہٕ برابر سٲس نِوان۔ اَتھ سۭتۍ چھُ تُہنٛدِس خوفس پٮ۪ٹھ قابو تھاونَس منٛز مدد مِلان۔\n3. بانہٕ سۭتۍ توازن تھاونٕچ مشق کٔرِو: پرٛٮ۪تھ دۅہ کٔرِو بانہٕ سۭتۍ مشق تاکہ بانہٕ تہٕ اُوپرِم جِسمٕچ طاقت بَنٲوِتھ ہیٚکو۔ کرٛو سٹینٛڈ یا ہولڈنگ فراگ سٹینٛڈ باقٲعِدگی سۭتۍ کَرُن چھُ تُہنٛدِس وزنَس پٮ۪ٹھ پَنہِ بانہٕ پٮ۪ٹھ تھاونَس منٛز مدد کَران۔ اَتھ سۭتۍ چھُ تُہنٛدِس اعتمادَس منٛز مدد مِلان۔\n4. دیوار اِستعمال کٔرِو: اَگٕلۍ قدم چھُ دیوارس کُن لَتھ کٔرِتھ پَنہِ بانہٕ پٮ۪ٹھ اُلٹہٕ آسُن۔ مکمل ہیڈ سٹینٛڈ کَرنَس بَدلَس، دیوار اِستعمال کٔرِو تاکہ تُہۍ توازن تھاوِتھ ہیٚکو۔ پنُن شکل تھاونَس، سٲس نِوان تہٕ اُلٹہٕ آسَنٕچ عادت پٲدٕ کَرنَس پٮ۪ٹھ توجہ دِوِو۔\n5. ہیڈ سٹینٛڈ کٔرِو: کٲفی اعتماد حٲصِل کَرنہٕ پتہٕ، تُہۍ ہیٚکو دیوار اِستعمال کَرنَس بَدلَس آہستہ آہستہ ہیڈ سٹینٛڈ کٔرِتھ۔ یقیٖنی بَنٲوِو زِ تُہۍ چھِو پنٕنِس رفتارَس پٮ۪ٹھ گژھان۔\n6. صٔحیٖح پٲٹھۍ لَنٛڈ کَرُن ہیٚچھُن: ہیڈ سٹینٛڈ پٮ۪ٹھٕ کِتھٕ پٲٹھۍ گِرُن چھُ تُہنٛدِس خوفس منٛز مدد کَران۔ اَکھ اِخراجٕچ حکمت عملی تھاونَس سۭتۍ چھُ تُہنٛدِس اعتمادَس تہٕ حِفاظَتَس منٛز مدد مِلان۔\n7. باقٲعِدگی سۭتۍ مشق کٔرِو: طاقت بَنٲوِتھ، پنُن فارم بہتر بَنٲوِتھ تہٕ پنُن خوف دُور کَرنَس خٲطرٕ کٔرِو باقٲعِدگی سۭتۍ ہیڈ سٹینٛڈٕچ مشق۔ ییٚتھ پٲٹھۍ تُہۍ زیٛادٕ مشق کَرِو، تیٚتھ پٲٹھۍ چھِو تُہۍ زیٛادٕ آرام دہ تہٕ اعتماد مند بَنان۔\n8", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1709, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0166", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ 2023 تہٕ 2024 ہٕنٛدۍ کیٚنٛہہ بہترین سپورٹس کارٕ [1]:\n1. شیورلیٹ کیمارو زیڈ ایل 1\n2. شیورلیٹ کورویٹ\n3. فورڈ مسٹینگ\n4. سوبارو بی آر زیڈ\n5. پورش 718 باکسٹر", "domain": "sft_longform", "length_bucket": "medium", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0167", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سخت حفاظتی انتظامن درمیان امرناتھ یاترایہِ ہُنٛدشیٚیِم قٲفلہٕ، یَتھ منٛز 8,605 زائرین شٲمِل چھِ گوٚو از ژٔنٛدٕروارِ دۄہ صُبحٲے جموں کِس بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ وادی کشمیر کُن روانہٕ۔ اہلِکارو مُطٲبِق چھِ وُنیُک تام 70,000 کھۄتہٕ زِیٛادٕ عقیدت مندَو مُقدس امرناتھ گۄپھِ ہُنٛد دورٕ کوٚرمُت۔ شیٚیِمِس قٲفلس منٛز چھِ 6,486 مرد، 1,826 زنانہٕ، 42 شُرۍ تہٕ 251 سادھو شٲمِل۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 370, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0168", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مکٔژ تُجِن بیٚیہِ آسمانس کن تہٕ سلامنِس مردٕ جسمس نِش کوٚرُن بیاکھ حصہٕ الگ ثریا سُنٛد مٲرۍ موٚند مۄکھ پیوو ہردٕ پنٕکۍ پٲٹھۍ ۂرِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 132, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0169", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She feels happy.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0170", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I like tea.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0171", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ یہِ علم ٲس یِمو امیری غریبی، ذات پات تہٕ باقےٕ غلط حرکژو خٲطرٕ تُجمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 79, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0172", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کالج عمارژن پٮ۪ٹھ ٲسۍ کینٛہہ لڑکہٕ نہٕ چلاوان کٔمۍ تام لڑکن چلوو لیبارٹری بلاکس پٮ۪ٹھ پٹرول کین تہٕ ہٲونس گندھکھ تُج یتھہٕ کٔنۍ دٕز سٲرٕے لیبارٹری آناّ فاناّ منٛز۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0173", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were excited, and they cheered loudly.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0174", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نٮ۪سر پیٚیہِ ژےٚ گیانہٕ\nکٲسِتھ غم ہٮ۪تہٕ فۄرمانہٕ\nأرۍنِٮُ۪ن وقتہٕ ووتُے آدانہٕ\nوۄتھو سَرُن ہیوٚن خدا پانہٕ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0175", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تندرُستی چھےٚ نیامٔژ ساسا\nگاسوٗ چُھے فرش تہٕ شُکر کر\nکرٛیٚے تہٕ کارن سخن اوٗلیٰ سا\nتَگہِ یے راتھ دۄہ خداے سر\nغریبی چھے خاص الخاصا\nخریدار چُھے خۄداے تہٕ سودا کر", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 159, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0176", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یُس کرِ سِوٕیس پانہٕ ہیٚچِھِ ناوٮ۪س\nتی کراوٮ۪س یہِ پانس یِیَس خۄش\nابکھ گیان نِشہِ نِشہِ ناوٮ۪س\nامور شِناوِٮ۪س تَھوٮ۪س ہوش\nدۄہہِ اکہِ ٹوٹھٮ۪س دیدار ڈیشہِ ناوٮ۪س\nاَدٕ سوٗر گژھِ ما، شناوس، تھوِٮ۪س نہٕ ہوش", "domain": "poetry", "length_bucket": "long", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 201, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0177", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اسرائیلی صحافی بین ڈیوڈ سٕند مطٲبق ، حماس کہ طرفہٕ رہا کرنہٕ آمٕتۍ اسرائیلی یرغمالین کوٚر رہا گژھنہٕ پتہٕ میڈیاہس سۭتۍ کَتھ باتھ منز انکشاف زِ اسہ ٲس گوپھن منٛز تھونہٕ آمٕتۍ تہٕ حماس کہ غزہ پٹی ہند سربراہ یحیی سنور تہِ آو اسہ سٕتۍ ملاقات کرنہٕ ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 245, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0178", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفٕس پتہٕ لگُن چُھے أچھ منٛز سِرُن\nگاشِچ وۄمید بٔرۍ زِنہٕ زاہ\nنفٕس پتہٕ لگُن چُھے آرٕ مٔنٛزۍ یِرُن\nۂلِس تہٕ میٚنٛدِس کری واہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0179", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He has a car.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0180", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "For example, a research project may involve comparisons of the health and recovery of all patients who received a particular medication.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 136, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0181", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چیف منسٹر چھِ ارکان اسمبلی ہِندیٚن نمٲٮٔندَن علاوٕ وزارت کِس خواہِشمنٛد چیف منسٹرٕکۍ سیٲسی مشیر ڈاکٹر کے وی پی رامچندر راؤ سٕندِس رٲبطَس منٛز تہٕ چھِ تِمن مناونٕچ کوٗشِش کران۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0182", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تِکیحازِ رشیدس سۭتۍ اوس نہٕ سلیمس بغٲر بیٚیہِ کٕہنۍ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0183", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سروٕ ہیوٗ قد۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0184", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Sri Lanka is a country in South Asia, located on an island once known as Ceylon.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 80, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0185", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He woke up early, and he went for a walk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0186", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَسہِ ترٲوِتھ ژوٚلُکھ کارن\nانہارن پرنیٛات کوٗتو\nبابجہٕ رُوٗپہٕ وَن گارتھ ژٕ ژرٛارن\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0187", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برٛسوارِ دۄہ صُبحٲے گوٚو 3,500 زائرین پٮ۪ٹھ مشتمل بیٛاکھ قافلہٕ شری امرناتھ جی یاترا خٲطرٕ سخت حفاضتس منٛز کٔشیٖرِ کُن روانہٕ۔ سرکٲرِ ذٔریعہٕ وون زِ 3500 زائرین پٮ۪ٹھ مشتمل بیٛاکھ قافلہٕ گوٚو برٛسوارِ دۄہ صبحٲے بھگوتی نگر بیس کیمپ پٮ۪ٹھٕ 140 لۄکچہِ تہٕ بجہِ گاڑٮ۪ن منٛز کٔشیٖرِ کُن روانہٕ۔ تِمَو ووٚن زِ 832 زائرین گٔیہِ جنوٗبی کشمیر کِس اننت ناگ ضلعس منٛز واقع نوان پہلگام بیس کیمپس کُن روانہٕ، ییٚلہِ زَن 2,668 حاجی وسطی کشمیر کِس گاندربل ضلعس منٛز واقع بلتل بیس کیمپس کُن روانہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 482, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0188", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Changes in age at first birth do not appear to account for appreciable increases in overall U.S. breast cancer rates through 1990, although more delayed childbearing by women born after 1950 should ultimately contribute to an approximately 9% increase in rates.348 Since the 1940s, however, obesity, use of postmenopausa...", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 323, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0189", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ڈھاکہ: ڈھاکہ ٹریبیون مُطٲبِق یِیہِ برٛسوارِ دۄہ شامَس بنگ بھون کِس دربار ہالس منٛز بنٛگلہ دیشٕچ نٔو عبوری حکومت، ییٚمِچ قیادت نوبل انعام یافتہ ڈاکٹر محمد یونس کران چھِ۔ سٹیٹس مِلِتھ۔\nچیف آف آرمی سٹاف (سی او اے ایس) جنرل وقار الزمانَن کوٚر بۄدوارِ دۄہ عبوری حکومت کہِ حلف برداری تقریبہِ ہُنٛد اعلان۔ عبوری حکومت کِس سائزَس مُتعلِق پرژھنہٕ پتہٕ ووٚن تٔمۍ زِ تٔمِس چھُ بھروسہٕ زِ اَتھ منٛز آسن گۄڈٕ لَگ بَگ 15 ارکان، حالانٛکہِ بیٚیہِ اکھ یا زٕ ہٮ۪کَو شٲمِل کٔرِتھ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 461, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0190", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہسپتال وٲتۍ تھےٕ ییٚلہِ رشید تھیٹرس منٛز ژونُکھ أمِس آیہِ اَتہِ کینٛہہ ٹیبہٕ تہٕ ڈاکٹرو دیُت أمِس ہسپتالسےٕ منٛز روزنُکھ مشورٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 129, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0191", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "4 اَگَست 2023 ہَس تام چھُنہٕ کانٛہہ تہِ ثٲبِت گٔمٕژ مٲلوٗمات زِ حُکوٗمَتھ کَرِ کُنہِ تہِ زیٛادٕ وفاقی اِقتِصٲدی سِٹیمولَس چیک دِتھ۔ تاہم، کیلیفورنیا، ڈیلاویئر، فلوریڈا تہٕ 13 باقٕے رِیاسَتَن ہٕنٛدِ پروگرامَن تحت قٲبِل افرادَن چیک دِنٕچ کَتھ چھےٚ گٔمٕژ۔\n\nٹریژری ڈیپارٹمنٹ، بیورو آف دی فِسکَل سَروس، تہٕ اِنٹرنَل ریونیو سَروس (آئی آر ایس) کٔر کووِڈ-19 وبٲیی مَریٖضَن دوران افرادَن اِقتِصٲدی اَثَرٕچ ادٲیگی یا اِقتِصٲدی سِٹیمولَس چیک دِتھ۔ مارچ 2020 (کیئرس ایکٹ)، دَسَمبَر 2020 (کنسولیڈیٹِڈ اَپروپریشَنز ایکٹ، 2021)، تہٕ مارچ 2021 (امریٖکَن ریسکیو پلان ایکٹ) مَنٛز ٲسۍ ترٛےٚ دورٕ ادٲیگی گٔمٕژ۔\n\n476 مِلین کھۄتہٕ زیٛادٕ ادٲیگی، ییٚمِچ کُل مٲلی رِلیف 814 اَرَب ڈالر ٲس، گٔمٕژ وبٲیی مَریٖضَن ہٕنٛدِ اثرَس منٛز گھرَن۔ اِنٹرنَل ریونیو سَروس (آئی آر ایس) کٔر چیکٕچ رَقَم آمدنی، ٹیکس فائلِنٛگٕچ حٲلَت، تہٕ فردَس پٮ۪ٹھ شُرٮ۪ن (یا مُنحَصِر) ہٕنٛدِ تعدادَس پٮ۪ٹھ مُنحَصِر حِساب کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 872, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0192", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پراپرٹی ٹیکس چھُ او ایس آر پنچایتی راج ادارن خٲطرٕ اکھ اَہَم ذٔریعہٕ بناوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 76, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0193", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِہ، ییٚلہِ راتہِ ہٕنٛزِ اَصٕل نِنٛدرٕچ کَتھ چھِ یِوان، تیٚلہِ ہیٚکہِ نِنٛدرٕچ لِباس تُہٕنٛدِس نِنٛدرٕچ کوالِٹی پٮ۪ٹھ بوٚڈ اَثَر کٔرِتھ۔ بسترَس پٮ۪ٹھ آرام دہ لِباس لاگُن ہیٚکہِ تُہٕنٛدِس آرام کَرنَس تہٕ زیٛادٕ آرام دہ مَحسوٗس کَرنَس مَنٛز مَدَتھ کٔرِتھ۔ یہِ ہیٚکہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت تہِ مُنظَم کٔرِتھ، جِسمٕچ دَرجہٕ حَرارَت تھاوِتھ، تُہٕنٛدِس تیزی سان نِنٛدرَس تہٕ زیٛادٕ وَقتَس تام نِنٛدرَس مَنٛز روزنَس مَنٛز مَدَتھ کٔرِتھ۔\n\nمگر، تُہٕنٛدِس خٲطرٕ چھُ یہِ تُہٕنٛدِس اِختیار زِ تُہۍ چھِو لِباس لاگُن پَسَن کَران یا نَنٛگہٕ نِنٛدر کَران۔ یہِ چھُ واریاہَن عوٲمِلَن پٮ۪ٹھ مُنحَصِر یِتھٕ کٔنۍ زَن تُہٕنٛدِس کَمَرٕچ دَرجہٕ حَرارَت، لِباس یُس تُہٕنٛدِس خٲطرٕ آرام دہ چھُ، تہٕ ذاتی پَسَن۔ ییٚتہِ چھِ کیٚنٛہہ وَجہٕ دِنہٕ آمٕتۍ زِ نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ تُہٕنٛدِس خٲطرٕ فٲٮٔدٕ مَنٛد آسِتھ:\n1. نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت مُنظَم کَرنَس مَنٛز مَدَتھ کٔرِتھ، کِیاہ کہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت تھاونہٕ خٲطرٕ چھُنہٕ کانٛہہ تہِ چیٖز۔\n2. اگر تُہۍ چھِو اَکِس گَرٕم آب و ہوا وٲلِس جاے پٮ۪ٹھ روزان، تیٚلہِ ہیٚکہِ نَنٛگہٕ نِنٛدر کَرُن تُہٕنٛدِس جِسمَس ٹھنٛڈٕ تھاوِتھ۔ یہِ ہیٚکہِ تُہٕنٛدِس تیزی سان نِنٛدرَس، بَتَر کوالِٹی نِنٛدرَس، تہٕ میٹابولِزمَس بَڈاونَس مَنٛز مَدَتھ کٔرِتھ۔\n3. نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ بیکٹیریل تہٕ فَنٛگل اِنفیکشنَن ہُنٛد خطرٕ تہِ کَم کٔرِتھ۔ زنانَن خٲطرٕ ہیٚکہِ یہِ ہواہٕچ گُزرُن بَڈاونَس تہٕ وایجائنل علاقَس مَنٛز نَمِی کَم کَرنَس مَنٛز مَدَتھ کٔرِتھ، یُس ییٖسٹ اِنفیکشنَن نِش بَچاونَس مَنٛز مَدَتھ کٔرِتھ ہیٚکہِ۔\n4. اَکِس سٲتھی سۭتۍ نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ نزدیٖکی تہٕ رِشتہٕ ہٕنٛدِس مَحسوٗسَس بَڈاونَس مَنٛز مَدَتھ کٔرِتھ۔\n\nییٚتہِ چھِ کیٚنٛہہ وَجہٕ دِنہٕ آمٕتۍ زِ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1634, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0194", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Defining and characterizing system security.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0195", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لداخ: وزیر اعظم نریندر مودی یَن کوٚر جُمعہ دۄہ کانگریسَس پٮ۪ٹھ تنقید تہٕ ووٚنُن زِ اگنیویئر سکیمٕچ مُخٲلِفت کرن وٲلۍ چھِ برٛونٛہہ کالہِ دِفٲعی بجٹ گھوٹالن منٛز شٲمِل۔ \"تِم چھِنہٕ یژھان زِ فوج تہٕ آئی اے ایف گژھن خۄد مۄختار روزٕنۍ۔ یہِ کَتھ کٔر ؤزیٖر اعظم مودیَن دراسَس منٛز کرگِل وِجے دۄہ کِس موقعس پٮ۪ٹھ مُنعقد أکِس تقریٖبہِ منٛز خطاب کران۔ تٔمۍ ووٚن زِ موٗجوٗدٕ مرکزی حکومتن چھِ فوج جٔدیٖد بناونہٕ تہٕ تِہنٛدۍ تمام مسلہٕ حل کرنہٕ خٲطرٕ زمینی سطحس پٮ۪ٹھ قدم تُلۍمٕتۍ۔\n\"کانگریسن کٔر پننِس دورس منٛز فوجٕک مطالبہٕ نظر انداز، مگر موٗجوٗدٕ مرکزی حکومتن چھِ اتھ طرفہٕ بہتر کٲم کٔرمٕژ۔ اگنیویر سکیمَس پٮ۪ٹھ کَتھ کران ووٚن وزیر اعظمَن زِ \"یِم امہِ سکیمٕچ مُخٲلِفت چھِ کران تِم چھِ دراصل تِمے لوٗکھ یِمَو برٛونٛہہ کالہِ ساسہٕ بٔدۍ کرور رۄپیَن ہُنٛد دِفٲعی بجٹ گھوٹالہٕ کوٚرمُت۔ تٔمۍ ووٚن زِ یِم لوٗکھ چھِنہٕ یژھان زِ آئی اے ایف تہٕ فوج گژھن مضبوٗط تہٕ مستحکم", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 851, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0196", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کینٛہَن پیشَن منٛز چھُ زِیٛادٕ وزن منع کرنہٕ آمُت۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0197", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شِترن میانٮ۪ن دَندن\nبُسرِتھ پیٚہِ مو ہایے\nتٲرِی مٹَھٕم اِندرن\nکر بندن توشہِ خدایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0198", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ حٲضر کرَن ارساتَے\nتتہِ مارَن تہٕ لگنم دایے\nتتہِ جواب منگن درساتے\nیاوُن سوٗر تہٕ بُڈے بایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 96, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0199", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ أتھۍ منٛز ژٔج أمِس زورٕ ودن کریکھ نیٖرتھ تہٕ آیہِ فرشس پٮ۪ٹ لاینہٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0200", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was noisy, so I closed the window.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0201", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمن دیُت کِھلٲڑیَن مشورٕ زٕ تِم کرِن پنٛنین بہترین صلٲحیتَن ہُنٛد مُظٲہِرٕ تہٕ اہلہِ وطنَس ونُکھ زِ تِم کٔرِن’’چیئر فورانڈ یا ‘‘۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0202", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "20-2019 ؤریَس منٛز چِھ گاڈن ہٕنٛز پٲداوار سارِؤے کھۄتٕہ زیادٕ 14.16 ملین میٹر ٹن درٕج کرنٕہ آمُت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0203", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It writes code.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0204", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The idea is that stacked boosters increase the signal (or pressure drop) across the outlet, which introduces main-circuit fuel earlier than single-booster designs.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0205", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمال اوس سٮ۪منحز کُٹھِس کھڑا تہٕ اتھس منٛز کھہرن دِتھ مکٔژ ہٮ۪تھ اوس سلام نِس بدٕنس زینٕکۍ پٲٹھۍ فالہٕ وان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0206", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Located away from rest of the hospital, continuous negative air flow in the ward is maintained by an extraction system to prevent infectious agents from contaminating the rest of the facility.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 192, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0207", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ لیفٹیننٹ گورنر منوج سنہاہَن کوٚر بوموارِ دۄہ مارہ سب ڈویژنَس منٛز جھیری میلُک افتتاح تہٕ کوٚرُن بابا جیتو تہٕ بووا کوری ہٕنٛدٮ۪ن سمادھیَن ہُنٛد دورٕ۔\nاَتھ موقعَس پٮ۪ٹھ کوٚر منوج سنہاہَن یاترین باپتھ اکھ کمیونٹی ہال تہٕ 4 ماڈیولر بس سٹاپ وقف تہٕ ترٛٲوٕنۍ مارہ سب ڈویژنَس منٛز سی ایس آرَس تحت گۄڈٕنِکِس ‘انڈور سپورٹس کمپلیکسٕچ’ بُنیاد\nیہِ چھُ قٲبلِ ذِکر زِ جھیری مٲلہٕ یُس دَہن دۄہَن تام جٲری چھُ روزان چھُ پرٛٮ۪تھ ؤریہِ جمہِ کِس مضافاتَس منٛز واقعہٕ جھیری گامَس منٛز مناونہٕ یِوان۔\n‘X’ پٮ۪ٹھ أکِس پوسٹَس منٛز ووٚن لیفٹیننٹ گورنرَن: ‘اَز کوٚر مےٚ مارا سب ڈویژن جمِس منٛز جھیری مٲلُک افتتاح تہٕ بابا جیتو تہٕ بووا کوری ہٕنٛدٮ۪ن سمادھیَن ہُنٛد کوٚرُم دورٕ ‘۔\nپوسٹَس منٛز ووٚن تٔمۍ زِ: ‘اَتھ موقعَس پٮ۪ٹھ آو زائرینن باپتھ اکھ کمیونٹی ہال تہٕ 4 ماڈیولر بس سٹاپ وقف کرنہٕ، تہٕ سی ایس آرَس تحت آیہِ گۄڈٕنِکہِ ‘انڈور سپورٹس کمپلیکس’ ہٕنٛز سنگ بنیاد مارہ سب ڈویژنَس منٛز ترٛاونہٕ’۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 887, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0208", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پُلِ صراطس تارٕ ترٕ نو\nنُندٕ ریوٚش گژِھ تارونُے\nتتہِ ترنس چُھم آدر نو\nیا اللہ چُھس شرمندٕ چونُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 95, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0209", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالنہِ أچھ آسہٕ خونےٕ خوٗن۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0210", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دراندازی ہٕنٛزِ کوٗشِش، شَکاوَر حرکتَن تہٕ لائن آف کنٹرولَس سۭتۍ موسمی حالاتَن ہٕنٛدِ پیش نظر چھِ فوجَن پنٕنۍ نگرٲنی تہٕ گشت کِس نظامَس مٔزیٖد جٔدیٖد بناونہٕ خٲطرٕ ‘روبوٹک ٹیکنالوجی’ مُستقل طور تعینات کٔرمٕژ۔ یِم خودکار روبوٹ چھِ نہ صرف فوجی اہلکارَن لاجسٹک مدد فراہم کران بلکہ چھِ وۄنۍ سرحدی نگرٲنی نظامُک اکھ لٲزمی حصہٕ بنیمٕتۍ۔ فوجی ذرایعو مُطٲبِق چھُ روبوٹک سسٹم اکھ مِشیٖن یُس جدید مصنوعی ذہانت سۭتۍ لیس چھُ تہٕ یہِ ہیکہِ مُشکِل پہاڑی علاقن، شیٖنہٕ وتن تہٕ کمزور علاقن منٛز انسٲنی رہنمٲئی بغٲر کٲم کٔرِتھ۔ یِم روبوٹ چھِ فوجین بھارٕ سامان، ہتھیار، کھیٛن تہٕ ضروٗری طبی سامان دور دراز چوکیوں تام واتناونَس منٛز مدد کران۔ ذٔرایعَو وون زِ ‘آپریشن سینڈور’ دوران کٔر أمۍ روبوٹک ٹیکنالوجی غیر معمولی کارکردٕگی ہُنٛد مظٲہرٕ۔ اتھ کاروٲیی منٛز، یُس لائن آف کنٹرول نزدیٖک حساس علاقن منٛز کرنہٕ آو.", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 791, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0211", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He writes letters.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0212", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He wants rest.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0213", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She was nervous, but she spoke well.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0214", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تلنگانہ راشٹرا سمیتی چِھ واضح پٲٹھۍ ووٚنمُت زِ صدر تلگودیشم پارٹی مسٹر این چندرا بابو نائیڈو بناونٕہ پَنٕنۍ کُنۍ زٕنۍ حکوٗمت کنٕہ عظیٖم اتحادس منز شٲمِل جماعتَن سۭتۍ رٕلِتھ بناوَن حکوٗمت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 187, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0215", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The most frequent (≥ 1%) adverse reactions that led to permanent discontinuation in monotherapy studies were infection, haemorrhage, multi-organ failure, and VOD.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 162, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0216", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She sits near me.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 17, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0217", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "امٕک کنہہ طریقہٕ چِھ بیان آمت کرنہٕ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0218", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can go by car, or we can walk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0219", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was tired, so he went to sleep early.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0220", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کوٚل مو لگی رنگن تہٕ سنگن\nکوٚل مو ہنگن لگہِ نے آو\nکوٚل اَشُد لگی انگن\nدَرنہٕ عملہِ نتہٕ کوٚل کَتھ آو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0221", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ یہِ نیرِ ہا کالج گیٹہٕ نٮ۪بر مگر کھوژان اوس زِ نٮ۪برٕ چھُ پولیس رٔٹِتھ نِوان لہٰذا کوٚر نہٕ أمۍ گیٹہٕ نٮ۪بر نیرنُک جُرتےٕ لڑکہٕ تہٕ لڑکیہِ آسہٕ زبردست نعرٕ بٲزی کران۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0222", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Capital regulation seeks to address this by way of risk weights.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 64, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0223", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "از صُبحٲے سخٕت حِفٲظتی اِنتِظامَن درمیان سالانہٕ شری امرناتھ جی یاترا خٲطرٕ زائرین ہُنٛد ژوٗرِم قافلہ گوٚو بھگوتی نگر بیس کیمپ پٮ۪ٹھٕ کٔشیٖرِ کُن روانہٕ۔ سرکٲرِ ذٔرایعو دِژ اطلاع زِ بیٛاکھ قٲفلہٕ یَتھ منٛز 6,979 زائرین شٲمِل چھِ، گوٚو بَٹہٕ وارِ دۄہ صُبحٲے بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ 311 لۄکٹٮ۪ن تہٕ بجن گاڑیٚن منٛز کٔشیٖرِ کُن روانہٕ۔ تِمَو ووٚن زِ یِمَن زائرینن منٛز ٲسۍ 5,196 مرد، 1,427 زنانہٕ، 24 شُرۍ تہٕ 331 سادھو تہٕ ریشی۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 430, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0224", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She likes books.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0225", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مدھیہ پردیش کِس وزیر اعلیٰ ڈاکٹر موہن یادوَن ووٚن زِ مدھیہ پردیشٕچ وزیر اعلیٰ ممتا بنرجی پَزِ عوٲمی طور یہِ تسلیم کرُن زِ تٔمۍ سٕنٛزِ حکوٗمتَن چھِ غلطی کٔرمٕژ۔راتھ ژیرِ رٲژ پننِس بیانَس منٛز ووٚن ڈاکٹر یادوَن زِ مغربی بنگالٕچ وزیر اعلیٰ پَزِ کھُلہٕ پٲٹھۍ تسلیم کرُن زِ تٔمۍ سٕنٛزِ حکوٗمتَن ٲس غلطی کٔرمٕژ۔ کُنہِ تہِ بیٚنہِ یا کورِ سۭتۍ، سُہ تہِ ڈاکٹرَس سۭتۍ، یُتھ واقعہٕ چھُ قابل مذمت تہٕ افسوسناک ۔ یُتھ واقعہٕ گَژھِ نہٕ کٲنٛسہِ بیٚنہِ یا کورِ سۭتہِ گژھُن۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 457, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0226", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "This symposium aims to bring together world leading scientists in the field of cryoelectron microscopy, who will present and discuss their latest research and who will give a glimpse into the future of a field that is going through a revolution in technology that represents a quantum leap which had not been seen in ove...", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 323, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0227", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نکیٖر تہٕ منکر جوابس وَسن\nپربت ژَسن ہۄشَو سۭتی\nشوبہٕ وٕنِس پانس پتھر ٹھاسن\nکُنۍ سٕے زٔنِس تتہِ آوٕسن\nبُکر پٮ۪ٹھہٕ ییٚلہِ کفن کاسن\nسَرپھ تہٕ گُنسہٕ وسن سۭتی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 155, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0228", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی! ییٚتہِ چھِ کیٚنٛہہ بہترین ایکشن-ایڈونچر ویٖڈیو گیٖمَن ہٕنٛز فِہرِست [1][2]:\n* ٹامب ریڈَر\n* اسیسِنز کریڈ والہالا\n* ریزیڈنٹ ایوِل 4\n* بیٹ مین: آرکھم اسایلم\n* ماروَلز گارڈینز آف دی گیلیکسی\n* دی لاسٹ آف اَس\n* مِڈل ارتھ: شیڈو آف مورڈور\n* اَنچارٹِڈ: لیگیسی آف تھیوٗز کلیکشن\n* سٹار وارز جیڈی: فالن آرڈر\n* ماروَلز سپایڈر مین/مایلس مورالز\n* ایلڈن رِنٛگ\n* گاڈ آف وار: راگناروک\n* گھوسٹ آف سُشیما\n* دی لیجنٛڈ آف زیلڈا: بریتھ آف دی وائلڈ\n* ہورایزن زیرو ڈان\n\nیِمَن ٹاپ ایکشن-ایڈونچر گیٖمَن ہُنٛد اِستِمال کٔرِو تاکہ تُہۍ ہیٚکو سارِوٕے کھۄتہٕ زیٛادٕ پسند کَرنہٕ آمُت گیٖم ژھانٛڈِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 575, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0229", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سُہ اوس پاوان یاد زِ شاید چھےٚ مےٚ یہِ کتہِ تام وُچھمٕژ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0230", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Antioxidative flavonoids from the leaves of Morus alba.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0231", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Understand how to let go of the past and practice non-attachment.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 65, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0232", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She was busy, so she could not come.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0233", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر تتھ برعکس تُج یِموٕے دۄشویو لولہٕ والٮ۪و یِمن ٹھیکہٕ درن خلاف علم۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0234", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They tried again, and they succeeded.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0235", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس کُپواڑہ ضِلعہٕ کِس کَرمھورا زچلدرہ جنٛگلی علاقس منٛز گوٚو سیکورٹی فورسَن تہٕ دہشت گردن درمِیان مُقابلَس منٛز اکھ نامعلوم دہشت گرد مارنہٕ۔\n\nیہِ چھُ ییٚمہِ ؤرۍ یہِ کٔشیٖرِ منٛز مارنہٕ آمُت گۄڈنیُک ملی ٹنٹ۔\n\nیہِ مُقابلہٕ گوٚو ژٔنٛدٕروارِ دۄہ صُبحٲے کُپواڑہ کِس کرمہورا زچلدرہ جنٛگلی علاقَس منٛز سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان تلاشی کاروٲیی دوران شُروٗع۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 380, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0236", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I have a pen.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0237", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نَیہِ دِلہِ: ؤزیٖر اعظم نریندر مودی، پارٹی صدر جے پی نڈا، ؤزیٖر دِفاع راجناتھ سِنٛگھ تہٕ ؤزیٖر دٲخلہٕ امیت شاہن کٔر بَٹہٕ وارِ دۄہ پارٹی ہیڈ کوارٹرَس منٛز بی جے پی زیرِ اقتدار ریاستَن ہٕنٛدٮ۪ن ؤزیٖرِ اعلیٰ سٕنٛدِس اجلاسَس منٛز شرکت۔\nپارٹی ہٕنٛدۍ وزیر اعلیٰ تہٕ مُختٔلِف رِیاستَن ہٕنٛدۍ نٲیِب وزیر اعلیٰ ٲسۍ نیتی آیوگ چہِ سٹیئرنگ کمیٹی کِس نٔوِمِس اجلاسَس منٛز شِرکت کرنہٕ خٲطرٕ دارالحکوٗمتَس منٛز۔ بی جے پی یَن چھِ پننہِ پارٹی ہٕنٛدٮ۪ن ؤزیٖرِ اعلیٰ تہٕ نٲیِب ؤزیٖرِ اعلیٰ سٕنٛز اکھ کونسل تہِ بنٲومٕژ۔ اجلاسُک اہتمام اوس امی کونسلَن کوٚرمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 540, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0238", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When the wrath of king Ahasuerus was appeased.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0239", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژےٚ چھےٚ نازٮ۪و۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0240", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أمۍ کٔر پنچلاٮٔٹ زٲلِتھ گام کہِ وٮ۪قارٕچۍ حفاظت۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0241", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was cloudy, so the sky looked gray.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0242", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پَژھ کٔرٕم نہٕ آیَن حدیٖثَس مَسلَس\nزَلس منز گوس مَژھ زَن تارے\nزونُم نہٕ وُگہٕ وونۍ سوٗرُم ڈلس\nویر میٲنۍ کتھ شاٹھس لارے\nپانژھ دۄہ دُنۍیا دِژون زَلس\nآش ییٚلہ منگہِ تہٕ اسہِ کیا لارے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 179, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0243", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتمٮ۪و دۄیو دۄہو پٮ۪ٹھ بٔڑِس پٲمانَس پٮ۪ٹھ روٗد پٮ۪نہٕ پتہٕ چھُ وادی کشمیرُک موسم خوشگوار ییٚمہِ سۭتۍ لوٗکَن 15 دۄہَن تام شٔدیٖد گرم لہرٕ نِش راحت میٖج ۔ أتھہِ دوران چھُ موسمیات محکمَن 11 پٮ۪ٹھ 13 جولائی تام گرم تہٕ مرطوب موسمٕچ پیشین گوئی کٔرمٕژ۔ کٔشیٖرِ ہٕنٛدِس موسمَس مُطٲبِق چھُ سرینگرَس منٛز پٔتمہِ ژوُہَن گھنٹَن منٛز 2.6 ملی میٹر روٗد رِیکارڈ کرنہٕ آمُت۔ وادی کٮ۪ن مشہوٗر سیاحتی جاین گلمرگ تہٕ پہلگامَس منٛز آو بِلترتیب 12.6 ملی میٹر تہٕ 2.4 ملی میٹر روٗد درٕج کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 474, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0244", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالن وُچھ ثریاہس کُن بس اکی پھیرِ تہٕ اکھ زہر برٕژ اَسن ترٛاے ٲس جمال سٕنٛدِس بُتھِس پٮ۪ٹھ نژان تہٕ اَمہِ پتہٕ اوس سلام نِس جسمس انگ انگ ژٹان تہٕ بار بار اوس مکژِ سۭتۍ سلامس فلہٕ کران تہٕ ثریا ٲس اکہِ کنہِ مُرژِ ہٕنٛدۍ پٲٹھۍ سٲرۍ سےٕ کُٹھس تہٕ وارٕ وارٕ ووت یہِ خوٗن ثریاہس نذدیک۔", "domain": "novel", "length_bucket": "long", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 281, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0245", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِم ملاقاتہٕ چھےٚ حٔقیٖقی تہِ آسان تہٕ خیٲلی تہِ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0246", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمو دۄشوٕیو کوٚر خاندر کرنُک فٲصلہٕ تہٕ یِمن اوس یقین زِ خواجہ طاروقی صٲب کرن یِمن اتھ خاندرس منٛز مدد تہٕ یِتھۍ نکاح پرنس پٮ۪ٹھ دِنۍ یِم محبتُک بجر تہٕ تمیُک ثبوٗت ہٲوِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 173, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0247", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄکھس مۄل چُھے چَنن تہٕ کھٮ۪نن\nنِندرِ مۄل چُھے اوخنن سۭتی\nریٚشن مۄل چُھے وارٮ۪ن تہٕ ونن\nککوَن مۄل چُھے پتھ کنٮ۪ن سۭتۍ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0248", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The concept applied Perceived Ease of Use (PEOU), Perceived usefulness (PU), Teaching Method (TM), task Technology Fit (TTF), Behavioral Attitude (BA) as factors influencing the use of the system (flipped learning).", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 215, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0249", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعظم نریندر مودی یَن کوٚر بۄموارِ دۄہ جنتا مٲدانَس منٛز مُنعقد أکِس تقریٖبَس منٛز اوڈیشہ حکوٗمتٕچ اکھ اَہَم پہل سبھدرا یوجنا شُروٗع، یُس اوڈیشہَس منٛز 2024 کٮ۪ن اِلیکشنَن دوران ریاست خٲطرٕ بھارتیہ جنتا پارٹی (بی جے پی) ہُنٛد اکھ اَہَم انتخابی وعدٕ اوس۔ اتھ تقریبہِ منٛز کٔر پوٗرٕ ریاستہٕ پٮ۪ٹھٕ 70,000 کھۄتہٕ زِیٛادٕ زنانَو حصہٕ، مودیَن ووٚن پنٛنِس خطبس منٛز زِ ناری شکتی (زنانَن ہُنٛد بااختیار بناوُن) چھُ اوڈیشا چہِ ترقی ہُنٛد اکھ بوٚڑ منتر تہٕ ریاستَس منٛز بی جے پی حکومتہٕ طرفہٕ شروع کرنہٕ آمٕژ سبھدرا یوجنا سۭتۍ ییٚتہِ زنانَن ہٕنٛز سمٲجی تہٕ اقتصٲدی سلامتی مضبوٗط گژھِ۔ اَمہِ سکیٖمہِ تحت یِن پرٛٮ۪تھ بیٚنِفشری کُل 50,000 رۄپیہِ قٕسمن منٛز مِلنہٕ، یِم سیٚدُے تِہنٛدِس بیٚنٛک کھاتَس منٛز ترٛاونہٕ یِیہِ۔ تٔمۍ کوٚر بی جے پی کِس قیادتس منٛز نٔیِس حکومتس اوڈیشہَس منٛز اکھ کرور کھۄتہٕ زِیٛادٕ ماجہِ تہٕ بیٚنٮ۪ن سبھدرا یوجنا ہُک فٲیدٕ واتناونس پٮ۪ٹھ اطمینانُک اِظہار۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 871, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0250", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں: ڈیموکریٹک پروگریسو آزاد پارٹی (ڈی پی اے پی) صدر تہٕ سٲبقہٕ وزیر اعلیٰ غلام نبی آزادَن ووٚن زِ مرکزی حکومت چھِ جموں و کشمیرَس منٛز عسکریت پسندی سۭتۍ لڑنہٕ خٲطرٕ موثر قدم تُلان۔ تٔمۍ ووٚن زِ پٔتِمٮ۪ن دۄن رٮ۪تن منٛز چھُ عسکریت پسندی منٛز اچانک اضافہٕ گوٚمُت یَتھ پٮ۪ٹھ پریشٲنی ہٕنٛز ضروٗرت چھِ۔ تٔمۍ ووٚن زِ آرٹیکل 370 ہٹاوُن تہٕ جموں و کشمیر مرکزی زیر انتظام علاقس منٛز تبدیٖل کرٕنۍ ٲس مرکزی حکومتٕچ ساروِی کھۄتہٕ بٔڑ غلطی۔\nصدرَن کوٚر برٛسوارِ دۄہ رامبنَس منٛز صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اِظہار۔ تٔمۍ ووٚن زِ مرکٔزی حکوٗمتَن کٔر آرٹیکل 370 ختم کٔرِتھ تہٕ جموں و کشمیر مرکزی زیر انتظام علاقَس منٛز تبدیٖل کٔرِتھ اکھ بٔڑ غلطی۔\nجموں صوبَس منٛز بڑَن وٲلِس عسکریت پسندی مُتعلِق پرژھنہٕ پتہٕ ووٚن تٔمۍ ووٚن: \"جموں صوبَس منٛز چھِ عسکریت پسندی تیز گٔمٕژ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 763, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0251", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "از اوس رشید تہٕ سلیمہٕ یِمن نِش مدد منگنہٕ خٲطرٕ گژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0252", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted to go out, but it started raining.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0253", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When the news broke this week that Pope Benedict XVI was stepping down as the spiritual leader of 1.2 billion Roman Catholics because of his concerns about being able to do the job, many began to speculate that there were other reasons for the decision.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 253, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0254", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Bingo makes you think faster than non-players and keeps you more alert into old age, a researcher told a British Psychological Society conference.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 146, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0255", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Should You Be a CSP?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 20, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0256", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کرٛایِم برانچ کشمیر (سی بی کے) ہٕکۍ اکنامک آفینسز ونگَن چھُ گیس ایجنسی دھوکہ دہی کیسَس منٛز 38 لَچھن رۄپین ہُنٛد چارج شیٹ بڈگام عدالتَس منٛز دٲخٕل کوٚرمُت۔\nاکنامک آفینسز وِنگ ہٕنٛدۍ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سی بی کے یَن چھُ کۅکر بازر سرینگر کِس روزَن وٲلِس بشیر احمد شگو سٕنٛدِس نیٚچوِس زاہد بشیر شگوس عدالتَس منٛز چارج شیٹ درٕج کوٚرمُت، یُس وٕنکینَس ہاؤس نمبر 2، اندرابی کالونی، نارا بل ضِلعہٕ بڈگامَس منٛز چھُ، تہٕ بشیر شاگو سٕنٛز خانٛدارِنہِ شگفتس خٕلاف چھُ فرسٹ کلاس مجسٹریٹ بڈگام عدالتَس منٛز چارج شیٹ درٕج کرنہٕ آمُت۔ ایف آئی آر نمبر 21/2022 کِس سلسلس منز آر پی سی کِس متعلقہٕ دفعاتن تحت۔تٔمۍ ووٚن زِ مقدمُک آغاز گوٚو اکہِ تحریری شِکایتہٕ سۭتۍ یَتھ منٛز یہِ الزام اوس آمُت زِ مُلزِم زاہد بشیر شاگوَن اوس دھوکہٕ دِتھ گیس ایجنسی لاسنہٕ حٲصِل کرنُک وعدٕ کوٚرمُت، ییٚمہِ بدلہٕ شکایت کنندَن 3.8 لَچھ رۄپیہِ ادا کٔرۍ۔ پتہٕ دِژ مُلزِمن شِکایتَس نقلی تہٕ من بناوت دستاویز فراہم یِم اصلی لاسنہِ پٲٹھۍ پیش کرنہٕ آے۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 920, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0257", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تمو کیٛاہ دیُت سٲنس خانٛدانس؟", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0258", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can join us, or you can leave now.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0259", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خراب موسمی حالات وٗچھِتھ چھِ شُمٲلی کشمیر کِس کپواڑہ ضِلعس منٛز اِنتِظامیاہَن 17 مارٕچ 2025 ہَس تام واریٛاہَن پہٲڑی علاقَن منٛز تمام سکوٗل بنٛد کرنُک فٲصلہٕ کوٚرمُت\n\nضلع مجسٹریٹ کپواڑہ کِس ایکس ہینڈلَس پٮ۪ٹھ أکِس پوسٹَس منٛز چھُ وننہٕ آمُت زِ لگاتار روٗد تہٕ شیٖن پینہٕ کِنہِ چھُ ضلع انتظامیہ کپواڑہَن 17 مارٕچ 2025 تام مجھل، کیران، بدنبل، کمکڑی، جماگنڈ تہٕ کرناہ کٮ۪ن پٮ۪ٹھمٮ۪ن علاقن منٛز تمام سکوٗل بند کرنُک فٲصلہٕ کوٚرمُت۔\n\nیہِ کَتھ گژھِ نوٹ کرٕنہِ زِ پٔتِمٮ۪و کینٛہَو دۄہَو پٮ۪ٹھٕ چھُ وادی کشمیر کٮ۪ن ہٮ۪رمٮ۪ن علاقَن منٛز وقفہٕ وقفہٕ سۭتۍ روٗد جٲری ییٚلہِ زَن مٲدٲنی علاقَن منٛز چھُ وقفہٕ وقفہٕ روٗد جٲری۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 610, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0260", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حضور صلی اللہ علیہ وسلمَن کوٚر سُہ سۄن حضرت سلمان فارسی رضی اللہ عنہَس حوالہٕ , اِتھ پٲٹھٮ۪ۍ گٔیِوتُہٮ۪ی آزاد تہٕ ؤتِو پَننٛسِ آقا صلی اللہ علیہ وسلم سنٛدٕس دامن پناہہِ منٛز ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0261", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ سۭتۍ لوٚگ اکھ خراش أہٕنٛزِ گردنہِ پٮ۪ٹھہٕ سیٖنس تام۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0262", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We want peace.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0263", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کندٮ۪و راتھ کھوٗژُکھ زَلس\nاَزلس کوٚت گژھَکھ بایَے\nیتھ دُنیہس رٕکہٕ زَلس\nیتھ زَلس ہو پٔژھۍ آیے\nزمیٖنہِ پھل بۄیہ کمس تہٕ آلَس\nییٚتہِ کۭتۍ آلٕژھۍ لد درٛایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 152, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0264", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کنَس دگ آسنہٕ وِزِ یا کَنَس منٛز آب گژھنہٕ وِزِ کانٛہہ دوا استعمال کرنہٕ برعکٕس صرف الٹہٕ پیدل پکن سۭتۍ نیرِ آب۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 112, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0265", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کٲوۍ کھیٚیہِ گوٗج کان ستتِس\nنیٚپتھس مرُن کندے\nبرٲرۍ ہُند لولٔر پٮ۪و کۄکر پوٗتِس\nاُتنِۍ بلاے تُتِس دۄندے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0266", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I like coffee, but I drink tea sometimes.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0267", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "These may be signs that your child has an autism spectrum disorder.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0268", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He reads slowly.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0269", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She makes art.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0270", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آگر ہۄکھن ، ہٮ۪نَر گرٛٮ۪زن\nتیٚلہِ مالہِ آسی واندر راج\nگدا غنی، مُہِم پیٚیہِ رازن\nہُنہِ گژھن منٛدورِ ، نزن ییہِ گاش", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0271", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید تھووُکھ ہسپتالکِس ساٮٔیڈ رومس منٛز۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0272", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ چھُ اَکھ سادٕ تہٕ لذیذ شکر قندی ہُنٛد ڈِش - بھُنیٚمٕتۍ شکر قندی [1]:\n\nاجزا:\n- 2-4 شکر قندی\n- 1 چمچ زیتوٗنُک تیل\n- 1/2 چمچ نوٗن\n- 1/4 چمچ کٲلۍ مَرٕچ\n- اِضٲفی ذائقہٕ خٲطرٕ پنٛنِس پسندٕ مُطٲبِق سبزی یا جڑی بوٗٹۍ (اختیٲری)۔\n\nطٔریٖقہٕ:\n1. اووَن 400 ڈِگری فٲرن ہایٹَس پٮ۪ٹھ گرم کٔرِو۔\n2. شکر قندی 1 اِنچ موٹۍ کُبَن مَنٛز کٔٹِو۔\n3. شکر قندی اَکھ کٹورَس مَنٛز تھاوِو۔ زیتوٗنُک تیل، نوٗن تہٕ مَرٕچ چھِٹِو۔\n4. باقٕے جڑی بوٗٹۍ، مَسالہٕ تہٕ سبزی یِتھٕ کٔنۍ زَن تھایم، لہسنٕچ لۄکٕٹۍ، مرٕچ، کٹِتھ پیاز شٲمِل کٔرِو تہٕ چَنٛگۍ پٲٹھۍ مِلاوِو۔\n5. قندی بیکِنٛگ شیٹَس یا روسٹِنٛگ پینَس پٮ۪ٹھ تھاوِو۔\n6. 15 مَنٹَن خٲطرٕ بھُنیو۔ قندی وُچھِو تہٕ ٹاس کٔرِو، تہٕ 15 مَنٹَن خٲطرٕ بیٚیِس وِزِ بھُنیو ییٚتہِ شکر قندی نرم تہٕ سۄنٛہری گژھہِ۔\n7. گرم آسَن وِزِ پیش کٔرِو۔\n\nیہِ چھُ کُنہِ تہِ کھٮ۪نَس خٲطرٕ اَکھ بۄڈ سائیڈ ڈِش تہٕ شکر قندی ہٕنٛدٮ۪ن قُدرتی ذائقَن ہُنٛد جشن چھُ۔ تُہۍ ہیٚکِو باقٕے مَشہوٗر شکر قندی ہٕنٛدۍ ڈِش یِتھٕ کٔنۍ زَن شکر قندی فرایِز، شکر قندی سوٗپ، شکر قندی کٔڑِ تہٕ شکر قندی کیسرول [2] تہِ آزماوِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 991, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0273", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سعودی عربس منٛز أکِس خوفناک حٲدثس منٛز گٔے عمرہ حاجین نِنہٕ واجِنہِ بسہِ ڈیزل ٹینکرَس سۭتۍ ٹاس لگنہٕ کِنۍ 42 حٲجی ہلاک ۔\n\nعرب خبر رساں ایجنسیَو ہٕنٛدیو رپورٹو مُطٲبِق گٔے أکِس خوفناک بس حٲدثس منٛز درجن وادٕ زائرین ہلاک ۔ یہِ بس یَتھ منٛز زِیٛادٕ تَر ہندوستٲنۍ زائرین ٲسی آیہِ ڈیزل ٹینکرَس سۭتۍ ٹکراونہٕ۔ سعودی وقتہٕ مُطٲبِق گوٚو یہِ حٲدِثہٕ رٲژ لگ بگ 11 بجہِ۔ مُبینہٕ پٲٹھۍ اوس بسہِ منٛز سوار زیادٕ تر مُسافِر ہِنٛدُستٲنہِ رِیاست تیٚلنٛگاناہٕکۍ ۔\n\nعرب میڈیا مُطٲبِق ٲسۍ سعودی عربَس منٛز عمرہ خٲطرٕ زائرین ژٔنٛدٕروارِ دۄہ صُبحٲے أکِس بسہِ منٛز مکہ پٮ۪ٹھٕ مدینہ گَژھان ییٚلہِ تِہٕنٛزِ بسہِ آئل ٹینکرَس سۭتۍ ٹاس لوٚگ، ییٚمہِ پتہٕ دۄشوٕنی گاڑٮ۪ن نار لوٚگ۔\n\nرپورٹَو مُطٲبِق چھُ تیٚلنٛگانہ ؤزیٖرِ اعلیٰ ہن بس حٲدِثس پٮ۪ٹھ صدمُک اِظہار کوٚرمُت تہٕ فوری تحقیٖقٕچ منٛگ کٔرمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 767, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0274", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I make tea.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0275", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پیا پر پُرش نہٕ سٲرۍ\nکوٗرۍ لَے کر آشس تہٕ وٲرۍ وٮ۪ن\nکٲلۍ ہَے زالہٕ نَے دوزخٕنۍ نٲرۍ\nلٔذِتھ ہَے پنُن تراوَکھ سور زن\nادٕ کیا تراوَکھ اشنۍ دٲرۍ\nکوٗرۍ لے کر آشس تہٕ وٲرۍ وٮ۪ن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 170, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0276", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تب خاک کے پردے سے انساں نکلتے ہیں.", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0277", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حمل ہؠکہ ذیابطیسک ٲستھ تہٕ آپریشن سۭتۍ چھِ زچگی ہنٛد اِمکان بڑان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 65, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0278", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چور چھُکھہٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0279", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ کینٛہہ کلاسک ڈِزنی فِلِم یِم وریَن پٮ۪ٹھٕ مَقبول گٔمٕتۍ چھِ [1]:\n- سنو وایِٹ اینٛڈ دی سیوَن ڈوارفس (1937)\n- سِنٛڈریلا (1950)\n- سلیپِنٛگ بیوٗٹی (1959)\n- بیوٗٹی اینٛڈ دی بیٖسٹ (1991)\n- دی لایَن کِنٛگ (1994)\n- ایٖلادین (1992)\n- دی لِٹِل میرمِیڈ (1989)\n- مُلان (1998)\n- پوکاہونٹاس (1995)\n- دی جنٛگل بُک (1967)\n- ڈمبو (1941)\n- پِنوکیو (1940)\n- بَمبی (1942)\n- ایٖلِس اِن وَنٛڈرلینڈ (1951)\n- پیٖٹَر پین (1953)\n- 101 ڈالمیشیَنز (1961)\n\nاُمید چھُ زِ تُہؠ کَرِو یِم کلاسک فِلِم وُچھِتھ اَصٕل وقت۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0280", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You are my friend.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0281", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ؤزیٖر اعظم نریندر مودیَن ووٚن بَٹہٕ وارِ دۄہ زِ الیکٹرانک تہٕ ڈیجیٹل ریکارڈَن سۭتۍ الیکٹرانک موڈس منٛز سمن سوزنُک نظام چھُ وۄنۍ قونوٗنی طور تسلیم کرنہٕ آمُت۔دۄن دۄہَن ہِنٛدِس نیشنل کانفرنس آف ڈسٹرکٹ جوڈیشری منٛز پننِس افتتاحی تقریرَس منٛز کوٚر مسٹر مودیَن نٔوۍ قونوٗن غلام نوآبادیاتی ذہنیت ہٕنٛدٮ۪و زنجیرو نِش آزاد قرار تہٕ ووٚن زِ الیکٹرانک تہٕ ڈیجیٹل ریکارڈَن چھُ انڈین ایویڈنس ایکٹَس تحت ثبوت پٲٹھۍ تسلیم کرنہٕ آمُت۔جناب مودیَن دِیُت انڈین سول ڈیفنس کوڈُک تہِ حوالہٕ تہٕ ووٚنُن زِ الیکٹرانک موڈس منٛز سمن سوزنُک نظام چھُ عدلیہَس پٮ۪ٹھ زیر التوا مقدمَن ہُنٛد بوجھ کم کرنہٕ خٲطرٕ جٲری۔مسٹر مودیَن ووٚن زِ اَمہِ علاوٕ چھِ تبدیٖلی خٲطرٕ واریاہ قدم تُلنہٕ آمٕتۍ۔ آزٲدی ہٕنٛدیٚن 70 ؤرۍ یَن منٛز گۄڈٕنِچہِ لَٹہِ چھِ مُلکَن قونوٗنی ڈھانچس منٛز یژھ بٔڑ تہٕ اَہَم تبدیلیہٕ کٔرمٕژ۔انڈین جوڈیشیل کوڈ کِس شکلہِ منٛز نٔوِس ہندوستٲنی عدالتی نظامُک حوالہٕ دِتھ ووٚن تٔمۍ زِ یِمَن قونوٗنَن ہُنٛد جذبہٕ چھُ \"شہری گۄڈٕنیُوک، گۄڈٕ عزت تہٕ گۄڈٕ انصاف”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 934, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0282", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر کِس ڈوڈا ضِلعَس منٛز گٔیہِ بَٹہٕ وارِ دۄہ أکِس سڑک حٲدثَس منٛز أکِس ڈرائیورَس سۭتۍ زٕ نفر ہلاک۔\n\nتفصیٖلَو مُطٲبِق پیوٚو اکھ ٹرک ڈی رجسٹریشن نمبر JK06-8747 سڑکہِ پٮ۪ٹھٕ تہٕ ڈوڈا کِس ملہوری علاقَس منٛز ڈوڈا-کشتواڑ شاہراہَس پٮ۪ٹھ پیوٚو 300 فٹ گٔنِس گھاٹَس منٛز، ییٚمہِ کِس نٔتیٖجس منٛز ٹرک ڈرائیور تہٕ أمۍ سُنٛد مددگار موقعہٕ پٮ۪ٹھ مارٕ گوٚو۔\n\nمرن والٮ۪ن ہٕنٛز شناخت چھِ محمد آصف ناوٕ سۭتۍ کرنہٕ آمٕژ، یُس افضل حاجم سُنٛد نیٚچُو، بھگوا بھاٹا ہُک روزن وول تہٕ ڈوڈاہُک امیر احمد لون اوس", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 494, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0283", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہو، برطانیہ چھُ اکھ بادشاہت۔\n\nموجودٕ بادشاہ چھُ بادشاہ چارلس III، یُس گۄڈٕ دی پرنس آف ویلز ناوٕ سۭتۍ زاننہٕ اوس یِوان، یُس 8 ستمبر 2022 ہَس منٛز پنٛنہِ ماجہِ، ملکہ الزبتھ II سٕنٛدِ مرنہٕ پتہٕ تختس پٮ۪ٹھ ووت۔ بادشاہت چھِ اکھ آئینی بادشاہت، ییٚمیُک مطلب چھُ زِ بادشاہ چھُ ریاستُک سربراہ، مگر قانون بناونُک تہٕ پاس کرنہٕ ہُنٛد اِختیار چھُ اکھ منتخب پارلیمنٹَس نِش آسان۔\n\nبرطانیہٕچ آئینی بادشاہتَس منٛز چھُ بادشاہُک کردار زیٛادٕ تر رسمی تہٕ علامتی۔ مُلکُک روزمرہُک اِنتظام چھُ پارلیمنٹَس منٛز منتخب نمائندن ہٕنٛدِ ذٔریعہٕ چلاونہٕ یِوان، یَتھ منٛز وزیر اعظم تہٕ پارلیمنٹٕکۍ رُکن شٲمِل چھِ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 584, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0284", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It goes up.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0285", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آلو ٹِکی چھُ اَکھ تٔلِتھ آلو کیک، یُس اَکھ مَشہوٗر پاکِستٲنہِ تہٕ ہِنٛدُستٲنہِ سبزی خور سٹریٹ فوڈ چھُ۔ آلو ٹِکی خٲطرٕ چھُ اَکھ سادٕ ریسیپی:\n\nاجزا:\n- 500 گرام کٔچِہ آلو، چھِلِتھ\n- 1/2 لۄکُٹ پیاز\n- 2 لۄکُٹ لہسن، کٔٹِتھ\n- لُوٗن ذایقہٕ مُطٲبِق\n- 2 چمچ دۄدٕ دار پاوڈر\n- 1.25 چمچ زیرٕ\n- 1/2 چمچ وۄزُل مرچ پاوڈر\n- 1/2 چمچ چاٹ مَسلا\n- 1/2 چمچ گرم مَسلا (اختیٲری)\n- 1 لۄکُٹ مۄٹھہٕ کٔٹِتھ تازٕ دۄدٕ دار\n- 1 چمچ مکھن یا گھی (اختیٲری)\n- 1 پوٗرٕ انٛڈٕ\n- تیٖل، کَم تٔلنہٕ خٲطرٕ [1]\n\nطٔریٖقہٕ:\n1. آلو تٔلِتھ یا بخار دِتھ رَنٛگِو ییٚتہِ تام زِ تِم رَنٛگِتھ گژھَن۔ آب کٔڈِو تہٕ ٹھنٛڈٕ گژھن دِو۔\n2. آلو اَکھِس کٹورِس منٛز مَش کٔرِو۔ پیاز، لہسن، دۄدٕ دار تہٕ مَسلا دِتھ مِلاوِو۔\n3. آلو مِشرَن سۭتۍ 6 گول کٹلیٹ بَنٲوِو۔\n4. اَکھ انٛڈٕ اَکھِس کٹورِس منٛز پھٹٲوِو تہٕ اَکھس کُن تھاوِو۔ اَکھ پین درمیٲنی تٔپَس پٮ۪ٹھ تیٖلٕچ ہلکی چھڑکاو کٔرِتھ گرم کٔرِو۔\n5. پرٛٮ۪تھ کٹلیٹ انٛڈٕ مِشرَن منٛز ڈبوِو تہٕ پینَس پٮ۪ٹھ تھاوِو۔ درمیٲنی تٔپَس پٮ۪ٹھ تَقریٖبَن 5 مَنٹ رَنٛگِتھ دِو۔\n6. آلو اَکھس کُن پھیرِو تہٕ بیٚیِس کُن رَنٛگِتھ دِو، تَقریٖبَن 5 مَنٹ اَکھس کُن۔\n7. ییٚلہِ ٹِکی بۄزٕرِ گژھہِ تیٚلہِ کٔڈِو اَتھ نِش۔\n8. سَبٕز پُدینہٕ چٹنی سۭتۍ پیش کٔرِو [1].\n\nتُہۍ ہیٚکو آلو ٹِکی چاولَن سۭتۍ تہٕ باقٕے چاٹ چیزَن سۭتۍ پیش کٔرِتھ، تہٕ یِمَن سۭتۍ ہیٚکو سینڈوِچ یا ویج رول تہِ بَنٲوِتھ [1].", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1246, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0286", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میچ بکس چھِ وُنہِ تہِ تیار کرنہٕ یِوان مگر تِم چھِ نہٕ تِتھۍ مقبول یِتھۍ کٔنۍ زِ تِم ٲسۍ کُنہِ وِزِ [1]۔ لائٹرن تہٕ سگریٹ نوشی خِلاف مُختٔلِف صِحَتھ مُہِمَن ہٕنٛدِ بڈنٕچ وجہ سۭتۍ چھُ روایتی ماچسَن ہٕنٛدِس مارکیٹَس منٛز واریاہ کٔمی آمٕژ [1]۔ یہِ چھُ اَتھ کِنۍ زِ ہینڈ ہیلڈ لائٹر چھِ اِستعمال کَرنہٕ خٲطرٕ زیٛادٕ آسان تہٕ قابلِ اِعتماد [1]۔\n\nتاہم، ماچس بکس چھِ وُنہِ تہِ مُختٔلِف جاین پٮ۪ٹھ اِستعمال گژھان، یِتھٕ کٔنۍ زَن ریستوران، بار، ہوٹل، کیمپنگ، تہٕ بیروٗنی سرگرمیَن منٛز، یَتھ منٛز لائٹر دٔستیاب نہٕ آسہِ [2]۔ اَمہِ علاوٕ چھِ کیٚنٛہہ لوٗکھ ماچس بکس سجاوٹ خٲطرٕ یا جمع کَرنہٕ خٲطرٕ اِستعمال کَران [2]۔\n\nگِو اوے کِس طورس پٮ۪ٹھ تہِ مقبول، ماچس بکس چھِ وُنہِ تہِ مُختٔلِف کمپنین ہٕنٛدِ طرفہٕ اَکھ قٲبِلِ قدر پروموشنل چیز کِس طورس پٮ۪ٹھ تیار کرنہٕ یِوان [2]۔ یِم کمپنۍ چھِ یقیٖن کَران زِ ماچس بکس چھِ تِہنٛدٮ۪ن گاہکن تہٕ ہدف سامعین سۭتۍ جُڑنہٕ خٲطرٕ اَکھ یادگار تہٕ منفرد طٔریٖقہٕ [2]۔ اَمہِ علاوٕ چھِ ماچس بکس ہینڈ ہیلڈ لائٹرن ہُنٛد اَکھ پائیدار مُتبٲدِل تہِ [2]۔\n\nخُلاصہٕ کَتھ، ییٚلہِ زَن ماچس بکسَن ہٕنٛدِس پیداوارَس تہٕ اِستعمالَس منٛز مُختٔلِف وجوہاتَن کِنۍ کٔمی آمٕژ چھےٚ، تِم چھِ نہٕ پوٗرٕ پٲٹھۍ متروک، تہٕ وُنہِ تہِ چھِ تِمَن حالَتَن منٛز اِستعمال یا جمع کرنہٕ یِوان۔ تاہم، متبٲدِل نار شروٗع کَرنٕچ طٔریٖقہٕ چھِ روزمرہٕ زِنٛدگی منٛز زیٛادٕ عام گٔمٕتۍ [1][2]۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1265, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0287", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wants water.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0288", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پولیسَن وون زِ ممنوعہ تنظیمَن خلاف جٲری کاروٲیی چھِ سرینگرَس منٛز ممنوعہ جماعت اسلامی تہٕ حریت کانفرنسَس سۭتۍ وابستہٕ افرادَن ہٕنٛدٮ۪ن گَرن پٮ۪ٹھ تلاشٕچ کاروٲیی کرنہٕ آمٕژ۔پُلسہٕ ترجمانَن ووٚن زِ سرینگر پولیسَن کٔر ژٔندٕروارِ دۄہ واریاہَن مقامَن پٮ۪ٹھ مربوط تلاشٕچ کاروٲیی ۔ یِم مبینہ طور ممنوعہ جماعت اسلامی تہٕ حریت کانفرنسَس سۭتۍ وابستہٕ افرادَن سۭتۍ وابسطہٕ ٲسۍ۔ تٔمۍ ووٚن زِ یِم تلاشٕچ کاروٲیی آیہِ ژورَن نفرَن ہِنٛدٮ۪ن گَرن منٛز کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 441, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0289", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گنڈٕ ژڈنہٕ برٛونٛہہ چِھلکہٕ تُلنہٕ پتہٕ، اتھ دۄن حصن منٛز تقسیٖم کرِتھ کینٛہَس کالس آبس منٛز ترٛاونہٕ سۭتۍ چھُنہٕ أچھن منٛز آب پٲدٕ گژھان، ییٚلہِ زن گنڈٕ الٹہٕ ژٹنہٕ سۭتۍ چھُنہٕ پیاز ژٹنہٕ وِزِ أچھن اوٚش گژھان۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 210, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0290", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آبی ذخائر بندوبسُک قومی پروجیکٹ (NAQUM)", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 39, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0291", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کوٗر وٕد رسولِ خدایس زایے\nسۄے کوٗر زٮ۪نہٕ آیہِ عالمس شوٗب\nسۄے کوٗر شاہس باگٕنۍ آیے\nتٔسۍ اَتھہِ زایے زٕے اَپروٗب", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 111, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0292", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حضرتِ بابہٕ آدم مولوٗ\nامہٕ حوا تٔتی آوو\nادٕ کتھ دپُن ڈوٗنٛب واتُل تہٕ ژرٛولوٗ\nکولس ہم کول کیٛاہ ہٮ۪ڈِوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0293", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پنجاب گامنٛز آی ویٚکسیٖنس متعلق بروقت صحیٖح تہٕ شفاف معولوٗمات دِنہٕ باپَتھ اکھ اثردار رٲبطہٕ بیدٲری مُہمہِ ہِنٛز حکمت عملی اختیار کرنہٕ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 137, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0294", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He studied well, so he got good marks.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0295", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عام طور پٲٹھۍ چِھ مور سنٛز لٔٹ ۵۵ پیٹھہٕ ۷۲ انچ تام آسان ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 58, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0296", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زٕ زٔنۍ بیچھاے سٲوۍ دُکانس\nسودا سوٗر تہٕ پانس پانس گٔیے\nموٚر موریو زُو ژوٚل کیا بۄوے\nکندٮ۪و دِژتھس آسَن شَیے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0297", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We planned everything, but something went wrong.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0298", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I feel good.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0299", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر نیشنل کانفرنسٕکۍ صدر ڈاکٹر فاروق عبداللہَن کوٚر آتھوارِ دۄہ دعویٰ زِ این سی-کانگریس اتحاد ہٮ۪کہِ ییٚمہِ لٹہِ آسٲنی سان حکومت بنٲوِتھ۔\n\"اگر پی ڈی پی ہندوستان اتحادس منٛز شٲمِل گژھُن یژھان چھُ، بہٕ چھُس تِمَن مُبارک باد دِوان۔\nتٔمۍ کوٚر ییٚتہِ نامہ نِگارن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد\n\"یوٚتتھ تام ایکزِٹ پولن ہُنٛد تعلق چھُ، مےٚ چھُ یقین زِ جموں و کشمیرٕچ بیٛاکھ حکومت آسہِ ہندوستٲنی اتحادٕچ ۔\nہندوستان کِس اتحادس پی ڈی پی سٕنٛدِ حمایتہٕ مُتعلِق أکِس سوالُک جواب دِتھ ووٚن فاروق عبداللہَن زِ \"بہٕ چھُس یژھان تِمَن مُبارک باد دِنۍ، اللہ سٲری گژھن اَکی وتہِ پٮ۪ٹھ پکُن تِکیازِ جموں و کشمیر یکوٹہٕ تھاوُن چھُ وۄنۍ ناگزیر گوٚمُت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 640, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0300", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لُکھ پتہٕ پکن دُنیا ژوٗرن\nلاگن مسجِدَن تہٕ مقبرن باج\nکنہِ وۄتلن الہٕ کرٛنڈ بۄڈن\nسُے ہا مالہِ آسی واندر راج", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 106, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0301", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عوامی اتحاد پارٹی (اے آئی پی) کٔر پریس کلب سرینگرَس منٛز پریس بریفنگ یَتھ منٛز چیف ترجمان انعام النبی سٕنٛز قیادتَس منٛز نائب صدر ایڈووکیٹ جی این شاہین، جنرل سیکریٹری شہزادہ پرویز، ترجمان فردوس بابا، فنانس سیکریٹری پرویز بھٹ تہٕ ڈی ڈی سی مظفر ڈار، اعجاز لون تہٕ عقیب مشتاق ہٮ۪تھ سینئر رہنُما شٲمِل چھِ۔\n\nمیڈیاہَس سۭتۍ کَتھ باتھ کٔرِتھ کٔر اِنعم النبی یَن عمر عبداللہ پٮ۪ٹھ سخت تنقید تہٕ تٔمِس پٮ۪ٹھ الزام لگٲوِتھ زِ تٔمِس چھُ \"جموں و کشمیر کٮ۪ن لوٗکَن مُتعلِق پرٮ۪تھ معاملَس منٛز ہار مانُن”۔ تٔمۍ ووٚن زِ \"اگر عمر عبداللہ ایم پی بارامولا الرشید سُنٛد مشورٕ سنجیدگی سان نِیُن تہٕ ریاستُک درجہ بحال گژھنَس تام حلف تُلنس نِش انکار کٔرِہا، تیٚلہِ آسہِ وۄنۍ صورتحال واریاہ بدل۔ أسۍ کٔرِو نہٕ آز ریاستہٕ بناونٕچ درخواست۔”", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 715, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0302", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سپریم کورٹَن دِیُت برٛسوارِ دۄہ ذات پات کِس بُنیادس پٮ۪ٹھ قٲدٮ۪ن کٲم الاٹ کرنُک اصوٗل \"غٲر ٲیینی” قرار، تہٕ ووٚنُن زِ مُلکَس منٛز کُنہِ تہِ جیلَس منٛز ہٮ۪کو نہٕ ذات پات ہُنٛد امتیاز کٔرِتھ۔ یِتھۍ امتیازس فروغ دِنہٕ وٲلۍ تمام دفعات گژھن ختم کرنہٕ یِنۍ۔\nبیٚنچ کہِ طرفہٕ پیش گژھَن وٲلۍ جسٹس چندرچوڑَن ووٚن، \"مرکٔزی حکوٗمتُک جیل مینوَل۔ 2016 ہَس منٛز چھِ خٲمیہٕ۔ ذات پات کِس بُنیادس پٮ۪ٹھ گژھہِ قٲدٮ۪ن ہِنٛز درجہٕ بندی پٮ۪ٹھ پابٔنٛدی لگاونہٕ یِنۍ۔ \"\nبیٚنچن دِیُت یہِ حُکُم مہاراشٹرٛا کِس کلیان کِس روزَن واجیٚنہِ سُکنیا شانتا سٕنٛزِ عرضی پٮ۪ٹھ دِنہٕ۔ أمہِ سٕنٛزِ عرضی منٛز چھُ الزام زِ مُلکہٕ کٮ۪ن کینٛہَن رِیاستَن منٛز چھِ جیلٕک دستاویز ذات پات کِس بُنیادس پٮ۪ٹھ امتیازَس فروغ دِ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 676, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0303", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You feel cold.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0304", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَگرچہِ گاڈٕ چھِ عام طور اَکھ صِحَت مند غذا تہٕ ضروٗری غذٲیی اجزا ہُنٛد اَکھ بہترین ذٔریعہٕ ماننہٕ یِوان، مگر گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن صِحَتَس پٮ۪ٹھ منفی اثرات پٮ۪تھ۔ ییٚتہِ چھِ کیٚنٛہہ صِحَتَس مُتعلِق خدشات یِم گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن پٮ۪تھ:\n\n1. پارہٕ زَہر: کیٚنٛہہ قٕسمٕچ گاڈٕ، خاص کٔرِتھ بٔڑۍ شِکاری قٕسمٕچ گاڈٕ، ہیٚکن پنٛنِس ماحولَس منٛزٕ پارہٕ تہٕ باقٕے بٔڑۍ دھاتَن ہُنٛد زیٛادٕ مِقدار جَمع کٔرِتھ۔ زیٛادٕ پارہٕ وٲلۍ گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکہِ پارہٕ زَہرُک خطرٕ بَڈِتھ، یُس مرکزی اعصابی نِظامَس نُقصان واتناوتھ ہیٚکہِ۔\n2. آلودگی ہُنٛد خطرٕ بَڈُن: گاڈَن منٛز ہیٚکن باقٕے آلودگی تہِ آسِتھ، یِتھٕ کٔنۍ زَن پولی کلورینیٹِڈ بائی فینائلز (پی سی بی) تہٕ ڈایوکسین، یِم زیٛادٕ مِقدارَس منٛز کھٮ۪نَس سۭتۍ اِنسانَن ہٕنٛدِس صِحَتَس خٲطرٕ نُقصان دہ ہیٚکن آسِتھ۔\n3. اومیگا-3 فیٹی ایسِڈُک غٲر مُتوازِن: ییٚلہِ زَن گاڈَن منٛز لبنہٕ یِنہٕ وٲلۍ اومیگا-3 فیٹی ایسِڈ صِحَت خٲطرٕ فٲٮٔدٕ مَنٛد چھِ، تِہنٛدِس غٲر مُتوازِن غذاہَس سۭتۍ گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکہِ اومیگا-3 تہٕ اومیگا-6 فیٹی ایسِڈُک غٲر مُتوازِن آسِتھ۔ اومیگا-3 ہُنٛد زیٛادٕ اِستعمال ہیٚکہِ خوٗن جَمَنَس پٮ۪ٹھ اثر کٔرِتھ، خوٗن بہنُک خطرٕ بَڈٲوِتھ، تہٕ کیٚنٛہہ دَواہَن سۭتۍ ہیٚکہِ تعامُل کٔرِتھ۔\n4. شُرٮ۪ن تہٕ حامِل زنانَن خٲطرٕ خطرٕ: شُرٮ۪ن تہٕ حامِل زنانَن ہیٚکہِ گاڈٕ سۭتۍ زیٛادٕ پارہٕ لگنُک خطرٕ بَڈِتھ۔ پارہٕ ہُنٛد زیٛادٕ مِقدار ہیٚکہِ بَڈَن وٲلِس جنینَس نُقصان واتناوتھ یا لۄکچَن شُرٮ۪ن منٛز اعصابی نِظامَس نُقصان واتناوتھ۔\n\nیِمَن خطرَن علاوٕ، گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن ہضم کَرنَس منٛز تہِ مُشکلات پٮ۪تھ، یِتھٕ کٔنۍ زَن مِچلی، قے، تہٕ دَست۔ اَتھ کِنۍ چھُ ضروٗری زِ گاڈٕ تہٕ سمندری غذاہُک صِحَت مند غذا تھاوُن، بغٲر زیٛادٕ کھٮ۪نَس۔\n\nیو ایس فوڈ اینڈ ڈرگ ایڈمنسٹریشن (ایف ڈی اے) چھُ سَفَر کَرن وال", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1672, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0305", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژَندُن ژٔٹِتھ اَرٕکھُل رُوَکھ\nتَتھ کوتاہ پھل بۄوِی\nدُپہٕ ترٲوِتھ گندُھک وُدَکھ\nژےٚ کۄسو برانٛت چھیٚیی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0306", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مینٕتھ کٔرِو کھیٚنُک استعمال:", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0307", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یُس برابر ستہِ وُہرۍ بیٚیہِ زندٕ گوٚمُت اوس۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0308", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ایم او ایس برگرُک ہیڈکوارٹر چھُ تھنک پارک ٹاور، 2-1-1 اوساکی، شیناگاوا-کو، ٹوکیو 141-6004 جاپانَس منٛز واقع۔ یہِ چھُ ٹوکیو کِس شیناگاوا ضلعَس منٛز واقع۔\n\nایم او ایس برگر چھُ اکھ جاپٲنۍ فاسٹ فوڈ ریستوران چین یُس پنٛنٮ۪ن ہیمبرگرَن، فرایَن تہٕ مِلک شیکَن خٲطرٕ زاننہٕ چھُ یِوان۔ یہِ آو 1972 ہَس منٛز قٲیِم کرنہٕ تہٕ اَز چھُ اَتھ جاپانَس تہٕ بیرون مُلکن منٛز 1,400 کھۄتہٕ زیٛادٕ ریستوران۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 384, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0309", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَندوَن روٗزِتھ کند کپٲوٕم\nاول مےٚ نا بَنووُم گۄپھے\nاُندٕ مل کٕنِتھ درشن دیووُم\nقبرِ ہٕنز لحد ہٲوٕم گۄپھے\nکۄنگہٕ تِہ کوفوٗر تن نٲوٕم\nاشونٛچ پرکتھ سٲوٕم گۄپھے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 157, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0310", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتمیٚن دۄن ؤرۍ یَن منٛز چھِ مختٔلف درخواستن پٮ۪ٹھ گژھن واجنہِ پیش رفت چھِ جدول 3.1 منز وُچھنہٕ آمُت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0311", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیمسٹری منٛزکٔر کُل ۲۱ طالباہو ت شرکت تہٕ ۸ طالباہوکٔر امتیٲزی کامیٲبی حٲصل تہٕ درجہٕ اولس منٛز۱۲ طالباہو کٔر کامیٲبی حٲصل ییلہِ زَن کہِ بائیو کیمسٹریس منٛز کٔر ۲۶ طالباہو شرکت تہٕ ۱۱ طالباہو کٔر امتیٲزی کامیٲبی حٲصل تہٕ درجہِ اولس منٛز کٔر ۱۲ طالباہو کامیٲبی حٲصل۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 265, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0312", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر خزانہ نرملا سیتارامن دِژ بۄموارِ دۄہ کانگریس اکھ \"نعرہ دِنہٕ واجیٚنۍ جماعت” قرار تہٕ ووٚن زِ یہِ چھِ وۄنۍ کُنہِ تہِ موضوعَس پٮ۪ٹھ مشورٕ کرنہٕ ورٲے نعرٕ لگاوُن شروٗع کران۔ییٚتہِ نامہ نِگارن سۭتہِ أکِس غٲر رسمی کَتھ باتھِ منٛز آیہِ سیتارامن کانگریس کہِ یونیفائیڈ پنشن سکیم (یو پی ایس) یوٗ ٹرن قرار دِنہٕ کِس اعلانَس مُتعلِق پرژھنہٕ۔تٔمۍ ووٚن زِ اِتحادُک چھُنہٕ حکوٗمت کِس کُنہِ تہِ فٲصلَس پٮ۪ٹھ کانٛہہ تہِ اثر۔ \"وزیر اعظم نریندر مودی یَن چھُ واضح پٲٹھۍ ووٚنمُت زِ سون اتحاد چھُ سیوٚدُے لوکَن سۭتۍ تہٕ فٲصلہٕ چھِ صرف لوٗکَن ہٕنٛدِ مفادَس منٛز نِنہٕ یِوان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 557, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0313", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گردنہِ یُس زخم لوٚگُس تتھ اوس رتھ وسان تہٕ یہِ رتھ لاریوس سٲرۍ سےٕ جسمس۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 72, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0314", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مذہبی عقیدٕ چھِ دُنیاہَس منٛز واریاہ مُختٔلِف، تہٕ واریاہ مذہب تہٕ عقیدٕ چھِ مُختٔلِف عقیدٕ تہٕ رِواجَن سۭتۍ۔ ییٚتہِ چھِ کیٚنٛہہ اہم مذہبی عقیدٕ:\n1. **توحید**: یہِ عقیدٕ چھُ زِ صِرِف اَکھ اعلیٰ ہستی چھِ یُس خۄدا چھُ [1]۔\n - **عیسٲیِیت**: اَکھ توحیدی مذہب یُس خۄدا سٕنٛدِس نیٚچوِس، ییٚسوع مسیح سٕنٛدِس زنٛدگی تہٕ تٲلیٖمَن پٮ۪ٹھ مبنی چھُ۔ عیسٲیِیت چھِ ییٚسوعس پٮ۪ٹھ یٔقیٖن کٔرِتھ مۄحَبَت، معافی تہٕ نجاتَس پٮ۪ٹھ زور دِوان [1][2]۔\n - **اِسلام**: اِسلام چھُ توحیدَس پٮ۪ٹھ مبنی، یَتھ منٛز اَکھ خۄدا، اللہَس پٮ۪ٹھ یٔقیٖن کَرنَس پٮ۪ٹھ زور چھُ دِنہٕ آمُت۔ مُسلمان چھِ پیغمبر محمد سٕنٛدٮ۪ن تٲلیٖمَن پٮ۪ٹھ عمل کَران، یُس خۄدا سُنٛد پیغمبر تہٕ رٲسُل چھُ، یُس قرآن تہٕ حدیثَس منٛز چھُ بیان کَرنہٕ آمُت [1][2]۔\n - **یہوٗدِیت**: یہوٗدِیت چھُ یہوٗدی لوٗکَن ہُنٛد مذہب، یُس اَکھ خۄدا (یاہوے) تہٕ خۄدا تہٕ یہوٗدی برادری دَرمیان عہدَس پٮ۪ٹھ مبنی چھُ، یُس توراتَس منٛز چھُ درج کَرنہٕ آمُت [1][2]۔\n2. **کثرتِ الہَم**: یِمَن عقیدَٕن منٛز چھِ واریاہ خۄدٲیی یا دیوتاہَن ہٕنٛز پُجا شٲمِل، پرٛٮ۪تھ اَکھ چھُ خاص خصوٗصِیات تہٕ کردار تھاوان [1]۔\n - **ہندوٗیت**: ہندوٗیت چھُ اَکھ پیچیدٕ مذہب یَتھ منٛز خۄدٲیی تہٕ دیوی ہٕنٛدٮ۪ن مُختٔلِف ہستیَن ہُنٛد مجموعہٕ چھُ، پرٛٮ۪تھ اَکھ چھُ خۄدٲیی ہٕنٛدٮ۪ن مُختٔلِف پہلووَن ہُنٛد نُمٲیِندگی کَران۔ اَتھ منٛز چھِ مُختٔلِف عقیدٕ، رِواج تہٕ فلسفہٕ شٲمِل [2]۔\n - **یونٲنی مذہب**: قدیٖم یونٲنی لوٗکھ ٲسۍ خۄدٲیی تہٕ دیوی ہٕنٛدٮ۪ن ہستیَن ہٕنٛز پُجا کَران، یَتھ منٛز زیوس (خۄدٲیی ہُنٛد بادشاہ)، ایتھینا (دانٲیی ہٕنٛز دیوی)، تہٕ اپولو (آفتاب تہٕ فنُک خۄدا) شٲمِل چھِ [2]۔\n - **شِنٹو مذہب**: شِنٹو مذہب چھُ جاپانُک مقٲمی مذہب، یُس کامی ہٕنٛز پُجا سۭتۍ چھُ مُتعلِق، یِم رُوح یا دیوتا چھِ یِم قُدرتی عناصر تہٕ آباو اجدادَن سۭتۍ چھِ وابَستہٕ [4]۔\n3. **روح پرستی**: روح پرستی چھُ یہِ عقیدٕ زِ چیٖزَن، جانورَن تہٕ قُدرتی مظاہرَن منٛز چھِ رُوح یا روحٕ آسان [", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1751, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0315", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The London College of Communication experience is all about learning by doing.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 78, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0316", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They go fast.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0317", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اگر تُہُنٛد کُنہِ کٹ چھُ تھوٚڑٕ سَبٕز، تیٚلی ہیٚکہِ یہِ انفیکشنٕچ نشٲنی ٲسِتھ۔ یہِ چھُ ضروٗری زِ اَتھ کَرِو صِحَتٕچ دیکھ بھال کَرن وٲلِس نِش چیک کَرنہٕ تاکہ یقیٖنی بَنہِ زِ کانٛہہ انفیکشن چھُنہٕ۔ اَتھ دوران، کٔرِو زخم احتیاط س٭تۍ صٲف تہٕ علاج [1]. تُہُنٛد کٹ صٲف کَرنہٕ تہٕ بینڈیج کَرنہٕ خٲطرٕ چھُ اَتھ اَکھ قدم بہ قدم عمل:\n1. کٔرِو پنٕنۍ اتھ صابن تہٕ آبہٕ س٭تۍ چنٛگۍ پٲٹھۍ وۄش۔\n2. کٔرِو کٹ صابن تہٕ آبہٕ س٭تۍ صٲف۔\n3. کٔرِو کٹَس پٮ۪ٹھ اینٹی سیپٹِک مرہم یا محلول لاگوٗ۔\n4. کٔرِو کٹ بینڈیج س٭تۍ بَنٛد [1].\n\nیِمَن قدمَن پٮ۪ٹھ کٔرِو پرٛٮ۪تھ دۅہ عمل ییٚتہِ تام زِ تُہُنٛد کٹ ٹھیک گژھہِ۔ یقیٖنی بَنٲوِو زِ زخمٕچ انفیکشنٕچ باقٕے نشٲنیَن پٮ۪ٹھ تہِ کٔرِو نظر یِتھٕ کٔنۍ زَن [1]:\n- کٹَس اَطراف وۄزُل تہٕ سُوجَن\n- دَرد تہٕ نرمی\n- کٹَس اَطراف گرمی\n- کٹَس نِش پَس یا آب\n- تپھ\n\nاگر تُہۍ یِمَن منٛز کانٛہہ تہِ علامت وُچھِو، تیٚلی کٔرِو فۄرَن پنٕنِس ڈاکٹرَس نِش اپائنٹمنٹ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 856, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0318", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پولیسَن چُھ ضِلعہٕ اُدھم پوٗرَس منٛز اَکھ شراب فروش گِرِفتار کوٚرمُت تہٕ أمۍ سٕنٛدِ قبضہٕ منٛزٕ کٔرٕکھ غٲر قونوٗنی شرابٕچ 52 بوتلہٕ برآمد کرِ مژٕ۔ پُلیٖسٕکۍ رجُمانَن ووٚن أکِس رٲبطَس منٛز زِ پُلیٖس پوسٹ راؤنڈٕکہِ أکۍ ٹیٖمن رُکوو اکھ شخص أکِس چیک پوسٹَس پٮ۪ٹھ تاوی کٔدلَس نزدیٖک پیدل پَکَن وول ۔ تٔمۍ ووٚن زِ تلٲشی دوران آیہِ أمۍ سٕنٛدِ قبضہٕ منٛزٕ غٲر قونوٗنی شرابٕچ 52 بوتلہٕ برآمد کرنہٕ، ییٚمہِ پتہٕ سُہ گِرِفتار کرنہٕ آو۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 437, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0319", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آدم وۄپدووُن ژُۄباوے\nآبہٕ واوٕ نارٕ تہٕ میٚژے\nاَن ہٮ۪تھ اورَے پھٔٹِتھ آوے\nدُنیا روٚٹُن نالہٕ مَتے\nکٔنڈۍ ییٚلہِ گلنس وَرزٕنہِ واوے\nییٚتی آو تٔتی مۄژے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 148, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0320", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَتھ مشنس منٛز کٔر ۱۳ کرور مُلکہٕ کیٚن بٔسکیٖن دارن ہِنٛزِ شموٗلیتہِ اَتھ زبردس کامیٲبی حٲصل کرنس منٛز مدت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0321", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نشاور ادوِیاتن ہندِس باپٲرَن خٕلاف لڑایہِ جٲری تھوان چھِ جموں و کشمیر پولیسَن سامبا ضلعس منٛز أکِس بدنام نشاور ادوِیات باپٲر سُنٛد لچھَن روپین مۄلٕچ غٲر منقولہ جائیداد ضبط کٔرمٕژ۔ پُلیٖسٕکۍ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سامبا پولیسَن چھِ أکِس بدنام زمانہٕ نشاور ادوِیاتن ہندِس اکھ منزلہٕ رِہٲیشی مکان تہٕ أکِس بدنام نشاور ادوِیات باپٲر سُنٛد اکھ گاو شیڈ ضبط کوٚرمُت، ییٚمیُک مۄلٕچ 4.45 لَچھ رۄپیہِ چھِ۔ نشاور ادوِیاتن ہندِس باپٲر سٕنٛز شناخت چھے٘ شمس دین ، مرید علی سُنٛد نیٚچُو، یُس صوُر اڈا ، تحصیل باری برہمانہ ، ضلعہٕ کِس صوُر اڈا ہُک روزن وول اوس۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 556, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0322", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پوٗرٕ دُنیاہَس منز تیزی سان ترقی کرن وٲلِس مُلکس منز چِھ کینٛہہ خاندان یِمن زن خبر کٲتِہن رٮ۪تن اکِہ وقتٕچۍ ژۄٹ تِہ نصیٖب چِھنٕہ گژھان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 136, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0323", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You should study, or you may fail.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0324", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نندٕ سنز کہِ امرت مَٹَے\nاَسہِ دۄہَے چییٚوو کوٗتو\nکَوٕ دُبَے پھیوٗرُکھ یِکہٕ وَٹَے\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 106, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0325", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "How do we understand the hardening of Pharaoh's heart?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0326", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خبرو مُطٲبِق گوٚو بۄموارِ دۄہ شامَس پایان شہر کِس نوا بازار علاقَس منٛز تَمہِ وِزِ سنسنی ییٚلہِ أکِس منزلہٕ شاپنگ کمپلیکسَس منٛز نار لوٚگمُت اوس، ییٚمۍ انا فاناہَس منٛز واریٛاہ دُکان لٔگۍ۔", "domain": "news", "length_bucket": "medium", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 188, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0327", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سلیمہٕ ٲس مُدَے گٔنڈۍ گٔنڈۍ رشیدس وُچھان وُنہِ ٲس نہٕ رشیدن سلیمس سۭتۍ اکھ کتھ تہِ کٔر مٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0328", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We planned a trip, but we canceled it later.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0329", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It stretched 363 miles across New York State from the Hudson River in the east to Lake Erie in the west.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 104, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0330", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Creating a memory with loved ones?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0331", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پرانٕچ شراب چھِ نوٚو شراب کھۄتہٕ زیٛادٕ ذایقہٕ دار آسان، ییٚمِچ وجہ چھِ کیمیٲیی تہٕ طبعی عملَن ہُنٛد اکھ پیچیدٕ تعامُل یُس پرانٕچ عملہِ دوران چھُ گژھان۔ ییٚتہِ چھِ کیٚنٛہہ اہم وجوٗہات یِمَن کِنۍ پرانٕچ شراب چھِ واریاہ شرابٕچ شوقین لوٗکھ ترجیح دِوان:\n1. کیمیٲیی تعامُل: وقتس سۭتۍ چھِ شرابَس منٛز مُختٔلِف مرکبات کیمیٲیی تعامُلَن منٛز شٲمِل گژھان یَتھ منٛز شکر، تیزاب تہٕ کیمیٲیی مَواد شٲمِل چھِ یِمَن فینولِک مرکبات ونان چھِ۔ یہِ کیمیٲیی عمل چھُ بالآخر شرابَس ذایقہٕ دار اثر دِنٕچ صَلٲحِیَت تھاوان۔\n2. آکسیڈیشن تہٕ ریڈکشن: پرانٕچ عملہِ دوران آکسیجنَس سۭتۍ محدود تعامُل چھُ شرابَس گہرٲیی دِوان۔ اَتھ سۭتۍ ہیٚکہِ شراب پنٕنۍ کیٚنٛہہ میوٕ دار ذایقہٕ گُم کٔرِتھ تہٕ زیٛادٕ پیچیدٕ ذایقہٕ تہٕ خوشبو تیار کٔرِتھ۔\n3. ایسٹر بناوُن: وقتس سۭتۍ چھِ شراب الکحل تہٕ تیزابَن درمیان مُختٔلِف تعامُلَن سۭتۍ ایسٹر تیار کَران۔ ایسٹر چھِ غیر مستحکم مرکبات یِم شرابَس منٛز نرم تہٕ میوٕ دار خوشبو خٲطرٕ ذِمہٕ دار چھِ۔\n4. ذایقَن ہُنٛد اِکٹھا گژھُن: شرابٕکۍ مُختٔلِف اجزا یِتھٕ کٔنۍ زَن ٹینِن، میوٕ تہٕ اوک، چھِ پرانٕچ عملہِ سۭتۍ زیٛادٕ آسانی سۭتۍ اِکٹھا گژھان، ییٚمہِ سۭتۍ اکھ متوازن تہٕ مُتحد ذایقہٕ تہٕ ذایقہٕ چھُ حٲصِل گژھان۔\n5. مائیکروٗبِیل سرگرمی: مائیکروٗبِیا تہٕ شرابَس منٛز موٗجوٗد مرکباتَن درمیان تعامُل چھُ مجموعی ذایقہٕ تیار کَرنَس منٛز مدد کَران۔ یہِ چھُ خاص کٔرِتھ تِمَن شرابَن منٛز اہم یِم زیٛادٕ وقتس تام پران چھِ۔\n6. سیلرٕچ حالَت: یِم شراب صٔحیٖح درجہٕ حرارت، نمی تہٕ رۄشنی سۭتۍ بہترین حالَتَن منٛز تھاونہٕ چھِ یِوان، تِہنٛدِس ذایقَس منٛز چھُ تبدیلی یِوان۔ یہِ چھُ پرانٕچ شرابٕچ قسم خٲطرٕ تہِ ذِمہٕ دار۔\n7. ٹینِنَن ہُنٛد نرم گژھُن: نوٚو شراب، خاص کٔرِتھ وۄزُل شراب، ہیٚکہِ ٹینِنَن ہُنٛد زیٛادٕ سطح تھاوِتھ یُس کڑوٕ یا تیزابٕچ ذایقہٕ دِوان چھُ۔ پرانٕچ عملہِ سۭتۍ چھِ ٹینِن اِکہٕ وٹہٕ جُڑان تہٕ شرابَس منٛزٕ نٮ۪بر گژھان، ییٚمہِ سۭتۍ مُنہَس منٛز زیٛادٕ نرم تہٕ گول احساس چھُ گژھان۔\n\nپرانٕچ شراب چھِ نوٚو شراب کھۄتہٕ زیٛادٕ ذایقہٕ دار یا نہٕ، یہِ چھُ ذاتی ترجیحَس پٮ۪ٹھ مُنحَصِر۔ کیٚ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1870, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0332", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was kind, and everyone liked him.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0333", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was cold, and the wind was strong.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0334", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٕڈٕس پرٛنُن چُھے ۂسۍتِس کشُن\nداندس لٕشُن کُس تھوِ چاو\nمٕڈٕن مورکھن حظن توشُن\nمٔرِتھ سُہ کاوٕج تارٕکھو تاو\nکونہٕ صاحبِس مَنگو ارشُن\nچُھ سونتہٕ پھلس ورشُن واو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 158, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0335", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفس چُھے ونُک اَگہٕ زولےٕ\nنیرٮ۪س نہٕ پٔٹ کوٗٹ منزولٕے\nییٚمۍ ژوٚٹ اوٚن گجہِ زولٕے\nتٔمی شرعِ محمد پولُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0336", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بہار مظفرپور تہٕ سمستی پور کیٚن پنچایتَن منٛز چھٕ اسہِ نِش زنان سیلف ہیلپ گروپَو ہنٛدِ تِژھ مِثالہٕ موجوٗد یُس نہٕ صرف وارڈ کِس سطحَس پٮ۪ٹھ آب کہِ سکیٖمَن ہنٛدۍ منصوٗبہٕ بندی تہٕ لاگوٗ کرنَس منٛز چھٕ حصہ نِوان بلۍکہِ تِم چھٕ آبٕچ ٹیسٹنگ تہِ یقیٖنی بناوان۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 255, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0337", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مہاراشٹر کانگریسَن چھُ بھارتیہ جنتا پارٹی (بی جے پی) تہٕ وزیر اعلیٰ ایکناتھ شندے سنٛز حکومتَس پٮ۪ٹھ فضول خرچہٕ کرنُک الزام لگوٚومُت۔\nکانگریسَن چھُ حکومتَس پٮ۪ٹھ الزام لگوٚومُت زِ سُہ چھُ جلدٕی منٛز کرور رۄپیَن ہٕنٛدۍ ٹینڈر صاف کٔرِتھ \"زِیٛادٕ کھۄتہٕ زِیٛادٕ لوٗٹنٕچ جلدٕ” کران۔\nکانگریسٕکۍ ترجُمان اتُل لوندھیَن کوٚر برٛسوارِ دۄہ رٲژ میڈیا بیانَس منٛز الزام زِ امہِ سۭتۍ گوٚو تٔمۍ سُنٛد حکومتہٕ نٮ۪بر نیرنہٕ برٛونٛہہ منافعَس منٛز تٔمۍ سُنٛد حصہٕ یٔقیٖنی۔ تٔمۍ ووٚن زِ رِیاستی کابینہِ چھُ ڈیجیٹل پلیٹ فارمَن باپتھ اِشتِہارن خٲطرٕ 90 کرور رۄپیَن ہُنٛد ٹینڈر جٲری کوٚرمُت، تہٕ حکم دِیُت زِ یہِ رقم گژھِ پانٛژن دۄہَن انٛدر انٛدر خرچ کرنہٕ یِنۍ۔ اَمہِ علاوٕ چھِ کابینہِ ایس ایم ایس کہِ ذٔریعہٕ حکوٗمتٕکہِ فٲصلہٕ عوامَس تام واتناونہٕ خٲطرٕ 23 کرور رۄپیَن ہُنٛد بیٛاکھ ٹینڈر منظوٗری دِژمٕژ۔\n\"عوٲمی فنڈَن ہٕنٛدِس فضول خرچَس” پٮ۪ٹھ سخت تنقید کران ووٚن مسٹر لونڈھے یَن زِ ریاستَس چھُ 8 لچھ کرور رۄپیہِ کھۄتہٕ زِیٛادٕ قرضہٕ مگر حکومت چھِ کمیشن حٲصِل کرنہٕ باپتھ لاپرواہ ٹینڈر جٲری کران۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 974, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0338", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تَصویر چِھ بِلا شُبہ ٲمِس شخصَس بہٕ نسبت زیادٕ تیزی سان اکہٕ جایہٕ پٮ۪ٹھ دٔیِمہٕ جایہٕ واتان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0339", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ڈاٹ 1990 کہِ دہٲئی کِس ٲخرس تہٕ 2000 کِس شروعاتس منز۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0340", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can call me, or you can send a message.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0341", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خواجہ طاروقی صٲبن شاندار محل ’’خۄجہٕ بنگلچٕ شان تہٕ پر وقار حشمت‘‘ ٲس اَمہِ محلچہِ خوبصورتی کِنۍ نٔنۍ تہٕ نمایا۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 112, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0342", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غزٲلۍ أچھ برٕتۍ برٕتۍ رۄخسار پوشہِ ؤتھرن ہٕنٛدۍ پٲٹھۍ نوزُک رۄخسار۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 69, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0343", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمَن کن تِم سۄن نہٕ وُچھان\nیَمَن چُھے سۄن تِمن نہٕ کَن\nیِمن نہٕ شُرۍ تِمن نہٕ روژان\nیِمن شُرۍ تِمن نہٕ کُنہِ ان پَن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 116, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0344", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہو، بہٕ چھُس پہیلیَن سۭتۍ اَصٕل۔ اَکھ اے آی زَبان ماڈل آسِتھ چھُس بہٕ شُرٮ۪ن تہٕ بٔڑٮ۪ن ہٕنٛدٮ۪ن سوالَن خٲطرٕ پہیلیَن ہُنٛد حل کَرنہٕ خٲطرٕ پروگرام کَرنہٕ آمُت۔ کیٚنٛہہ مِثال چھِ یِم:\n\nسَوال: یُتھ زیٛادٕ تُہۍ چھِو نِوان، تَتھ زیٛادٕ چھِو تُہۍ پَتہٕ تھاوان۔ بہٕ کیٛاہ چھُس؟\nجواب: پٲدٕرۍ۔\n\nسَوال: یَتھ چابی چھِ مگر تالُکۍ چھُنہٕ کھوٗلِتھ ہیٚکان؟\nجواب: اَکھ پیانو۔\n\nسَوال: بہٕ چھُس لۄکُٹ وِزِ وۄنٛچ تہٕ بٔڑِ وِزِ چھُس لۄکُٹ۔ بہٕ کیٛاہ چھُس؟\nجواب: اَکھ شمع۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 453, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0345", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Smaller universities are being consolidated while professors have strict targets in terms of publications in peer-reviewed research journals.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 141, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0346", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The experiments ended in 1965.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 30, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0347", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We wanted to travel, but we had no time.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0348", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خدا تعالیٰ اوس تہٕ آسے\nسُہ ییٚتہٕ آرُت کٲنسہِ نہٕ\nنکس دٮ۪نہار روزی آسے\nأسۍ تس ژٮ۪تس سُہ اَسہِ نہٕ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0349", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پوشہِ متٮ۪ن یِمن ابدالن\nخۄش کلٔمن بوٗزِکھ معنے\nگوش رٔٹِکھ پٮ۪ٹھ سنگاسن\nیِمن لعلن مۄل کُس زانے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 93, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0350", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گۄن پرٛژھتو ژۄن دِشن\nمرنُن برٛٮ۪م تھوٚوُن آوٹو\nکینٛژو ڈیوٗنٛٹھ تہٕ کیٖنژۍ ڈیشن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0351", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بنگہٕ کٲنِس انٛبر ژھوٚٹُے\nویٖر کٲنِس پھل نو بۄوے\nگورٕ کٲنس انٛبر موٚٹُے\nوتہٕ کٲنِس اندوہ پیٚیے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0352", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عارضی شہرت وٲلۍ کھیٚن چھِ عارضی وزن کم کرنُک بٲعث بنان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0353", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرونگ سائز، یتھ أس ہیڈ مقدارس ونتھ ہیکو، چُھ خوراکچ مقدار یُس کھین کین چیزن ہنٛدس لیبلس پیٹھ غذائی معلوماتس سۭتۍ چُھ یوان دنہٕ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 127, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0354", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أندرٕ کروٗد تراوکھ نتہٕ\nنیٚبرٕ کروٗل کندے\nانتہٕ مل کاسَکھ نتہٕ\nچھوٚنۍ وۄتھہٕ بیٹھ کندے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 87, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0355", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I sleep early.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0356", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can watch a movie, or we can read a book.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0357", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریاٲس واریاہ کینٛہہ ونُن یژھانمگر ہیوٚکُننہٕ کینٛہہ ؤنِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 60, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0358", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اتھ و پار یولا تہٕ ایرادتم مہادیون انڈوس اسکرپٹہٕ چُھ دِیِسی اَنٛدازُک واننہٕ یِوان تہٕ تٔمِل لُکو ذریعہٕ چُھ یہٕ اِختیار کر نہٕ آمُت ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 135, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0359", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أہنزِ سیم تنہِ پٮ۪ٹھ ٲسۍ گُمبہٕ پھیرۍ ٹھسرایہِ پٮ۪وان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0360", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ قٕسمُک ڈرٛامٲٮٔی ظٲہِر چھُ تمام سنگم عٔشقی نظمن منٛز دٔستیاب۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0361", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہندوستان کِس دورٕ کرَن وٲلۍ متحدہ عرب اماراتٕک پارلیمانی وفدَن کوٚر آز پارلیمنٹ ہاؤس کمپلیکسَس منٛز لوک سبھا سپیکر اوم برلا سۭتۍ ملاقات تہٕ امِچ قیادت کٔر ہندوستان تہٕ متحدہ عرب اماراتَس درمیان ہندوستانٕچ تٲریخ تہٕ صدیو پرٛٲنۍ ثقافتی تہٕ ثقافتی شراکتُک حوالہٕ دِتھ محکمہ دفاع، ہوم اینڈ فارن افیئرز کمیٹی ہٕنٛدۍ چیئرمین ڈاکٹر علی رشید النامی یَن ۔ بِرلاہن ووٚن زِ آزٲدی پتہٕ چھُ دۄشوٕنی مُلکَن درمیان لوٗکَن درمیان رٲبطَس منٛز نمایاں اضافہٕ گوٚمُت، ییٚمہِ کِس نٔتیٖجس منٛز بٔڑِس تعدادَس منٛز ہندوستٲنۍ شہری متحدہ عرب اماراتَس منٛز روزان چھِ تہٕ چھِ اَمِچ ترقی منٛز اَہَم کِردار ادا کران۔ تٔمۍ کوٚر دۄشوٕنی مُلکَن ہٕنٛدٮ۪ن شہرین تہٕ لوٗکَن درمیان لوٗکَن سۭتۍ رٲبطَن ہُنٛد مُطالبہٕ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 679, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0362", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہ منعقد أکس اجلاسن نِش خطاب کران ووٚن ہریش راون زِ وزیر اعلی کے سی آر چُھ زنانن ہنٛز ترقی تہٕ فلاح و بہبود خٲطرٕ واریاہن سکیمن پٮ۪ٹھ عمل کران ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 147, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0363", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The land on which much of the present course stands is the site of a former open cast ironstone mine which was closed around 1874 for economic reasons.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 151, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0364", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ماجہِ زیٚوِ فروغ دِنہٕ تہٕ ترقی دِنہٕ خٲطرٕ حکوٗمتٕکۍ عظیم دعواہن درمیان، کٔر اسمبلی رُکنو قونوٗن ساز اسمبلی ہٕنٛدِس احاطس نٮ۪برٕ کٔنہِ میڈیاہس سۭتۍ کتھ باتھ تہٕ کوٚرُکھ کٲشرِ زبٲنۍ منٛز شایٮ۪ سپدن وٲلِس اخبارس روزنامہ کہؤٹس اشتہار بند آسنس پٮ۪ؠٹھ تشویش تہٕ افسوسُک اظہار، کشمیر پریس سروسٕکۍ نامہٕ نگار سٕتۍ کتھ باتھ کٔرِتھ ووٚن سینئر سیاست دان تہٕ بانڈی پورہٕکۍ ایم ایل اے، نظام الدین بٹن زِ کٲشِر زبان چھےٚ سٲنی شناخت تہٕ اخباریا باقی لۄکٕٹۍ اشاعت نظر انداز کرٕنۍ چھِ غٲر منصفانہٕ تہٕ غٲر اصولی۔ تٔمۍ دِیُت زور زِ یِمن گژھہِ زِیٛادٕ کھۄتہٕ زِیٛادٕ ترجیح دِنہٕ یِنۍ أتھۍ دوران ووٚن سینئر سیاست دان تہٕ ایم ایل اے عیدگاہ، مبارک گُلَن زِ کٲشرِ زبانہِ منٛز شایع گژھن وٲلِس اخبارس اشتہار نہ دِنۍ چھےٚ سانہِ ماجہِ زیٚوِ سۭتۍ ناانصافی تہٕ وونُن زِ اَتھ پٮ۪ٹھ چھُ دُبارٕ غور کرنٕچ تہٕ میڈیا پالیسی منٛز اتھ اہمیت دِنٕچ ضرورت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 820, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0365", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I am primarily interested in determining the component from the high voltage power lines near my house.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0366", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was angry, but he stayed quiet.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0367", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مان مو لگی پروردگارس\nکیا زیوٗنُم سمسارس زٮ۪تھ\nآدنہٕ ہوٗل لجٔم نہٕ آکارس\nکتھ رچھایم گرٕچی ژٮ۪تھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0368", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گنٛدنَس درٛۄکنَس منٛز تہِ چھِ ورزِش آسان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0369", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِسلامٕکۍ پانٛژھ بُنیاد چھِ عبادت تہٕ عملٕکۍ بُنیٲدی عمل یِم مُسلمانَن ہٕنٛدِس عقیدس تہٕ زنٛدگی خٲطرٕ مرکزی چھِ۔ یِم چھِ اِسلامی عقیدس تہٕ عملٕچ بُنیاد، یِم مُسلمانَن خۄدا سۭتۍ تہٕ پنٛنٮ۪ن سٲتھین سۭتۍ تعلقاتَس منٛز رَہنُمٲیی کَران چھِ۔ اِسلامٕکۍ پانٛژھ بُنیاد چھِ یِتھٕ کٔنۍ:\n\n1. شَہَدہ (ایمانُک اِقرار): شَہَدہ چھُ ایمانُک اِقرار تہٕ اِسلامُک سارِوٕے کھۄتہٕ بُنیٲدی بُنیاد۔ اَتھ منٛز چھُ گواہی دِنہٕ تہٕ دۄن سادٕ شَہَدَن (بیانَن) ہُنٛد اِقرار شٲمِل یِم یہِ عقیدٕ ظٲہِر کَران چھِ زِ \"اللہ سٕنٛدِ بَرابَر چھُنہٕ کانٛہہ دیوتا\" تہٕ \"محمد چھُ خۄدا سُنٛد رَسول\" [1].\n2. صلاَت (دُعا): صلاَت چھُ پانٛژھ روزانہٕ دُعا یِم مُسلمانَن عبادت تہٕ خۄدا سۭتۍ تعلق تھاونہٕ خٲطرٕ کَرنہٕ چھِ یِوان۔ یِم دُعا چھِ مکہٕ کِس کعبہَس کُن رُخ کٔرِتھ تہٕ دۅہَس تہٕ رٲژِ ہٕنٛدٮ۪ن خاص وقتَن پٮ۪ٹھ کَرنہٕ یِوان۔ پانٛژھ روزانہٕ دُعا چھِ فجر (سُہُب)، ظہر (دُپہر)، عصر (دُپہر پتہٕ)، مغرب (شام)، تہٕ اِشاء (رٲژ) ناوٕ سۭتۍ زاننہٕ یِوان۔ دُعا چھُ قُرآنٕچ گۄڈٕنِچ سُورت (سُرا) پرُن تہٕ چھُ کینٛہہ لٹہِ اَکھ لۄکُٹ قالین یا چٹائی پٮ۪ٹھ کَرنہٕ یِوان یُس خاص طور پٮ۪ٹھ اَتھ مقصدَس خٲطرٕ اِستعمال چھُ گژھان۔ مُسلمان ہیٚکَن کُنہِ تہِ جایہِ اکیلے دُعا کٔرِتھ یا مَسجِدَس منٛز اِکہٕ وٹہٕ، یَتھ منٛز اَکھ رَہنُما (امام) جماعتَس رَہنُمٲیی کَران چھُ [2].\n3. زَکَت (خیرات): زَکَت چھُ ضروٗرت مندَن دِنُک عمل تہٕ چھُ خیرات تہٕ سمٲجی ذِمہٕ دٲری ہُنٛد اَکھ عمل ماننہٕ یِوان۔ یِم مُسلمان مٲلی طور پٮ۪ٹھ قٲبِل چھِ تِمن چھُ پنٛنِس مالَس تہٕ جٲیِدَتَس منٛزٕ اَکھ خاص رَقَم کَٹاوُن پَکان تاکہ اِسلامی برادری ہٕنٛز مدد کَرَن، تہٕ یہِ چھُ عام طور پٮ۪ٹھ اَکھ فردٕچ مالِیَتُک 2.5% آسان [1].\n4. سَوَم (روزہٕ): سَوَم چھُ رَمضان رٮ۪تہٕ کِس دوران روزہٕ تھاونُک عمل، یُس اِسلامی قمری کیلنڈرُک نَوِم رٮ۪تھ چھُ۔ سَوَم چھُ رَمضانَس منٛز دۅہَس کِس وقتَس منٛز گژھان، سُہُب (فجر) پٮ۪ٹھٕ سُہُبَس تام (مغرب)، کھٮ۪ن، چیٖزَن تہٕ باقٕے جسمٲ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1762, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0370", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید صٲب مےٚ دی زٮ۪و معٲفی مےٚ پزِ ہا نہٕ چٲنۍ بے عزتی کرٕنۍ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 61, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0371", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گول میز کانفرنسٕچ صدارت کٔرترتیبہٕ سان جناب پی راملو سابق ڈائرکٹر جنرل آف پولیس , حسن_الدین احمد آئی اے ایس۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0372", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی! ییٚتہِ چھُ تُہٕنٛدِ خٲطرٕ اَکھ سادٕ سِپرِنٛگ رول ریسیپی یُس تُہۍ آزماوِتھ ہیٚکو:\n\n**بھرنُک مَواد**\nاجزا:\n- 2 کپ بٮ۪ن شوٗٹ\n- 6 شیٹیک مشروم\n- 2 تہٕ 1/2 چمچ اویسٹر ساس\n- 1 چمچ چِکن برٛوتھ (آب چھُ اَکھ مُناسِب بَدل)\n- 2 چمچ لایٹ سویا ساس\n- 1 چمچ چیٖنۍ\n- 2 چمچ تیٖل، سٹر فرایِنٛگ خٲطرٕ\n- 1/2 وۄزُل مرچ، ڈایس کَرنہٕ آمُت\n- 1 درمیٲنی گاجر، کٔرِتھ\n- لُوٗن تہٕ مَرٕچ، ذایقہٕ مُطٲبِق [1]\n\nطٔریٖقہٕ:\n1. پنٕنۍ سٲری اجزا کٔرِو پَتلی کٔرِتھ۔\n2. اویسٹر ساس، برٛوتھ، سویا ساس تہٕ چیٖنۍ اَکھ لۄکُٹِس کٹورَس منٛز مِلاوِتھ اَکھ کُن تھاوِو۔\n3. اَکھ فرایِنٛگ پینَس منٛز 2 چمچ تیٖل تھاوِو۔ ییٚلہِ تیٖل گَرٕم گژھہِ، تَتھ منٛز وۄزُل مشروم تھاوِو، تہٕ کینٛہہ منٹَن خٲطرٕ رَنٛگاوِو۔\n4. وۄزُل مرچ، بٮ۪ن شوٗٹ تہٕ گاجر پینَس منٛز تھاوِو۔ تُہۍ ہیٚکو پنٕنِس پسندٕچ باقٕے سَبزی تہِ تھاوِتھ۔\n5. ییٚلہِ سَبزی نیم پَکِتھ آسہِ، تَتھ منٛز اویسٹر ساس مِلاوِو تہٕ لُوٗن تہٕ مَرٕچ ذایقہٕ مُطٲبِق تھاوِو۔ مِلاوِو تہٕ بھرنُک مَواد اَکھ کُن تھاوِو [1].\n\n**رول بناونُک طٔریٖقہٕ**\nاجزا:\n- 18-20 سِپرِنٛگ رول ریپر\n- 1 انٛڈٕ، ہلکہٕ پٲٹھۍ پھٹِتھ\n- 4-5 کپ تیٖل، ڈیپ فرایِنٛگ خٲطرٕ [1]\n\nطٔریٖقہٕ:\n1. اَکھ ریپر تھاوِو ییٚمیُک اَکھ کُن تُہٕنٛدِس کُن آسہِ، پتہٕ کٔرِو کَنارَن پھٹِتھ انٛڈٕ سۭتۍ رَنٛگاوُن۔\n2. ریپرَس منٛز اَکھ لۄکُٹ بھرنُک مَواد تھاوِو۔\n3. ریپرُک بۄنِم کَنار بھرنُک مَوادَس پٮ۪ٹھ وۄپَر کُن تہٕ کٔرِو تہہ۔ اَمہِ پتہٕ، ریپرُک کھوُرِم تہٕ دٔچھِن کَنار مَرکَزَس کُن تہٕ کٔرِو تہہ۔ ٲخِرَس پٮ۪ٹھ، سِپرِنٛگ رول بۄنِم پٮ۪ٹھٕ وۄپَر کُن رول کٔرِو۔ اگر رول صٔحیٖح پٲٹھۍ بَنِتھ چھُنہٕ، تیٚلہِ کٔرِو زیٛادٕ انٛڈٕ مِلاوُن۔\n4. اَکھ بۄڈ سکیٹل یا ووک درمیٲنی گَرٕم پٮ۪ٹھ گَرٕم کٔرِو۔ پ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1538, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0373", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They open the gate.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0374", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You like coffee.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0375", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You stand here.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0376", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زنٛدگی نشۍ تنگ یِتھۍ چِھ مزوٗرو گرام پنچایتٕہ کِس دفترس قُلُف کوٚرمُت تاکِہ جل جل گژھِ مزوٗرن ہٕنز موٚزوٗرۍ جٲری کرنٕہ یِنۍ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 124, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0377", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نیشنل کانفرنسُک نٲیِب صدر عمر عبداللہ آو آز سری نگرَس منٛز منعقد این سی لیجسلیچر پارٹی کِس اجلاسَس دوران متفقہٕ طور وزیر اعلیٰ ہُنٛد وۄمیدوار مُنتخب کرنہٕ۔ این سی صدر فاروق عبداللہ سٕنٛزِ صدارت منٛز کٔر اجلاسَس منٛز جموں و کشمیرَس منٛز پننِس اتحادی پارٹنر انڈین نیشنل کانگریسَس سۭتۍ حکومت بناونَس پٮ۪ٹھ تہِ کَتھ باتھ۔ قونوٗن ساز اسمبلی ہٕنٛدۍ تمام نٔوۍ منتخب این سی ممبر ٲسۍ اجلاسَس منٛز موٗجوٗد، ییٚتہِ مخلوط حکومتٕک کم از کم مشترکہ پروگرامَس پٮ۪ٹھ بَحَژ آیہِ کرنہٕ۔ پارٹی ذرایعو مُطٲبِق کَرِ کانگریس جموں و کشمیرُک سربراہ طارق حمید قارا نَیہِ دِلہِ پٮ۪ٹھ واپس یِنہٕ پتہٕ جلدٕیہ پنٕنہِ أنٛدروٗنی اجلاس۔ وۄمید چھِ زِ کانگریس لیجسلیچر پارٹی (سی ایل پی) کرِ پنُن رہنُما انتخاب، ییٚمہِ سۭتۍ حکومت بناونَس پٮ۪ٹھ این سی یَس سۭتۍ مٔزیٖد کَتھ باتھِ ہٕنٛز وتھ ہموار گٔیہِ۔ حالٕے ختم گٔمٕتٮ۪ن اِلیکشنَن منٛز زینہِ کانگریسن شےٚ سیٹہٕ – کٔشیٖرِ منٛز پانٛژھ تہٕ جوٚمَس منٛز اکھ۔ اَکہِ لَٹہِ ییٚلہِ این سی تہٕ کانگریس دۄشوٕنی ہٕنٛدۍ رہنُما منتخب گژھَن", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 938, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0378", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تروٚش آدیش ژٮ۪تھہٕ اۄہر نٕے\nادٕ تِم أندرِم بَر وُژرنَے یِن\nپھل بۄوٮ۪کھ کلہٕ ترٲوِتھ کَمہٕ کرنَے\nادٕ تِم ژھٔرۍ بانہٕ برنَے یِن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0379", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کانگریس کِس سٲبقہٕ صدر راہول گاندھی تہٕ جنرل سکریٹری پرینکا گاندھی واڈراہن چھُ آگرہ-لکھنؤ ایکسپریس وے پٮ۪ٹھ خوفناک حٲدثس منٛز ہلاک گژھَن والٮ۪ن ہٕنٛدٮ۪ن عیالَن سۭتۍ سٮ۪ٹھاہ تعزیت ہُنٛد اِظہار کوٚرمُت تہٕ زخمیَن ہٕنٛدِ جلدی صحتیابی ہٕنٛز دُعا کٔرمٕژ۔ غمزدہ خاندانن سۭتۍ پننہِ گہری تعزیت ہُنٛد اِظہار کران چھُس بہٕ وۄمید کران زِ سٲری زخمی گژھن جلدی صحتیاب۔ اِنتِظامیاہس چُھ گُزٲرِش کرنہٕ یِوان زِ سُہ کَرِ زخمیَن ہِنٛدِس علاجَس منٛز پرٛٮ۪تھ مُمکِن\n\"لکھنؤ-آگرہ ایکسپریس وے یَس پٮ۪ٹھ أکِس خوفناک سڑک حٲدثَس منٛز واریٛاہ لوٗکَن ہٕنٛدِ مرنٕچ تہٕ واریٛاہ تعدادَس منٛز لوٗکھ زخمی گژھنٕچ خبر چھِ واریٛاہ افسوسناک ۔ خۄداے دِیہِ مرحومہٕ سٕنٛدِس روحَس سُکوٗن۔ غمزدہ خاندانن سۭتۍ چھِ میٲنۍ دِلی تعزیت۔ بہٕ چھُس زخمیَن ہٕنٛدِ جلدی صحتیابی خٲطرٕ دُعا کران۔ ‘", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 743, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0380", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالن ووٚن بڈٕ خشمہٕ سان أمِس کُن ’’ژٕ چھُکھنہٕ اَتھ لاکٹس قٲبل‘‘ جمالن ووٚن سرگوشی ٲس شہمار سٕنٛدۍ پٲٹھۍ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0381", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پولیس اوس جوابس منٛز اوٚش اَنن وول گیس چلاوان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0382", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The off-site wind and solar projects alone will produce enough electricity to meet about one third of that consumption overall, or more than 40 percent of its consumption in California (additional onsite renewable generation will bring the total to 50 percent in state).", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 270, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0383", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جنوبی کشمیر کِس شوپیاں ضلعس جموں صوبہٕ کِس راجوری تہٕ پونچھ ضِلعن سۭتۍ جوڑن واجٮ۪ن تٲریٖخی مغل روڈس پٮ۪ٹھ چھِ پٔتمہِ دۄیو ہفتَو پٮ۪ٹھ ٹریفک ہٕنٛز نقل و حرکت رُکاونہٕ آمٕژ۔ وۄنٛہِ گوٚو، سری نگر-جموں قومی شاہراہَس پٮ۪ٹھ دۄن طرفن ہٕنٛز ٹریفک نقل و حرکت، یوٚس وادی باقٕے مُلکَس سۭتۍ رَلاوان چھِ، چھِ معموٗلَس مُطٲبِق جٲری۔ ٹریفک حکامَو ووٚن زِ تٲریٖخی مغل روڈَس پٮ۪ٹھ چھِ ٹریفکٕچ نقل و حرکت وُنہِ تہِ بنٛد۔ تٔمۍ ووٚن زِ اَمہِ سڑکہِ پٮ۪ٹھ شیٖن کڑنٕچ کٲم چھِ پوٗرٕ پٲٹھۍ جٲری۔\n27 دسمبر آو سٮ۪ٹھاہ شیٖن پینہٕ کِنہِ مُغل روڈس پٮ۪ٹھ ٹریفک بنٛد کرنہٕ۔ پبلِک ورکس ڈپارٹمنٹ پوٗنچھَن چھُ سڑکَن ہُنٛد رٲبطہٕ بڑاونہٕ خٲطرٕ اکھ اَہَم قدم پٲٹھۍ مغل روڈ بارڈر روڈز آرگنائزیشن (بی آر او) بفلیاس پٮ۪ٹھٕ پیر کی گلی حوالہٕ کوٚرمُت۔ حکامَو ووٚن زِ سنتھن روڈ تہٕ بھدرواہ چمبا روڈَس پٮ۪ٹھ چھِ ٹریفکٕچ نقل و حرکت تہِ وُنہِ تہِ معطل ۔ تٔمۍ ووٚن زِ بی آر او طرفہٕ گرین سگنل مِلنہٕ پتہٕ یِیہِ سونامرگ-کرگِل سڑکہِ پٮ۪ٹھ ٹریفک چلنُک اِجازت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 909, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0384", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أکِس جورٕ چھَے طوطس ہٲرٕے\nگارِ عیشس اَتَے گتُو\nبیٚیِس رٔنۍ چھٚے پٲزَس برٲرٕے\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0385", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رۄخ ٲسِس امبٕرۍ ژوٗنٹھۍ ہی۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 27, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0386", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I want food.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0387", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Drilling on the Akie property by Canada Zinc Metals since 2005 has identified a significant body of baritic-zinc-lead-silver SEDEX mineralisation known as the Cardiac Creek deposit.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 181, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0388", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انتہٲئی پرجوش تہٕ دلکش رنگٕک پنکھ وٲلۍ مکاز طوطن ہنٛز لگ بگ ۲٠ قٕسمہٕ چِھ لبنہٕ یوان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0389", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I stand up.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0390", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "If every child could drift to sleep feeling wrapped in the love of their family – and God's love — this world would be a far more gentle and better place.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 154, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0391", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگر-جموں قومی شاہراہس پٮ۪ٹھ چھِ خراب موسمی حالاتَو باووٚجوٗد وادی کشمیرَس باقی مُلکَس سۭتۍ جوڑَن واجٮ۪ن ٹریفک ہٕنٛز نقل و حرکت جٲری۔\nٹریفک حکامَو ووٚن زِ قومی شاہراہَس پٮ۪ٹھ چھِ مُسافِر گاڑٮ۪ن ہٕنٛز دۄن طرفن ہٕنٛز نقل و حرکت جٲری، مگر بٔڑٮ۪ن گاڑٮ۪ن (مال بردار گاڑِیَن) چھُ آز یعنی جُمعہ دۄہ جموں پٮ۪ٹھٕ سری نگر گژھنُک اجازت۔\nتٔمۍ ووٚن زِ قومی شاہراہَس پٮ۪ٹھ مہاد، کیفیٹیریا تہٕ رامبن ہَس منٛز اَکہِ لینہٕ کہِ وجہ سۭتۍ چھُ ٹریفک منظم طریقہٕ سۭتۍ چلاونہٕ یِوان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 462, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0392", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We generate a signal with the same frequency as frequency of pins 5 and 6 and after each pulse we change the duty cycle(values from the vector) with an interrupt.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 162, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0393", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِقتدارس منٛز حکوٗمتس ہیٚچھِنایہِ تلنگانہُک عوام منٲسب سبق۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0394", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You should try again, or you will not learn.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0395", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The terminating lobe of the opercle is slightly emarginated behind, the membrane projecting immediately above the notch in the form of a short salient point.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 157, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0396", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can leave now, or we can stay longer.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0397", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میک ان انڈیا چُھ ہندوستانَس اکھ عالمی مصنوعات سٲزی مرکز بناونہٕ خٲطرٕ پوٗرٕ پٲٹھۍ تیار ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 88, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0398", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر کِس رٮ۪تہٕ کٲلِس راز دٲنۍ سرینگر کِس نوابزار علاقَس منٛز نار لگنہٕ کِس واقعَس منٛز گٔیہِ کم از کم شےٚ دُکان جلٲوِتھ، ییٚلہِ زِ نار بنٛد کرنٕچ کاروٲیی دوران گٔیہِ أکِس فائر مینَس سۭتۍ زٕ نفر زخمی\n\nخبرو مُطٲبِق گوٚو بۄموارِ دۄہ شامَس پایان شہر کِس نوا بازار علاقَس منٛز تَمہِ وِزِ سنسنی ییٚلہِ أکِس منزلہٕ شاپنگ کمپلیکسَس منٛز نار لوٚگمُت اوس، ییٚمۍ انا فاناہَس منٛز واریٛاہ دُکان لٔگۍ۔\n\nیہِ چھُ پتہ لبنہٕ یِوان زِ نار تہٕ ہنگٲمی اہلکار وٲتہِ فوراً موقعہٕ پٮ۪ٹھ تہٕ کٔرٕن نار بنٛد کرنٕچ کاروٲیی شُروٗع، مگر نار لگنہٕ کِس واقعَس منٛز گوٚو شیٚن دُکانَن نۄقصان ووتمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 576, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0399", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She likes music, and she sings well.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0400", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وَرماونٛٹَس منٛز چھُ کھاندرٕچ قانوٗنی وٲنٛس 18 ؤری۔ زٕ لوٗکھ یِمَن ہُنٛد وٲنٛس کم از کم 18 ؤری آسہِ، صٔحیٖح ذِہن آسہِ، تہٕ یِمَن ہُنٛد نزدیٖکی رِشتہٕ آسہِ نہٕ، تِم ہیٚکَن وَرماونٛٹَس منٛز سِوِل کھاندرٕچ لایسَنٛس حٲصِل کٔرِتھ۔\n\nمگر یُس تہِ کٲنٛسہِ نِگرٲنی منٛز آسہِ، سُہ ہیٚکہِ نہٕ نِگرٲنَس سٕنٛدِ لیٚکھِتھ اِجازتہٕ بغٲر کھاندر کٔرِتھ۔ اَتھ سۭتۍ سۭتۍ، اگر دۄشوٕنی منٛزٕ اَکھ وۄنۍ کٲنٛسہِ بیٚیِس سۭتۍ کھاندر کٔرمُت آسہِ یا کٲنٛسہِ بیٚیِس سۭتۍ سِوِل یوٗنِینَس منٛز شٲمِل آسہِ، تِم ہیٚکَن نہٕ قانوٗنی طور کھاندر کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 517, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0401", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گٲنٹھ کیا زانہِ آیرِ وسُن\nمٲنتھ کیا زانہِ موٚدُر داتھ\nشٲنٹھ کیا زانہِ لَلنے رسُن\nہٲنٹھ کیا زانہِ پرٛسُن کراٹھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 109, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0402", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ تُہُنٛد ہوٗن سکنٛک سٕنٛدِ سپرے سۭتۍ چھُ گژھان، تیٚلہِ چھُ اَتھ اَکھ قدم بہ قدم عمل:\n- پنُن ہوٗن نٮ۪بر کٔرِو تہٕ دِوُن اَتھ نہٲوِتھ۔ اَتھ سۭتۍ چھُ سکنٛک سپرے تُہُنٛدِس گَھرَس منٛز دٲخِل گژھنَس نِش روٗکاونَس منٛز مدد مِلان [1]۔\n- رَبڑ دستانہٕ تہٕ پُرانہِ لُکُٹ پٔتھۍ کٔرِو پَنُن سکنٛک سپرے نِش بچاونہٕ خٲطرٕ [1]۔\n- اَکھ حِصہٕ ڈِش صابُن ترٛیٚن حِصَن ہائیڈروجن پیروکسایڈَس سۭتۍ مِلاوِو اَکھ بالٹی منٛز [1][2]۔\n- یہِ مِشرَن پنُن ہوٗنِس کھالَس پٮ۪ٹھ لاگو کٔرِو تہٕ اَتھ مالِش کٔرِو۔ ہوٗنِس اَچھَن تہٕ کَنَن نِش بچاونہٕ خٲطرٕ کٔرِو احتیاط [1][2]۔\n- یہِ مِشرَن تھاوِو پنُن ہوٗنِس کھالَس پٮ۪ٹھ 5-10 منٹَن خٲطرٕ [1][2]۔\n- پنُن ہوٗن آبَس سۭتۍ چھیٚنِو چھیٚنِو [1][2]۔\n- یُتھ تام سکنٛک سپرے ختم گژھہِ، تیٚتھ تام کٔرِو یہِ عمل دۄبارٕ [1][2]۔\n- ییٚلہِ سکنٛک سپرے ختم گژھہِ، تیٚلہِ ہیٚکو تُہۍ پنُن ہوٗن پنُن عام شیمپو سۭتۍ نہٲوِتھ [1][2]۔\n\nسکنٛک چھُ نہٕ ہوٗنَن خٲطرٕ نقصان دہ۔ تاہم، اگر سکنٛک سپرے تِہنٛدٮ۪ن اَچھَن منٛز گژھہِ، تیٚلہِ ہیٚکہِ اَتھ سۭتۍ اَچھَن منٛز سۄج تہٕ وۄزُل گژھِتھ تہٕ کٔرِتھ ہیٚکہِ کارنیاہَس نُقصان۔ اگر ہوٗن سپرے ساہَس منٛز ہیٚکہِ، تیٚلہِ ہیٚکہِ تٔمِس ساہَس منٛز جلن گژھِتھ۔ اگر یہِ تٔمِس مُنہَس منٛز گژھہِ، تیٚلہِ ہیٚکہِ اَتھ سۭتۍ مِٹہٕ، لال گژھُن تہٕ اُلٹی گژھِتھ [1]۔\n\nاگر تُہُنٛد ہوٗن چہِتھ چھُ سپرے کَرنہٕ آمُت، تیٚلہِ کٔرِو ویٹرنری ڈاکٹرَس نِش گژھنُک خیال تاکہ دَرد تہٕ جلن نِش بچاوِتھ ہیٚکو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1310, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0403", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَکھ لۄکُٹ سیل تہٕ اَکھ عام گَرٕچ سیل چھِ رئیل اسٹیٹَس مَنٛز دۄہ مُختٔلِف نِظام۔ یِم چھِ دۄن درمیان کیٚنٛہہ مُختٔلِف فرق:\n1. وٲلِتھ سُنٛد مقصد\n- لۄکُٹ سیل: ییٚلہِ گَرٕ مالِک جٲیِد اَتھ رَقَمَس خٲطرٕ وٲلِتھ چھُ یۄس گَرٕ کِس قَرضَس پٮ۪ٹھ دِنہٕ وٲلِس رَقَمَس کھۄتہٕ واریاہ کم چھُ، اَتھ چھُ لۄکُٹ سیل ونان [1][2][3][4]۔ گَرٕ مالِک چھُ جٲیِد اَتھ خٲطرٕ وٲلِتھ کَران زِ سُہ چھُ مٲلی مُشکلاتَن ہُنٛد سامنہٕ کَران تہٕ گَرٕ کِس قَرضَس کھۄتہٕ چھُ موٗجوٗدٕ بَزارَس زیٛادٕ رَقَم دِنہٕ وٲلِس۔\n- عام گَرٕچ سیل: ییٚلہِ گَرٕ مالِک جٲیِد بَزار قَرضَس یا اَتھ کھۄتہٕ زیٛادٕ رَقَمَس پٮ۪ٹھ وٲلِتھ چھُ، تیٚلہِ چھُ یہِ اَکھ عام گَرٕچ سیل۔ یہِ سیل ہیٚکہِ مُختٔلِف وَجہَن سۭتۍ گژھِتھ تہٕ نہٕ زِ سُہ چھُ مٲلی مُشکلاتَن ہُنٛد سامنہٕ کَران [1]۔\n2. قرض دِنہٕ وٲلِس ہُنٛد شِرکَت\n- لۄکُٹ سیل: لۄکُٹ سیلَس مَنٛز چھُ قرض دِنہٕ وٲلِس ہُنٛد شِرکَت اہم۔ لۄکُٹ سیلَس مَنٛز چھُ گَرٕ مالِکَس قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرُن ضروٗری زِ سُہ کَرِ گَرٕ قَرضَس کھۄتہٕ کم رَقَمَس پٮ۪ٹھ وٲلِتھ۔ اَصٕل قَرض دِنہٕ وٲلِس چھُ سیلٕچ سٲرِوٕے رَقَم مِلان [1][2][3][4]۔\n- عام گَرٕچ سیل: اَکھ عام سیلَس مَنٛز چھُ وٲلِتھَس جٲیِدٕچ لین دینَس پٮ۪ٹھ زیٛادٕ قٲبوٗد آسان۔ قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرنٕچ ضروٗرت چھُنہٕ [1][2]۔\n3. سیلٕچ رَقَم\n- لۄکُٹ سیل: لۄکُٹ سیلَس مَنٛز چھُ سیل عام طور پٮ۪ٹھ بَزار رَقَمَس کھۄتہٕ کم آسان تہٕ جٲیِدٕچ لین دینَس مَنٛز ہیٚکَن واریاہ شرٲیِط شٲمِل آسِتھ [1][2][3]۔\n- عام گَرٕچ سیل: گَرٕ مالِک ہیٚکہِ جٲیِد موٗجوٗدٕ بَزار رَقَمَس مُطٲبِق وٲلِتھ۔\n4. سیلٕچ مُدت\n- لۄکُٹ سیل: لۄکُٹ سیل چھِ خریدار تہٕ وٲلِتھ دۄشوٕنی خٲطرٕ پٮ۪چیدٕ، وقت طلب لین دین۔ خریدار ژھانٛڈنہٕ تہٕ قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرنَس مَنٛز ہیٚکہِ ہفت", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1614, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0404", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Every minute of its existence, a living cell must assess and analyze myriad bits of information—everything from the temperature of its environment to the chemical makeup of its surroundings.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 190, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0405", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وادی کٔشیٖرِ منٛز چُھ سخت ونٛدٕ جٲری تِکیٛازِ رٲژ ہُنٛد درجہٕ حرارت چھُ لگاتار لُکن ہِنٛدِ خٲطرٕ مُختٔلِف مُشکِلات پٲدٕ کَران۔\n\nمحکمہٕ موسمیات کِس ترجمانَس مُطٲبِق آو رٮ۪تہٕ کالہِ رازدٲنی سرینگرَس منٛز کم از کم درجہٕ حرارت 2.4 ڈگری سیلسیس ریکارڈ کرنہٕ، یُس موسمٕچ بیٛاکھ اکھ سرد رات چھےٚ۔\n\nوادی ہٕنٛدِس مشہوٗر سیاحتی مُقام پہلگامَس منٛز آو رٲژ ہُنٛد درجہٕ حرارت منفی 3.8 ڈگری سیلسیس ریکارڈ کرنہٕ، ییٚلہِ زَن گُلمرگہِ منٛز آو کم از کم درجہ حرارت 0.5 ڈگری سیلسیس ریکارڈ کرنہٕ۔\n\nکپواڑہ کِس سرحدی ضِلعس منٛز آو کم از کم درجہٕ حرارت منفی 2.4 ڈگری سیلسیس ریکارڈ کرنہٕ، ییٚلہِ زن قاضی گنٛڈ قصبس منٛزیتھ گیٹ وے آف کشمیر ونان چھِ، اوس رٲژ ہُنٛد درجہ حرارت منفی 2.3 ڈگری سیلسیس۔\n\nأتھۍ دوران اوس وادی منٛز بٹہٕ وارِ دۄہ صبحٲے پیٹھٕ آسمان صاف تہٕ اتہِ اوس ہلکہٕ تاپھ تہِ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 759, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0406", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فیس بک چھُ اکھ سمٲجی نیٹ ورکنگ ویب سائٹ یُس صارفینَن دوستَن تہٕ خاندانَس سۭتۍ جُڑنہٕ، فوٹو تہٕ ویٖڈیو شیئر کرنہٕ تہٕ گرُپن تہٕ کمیونِٹین منٛز شٲمِل گژھنٕچ اِجازت چھُ دِوان۔\n\nفیس بک آو فروری 2004 ہَس منٛز ہارورڈ یوٗنیورسٹی منٛز مارک زکربرگ تہٕ ایڈورڈ سیورینَن اکھ سکوٗل پٮ۪ٹھ مبنی سمٲجی نیٹ ورک پٲٹھۍ بناونہٕ۔ صارفینَن چھُ سائن اپ کرُن تہٕ اکھ پروفایل بناوُن۔ تُہۍ ہیٚکو پتہٕ پنٛنٮ۪ن دوستَن، سٲتھیَن تہٕ خاندانَس سۭتۍ جُڑِتھ تہٕ تِمن سۭتۍ فوٹو، ویٖڈیو تہٕ ریل شیئر کٔرِتھ۔\n\nاگر تُہُنٛد پنُن کاروبار چھُ، تُہۍ ہیٚکو پنٕنۍ مصنوعات یا خدمات آن لایِن تہِ وٲتھِتھ، پنٕنِس سامعینَس نشانہٕ بناونہٕ خٲطرٕ اشتہار بناوِتھ۔ فیس بک چھُ گرُپ پیجن، کاروبٲری پیجن تہٕ کمیونِٹین سپورٹ کران، تہٕ اَتھ چھُ پنُن مارکیٹ پلیس۔\n\nفیس بک چھُ صارف دوست تہٕ اِستعمال کرنہٕ خٲطرٕ آسان۔ فیس بکَس منٛز شٲمِل گژھُن ہیٚکہِ تُہٕنٛدٮ۪ن دوستَن سۭتۍ رابطس منٛز روزنُک اکھ اَصٕل طٔریٖقہٕ ٲسِتھ، تہٕ کمیونِٹین تہٕ گرُپن منٛز ہم خیال افراد ژھانٛڈِتھ۔ تاہم، فیس بکَس حَوالہٕ سۭتۍ چھِ رازدٲری تہٕ حِفاظتی خدشات۔ اَتھ کِنۍ، فیس بکَس پٮ۪ٹھ صرف اکھ پروفایل بناوِو اگر تُہۍ اَتھ سۭتۍ آرام دہ چھِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1052, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0407", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پی ڈی پی کِس سینئر لیڈر تہٕ ایم ایل اے وحید پاراہَن چھُ کان کنی سۭتۍ بٔڑِس پیمانَس پٮ۪ٹھ ماحولیٲتی تبٲہی پٮ۪ٹھ تشویش ظٲہر کٔرمٕژ تہٕ ووٚنُن زِ جموں و کشمیرَس منٛز چھُ اکھ بوٚڑ مافیا کان کنی کران، ییٚمہِ سۭتۍ جموں و کشمیرَس منٛز خاص طور پٲٹھۍ کشمیرَس منٛز بٔڑِس پیمانَس پٮ۪ٹھ ماحولیٲتی تبٲہی چھِ گژھان۔\n\nتٔمۍ چھِ مرکزی وزیر ماحولیات نِش جموں و کشمیرَس منٛز جٲری پروجیکٹَن ہٕنٛدِس ماحولیٲتی جٲیزَس مُتعلِق وضاحت طلب کٔرمٕژ، یَتھ منٛز سڑکہٕ، ریلوے تہٕ سرنگہٕ شٲمِل چھِ۔\n\nایم ایل اے یَن ووٚن بۄدوارِ دۄہ میڈیاہَس زِ \"جموں و کشمیرَس منٛز چھِ اکھ بٔڑ مافیا کان کنی تہٕ امہِ کان کنی تہٕ ترقی کہِ وجہ سۭتۍ چھِ جموں و کشمیرَس منٛز خاص طور پٲٹھۍ کشمیرَس منٛز ماحولیٲتی تبٲہی گژھان، تِکیٛازِ ییٚتہِ ہُنٛد ماحول چھُ نازک”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 710, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0408", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تَس راے ہوا ساتےٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0409", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دۄشوٕیو ٲس بغاوتٕچ علم نکھس تُجمٕژ تہٕ یِمن دۄشوٕنۍ اوس یقیٖن زِ خواجہِ طاروقی صٲب کرن یِمن یہِ علمتُلنَس منٛز زبردست مدد۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0410", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پہلگامَس منٛز بۄموارِ دۄہ وحشیانہٕ دہشت گردانہ حملہٕ پتہٕ کوٚر جموں و کشمیر اِنتِظامیاہَن مارنہٕ آمتین سیاحَن ہٕنٛزٕ لاشہٕ تِہنٛدٮ۪ن آبٲیی مقامَن تام واتناونہٕ خٲطرٕ خاص ہوٲیی انتظام۔\n\nحکامَو ووٚن زِ یہِ فٲصلہٕ اوس مُتٲثِر خاندانَن فوری مدد فراہم کرنہٕ باپتھ \"انسٲنی تہٕ فوری اقدامات” کِس حصہٕ پٲٹھۍ نِنہٕ آمُت۔\n\nذٔرایعو مُطٲبِق آیہِ حملَس منٛز ہلاک گژھَن والٮ۪ن 26 نفرَن ہٕنٛز شناخت کرنہٕ تہٕ ضروٗری قونوٗنی کاروٲیی پوٗرٕ کرنہٕ پتہٕ تمام لاشہٕ سرینگر کِس پولیس کنٹرول رومس (پی سی آر) منتقل کرنہٕ، ییٚتہِ تِمَن پوٗرٕ سرکٲری اعزاز سۭتۍ الوداع کرنہٕ آو۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 551, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0411", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زٮ۪و ٲسٕس رامہٕ ہوٗنۍ سٕنٛدۍ پٲٹھۍ ٲسہٕ منٛز پھٔٹِتھ درٛامٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 61, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0412", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کرسمسُک سارِوٕے کھۄتہٕ بٔڑ گؠوُن چھُ ذاتی ترجیحُک اَکھ معاملہٕ۔ تاہم، یِم چھِ سارِوٕے کھۄتہٕ زیٛادٕ مَقبول کرسمس گؠوُن [1]:\n1. آل آی وانٹ فار کرسمس اِز یوٗ بائی ماریہ کیری\n2. وایٹ کرسمس بائی بِنگ کراسبی\n3. لاسٹ کرسمس بائی ویم!\n4. کرسمس (بیبی پلیز کَم ہوم) بائی ڈارلین لوٗو\n5. راکِن اراوُنٛڈ دی کرسمس ٹری بائی برینڈا لی\n6. اِٹس دی موسٹ وونٛڈر فُل ٹایم آف دی ییَر بائی اینڈی ولیمز\n7. جِنٛگل بیلز بائی جیمز لارڈ پیئرپونٹ\n8. ڈو دی نو اِٹس کرسمس؟ بائی بینٛڈ ایڈ\n9. سائلینٹ نایٹ بائی فرانٛز زیوَر گُروٗبَر\n10. او ہولی نایٹ بائی ایڈولف ایڈم\n\nیِم گؠوُن چھِ سٲرِوٕے وٲنٛسہِ ہٕنٛدٮ۪ن لوٗکن ہٕنٛدِ خٲطرٕ مَقبول، تہٕ یِم چھِ وقتہٕ کِس امتحانَس پٮ۪ٹھ قٲیِم روزِمٕتۍ۔ یِم چھِ یقیٖنی طور تُہنٛدِ چھُٹہِ ہٕنٛدِس جذبس منٛز تھاوان تہٕ تُہنٛدِ کرسمسَس زیٛادٕ جادوٗئی تہٕ دِلکش بناوان۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 765, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0413", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ویچھَر نِش بچاوُک اہم مقصد چُھ کم وزن برقرار تھون تِہ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0414", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We remember the events of our childhood.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0415", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was windy, so the trees moved fast.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0416", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لۄکچہ بَونٕچہِ کَجے\nاَکجے کرٮ۪ن سِوو\nسۭتۍ جاناوارن ژٔجی\nتِتُھے مےٚ ور دِتو دِیوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 80, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0417", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "However, a neighbour can complain to local authority about your hedge, if its height 'reduces the amenity value' of their garden, by reducing light to windows (not an issue, the gardens are too long) or denying them winter sunshine.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 232, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0418", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was dark, but we walked anyway.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0419", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہ ہَن ووٚن از برٛٮ۪سوارِ دۄہ زِ دِلہِ منٛز ہولناک دھماکہٕ کٮ۪ن مجرمَن گژھہِ سارِوٕے کھۄتہٕ شٔدیٖد سزا دِنہٕ یُن۔ وۅنۍ گو٘و تٔمۍ دِیُت زور زِ پوٗرٕ کٲشٕر آبٲدی ملی ٹنسی سۭتۍ جوڑُن چھُ پوٗرٕ پٲٹھۍ غلط۔ صحافیَن سۭتۍ کتھ باتھ کٔرِتھ ووٚن عمر عبداللہ ہَن زِ اَتھ حملَس منٛز چھِ صرف کینٛہہ لُکھ ذِمہٕ وار۔ یِم مُجرِم چھِ تِمن گژھِ سخت سزا دِنہٕ یُن، مگر بےٚ گناہ لوٗکھ گژھن نہٕ متٲثر گژٕھنۍ۔\n\nتمہِ وو٘ن زِ اتھ واقعس کٲژاہ تہِ مذمت کرو سۅ چھنہٕ زانہہ تہِ کٲفی۔ یِتھ پٲٹھۍ بے گناہ شہرین ہُنٛد بے رحمانہٕ قتل چُھ انتہٲیی شرمناک تہٕ قابل مذمت۔ یِتھٮ۪ن عملن ہُند ہیکہِ نہٕ کانہہ جواز ٲسِتھ۔ تفتیش چھِ جٲری تہٕ حقیٖقت یِیہِ برونہہ کُن۔\n\nیہِ بیان آو تَمہِ وِزِ دِنہٕ ییٚلہِ 10 نومبر دِلہِ ہِنٛدِس لال قِلعَس نزدیٖک أکِس کارِ منٛز دھماکہٕ گوٚو ییٚمہِ کِنۍ 12 نفر ہلاک تہٕ باقٕی واریاہ زخمی سپٕدۍ۔ گاڑِ اوس ڈاکٹر عمر نبی چلاوان یُس جنوٗبی کشمیر پلوامیُک چُھ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 881, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0420", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She reads daily.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0421", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پردیش کانگریس کمیٹی (جے کے پی سی سی) کِس صدر طارق حمید قاراہَن چھُ نیشنل کانفرنس (این سی) ذٔریعہٕ عمر عبداللہ قانون ساز پارٹی ہُنٛد چیئرمین نامزد کرنٕچ تصدیٖق کٔرمٕژ۔ کشمیر انڈیپت نیوز سروس (کے این ایس) سۭتۍ کَتھ کران کٔر کارا ہَن زِ کانگریس چھِ این سی یَس سۭتۍ اتحاد کرنُک روڈ میپ ختم کرنہٕ برٛونٛہہ پننٮ۪ن قانون سازَن سۭتۍ اَہَم میٹنگہٕ کران۔ یہِ چھُ اصل زِ نیشنل کانفرنسٕکۍ قانون سازَو چھُ عمر عبداللہ قانون ساز پارٹی ہُنٛد چیئرمین منتخب کوٚرمُت، ییٚمیُک مطلب چھُ زِ سُہ بنہِ جموں و کشمیرُک بیٛاکھ وزیر اعلیٰ”۔ تٔمۍ کٔر تصدیٖق زِ سُہ یِیہِ پگہہ تام سری نگر واپس تہٕ امہِ پتہٕ یِیہِ جلدٕیہ کانگریس لیجسلیٹو پارٹی ہُنٛد اجلا", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 638, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0422", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مکھن صاف کرنہٕ خٲطرٕ چھُ اکھ قدم بہ قدم گائیڈ:\n\nاجزا:\n- 1 پونٛڈ بَغیر نمک مکھن\n- اکھ بٔڑ ساس پین\n- اکھ لَڈل یا سلیٹڈ چمچ\n- اکھ چیٖز کلوتھ سۭتۍ لٲگِتھ چھاننہٕ وٲلۍ چیز\n- اکھ ہیٹ پروف جار یا کنٹینر [1]\n\nطریقہٕ کار:\n1. مکھن لۄکٕٹٮ۪ن ٹُکرَن منٛز کٔٹِو تہٕ ساس پینَس منٛز تھاوِو۔\n2. مکھن کم گرمی پٮ۪ٹھ گرم کٔرِو ییٚتہِ یہِ پگہٕ گژھہِ۔ تُہۍ ہیٚکو اَتھ مایکروویو منٛز تہِ پگہٕ کٔرِتھ اکھ پیالہ منٛز تھاوِتھ۔\n3. ییٚلہِ مکھن پگہٕ گژھہِ، گرمی میڈیم-ہائی کٔرِو تہٕ اَتھ سُہل پٲٹھۍ گرم کٔرِو۔\n4. ییٚلہِ مکھن سُہل پٲٹھۍ گرم گژھہِ، اَتھ سطحس پٮ۪ٹھ اکھ سفید فوم بَنہِ۔ لَڈل یا سلیٹڈ چمچ سۭتۍ فوم کٔڈِو۔\n5. مکھن زیٛادٕ گرم کرنہٕ نِش بچِو، ورنہ یہِ گژھہِ بۄنٛد تہٕ اَتھ گژھہِ کڑوٕ ذائقہٕ۔\n6. چیٖز کلوتھ سۭتۍ لٲگِتھ چھاننہٕ وٲلۍ چیز سۭتۍ صاف کٔرمُت مکھن احتیاط سۭتۍ ہیٹ پروف جار یا کنٹینرَس منٛز تھاوِو۔\n7. چھاننہٕ وٲلۍ چیزَس منٛز دۄدٕ کٮ۪ن ٹھوٗس چیزَن پَتہٕ تھاونہٕ خٲطرٕ احتیاط کٔرِو۔\n8. صاف کٔرمُت مکھن ٹھنٛڈٕ گژھنہٕ دِوِو۔ اَتھ ریفریجریٹ کٔرِو [1]۔\n\nصاف کٔرمُت مکھن ہیٚکہِ 2-3 رٮ۪تَن تام ریفریجریٹَرَس منٛز تھاونہٕ یِتھ۔ اَتھ ہیٚکہِ 6 رٮ۪تَن تام فریز تہِ کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1048, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0423", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بنگہٕ کٲنِس انبر زیوٗٹھٕے\nوِرٕ کٲنِس پھل نو بوٚوے\nگورٕ کٲنس انبر میوٗٹھُے\nوتہٕ کٲنس اندوہ پیٚے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0424", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کندو کٔرِو نگر نٲژ\nژلہٕ نو بانڈ تہٕ لانٛژ کھٮ۪تھ\nاَدٕ اَندٕ نَو نہٕ تار، پُل صرٲژ\nپیٚیو اَٹکہِ داہ بٲژ ہٮ۪تھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0425", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She writes stories.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0426", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وسطی کشمیر کِس بڈگام ضلعہٕ کِس واگورا علاقَس منٛز گٔیہِ بَٹہٕ وارِ دۄہ رٲژ نار لگنہٕ کِس أکِس بٔڑِس واقعَس منٛز ژور رِہٲیشی مکان۔\nفائر اینڈ ایمرجنسی سروسز ڈپارٹمنٹٕکۍ أکۍ اہلکارَن ووٚن زِ آتھٕوارِ تہٕ ژٔنٛدٕروارِ دۄہ درمیٲنی رٲژ گٔیہِ بڈگام کِس واگورا علاقہٕ کِس گنائی محلس منٛز أکِس گَھرٕ پٮ۪ٹھٕ نار۔\nتٔمۍ ووٚن زِ نارَس منٛز گوٚو اکھ زٕ منزلہٕ مکان تہٕ ترٛےٚ اکھ منزلہٕ مکان", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 375, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0427", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ میٚقدار یا حصہٕ چھِ کھیٚنہٕ وٲلۍ مقرر کران، غٕذا تیار کرن وٲلۍ چھِ تیار کران یا فوڈ انڈسٹری چھِ پنُن مال کٕنٛنہٕ خٲطرٕ بناوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0428", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس روبودٕ گٲمٕژ تہٕ انتقام کِس اَتھ نارس ٲس مُدیہِ گٔنڈۍ گٔنڈۍ وُچھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0429", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تھینکس گیونٛگ خٲطرٕ اَکھ مِثال ٹرکی بناونہٕ خٲطرٕ چھُ اَتھ منٛز اَکھ قدم بہ قدم رَہنُمٲیی:\n1. صٔحیٖح ٹرکی ژھانٛڈِو: صٔحیٖح سائزٕچ ٹرکی خریٖدِو۔ تُہؠن گژھہِ پرٛٮ۪تھ کٲنٛسہِ خٲطرٕ تَقریٖبَن 1.5 پونٛڈ ٹرکی درکار۔ اَتھ کِنۍ اگر تُہؠ 8 لوٗکَن خٲطرٕ چھِو کھؠوان، تیٚلہِ خریٖدِو 12 پونٛڈ ٹرکی [1].\n2. ٹرکی صٔحیٖح پٲٹھۍ پگھلاوِو: ٹرکی پگھلاونُک سارِوٕے کھۄتہٕ بۄڈ طٔریٖقہٕ چھُ ٹرکی ریفریجریٹرَس منٛز تھاوُن۔ پرٛٮ۪تھ 5 پونٛڈَن خٲطرٕ، تھاوِو اَتھ 24 گنٛٹَن خٲطرٕ ریفریجریٹرَس منٛز پگھلُن (اَکھ 12 پونٛڈ ٹرکی خٲطرٕ لگَن 42-45 گنٛٹہٕ درکار)۔ تاہم، اگر تُہؠن نِش کم وقت چھُ، تیٚلہِ ہیٚکو تُہؠ پیکیج کَرنہٕ آمٕژ ٹرکی ٹھنٛڈِس آبَس سۭتۍ بٔرِتھ کنٹینرَس منٛز پگھلاوِتھ [1][2].\n3. ٹرکی تیٲر کٔرِو: پگھلِمٕژ ٹرکی کٔرِو پنٛنِس پیکیجِنٛگَس منٛزٕ کٔڈِتھ۔ گَردَن (یُس عام طور پٮ۪ٹھ پرٛٮ۪نٛدٕ کِس بٔڑِس گُھیرَس منٛز آسان چھُ) تہٕ گِبلیٹَن ہُنٛد بیگ (یُس پرٛٮ۪نٛدٕ کِس لۄکٹس گَردَن کِس گُھیرَس منٛز آسان چھُ) کٔرِو کٔڈِتھ۔ ٹرکی کٔرِو پیپر ٹاولَن سۭتۍ خۄش کٔرِتھ [1].\n4. ٹرکی مَزہٕ دِوِو: ٹرکی اَنٛدَر تہٕ نٮ۪برٕ لُوٗن، مَرٕژ تہٕ باقٕے کُنہِ تہِ جڑی بوٗٹی یا مَسالہٕ سۭتۍ مَزہٕ دِوِو یُس تُہؠس پَسَنٛد چھُ۔ لیموٗن، لَسُن تہٕ جڑی بوٗٹی سۭتۍ بٔرِتھ چھُ ذایقہٕ بَناونُک اَکھ بۄڈ طٔریٖقہٕ [1].\n5. اَتھ اووَن خٲطرٕ تیٲر کٔرِو: ٹرکی ہٕنٛدۍ پَنٛگہٕ کٔرِو ٹرکی ہٕنٛدِس بۄنِس کُن تھاوِتھ تہٕ ٹرکی کٔرِو اَکھ روسٹِنٛگ پینَس پٮ۪ٹھ تھاوِتھ [1].\n6. اَتھ پَکُن دِوِو: اووَن 325 ڈِگری فارن ہایٹَس پٮ۪ٹھ گَرٕم کٔرِو۔ ٹرکی کٔرِو اووَنَس منٛز تھاوِتھ، تہٕ کٔرِو کھؠنُک وقت مُشخص (15 مَنٹ فی پونٛڈ) [1].\n7. وُچھِو زِ اَتھ چھُ پَکِمُت: اَکھ میٹ تھرمامیٹر کٔرِو رانٛگہٕ ک", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1524, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0430", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پِکسَر سٹوٗڈیوز چھُ شُرٮ۪ن تہٕ بٔڑٮ۪ن دۄشوٕنی خٲطرٕ جذبٲتی، فِکری طور پٮ۪ٹھ مُتٲثِر کَرن وٲلۍ اینیمیٹِڈ فِلِم بناونہٕ خٲطرٕ زاننہٕ یِوان۔ تِمو چھِ اکتوبر 2023 تام 27 مَقبول تہٕ تنقیٖدی طور پٮ۪ٹھ سراہنہٕ آمٕتۍ فِلِم تیار کٔرمٕژ۔ ییٚتہِ چھِ کیٚنٛہہ بہترین پِکسَر فِلِم، بغٲر کُنہِ خاص ترتیٖبَس منٛز:\n1. ٹوٮ۪ سٹوٗری (1995): یہِ بُنیٲدی فِلِم چھِ کھؠلَن ہٕنٛدِس اَکِس گرُپَس سۭتۍ مُتعلِق یِم تِہنٛدِس مالِک، اینڈی، سٕنٛدِس غٲر موٗجوٗد آسَن وِزِ زِنٛدٕ گژھان چھِ۔ ٹوٮ۪ سٹوٗری چھِ اَکھ دِلَس گرم کَرن وٲلۍ تہٕ مَزہ دار فِلِم یۄس سٲرِوَن عُمرَن ہٕنٛدٮ۪ن ناظِرینَن مُتٲثِر کَران چھِ [1].\n2. وال-ای (2008): یہِ فِکری طور پٮ۪ٹھ مُتٲثِر کَرن وٲلۍ فِلِم چھِ اَکِس مُستقبَلَس منٛز قٲیِم یَتھ منٛز زٔمیٖن غٲر آباد گٔمٕژ چھےٚ۔ وال-ای چھِ دۄن روبوٹَن دَرمیان اَکھ مَحَبَتٕچ دٔلیٖل یِمَن سیارٕ صاف کَرنَس تہٕ بحال کَرنَس سُنٛد کٲم دِنہٕ آمُت چھُ [1].\n3. فائنٛڈِنٛگ نیمو (2003): یہِ چھِ مارلِن ناوٕکِس اَکِس کلاوَن فِشٕچ دٔلیٖل یُس پنٛنِس نیٚچوِس نیموٗس ژھانٛڈان چھُ یُس اغوا کَرنہٕ آمُت چھُ۔ اَکھ کلاسک پِکسَر فِلِم، یہِ چھِ جذبات، مَزاح تہٕ ایکشنَس مِلاوان [1].\n4. اَپ (2009): یہِ دِلَس گرم کَرن وٲلۍ فِلِم چھِ کارل فریڈرِکسَن سٕنٛز دٔلیٖل وَنان، اَکھ بٔڑِس وٲنٛسہِ ہُنٛد شَخص یُس پنٛنِس گَھرَس سۭتۍ ہَزارو غُبارٕ بَنٛد کَران چھُ تہٕ جنوٗبی امریکہ کُن وُڑان چھُ [1].\n5. کوکو (2017): یہِ خوٗبصوٗرت تہٕ مُتٲثِر کَرن وٲلۍ فِلِم چھِ میکسیکن ثقافت تہٕ خاندانس اہمیت مناوان۔ کوکو چھُ میگوئل سٕنٛز دٔلیٖل وَنان، اَکھ لۄکُٹ لٔڑکہٕ یُس اَکھ موسیقار بَننُک خواب چھُ وُچھان، مگر تٔمِس سٕنٛدِس خاندانس چھُ موٗسیقی پٮ۪ٹھ پابنٛدی لٲگِتھ [1].\n6. اِنکریڈیبلز (2004): شَہَنٛدہ سُپر ہیرو مِسٹر اِنکریڈیبل تہٕ ایلاسٹِگرل چھِ بوب تہٕ ہیلن پار سٕنٛدِس طورس پٮ۪ٹھ عام زِنٛدگی گُزارنَس پٮ۪ٹھ مجبور کَرنہٕ آمٕتۍ، ییٚلہِ سٲرِوَن س", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1689, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0431", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted to help, but I did not know how.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0432", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بھارتیہ جنتا پارٹی (بی جے پی) کوٚر اَز عمر عبداللہ سٕنٛدِس قیادتس منٛز نیشنل کانفرنس (این سی) حکومتس پیٹھ شدید حملہٕ، تہٕ ووٚن پننِس گۄڈنیُک ؤری ‘ناکامیَن ہُنٛد ؤری’ – یُس وعدٕ پھُٹراونہٕ آمُت تہٕ عوٲمی عدم اطمینانی ہُنٛد نشان زد چھُ۔ سرینگرَس منٛز پارٹی ہیڈ کوارٹرَس منٛز نامہ نگارن سۭتۍ کَتھ باتھ کٔرِتھ کوٚر بی جے پی جموں و کشمیرٕکۍ ترجمان، الطاف ٹھاکرَن پارٹی ترجمان ساحل بشیرَس سۭتۍ وزیر اعلیٰ عمر عبداللہ ہَس پٮ۪ٹھ الزام زِ سُہ چھُ اپُز منشور تہٕ خٲلی یقین دِنہٕ سۭتۍ جموں و کشمیر کین لوٗکن گمراہ کرنُک اِلزام۔ ’12 مُفت ایل پی جی سلنڈر، 10 کِلوگرام ماہانہٕ راشن، 200 یونٹ مُفت بجلی، تہٕ شیٚن رٮ۪تن انٛدر 100,000 نوکرین ہُنٛد وعدٕ کرنہٕ آمُت؟ ٹھاکرَن ووٚن زِ اکھ تہِ وعدٕ آو نہٕ پوٗرٕ کرنہٕ۔’", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 697, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0433", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ضلعہٕ کلکٹرن ووٚن زِ سی آر آیف سکیمہِ تحت چِھ ضلعہٕ میدکس کُل ۴.۵ کرور روپین ہٕنز منظوری حٲصل گمٕژ یمیُک حلقہ اسمبلی نارائن کھیڑس چِھ کُل ۱.۶ کرور روپیہِ دِنہٕ آمژٕ چھے ییلہِ زَن کہِ این آر ڈی ڈبلیو پی سکیمہِ تحت چِھ ضلعہٕ میدکس ۵.۵ کرور روپین ہٕنز منظوری حٲصل گمٕژ یمیُک اسمبلی نارائن کھیڑٕ خٲطرٕ چِھ کُل ۷۳ لچھ روپین ہںزاجرائی چِھ عملہٕ منٛز آمٕژ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 349, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0434", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نصر نصر سرِ کر\nکس یارٕ کرٛشکھ دِہہِ ساسے\nرَہہِ نہٕ مال مراد تہٕ بٔرژر\nیِہ ہَبا ٲرژر نکس آسے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0435", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمال نہِ أچھ آسہٕ وُنہِ اژدھا سٕنٛزن أچھن ہٕنٛدۍ پٲٹھۍ نار چھکان تہٕ رامہٕ ہوٗنۍ سٕنٛدۍ پٲٹھۍ ٲسٕس زٮ۪و پھٔٹِتھ درحامٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0436", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژٮ۪تَس بفن ہاریے\nژٮ۪تس بفن ہاریے\nیاونہٕ مد، اہنکاریے\nبوٚرُم کیا اندھکاریے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0437", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ریونتن ووٚن زِ بی جے پی رکُن اسمبلی نِش ضمانت حٲصل کرن وٲلۍ چھِ مےٚ پٮ۪ٹھ آر ایس ایس الزام لگاوان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0438", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "امیُک مَقصد چھُ E 3 نٲفِذ کرنَس پٮ۪ٹھ آسان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0439", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We stand strong.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0440", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آنتہِ ہُہِتھ گولم بیولو\nسۄ کلی پَوِ مےٚ پولُم یٔژ\nوُچھتہٕ عزازیلس کیا ژوٚلو\nؤدِس نُندِ تَتہِ گیَس فِژ\nبہٕ پانس تہٕ پانٕے میونو\nلسَے تہٕ نُند تہٕ مَرے تہٕ نٔژ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 158, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0441", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted help, but no one was there.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0442", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کانگریس تہٕ باقی اپوزیشن جماعتن ہٕنٛدٮ۪و رُکنو کوٚر ژٔنٛدٕروارِ دۄہ صنعت کار گوتم اڈانی سۭتۍ مُبینہٕ رشوت خوری کِس معاملس پٮ۪ٹھ راجیہ سبھایہ منٛز تمام قانون سٲزی ہٕنٛدِس کاروبارس پٮ۪ٹھ روک لگاونُک مطالبہٕ، مگر چیرمینَن کوٚر یہِ رَد، ییٚمہِ پتہٕ حزب اختلاف کہِ ہنگامہٕ کہِ وجہہ سۭتۍ ایوان 15 منٹَن خٲطرٕ دُپہرَس 12.45 بجے تام ملتوی کرنہٕ آو۔\nپارلیمنٹ کِس سرمٲیی اجلاسٕک گۄڈٕنِکہِ دۄہ ووٚن چیئرمین جگدیپ دھنکھرَن زِ 13 ارکانَو چھِ اڈانی رشوت خوری کیسَس سۭتۍ مُختٔلِف معاملَن پٮ۪ٹھ التوا نوٹس دِیُتمُت۔ یِمَن منٛز چھُ اڈانی معاملَس پٮ۪ٹھ حزب اختلاف کِس رہنُما ملیکارجن کھڑگے سُنٛد نوٹس شٲمِل۔ تٔمۍ ووٚن زِ 8 دسمبر 2022 اوس تٔمۍ گۄڈَے رول 267 ہَس مُتعلِق تفصیٖل سان تبصرٕ کوٚرمُت۔ تٔمۍ ووٚن زِ یِم نوٹس ٲسۍ نہٕ قونوٗنَن مُطٲبِق تہٕ چھِنہٕ قبول کرنہٕ آمٕتۍ۔ \"أسۍ کَرِ ٲییٖن اپناونٕکہِ 75 ؤرۍ یَن ہُنٛد جشن۔ اسہِ چھِ تخلیقی کٲم کٔرِتھ لوٗکَن ہٕنٛزٕ خواہشات پوٗرٕ کرٕنۍ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 863, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0443", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ، مستطیٖلٕچ زیٚچھر رقبہٕ کِس چۄڑٲیِس سۭتۍ ضرب کٔرِو [1].\n\nمستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ فارموٗلا چھُ:\n```\nرقبہٕ = زیٚچھر × چۄڑٲی\n```\nمِثال کِس طورس پٮ۪ٹھ، اگر اَکھ مستطیٖل 5 سینٹی میٖٹَر زیٚچھر تہٕ 3 سینٹی میٖٹَر چۄڑٲی چھُ، تیٚلہِ آسہِ اَمیُک رقبہٕ:\n```\nرقبہٕ = زیٚچھر × چۄڑٲی\nرقبہٕ = 5 سینٹی میٖٹَر × 3 سینٹی میٖٹَر = 15 سینٹی میٖٹَر²\n```\nتُہۍ ہیٚکو یہِ فارموٗلا کُنہِ تہِ مستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ اِستعمال کٔرِتھ، اَمیُک سائز یا رُخ کُنہِ تہِ آسہِ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 490, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0444", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا ٲس وُنہِ تہِ ربود۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0445", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I tried again, but I failed.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 28, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0446", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ پتہٕ تھوو جمالن لاکٹ چندس منٛز تہٕ تیز تیز قدمو درٛاو دروازس کُن۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 71, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0447", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مَلہٕ بٹہٕ تہٕ حلط\nٹٹھِشن سۄ کلہِ وَتِی\nیِہ تِم دپن تہِ غلط\nلگہِ ہَرس اَشوٚد کتِی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0448", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید یِتھہٕ کٔنۍ سلیمٕنۍ حفاظت کٔر تمہِ سۭتۍ گٔیہِ سلیمہٕ زبردست مُتٲثر سُۄ روز پتہٕ پچھتاون زِ مےٚ کیازِ کوٚر أمِس سۭتۍ بُرٕ سلوک یہِ زَن تٔمۍ گۄڈٕ أمِس سۭتۍ کوٚرمُت اوس۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 173, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0449", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "No lavish court or costly pageants or feasts and games or chances for easy or dubious riches could be expected during the time of this scrupulous northerner who earnestly desired reform and a united and tranquil Christendom.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 224, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0450", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Below are some recommendations to help you manage your IBD, tailored to suit you based on the answers you have given.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0451", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تی سہ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 6, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0452", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You see the sky.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0453", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس بانڈی پورہ ضِلعہٕ کِس أکِس جنٛگلی علاقَس منٛز گوٚو سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان جٲری مُقابلَس منٛز اکھ دہشت گرد مارنہٕ۔\nفوجٕکہِ چِنار کورَن ووٚن بۄدوارِ دۄہ صُبحٲے ‘ایکس’ کِس أکِس پوسٹَس منٛز: \"بانڈی پورہ کٹسان آپریشن: سیکورٹی فورسَن چھُ اکھ دہشت گرد ہلاک کوٚرمُت۔”\nتٔمۍ ووٚن زِ علاقَس منٛز چھِ آپریشن وُنہِ تہِ جٲری۔\nبۄموارِ دۄہ ووٚن چِنار کورَن زِ دہشت گردَن ہٕنٛدِ ژوٗرِ روزنٕچ قٲبلِ اعتماد اطلاع مِلنہٕ پتہٕ کوٚر فوج، جموں و کشمیر پولیس تہٕ سی آر پی ایفٕچ اکہِ ٹیمَن بانڈی پورہ کِس کیٹسن جنگلی علاقَس گیرٕ تہٕ کوٚرُکھ آپریشن شروع۔\nتٔمۍ ووٚن زِ اتھ وقتس دوران گوٚو سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان گولہِ چلاونہٕ۔\nأتھہِ دوران چھُ کپواڑہ کِس لولاب کِس مرگی علاقَس منٛز سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان مُقابلہٕ تہِ جٲری", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 762, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0454", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ریٚشۍ وَنٕکۍ میران ریٚشی\nژندرٕ ساسس آنزل چووٚو\nاَدٕ دٕیہِ روٚس آکاش گویو\nتِتُھے مےٚ وَر دِتو دِیوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0455", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The challenges here are far more complex than they were for trans fats, which are more easily isolated and replaced in the food supply.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 135, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0456", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ تتھ دروازس اوس وُنہِ الہٕ ڈلہٕ گژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0457", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "While the idea of cap and trade is simple—the system's goal is to reduce carbon emissions, the leading contributor to global warming—drafting the bill, not to mention its implementation, could be a nightmare.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 208, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0458", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I write a note.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0459", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہَن چھُ ہندوستان کِس ٲییٖنُک معمار ڈاکٹر بابا صاحب بھیم راؤ امبیڈکرَس تہنٛدِس زایہِ دۄہَس پٮ۪ٹھ خراج تحسین پیش کوٚرمُت۔\nتٔمۍ کٔر دُعا زِ بابا صاحب سٕنٛز میراث روزِ مُستقبِلس منٛز اسہِ رہنُمٲیی کران۔\n\nبھیم راؤ رام جی امبیڈکر اوس مُلکُک گۄڈنیُک وزیر قانون تہٕ مُلکٕک ٲییٖنُک اکھ اَہَم مُصنِف۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 327, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0460", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were happy, and they celebrated together.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0461", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You sit there.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0462", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توٗشِتھ باتری مارو\nنولٕے قبر زایے\nسونچتہٕ ہا اکابیرو\nژٕ تَھو لۄلہٕ متہٕ لایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 76, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0463", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wanted to rest, but she had work.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0464", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was late, but he finished the task.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0465", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲبقہٕ آیی ایٚف ایٚس اَفسَرن ہیٚتھ کارکُنن ہِنٛدِ اَکہِ جمٲژ چُھ سُپریٖم کورٹَس منٛز درخاست کٔرمٕژ زِ ہِنٛدُستانس کَرِ اِسرٲیلس ہتھیارعرضی گزارَن چھُ ایڈووکیٹ پرشانت بھوشن سٕنٛدِ ذٔریعہٕ ریٹائرڈ آئی ایف ایس افسر اشوک کمار شرما سٕنٛدِس قیادتس منٛز سپریم کورٹَس زور دِیُت زِ سُہ کرِ غزہَس منٛز جنگ رُکاونہٕ خٲطرٕ جنگَس دوران اسرٲیلس فوجی ہتھیار تہٕ گولہٕ باروٗد فراہم کرن والٮ۪ن کمپنیَن ہٕنٛدۍ موٗجوٗدٕ لائسنس منسوخ کرنہٕ۔ عرضی منٛز چھُ داواہ کوٚرمُت زِ لایسنسُک یہِ اجازت چھُ مبینہ طور پٲٹھۍ بین الاقوٲمی قونوٗنَن تہٕ ٲییٖنٕچ خٕلاف ورزی کران۔یہِ عرضی چھِ مینا گپتا، دیب مکھرجی، اچن ونیاک، جین ڈریز، تھوڈور مدابوسی کرشنا، ہرش مندر، نکھل دے تہٕ باقیو مِلِتھ مسٹر شرما سٕنٛزِ قیادتس منٛز دٲخل کٔرمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 696, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0466", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یَتھ چھُ تُہٕنٛدِ آزماونہٕ خٲطرٕ پلے سٹیشن 3 خٲطرٕ سارِوٕے کھۄتہٕ مَقبول ایڈونچر گیمَن ہُنٛد اکھ فِہرِست:\n1. اَن چارٹِڈ\n2. دی لاسٹ آف اَس\n3. میٹل گیئر سولِڈ V: دی فینٹم پین\n4. گاڈ آف وار\n5. بایو شاک\n6. بیٹ مین: آرکھم سٹی\n7. گرینٛڈ تھیفٹ آٹو V\n8. ریڈ ڈیڈ ریڈیمپشن\n9. اسیسنٛز کریڈ\n10. پرِنٛس آف پرشیا\n11. ٹومب ریڈَر\n12. اَن چارٹِڈ 2: اَمَنٛگ تھیوٗز\n13. جَرنی\n14. دی آی سی او تہٕ شیڈو آف دی کولوسس کلیکشن\n15. بیونٛڈ: ٹوٗ سولز\n16. ہیوی رین\n17. فار کرائی\n18. ریزیڈنٹ ایوِل 4\n19. چائلڈ آف لایٹ\n20. اوکامی 3 ڈی", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 503, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0467", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نتہٕ پننہِ ییٚمہِ کٔشیٖرِ ہٕنٛدِ بھلٲیی تہٕ فٲیدٕ خٲطرٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0468", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲبقہٕ ؤزیٖر اعظم ڈاکٹر منموہن سِنٛگھ سٕنٛز ٲخری رسٕم یِیہِ بَٹہٕ وارِ دۄہ راج گھاٹَس نزدیٖک نگم بودھ گھاٹَس منٛز سرکٲری اعزازَس سۭتۍ ادا کرنہٕ، وزارت داخلہَن ووٚن جُمعہ دۄہ ژیرِ یہِ ونان زِ حکومتس چھِ کانگریس پارٹی ہٕنٛدِ صدر سٕنٛدِ طرفہٕ سٲبقہٕ ؤزیٖر اعظم ڈاکٹر منموہن سنگھ سٕنٛدِ یادگار خٲطرٕ جاے الاٹ کرنٕچ درخواست آمٕژ۔\nوزارت ہَن ووٚن زِ مرکزی کابینہ میٹنگ پتہٕ جلدٕیہ ووٚن وزیرِ داخلہ امیت شاہَن کانگریس صدر ملیکارجن کھڑگے تہٕ مرحوٗم ڈاکٹر منموہن سنگھ سٕنٛدٮ۪ن عیالَن زِ حکومت کَرِ یادگار خٲطرٕ جاے۔ اتھ دوران ہیکَن جنازہٕ تہٕ باقی رسمی عمل سپدِتھ تِکیٛازِ یادگار خٲطرٕ پیٚیہِ اکھ ٹرسٹ بناوُن تہٕ اَمہِ خٲطرٕ یِیہِ جاے الاٹ کرنہٕ۔\nسِنٛگھ گُزریٛوو برٛسوارِ دۄہ شامَس ییٚتہِ ایمسَس منٛز۔\nڈاکٹر سِنٛگھ سٕنٛز لاش یِیہِ ٲخری رسٕم برٛونٛہہ کانگریس ہیڈ کوارٹرَس منٛز ٲخری درشن خٲطرٕ تھاونہٕ۔ ٲخری رسٕم یِیہِ صبحٲے 9.30 بجہِ کرنہٕ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 829, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0469", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژرِپٕپۍ کریکہٕ ناد کنہِ چلاوان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 31, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0470", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "In addition, these colors weren't confined to a province but rather irregularly scattered across various regions over all of China.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 131, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0471", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You close the door.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0472", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بۄنِم سیارٕ چھُ اَکھ آسمٲنی جِسم یُس آفتابَس گِرد چھُ گَردِش کَران، ییٚمِس چھُ اَکھ گۄل شکل حٲصِل کَرنہٕ خٲطرٕ کٲفی وَزَن، ییٚمِس چھُ نہٕ پنٛنِس گِردِش کِس علاقَس صاف کٔرمُت، تہٕ یہِ چھُ نہٕ اَکھ زوٗن [1].\n\nبۄنِم سیارٕ چھُ اَکھ اِصطلاح یُس سیارٕ کٮ۪ن ساینسدان ایلن سٹرنَن دٔسۍ آفتاب کِس نِظامَس مَنٛز سیارٕ کٮ۪ن وَزَن وٲلؠن چیٖزَن ہٕنٛدِس ترٛیٚن طٔریٖقو سۭتۍ درجہٕ بَنٛدی کَرنہٕ خٲطرٕ اِستعمال کٔرمٕژ: کلاسیکی سیارٕ، بۄنِم سیارٕ، تہٕ سیٹلائٹ سیارٕ [2]. بۄنِم سیارٕ چھِ سیارَن کھۄتہٕ لۄکٕٹۍ، مگر یِم چھِ لۄکٕٹؠن آفتاب کِس نِظام کٮ۪ن چیٖزَن یِتھٕ کٔنۍ زَن ایسٹرایڈ تہٕ دُم دار تٲرِخَن کھۄتہٕ بٔڑۍ۔ بۄنِم سیارَن چھُ اَکھ ہائیڈرو سٹیٹِک توازن تہِ آسان، ییٚمیُک مَتلب چھُ زِ یِم چھِ پنٛنِس گِریویٹی سۭتۍ تَقریٖبَن گۄل [1][2].\n\nبۄنِم سیارٕ کِس مُتعلِق چھُنہٕ کانٛہہ واضِح تعریٖف، تہٕ اَکھ چیٖز بۄنِم سیارٕ کِس طورس پٮ۪ٹھ درجہٕ بَنٛدی کَرُن چھُ اَکھ اِنفرٲدی اَکھاڑِش دانَن پٮ۪ٹھ مُنحَصِر۔ اَتھ پٲٹھۍ چھُ آفتاب کِس نِظامَس مَنٛز بۄنِم سیارَن ہُنٛد اَصٕل تاداد نامعلوٗم [2]. موٗجوٗدٕ وَقٕتَس مَنٛز چھُ اِنٹرنیشنل اَسٹروٗنومِکَل یوٗنِیَن (IAU) اَمہِ نِظامَس مَنٛز پانٛژھ آسمٲنی جِسم بۄنِم سیارَن کِس طورس پٮ۪ٹھ درجہٕ بَنٛدی کَران: سیریس، پلوٹو، ہومیا، میک میک، تہٕ ایریس۔ سیریس چھُ ایسٹرایڈ بیلٹَس مَنٛز واقع، ییٚلہِ زَن باقٕے ژور بۄنِم سیارٕ چھِ کُیپر بیلٹَس مَنٛز واقع، یُس نیپچوٗن کھۄتہٕ بٮ۪رون شِتہٕ وٲلؠن چیٖزَن ہُنٛد اَکھ علاقہٕ چھُ [1][2].\n\nبۄنِم سیارٕ چھِ مُطٲلِعہٕ کَرنہٕ خٲطرٕ اَہَم، کِیاہ کہِ یِم ہیٚکَن اَمہِ نِظامَس مَنٛز سیارَن ہٕنٛزِ تَشکیٖل تہٕ اِرتقا کِس مُتعلِق اِشارٕ دِتھ۔ یِم ہیٚکَن اَتھ مَنٛز تہِ مَدَتھ کٔرِتھ زِ سیارٕ کِتھٕ پٲٹھۍ چھِ باقٕے آفتاب کِس نِظامَس مَنٛز بَنان تہٕ اِرتقا کَران [1].", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1606, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0473", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They want fun.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0474", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خراب موسمی حالاتٕکہِ پیش نظر دِیُت حُکامو بوموارِ دۄہ جموں و کشمیر کٮ۪ن راجوری تہٕ پونچھ ضِلعن منٛز تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل بنٛد کرنُک حُکُم۔ اہلکارَو وون زِ سٮ۪ٹھا روٗد تہٕ خراب موسم کہِ وجہ سۭتۍ روزن راجوری ضلعٕک تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل بوموارِ دۄہ بنٛد۔ پونچھ کہِ ڈِسٹرکٹ مجسٹریٹ سٕنٛدِ طرفہٕ جٲری أکِس بیانَس منٛز چھُ ونٛنہٕ آمُت زِ احتیٲطی اقدام پٲٹھۍ روزن ضلعٕک تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل از 12 اگست 2025 موٗجوٗدٕ موسمی حالاتہِ کِنہِ بنٛد۔ قٲبلِ ذِکِر چھُ زِ محکمہٕ موسمیاتَن چھُ جموں و کشمیرس منٛز روٗد پیٚنٕچ پیشن گوئی کٔرمٕژ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 552, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0475", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توے چِھ امِہ شعبٕہ کٮ۪ن مختلف مضموٗنن منز گرےجویٹ تٕہ وۄمیدوارٕن ہٕنز مانگ بڈٕیامٕژ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 84, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0476", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یام آسکھ نٮ۪بر ہَے لایق\nتام اَرزتھ نہٕ پُلگ پَژھی\nگرنٛز لگہٕ نَے نہٕ یِم سندھایک\nپٮ۪کھ پایس یاوَن مٔژی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0477", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اینجلا ماریا \"انی\" ڈی فرانکو چھِ اَکھ امریٖکی-کینیڈین گٲیِک تہٕ نغمہٕ لیکھن وٲلۍ۔ سۄ چھےٚ پنٛنِس نسلس منٛز اَکھ بااثر فنکار، ییٚمِس لوٗک تہٕ متبٲدِل راک صنفَس منٛز 20 کھۄتہٕ زیٛادٕ البم جٲری کٔرمٕتۍ چھِ۔ اینی ڈی فرانکو سٕنٛدٮ۪ن نغمَن منٛز چھُ کیٚنٛہہ پنٛک، جاز، فنٛک تہٕ ہِپ ہاپ صوتی اثر تہِ [1]۔\n\nتٔمِس سٕنٛدۍ کیٚنٛہہ مَشہوٗر تہٕ کامیاب نغمہٕ چھِ:\n1. ڈو اور ڈائی\n2. اَن ٹچ ایبل فیس\n3. بلڈنگز اینٛڈ برِجز\n4. ؤرٛتھ\n5. یو ہیڈ ٹایم\n6. شای\n7. گلاس ہاؤس\n8. یۄر نیکسٹ بولڈ موو\n9. جیوک باکس\n10. شیملیش [1]", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 499, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0478", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ ییٚلہِ غذا نِش مِلن واجیٚن توانٲٮٔی تہٕ خرٕچ گژھن واجیٚن توانٲٮٔی چھےٚ ہشیٖی آسان تیٚلہِ چھیٚنہٕ جسمٲنی وزنس منٛز کانٛہہ تدیٖلی یِوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 138, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0479", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وایناڈ: ریلائنس فاؤنڈیشن چھِ وایناڈ، کیرالہ ہَس منٛز لینڈ سلائیڈٕ سۭتۍ متٲثر گژھَن والٮ۪ن ہٕنٛز مدد کرنہٕ خٲطرٕ برٛونٛہہ کُن، ریلائنس فاؤنڈیشن چھِ مقٲمی انتظامیہ کِس اشتراک سۭتۍ اتھ سانحَس منٛز یِنہٕ والٮ۪ن لوٗکَن طویل مدتی راحت فراہم کرنُک منصوبہٕ بناوان۔ شمسی لالٹین تہٕ ٹارچ فراہم کران۔\nمُتٲثِر گَژھن والیٚن خاندانن یِن بِیٲل، چارہٕ، سامان تہٕ ووکیشنل تربِیت دِنہٕ تاکہِ تِہنٛز زِنٛدگی ہیٚکہِ بیٚیہِ پَکہِ پیٚٹھ واپس یِتھ۔ ریلائنس فاؤنڈیشن کَرِ شُرٮ۪ن ہِنٛزِ تعلیٖمہِ ہُنٛد تسلسل یقینی بناونہٕ خٲطرٕ کِتابہٕ تہٕ کھیلن ہُنٛد سامانَس سۭتۍ تعلیٖمی مدد فراہم۔ ریلائنس جیوَن چھِ رٲبطہٕ بہتر بناونہٕ تہٕ آفات کِس انتظامَس ہموار بناونہٕ خٲطرٕ بچاؤ کارکُنَن تہٕ ڈیزاسٹر مینجمنٹ ٹیمَن ہٕنٛز ہموار کٲم باپتھ خاص ٹاور لگٲوِمٕتۍ۔ فاؤنڈیشن چھِ نفسیٲتی صدمہٕ سۭتۍ متٲثر لوٗکَن مٲہِرَن ہُنٛد مدد تہِ فراہم کران", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 798, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0480", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نئی دہلی: سپریم کورٹَن کٔر ژٔنٛدٕروارِ دۄہ بہار سرکار تہٕ باقین أکِس عرضی پٮ۪ٹھ نوٹس جٲری، یَتھ منٛز ریاستَس منٛز کینٛہہ کٔدٕل پٮ۪نہٕ کٮ۪ن حالٕے واقعاتَن ہٕنٛدِس تناظرس منٛز ریاستَس منٛز تمام موٗجوٗدٕ تہٕ زیر تعمیر کٔدلَن ہُنٛد اعلیٰ سطحی ساختی آڈٹ کرنُک مطالبہٕ اوس کرنہٕ آمُت۔ أمۍ دِیُت نتیش کمار حکومتس تہٕ نیشنل ہائی وے اتھارٹی آف انڈیا (این ایچ اے آئی) پنُن جواب دٲخل کرنُک ہدایت۔\nپنٛنہِ عرضی منٛز چُھ سِنٛگھن بِہار حُکوٗمتس کٔدٕلن ہِنٛز نگرٲنی خٲطرٕ اکھ مُنٲسِب تہٕ مؤثر پالیسی یا طریقہٕ کار بناونٕچہِ ہِدایت دِنٕچ منگ کٔرمٕژ۔ اَمہِ علاوٕ چھُ یہِ تہِ ونٛنہٕ آمُت زِ حکوٗمتٕچ مبینہٕ سٔنجیٖدٕ لاپرواہی تہٕ ٹھیکدارَن تہٕ مُتعلقہٕ ادارَن ہٕنٛدِ بدعنوان گٹھ جوڑ کہِ وجہ سۭتۍ چھِ پرٛٮ۪تھ دۄہ جٲنی تہٕ مٲلی نۄقصانٕک واریٛاہ بدبخت واقعہٕ گژھان۔\nأمہِ سٕنٛزِ عرضی منٛز چھِ رِیٲستی حکوٗمتَس امن یا ایگزیکٹو آرڈر کہِ ذٔریعہٕ اکھ مؤثر مُستقل اِدارٕ تشکیل دِنہٕ خٲطرٕ مُنٲسِب ہِدایَت دِنٕچ تہِ کوٗشِش", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 892, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0481", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میوٗٹھ کھٮ۪وان تہٕ حزن مازان\nتَوے الک تہٕ پلگ لٕزان آسی\nکینٛہہ شیخ لاگِتھ وَتن پٮ۪ٹھ روزان\nلوٗکن پانس کُن پھِران آسی\nسۄن چُھے گوٚب تہٕ تیٚلہِ کونہٕ وزان\nسرتل زیرے وزان آسی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 171, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0482", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دٲنِشمند چُھے اَمرَت گوٚروٗ\nپھیٚرِ پھیٚرِ اوسُس پَشپان\nبرٛونٛہہ کنہِ ٲسٕس کتاب لٔرُو\nوُچھِتھ آسہِ ڈٲنٛجراوان\nوُچُھن ہیوٚت چُھ أندرٕ ژھوٚروٗ\nپرَس پرٕنان موٚشُس پان", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0483", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲری مٲزی گرس\nدۄہے کھٮ۪تھ ژھنڈان ہایے\nموٚٹھُے پوٚز ابرارس\nژٕ تَھو لۄلہٕ متہٕ لایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0484", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لڑکہٕ تہٕ لڑکیہِ گٔیہِ خوش تہٕ لٲجِکھ نعرٕ دِنہِ پولیسن کوٚر دۄشوٕنۍ کالجٮ۪ن گیراو لڑکہٕ تہٕ لڑکیہِ رلییہِ پانہٕ وٲنۍ تہٕ چلایکھ پولیسس پٮ۪ٹھ کنہِ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 147, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0485", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ بَے رِج، برٛوٗکلِن این وای سی نِش کیٚنٛہہ لائبریری:\n1. برٛوٗکلِن پبلِک لائبریری- بَے رِج برانٛچ چھُ 7223 رِج بلووارڈ، 73 وِتھ سٹریٹ، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔\n2. لِٹل فری لائبریری چھُ 81 وِتھ سٹریٹ، 4 وِتھ ایوینیو، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [2] پٮ۪ٹھ واقع۔\n3. برٛوٗکلِن پبلِک لائبریری- میک کِنلے پارک برانٛچ چھُ 6802 فورٹ ہیملٹن پی کے وای (68 وِتھ سٹریٹ، برٛوٗکلِن، این وای 11219، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔\n4. برٛوٗکلِن پبلِک لائبریری- فورٹ ہیملٹن برانٛچ چھُ 9424 4 وِتھ ایوینیو، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 582, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0486", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَکہِ ہوٚت سونٛتھ چُھے نیر شکارس\nؤہرس کیُت بایہِ آسی رُتُے\nورگس تٔہندِس دورٚ روز کارس\nیارَن سۭتی آسی رُتُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0487", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیرخزانَن ووٛن زِ پانٛژھ ٹریلین امریکی ڈالر َن ہنٛز معیشت خٲطرٕ پیہٕ مصنوعات سٲزی شعبہ مستقبل بنیادَن پٮ۪ٹھ دۄگنٛہٕ حِصن منٛز ترقی کَرٕن تہٕ مصنوعات ساز کمپنیَن چِھ عالمی سطحہٕ پٮ۪ٹھ سپلائی چینہٕ ہُنٛز لٲزمی جزو بننٕچ ضرورت یِمن نِش صلٲحیت تہٕ جدید تَکنیٖکی مہارَت چِھ ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 271, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0488", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Block and file access via iSCSI,FC and NFS protocols.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0489", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Did you know you can tell the temperature by looking at the way the rhododendron leaves are curled?", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0490", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آئس لینٛڈ چھُ وُچھنہٕ خٲطرٕ اَکھ خوٗبصوٗرت مُلُک۔ ییٚتہِ چھِ کیٚنٛہہ سادٕ آئس لینٛڈِک لفٕظ یِم تُہۍ ہیٚچھِتھ ہیٚکو تاکہ تُہُنٛد آئس لینٛڈُک سفر زیٛادٕ قٲبِلِ رَسٲیی بَنہِ [1][2]:\n1. **ہیلو:** ہالو (ہال-او)\n2. **شُکریہ:** ٹاک (ٹیک)\n3. **تُہۍ کِتھٕ پٲٹھۍ چھِو؟**: ہورنیگ ہیفُرُتھو تھاڈ؟ (تُہۍ کِتھٕ پٲٹھۍ چھِو؟)\n4. **میون ناو چھُ...**: ایگ ہیتی ... (یگ ہی-ٹی...)\n5. **تُہُنٛد ناو کیٛا چھُ؟**: واڈ ہیٹیر تُو؟ (ہواٹ ہی-ٹی تھو؟)\n6. **صبح بخیر**: گوڈن ڈاگِن (گو-تھان ڈائی-ن)\n7. **شب بخیر**: گوڈا نوٹ (گو-تھا نوٹ)\n8. **خوٗب دۅہ**: گوڈن ڈاگِن (گو-تھان ڈائی-ن)\n9. **یَس**: یا (یاہ)\n10. **نہٕ**: نی (نے)\n11. **مُبارک باد**: ٹِل ہیمِنٛگجو (ٹِل ہیم-ِنٛگ-یو)\n12. **کُت چھُ...**: ہوار ایر ... (کوار ایر...)\n13. **بہٕ چھُس گژھُن...**: ایگ وِل فارا ٹِل ... (یگ وِل فاہ-راہ ٹِل...)\n14. **اکھ ٹکٹ ... خٲطرٕ، مہربٲنی کٔرِتھ**: ایِن میڈا ٹِل ...، ٹاک۔ (ایِن-اِن میڈا ٹِل ...، تھاک)\n15. **تُہُنٛد مُلاقات کٔرِتھ خوشی چھُ**: گامَن اَڈ کِنناسٹ تھیر (گامَن اَڈ کِنناسٹ تھو-یر)\n16. **معاف کٔرِتھ**: افساکیڈ (آہٹ-سا-کی)\n17. **یہِ کٮ۪تھ چھُ؟**: ہواڈ کوسٹار تھاٹا؟ (ہواٹ کوسٹار تھاٹا)\n18. **باتھ روم کُت چھُ؟**: ہوار ایر باتھربرگی؟ (کوار ایر باتھ-ہر-بر-گی)\n19. **مدد!**: ہجالپ! (ہجالپ)\n20. **نار!**: ایلڈور! (ایل-ڈور)\n\nیاد تھاوِو زِ آئس لینٛڈِک تلفظ ہیٚکہِ واریاہ مُشکل آسِتھ، اَتھ کِنۍ چھُ یہِ اَکھ اَصٕل خیال زِ مُقٲمی بولن والٮ۪ن ہُنٛد آواز بوٗزِو تہٕ پنُن تلفظ تہِ پریکٹس کٔرِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1354, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0491", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٲنَے کھٮ۪ن چُھے شرعس کرٛنزٕے\nمٲنَے کھٮ۪ن چُھے اند آوار\nمٲنَے کھٮ۪ن آسہِ پرٛٮ۪کتھ سَنزٕے\nمٲنَے کھٮ۪ن چُھے سٔدرس تار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 115, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0492", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We have time.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0493", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گۄن پرٛژھتوژۄن دِشن\nمرنُن برٛٮ۪م تھوٚوُن آوٹو\nکینٛژَو ڈیوٗنٛٹھ تہٕ کیٖنژۍ ڈیشن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0494", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تازٕ شیٖن پیٚنہٕ کِنہِ آو جنوبی کشمیرَس منٛز شوپیاں ضِلعس جموں کِس پونچھ تہٕ راجوری ضِلعن سۭتۍ جوڑن واجنہِ تاریخی مغل سڑکہِ پٮ۪ٹھ تہٕ وادی لداخ کِس مرکزی زیر انتظام علاقس سۭتۍ جوڑن واجنہِ سری نگر-لیہہ شاہراہَس پٮ۪ٹھ ٹریفک رُکاونہٕ۔ وونہِ گو٘ ، سری نگر-جموں قومی شاہراہَس پٮ۪ٹھ ، یُس وادی مُلکہٕ کٮ۪ن باقٕے حِصن سۭتہِ رَلاوان چھُ ، چھُ معموٗل پٲٹھۍ جٲری۔ ٹریفک حکامَو ووٚن زِ مُغل روڈ، سری نگر-لیہہ ہائی وے تہٕ سنتھن روڈ چھِ تازٕ شیٖن پیٚنہٕ کِنہِ ٹریفک خٲطرٕ بنٛد کرنہٕ آمٕژ۔ تِمَو ووٚن ووٚن زِ سرینگر-جموں قومی شاہراہَس پٮ۪ٹھ چھُ دۄن طرفن ہُنٛد ٹریفک، یُس وادی باقٕے مُلکس سۭتۍ رَلاوان چھُ، چھُ معموٗل پٲٹھۍ جٲری۔ حکامَو چھِ لوٗکَن ہدایت دِژمٕژ زِ تِم کرَن پوٗرٕ بحٲلی تام یِمَن سڑکَن پٮ۪ٹھ سفر کرنہٕ نِش بچُن۔ لوٗکَن چھُ مشورٕ دِنہٕ آمُت زِ تِم دِن افواہَن کُن توجہ نہٕ دِنہٕ، بٔلکہِ ٹریفک پولیسُک ٹویٹر ہینڈل، فیس بُک پیج، تہٕ ٹریفک کنٹرول یونٹ، جموں تہٕ ٹریفک کنٹرول یونٹ، سرینگر کہِ ذٔریعہٕ یِمن سڑکَن ہٕنٛز حالت ؤچھِن۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 924, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0495", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعلیٰ عمر عبداللہ ہَن ووٚن زِ جموں و کشمیرٕچ نیشنل لا یونیورسٹی کَرِ بیٛکہِ ؤرۍ یہِ اپریل پٮ۪ٹھٕ کِرایہِ رہٲیشہِ پٮ۪ٹھ کٲم شُروٗع، تہٕ بڈگامَس منٛز اوم پورہ ہیٚکہِ اَہم کیمپس ٲسِتھ۔ سی این آیی مُطٲبِق چھُ بانڈی پورہ اسمبلی ہٕنٛدِ رُکُن نظام الدین بٹ سٕنٛدِس قراردادَس پٮ۪ٹھ جموں و کشمیر قانون ساز اسمبلی منٛز تقریر کران، وزیر اعلیٰ عمر عبداللہ ہَن ووٚن زِ حکوٗمت چھُ نیشنل لا یوٗنیورسٹی مدد کرنُک منصوبہٕ تھاوان، تِکیٛازِ اَتھ خٲطرٕ چھِ گۄڈَے 500 ملین رۄپیہِ گرانٹ مختص کرنہٕ آمٕتۍ۔ ییٚلہِ ایوانَس منٛز قرارداد منظور گٔیہِ، وزیر اعلیٰ ووٚن زِ تٔمِس چھِ وۄمید زِ یُنوَرسِٹی منٛز کلاس یِن بیٚکہِ ؤرۍ یہِ اپریل پٮ۪ٹھٕ شُروٗع۔ وزیر اعلیٰ ہن ووٚن، ‘حالانٛکہِ وٕنیُک تام چھُنہٕ جایہِ مُتعلِق کانٛہہ فٲصلہٕ آمُت کرنہٕ، مےٚ چُھ پننٮ۪ن سٲتھیَن ووٚنمُت زِ تِم کٔرِن اَمہِ خٲطرٕ مُنٲسِب جاۓ ہٕنٛز نشاندٕہی کرنہٕ۔ وونہِ گو٘ فی الحال چھِ اسہِ اوم پورہ، بڈگامَس منٛز اکھ سایٹ دٔستِیاب، یۄس خٲلی چھےٚ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 891, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0496", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕک لیفٹیننٹ گورنر منوج سنہاہن چھُ لوکَن آینی دۄہَس پٮ۪ٹھ مبارک باد دِژمٕژ تہٕ امہِ کٮ۪ن بناون والٮ۪ن خراج تحسین پیش کوٚرمُت۔\nتٔمۍ کٔر لوٗکَن اپیل زِ تِم کرَن ٲییٖنُک تقدس برقرار تھاونہٕ تہٕ سمٲجی انصاف تہٕ برابری ہٕنٛدۍ اصوٗل مضبوٗط۔\nٲییٖنی دۄہ، یَتھ سمودھن دیوس تہِ ونٛنہٕ چُھ یِوان، چُھ مُلکَس منٛز پرٛٮ۪تھ ؤرِیہِ 26 نومبر مناونہٕ یِوان۔\nلیفٹیننٹ گورنرَن ووٚن بوموارِ دۄہ ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز زِ بہٕ چھُس سارنٕے لوٗکَن آینی دۄہَس پٮ۪ٹھ مُبارک باد دِوان تہٕ آیین بناون والٮ۪ن خراج تحسین پیش کران۔\nتٔمۍ ووٚن زِ یَتھ اَہَم مُقامس پٮ۪ٹھ چھُس بہٕ پرٛٮ۪تھ أکِس آییٖنُک تقدس برقرار تھونُک تہٕ سمٲجی انصاف تہٕ برابری ہٕنٛدۍ اصوٗل مٔزیٖد مضبوٗط کرنُک مُطالبہٕ کران۔\nتٔمۍ ووٚن زِ \"چلو پنُن پان معاشرٕ کِس امن تہٕ ترقی خٲطرٕ وقف”۔\nیہِ دۄہ چھُ ہندوستانٕچ آئین ساز اسمبلی طرفہٕ 1949 ہَس منٛز ہندوستٲنی ٲییٖن اپناونٕچ نشاندٕہی کران۔ ٲییٖن آو ٲخٕر کار 26 جنوری 1950 ہس منٛز نافذ کرنہٕ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 892, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0497", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We go together.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0498", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَلستُ بوٗزِتھ ہیوٚتُکھ پتھٕے\nقالو بلیٰ تتہِ دوٚپُکھ نہ\nشےٚ مَن کھٮ۪وان ماز کِہو بتٕے\nبرہمن لٲگِتھ بٲطن نہٕ کینٛہہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0499", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفسو کامہِ کرٮ۪تھ کَمہٕ زشتہ\nنفسو وُچھن دِژامَے مِتٕرۍ شہار\nنفس چُھم زاگان دشمن سٕنٛدِ نِشتہ\nنفسَن یَژھے ژھٔنڈم شِتٕرۍ شہار\nنفسٕنہِ دادِ کوٗتاہ بہٕ پشتہ\nنفسَن ژھونڈُم دۄہَے اَتٕرۍ شہار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 184, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} +{"id": "bench_0500", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِہ، اَکھ کُک بُک چھُ واریاہن مُختٔلِف موقعن خٲطرٕ اَکھ بۄڈ تحفہٕ۔ یہِ چھُ اَکھ فِکر مند تہٕ عملی تحفہٕ یُس یہِ ظٲہِر چھُ کَران زِ تُہۍ چھِو پرواہ کَران۔ کُک بُکس ہیٚکَن رَننٕچ تکنیک تہٕ نوٚو کھٮ۪ن ہیٚچھنُک اَکھ بۄڈ طٔریٖقہٕ آسِتھ، یا مُختٔلِف ریسیپین سۭتۍ تجربہٕ کَرُن۔ اَکھ کُک بُک آسہِ تِمَن لوٗکَن خٲطرٕ اَکھ بۄڈ تحفہٕ یِمَن [1][2][3] -\n- یِم لوٗکھ رَننُک مزٕ چھِ ہیٚوان تہٕ مُختٔلِف تکنیکن سۭتۍ تجربہٕ کَرُن چھِ یِژھان۔\n- یِم لوٗکھ بُنیٲدی رَنن ہیٚچھُن چھِ یِژھان۔\n- یِم لوٗکھ چھِ یِمَن غذٲیی پابنٛدِی چھِ تہٕ یِمَن ریسیپین ہٕنٛز تلاشی کَرنَس مَنٛز مددٕچ ضروٗرت چھِ یِم تِم ہیٚکَن کھٮ۪تھ۔\n- یِم لوٗکھ چھِ یِمَن اَکھ خاص کھٮ۪نَس مَنٛز دِلچسپی چھِ۔\n- گَرٕ رَنن وٲلۍ یِم لذیٖذ، غذٲیی کھٮ۪ن رَنُن چھِ یِژھان۔\n- یِم لوٗکھ چھِ یِمَن تفریح کَرنُک تہٕ پارٹِین ہٕنٛز میزبٲنی کَرنُک مزٕ چھُ۔\n- یِم لوٗکھ چھِ یِمَن ڈایٹ کَرنُک منصوٗبہٕ چھُ تہٕ یِمَن صحت مند ریسیپین ہٕنٛز ضروٗرت چھِ۔\n\nمجموعی طور پٮ۪ٹھ، اَکھ کُک بُک ہیٚکہِ واریاہَن لوٗکَن خٲطرٕ اَکھ بۄڈ تحفہٕ آسِتھ۔ مگر یقیٖنی بَنٲوِو زِ تُہۍ ہیٚچھِو اَکھ کُک بُک یۄس اَتھ شخصٕچ دِلچسپی سۭتۍ مِلان آسہِ۔ تِہنٛدِس ہُنَرٕچ سطح، تِہنٛدِس پسندیدہ کھٮ۪ن، تِہنٛدِس غذٲیی ضروٗرتَن، تہٕ تِہنٛدِس پسندیدہ کھٮ۪نَس پٮ۪ٹھ غور کٔرِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1165, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": ""} diff --git a/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.jsonl b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.jsonl new file mode 100644 index 0000000..e6b97b3 --- /dev/null +++ b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.jsonl @@ -0,0 +1,500 @@ +{"id": "bench_0001", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چمکہٕ وٕنِس ڈٮ۪کس پٮ۪ٹھ ٲسِس عرقہٕ پِھرۍ زوتان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 47, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only clothes were kept on the floor which were slowly getting wet gradually by sweat coming from him through the pores of his skin.\"\"\""} +{"id": "bench_0002", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I read books.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس کتابہٕ پران۔"} +{"id": "bench_0003", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لگہِ نہٕ کَنہِ پل بَدل کعبس\nلگہِ نہٕ آہَنس گاسہٕ نار\nلگہِ نہٕ موٚکُر کُنہِ درگاہس\nلگہِ نہٕ شاہس کتھِ اِنکار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Not a pebble nor a hair nor a moment nor money can be taken from me by anyone whatsoever."} +{"id": "bench_0004", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرس منٛز یِیہِ ملی ٹنسی ہُنٛد ماحولیٲتی نظام پرٛتھ قۭمتَس پٮ۪ٹھ ختٕم کرنہٕ: منوج سنہا\nجموں و کشمیرٕکۍ لیفٹیننٹ گورنر منوج سنہاہَن ووٚن زِ فوج چھُ جموں و کشمیر کٮ۪ن سرحدن پٮ۪ٹھ جنگ بٔنٛدی ہٕنٛز خلاف ورزِین ہُنٛد سخٕت جواب دِوان۔\nتٔمۍ ووٚن زِ خٕطس منٛز یِیہِ دہشت گردی ہُنٛد ماحولیٲتی نظام پرٛٮ۪تھ قۭمتَس پٮ۪ٹھ ختٕم کرنہٕ۔\n\nلیفٹیننٹ گورنرَن کوٚر ژٔنٛدٕروارِ دۄہ ییٚتہِ أکِس تقریٖبہِ ہِنٛدِس حاشس پٮ۪ٹھ صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اظہار۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 457, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Lt Governor of Jammu and Kashmir Manoj Sinha expressed these views while talking with reporters on Thursday at a sidelines event here.\""} +{"id": "bench_0005", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفسی کٔرٕم اَدل تہٕ وَدَل\nنفس میون شیطانس بدل آو\nنفس یِرِم کرٛیہِ ہٕندۍ کَدل\nنفس میون دوزخس بَدل آو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return the translation of what has been done and not replace it with something else The soul replaces your death and becomes your destiny.\"\"\""} +{"id": "bench_0006", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آرٕتُے سرٕ تہٕ سنگر لُنگے\nآرٕتُے ویٖر منگہِ یے ٹنگ\nآرٕتُے یِپِس نِشے سۄنگے\nآرٕتُے دزنس لگہِ نہٕ انگ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return and take it back along with you The woodcutter has demanded this much money from him Therefore he will be unable to visit his abode either at this time or later on.\"\"\""} +{"id": "bench_0007", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اگر تو٘ہہِ میری لینڈ پیٹھہٕ فلوریڈاہس تام گاڑِ منز بغیر رُکن سفر کران چھِو، تیٚلہِ لگن لگ بگ 14 گٲنٛٹہٕ تہٕ 5 منٹ [1][2][3]۔\nمیری لینڈ تہٕ فلوریڈاہس درمیان چھُ تقریباً 945 میل یا 1,521 کلومیٹر [2]۔ وقفہٕ، ٹریفک تہٕ موسمٕچ صورتحال وٗچھِتھ ، فلوریڈاہس تام واتنس منز لگن لگ بگ 16.5 گٲنٛٹہٕ [2]۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 291, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "If you were driving from Maryland to Florida without stopping it would take approximately 17 hours and 5 minutes [2][2] or nearly 18 hours including traffic conditions between Maryland and Florida [2]."} +{"id": "bench_0008", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس رشیدس کھورن تھپھ کٔرِتھ معٲفی منگٕنۍ یژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "She wanted to apologize by holding Rashid’s feet firmly together between them.\""} +{"id": "bench_0009", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَرزتھ وَن تہٕ وارے\nتتہِ کیا أسۍ حساب گِنَو\nمےٚ تروو آلہٕ کال شکھُر پھَرے\nلُز پٲوٕم أسۍ از وَر دٕنو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Tell him again and again What will we calculate There they are sitting here praying to Allah while offering their fruits They became Muslims today thanks to us."} +{"id": "bench_0010", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٹاکِنٛگ سٕٹفَر چھِ عام طور لۄکٕٹۍ، سَستۍ تحفہٕ یِم چھِ کرِسمَس سٹاکِنٛگَن مَنٛز چھُٹِین ہٕنٛدِس رِوٲیَت کِس حِصَس پٲٹھۍ تھاونہٕ یِوان [1]. یہِ گژھہِ اَکھ یُتھ چیٖز آسُن ییٚمِچ حٲصِل کَرن وٲلِس قَدر تہٕ مزٕ آسہِ، اگرچہ یہِ اَکھ بۄڈ تحفہٕ آسہِ نہٕ [1].\n\nاَتھ چھِ کینٛہہ اَصٕل سٹاکِنٛگ سٕٹفَرَن خٲطرٕ خیالات [2]:\n1. کینٛڈی تہٕ ٹریٹ\n2. لۄکٕٹۍ گیجٹ\n3. ٹوائلٹریز\n4. مِنی بورڈ گیم یا پزل\n5. بُک مارک\n6. سٹیشنری چیٖز\n7. کی چین\n8. گِفٹ کارڈ\n9. زیورات\n10. سُگتھ سَچٹ\n11. ٹریول سائز بیوٗٹی پروڈکٹ\n12. مِنی پلانٹ\n13. لۄکٕٹۍ کِتابہٕ\n14. آرٹ سَپلای\n15. ہینٛڈ وٲرمَر\n\nیِم چھِ صِرِف کیٚنٛہہ مِثال یِم سٹاکِنٛگ سٕٹفَرَن ہٕنٛدٮ۪ن واریاہن خیالاتَن ہٕنٛدۍ چھِ یِم دٔستیٲب چھِ۔ سٹاکِنٛگ سٕٹفَر ژوٗن وِزِ کٔرِو حٲصِل کَرن وٲلِس ہٕنٛدٮ۪ن دِلچسپیَن تہٕ شوقَن پٮ۪ٹھ غور، سۭتۍ سۭتۍ تِہنٛدِس وٲنٛسہِ تہٕ جِنٛسَس پٮ۪ٹھ تہِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 796, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Here are just some examples of many ideas that may be available when buying a stocking stitter consider the recipient interests and trends along with their age and gender.\""} +{"id": "bench_0011", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was hungry, so he ate quickly.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ اوس بھوٚکھ، توے کھؠوو تٔمۍ جلدی۔"} +{"id": "bench_0012", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wanted to buy a dress, but it was expensive.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ ٲس پلو خریدن یژھان مگر یہ اوس قٟمتی۔"} +{"id": "bench_0013", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مراجعة الهواتف هذه الأيام من أصعب الأشياء التي يقوم بها المحرر في مجال التقنية، فأنت تتعامل مع عالم من الأجهزة التي أصبحت تتشابه في كل شيء، التصميم و الكاميرا والأداء كلها وصلت لمرحلة من الكمال في عالم الهواتف الذكية.", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 217, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Indeed these days we encounter devices that facilitate technological advancement whereby we interact with devices that encompass virtually everything including design cameras and games reaching ultimately a state of perfection in the realm of technologies they provide access to hardware ranging from smartphones through missiles until ultimately developing missile systems capable beyond traditional weapons capabilities making them increasingly powerful tools providing technological advancements throughout"} +{"id": "bench_0014", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دۄشوٕنۍ ہٕنٛدۍ یرادٕ ٲسۍ مضبوط۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 31, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Both had strong wills that enabled them to achieve their goals successfully despite difficulties faced during implementation."} +{"id": "bench_0015", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "One may also view the class ReaderLang as the blueprint for determining the meaning of language expressions: int is to tell the meaning of integer literals and add is to tell how to combine the meanings of two argument expressions to obtain the denotation for the addition.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 273, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "کلاس ریڈر لینگ ہیٛکہ زبان کیٚن تاثرات چہ معنی متعین کرنہٕ خٲطرٕ نقشہ ساخت پٲٹھ تہ وچھتھint چہ مانی چھے integer literals ہنز معانی ونان اور add چہ معانی"} +{"id": "bench_0016", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فرشتہٕ وسنم ارِنو\nدپنَم بندٕ چُھکھ کوٚہندو\nجوابس روزٮ۪م تھرٕنو\nیا اللہ چُھس شرمندٕ چون", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Return and tell me your truth You will be forgiven answered Muhammad B Khidr Said Allah has been humiliated by you and your country men replied Muhammad B Khandhru Say something and forgive me Muhammad B said Allah has humiliated your country and your people men replied Islamabad Khan Abdul Hamid Muhammad B Said Allah had humiliated your countries"} +{"id": "bench_0017", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They write clearly.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چھ واضح طور پٲٹھۍ لکھان۔"} +{"id": "bench_0018", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جواب چھُے نا تگان دیُن۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Can we answer back herePlease tell me how to do it and I will fulfill my vow after completing this task successfully.\"\"\""} +{"id": "bench_0019", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا ٲس ودن کرٮ۪کہٕ یژھان دِنۍ مگر خوفہٕ سۭتۍ ٲسۍ یہِ دَم پُھٹۍ گٲمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Suriya wanted to scream at the top of her voice but her lungs were filled with asthma due to coughing caused by fear.\"\"\""} +{"id": "bench_0020", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اکثر چُھ واریاہ زیادٕ کھین حٲصل یوان کرنہٕ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Also a lot of food is bought regularly for feeding animals in farms areas near here.”"} +{"id": "bench_0021", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can start now, or we can wait for them.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 42, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اَز ہیٚکو آسُن شُروٗع کٔرِتھ، یا بَقائے عقیدَت تھٲوِ زِ تِم یِن تہٕ سَمکھناوَن اَسہِ سٟتۍ ملاقات۔"} +{"id": "bench_0022", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فوٹوگرافر بننٕچ تُہٕنٛزِ سفرٕچ شروعات کَرنہٕ خٲطرٕ چھِ یِمَن قدمَن ہٕنٛز مدد:\n1. پنٕنۍ دِلچسپی ژارِو: فوٹوگرافی چھُ دِلچسپی ہُنٛد اَکھ بوٚڈ میدان یَتھ مَنٛز پورٹریٹ، لینڈ سکیپ، وائلڈ لائف، فیشن، سپورٹس، آرکیٹیکچر، سٹریٹ تہٕ باقٕے شٲمِل چھِ۔ یہِ طے کٔرِو زِ کُنہِ قٕسمٕچ فوٹوگرافی چھِ تُہٕنٛدِس سارِوٕے کھۄتہٕ زیٛادٕ دِلچسپی تھاوان، کیٛازِ یہِ کَرِ تُہٕنٛزِ ہیٚچھنَس تہٕ پریکٹسَس رَہنُمٲیی [1].\n2. ساز و سامانَس مَنٛز کٔرِو سرمایہٕ کٲری: فوٹوگرافی خٲطرٕ چھُ اَکھ اَصٕل کیمرہٕ تہٕ مُتعلِقہٕ اِضافی سامان یَتھ مَنٛز لینز، اَکھ مضبوط ٹرایپوڈ، تہٕ میموری کارڈ شٲمِل چھِ۔ تُہٕنٛدِس بجٹَس تہٕ دِلچسپی مُطٲبِق ہیٚکِو تُہۍ ڈی ایس ایل آر، مرر لیس کیمرہٕ، یا اعلیٰ معیارٕکۍ سمارٹ فون کیمرہٕ ژارِتھ [1].\n3. بُنیٲدی کَتھ ہیٚچھِو: فوٹوگرافی ہٕنٛدٮ۪ن بُنیٲدی تصوٗراتَن یَتھ مَنٛز اپرچر، شٹر سپیڈ، آئی ایس او، اِمیج کمپوزیشن، تہٕ لائٹنگ شٲمِل چھِ، تِہنٛدِس سۭتۍ کٔرِو واقفیت [1].\n4. فوٹوگرافی ہٕنٛدٮ۪ن تکنیکن ہُنٛد مطالعہٕ کٔرِو: یہِ چھُ مَشورٕ دِنہٕ یِوان زِ کٔرِو آن لایِن یا آف لایِن فوٹوگرافی کورس۔ تُہۍ ہیٚکِو یوٗنیورسٹیَن، ڈیزائن اِنسٹی ٹیوٗٹَن، یا فوٹوگرافی سکوٗلن نِش اَکھ رَسمی فوٹوگرافی ہُنٛد قابلیت حٲصِل کٔرِتھ۔ کِتابہٕ، فوٹوگرافی میگزین، تہٕ یوٗٹیوٗب ٹیوٗٹوریل چھِ تہِ تُہٕنٛدِس خۄدٕ کَرنہٕ وٲلِس فوٹوگرافی ہُنٛد مطالعہٕ کَرنہٕ خٲطرٕ قٲبِلِ قدر وسٲیِل [1].\n5. باقٲیِدگی سۭتۍ کٔرِو پریکٹس: پنٕنۍ صلاحتہٕ وُچھناونہٕ خٲطرٕ کٔرِو مُختٔلِف سیٹِنٛگَن، کمپوزیشنَن، مضموٗنَن، تہٕ حالتن سۭتۍ تجربہٕ [1].\n6. پنُن پورٹ فولیو بناوِو: فوٹوگرافی ہٕنٛدۍ کٲم یا نوکری حٲصِل کَرنہٕ خٲطرٕ چھُ تُہٕنٛدِس اَکھ مضبوط پورٹ فولیو ضروٗری۔ پنٕنۍ بہترین کٲم ہُنٛد اَکھ پورٹ فولیو بناونہٕ پٮ۪ٹھ کٔرِو کٲم یُس تُہٕنٛدٮ۪ن صلاحتن ہُنٛد رینج چھُ وُچھناوان [1].\n7. ایڈیٹنگ ہیٚچھِو: ایڈیٹنگ چھُ جدیٖد فوٹوگرافی ہُنٛد اَکھ اہم حِصہٕ۔ پنٕنۍ فوٹو ایڈیٹ کَرنہٕ تہٕ بہتر بناونہٕ خٲطرٕ کٔرِو ایڈیٹنگ سافٹ ویئر ی", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1769, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ٕچ عیدمت ہیـو ضرور آسن [1]"} +{"id": "bench_0023", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر کرنل جمال عبدالناصِرن کوٚر پان عرب ازمٕہ کِس نعرس تحت بے اکِہ لٹِہ عرب ملک اِکٕہ وٹٕہ کرنٕچۍ کوٗشِش مگر مصرٕکۍ تٕہ شامٕکۍ عارضی اتحاد بغٲرۍ گٔے نٕہ زیادٕ کامیٲبی حٲصِل۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 172, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But Colonel Jamal Abdul Nasir tried unsuccessfully to bring Egypt together with Arabia under his leadership of a panArabian movement but failed largely except for Egypt and Syria's temporary alliances.\""} +{"id": "bench_0024", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We play games.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ کھیل گنٛدان۔"} +{"id": "bench_0025", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہرنٕنہِ نَینہٕ لوسَم وُچھان\nلۄکہٕ چارَن کرٔنم گرایے\nأرنٮ۪ن گاہ ژلٮ۪م وِرنٮ۪ن وُچھان\nیاوُن سوٗر تہٕ بُڈے بایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 109, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Looking at Harnai Nene Losam Loka Charan Grai Ke Gramai Orne Gah Chhalim Veernai Soor and Budai Bhaiye."} +{"id": "bench_0026", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "United States writer of poems and plays about racial conflict (born in 1934).", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 77, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "متحد ریاست امریکہک شاعر اور ڈرامہ نگار نسلی تناز سے متعلق نظائید سے تعلق رکھنے والے (پیدائش ۱۹۳۴ء)۔"} +{"id": "bench_0027", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "۱۹مِہ تٕہ ۲٠ مِہ صدی منٛز اوس اردو زبان تٕہ ادب ترقی پٮ۪ٹھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In the 19th and 20th centuries Urdu language and literature were growing steadily in Bengal region.\""} +{"id": "bench_0028", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ سلامُن گرم خوٗن ثریا سٕنٛدٮ۪ن پدٮ۪ن بوسہٕ کرنہِ لوٚگ أہندِس وجودس لٔج دٕنن۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 83, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Salams warm blood started flowing through his feet while others started flowing into her existence causing tremors throughout their bodies and legs respectively)."} +{"id": "bench_0029", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سارنی خٲطرٕ پرنَس قٲبِل", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "open for everyone to read and understand what they want to know about humanity today is incredible thing to achieve at any time anywhere in history.\"\"\""} +{"id": "bench_0030", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژےٚ آوٕے نہٕ میون لڑایو نِش لوٚب روزن پسند۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "You didn't like staying near my house did you?"} +{"id": "bench_0031", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "منشیاتَن خٕلاف کریک ڈاؤن جٲری تھٲوِتھ کٔر سرینگر پولیسَن این ڈی پی ایس ایکٹَس تحت 20 لَچھن رۄپین ہٕنٛز غٲر منقولہ جائیداد ضبط۔\nپُلسہٕ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سری نگر پولیسَن چھےٚ این ڈی پی ایس ایکٹَس تحت تقریباً 20 لَچھن رۄپین ہٕنٛز أکِس کنالس پٮ۪ٹُ ترٛےٚ پۅہر رہٲیشی عمارت منسلک کٔرمٕژ۔\nتٔمۍ ووٚن زِ یہِ جایداد چھےٚ شال ٹیننگ کِس روزَن وٲلِس غلام محمد بٹ سٕنٛدِس نیچوِس فیاض احمد بٹ سٕنٛز یُس شال ٹینِگٕکِس روزَن وٲلِس بدنام ڈرگ ڈیلر منظور احمد بٹ سُنٛد مول چھُ۔\nتٔمۍ ووٚن زِ مُلزِم چھُ پامپور پولیس تھانس منٛز ایف آئی آر نمبر 98/2025 تحت درٕج این ڈی پی ایس ایکٹ کٮ۪ن مُتعلقہٕ دفعاتن منٛز مُلوث۔\nترجمانَن ووٚن زِ تٔحقیٖقاتَس دوران گوٚو یہِ ثٲبت زِ یہِ جایداد ٲس منشیاتٕچ تجارت ذٔریعہٕ حٲصِل کرنہٕ آمٕژ۔\nتٔمۍ ووٚن زِ یِمَن نتیجَن پٮ۪ٹھ عمل کٔرِتھ چُھ مجاز اتھارٹی این ڈی پی ایس ایکٹ کِس دفعہٕ 68-F تحت ضبطی کرنُک حُکُم جٲری کوٚرمُت۔\nتٔمۍ ووٚن زِ اٹیچمنٹٕچ کاروٲیی چھےٚ ایگزیکٹوو دٔسۍ انجام دِنہٕ یِوان۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 913, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Continuing their crackdown on drugs Srinagar police seized three shelter residence properties valued at approximately 2 million rupees under the NDPS Act according to a spokesperson for the police.\""} +{"id": "bench_0032", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "محلس أندۍ پٔکۍ اوس سٮ۪ٹھاہ وسیع لان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The palace was surrounded by a large garden containing numerous flowers and vegetables such as roses roses saffron narcissus etc.”"} +{"id": "bench_0033", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بیٚیہِ تہٕ بیٚیہِ اوس اژدھا سٕنٛدۍ پٲٹھۍ زہرٕ برٕتۍ شاہ والان تہٕ کھالان شسترٕ چمکییہِ بیٚیہِ ہوہس منٛز والان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 110, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Also like Azadha breathing and exhaling through his lungs filled with poison were making a sound like thunder making smoke rise into the air again.\"\"\""} +{"id": "bench_0034", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یتھ واوٕ ہالے ژونگ کُس زالے\nتِلہٕ کنہِ زالٮ۪س علم تہٕ دیٖن\nپرٛکتھ ترٲوِتھ سۄ کتھ پالے\nسورُے علم چُھس الف لام میم\nبوزتو ہینٚدۍ فاقن کران اُلنگنٕے\nاوم پن گٔنڈِتھ کھٮ۪ن مَن پٔشی\nالہٕ پلہٕ کھٮ۪تھ چٮ۪تھ نٮ۪بر ڈُلگٕنے\nہا بمہٕ سادو یِمہٕ روزِ کِژَھے", "domain": "poetry", "length_bucket": "long", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 242, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Hear what Hindus celebrate by saying this worship is done with utmost devotion and dedication What did they achieve by offering everything to fire gods The same thing happened between Muslims and Buddhists who worshipped Allah Almighty with great devotion and enthusiasm This happened between Christians Muslims Buddhists and Hindus alike They worshipped Allah together praying at Muslim shrines mosques temples churches etc making"} +{"id": "bench_0035", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اتھ دوران چِھ شانتی بھوشن تٕہ پرشانت بھوشن سٕندِ استعفاء دِنٕچ منگ بڈیامٕژ کیازِ کِہ دلِۍ ُپکیٖس کِہ طرفٕہ چِھ سی ایف ایس ایل رپۄٹ نُن کڈنٕہ آمُت یتھ منز وننٕہ چُھ آمُت زِ شانتی بھوشن سٕندِ کتھ باتھ پٮ۪تھ بناونٕہ آمٕژ سی ڈی سۭتۍ چُھنٕہ چھیڈ چھاڈ کرنٕہ آمٕژ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 257, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Meanwhile demands for an apology from Shanti Bhushan and Prashant Bhushan have risen due to reports suggesting that CFSL has been accused of releasing the CCTV footage obtained from Delhi which purportedly depicts the conversation between ShantiBhushan and Prasanth Bhushan alleging they were compelled to release the CCTV tape obtained after Shanti"} +{"id": "bench_0036", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَگہٕ مل ژوٚلُے ژےٚ تَنے\nملہٕ بانگ شٕننہِ دراوٕ\nنکھہٕ بار وسی خفتَنے\nہے زُوٕ مرُن موٚٹھُے کَوے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if you provide evidence If they deny it evidence suggests otherwise The proof suggests otherwise therefore live and die alike regardless of consequences.\"\"\""} +{"id": "bench_0037", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was hot, and the sun was bright.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 35, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "آفتاب اوس تیتہٕ آمت ییتہ طاحرت چھ کٲم کران۔"} +{"id": "bench_0038", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توبہٕ یوٚد کرَکھ ییٚمہِ بۄہہٕ سرٕ ترَکھ\nتوبہٕ کرُن چھے تارٕوٕنۍ ناو\nتوبہٕ رستہِ پانو تتہِ کِتھہٕ اوٚبرکھ\nییٚتہِ چھے تۭر تہٕ وُشُن واو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 133, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if you provide assistance otherwise your journey will be in vain Since there is a strong wind blowing here currently it would be beneficial to provide assistance anyway.”"} +{"id": "bench_0039", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٲرۍ مٔندۍ وٕٹھ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Stabbed his leg badly injured himself in the process and died instantly from the injuries received thereafter.\"\"\""} +{"id": "bench_0040", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جٔنوٗبی کٔشیٖرِ ہِنٛدِس کُلگام ضِلعہٕ کِس دَمہال ہنٛجی پورہ علاقس منٛز نار لگنہٕ سۭتہِ گٔیہِ ترٛےٚ رِہٲیشی گَھرٕ زالنہٕ۔\n\nنار تہٕ ہنگٲمی محکمہٕ کِس أکِس اہلکارَن ووٚن زِ بۄموارِ دۄہ شامَس لوٚگ کُلگام کِس دمہال ہنجی پورہ علاقَس منٛز أکِس گَرَس منٛز نار تہٕ لٔگِتھ زٕ گَرٕ۔\n\nتٔمۍ ووٚن زِ اطلاع مِلنہٕ پتہٕ ووت فائر ٹینڈر موقعَس پٮ۪ٹھ تہٕ کٔرٕن نار قوبوٗ منٛز۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 357, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A fire department official said that a fire broke out in one of the houses in Dmehal Hanjipora area of Kulgam district south Kashmir on Tuesday evening and consumed two houses.\""} +{"id": "bench_0041", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He sees a cat.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ اکھ cat وٕچھان۔"} +{"id": "bench_0042", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالٕنۍ وُٹھ ٲسۍ مکژِ ہٕنٛدٮ۪ن رتہٕ پھیرٮ۪ن لٲرِتھ گٲمٕتۍ تہٕ نظرٕ آسس ثریا سٕنٛدِس جسمس پٮ۪ٹھ أکِس آبہٕ پھیٖرِس پٮ۪ٹھ درٕ لجمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only Jمالs lips were closed and his eyes were fixed upon a water droplet on Sryas body through her lenses glasses causing an impression of depth.\"\"\""} +{"id": "bench_0043", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کاؤنٹر انٹیلی جنس کٔشیٖرِ کٔر وادی کٔشیٖرِ منٛز سمٲجی سرگرمیَن ژھایہِ کٲم کرن وٲلِس أکِس مبینہ دہشت گرد سپورٹ نیٹ ورکَس خٕلاف اکھ بٔڈ کاروٲیی تہٕ ترٛٲوِکھ اَکی وِزِ واریاہَن ضِلعن منٛز چھاپہٕ۔ یہِ عمل چھُ قوم دشمن عناصرن خٲطرٕ اکھ فٲصلہٕ کُن دھچکا قرار دِنہٕ یِوان۔\nسی آئی کیس مُطٲبِق آیہِ یہِ کاروٲیی ایف آئی آر نمبر 03/2023 کِس سلسلَس منٛز کرنہٕ، یُس پُلیٖس تھانہٕ سی آئی کے سرینگرَس منٛز تعزیرات ہند کِس دفعہٕ 505 تہٕ 153-A سۭتۍ سۭتۍ غٲر قونوٗنی سرگرمین (روک تھام) ایکٹ (یوٗ اے پی اے) کِس دفعہٕ 13 تہٕ 18 ہس تحت درٕج کرنہٕ آمُت چھُ۔ این آیی اے ایکٹس تحت کٔرۍ سرینگر عدالتٕکۍ خصوٗصی ججَو کٔر چھاپَن باپتھ رسمی طور تلاشٕکۍ وارنٹ جٲری۔\nتٔحقیٖقاتَس دوران چھےٚ خفیہ زانکٲری سۭتۍ پتہ لگان زِ جموں و کشمیرَس منٛز چھِ کینٛہہ نفر سوشل میڈیا، انسٲنی حقوق، ماحولیٲتی تحفظ، تہٕ زنانَن بااختیار بناونہٕ کٮ۪ن پلیٹ فارمَن ہُنٛد استعمال کران یِمو سۭتۍ ہندوستانٕچہِ خۄدمختٲری خطرٕ چھُ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 871, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Counter intelligence has conducted a major operation against an alleged terrorist support network working undercover in Jammu and Kashmir raids were simultaneously carried out across several districts This action is being described as a decisive blow against nation enemies elements registered under sections 5905 and 176A of the FBI Act for illegal activities (prohibition"} +{"id": "bench_0044", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خواجہ طاروقی صٲب اوس شہرُک اکھ رٮٔیس تہٕ قٲبلِ عزت۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 51, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Bhaajyabhai Tarqai was a leader of the city and one of its most respected officials at that time."} +{"id": "bench_0045", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It makes sound.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ چھ آواز دوان۔"} +{"id": "bench_0046", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پُلیٖسن چُھ ووٚنمُت زِ حِفاظتی فوجن چُھ جٔنوٗبی کٔشیٖر کِس شوپِیان ضِلعس منٛز زٕ مشتبہ نفر گِرِفتار کٔرِمٕتہِ تہٕ یِہنٛدِ قبضہٕ منٛزٕ ہتھیار تہٕ گولہٕ باروٗد برآمد کوٚرمُت۔ شوپیاں پولیسَن کٔر ‘ایکس’ پٮ۪ٹھ أکِس پوسٹہٕ ذٔریعہٕ معلوٗمات فراہم یَتھ منٛز وَنُن چھُ زِ ‘دہشت گردی خٕلاف أکِس اَہَم آپریشنَس منٛز کٔر ایس او جی شوپیان، سی آر پی ایفٕچ 178 بٹالین تہٕ فوجٕچ 34 آر آر یَن پٮ۪ٹھ مشتمل ٹیمَن أکِس چیک پوسٹَس پٮ۪ٹھ زٕ مشتبہ افراد گِرِفتار ۔ تِمَو ووٚن زِ تلٲشی دوران آیہِ یِہنٛدِ قبضہٕ پٮ۪ٹھٕ ہتھیار تہٕ گولہٕ باروٗد برآمد کرنہٕ، یِمَن منٛز 4 گرینیڈ، 2 پستول، 43 راؤنڈ تہٕ باقی مُجرِمانہٕ سامان شٲمِل چھِ۔ پوسٹَس منٛز چھُ ذِکِر کرنہٕ آمُت زِ اَتھ مُتعلِق چھُ اکھ کیس درٕج کرنہٕ آمُت، تہٕ تحقیقات چھِ شُروٗع گٔمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 714, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Police have stated that security forces arrested two suspects in the Shopian district of southern Kashmir and seized weapons and ammunition recovered from them during an operation against terrorism involving teams from OGO Shopian CRPF's 168th battalion and Army' Kashmiri police stationed at a checkpoint involved in an important operation against terrorists stating"} +{"id": "bench_0047", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لفظ ‘سیکولرازم’ چھُ آیین کِس بُنیٲدی ڈھانچُک حصہٕ قرار دِتھ سپریم کورٹَن ژٔنٛدٕروارِ دۄہ ووٚن زِ واریاہ فٲصلہٕ چھِ یِم یہِ واضح کران چھِ زِ یہِ چھُ اکھ غٲر متغیر حصہٕ۔ اشونیَن کوٚر کُمار اپادھیائے بوزنہٕ وِزِ یِژھہِ راے ہُنٛد اِظہار۔\nبنچ ووٚن زِ واریاہ فٲصلہٕ چھِ یِمَن منٛز سپریم کورٹَن یہِ قرار دِیُت زِ ‘سیکولرازم’ چھُ بنیٲدی ڈھانچُک حصہٕ تہٕ درحقیقت چھُ اتھ بنیٲدی ڈھانچہٕ کِس غٲر تبدیل شدٕ حصُک درجہٕ دِنہٕ آمُت۔\nجسٹس کھنہ سٕنٛزِ سربرٲہی منٛز بیٚنچ ووٚن زِ \"اگر أسۍ آینس منٛز استعمال گژھن وٲلۍ ‘مساوات تہٕ بھائی چارٕکۍ حق’ لفظن سۭتۍ سۭتۍ حصہٕ III تحت بُنیٲدی حقوقن وُچھِو، تیٚلہِ چھُ یہِ واضح پٲٹھۍ ظٲہِر کران زِ سیکولرازمس گژھہِ ٲییٖنٕچ اکھ اَہَم خصوٗصیت ماننہٕ یِنۍ”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 674, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "While reading Kumar Appadhyaya Justice Khanna led bench stated If we look at the fundamental rights under Part III along with the words equality and justice applicable in Constitution then it clearly shows that سیککولرازم should be considered an important feature of constitution according to J S Khanna opined during this reading session."} +{"id": "bench_0048", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برف چھُ شُرٮ۪ن خٲطرٕ رٮ۪تہٕ کولَس منٛز مزٕ کَرنٕچ واریاہ سرگرمی پیش کَران۔ شُرٮ۪ن خٲطرٕ چھِ کینٛہہ مزٕ دار سرگرمی یِم برفُک مزٕ ہیٚکن ہیٚتھ:\n\n1. سَنوبال لڑٲیی: اَکھ دوستانہٕ سَنوبال لڑٲیی چھُ اَکھ کلاسِک رٮ۪تہٕ کولُک کھیل یُس گھنٹہٕ بٕدۍ تفریح فراہم کٔرِتھ ہیٚکہِ۔ یقیٖنی بَنٲوِو زِ تِمن ہیٚچھٲوِو زِ کِتھ پٲٹھۍ چھِ سَنوبال بناونہٕ یِوان تہٕ تِم کِتھ پٲٹھۍ چھِ ژھنٛڈنہٕ یِوان تاکہ تِمن آسہِ نہٕ زَخم [2].\n2. سَنومین بناوُن: سَنومین یا باقٕے بَرٕفٕچ مُجَسَمہٕ بناوِتھ کٔرِو تخلیقی صلاحیتَن ہُنٛد حوصَلہٕ اَفزٲیی۔ اِضٲفی مزٕ خٲطرٕ کٔرِو ٹوٗپۍ، سکارف تہٕ گاجرٕچ نَک چھُک اِستعمال [2].\n3. سَنو اینجل: شُرۍ ہیٚکن بَرٕفَس منٛز لیٹِتھ تہٕ پنٕنۍ بانہٕ تہٕ زنٛگہٕ ہلاوِتھ اینجل شکلہٕ بناوِتھ سَنو اینجل بناوِتھ [2].\n4. سَنو کیسل: کینٛہہ شُرٮ۪ن ہٕنٛدۍ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕفٕچ بٔرٕ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1394, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ٰرٕبٔرآفت چہ بٔরآفت بٔرتھ شُرین ہنز بٰرتھ بٰریتھ شِرِس ماجہ مَہ پرژھِتو بَتہ کیازِ بیتھ شریر شِرِش ماجہ ما نہ پر"} +{"id": "bench_0049", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بدن اوسُس بوٚرُت سروٕ ہیوٗ قد سۄ ٲس دوری حُسنٕچ پٔری باسان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "With her beautiful face and lovely eyes she looked like a fairy princess whose name was Badrinath Beexala Ukhai Khaiu Khenra Thoi Thoi Khen Thoi Khai Ukhaisu Kho Thoi Bhai U khai U Khai Thoi U Khhai U"} +{"id": "bench_0050", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غرض حُسن و شبانچٕ پٔری ہِش زول مال زَن تہِ نوش لب۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return those items whose photos and information provide evidence of your ownership of them such as pictures for example purposes uses purchased goods for example reasons etc.\"\"\""} +{"id": "bench_0051", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سیکورٹی فورسَو کوٚر بۄموارِ دۄہ شامس شُمٲلی کشمیر کِس بانڈی پورہ ضلعس منٛز ترٛےٚ نَفر گِرِفتار تہٕ تِہنٛدِ قبضہٕ نِش ہتھیار تہٕ گولہٕ بارود برآمد کٔرِتھ۔ حکامَو وون زِ حِفاظتی فورسَو کٔر بۄموارِ دۄہ شامَس بانڈی پورہ کِس أکِس چیک پوسٹ پٮ۪ٹھ ترٛےٚ نَفر گِرِفتار۔ تِمَو ووٚن زِ مشکوُکو افرادَو کٔر حفاضتی اہلکارَن وُچِھتھ ژلنٕچ کوٗشِش، مگر موقعہٕ پٮ۪ٹھ رٹنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 356, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Security forces arrested three people and seized weapons and ammunition from their possession in Bandipur area of north Kashmir on Tuesday evening officials said Security forces arrested the suspects persons attempted to escape through a checkpoint officials observed but were caught at the spot."} +{"id": "bench_0052", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نیشنل کانفرنسٕکۍ ترجمان عمران نبی ڈارَن ووٚن زِ پی ڈی پی چھِ موٗجوٗدٕ وقتَس منٛز پنُن پان فٹ تھونہٕ تہٕ پنُن سیاہ ماضِی پردٕ تھونہٕ خٲطرٕ تمام ذٔریعہٕ اختیار کران۔\n\nتٔمۍ ووٚن زِ حقیقت چھِ یہِ زِ جموں و کشمیرٕک لوکو چھِ کلما دعوت پارٹی رَد کٔرمٕژ تِکیازِ امہِ سۭتۍ چھِ نہٕ صرف بی جے پی یَس جموں و کشمیرُک خصوصی درجہٕ چھیننَس منٛز مدد بلکہِ تٲریٖخی ریاست تہِ بنییہِ مرکزی زیر انتظام علاقہٕ۔\n\nتٔمۍ ووٚن زِ محبوبہ مفتی سٕنٛز عمر عبداللہ حکومتس پٮ۪ٹھ لگاتار تنقید ٲس نہٕ حٲران کَران تِکیازِ تٔمِس نِش اوس نہٕ امہِ ورٲے کیٚنٛہہ تہِ", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 525, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "National Conference spokesperson Imran Nabi Dar said that PDP was using every resource at its disposal to maintain its dignity and wipe away its dark past currently in Jammu and Kashmir stating Because they were unable to provide anything except for political entities ranging from BJP itself which would facilitate their access to Jammu and Srinagar facilitating their access into Jammu and Delhi respectively"} +{"id": "bench_0053", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can play now, or we can rest.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 32, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اَسی پییہِ وُنۍ سُنٛد کھیل یا آرام اَسہِ پزِ صرف تعلیمی طرت بَنُن۔"} +{"id": "bench_0054", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آرچی میننٛگ چھُ اکھ امریکی سٲبقہٕ پیشہٕ ور فٹ بال کھلٲڑۍ یُس نیشنل فٹ بال لیگ (این ایف ایل) منٛز 13 سیزنَن تام نیو اورلینز سینٹس سۭتۍ کوارٹر بیک اوس۔\n\nمیننٛگَن کٔر ڈریو، مسیسیپی منٛز ڈریو ہائی سکولَس منٛز تٲلیٖم حٲصِل۔ تٔمۍ کٔر پنٛنِس سکولَس منٛز فٹ بال، باسکٹ بال، ٹریک تہٕ بیس بالَس منٛز شاندار کارکردٕگی۔\n\nتٔمۍ کٔر 13 وری وٲنٛسہِ منٛز ورسِٹی بیس بال ٹیمَس منٛز شروٗعات، تہٕ اٹلانٹا بریوزَن کٔر تٔمِس پنٛنِس سینئر سیزن پتہٕ ڈرافٹ۔ میننٛگَن کٔر آکسفورڈَس منٛز یونیورسٹی آف مسیسیپی منٛز تٲلیٖم حٲصِل تہٕ اوس ترٛیٚن ؤریَن تام اولے مس منٛز سٹارٹنگ کوارٹر بیک۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 557, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Arch Manning is an American former professional football player who was a quarterback for 19 seasons in the National Football League (NFL). Manning attended Drew High School in Mississippi but performed excellent performances in football basketball track and baseball throughout his school years. He started on the University of Mississippi at Oxford when he was three years old and"} +{"id": "bench_0055", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نُندٕ سہزٕکہِ آپی لالَے\nژےٚ لالس مۄل اوس کوٗتو\nیہِ لیوکھمُت پیٚوُوے فالَے\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only Nund Sahzopai Lal will remain forever with you The others are deceased and hence their memories faded away after this death of Nund Sahib they perished forever in Swarg Sura gaso (Nund Sahjopai)."} +{"id": "bench_0056", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لرزٕ تہٕ خوفہٕ کِنۍ ٲس یہِ کنہِ ہٕنٛز مۄرٕژ زَن تہِ روٗزِتھ گٲمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 66, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Due to terror and anxiety he had turned into a stone statue like that of somebody else despite his efforts to revive him alive.\"\"\""} +{"id": "bench_0057", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِتھے کِنۍ چِھ امیتا بھ گھوش ، ارون دھتی راۓ تہٕ مہا شویتا دیوی تہِ پنٛنٮ۪ن تحریٖرَن منٛز عالمی ماحولٔکۍ مسلہٕ موضوٗع بنٲوۍ مٔتۍ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 129, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Similarly Amita Bhatt Ghosh Arunachalam Ravi and Mahasweta Devi have also addressed issues of world environment in their writings.\"\"\""} +{"id": "bench_0058", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بارہمولہ ضِلعہٕ اِنتِظامیہَن چھُ میڈیا شناختُک غلط استعمال تہٕ نقلی صحافتُک بڑوُن رُجحان رُکاونہٕ خٲطرٕ مقٲمی صحافیَن ہٕنٛز سند تہٕ تصدیق کرنُک عمل شُروٗع کوٚرمُت۔ اَتھ سلسلَس منٛز چھُ ڈِسٹرکٹ انفارمیشن آفیسر سٕنٛدِ دفتر طرفہٕ اکھ باقاعدٕ حُکُم جٲری کرنہٕ آمُت، یَتھ منٛز ضِلعَس منٛز کٲم کَرن وٲلۍ تمام صحافیَن ہدایت چھُ دِنہٕ آمُت زِ تِم کٔرِن پنٕنۍ تفصیٖل تہٕ سند سَتن دۄہَن انٛدر دٲخل ۔\nیہِ کاروٲیی چھےٚ جوائنٹ ڈائریکٹر آف انفارمیشن، کشمیر سٕنٛدِس حُکمَس تحت کرنہٕ یِوان۔ حُکمَس منٛز چھُ وننہٕ آمُت زِ تمام میڈیا اہلکارَن چھےٚ پنٕنۍ تفصیٖل بارہمولہ انفارمیشن آفسَس منٛز جمع کرٕنۍ۔\nسرکٲرۍ بیانَس مُطٲبِق چھُ اَمہِ اقدامُک مقصد ‘صحافتُک تقدس برقرار تھاوُن’ تہٕ جعلی صحافیَن ہُنٛد بڑوُن مسلہٕ رُکاوُن، یُتھ زن صرف جٲیز تہٕ تصدیق شُدٕ میڈیا اہلکار ہیٚکن ضِلعَس منٛز پنٕنۍ پیشہٕ ورانہٕ فرائض انجام دِتھ ۔\nحُکُم چھُ یہِ تہِ واضح کران زِ صِرِف تِم صحافی یِم ڈِسٹرکٹ انفارمیشن آفس کہِ ذٔریعہٕ ‘رسمی طور تصدیق شُدٕ’ چھِ، تِمنٕے یوت چُھ سرکٲرۍ تقریبن، پریس کانفرنسَن تہٕ باقٕے سرکٲرۍ تقریبن منٛز شِرکت کرنُک اجازت ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 1008, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "According to an official statement this action aims to maintain journalistic integrity and stop the rise of fake journalism issues while directing all journalists working in the district within twelve months of their documents submission requirements at the District Information Office. The action takes place under orders from the Joint Director of Information Kashmir stating that all media persons must submit their documents"} +{"id": "bench_0059", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دارالحکومت سرینگر تہٕ وادی کشمیر کٮ۪ن باقی مٲدٲنی علاقن منٛز آو موسمٕچ گۄڈٕنِچ شین ییٚمہِ سۭتۍ جُمعہ دۄہ دُپہرَس وادی کٮ۪ن مٲدٲنی علاقن منٛز شیٖن شروع گژھنہٕ کِنۍ لوٗکَن خوشی ہُنٛد اظہار گوٚو، ییٚمہِ کہِ وجہ سۭتۍ پوٗرٕ وادی منٛز سفید تہٕ جمع گٔیہِ۔\n\nرپورٹَو مُطٲبِق آو کُلگامَس منٛز ترٛےٚ انچ، پُلوامہَس منٛز زٕ انچ، پہلگامَس منٛز ژور انچ، قازیگنڈَس منٛز پانٛژھ انچ، اننت ناگَس منٛز ژور انچ، سری نگرَس منٛز اکھ انچ، چرار شریفَس منٛز ترٛےٚ انچ، یسمرگَس منٛز ژور انچ تہٕ شوپیانَس منٛز زٕ انچ شیٖن رِکارڈ کرنہٕ آمُت۔\nشُمٲلی کٔشیٖرِ ہِنٛدِس بارہمولہ، سوپور، پاٹن، بانڈی پورہ، سمبل تہٕ شادی پورس منٛز تہِ چُھ زٕ پیٚٹھٕ ترٛےٚ اِنٛچ شیٖن رِکارڈ کرنہٕ آمُت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 649, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Two to three inches of snow has been recorded in Baramulla, Sopore Patan Bandipora Samبل and Madhura cities of north Kashmir as well."} +{"id": "bench_0060", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You drink water.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "توہہ چھو آب پیان۔"} +{"id": "bench_0061", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ آبہٕ پھیوٚر تہِ اوس ثریا سٕنٛدۍ پٲٹھۍ روٹہٕ گوٚمُت۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This water turned into dry air like Thriya through its powerful effect on humans beings organisms creatures insects birds reptiles amphibians animals mammals birds and plants alike were affected by it in this manner Thriya does not exist anymore after reaching humans beings insects creatures birds reptiles amphibians animals mammals plants birds and animals are affected by this similar effect Th"} +{"id": "bench_0062", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He goes to work.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ کٲم کران۔"} +{"id": "bench_0063", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غٲفلو تیٚلہِ گژھکھ حٲرانس\nییٚلہِ پانس تھکی دِٮ۪ہہ\nکیاہ کرٔۍ زِبل یِتِھس شیطانس\nییٚمۍ ہیٚتھۍ سارِ جہانٕکۍ پرٛہہ\nکُنُے نِنَے ییٚلہِ اند مٲدانس\nأرۍ نَس پانس پالنَے پرٛہہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 167, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "If you take a trip around Europe and see it yourself will make you wonder why humans create satellites so often Because they want to extend themselves geographically They create satellites because they want their territory expanded geographically Also create satellites if they want people to know their territory geographically expand their area geographically create satellites also if they wants people to knew their"} +{"id": "bench_0064", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر دروازس نکھہٕ وٲتِتھ رُکیوو بیٚیہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But stopped short of reaching the door at last.”"} +{"id": "bench_0065", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔشۍ زَن پوٚکُس تُنزریے\nکَتھ دِنم اُپہاریے\nؤنۍ ونت نُندٕ سَنزٕیے\nژٮ۪تس بفن ہاریے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Tell me who is this woman whose face shows such sorrowful sadness They said Nund Sonji To tell us about her personhood and sufferings she showed us her face through tears.\"\"\""} +{"id": "bench_0066", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سالانہٕ شری امرناتھ جی یاترا کِس مدنظر چھِ اننت ناگ پولیسَن واریٛاہَن علاقَن منٛز ڈرونس چلاونَس پٮ۪ٹھ عارضی طور پابٔنٛدی لگٲومٕژ۔ یہِ چھُ قٲبلِ ذِکر زِ شری امرناتھ جی یاترا، یوٚس 38 دۄہَن پٮ۪ٹھ محیط چھِ، یِیہِ 3 جولائی شُروٗع تہٕ 9 اگست رکشا بندھن کِس موقعس پٮ۪ٹھ ختٕم۔ یہِ مقدس زیارت گژھِ 48 کلومیٹر نونوان پہلگام وتہٕ تہٕ 14 کلومیٹر بالتال وتہٕ کٮ۪و روایتی وتہٕ پٮ۪ٹھ بیک وقت شروع، تہٕ لیفٹیننٹ گورنر منوج سنہا سوزِ زائرین ہُنٛد گۄڈنیُک جَتھ 2 جولائی جموں کِس بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ کشمیر۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 496, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Anant Nag police have temporarily prohibited drones from several areas considering Sri Amarnath JiYatra which lasts for 30 days starting July 3rd and ends on August 9th Raksha Bandhan day This sacred pilgrimage covering 36 kilometers via Pahalgam is scheduled to commence simultaneously via routes from the traditional route"} +{"id": "bench_0067", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جان وین ہوٲیی اَڈٕ چھُ 18601 ایئرپورٹ وے، سانتا اینا، سی اے 92707، یو ایس اے [1] پٮ۪ٹھ واقع۔\n\nیہِ چھُ اورینٛج کاؤنٹی ہُنٛد وٲحِد تجٲرتی ہوٲیی اَڈٕ، تہٕ یہِ چھُ گریٹَر لاس اینجلس علاقس خٔدمات فراہم کَران۔ یہِ بین الاقوٲمی ہوٲیی اَڈٕ چھُ لاس اینجلس شَہَر کِس جنوٗب مشرِقس منٛز تَقریٖبَن 15 میٖل دوٗر تہٕ ڈِزنی لینڈ ریزورٹَس نِش تَقریٖبَن 3 میٖل جنوٗبَس منٛز واقع۔ تُہۍ ہیٚکِو اَتھ ہوٲیی اَڈس مُتعلِق زیٛادٕ مَعلُوٗمات اَتھ کِس [ویب سٲیٹَس] پٮ۪ٹھ لٔبِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 451, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "John Wayne Airport lies at 14801 Air Port Way Santa Ana CA 97007 USA [1]. It is the only commercial airport serving Greater Los Angeles area providing services north east of Los Angeles city approximately 3 miles south west of Disneyland Resort located approximately 13 miles southeast of Los"} +{"id": "bench_0068", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا یتُھے جمالس نکھہٕ وٲژ سۄ گٔیہِ ہے بُنگہٕ تہٕ روٗزٕس وُچھان تکیازِ تنہٕ اوس واریاہ کال گوٚمُت ینہٕ أہٕنٛز أچھ ترسان آسہٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 127, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "As she drew closer and closer to Thruya her eyes became tired due to looking at it for long periods of time since she was drawn towards him by his beauty caused by age factors causing her eyes to be tired looked down upon him while staying close to Thryya near her shoulders appeared tired dueTo seeing him for"} +{"id": "bench_0069", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She closes her eyes.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 20, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ پنٛنیٚن نؠن بन्द کَران۔"} +{"id": "bench_0070", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "What has it learn that children need formed?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بچن ہنز تشکیل چہ تنظیم کیتھ کٕنین؟"} +{"id": "bench_0071", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "منشیاتٕچ سمگلنگ خٕلاف جنگ جٲری تھوِتھ چھِ جموں منٛز پولیسَن زٕ نفر گرفتار کٔرمٕتۍ تہٕ یِمَن نِش چھِ ممنوعہ ہیروئن ہِش چیز برآمد کٔرمٕتۍ۔\nأکِس بیانَس منٛز تفصیٖل دِوان ووٚن پُلیٖسٕکۍ ترجُمانَن زِ پُلیٖس تھانہٕ آر ایس پوٗرا ہٕنٛدِ اکہِ ٹیمَن رُکٲو پبلک ریزورٹ چوہلاہَس نزدیٖک ناکَس دوران چک اسلم پٮ۪ٹھٕ آر ایس پورہ کُن یِنہٕ واجیٚنۍ جے کے 02 اے ایچ-1456 نمبرَس تحت اکھ آلٹو گاڑِ، ییٚمۍ ناکا وُچھِتھ ژلنٕچ کوٗشش کٔر۔\nتٔمۍ ووٚن زِ گاڑِ منٛز سوار دۄن نفرَن ہٕنٛز شناخت آیہِ دھیرج چودھری عرف جانو ایس او جنک راج تہٕ شبھم کمار سٕنٛدِ گھرا رام آر او چوہالا ناوٕ سۭتۍ کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 565, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Continuing their fight against drug trafficking police arrested two persons and seized drugs such as prohibited heroin near Public Report Chohla during traffic searches towards JK02AH-1746 registered Altu vehicle trying to escape while seeing through the traffic signal of NSPO ​​Purae in Jammu."} +{"id": "bench_0072", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "All throughout the book, Barry introduces excerpts from Bishop's poems and archival images.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "پوُرٕ کتابہِ مَنٛز چُھ بیری بش سٕنزن نظمن تہٕ آرکائیو شتصاویر کِس اقتباسات پیش کران۔"} +{"id": "bench_0073", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وۄنۍ چھِ یمہٕ ایپ أکِس وٲحد تہٕ آسان پورٹلَس منٛز ضم کرنہٕ آمٕتۍ یُس زن الیکٹرانک چُھ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 87, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "These apps are now integrated into a single and simple portal that provides access electronically.\""} +{"id": "bench_0074", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بَچَن چھُ ثقافتی، سمٲجی تہٕ خاندٲنی ماحولَن سۭتۍ واریاہ اثر پٮ۪وان یَتھ مَنٛز تِم بَڈان چھِ تہٕ ہیٚچھان چھِ [1][2]. یَتھ مَنٛز مُختٔلِف تہٕ ثقافتی پس منظر اَکھ شُرِس کِتھ پٲٹھۍ ترقی دِتھ ہیٚکہِ، تِمَن کٮ۪ن طٔریٖقَن ہُنٛد ذِکِر چھُ یِتھ:\n1. شناختٕچ تشکیل: اَکھ شُرِس مُختٔلِف ثقافتن سۭتۍ تعرُف چھُ تِہنٛدِس شناختٕچ حِساسیتَس مَنٛز اِضافہٕ کَران۔ شُرۍ چھِ پنٛنِس خاندانس تہٕ برادری نِش پنٛنِس ثقافتی وراثت، اقدار، رٮ۪وایت تہٕ زبانَس مُتعلِق ہیٚچھان۔ تِم چھِ پنٛنِس ثقافتی وراثتَس سَمجِتھ پنُن تہٕ تعلقُک اَکھ مضبوط حِساسیت پٲدٕ کَران [1].\n2. زبانٕچ ترقی: یِم شُرۍ مُتعدِد زبانَن ہٕنٛدِس ماحولَس مَنٛز بَڈان چھِ، تِم چھِ واریاہ زبانہٕ سَمجِتھ تہٕ کَتھ کَران۔ اَتھ سۭتۍ ہیٚکہِ تِمن علمی ترقی، رٲبطہٕ کَرنٕچ صلٲحیَت تہٕ سمٲجی تعامُلَس مَنٛز مدد مِلِتھ [1].\n3. سمٲجی صلاحتہٕ: مُختٔلِف ثقافتن مَنٛز بَڈَن شُرٮ۪ن چھِ سمٲجی صلاحتہٕ بَڈِتھ آسان، یَتھ مَنٛز تِم سَمٲجَس مَنٛز پرٛٮ۪تھ کٲنٛسہِ خٲطرٕ اِحترام، ہمدردی تہٕ روادٲری ہیٚچھان چھِ۔ مُختٔلِف پس منظرَن ہٕنٛدٮ۪ن لوٗکن سۭتۍ رٲبطہٕ کَرنَس سۭتۍ چھِ شُرۍ اِختِلافات قبوٗل کَران تہٕ تِمن اِحترام کَران تہٕ مُختٔلِف سمٲجی ماحولَن مَنٛز کٲم کَران [2].\n4. ثقافتی اقدار تہٕ عقیدٕ: اَکھ مُختٔلِف ثقافتی پس منظر چھُ خاص عقیدَن تہٕ اقدارَن سۭتۍ یِوان۔ مُختٔلِف ثقافتی پس منظرَن سۭتۍ تعرُف کَرَن شُرۍ ہیٚکَن یِمَن عقیدَن تہٕ اقدارَن مَنٛزٕ کیٚنٛہہ اِختیار کٔرِتھ یِم تِمن ہٕنٛدِس اخلاقی ترقی تہٕ فٲصلہٕ کَرنٕچ صلٲحیَتَس پٮ۪ٹھ اثر کَران چھِ [1].\n\nتَمہِ وُجوٗد، یہِ چھُ ضروٗری زِ اَکھ شُرِس ترقی پٮ۪ٹھ مُختٔلِف تہٕ ثقافتی پس منظرُک اثر ہیٚکہِ واریاہَن عواملَن پٮ۪ٹھ مُنحَصِر آسِتھ، یَتھ مَنٛز شُرِس ہُنٛد مزاج، مُختٔلِف ثقافتن سۭتۍ تعرُف، تہٕ تِمن ہٕنٛدٮ۪ن دیکھ بھال کَرن والٮ۪ن تہٕ برادری ہٕنٛدۍ رَوِیہٕ شٲمِل چھِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1644, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Nevertheless it is important that children grow up in different cultural backgrounds can rely on several factors affecting their development such as attitude towards others compassion and tolerance within society interactions with people from different cultures.[1]"} +{"id": "bench_0075", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt happy, so I smiled.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 26, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ آو خوشی محسوس کرنہٕ توٚہہ مس کوٚر مےٲنس مسکراہٹ سٟتۍ رد عمل دیتھ جواب۔"} +{"id": "bench_0076", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can choose tea or coffee, and I will order.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 47, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "توہہ ہیٚکو چائے یا کافی ژارنہ یتھ، تہٕ بہٕ کر آرڈر۔"} +{"id": "bench_0077", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أہٕنٛز نظر پیٚیہِ رشیدس پٮ۪ٹھ یہ لڑکی ٲس واریاہن لڑکن تہٕ لڑکین منٛز تھدِ تھدِ نعرٕ دِوان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "His eyes fell on Rashid whom he noticed was shouting louder than any other boy in the group including himself being shouted loud by him too."} +{"id": "bench_0078", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مایِن کرافٹ چھُ اَز تام ساروٕے کھۄتہٕ زیٛادٕ فروخت گژھَن وٲلۍ وِڈیو گیم۔ یہِ چھُ اَکھ سینڈ باکس گیم یُس موجینٛگَن مئی 2009 ہَس منٛز پی سی، موبایِل تہٕ کنسولَن سۭتۍ واریاہن پلیٹ فارمن خٲطرٕ جٲری کوٚرمُت۔ مایِن کرافٹَن چھِ تمام پلیٹ فارمن پٮ۪ٹھ 238 مِلین کھۄتہٕ زیٛادٕ کاپی فروخت کٔرمٕژ۔\n\nمایِن کرافٹَس منٛز چھِ کھلٲڑۍ اَکھ بلاکی، پروسیجرل طور پٮ۪ٹھ تیار کَرنہٕ آمُت، 3D دُنیاہ دٔریٲفَت کَران یَتھ منٛز اَنٛتھہٕ نہٕ وٲلۍ علاقہٕ چھِ۔ کھلٲڑۍ ہیٚکَن خام مال دٔریٲفَت کٔرِتھ تہٕ کٔڈِتھ، اوزار تہٕ چیٖز بناوِتھ، تہٕ ڈھانچہٕ، زٔمیٖنی کٲم تہٕ مَشیٖن بناوِتھ۔ کھلٲڑین چھُ زِندٕ روزنہٕ تہٕ پنٕنۍ دُنیا بناونہٕ خٲطرٕ باقٕے مخلوقَن سۭتۍ دوستی کَرُن یا لڑُن۔ یہِ ہیٚکہِ اکیلے یا دوستَن سۭتۍ گِنٛدِتھ۔\n\nگرینٛڈ تھیفٹ آٹو V تہٕ ای اے سُنٛد ٹیٹرِس چھِ صِرِف باقٕے وِڈیو گیم یِمَن 100 مِلین کھۄتہٕ زیٛادٕ کاپی فروخت گٔمٕژ چھِ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 807, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Grand Theft Auto V and EA's Teres are the only other video games that have sold more than 1 million copies each released in May 2609.\""} +{"id": "bench_0079", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سلیمہٕ لٔج رشیدس وننہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Salim began talking about things like racism and poverty in Pakistan and India respectively.."} +{"id": "bench_0080", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہ ہَن کوٚر بودوارِ دۄہ تٲلیٖمی شعبَس منٛز مذہبَس پٮ۪ٹھ مبنی فٲصلَن تہٕ امتیازی سلوک کِس عملَس پٮ۪ٹھ سخٕت ناراضگی ہُنٛد اِظہار تہٕ وونُن زِ ہِنٛدُستٲنۍ ٲییٖن چھُ واضح پٲٹھۍ پرٮ۪تھ شہریَس مذہب، ذات پات یا عقیدٕ علاوٕ برابر حقوٗق دِوان۔ بدقسمتی سان، تٔمۍ کوٚر نوٹ زِ از چھ تعلیم ہیو اکھ حساس تہٕ مقدس شعبہٕ تہٕ مذہبی شیٖشہٕ سۭتۍ وچھنہٕ یوان۔\n\nپوٗنٛچھَس منٛز أکِس عوٲمی اجتماعَس خٕطاب کٔرِتھ ووٚن وزیر اعلیٰ ہن زِ آییٖن چھُ ضمانت دِوان زِ پرٮ۪تھ شہریَس چھُ جمہوٗرِیَتٕکۍ تمام فٲیدٕ تُلنُک حق مگر موجودٕ صورتحال چھِ تتھ مُقامَس تام ووتمُت زِ میڈیکل کالج ہِوۍ اعلیٰ اِدارٕ تہِ چھِ مذہبی بنیادس پٮ۪ٹھ امتیازی سلوکُک مُظٲہرٕ کران۔ تٔمۍ ووٚن افسوس سان زِ از چھُ یہِ وننہٕ یِوان زِ مسلمان یا غٲر ہیندِ طٲلب علم گژھن نہٕ میڈیکل کالجَن منٛز آسٕنۍ۔ اگر أسۍ شُرین ہٕنزِ قابلیت نظر انداز کٔرِتھ مذہبس پیٹھ مبنی فٲصلہٕ کرُن شروع کٔرِو، تیلہِ کیا بنہِ امہ ملکُک ٲییٖن؟۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 889, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Speaking at a public meeting in Poonch the Chief Minister expressed outrage over religions based decisions and discriminatory practices within academia stating that the Indian Constitution provides every citizen with equal rights regardless of religion caste or belief unfortunately noting that today education is becoming increasingly viewed as such a sensitive and sacred area along with religious prejudice against people from minority groups"} +{"id": "bench_0081", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہِتَس ہٮ۪تھ کار کٔرۍزے\nاَن ہِتَس راوِرۍ زِ رٮ۪تھ کیا پچھ\nیُس یُتھ کری تس تیُتھ کرٔی زے\nآں لَیہِ پَانژاہ نَہ لَیہِ لچھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only if they would return and claim their rightful place in society would we truly understand them better than they do themselves.\"\"\""} +{"id": "bench_0082", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٔدرٕ ہُہِتھ کُس ہیٚکہِ زَن\nنِتھ زوو وَتہِ تھاہ پرٛاکتو\nتام وَل ژَھل کٔرِکھ آسرن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Who can take it along by getting scared What should we do until then If they want us away what will happen to us?\""} +{"id": "bench_0083", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was sunny, so we went outside.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تھوپ اوس آمت توامہ سٟتۍ آفتاب چھ چمکدار پٲٹھۍ چمکان یس زمین چہ سطح پیٚٹھ چمک چہ روشنی ہنز عکاسی کران چھے٘۔"} +{"id": "bench_0084", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہندوستانس منز چھِ خاندٲنی راجِچۍ اکھ اثردار تواریکھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "India has a federal system of governments with an effective command structure consisting of states.\""} +{"id": "bench_0085", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We make plans.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ منصوبہٕ بناوان۔"} +{"id": "bench_0086", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt cold, so I wore a jacket.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 32, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ آو سردی مہم توامہ سٟتۍ جاکوet لاگن۔"} +{"id": "bench_0087", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تُہٕنٛدِس گاڈِ ہٕنٛز گیس مایلج بہتر بناوُن ہیٚکہِ تُہٕنٛدِس پٮ۪سہٕ بچٲوِتھ تہٕ تُہٕنٛدِس ماحولیٲتی اثرات کم کٔرِتھ۔ بہتر فیوٗل ایفیشینسی حٲصِل کَرنَس منٛز مدد کَرن وٲلۍ کیٚنٛہہ تجاویز چھِ یِم:\n1. باقٲعِدٕ دیکھ بھال: مینوفیکچرر سٕنٛدِس تجویز کَرنہٕ آمُت سروس شیڈوٗلَس پٮ۪ٹھ عمل کٔرِتھ تھاوِو پنٕنۍ گاڈِ چَنٛگ پٲٹھۍ برقرار۔ باقٲعِدٕ تیل تبدیل کَرُن، ایئر فلٹر تبدیل کَرُن، تہٕ سپارک پلگ چیک کَرُن ہیٚکہِ فیوٗل ایفیشینسی بہتر کٔرِتھ [2].\n2. ٹایَرَن ہُنٛد صٔحیٖح اِنفلیشن: کم ہوا وٲلۍ ٹایَر ہیٚکَن گیس مایلج کم کٔرِتھ۔ پنٕنۍ ٹایَر پریشر باقٲعِدٕ چیک کٔرِو تہٕ تِمن تجویز کَرنہٕ آمٕتۍ سطحَن پٮ۪ٹھ برقرار تھاوِو [1][2].\n3. اِڈلِنٛگ نِش پرہیز کَرُن: ییٚلہِ تُہۍ پارک کٔرِتھ آسِو یا زیٛادٕ وقتس تام انتظار کَران آسِو تیٚلہِ کٔرِو پنُن انجن بَنٛد۔ اِڈلِنٛگ چھُ گیس اِستعمال کَران تہٕ اِخراج پٲدٕ کَران [1][2].\n4. آسانی سۭتۍ ڈرایو کَرُن: تیز ڈرایوِنٛگ، یِتھٕ کٔنۍ زَن تیز رفتار تہٕ سخت بریکِنٛگ، ہیٚکہِ فیوٗل ایفیشینسی نمایاں طور کم کٔرِتھ۔ آسانی سۭتۍ تہٕ آہستہ آہستہ شروٗع کَرنٕچ تہٕ رُکَنٕچ مشق کٔرِو [1][2].\n5. پنٕنۍ رُکَنٕچ وقت مُشخص کَرُن: اگر تُہۍ واریاہ لال بَتہٕ یا زیٛادٕ ٹریفک وُچھِو، تیٚلہِ کٔرِو زیٛادٕ وقتس تام رُکَنَس دوران پنُن انجن بَنٛد کَرنُک خیال [2].\n6. کروز کنٹرول اِستعمال کَرُن: ہائی وے پٮ۪ٹھ، کروز کنٹرول اِستعمال کَرُن ہیٚکہِ اَکھ مُستقِل رفتار برقرار تھاونَس منٛز مدد کٔرِتھ، یُس اکثر اُتار چڑھاوَن وٲلۍ رفتارَن کھۄتہٕ زیٛادٕ فیوٗل ایفیشینٹ چھُ [1][2].\n7. بوجھ کم کَرُن: پنٕنِس گاڈِ منٛزٕ غٲر ضروٗری چیٖزٕ ہٹاوِو، خاص کٔرِتھ بھاری سامان یُس وزن چھُ بَڈراوان تہٕ فیوٗل ایفیشینسی چھُ کم کَران [2].\n8. ایئر کنڈیشنِنٛگ اِستعمال کم کَرُن: ایئر کنڈیشنِنٛگ اِستعمال کَرُن چھُ زیٛادٕ فیوٗل اِستعمال کَران۔ گرم موسمَس منٛز، کٔرِو گاڈِ ہُنٛد وینٹیلیشن سسٹم اِستعمال کَرنٕچ یا کم رفتارَس پٮ۪ٹھ ڈرایو کَرنَس دوران کھڑکی کھولنٕچ کوٗشِش [1][2].\n9. پنُن فیوٗل سسٹم برقرار تھاوُن: باقٲعِدٕ پنُن فیوٗل سسٹم کلوگ یا گَنٛدٕ فلٹرَن خٲطرٕ چیک کٔرِو، کیٚ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1848, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "کرنٕچ کوشش کَرِتو تاکہ فیوٗل سٹاک بَمراہ راست تصَدُل کَرِن [2]"} +{"id": "bench_0088", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگر-جموں قومی شاہراہَس پٮ۪ٹھ اکھ طرفہٕ ٹریفک نقل و حرکت، یوٚس وادی کشمیر باقی مُلکَس سۭتۍ جوڑان چھِ، آیہِ ژٔنٛدٕروارِ دۄہ اکہِ دۄہ پتہٕ بحال کرنہٕ۔\nیہِ چھُ یاد یِوان زِ رام بن ضِلعَس منٛز واریٛاہَن جایَن پٮ۪ٹھ مرمت تہٕ مٔزیٖد توسیع کہِ وجہ سۭتۍ ٲس راتھ قومی شاہراہ ٹریفک خٲطرٕ بنٛد کرنہٕ آمٕژ۔\n\nٹریفک حکامَو ووٚن زِ قومی شاہراہَس پٮ۪ٹھ چھِ مُسافِر گاڑٮ۪ن ہٕنٛز اَکہِ طرفہٕ نقل و حرکت بحال کرنہٕ آمٕژ تہٕ گاڑٮ۪ن چھُ ژٔنٛدٕروارِ دۄہ جموں پٮ۪ٹھٕ سری نگر گژھنُک اِجازت دِنہٕ آمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 479, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Traffic movement on one side of SrinagarJammu national highway connecting Jammu with other countries in Kashmir was restored yesterday a day after protests resulted from repairs and further extensions done at several locations throughout the district of Ram Ban area last month according officials said vehicle traffic has been allowed from Jammu to Srinagar starting Monday morning."} +{"id": "bench_0089", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She tried hard, but she did not win.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تٔمۍ کٔر سخت کوشش مگر تٔمس ملیو نہٕ کامیابی۔"} +{"id": "bench_0090", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کٲلۍ ییٚلہِ وسن نالہٕ متہِ ہیٚنم\nگرٛیشن عمل تہٕ کیٛاہ میٛون ناو\nزُوٕ تتھ گٹہِ ییٚلہِ اشدر وسنم\nکۄسہٕ میٲنۍ عمل تہٕ کُس میٛون ناو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 128, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return the translation when they arrive at Viswanathanas boat station for groceries The action of groceries and what is my name When they arrive Viswanathas boat Station For groceries What actions and what names should I give them?"} +{"id": "bench_0091", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مارس مارٮ۪م ، تارس تارٮ۪م\nیَارس کھیٛاوٮ۪م ژوٗنٹھۍ تہٕ ٹنگ\nعاصہٕ چُھ اَتھہٕ وول طوٗرس کھارٮ۪م\nبیٚیہِ چُھم مالہِ تریٚیم زنگ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 121, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Mars drinks wine Tars drink tea And As agrees with him making a meal of tobacco plants The third leg is covered with barley flour and spices.\"\"\""} +{"id": "bench_0092", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وارٕ وارٕ آو رشیدس ہوش تٔمۍ مُژرایہِ لۄتہِ لۄتہِ پنٕنہِ أچھ تَس پیٚیہِ سلیمس کُن نظر تہٕ عجیب حالتس منٛز روٗدُس وُچھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 120, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Gradually Rashid regained consciousness and slowly opened his eyes towards Salman witnessing the strange situation arising out of this state of unconsciousness wherein he remained seated apparently motionless and listening intently to something unknown occurring within him internally.\""} +{"id": "bench_0093", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "راجستھانس منٛز کوٹہ تہٕ بندی ضلن کین کیہٕن علاقن منٛز چِھ یہٕنز تھوڑ تعداد نظرِ گژھان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Smaller number of these are noticed in few areas of Kota and Pali districts Rajasthan.\"\"\""} +{"id": "bench_0094", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شاید اوس أمۍ آبہٕ پھِرۍ یہِ خوفناک تہٕ المناک منظر ژیوٗنمُت تہٕ جمالٕنۍ درندٕگی ٲسٕن برابر ژیٖنۍ مٕژ جمالنہِ نظرٕ زَن وژھہٕ أتھۍ آبہٕ پھِرِس منٛز تہٕ اتھ آبہٕ پھِرِس منٛز اوس سُہ لاکٹ صاف یوان صاف لبنہٕ یُس ثریاہس نٲلۍ اوس ترٲوِتھ ثریا سٕنٛدِس نٮ۪تھہٕ نٔنِس بدٕنس پٮ۪ٹھ اوس نہٕ اَمہِ لاکٹہٕ ورٲے بیٚیہِ کانٛہہ چیٖز البتہٕ یہِ کینژھاہ اوس تہِ اوسُس خدایہِ سٕنٛدِ طرفہٕ عطا سپُدمُت حُسن خوبصورت سنگِ مرمر ہیوٗ بدن۔", "domain": "novel", "length_bucket": "long", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 414, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Perhaps God had appointed such a terrible and tragic scene as this by means of water whereby His servants eyes could be opened for something other than these two images appeared like beautiful marbles that were placed before Thrijas face causing her eyes to be cleansed in those two images from the evilness of Thrijahs face The Lord had"} +{"id": "bench_0095", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کینٛہہ ٲسۍ یِم گولہٕ اَڈٕ وَتی واپس پولیسس پیٹھ لایان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Some were firing weapons at police officers and soldiers who responded by throwing their own bullets back at them.\"\"\""} +{"id": "bench_0096", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر صحت تہٕ طبی تعلیم سکینہ یاتوَن ووٚن زِ شیخ محمد عبداللہ اوس اکھ تھوٚد رہنما ییٚمِس نہ صرف ہندوستانَس منٛز بلکہ پوٗرٕ دُنیاہَس منٛز عزت چھِ یِوان کرنہٕ۔\n\nتٔمۍ ووٚن زِ شیخ صٲبس چھُ جموں و کشمیرٕ خٲطرٕ واریاہ دِیُت۔\nوزیرَن کوٚر برٛسوارِ دۄہ ییٚتہِ صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اظہار۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 297, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Minister for Health and Medical Education SKینہ expressed these views while talking with reporters here on Thursday afternoon.\"\"\""} +{"id": "bench_0097", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کشمیر کِس بارہمولہ ضلعہٕ کِس جٹی خواجہ باغ علاقَس منٛز سرٛان کران جہلم دٔریاوَس منٛز ڈُبن وٲلِس أکِس نوجوان سٕنٛز لاش آیہِ بۄموارِ دۄہ صبحٲے برآمد کرنہٕ۔ ذٔرایعو ووٚن زِ 6 جولائی دۄہ بارہمولہ کِس جٹی خواجہ باغ علاقس منٛز سرٛان کرنہٕ وِزِ اوس اکھ نوجوان جہلم دٔریاوَس منٛز ڈُبیامُت ، ییٚمہِ پتہٕ ایس ڈی آر ایف، بارہمولہ پولیس تہٕ مقٲمی لوٗکَو بٔڑِس پیمانَس پٮ۪ٹھ تلاشی مہم شُروٗع کٔرمٕژ ٲس۔ تِمَو ووٚن زِ آپریشن روٗد لگاتار جٲری تہٕ بۄموارِ دۄہ صبحٲے 8 بجے آیہِ نوجوان سٕنٛز لاش برآمد کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The body of a young man drowned in Jhelum River while he was bathing at Jati Khwaja Bagh area of Baramulla district north Kashmir was recovered on Tuesday morning officials said An investigation by SDRF Baramullah police and locals continued long after they started searching on a large scale at Jathi Khw"} +{"id": "bench_0098", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was busy, but he helped me.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 30, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ اوس مصروف مگر تٔمۍ کٔر مےٚ مدد۔"} +{"id": "bench_0099", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It looks nice.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ چھ خوبصورت وچھنہٕ یوان۔"} +{"id": "bench_0100", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پولیسَن کٔر وادی کٮ۪ن تقریباً تمام ضِلعن منٛز ممنوعہ تنظیمہِ جماعت اسلامیس خٕلاف اکھ بٔڑ مربوط کاروٲیی ۔ اَتھ کاروٲیی دوران ترٛٲوۍ پولیس، سپیشَل آپریشنز گروپ، سی آر پی ایف تہٕ باقٕے سیکورٹی ایجنسیَن ہِنٛدیو مُشترکہٕ ٹیٖمو کولگام، اننت ناگ، شوپیان، پلوامہ، اننت ناگ، سوپور تہٕ گاندربل ضِلعن منٛز ہتہٕ بٔدۍ مقامن پٮ۪ٹھ بیک وقت چھاپہٕ\n\nاینٹی غٲر قونوٗنی سرگرمین ہٕنٛدِس ایکٹس تحت آو یہِ آپریشن تَمہِ وِزِ شُروٗع کرنہٕ ییٚلہِ انٹیلی جنس ذرایعَن یہِ اطلاع میٖج زِ جماعت اسلامیٕکۍ کینٛہہ سٲبقہٕ رُکُن تہٕ ہمدرد چھِ مُختٔلِف ناوَن تہٕ سمٲجی تنظیمَن ہٕنٛدِس آڑس منٛز پنٕنۍ سرگرمی دوبارٕ شروع کرنٕچ کوٗشِش کران۔\n\nپولیس ذرایعو مُطٲبِق آیہِ سارِوٕے کھۄتہٕ بٔڑ کاروٲیی جنوٗبی کشمیر کِس کوگام ضِلعَس منٛز کرنہٕ۔ پٔتِمٮ۪ن ژورَن دۄہَن منٛز چھِ پولیسَن 200 کھۄتہٕ زِیٛادٕ مقامَن پٮ۪ٹھ چھاپہٕ ترٛٲومٕتی۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 799, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Police in Jammu and Kashmir launched a coordinated crackdown on banned organizations Islamist groups across nearly all districts of the valley During this operation police Special Operations Group CRPF and other security agencies combined teams conducted simultaneous raids at hundreds of locations in Coagum Anantnag Shopian Pulwama AnantNag Srinagar and Ganderbal districts"} +{"id": "bench_0101", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عوٲمی مسلن پٮ۪ٹھ احتجاج کرناوٕنۍ ثِھ سی پی ایمُک مِشن۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "to protest against public issues and make them heard by the government is CPMs philosophy of practice.\"\"\""} +{"id": "bench_0102", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They feel sad.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چھ دکھی محسوس کران۔"} +{"id": "bench_0103", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ورزش تہٕ زیادٕ جسمٲنی ورزش خٲطرٕ چھِ تجویٖز دِنہٕ یِوان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Recommendations for both exercise and more physical activity are advised accordingly they should participate in these activities regularly routine basis.”"} +{"id": "bench_0104", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He likes apples.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ سیب پسند کران۔"} +{"id": "bench_0105", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شری امرناتھ جی یاترا خٲطرٕ 6600 کھۄتہٕ زِیٛادٕ زائرینن ہُنٛد کٔہِم قافلہ گوٚو بٹوارِ دۄہ صبحٲے سخت حفاظتی اقداماتن تحت کشمیر کُن روانہٕ۔ سرکٲرِ ذٔرایعو ووٚن زِ بَٹہٕ وارِ دۄہ صُبحٲے گٔے 275 لۄ کچن تہٕ بٔجیٚن گاڑیٚن منٛز 6,639 زائرین بھگت نگر بیس کیمپٕ پٮ۪ٹھٕ کٔشیٖرِ کُن روانہٕ۔ تِمَو کوٚر ذِکِر زِ یِمَن زائرین منٛز چھِ 4,302 جنوٗبی کشمیر کِس ضلعہٕ اننت ناگَس منٛز واقع نُنوان پہلگام بیس کیمپس کُن گژھان، ییٚلہِ زَن 2,337 چھِ وسطی کشمیر کِس ضلعہٕ گانٛدربلَس منٛز واقع بالتال بیس کیمپس کُن گژھان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 496, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Over 6 thousand pilgrims on their way to Shri Amarnath JiYatra started towards Kashmir on Saturday morning following strict security measures The Government sources said 638 pilgrims travelled in 200 vehicles from Basi camps at Anantnag and Bijaygane on Saturday afternoon providing additional safety measures While noting that"} +{"id": "bench_0106", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سماجی پریشانی چھُ اَکھ عام ذہنی صحتٕچ حالت یۄس باقین سۭتۍ رٲبطہٕ قٲیِم کَرنَس مَنٛز مُشکل ہیٚکہِ بَناوِتھ۔ سمٲجی پریشانی سۭتۍ مُتٲثِر لوٗکھ ہیٚکَن سمٲجی صوٗرتِ حالَس مَنٛز خوف یا پریشانی ہُنٛد تجربہٕ کٔرِتھ یَتھ مَنٛز تِم باقین دٔسۍ چھِ وُچھنہٕ یِوان، جانٛچنہٕ یِوان، یا یِمن ہُنٛد جٲیزٕ نِنہٕ یِوان، یِتھٕ کٔنۍ زَن نوٚو لوٗکھ مِلُن، عوٲمی کَتھ باتھ کَرُن، یا پارٹِین مَنٛز شٲمِل گژھُن۔\n\nاگر تُہۍ چھِو سمٲجی پریشانی ہُنٛد تجربہٕ کَران، تیٚلہِ چھِ یَتھ مَنٛز کیٚنٛہہ طٔریٖقہٕ یِم تُہۍ پنٕنۍ سمٲجی پریشانی کم کَرنہٕ تہٕ اَتھ پٮ۪ٹھ قابوٗ کَرنہٕ خٲطرٕ اِستعمال کٔرِتھ ہیٚکِو:\n1. پنُن پان سمَجھُن: سمٲجی پریشانی، اَمیُک وجوٗہات، تہٕ علاجَن مُتعلِق ہیٚچھُن ہیٚکہِ تُہنٛدِس پانَس بہتر طٔریٖقہٕ سۭتۍ سمَجھنَس مَنٛز مدد کٔرِتھ۔ کُنہِ تہِ وقتَس مَنٛز کٔرِو یہِ سمَجھنَس خٲطرٕ کُنہِ وقتُک اِستعمال زِ تُہنٛدِس چھُ سمٲجی پریشانی کِیاہ۔\n2. صوٗرتِ حالَن ہُنٛد تجزیہٕ کَرُن: مُشکل صوٗرتِ حالَن ہُنٛد لۄکُٹَن کٲمَن مَنٛز تجزیہٕ کَرنٕچ کوٗشِش کٔرِو، پرٛٮ۪تھ لۄکُٹ حِصہٕ حل کٔرِو، تہٕ زیٛادٕ آرام دہ محسوس کَرنَس پٮ۪ٹھ کٲم کٔرِو۔ مُستقبَلَس مُتعلِق سوچنَس نِش بچنٕچ کوٗشِش کٔرِو، تہٕ لۄکُٹَن کٲمَن پٮ۪ٹھ توجہ دِوِو۔\n3. کٲنٛسہِ سۭتۍ کَتھ باتھ کَرُن: اگر تُہۍ چھِو سمٲجی پریشانی ہٕنٛدٮ۪ن علامَتَن ہُنٛد تجربہٕ کَران، تیٚلہِ کٔرِو اَکھ ایماندارانہٕ کَتھ باتھ کٲنٛسہِ سۭتۍ یُس تُہنٛدِس پٮ۪ٹھ بھروسہٕ کَران چھُ، یِتھٕ کٔنۍ زَن دوست، خاندانی، یا تُہنٛدِس ڈاکٹرَس سۭتۍ۔\n4. موٗجوٗدٕ وقتَس پٮ۪ٹھ توجہ دِوِو: اکثر چھِ پریشانی وٲلۍ لوٗکھ پنٕنٮ۪ن خیالَن ہُنٛد پَتہٕ گُم کَران، ییٚمہِ سۭتۍ سۮٹھاہ خراب صوٗرتِ حال چھِ وُچھنہٕ یِوان۔ لۄکُٹَن کٲمَن پٮ۪ٹھ توجہ دِوِو زِ لوٗکھ کیٚاہ چھِ وَنان تہٕ کِتھٕ پٲٹھۍ چھِ تِم تُہنٛدِس سۭتۍ رٲبطہٕ کَران، بَجٲے اَتھ کِہ تِم چھِ لۄکُٹَن کٲمَن ہُنٛد پَتہ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1656, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "َمُل گژھاڑان یا غفار کران تاکہ تِم ہی٠کن کُنی زِنِس ملاقات کَرِتھی یا کَتین ملاقات کَرتھ ہیکان بصلحیتlyotototodotototaotototiototottototots"} +{"id": "bench_0107", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یتھ اندر لاکٹ صاف اوس یِوان لبنہٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Within it was found a pearl necklace that looked like gold pieces from necklaces used by pirates during their reign in Europe.\""} +{"id": "bench_0108", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We see a tree.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ اکھ کُلۍ نظر یِوان۔"} +{"id": "bench_0109", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "محکمہ موسمیات چہِ پیشن گویی مُطٲبِق چھُ پٔتمہِ 24 گھنٹَن دوران بٔڑِس پیمانَس پٮ۪ٹھ شین پینہٕ پتہٕ وادی کشمیرَس منٛز موسم وارٕ وارٕ بہتر گژھان۔\n\nمُتعلقہٕ محکمہٕ کِس ترجُمانَن ووٚن زِ وادی ہُنٛد موسم روزِ 9 مارٕچ تام خۄشٕک روزنُک اِمکان۔\n\nتٔمۍ ووٚن زِ اَمہِ پتہٕ چھُ وادی منٛز شیٖنُک بیٛاکھ اکھ مرحلہٕ یُس 10 مارٕچ پٮ۪ٹھ 12 مارٕچ تام جٲری روزِتھ", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 343, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "According to weather department forecast there will be another round of snowfall in valley Kashmir after heavy snowfall during last 26 hours."} +{"id": "bench_0110", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "واریاہ اینیمی سیریز چھِ یِمَن مَنٛز مضبوط زنانہٕ کردار، دِلچسپ دٔلیٖلہٕ، تہٕ مُختٔلِف موضوعات چھِ یِم مُختٔلِف ناظرینَن خٲطرٕ چھِ۔ ییٚتہِ چھِ کیٚنٛہہ مَشہوٗر تہٕ پَسَنٛد کَرنہٕ یِنہٕ وٲلۍ اینیمی یِمَن ہُنٛد مزٕ اکثر کوٗرۍ چھِ تُلان [1][2]:\n1. سیلر مون (بِشوٗجو سینشی سیلر مون)\n2. کارڈکیپٹر ساکورا\n3. فروٹس باسکٹ\n4. پرنسس ٹوٗٹو\n5. اے سائلینٹ وایس\n6. یور لائی اِن اپریل\n7. وُلف چلڈرن\n8. چیہایافوٗرو\n9. وایلیٹ ایورگارڈن\n10. یوری آن آئس\n\nاُمید چھُ زِ یہِ فِہرِست آسہِ مَدَتھگار تہٕ تُہۍ لٔبِو اَکھ اینیمی سیریز یۄس تُہۍ وُچھنہٕ خٲطرٕ پسند کَرو۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 540, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Hopefully this list will be helpful and you may find a favorite anime series to watch.\"\"\""} +{"id": "bench_0111", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آنتھِ ذات نیرِہم خٲلِص\nنٔنزِ سندان روٗدُم ہونٛژ\nنکھ شِنے کُس دِیَم دٕہِلس\nبہٕ سُت مٲلِس میون نہٕ کوٗنژھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if I provide you with a genuine article otherwise proceed further without payment whatsoever to your relatives and friends whom they will receive subsequently thereafter regardless of payment amount they may provide it to them later on irrespective of their payment amount afterwards they proceed further to their relatives and friend whose arrival they will attend thereafter regardless payment amount may be"} +{"id": "bench_0112", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It sees nothing.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ چھ نہٕ کینٛہہ تہ وچھان۔"} +{"id": "bench_0113", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیٖنٛژۍ ییٚتہِ زلہٕ منزَے دٔدِی\nکیٖنٛژۍ پھیٖرِتھ آے أگنہٕ سُرٛپہ\nکینژَو ییٚتہِ آرٕ بلہٕ لعل لبٔی\nکیٖنٛژۍ ژٔھرِی آے سنگل دِپہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 125, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Some emerged while others remained covered with darkness while still others experienced coldness and dryness within them respectively)."} +{"id": "bench_0114", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر تعلیم تہٕ صحت سکینہ اِٹوَن کٔر پی ڈی پی یَس پٮ۪ٹھ تنقید تہٕ ووٚنُن زِ یہِ پارٹی چھِ جموں و کشمیر کِس سیاستس منٛز غیر متعلقہ گٔمٕژ تِکیازِ لوکو چھُ یہِ مسترد کوٚرمُت۔ تٔمہِ ووٚن زِ عمر عبداللہ سٕنٛزِ قیادتس منٛز چھےٚ حُکوٗمت لُکن ہِنٛزٕ تمام ضٔروٗرتہٕ پوٗرٕ کرنہٕ خٲطرٕ پابنٛد۔ وزیرَن کوٚر یِمَن خیالن ہُنٛد اِظہار جُمعہ دۄہ وسطی کشمیر کِس بڈگام ضلعہٕ کِس چڈورا علاقَس منٛز أکِس تقریٖبہِ دوران صحافیَن سۭتۍ کَتھ کران۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 421, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Minister of Education Health Scینہ IT criticized PDP saying that the party has become irrelevant in Jammu and Kashmir politics because people have rejected it She said Omar Abdullahs leadership requires fulfilling all needs of the people The minister expressed these views during a discussion with reporters at an event held at Chidora area of Budgam district in Central"} +{"id": "bench_0115", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بلوٹوتھ چھُ اَکھ وائرلیس ٹیکنالوجی یۄس ڈیوایسَن جسمٲنی کیبلَن ہٕنٛز ضروٗرت بغٲر کم فاصلَس پٮ۪ٹھ کَتھ باتھ کَرنٕچ تہٕ ڈاٹا بَدلاوُنٕچ اِجازت چھُ دِوان۔ یہِ چھُ عام طور پٮ۪ٹھ سمارٹ فون، ہیڈ فون، سپیکر، کی بورڈ تہٕ باقٕے ڈیوایسَن جوڈنہٕ خٲطرٕ اِستعمال گژھان۔ بلوٹوتھ ٹیکنالوجی چھِ ریڈیو لہرَن تہٕ اَکھ کمیونیکیشن پروٹوکول [1] کِس اُصوٗلَس پٮ۪ٹھ کٲم کَران۔\n\nبلوٹوتھ کِتھ پٲٹھۍ چھُ کٲم کَران، اَتھ مُتعلِق چھُ اَتھ پٮ۪ٹھ اَکھ جٲیزٕ:\n1. **ریڈیو لہرَن ہُنٛد اِستعمال:** بلوٹوتھ چھُ ریڈیو لہرَن ہُنٛد اِستعمال کَران، خاص کٔرِتھ 2.4 GHz ISM (صنعتی، سائنسی تہٕ طبی) فریکوینسی بینڈَس مَنٛز۔ یہِ فریکوینسی بینڈ چھُ غٲر لائسنس یافتہٕ تہٕ بلوٹوتھ س٭تۍ س٭تۍ مُختٔلِف وائرلیس ٹیکنالوجین خٲطرٕ چھُ عالمی سطحَس پٮ۪ٹھ دٔستیٲب۔ یہِ چھُ اَکھ فریکوینسی ہوپِنٛگ سپریڈ سپیکٹرم اِستعمال کَران تاکہ اَکھ فریکوینسی بینڈَس مَنٛز کٲم کَرن وٲلؠ باقٕے ڈیوایسَن ہٕنٛدِ مداخلت نِش بچاوُن [1].\n2. **ڈیوایس ڈسکوری تہٕ پیئرِنٛگ:** ییٚلہِ تُہۍ اَکھ یا زیٛادٕ بلوٹوتھ ڈیوایسَن س٭تۍ جوڈُن چھِو یِژھان، تِہنٛدِس بلوٹوتھ آن کٔرِو تہٕ تِمن کٔرِو اَکھ اَکھس خود بخود ژھانٛڈُن۔ اِبتِدٲیی چھُ پنٛنِس رینجَس مَنٛز ممکنہٕ ٹارگٹ ژھانٛڈنہٕ خٲطرٕ انکوائری میسج بوزناوان۔ ییٚلہِ اَکھ ٹارگٹ ڈیوایس لَبنہٕ چھُ یِوان، تیٚلہِ چھُ پیئرِنٛگ شروٗع گژھان۔ پیئرِنٛگَس دوران چھِ ڈیوایس پیٖن کوڈ یا سیکیورٹی کیز بَدلاوان تاکہ اَکھ مَحفوٗظ کنیکشن قٲیِم کَرنہٕ یِیہِ۔ یہِ قدم چھُ اَتھ خٲطرٕ اَہَم زِ صِرِف اِجازت یافتہٕ ڈیوایس ہیٚکَن جوڈِتھ [1].\n3. **کنیکشن قٲیِم کَرُن:** ییٚلہِ ڈیوایس پیئر گژھان چھِ، تِم چھِ کمیونیکیشن خٲطرٕ اَکھ خاص فریکوینسی چینل (لِنٛک) قٲیِم کَران۔ یہِ لِنٛک ہیٚکہِ مُختٔلِف قٕسمٕکِس ڈاٹا ٹرانسفرَس سپورٹ کٔرِتھ، یِتھٕ کٔنۍ زَن آڈیو سٹریمنٛگ، فایِل شیئرِنٛگ، یا کنٹرول کمانڈز [1].\n4. **ڈِسکنیکٹ کَرُن:** ییٚلہِ ڈاٹا ٹرانسفر گژھان چھُ تہٕ کمیونیکیشنٕچ ضروٗرت چھُ نہٕ روزان، تیٚلہِ ہیٚکَن ڈیوایس اَکھ اَکھس نِش ڈِسکنیکٹ کٔرِتھ۔ یہِ ہیٚکہِ کُنہِ تہِ ڈیوای", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1812, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ھا ہیـکَن ما ہیٛکَن نہٕ کَرِتھے [1]।"} +{"id": "bench_0116", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "These can help guide you through overcoming and preventing jet lag.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یِم ہیٚکن جٹ لیگس پؠٹھ قابو کَرنس تہٕ اَتھ رُکاوَٹس مَنٛز مدد کٔرِتھ۔"} +{"id": "bench_0117", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I felt sick, so I stayed at home.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ گوٚو بیمار تہٕ بہٕ روٗد گھرَس منٛز۔"} +{"id": "bench_0118", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس کُپواڑہ ضِلعہٕ کِس کَرمھورا زچلدرہ جنٛگلی علاقس منٛز گوٚو سیکورٹی فورسَن تہٕ ملی ٹنٹن درمِیان مُقابلَس منٛز اکھ نامعلوم ملی ٹنٹ مارنہٕ۔\nژٔنٛدٕروارِ دۄہ صُبحٲے گوٚو کُپواڑہ کِس کرمہورا زچلدرہ جنٛگلی علاقَس منٛز سیکورٹی فورسَن تہٕ ملی ٹنٹن درمِیان تلاشی کاروٲیی دوران مُقابلہٕ۔\nکشمیر زون پولیسَن ووٚن ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز: \"ہندواڑہ کِس کرمہورا زچلدرہ علاقَس منٛز چھُ اکھ مُقابلہٕ شُروٗع گوٚمُت۔ تٔمۍ ووٚن زِ پُلیٖس تہٕ حِفاظتی دستہٕ چھِ کٲم کران۔\nسرکٲرِ ذٔرایعن ووٚن زِ \"اَتھ مُقابلَس منٛز گوٚو اکھ نامعلوم ملی ٹنٹ مارنہٕ”۔ وۄنٛہِ گوٚو، پُلیٖسن چُھنہٕ وُنکیٚنَس اَمِچ تصدیٖق کٔرمٕژ۔\nامہِ برٛونٛہہ ووٚن ذٔرایعو زِ حِفاظتی فوجن کوٚر کرمہوا زائلڈارا علاقس گیرٕ بٔنٛدی تہٕ ملی ٹنٹن ہِنٛزِ موٗجوٗدٕگی ہِنٛز اطلاع مِلنہٕ پتہٕ کٔرٕن تلاشی مہم شُروٗع۔\nتٔمۍ ووٚن زِ ییٚلہِ تلاشی کاروٲیی ہُنٛد اکھ ٹیم مشتبہ جایہِ نزدیٖک وٲژ، تتہِ ژوٗرِ روزَن وٲلۍ ملی ٹنٹو کٔر اتھ پٮ۪ٹھ گولہِ چلٲوِتھ، ییٚمہِ کِس نٔتیٖجس منٛز یہِ گوٚو۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 939, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Police sources said An unknown militant was killed during an encounter between security forces and militants in Karmehra area of Kupwara district north Kashmir on Monday morning saying police and security forces were engaged in operations.\""} +{"id": "bench_0119", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تٔمۍ حضرت میران ریشی\nکرٛڈٕ نفسس سۭتۍ کوٚر نیایے\nپونۍ آژمُن قطرن دَندن\nکر بندن توشہِ خدایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 89, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "He returned with a smile and hugged Mr Rishi affectionately saying What kindness he showed you God has blessed him through these tears of yours.\"\"\""} +{"id": "bench_0120", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اردو نثر۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 9, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Turn back and try again please sir."} +{"id": "bench_0121", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٕہن ہر مو کرَن ہانگل\nژِوٕٮ۪ن گانگل گٔیہِ چِھوٕ مَسے\nزُو ژلہِ نیٖرِتھ باج ہٮ۪نے الکانگل\nژھرِ گورِ پنہٕ نُے ڈُنگل وَسے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Cigates are harmful for humans beings they are like poison bottles which can be deadly dangerous when filled with tobacco juice drinks alcohol etc contain nicotine substances such as vitamins minerals salts carbohydrates cholesterol triglycerides fats proteins enzymes medicines bacteria germs fungi insects crustaceans ইত্যাদি containing vitamins minerals acids carbohydrates cholesterol triglyceride fats proteins enzyme medicines bacteria organisms fungi insects crustace"} +{"id": "bench_0122", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یم پارٹی چھ سڑکہ پٮ۪ٹھ واندب کران تہٕ دلِہ منٛز چھ دوٗستی کران ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 64, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "These parties walk on the street making fun and bonding in Delhi.\""} +{"id": "bench_0123", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "By Kate Vidinsky, UCSF News Office | May 20, 2011 Individuals who are treated for cancer during childhood have a significantly higher risk of developing gastrointestinal (GI) complications -- from mild to severe -- later in life, according to a study led by the University of California, San Francisco.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 302, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "کیٹ ویڈنسکی یو سی ایس ایف نیوز آفس دٔسۍ مئی ۲۰ ۱۱ کین سرگرمین ہنز وضاحت کران یونیورسٹی آف کیلیفورنیا سان فرانس سکو ہی مطابق چِھ وہ افراد یِم بچپن دوران کینسر سٟتؠ براب"} +{"id": "bench_0124", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تٔمۍ وُن زِ تُہۍ ہیٚکیوٗ نٕہ زٕ قٔسم ہندوستان بنٲوتھ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "He replied You cannot build two types of India they said.\""} +{"id": "bench_0125", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جٔدیٖد ہندوستٲنی زبانٕہ مثلاً گجرٲتی، ہندی، بنگلہ، مرٲٹھی، سندھی، پنجٲبی ، نیپٲلی بیترِ چِھ سنسکرت پٮ۪ٹھ درٚامژٕ ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Modern Indian languages such as Gujarati Hindi Bengali Marathi Sindhi Punjabi Nepali etc have derived from Sanskrit.\"\"\""} +{"id": "bench_0126", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were late, but the meeting had not started.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم ٲسہ دیر گژھان مگر میٹنگ چھے نہٕ شروٗع گٔمٕژ کینٛہہ۔"} +{"id": "bench_0127", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر تِم چھِ ہائی کمانُک فٲصلہٕ قبوٗل کرنُک تہٕ پنُن پان اَمیُک پابنٛد قرار دِوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But they do accept the decision of the high command and declare themselves responsible for it.\"\"\""} +{"id": "bench_0128", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گاہے ٲسۍ لولہٕ کِس سٔدرس منٛز ژھانٹھ وایان نتہٕ یِرَے گژھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 60, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only GAH could provide these levels of intensity and achieve this feat when performing in worship by seeking divine attention through their songs and music respectively)."} +{"id": "bench_0129", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سری نگرَس منٛز آیہِ سیزنٕچ بیٛاکھ سارِوٕے کھۄتہٕ سرد رٲژ رِکارڈ، ییٚلہِ زن شوپیاں وادی ہٕنٛز سارِوٕے کھۄتہٕ سرد جاے روٗز۔ رٮ۪تہٕ کالہِ رازدٲنہِ سری نگرَس منٛز چھُ کم درجہ حرارت منفی 2.1 ڈگری سیلسیس رِکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 2.0 ڈگری سیلسیس کم اوس۔ جٔنوٗبی کٔشیٖرِ ہُنٛد شوپِیان ضِلعہٕ اوس وادی ہُنٛد سارِوٕے کھۄتہٕ سرد جاے ییٚتہِ کم از کم درجہٕ حرارت منفی 5.5 ڈگری سیٚلسِیَس اوس۔ وادی ہُنٛد اکھ مشہوٗر سیاحتی مُقام گلمرگَس منٛز چھُ کم درجہ حرارت منفی 3.6 ڈگری سیلسیس ریکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 3.5 ڈگری سیلسیس کم اوس۔\nوادی ہُنٛد بیٛاکھ اکھ مشہوٗر سیاحتی مُقام پہلگامَس منٛز چھُ کم درجہ حرارت منفی 5.3 ڈگری سیلسیس ریکارڈ کرنہٕ آمُت، یُس پٔتمہِ رٲژ منفی 4.8 ڈگری سیلسیس کم اوس۔ کپواڑہ ضِلعس منٛز رِکارڈ کرنہٕ آمُت کم درجہ حرارت منفی 2.5 ڈگری سیلسیس تہٕ پٔتمہِ رٲژ منٛز رِکارڈ کرنہٕ آمُت منفی 1.3 ڈگری سیلسیس", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 830, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "S Srinagar recorded its coldest night of the season while Shopian remained the coldest place in the valley with a minimum temperature of minus 2 degrees Celsius on Saturday evening compared from minus 7 degrees Celsius recorded last month during Srinagar nights coldest night in Kashmir District Shopian was the coldest spot in the Valley with a low minimum temperature"} +{"id": "bench_0130", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "4th جولایی چھُ امریکی شَہرو خٲطرٕ اَکھ بۄڈ تہٕ یادگار دۅہ۔ یَتھ دۅہَس چھُ پنٛنِس خاندانس تہٕ دوستَن سۭتۍ گَرَس منٛز مَناونہٕ خٲطرٕ کیٚنٛہہ بۄڈۍ طٔریٖقہٕ:\n1. پُشِتھ کُن کُک آؤٹ: یہِ چھُ یومِ آزادی مَناونُک اَکھ کلاسک طٔریٖقہٕ، تہٕ یہِ چھُ دوستَن تہٕ خاندانس سۭتۍ نٮ۪برٕ کُن گژھنُک اَکھ بۄڈُک طٔریٖقہٕ۔ کینٛہہ برگر، ہاٹ ڈاگ، تہٕ پنٛنۍ سٲری پسندیدٕ سائیڈ ڈِش گرِل کٔرِو، تہٕ مِٹھٲیی مَناونُک مَرتاو نہٕ [1].\n2. پول پارٹی: پول پارٹی چھُ 4th جولایی پٮ۪ٹھ ٹھنٛڈٕ گژھنُک اَکھ بۄڈُک طٔریٖقہٕ۔ پنٛنٮ۪ن دوستَن تہٕ خاندانس دۅہَس تیٖرن، دۅپہَرِ کُن وُچھنَس، تہٕ پول گیمز خٲطرٕ دَعوَت دِو [3].\n3. آتش بازی وُچھِو: واریاہ آتش بازی چھِ 4th جولایی پٮ۪ٹھ پوٗرٕ مُلُکَس منٛز گژھان۔ پنٛنِس گَرَس منٛز آتش بازی وُچھنُک اَکھ بۄڈُک جاے ژھانٛڈِو تہٕ پنٛنٮ۪ن پیارَن سۭتۍ اَکھ مزہ دار رات گُزارِو [4].\n4. بون فائر کٔرِو: اگر تُہُنٛد پُشِتھ کُن یا اَکھ نارٕچ گۄڈٕ چھِ، یہِ چھُ 4th جولایی پٮ۪ٹھ رات ختم کَرنُک اَکھ بۄڈُک طٔریٖقہٕ۔ مارش میلو روٗسٹ کٔرِو، دٔلیٖلہٕ وَنِو، تہٕ اَکھ بۄڈُک بون فائر پارٹی کٔرِو [5].\n5. پنُن گَر سَجاوِو: پنٛنِس گَرَس منٛز کیٚنٛہہ وۄزُل، سُفید، تہٕ نیٖلۍ سَجاوٹ شٲمِل کٔرِو تاکہ 4th جولایی ہُنٛد جوش حٲصِل گژھہِ۔ تُہۍ ہیٚکو جھنڈٕ، سٹریمر، تہٕ بنٹنگ لٹکٲوِتھ، یا تُہۍ ہیٚکو پنٛنۍ سَجاوٹ تہِ بَنٲوِتھ [6].\n6. حب الوطنی ہٕنٛدۍ فِلِم وُچھِو: کیمپ فائر یا گرِلَس نِش جَمَع گژھِو تہٕ کیٚنٛہہ حب الوطنی ہٕنٛدۍ گؠوَن گٲیِو۔ یہِ چھُ امریکہٕچ تٲریخ تہٕ رِوٲیَت مَناونُک اَکھ بۄڈُک طٔریٖقہٕ [2]. تُہۍ ہیٚکو گَرَس منٛز کیٚنٛہہ کلاسک حب الوطنی ہٕنٛدۍ فِلِم تہِ وُچھِتھ اَکھ مزہ دار فِلِم میراتھن مَناوان۔\n\nیِم چھِ سٲری 4th جولایی ہٕنٛدِ چھُٹہِ مَناونہٕ خٲطرٕ بۄڈۍ سرگرمیہٕ!", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1560, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "These are all great activities to do during the Fourth of July holiday season!"} +{"id": "bench_0131", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بَچہٕ خٲطرٕ اَکھ مَحفوٗظ جاے بناوُن چھُ تِہنٛدِ صِحَت یقیٖنی بناونہٕ خٲطرٕ ضروٗری۔ مٲلۍ ماجہِ سٕنٛدِ حٲیِثیتَس منٛز چھُ یہِ ضروٗری زِ تُہۍ کٔرِو پنُن گَر بَچہٕ خٲطرٕ مَحفوٗظ ییٚلہِ تِم بَڈَن تہٕ رینگُن شروٗع کَرَن۔ اَتھ منٛز چھِ مَحفوٗظ رینگن وٲلۍ جاے بناونہٕ خٲطرٕ اَتھ پٲٹھۍ قدم:\n\n1. اَکھ مُناسِب جاے چھانٛٹِو: پنٛنِس گَرس منٛز اَکھ صاف، کشادہ تہٕ ہَوا دار جاے چھانٛٹِو۔ یقیٖنی بَنٲوِو زِ یہِ گَژھہِ کُنہِ تہِ ٹی وی، فرنیچر یا باقٕے چیٖزَن نِش دوٗر یِم وۄتھِتھ ہیٚکَن۔ لِوِنٛگ روٗم یا اَکھ خاص گِنٛدَن وٲلۍ جاے چھِ اکثر اَصٕل اِنتِخاب [1].\n\n2. جاے بَچہٕ خٲطرٕ مَحفوٗظ بَنٲوِو:\n - سٲرِوٕے بجلٮ۪چ لٲن چھانٛٹِو [2].\n - جاے صاف کٔرِو کُنہِ تہِ لۄکٕٹِس چیٖزَس نِش یُس گَٹہٕ دِنہٕ وٲلۍ خطرٕ آسہِ [1][2].\n - کُنہِ تہِ لٹکَن وٲلۍ چیٖز یُس بَچہٕ کٔڈِتھ ہیٚکہِ یِتھٕ کٔنۍ زَن پردٕ، تار تہٕ بلائنڈ، چھِ دُور تھاوِو [1][2].\n - کَبیٖنِٹ، دراز تہٕ لۄکٕٹۍ شیلف کٔرِو کُونہِ تہِ کَنہِ ہٕنٛدِ حِفاظَت خٲطرٕ بَچہٕ خٲطرٕ مَحفوٗظ [1][2].\n - تِمَن جاین خٲطرٕ یِم تُہۍ پوٗرٕ پٲٹھۍ بَچہٕ خٲطرٕ مَحفوٗظ بَنٲوِتھ ہیٚکِو نہٕ یِتھٕ کٔنۍ زَن سیٖڑۍ یا کِچَن، کٔرِو بَچہٕ دوٗر تھاونہٕ خٲطرٕ سیفٹی گیٹ یا پلے پین بیریئر اِستعمال [1][2].\n - تیز چیٖز یِتھٕ کٔنۍ زَن چاقو، قلم تہٕ کینٛچۍ تھاوِو اَکھ درازَس منٛز یَتھ بَچہٕ خٲطرٕ مَحفوٗظ تالے آسہِ [2].\n\n3. فرش: اَکھ نرم فرش اِستعمال کٔرِو یِتھٕ کٔنۍ زَن قالین، دَری، یا فوم پزل میٹ بَچہٕ کُنہِ تہِ پٮ۪وَن نِش بچاونہٕ خٲطرٕ [1].\n\n4. نرم لَنٛڈِنٛگ جاے: رینگن وٲلِس جاے کِس کَنہِ پٮ۪ٹھ نرم تکیہٕ، کُشن یا کَمبل تھاوِو تاکہ ممکنہٕ پٮ۪وَن نِش بچاوُن ییٚیہِ [2].\n\n5. نِگرٲنی: پنُن بَچہٕ کٔرِو نہٕ کُنہِ تہِ وِزِ اَکیلا ییٚلہِ سُہ رینگن وٲلِس جاے آسہِ [1][2].\n\n6. آرام تہٕ صَفٲیی: جاے صاف کٔرِ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1604, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ِلحیت: کُلّی طور کُل بحال گَسن وول ماحول چُھ اَمہِ وقفہٕ کِس دوران اصلی صحت خ٥تم سپدان [2]"} +{"id": "bench_0132", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برٲرۍ ژھیوٚٹ مکروہ تہٕ گگراہ کھیوٚن\nبییٚہِ یِموٕے وٲج رٔٹمٕژ چھَے\nآیری بییٚہِ جانور مۄردار\nکۄکرن ہُند ذمہٕ یِمنٕے خۄے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only these things are safe for cats dogs birds and snakes that eat insects are dangerous to humans beings alive or dead alike they may be regarded as responsible for them.\"\"\""} +{"id": "bench_0133", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انگہٕ زن خۄشبو مۄکھہٕ زن وُدٕے\nنِشہِ وُدِٮ۪ن آسہٕ بۄدٕ کتھن ہتھ مان\nسوستی کریٚیہِ تہٕ روٚستُے کروٗدِے\nسُے دٔپۍ زے مسلمان", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 120, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if they provide satisfactory answers otherwise proceed cautiously thereafter suggesting a meal prepared by themselves without visiting mosques etc., avoid eating altogether and maintain caution thereafter suggesting fasting strictly observing Ramadan during these months respectively.)"} +{"id": "bench_0134", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Households with gardens were more likely to own cats and dogs than households without gardens.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "باغ و باغدار خاندانچ کتھ چِھ باغ نہ آسن والین خاندانوں ہند مطابقت سے زیادہ ممکن ہے کہ وہیں کتہ بلیاں اور کتون ہیتیں ۔"} +{"id": "bench_0135", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتِمہِ تجرُبہٕ کِس بُنیادس پٮ۪ٹھ چھِنہٕ تیٚلنٛگاناہس منٛز سیکولر ووٹر، خاص پٲٹھۍ مُسلمان ووٹر، بی آر ایس کٮ۪ن دعون پٮ۪ٹھ یقین کرنہٕ خٲطرٕ تیار باسان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 151, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Based on previous experiences secular voters in Telangana especially Muslims tend not be willing to believe BRS claims.\""} +{"id": "bench_0136", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وۄندس کرٕنۍ کرٛیٚے کریوٗٹھو\nییٚتہِ ژےٚ ژھُنٕنے بٔلی تاوو\nتیُتھ اُپدیش رَٹنہِ اوزوتو\nکُلس ہم کوٚل کیا ہٮ۪ڈوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Make sure you bring a helmet along with you Because it gets dangerous here sometimes during hiking activities like climbing mountains and forests etc."} +{"id": "bench_0137", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تُہۍ گٔژھِو یہِ زٲنِتھ حٲران زِ ایازس چھُ لاہورک بٲنۍ تہٕ لاہورک گۄڈنیُک حکمران وَنٛنہٕ یوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 93, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "You will be surprised to know that Ayaz is said to have been born in Lahore and ruled Lahore initially during his reign.\""} +{"id": "bench_0138", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "2023 ہَس منٛز قتٕل کٮ۪ن شرحن ہٕنٛدِ لحاظہٕ چھُ یوٗکرین یوٗرَپُک سارِوٕے کھۄتہٕ خطرناک مُلُک۔ یوٗکرینُک عالمی جُرمَن ہُنٛد اِنڈیکس سکور چھُ 6.18 [1]. 2021 ہَس منٛز یوٗکرینُک قتٕل/ہومیسایڈ ریٹ اوس 3.84 [2].\n\nیوٗکرینَس منٛز قتٕلٕچ زیٛادٕ شرح چھِ روٗسَس سۭتۍ جٲری جَنٛگہِ سۭتۍ منسوب کَرنہٕ یِوان۔ اَتھ جَنٛگہِ سۭتۍ چھُ قتٕلَس سۭتۍ سۭتۍ تشددَس منٛز تہِ واریاہ اِضافہٕ گومُت۔ اَتھ علاوٕ چھِ جَنٛگہِ سۭتۍ لچھ بٔدۍ یوٗکرینیَن بےٚ گَر گومُت، ییٚمہِ سۭتۍ تِم جُرمَن ہٕنٛدِ خٲطرٕ زیٛادٕ کمزوٗر گومُت چھِ [1].", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Ukraine is considered by far the most dangerous country in Europe when it comes to murder rates in 2303 due to ongoing fighting with Russia There has been significant increase both violent crime and homelessness due to war for millions of Ukrainians who became refugees for Germany [1].\""} +{"id": "bench_0139", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They see a house.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 17, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چھ اکھ گھر وٕچھان۔"} +{"id": "bench_0140", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Since caffeine is very similar to adenosine, a molecule in our brains, caffeine can function similarly in the brain, blocking off adenosine receptors in the brain cells.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 169, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "چونکہ چفین چُھ ادیونو سن سے ہشت شاذ یوان چہ ایکی سائینس دماغ میں ایکی ساینس چائفین ہی ایکی طور برہین منز ایکی سائے سین سیلن چ فادافون بوس ریسیپٹرز چ فداد فون"} +{"id": "bench_0141", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعلیٰ عمر عبداللہ گژھِ برٛسوارِ دۄہ کشتواڑ ضلعہٕ کِس واڈوانُک دورٕ ییٚتہِ سُہ نار لگنہٕ والٮ۪ن مُتٲثِریٖنَن سۭتۍ مِلِتھ۔\nوزیر اعلیٰ سُنٛد عہدٕ سنبھالنہٕ پتہٕ آسہِ یہِ تٔمۍ سُنٛد کُنہِ جایہِ ہُنٛد گۄڈٕنیُک دورٕ۔\nبرٛسوارِ دۄہ صُبحٲے ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز ووٚن وزیر اعلیٰ زِ: \"بہٕ کَرٕ آز کشتواڑ کِس ودوان علاقُک سفر تِمَن عیالَن سۭتۍ مِلنہٕ خٲطرٕ یِمَن ہٕنٛز زِنٛدگی حالٕے تباہ شدٕ نارٕ سۭتۍ تباہ گٔمٕژ چھِ۔”\nعمر عبداللہ یَن کوٚر بۄدوارِ دۄہ شیر کشمیر انٹرنیشنل کانووکیشن سینٹرَس منٛز مُنعقد أکِس حلف برداری تقریٖبہِ منٛز مرکزی زیر انتظام علاقہٕ جموں و کشمیرُک گۄڈٕنیُک وزیر اعلیٰ سُنٛد حلف ۔\nحُکامن ووٚن زِ جموں و کشمیر کِس کشتواڑ ضلعہٕ کِس مرواہ واڈوان علاقَس منٛز بۄموارِ دۄہ لگَن وٲلِس بٔڑِس نارَس منٛز گٔیہِ کم از کم 80 رِہٲیشی مکان", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 748, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In a post from X on Wednesday afternoon officials announced that at least eight residences had been damaged in the fire in Marwah Wadwan area of Kishtwar district Jammu and Kashmir central governed area Jammu and कश्मीर first Chief Minister of UT since taking office of CM Omar Abdullah said Thursday morning during an oath ceremony held at Sher"} +{"id": "bench_0142", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They studied together, and they helped each other.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تمو کٔر ایک ساتھ مطالعہٕ، تہٕ تمو کٕر ایک دوسرے کی مدد۔"} +{"id": "bench_0143", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نادان عقلہِ نِشے اَبق\nقُران خوان عقلہِ نِشے زوٗر\nنماز گُذارن عقلہِ ہٕندٛۍ سبق\nبےٚ نمازۍ عقلہِ نِشے سوٗر", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Unreason is nothing but stupid reason The Quran says it doesnt require faith or understanding to understand it perfectly."} +{"id": "bench_0144", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ دوٚیمہِ اتھہٕ نیوٗ جمالن أہنزِ گردنہِ منٛز لاکٹتھپہِ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 58, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "And took a chain from around his neck and put it into the second hands pocket.”"} +{"id": "bench_0145", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگرَس منٛز حبکادل علاقہٕ کِس گٔنۍ آبادی وٲلِس کرفالی محلس منٛز رٲژ نارٕ لگنہٕ کِس خوفناک واقعَس منٛز گٔیہِ کم از کم 10 رہٲیشی مکانہٕ سوٗر گٔیہِ، ییٚمہِ سۭتۍ اکھ درجن کھۄتہٕ زیٛادٕ خاندان بے گھر گٔیہِ۔ ذرایعَو دِژ اطلاع زِ بۄدوارِ تہٕ برٛسوارِ دۄہ رٲژ درمِیان لوٚگ حبکادل کِس کرفالی محلس منٛز أکِس مکانَس منٛز نار تہٕ نار لوٚگ جلدٕی نزدیٖکی گَرَن منٛز۔ تِمَو ووٚن زِ امہِ خوفناک نارٕ سۭتۍ پھیلوو علاقَس منٛز خوف، تہٕ زنانہٕ تہٕ شُرِ ٲسۍ روان وٕچھنہٕ آمٕتۍ، ییٚلہِ زَن نار تہٕ دوٚہہ تیوٗت تھوٚد زِ یِم ہٮ۪کَو دوٗرِ پٮ۪ٹھٕ ؤچھنہٕ یِوان۔ فائر اینڈ ایمرجنسی ڈیپارٹمنٹٕک أکۍ اہلکارَن ووٚن امہِ واقعٕچ تصدیٖق یہِ ؤنِتھ زِ نارٕچ معلوٗمات آیہِ صبحٲے 2 بجہِ بجہِ مِلنہٕ۔ تٔمۍ ووٚن زِ رپورٹ موصول گژھنہٕ پتہٕ دستی آیہِ شہرٕک مُختٔلِف فائر سٹیشنَو پٮ۪ٹھ 17 فائر ٹینڈر موقعہٕ جایہِ پٮ۪ٹھ سوزنہٕ۔ تٔمۍ ووٚن ووٚن زِ فائر ٹینڈرَن ہٕنٛزِ شٔدیٖد کوٗشِشہِ پتہٕ آو نار قوبوٗہس منٛز اننہٕ۔ تاہم گٔیہِ اَتھ واقعَس منٛز کم از کم 10 مکانہٕ پوٗرٕ پٲٹھۍ تباہ ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 937, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "At least 16 families were homeless after a devastating fire broke out at night in Srinagar's crowded Karphali Mosque area ofحبakad area causing damage to several houses sources said that the fire started around 2 am on Wednesday and Thursday nights while nearby homes were damaged by this horrible fire caused fear spread throughout"} +{"id": "bench_0146", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خیبر ایگرو پرائیویٹ لمیٹڈ، یُس کٔشیٖرِ ہِنٛدِس دۄدٕ صنعتَس منٛز اکھ نُمایاں ناو چھُ، چھُ ماحولیٲتی دوستانہٕ بالٹی پیکیجنگَس منٛز 1 کِلوگرام زامت دۄدک اکھ نوٚو پروڈکٹ مُتعارُف کوٚرمُت۔سرینگر کِس حیدر پورِس منٛز کمپنی ہٕنٛدِس ہیڈ کوارٹرَس منٛز منعقد گژھَن وٲلِس لانچ تقریبہِ منٛز ٲسۍ خیبر ایگرو پرائیویٹ لمیٹڈٕکۍ منیجنگ ڈائریکٹر منان ترمبو، تہٕ کمشنر آف فوڈ اینڈ ڈرگس ایڈمنسٹریشن (ایف ڈی اے)، جموں و کشمیرَن حشمت علی یاتو (آئی اے ایس) شِرکتن کٔرمٕژ۔نوٚو زامُت دۅد پروڈکٹ، یُس بایوڈیگریڈیبل \"آٮٔی ایٚم ایٚل بکٹ” منٛز پیک کرنہٕ آمُت چھُ، چُھ پایدار پیکیجنگ کُن اَکھ اَہَم قدمٕچ نمائندگی کران، یُس ایٚٹ رایِٹ اِنٛڈیا مُہِمہِ ہِنٛدیٚن ماحولِیٲتی دوستانہٕ طریٖقن فروغ دِنہٕ کیٚن مقصدن سۭتۍ ہم آہنگ چُھ ۔ تقریٖبَس منٛز کَتھ کٔرِتھ کٔر کمشنر حشمت علی یاتوَ (آٮٔی اے ایس) ماحولیٲتی ذمہٕ دٲری تہٕ حفاظتَس سۭتۍ خیبر ایگرو سٕنٛدِ وابستگی ہٕنٛز تعریٖف کٔر مژ۔ تٔمۍ دِیُت جدید، ویلیو ایڈڈ مصنوعات متعارف کران فوڈ پروسیسنگس منٛز اعلیٰ معیار برقرار تھاونٕچ اہمیتس پٮ۪ٹھ زور۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 957, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Khayber Agرو Private Limited a prominent name in Kashmir’s dairy industry has launched an innovative product by way of environmentally friendly bucket packaging containing one kilogramme of raw milk at its launch event held at the company headquarters in Srinagar Hyderpur Jammu and Kashmir Food & Drug Administration Commissioner Hashmat Ali IATW"} +{"id": "bench_0147", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can come with me, or you can stay here.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تہۍ ہیٚکو مے سٟتۍ آستھ، یا تہۍ ہیو ییتہٕ روزتھ۔"} +{"id": "bench_0148", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہنرمندی ہنٛزٕ مختصر مدتی تر بیت یا تَصَورَستۭۍ نیز نتیجتہٕ ہنرمندی ہنٛزٕ ضلٔعی منصوبہٕ بندی کِس سلسلَس منٛز مدد کرنہٕ چَہ ضرورتہٕ ستۭۍ ہنرمندی ستۭۍ متعلق ریٲستی مشنَن ہنٛز کٲفی تہٕ مُتحِدٕ مصروفیتَن ہنٛدٕ نمایہٕ تہٕ صریحی فقدانُک چُھ یہِ مطلب زِریاستہٕ /اضلاع ڈی ایس سی منٛز سٲتھیَن ہنٛزموجودگی ستۭۍ بہترین یا ساروی کھۄتہٕ زیادٕ سازگارطریقہٕ ستۭۍ کَران نہٕ اِستفادٕ خٲصِل ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 373, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Bite or understanding of short term trends in productivity indicates insufficient and coordinated engagement of state missions related to productivity within district level planning processes resulting in inadequate or excessive engagement of partners within states/district levels of productive capacity building initiatives leads to achieving optimal or maximum conducive conditions for partner presence within states / district levels of productivity building"} +{"id": "bench_0149", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تاہم یِہ رپۄرٹ مدِ نظر تھٲوتھ ینٕہ بھولک پور کِس علاقس منز 3+2\\1+1 طرزِ عملس پٮ۪ٹھ مکان بناونٕہ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 96, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "However considering this report houses should be constructed on a pattern of 3 + 2 + 1 + 0 in areas of بھولakپور area.\"\"\""} +{"id": "bench_0150", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Annual population growth rate (2011 est., CIA World Factbook): 1.284%.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سالانہ آبادی ہنز شرح نمو (۲۰۱۱ تخمینہٕ CIA ورلڈ فیکٹ بک): ۱.۲۸۴%۔"} +{"id": "bench_0151", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس وژ ھو أچھَو جمالس کُن وُچھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Her eyes looked at him intently and she smiled at him affectionately towards him while watching him closely with her gaze.\""} +{"id": "bench_0152", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مرکٔزی لال چوک تہٕ اَمہِ کِس تٲریٖخی گھنٹہ گھرَس (کلاک ٹاور) منٛز آیہِ بَٹہٕ وارِ دۄہ اکھ شاندار تبدیلی وُچھنہٕ، یُس شہرَس خٲطرٕ گۄڈٕنِچ نشاندٕہی چھُ: ہردٕ کِس دِلَس دوران اکھ متاثر کن بٔڑِس پیمانَس پٮ۪ٹھ کرسنتھیمم بلوم شو۔ امہِ کوٗششہِ ہُنٛد مقصد چُھ پُرسکون زوال کِس وقتس منٛز شہرس خوبصورت بناوُن تہٕ ہلچل وٲلِس رٮ۪تہٕ کالہِ تہٕ شیٖنہٕ ونٛدس درمیان سیاحت خٲطرٕ ‘فرق کم کرُن’۔\n\nاَمہِ نُمٲیشہِ ہُنٛد اہتمام اوس ایس کے یو اے ایس ٹی کے ڈویژن آف فلوریکلچر ہٕنٛدیو پی جی تہٕ پی ایچ ڈی طٲلبہِ عٔلِمَو دٔسۍ ڈویژن ہیڈ پروفیسر امتیاز طاہر نازکی تہٕ فیکلٹی ممبرن ہٕنٛزِ رہنُمٲیی منٛز کرنہٕ آمُت، یِمو راتس راتس تقریباً 3000 بانہٕ رنگین کرسنتھیمم (گُل داؤد) قٲیم کرنہٕ خٲطرٕ کٲم کٔر۔ نُمٲیشہِ منٛز آیہِ 15 کھۄتہٕ زِیٛادٕ مقٲمی قٕسٕم تہٕ پوشٕکۍ 80 رنگ ہاونہٕ، ییٚمہِ سۭتۍ مشہور گھنٹہ گھرس أنٛدۍ پٔکۍ علاقہٕ أکِس واضح تماشہِ منٛز تبدیٖل گوٚو۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 830, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A stunning display was witnessed on Wednesday at Central Lal Chowk and its historic clock tower which is an indicator of what lies ahead for the city creating a fascinating huge scale sunset during the heart of Hardah showcasing tourism between peaceful seasons of decline and bustling summer months and winters amid snowfall by providing a 'difference in contrast"} +{"id": "bench_0153", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She worked hard, and she got a promotion.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تٔمۍ کٔر سخت محنت، تہٕ تٔمس میول ترقی۔"} +{"id": "bench_0154", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انفرااسٹرکچر سیکٹرَس منٛز اثاثَن ستۭۍ رقم حٲصِل کرنہٕ کہ غرضہٕ چِھ ایئر پورٹ اتھارٹی آف انڈیا ،نیشنل ہائی ویز اتھارٹی آف انڈیا سنٛز سڑکہٕ ، پاور گرڈ کارپوریشن آف انڈیا کہ ٹرانسمیشن لاینہٕ ، سنٹرل گودام کار پوریشنٔک گودام ، فریٹ کوریڈورٕک حصہٕ ، پٹرولیم سیکٹرَس منٛزکینٛہہ کمپنیَن ہنٛز پائپ لائنز تہٕ باقی اثاثَن پٮ۪ٹھ چِھ مرکزٕچ نظر ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 334, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Among those identified in the infrastructure sector include airports authorities of India national highway authorities ofIndia roads power grid corporations of India transmission lines of central warehouse corporations ofIndia freet ports sections road companies petroleum sector companies pipelines among others aimed at acquiring funds from these entities respectively Airports Authority of India National Highway Authorities of India roads Power Grid Corporation"} +{"id": "bench_0155", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مراقبہٕ کَرنَس سۭتۍ ہیٚکہِ واریاہ فوری تہٕ طویٖل مدتی فٲیِدٕ حٲصِل گژھِتھ۔ واریاہن مطالعن چھُ باقٲعِدگی سۭتۍ مراقبہٕ کَرنٕکۍ مُختٔلِف فٲیِدٕ ظٲہِر کٔرمِتھ، یِتھٕ کٔنۍ زَن توجہَس منٛز بہتری، دباو کم گژھُن، تہٕ خوٗشی تہٕ بہبوٗدَس منٛز اِضافہٕ۔ مراقبہٕ کٮ۪ن کیٚنٛہہ زیٛادٕ طویٖل مدتی فٲیِدٕ چھِ یِم:\n\n1. پریشانی تہٕ افسردگی کم گژھان: مراقبہٕ چھُ ذہنی صحتٕچن حالتن یِتھٕ کٔنۍ زَن پریشانی تہٕ افسردگی سۭتۍ لڑنہٕ خٲطرٕ اَکھ موٗثِر طٔریٖقہٕ۔ مراقبہٕ کَرنَس دوران پنٕنۍ ساہ تہٕ دِماغ دھیٖم کَرُن ہیٚکہِ پریشان کُن خیالَن نِش نِکَلنہٕ تہٕ پنٕنِس سکوٗن تہٕ اَنٛدروٗنی امنَس بحال کَرنَس منٛز مدد کٔرِتھ۔ مراقبہٕ ہیٚکہِ دِماغٕکِس میڈیل پریفرونٹل کورٹیکس تہٕ امیگڈالا علاقن تہِ تبدیل کٔرِتھ، یِم افسردگی مَنٛز اَکھ اَہَم حِصہٕ چھِ ادا کَران۔ وقتَس سۭتۍ چھُ مراقبہٕ دِماغَس سکوٗن تہٕ توجہ دِنہٕ خٲطرٕ تربیت دِوان، ییٚمہِ سۭتۍ منفی خیالَن تہٕ احساسَن نِش بچنہٕ مَنٛز مدد مِلان چھِ [1][2]۔\n\n2. بہتر نِنٛدر: مراقبہٕ ہیٚکہِ آرام دِتھ تہٕ دباو کم کٔرِتھ نِنٛدرٕچ کوالِٹی بہتر بناونَس منٛز مدد کٔرِتھ [1]۔ مراقبہٕ چھُ بے خوابی ہٕنٛدِس علاجَس منٛز اَکھ طاقتور ذٔریعہٕ ثابت گژھمُت [2]۔\n\n3. نشہٕ سۭتۍ لڑنہٕ مَنٛز مدد: مراقبہٕ ہیٚکہِ لوٗکن مُختٔلِف قٕسمٕکٮ۪ن نشَن نِش نِکَلنہٕ مَنٛز موٗثِر ثابت گژھِتھ۔ یہِ ہیٚکہِ دِماغَس زیٛادٕ الگ طٔریٖقہٕ سۭتۍ طلبَن ہُنٛد مُشاہدٕ کَرنہٕ تہٕ تجربہٕ کَرنہٕ خٲطرٕ تربیت دِتھ۔ یہِ ہیٚکہِ وقتَس سۭتۍ طلبٕچ طاقت کم کَرنَس تہٕ نشہٕ کم کَرنَس منٛز مدد کٔرِتھ [2]۔\n\n4. بہتر یادداشت تہٕ توجہ: مراقبہٕ ہیٚکہِ دِماغَس توجہ دِنہٕ تہٕ توجہ دِنہٕ خٲطرٕ تربیت دِتھ یادداشت تہٕ توجہ بہتر بناونَس منٛز مدد کٔرِتھ۔ یہِ چھُ خیالَن ہٕنٛز وضاحت تہٕ توجہٕچ مدت بَڈراوان [1][2]۔\n\n5. یادداشت گُم گژھنُک علاج: واریاہن مطالعن چھُ قدرتی عمرَس سۭتۍ وابستہٕ یادداشت گُم گژھنَس سۭتۍ لڑنہٕ مَنٛز مراقبہٕچ موٗثریت ظٲہِر کٔرمٕژ۔ ٹِم گارڈ سٕنٛدِس اَکِس مطالعَس منٛز آو ظٲہِر گژھُن زِ مراقبہٕ چھُ بوٚڑن رضاکارَن منٛز توجہٕچ مدت، یادداشت، تہٕ ذہنی چُست پَن و", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1834, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ذ یادداشت پیتھ تھاون وٲلس نظامَس قوت بخشناونس منٛزد مدد کَرتھ ہی�कکان یِم غُم گمت معلومات چِھ پرزناوُن یَتھ کٔنان چھِ تاکہ اِم بَحالی کرنَس منز ہی�"} +{"id": "bench_0156", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When God wants to accomplish something great for his namesake, he raises up a man or a woman on whom he can anoint, by whom he can fulfill his covenant promise, and through whom he can work.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 190, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "خۄدایہ ییٚلہِ پننہِ مراد چہِ تکمیل خٲطر کُنہ شخٕص سُنٛد انتخاب کران چُھ سُہ چُہ اَکھ انسان یا ایکہِ زَنان بطور مُقرر کَ"} +{"id": "bench_0157", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی طور، ییٚتہِ چھِ تُہٕنٛدِ خٲطرٕ کیٚنٛہہ نوٚو تہٕ مَقبول کے-ڈراما یِم تُہۍ وُچھِتھ ہیٚکو [1][2][3]:\n- کریش کورس اِن رومانس (2023)\n- دی گلوری پارٹ 2 (2023)\n- ڈاکٹر رومانٹِک 3 (2023)\n- لو ٹو ہیٹ یو (2023)\n- کوٗین میکر (2023)\n- ڈِورس اٹارنی شِن (2023)\n- ایجنسی (2023)\n- ماسک گرل (2023)\n- ڈیسٹائنڈ وِد یو (2023)\n- بیونٛڈ یوَر ٹچ (2023)\n- آور بلومِنٛگ یوٗتھ (2023)\n- سی یو اِن مائی 19تھ لائف (2023)\n- مووِنٛگ (2023)\n- مائی ڈیریسٹ (2023)\n- بلڈ ہاؤنڈز (2023)\n- بِگ بیٹ پارٹ (2023)\n- گیونٛگ سیونٛگ کریچر (2023)\n- دی گُڈ بیڈ مدر (2023)\n- سیلیبریٹی (2023)\n- اے ٹائم کالڈ یو (2023)\n- الکیمی آف سولز (2022)\n- ٹوئنٛٹی فایو ٹوئنٛٹی وٲن (2022)\n- بِزنس پروپوزل (2022)\n- آور بیلووِڈ سمر (2021-2022)\n- ہوم ٹاؤن چا-چا-چا (2021)\n- وِنٛچنٛزو (2021)\n- ہاسپِتال پلے لِسٹ (2020-2021)\n- کریش لینٛڈِنٛگ آن یو (2019-2020)\n- گوبلِن (2016-2017)\n- ڈیسینڈنٛٹس آف دی سَن (2016)\n\nاَتھ لِسٹَس منٛز چھِ مُختٔلِف قٕسمٕکۍ صنف شٲمِل، یَتھ منٛز رومانس، کامیڈی، ڈراما تہٕ مِسٹری شٲمِل چھِ۔ اُمید چھُ زِ تُہۍ وُچھِو یِمَن منٛزٕ کانٛہہ اَکھ کے-ڈراما۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1013, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This list includes a variety of genres including romance comedy drama and mystery You might want to check out some of these K dramas.\""} +{"id": "bench_0158", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیٖنٛژۍ ییٚتہِ زلہٕ منزَے دٔدِی\nکیٖنٛژۍ پھیٖرِتھ آے أگنہٕ سُرٛپہ\nکینژَو ییٚتہِ آرٕ بَلہٕ لعل لٔبی\nکیٖنٛژۍ ژٔھرِی آے سنگل دِپہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Some returned here without providing any assistance others returned here with more difficulty and some returned here again without providing anything whatsoever.\"\"\""} +{"id": "bench_0159", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted tea, but there was no milk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ اوس چائے یژھان مگر اتھ اوس نہٕ کینٛہہ دودھ۔"} +{"id": "bench_0160", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیا منگہٕ مٲلِس تاولِس اِنلس\nکِتھہٕ نہٕ أنِتھ دِژامکھ لوٗژھ\nوُچھتہٕ کٮ۪تھہٕ یہِ ژوٚلُم گاٹِلس\nبہٕ سُت مٲلس میون نہ کوٗنژھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Did you bring it for my father or not Did you bring some rice for him When I asked What did you do If he gets angry and asks questions about me then what will happen?\""} +{"id": "bench_0161", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سری نگر سمارٹ سٹی لمیٹڈَس تحت تعمیر کرنہٕ آمُت امیرا کدل فٹ برج چھُ مُکمل گژھنہٕ کِس ٲخری مرحلَس منٛز، یہِ چھُ سرینگر کٮ۪و سَتو مشہوٗر پرٛانٮ۪و کٔدلَو منٛز اکھ، یُس قدیم وقتس سۭتۍ غٲر ٹرانزٹ گوٚو۔ یہِ آسہِ نہٕ صِرِف لُکن ہِنٛدِ خٲطرٕ راحتُک ذٔریعہٕ بٔلکہِ آسہِ سیاحن خٲطرٕ پُرکٔشش تہِ۔\nرفی ثاقب آرکیٹیکٹس تہٕ البرج کنسلٹنسی چھِ پننہِ قٕسمُک یہِ منفرد کٔدٕل بناونہٕ خٲطرٕ کٲم کران۔\nرفیع ثاقب آرکیٹیکٹس کِس نجم الثاقب یَن ووٚن یو این آی یَس زِ \"کٔدٕل ڈیزائن کرنس لوٚگ ترٛےٚ رٮ۪ت، امیُک کھجر چھُ 9 میٹر تہٕ یہِ بناونہٕ خٲطرٕ چھُ اعلیٰ معیارٕچ دیودار لٔکرِ استعمال کرنہٕ آمٕژ”۔\nتٔمۍ ووٚن: \"یہِ چھُ ہوبا کدل تہٕ زیرو برج کٮ۪و کٔدلَو نِش ڈیزائنَس منٛز تھوڑا مختلف تِکیازِ اتھ کٔدلَس منٛز چھِ زیادٕ جاے یوٚس چھتہٕ پٮ۪ٹھٕ ؤلِتھ چھِ تہٕ ییٚتہِ لۄکٕٹۍ دُکان ہٮ۪کَو قٲیِم کٔرِتھ تہٕ ییٚتہِ بِہنہٕ خٲطرٕ کٲفی جاے چھِ۔”\nتِم چھِ ونان", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 819, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Built under Srinagar Smart City Limited Amira Kandal فٹ برج is in final stages of construction It is one of Srinagar s seven famous old bridges which has been transformed into history from ancient times This will not only be a source of relief for people but it will also attract tourists they said quoting Rafi Thaqab Architects Naj"} +{"id": "bench_0162", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ادکیاہ! یارا ، مےٚ چھ یہِ میوٗٹھ میٚو کھیٚاونوومُت ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Adakiah What have I eaten that makes me so angry and frustrated at myself?"} +{"id": "bench_0163", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "\"پرٛٮ۪تھ کمرٕچ الگ وال پیلنگ: گَرٕ ڈیزائن کرنُک اکھ واریاہ جٔدید طریقہٕ چُھ اَمہِ خٲطرٕ \"\"اوپن پلان\"\" ہُنٛد انتخاب کرُن۔\"", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 121, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Open plan is a modern method of designing houses including everything from entrance ways through bedrooms and bathrooms designed for flexibility throughout the entire house.\""} +{"id": "bench_0164", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پونی ٹیلَس منٛز بنٛد کرنہٕ آمُت لوٹ کٔرِو کم کم مَستس منٛز تقسیٖم۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 66, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Cut the pork belly into shorter pieces preferably quartered as well as packed with a pony tail."} +{"id": "bench_0165", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہینٛڈ سٹینٛڈ کَرنہٕ خٲطرٕ چھُ ہمت، طاقت تہٕ مشقٕچ ضروٗرت۔ ہینٛڈ سٹینٛڈ کَرنہٕ وِزِ خوفس پٮ۪ٹھ قابو پاونہٕ خٲطرٕ چھِ یِم کینٛہہ مشوَرٕ:\n1. پنُن خوف تسلیٖم کٔرِو: اُلٹہٕ آسُن چھُ خوفناک تہٕ پرٛٮ۪تھ کٲنٛسہِ چھُ یہِ خوف دُور کَرنہٕ خٲطرٕ یہِ کَران۔ لۄکٕٹۍ قدم تُلِو یِتھٕ کٔنۍ زَن بۄن کُن کُتہٕ کَرُن یا بسترٕ کِس بۄنِس کُن۔ یِم پوزیشنہٕ کَرَن تُہنٛدِس اُلٹہٕ آسَنٕچ عادت پٲدٕ کَرنَس منٛز مدد۔\n2. سٲس نِیو: ییٚلہِ تُہۍ تیٲری کَران چھِو، یقیٖنی بَنٲوِو زِ تُہۍ چھِو گۄڈٕ تہٕ برابر سٲس نِوان۔ اَتھ سۭتۍ چھُ تُہنٛدِس خوفس پٮ۪ٹھ قابو تھاونَس منٛز مدد مِلان۔\n3. بانہٕ سۭتۍ توازن تھاونٕچ مشق کٔرِو: پرٛٮ۪تھ دۅہ کٔرِو بانہٕ سۭتۍ مشق تاکہ بانہٕ تہٕ اُوپرِم جِسمٕچ طاقت بَنٲوِتھ ہیٚکو۔ کرٛو سٹینٛڈ یا ہولڈنگ فراگ سٹینٛڈ باقٲعِدگی سۭتۍ کَرُن چھُ تُہنٛدِس وزنَس پٮ۪ٹھ پَنہِ بانہٕ پٮ۪ٹھ تھاونَس منٛز مدد کَران۔ اَتھ سۭتۍ چھُ تُہنٛدِس اعتمادَس منٛز مدد مِلان۔\n4. دیوار اِستعمال کٔرِو: اَگٕلۍ قدم چھُ دیوارس کُن لَتھ کٔرِتھ پَنہِ بانہٕ پٮ۪ٹھ اُلٹہٕ آسُن۔ مکمل ہیڈ سٹینٛڈ کَرنَس بَدلَس، دیوار اِستعمال کٔرِو تاکہ تُہۍ توازن تھاوِتھ ہیٚکو۔ پنُن شکل تھاونَس، سٲس نِوان تہٕ اُلٹہٕ آسَنٕچ عادت پٲدٕ کَرنَس پٮ۪ٹھ توجہ دِوِو۔\n5. ہیڈ سٹینٛڈ کٔرِو: کٲفی اعتماد حٲصِل کَرنہٕ پتہٕ، تُہۍ ہیٚکو دیوار اِستعمال کَرنَس بَدلَس آہستہ آہستہ ہیڈ سٹینٛڈ کٔرِتھ۔ یقیٖنی بَنٲوِو زِ تُہۍ چھِو پنٕنِس رفتارَس پٮ۪ٹھ گژھان۔\n6. صٔحیٖح پٲٹھۍ لَنٛڈ کَرُن ہیٚچھُن: ہیڈ سٹینٛڈ پٮ۪ٹھٕ کِتھٕ پٲٹھۍ گِرُن چھُ تُہنٛدِس خوفس منٛز مدد کَران۔ اَکھ اِخراجٕچ حکمت عملی تھاونَس سۭتۍ چھُ تُہنٛدِس اعتمادَس تہٕ حِفاظَتَس منٛز مدد مِلان۔\n7. باقٲعِدگی سۭتۍ مشق کٔرِو: طاقت بَنٲوِتھ، پنُن فارم بہتر بَنٲوِتھ تہٕ پنُن خوف دُور کَرنَس خٲطرٕ کٔرِو باقٲعِدگی سۭتۍ ہیڈ سٹینٛڈٕچ مشق۔ ییٚتھ پٲٹھۍ تُہۍ زیٛادٕ مشق کَرِو، تیٚتھ پٲٹھۍ چھِو تُہۍ زیٛادٕ آرام دہ تہٕ اعتماد مند بَنان۔\n8", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1709, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ہنز قوت کمزور گژھارنَس قٲبِل بَنَان تاکہ تُہا پنُن جسم بہتر بَمناوِت ہی٠کو کٔرتھ۔"} +{"id": "bench_0166", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ 2023 تہٕ 2024 ہٕنٛدۍ کیٚنٛہہ بہترین سپورٹس کارٕ [1]:\n1. شیورلیٹ کیمارو زیڈ ایل 1\n2. شیورلیٹ کورویٹ\n3. فورڈ مسٹینگ\n4. سوبارو بی آر زیڈ\n5. پورش 718 باکسٹر", "domain": "sft_longform", "length_bucket": "medium", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Here are some of the best sports cars from 263 and 244 manufactured between these years [1]"} +{"id": "bench_0167", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سخت حفاظتی انتظامن درمیان امرناتھ یاترایہِ ہُنٛدشیٚیِم قٲفلہٕ، یَتھ منٛز 8,605 زائرین شٲمِل چھِ گوٚو از ژٔنٛدٕروارِ دۄہ صُبحٲے جموں کِس بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ وادی کشمیر کُن روانہٕ۔ اہلِکارو مُطٲبِق چھِ وُنیُک تام 70,000 کھۄتہٕ زِیٛادٕ عقیدت مندَو مُقدس امرناتھ گۄپھِ ہُنٛد دورٕ کوٚرمُت۔ شیٚیِمِس قٲفلس منٛز چھِ 6,486 مرد، 1,826 زنانہٕ، 42 شُرۍ تہٕ 251 سادھو شٲمِل۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 370, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Amidst tight security arrangements the sixth batch of devotees visiting Amarnath Yatra comprising 8603 pilgrims started today Monday morning from Bhagwati Nagar Base Camp in Jammu towards Valley KashmirAccording to officials more than 7700 people have visited the holy Amarnath cave so far The sixth batch includes 64"} +{"id": "bench_0168", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مکٔژ تُجِن بیٚیہِ آسمانس کن تہٕ سلامنِس مردٕ جسمس نِش کوٚرُن بیاکھ حصہٕ الگ ثریا سُنٛد مٲرۍ موٚند مۄکھ پیوو ہردٕ پنٕکۍ پٲٹھۍ ۂرِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 132, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Mek again looked towards heaven and returned another portion of it near to the slain body saying goodbye as he drew his hair back like a bird towards its length from the deceased body towards heaven looking again and returned it near the slain शरीर saying goodbye like bird draws its hair back towards the length of the slain bodies towards heaven look"} +{"id": "bench_0169", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She feels happy.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ خوشی محسوس کران۔"} +{"id": "bench_0170", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I like tea.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مے چھ چائے پسند۔"} +{"id": "bench_0171", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ یہِ علم ٲس یِمو امیری غریبی، ذات پات تہٕ باقےٕ غلط حرکژو خٲطرٕ تُجمٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 79, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Though these things were happening despite their wealth poverty caste etc they had developed this knowledge within them.\""} +{"id": "bench_0172", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کالج عمارژن پٮ۪ٹھ ٲسۍ کینٛہہ لڑکہٕ نہٕ چلاوان کٔمۍ تام لڑکن چلوو لیبارٹری بلاکس پٮ۪ٹھ پٹرول کین تہٕ ہٲونس گندھکھ تُج یتھہٕ کٔنۍ دٕز سٲرٕے لیبارٹری آناّ فاناّ منٛز۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Some boys on board the college buses drove off without paying others until finally they stopped at a block containing laboratories where petrol showed signs of burning causing an entire laboratory to burst into flames instantly caused by protesters driven by students carrying gasoline bottles onto blocks containing laboratories such as those shown above burning gallons of gasoline throughout the laboratory in minutes apparently"} +{"id": "bench_0173", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were excited, and they cheered loudly.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم ٲس پرجوش، تہٕ تمو کٔر زور شور سٟتۍ خوشی مناونہٕ آمت۔"} +{"id": "bench_0174", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نٮ۪سر پیٚیہِ ژےٚ گیانہٕ\nکٲسِتھ غم ہٮ۪تہٕ فۄرمانہٕ\nأرۍنِٮُ۪ن وقتہٕ ووتُے آدانہٕ\nوۄتھو سَرُن ہیوٚن خدا پانہٕ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if you understand will provide enough food for your families and yourselves The time has come therefore rise O God arise O man rise he cried out loud praying to be saved from this death penalty sentence.\"\"\""} +{"id": "bench_0175", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تندرُستی چھےٚ نیامٔژ ساسا\nگاسوٗ چُھے فرش تہٕ شُکر کر\nکرٛیٚے تہٕ کارن سخن اوٗلیٰ سا\nتَگہِ یے راتھ دۄہ خداے سر\nغریبی چھے خاص الخاصا\nخریدار چُھے خۄداے تہٕ سودا کر", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 159, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Happiness is ours God provides it security and prosperity buyers provide themselves with goods and services God provides them directly through His Word and by means of His Holy Spirit.\""} +{"id": "bench_0176", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یُس کرِ سِوٕیس پانہٕ ہیٚچِھِ ناوٮ۪س\nتی کراوٮ۪س یہِ پانس یِیَس خۄش\nابکھ گیان نِشہِ نِشہِ ناوٮ۪س\nامور شِناوِٮ۪س تَھوٮ۪س ہوش\nدۄہہِ اکہِ ٹوٹھٮ۪س دیدار ڈیشہِ ناوٮ۪س\nاَدٕ سوٗر گژھِ ما، شناوس، تھوِٮ۪س نہٕ ہوش", "domain": "poetry", "length_bucket": "long", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 201, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "He will provide for her whomsoever he pleased and thus return whence she had departed by virtue of knowledge gained from him every day except when she visited a devotee whose reputation he admired and honoured exceedingly sorrow will depart from her not confusion nor devotion towards him whatsoever.\"\"\""} +{"id": "bench_0177", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اسرائیلی صحافی بین ڈیوڈ سٕند مطٲبق ، حماس کہ طرفہٕ رہا کرنہٕ آمٕتۍ اسرائیلی یرغمالین کوٚر رہا گژھنہٕ پتہٕ میڈیاہس سۭتۍ کَتھ باتھ منز انکشاف زِ اسہ ٲس گوپھن منٛز تھونہٕ آمٕتۍ تہٕ حماس کہ غزہ پٹی ہند سربراہ یحیی سنور تہِ آو اسہ سٕتۍ ملاقات کرنہٕ ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 245, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "According to Israeli journalist Ben David Hamas released Israeli hostages revealed in talks with media after release Hamas head of Gaza Strip administration Yahi Sinwar also came along to make an appearance on us side during talks between us.\"\"\""} +{"id": "bench_0178", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفٕس پتہٕ لگُن چُھے أچھ منٛز سِرُن\nگاشِچ وۄمید بٔرۍ زِنہٕ زاہ\nنفٕس پتہٕ لگُن چُھے آرٕ مٔنٛزۍ یِرُن\nۂلِس تہٕ میٚنٛدِس کری واہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Looking at your face makes you cry Your hope of light makes you rise Your face looks down on you Your forehead and neck are full of worries and stress.\"\"\""} +{"id": "bench_0179", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He has a car.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "أمِس چھےٚ گاڑِ یَژھان لاگُن تہٕ سۄ کَرِ تِیُتھا ہیوٗ مُمکِن تعیینات۔"} +{"id": "bench_0180", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "For example, a research project may involve comparisons of the health and recovery of all patients who received a particular medication.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 136, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مثال پٲٹھۍ ایکِس تحقیقی منصوبس منٛز ہیٚکہِ سارِنٕے مریضن ہنز صحت تہ بحالی یِم خاص دوا اوس روُمُت تِم ہی���کن مُقابلہ کٔرِتھ۔"} +{"id": "bench_0181", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چیف منسٹر چھِ ارکان اسمبلی ہِندیٚن نمٲٮٔندَن علاوٕ وزارت کِس خواہِشمنٛد چیف منسٹرٕکۍ سیٲسی مشیر ڈاکٹر کے وی پی رامچندر راؤ سٕندِس رٲبطَس منٛز تہٕ چھِ تِمن مناونٕچ کوٗشِش کران۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Apart from members of the legislative assembly the Chief Minister maintains close political touch with Dr KVP Ramachandرا Rao leader of Ministry of desires for Chief Ministers elections also making efforts to celebrate those elections.\"\"\""} +{"id": "bench_0182", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تِکیحازِ رشیدس سۭتۍ اوس نہٕ سلیمس بغٲر بیٚیہِ کٕہنۍ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 52, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Because there was nobody except Rashid at that time he returned only after bringing Rashid along with him.\"\"\""} +{"id": "bench_0183", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سروٕ ہیوٗ قد۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return those items whose tags are missing or incorrect descriptions for them in their destination stores purchased goods must be returned in their destinations stores intact copies should be provided for these items accordingly explained below)."} +{"id": "bench_0184", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Sri Lanka is a country in South Asia, located on an island once known as Ceylon.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 80, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سری لنکا چُھ جنوبی ایشیا ہس منٛز ایکہ مُلک یوس اکہ زِکھ اوس کیلونا ونان۔"} +{"id": "bench_0185", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He woke up early, and he went for a walk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ ووت جلدی تہٕ سہ گوٚو چہلے خٲطرٕ۔"} +{"id": "bench_0186", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَسہِ ترٲوِتھ ژوٚلُکھ کارن\nانہارن پرنیٛات کوٗتو\nبابجہٕ رُوٗپہٕ وَن گارتھ ژٕ ژرٛارن\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "We abandoned our crops farmers wives children grandchildren etc they were crying tears of grief and sorrowful emotions filled their hearts.\""} +{"id": "bench_0187", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "برٛسوارِ دۄہ صُبحٲے گوٚو 3,500 زائرین پٮ۪ٹھ مشتمل بیٛاکھ قافلہٕ شری امرناتھ جی یاترا خٲطرٕ سخت حفاضتس منٛز کٔشیٖرِ کُن روانہٕ۔ سرکٲرِ ذٔریعہٕ وون زِ 3500 زائرین پٮ۪ٹھ مشتمل بیٛاکھ قافلہٕ گوٚو برٛسوارِ دۄہ صبحٲے بھگوتی نگر بیس کیمپ پٮ۪ٹھٕ 140 لۄکچہِ تہٕ بجہِ گاڑٮ۪ن منٛز کٔشیٖرِ کُن روانہٕ۔ تِمَو ووٚن زِ 832 زائرین گٔیہِ جنوٗبی کشمیر کِس اننت ناگ ضلعس منٛز واقع نوان پہلگام بیس کیمپس کُن روانہٕ، ییٚلہِ زَن 2,668 حاجی وسطی کشمیر کِس گاندربل ضلعس منٛز واقع بلتل بیس کیمپس کُن روانہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 482, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Another pilgrimage consisting of 3 thousand pilgrims departed on Thursday morning through Srinagar to Kashmir under tight security The official sources said 8000 pilgrims comprising another pilgrimage left Srinagar from Bhogati Nagar Base Camp on Thursday afternoon via vehicles both small and big totalling 1700 people leaving for Kashmir This week ended with"} +{"id": "bench_0188", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Changes in age at first birth do not appear to account for appreciable increases in overall U.S. breast cancer rates through 1990, although more delayed childbearing by women born after 1950 should ultimately contribute to an approximately 9% increase in rates.348 Since the 1940s, however, obesity, use of postmenopausa...", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 323, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "گۄڈنِکس زَمانَس منٛز وٲنٛسہِ ہنز بدلاو چُھ نہٕ گۄڈنیُل طور پٲٹھ کَم مجموعی طور پنین امریکین سین برسٹ کینسر کی شرحن منٛذ"} +{"id": "bench_0189", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ڈھاکہ: ڈھاکہ ٹریبیون مُطٲبِق یِیہِ برٛسوارِ دۄہ شامَس بنگ بھون کِس دربار ہالس منٛز بنٛگلہ دیشٕچ نٔو عبوری حکومت، ییٚمِچ قیادت نوبل انعام یافتہ ڈاکٹر محمد یونس کران چھِ۔ سٹیٹس مِلِتھ۔\nچیف آف آرمی سٹاف (سی او اے ایس) جنرل وقار الزمانَن کوٚر بۄدوارِ دۄہ عبوری حکومت کہِ حلف برداری تقریبہِ ہُنٛد اعلان۔ عبوری حکومت کِس سائزَس مُتعلِق پرژھنہٕ پتہٕ ووٚن تٔمۍ زِ تٔمِس چھُ بھروسہٕ زِ اَتھ منٛز آسن گۄڈٕ لَگ بَگ 15 ارکان، حالانٛکہِ بیٚیہِ اکھ یا زٕ ہٮ۪کَو شٲمِل کٔرِتھ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 461, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Dhaka: Bangladeshs new opposition government led by Nobel Prize winner Dr Muhammad Yunus will be sworn in at Bengal Bhavans court hall on Tuesday evening according to Dhaka Tribune sources The Chief of Army Staff (COAS) General Waqar Azman announced the swearingin ceremony for the opposition government Wednesday afternoon after being asked"} +{"id": "bench_0190", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہسپتال وٲتۍ تھےٕ ییٚلہِ رشید تھیٹرس منٛز ژونُکھ أمِس آیہِ اَتہِ کینٛہہ ٹیبہٕ تہٕ ڈاکٹرو دیُت أمِس ہسپتالسےٕ منٛز روزنُکھ مشورٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 129, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Going to hospital Rashid entered into theatre where doctors advised him to remain in hospital for a few months due to injuries he received during therapy sessions at Srinagar Medical School Srinagar Medical Hospital and other hospitals during treatment of COVID19 infection cases during vaccination days and Covid 19 deaths cases during lockdown situations respectively during treatment for coronavirus infection"} +{"id": "bench_0191", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "4 اَگَست 2023 ہَس تام چھُنہٕ کانٛہہ تہِ ثٲبِت گٔمٕژ مٲلوٗمات زِ حُکوٗمَتھ کَرِ کُنہِ تہِ زیٛادٕ وفاقی اِقتِصٲدی سِٹیمولَس چیک دِتھ۔ تاہم، کیلیفورنیا، ڈیلاویئر، فلوریڈا تہٕ 13 باقٕے رِیاسَتَن ہٕنٛدِ پروگرامَن تحت قٲبِل افرادَن چیک دِنٕچ کَتھ چھےٚ گٔمٕژ۔\n\nٹریژری ڈیپارٹمنٹ، بیورو آف دی فِسکَل سَروس، تہٕ اِنٹرنَل ریونیو سَروس (آئی آر ایس) کٔر کووِڈ-19 وبٲیی مَریٖضَن دوران افرادَن اِقتِصٲدی اَثَرٕچ ادٲیگی یا اِقتِصٲدی سِٹیمولَس چیک دِتھ۔ مارچ 2020 (کیئرس ایکٹ)، دَسَمبَر 2020 (کنسولیڈیٹِڈ اَپروپریشَنز ایکٹ، 2021)، تہٕ مارچ 2021 (امریٖکَن ریسکیو پلان ایکٹ) مَنٛز ٲسۍ ترٛےٚ دورٕ ادٲیگی گٔمٕژ۔\n\n476 مِلین کھۄتہٕ زیٛادٕ ادٲیگی، ییٚمِچ کُل مٲلی رِلیف 814 اَرَب ڈالر ٲس، گٔمٕژ وبٲیی مَریٖضَن ہٕنٛدِ اثرَس منٛز گھرَن۔ اِنٹرنَل ریونیو سَروس (آئی آر ایس) کٔر چیکٕچ رَقَم آمدنی، ٹیکس فائلِنٛگٕچ حٲلَت، تہٕ فردَس پٮ۪ٹھ شُرٮ۪ن (یا مُنحَصِر) ہٕنٛدِ تعدادَس پٮ۪ٹھ مُنحَصِر حِساب کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 872, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "More than $477 million in payments resulted from COVID19 pandemic patients impacted by economic measures received financial aid ranging from three sources including March 26, 27 April and 28 March programs of California Delaware Florida and thirteen other states respectively providing checks for eligible individuals during the care act December 2"} +{"id": "bench_0192", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پراپرٹی ٹیکس چھُ او ایس آر پنچایتی راج ادارن خٲطرٕ اکھ اَہَم ذٔریعہٕ بناوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 76, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Property taxes form an important source of funding for OSR Panchayati Raj institutions.\"\"\""} +{"id": "bench_0193", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِہ، ییٚلہِ راتہِ ہٕنٛزِ اَصٕل نِنٛدرٕچ کَتھ چھِ یِوان، تیٚلہِ ہیٚکہِ نِنٛدرٕچ لِباس تُہٕنٛدِس نِنٛدرٕچ کوالِٹی پٮ۪ٹھ بوٚڈ اَثَر کٔرِتھ۔ بسترَس پٮ۪ٹھ آرام دہ لِباس لاگُن ہیٚکہِ تُہٕنٛدِس آرام کَرنَس تہٕ زیٛادٕ آرام دہ مَحسوٗس کَرنَس مَنٛز مَدَتھ کٔرِتھ۔ یہِ ہیٚکہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت تہِ مُنظَم کٔرِتھ، جِسمٕچ دَرجہٕ حَرارَت تھاوِتھ، تُہٕنٛدِس تیزی سان نِنٛدرَس تہٕ زیٛادٕ وَقتَس تام نِنٛدرَس مَنٛز روزنَس مَنٛز مَدَتھ کٔرِتھ۔\n\nمگر، تُہٕنٛدِس خٲطرٕ چھُ یہِ تُہٕنٛدِس اِختیار زِ تُہۍ چھِو لِباس لاگُن پَسَن کَران یا نَنٛگہٕ نِنٛدر کَران۔ یہِ چھُ واریاہَن عوٲمِلَن پٮ۪ٹھ مُنحَصِر یِتھٕ کٔنۍ زَن تُہٕنٛدِس کَمَرٕچ دَرجہٕ حَرارَت، لِباس یُس تُہٕنٛدِس خٲطرٕ آرام دہ چھُ، تہٕ ذاتی پَسَن۔ ییٚتہِ چھِ کیٚنٛہہ وَجہٕ دِنہٕ آمٕتۍ زِ نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ تُہٕنٛدِس خٲطرٕ فٲٮٔدٕ مَنٛد آسِتھ:\n1. نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت مُنظَم کَرنَس مَنٛز مَدَتھ کٔرِتھ، کِیاہ کہِ تُہٕنٛدِس جِسمٕچ دَرجہٕ حَرارَت تھاونہٕ خٲطرٕ چھُنہٕ کانٛہہ تہِ چیٖز۔\n2. اگر تُہۍ چھِو اَکِس گَرٕم آب و ہوا وٲلِس جاے پٮ۪ٹھ روزان، تیٚلہِ ہیٚکہِ نَنٛگہٕ نِنٛدر کَرُن تُہٕنٛدِس جِسمَس ٹھنٛڈٕ تھاوِتھ۔ یہِ ہیٚکہِ تُہٕنٛدِس تیزی سان نِنٛدرَس، بَتَر کوالِٹی نِنٛدرَس، تہٕ میٹابولِزمَس بَڈاونَس مَنٛز مَدَتھ کٔرِتھ۔\n3. نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ بیکٹیریل تہٕ فَنٛگل اِنفیکشنَن ہُنٛد خطرٕ تہِ کَم کٔرِتھ۔ زنانَن خٲطرٕ ہیٚکہِ یہِ ہواہٕچ گُزرُن بَڈاونَس تہٕ وایجائنل علاقَس مَنٛز نَمِی کَم کَرنَس مَنٛز مَدَتھ کٔرِتھ، یُس ییٖسٹ اِنفیکشنَن نِش بَچاونَس مَنٛز مَدَتھ کٔرِتھ ہیٚکہِ۔\n4. اَکِس سٲتھی سۭتۍ نَنٛگہٕ نِنٛدر کَرُن ہیٚکہِ نزدیٖکی تہٕ رِشتہٕ ہٕنٛدِس مَحسوٗسَس بَڈاونَس مَنٛز مَدَتھ کٔرِتھ۔\n\nییٚتہِ چھِ کیٚنٛہہ وَجہٕ دِنہٕ آمٕتۍ زِ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1634, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "نزہہ وجوہات بیان کرِمژ یِم نَن‌گہ نِن تر تُم جسمانس کُل احساس بگاڑنس مَنز مِدَتھ ہیٛکن کٔرتھ ییتھ کٕن زِ جسمانس کل احساس ب گاڑنس منٛز"} +{"id": "bench_0194", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Defining and characterizing system security.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سسٹم سیکیورٹی ہٕنز تعریف تہٕ خصلت بیان کرنا۔"} +{"id": "bench_0195", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لداخ: وزیر اعظم نریندر مودی یَن کوٚر جُمعہ دۄہ کانگریسَس پٮ۪ٹھ تنقید تہٕ ووٚنُن زِ اگنیویئر سکیمٕچ مُخٲلِفت کرن وٲلۍ چھِ برٛونٛہہ کالہِ دِفٲعی بجٹ گھوٹالن منٛز شٲمِل۔ \"تِم چھِنہٕ یژھان زِ فوج تہٕ آئی اے ایف گژھن خۄد مۄختار روزٕنۍ۔ یہِ کَتھ کٔر ؤزیٖر اعظم مودیَن دراسَس منٛز کرگِل وِجے دۄہ کِس موقعس پٮ۪ٹھ مُنعقد أکِس تقریٖبہِ منٛز خطاب کران۔ تٔمۍ ووٚن زِ موٗجوٗدٕ مرکزی حکومتن چھِ فوج جٔدیٖد بناونہٕ تہٕ تِہنٛدۍ تمام مسلہٕ حل کرنہٕ خٲطرٕ زمینی سطحس پٮ۪ٹھ قدم تُلۍمٕتۍ۔\n\"کانگریسن کٔر پننِس دورس منٛز فوجٕک مطالبہٕ نظر انداز، مگر موٗجوٗدٕ مرکزی حکومتن چھِ اتھ طرفہٕ بہتر کٲم کٔرمٕژ۔ اگنیویر سکیمَس پٮ۪ٹھ کَتھ کران ووٚن وزیر اعظمَن زِ \"یِم امہِ سکیمٕچ مُخٲلِفت چھِ کران تِم چھِ دراصل تِمے لوٗکھ یِمَو برٛونٛہہ کالہِ ساسہٕ بٔدۍ کرور رۄپیَن ہُنٛد دِفٲعی بجٹ گھوٹالہٕ کوٚرمُت۔ تٔمۍ ووٚن زِ یِم لوٗکھ چھِنہٕ یژھان زِ آئی اے ایف تہٕ فوج گژھن مضبوٗط تہٕ مستحکم", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 851, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "LADAKH: Prime Minister Narendra Modi criticized Congress on Friday saying those who oppose AgniVire scheme are actually those who have been involved in defence budget scams in the past.\"Speaking at an event organised during Kargil Vijay Day celebrations by PM Modi earlier this year he said The current central government has taken steps from"} +{"id": "bench_0196", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کینٛہَن پیشَن منٛز چھُ زِیٛادٕ وزن منع کرنہٕ آمُت۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 50, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In some cases overweight weight has been prohibited altogether in those disciplines.\""} +{"id": "bench_0197", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شِترن میانٮ۪ن دَندن\nبُسرِتھ پیٚہِ مو ہایے\nتٲرِی مٹَھٕم اِندرن\nکر بندن توشہِ خدایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Shitran my teeth are worn out The roof of mouth has become sore The jaw is painful The stomach hurts God forbid these things happen to me regularly every day and each week respectively:"} +{"id": "bench_0198", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ حٲضر کرَن ارساتَے\nتتہِ مارَن تہٕ لگنم دایے\nتتہِ جواب منگن درساتے\nیاوُن سوٗر تہٕ بُڈے بایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 96, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "When they pray and meditate they will receive answers by means of these prayers and meditations respectively Soorayur and Budebaiye."} +{"id": "bench_0199", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ أتھۍ منٛز ژٔج أمِس زورٕ ودن کریکھ نیٖرتھ تہٕ آیہِ فرشس پٮ۪ٹ لاینہٕ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "And at this moment she burst into loud crying and fell unconscious to the ground covered with blood.\""} +{"id": "bench_0200", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was noisy, so I closed the window.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "شور اوس زیادٕ توٚہہ کوٚرن کھڑکی بند؟"} +{"id": "bench_0201", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمن دیُت کِھلٲڑیَن مشورٕ زٕ تِم کرِن پنٛنین بہترین صلٲحیتَن ہُنٛد مُظٲہِرٕ تہٕ اہلہِ وطنَس ونُکھ زِ تِم کٔرِن’’چیئر فورانڈ یا ‘‘۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Players were instructed that their performance should be the best they could be and players from India would respond by saying “Cheer for Team India”."} +{"id": "bench_0202", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "20-2019 ؤریَس منٛز چِھ گاڈن ہٕنٛز پٲداوار سارِؤے کھۄتٕہ زیادٕ 14.16 ملین میٹر ٹن درٕج کرنٕہ آمُت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Total fish production for the year 20092020 was recorded at 17 million tonnes making marine exports reach US$83 billion dollars worth of products annually.\""} +{"id": "bench_0203", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It writes code.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ چھ کوڈ لکھان۔"} +{"id": "bench_0204", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The idea is that stacked boosters increase the signal (or pressure drop) across the outlet, which introduces main-circuit fuel earlier than single-booster designs.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "خیال چُھ یہٕ زِ سٹیک بوزر چِھ آؤٹ لیٹس پار سگنل ( یا دباؤ ہنز کَمِی ) ہرس اضافہ کران یس واحد بوஸ்டر ڈیزائن سے پہلے مین سرکٹ فیول متعارف چہ کران ہے۔"} +{"id": "bench_0205", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمال اوس سٮ۪منحز کُٹھِس کھڑا تہٕ اتھس منٛز کھہرن دِتھ مکٔژ ہٮ۪تھ اوس سلام نِس بدٕنس زینٕکۍ پٲٹھۍ فالہٕ وان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jmaal stood at the doorway carrying a tray filled with kher flowers looking forward to receiving Salams from anyone who came through him carrying maize flour covered hands.\""} +{"id": "bench_0206", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Located away from rest of the hospital, continuous negative air flow in the ward is maintained by an extraction system to prevent infectious agents from contaminating the rest of the facility.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 192, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ہسپتال کِس باقایع حصس نِش چُھ یہ واقع وارڈَس منٛز لگاتار منفی ہوا بہاؤ چھُ اؚکسٹراکشن نظام کہ ذریعہ برقرار یوان تھون تاکہ مُعدی ایجنٹ باقی سہولیت آلودٕ کر"} +{"id": "bench_0207", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ لیفٹیننٹ گورنر منوج سنہاہَن کوٚر بوموارِ دۄہ مارہ سب ڈویژنَس منٛز جھیری میلُک افتتاح تہٕ کوٚرُن بابا جیتو تہٕ بووا کوری ہٕنٛدٮ۪ن سمادھیَن ہُنٛد دورٕ۔\nاَتھ موقعَس پٮ۪ٹھ کوٚر منوج سنہاہَن یاترین باپتھ اکھ کمیونٹی ہال تہٕ 4 ماڈیولر بس سٹاپ وقف تہٕ ترٛٲوٕنۍ مارہ سب ڈویژنَس منٛز سی ایس آرَس تحت گۄڈٕنِکِس ‘انڈور سپورٹس کمپلیکسٕچ’ بُنیاد\nیہِ چھُ قٲبلِ ذِکر زِ جھیری مٲلہٕ یُس دَہن دۄہَن تام جٲری چھُ روزان چھُ پرٛٮ۪تھ ؤریہِ جمہِ کِس مضافاتَس منٛز واقعہٕ جھیری گامَس منٛز مناونہٕ یِوان۔\n‘X’ پٮ۪ٹھ أکِس پوسٹَس منٛز ووٚن لیفٹیننٹ گورنرَن: ‘اَز کوٚر مےٚ مارا سب ڈویژن جمِس منٛز جھیری مٲلُک افتتاح تہٕ بابا جیتو تہٕ بووا کوری ہٕنٛدٮ۪ن سمادھیَن ہُنٛد کوٚرُم دورٕ ‘۔\nپوسٹَس منٛز ووٚن تٔمۍ زِ: ‘اَتھ موقعَس پٮ۪ٹھ آو زائرینن باپتھ اکھ کمیونٹی ہال تہٕ 4 ماڈیولر بس سٹاپ وقف کرنہٕ، تہٕ سی ایس آرَس تحت آیہِ گۄڈٕنِکہِ ‘انڈور سپورٹس کمپلیکس’ ہٕنٛز سنگ بنیاد مارہ سب ڈویژنَس منٛز ترٛاونہٕ’۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 887, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Lt Governor of Jammu and Kashmir Manoj Sinha inaugurated Jheri Mal at Marah sub division on Tuesday and visited the shrines of Baba Jeito and Bova Kori respectively during this event."} +{"id": "bench_0208", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پُلِ صراطس تارٕ ترٕ نو\nنُندٕ ریوٚش گژِھ تارونُے\nتتہِ ترنس چُھم آدر نو\nیا اللہ چُھس شرمندٕ چونُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 95, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only translate this phrase into Spanish without using quotes or paraphrasing sentences directly from the source text:"} +{"id": "bench_0209", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالنہِ أچھ آسہٕ خونےٕ خوٗن۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jamal has been affected by blood diseases since childhood and continues to suffer from them presently also during pregnancy periods of women physicians prescribed medication for anemia increase hemoglobin levels etcetera depending upon their condition according to their age etcetera during pregnancy women physicians prescribe medications for anemia increasing hemoglobin levels इत्यादि depending upon his condition during pregnancy womens physicians prescribe"} +{"id": "bench_0210", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دراندازی ہٕنٛزِ کوٗشِش، شَکاوَر حرکتَن تہٕ لائن آف کنٹرولَس سۭتۍ موسمی حالاتَن ہٕنٛدِ پیش نظر چھِ فوجَن پنٕنۍ نگرٲنی تہٕ گشت کِس نظامَس مٔزیٖد جٔدیٖد بناونہٕ خٲطرٕ ‘روبوٹک ٹیکنالوجی’ مُستقل طور تعینات کٔرمٕژ۔ یِم خودکار روبوٹ چھِ نہ صرف فوجی اہلکارَن لاجسٹک مدد فراہم کران بلکہ چھِ وۄنۍ سرحدی نگرٲنی نظامُک اکھ لٲزمی حصہٕ بنیمٕتۍ۔ فوجی ذرایعو مُطٲبِق چھُ روبوٹک سسٹم اکھ مِشیٖن یُس جدید مصنوعی ذہانت سۭتۍ لیس چھُ تہٕ یہِ ہیکہِ مُشکِل پہاڑی علاقن، شیٖنہٕ وتن تہٕ کمزور علاقن منٛز انسٲنی رہنمٲئی بغٲر کٲم کٔرِتھ۔ یِم روبوٹ چھِ فوجین بھارٕ سامان، ہتھیار، کھیٛن تہٕ ضروٗری طبی سامان دور دراز چوکیوں تام واتناونَس منٛز مدد کران۔ ذٔرایعَو وون زِ ‘آپریشن سینڈور’ دوران کٔر أمۍ روبوٹک ٹیکنالوجی غیر معمولی کارکردٕگی ہُنٛد مظٲہرٕ۔ اتھ کاروٲیی منٛز، یُس لائن آف کنٹرول نزدیٖک حساس علاقن منٛز کرنہٕ آو.", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 791, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In order to enhance their surveillance and tracking systems due to intelligence efforts suspicious activities and weather conditions along the Line of Control soldiers have permanently deployed the 'Robot Technology' system which allows not only provides military personnel with logistical assistance but has also become an integral part of the border monitoring system now due to difficult mountainous regions snow valleys"} +{"id": "bench_0211", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He writes letters.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ چٹھۍ لکھان۔"} +{"id": "bench_0212", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He wants rest.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ آرام یژھان کران۔"} +{"id": "bench_0213", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She was nervous, but she spoke well.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ ٲس گھبراوان مگر سۄ کٔر اصل کتھ شروٗع۔"} +{"id": "bench_0214", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تلنگانہ راشٹرا سمیتی چِھ واضح پٲٹھۍ ووٚنمُت زِ صدر تلگودیشم پارٹی مسٹر این چندرا بابو نائیڈو بناونٕہ پَنٕنۍ کُنۍ زٕنۍ حکوٗمت کنٕہ عظیٖم اتحادس منز شٲمِل جماعتَن سۭتۍ رٕلِتھ بناوَن حکوٗمت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 187, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Telangana Rashtra Samithi has clearly stated that President Telangana Desh Party Mr N Chandras Babu Naik would create his own government along with other parties forming a larger alliance making an exciting government formation process underway currently underway between major parties such as NDA government formation processes underway currently ongoing government formation proceedings are underway currently exciting government formations"} +{"id": "bench_0215", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The most frequent (≥ 1%) adverse reactions that led to permanent discontinuation in monotherapy studies were infection, haemorrhage, multi-organ failure, and VOD.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 162, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اکثَر گژھَن وٲلۍ (≥ ۱٪) مُخالِف رد عمل یِم مونوتھیراپی کِس مطالعَس منٛز مستقل طور پٲٹھۍ رُکاوٹ بَناوُن چھِ انفیکشن ہیرجیز ملٹی"} +{"id": "bench_0216", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She sits near me.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 17, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ مےٚ سٟتۍ بیٹھان۔"} +{"id": "bench_0217", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "امٕک کنہہ طریقہٕ چِھ بیان آمت کرنہٕ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Some of these methods are explained below:."} +{"id": "bench_0218", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can go by car, or we can walk.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 33, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ ہیٛکو کار سٟتۍ گژھتھ، یا پیدل پکن ییتھ۔"} +{"id": "bench_0219", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was tired, so he went to sleep early.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ اوس تھکمت لہذا سہ گوٚو جلدی سوتھ۔"} +{"id": "bench_0220", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کوٚل مو لگی رنگن تہٕ سنگن\nکوٚل مو ہنگن لگہِ نے آو\nکوٚل اَشُد لگی انگن\nدَرنہٕ عملہِ نتہٕ کوٚل کَتھ آو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Colore for dyeing vegetables And cooking foods contain dyes such as saffron saffron turmeric saffron saffron tea saffron etc Which contains substances like dyes saffron turmeric tea saffron इत्यादि This contains substances such as dyes saffron हल्दी হলুদ saffron tea etc This contains dyes saffron হলুদ turmeric tea etc Such contains substances namely dyes saffron saffron हल्दी மஞ்சள் tea saffron ইত্যাদি This contains"} +{"id": "bench_0221", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ یہِ نیرِ ہا کالج گیٹہٕ نٮ۪بر مگر کھوژان اوس زِ نٮ۪برٕ چھُ پولیس رٔٹِتھ نِوان لہٰذا کوٚر نہٕ أمۍ گیٹہٕ نٮ۪بر نیرنُک جُرتےٕ لڑکہٕ تہٕ لڑکیہِ آسہٕ زبردست نعرٕ بٲزی کران۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Though he feared arrest by the police outside college gates since he had emerged from inside they chose not to proceed further despite loud slogans given by boys and girls respectively during their efforts at exiting the gate itself without failingly visiting colleges gates first.”"} +{"id": "bench_0222", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Capital regulation seeks to address this by way of risk weights.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 64, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سرمایہ کِس ضابطہٕ سُند مقصد چُھ خطرہ کِس وزنس ذریعہ یہ حل کرنُک کوشش کرُن۔"} +{"id": "bench_0223", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "از صُبحٲے سخٕت حِفٲظتی اِنتِظامَن درمیان سالانہٕ شری امرناتھ جی یاترا خٲطرٕ زائرین ہُنٛد ژوٗرِم قافلہ گوٚو بھگوتی نگر بیس کیمپ پٮ۪ٹھٕ کٔشیٖرِ کُن روانہٕ۔ سرکٲرِ ذٔرایعو دِژ اطلاع زِ بیٛاکھ قٲفلہٕ یَتھ منٛز 6,979 زائرین شٲمِل چھِ، گوٚو بَٹہٕ وارِ دۄہ صُبحٲے بھگوتی نگر بیس کیمپٕ پٮ۪ٹھٕ 311 لۄکٹٮ۪ن تہٕ بجن گاڑیٚن منٛز کٔشیٖرِ کُن روانہٕ۔ تِمَو ووٚن زِ یِمَن زائرینن منٛز ٲسۍ 5,196 مرد، 1,427 زنانہٕ، 24 شُرۍ تہٕ 331 سادھو تہٕ ریشی۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 430, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Amidst tight security arrangements this morning during an annual pilgrimage to Shri Amarnath Ji devotees fourth caravan departed from Bhagti Nagar Base Camp towards Kashmir via train services operated by Government sources reported that another caravan comprising 6970 devotees started from Bhagati Nagar Base camp towards Kashmir on Saturday morning via train Services operated by Govt"} +{"id": "bench_0224", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She likes books.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ کتابہ پسند کران۔"} +{"id": "bench_0225", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مدھیہ پردیش کِس وزیر اعلیٰ ڈاکٹر موہن یادوَن ووٚن زِ مدھیہ پردیشٕچ وزیر اعلیٰ ممتا بنرجی پَزِ عوٲمی طور یہِ تسلیم کرُن زِ تٔمۍ سٕنٛزِ حکوٗمتَن چھِ غلطی کٔرمٕژ۔راتھ ژیرِ رٲژ پننِس بیانَس منٛز ووٚن ڈاکٹر یادوَن زِ مغربی بنگالٕچ وزیر اعلیٰ پَزِ کھُلہٕ پٲٹھۍ تسلیم کرُن زِ تٔمۍ سٕنٛزِ حکوٗمتَن ٲس غلطی کٔرمٕژ۔ کُنہِ تہِ بیٚنہِ یا کورِ سۭتۍ، سُہ تہِ ڈاکٹرَس سۭتۍ، یُتھ واقعہٕ چھُ قابل مذمت تہٕ افسوسناک ۔ یُتھ واقعہٕ گَژھِ نہٕ کٲنٛسہِ بیٚنہِ یا کورِ سۭتہِ گژھُن۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 457, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Madhya Pradesh Chief Minister Dr Mohan Yadav said Madhya Pradesh Chief Ministers Mamata Banerjee should openly admit she had made mistakes in her governmentDuring a late night statement yesterday Dr Yadav said West Bengal Chief Ministers should openly acknowledge she had done wrong thingsIn any sisters or daughters case even with Dr such an incident is shameful and regrettable Such incident"} +{"id": "bench_0226", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "This symposium aims to bring together world leading scientists in the field of cryoelectron microscopy, who will present and discuss their latest research and who will give a glimpse into the future of a field that is going through a revolution in technology that represents a quantum leap which had not been seen in ove...", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 323, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ایم سمبزیئَم ہیکہ اِس سائنس فکشن ساینس دانن یکجا کٔرتھ یِم cryoelectroൺ فوکسکوپگری میدانس منٛز جدید ترین تحقیق چھ کران یِم پننین جدید ترتعلقاتن پؠٹھ"} +{"id": "bench_0227", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نکیٖر تہٕ منکر جوابس وَسن\nپربت ژَسن ہۄشَو سۭتی\nشوبہٕ وٕنِس پانس پتھر ٹھاسن\nکُنۍ سٕے زٔنِس تتہِ آوٕسن\nبُکر پٮ۪ٹھہٕ ییٚلہِ کفن کاسن\nسَرپھ تہٕ گُنسہٕ وسن سۭتی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 155, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "the Niki and Manekr replied returning their hands together and feet together touched each other on the ground causing a slight trembling of fear to arise within oneself)."} +{"id": "bench_0228", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی! ییٚتہِ چھِ کیٚنٛہہ بہترین ایکشن-ایڈونچر ویٖڈیو گیٖمَن ہٕنٛز فِہرِست [1][2]:\n* ٹامب ریڈَر\n* اسیسِنز کریڈ والہالا\n* ریزیڈنٹ ایوِل 4\n* بیٹ مین: آرکھم اسایلم\n* ماروَلز گارڈینز آف دی گیلیکسی\n* دی لاسٹ آف اَس\n* مِڈل ارتھ: شیڈو آف مورڈور\n* اَنچارٹِڈ: لیگیسی آف تھیوٗز کلیکشن\n* سٹار وارز جیڈی: فالن آرڈر\n* ماروَلز سپایڈر مین/مایلس مورالز\n* ایلڈن رِنٛگ\n* گاڈ آف وار: راگناروک\n* گھوسٹ آف سُشیما\n* دی لیجنٛڈ آف زیلڈا: بریتھ آف دی وائلڈ\n* ہورایزن زیرو ڈان\n\nیِمَن ٹاپ ایکشن-ایڈونچر گیٖمَن ہُنٛد اِستِمال کٔرِو تاکہ تُہۍ ہیٚکو سارِوٕے کھۄتہٕ زیٛادٕ پسند کَرنہٕ آمُت گیٖم ژھانٛڈِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 575, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Use these top action adventure games to find the ones you enjoy most commonly offered below:"} +{"id": "bench_0229", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سُہ اوس پاوان یاد زِ شاید چھےٚ مےٚ یہِ کتہِ تام وُچھمٕژ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Maybe he had seen it somewhere during their travels across these regions he reminded himself still again and again.\""} +{"id": "bench_0230", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Antioxidative flavonoids from the leaves of Morus alba.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "انت Oxford فلیوونائڈز چھ موروس البا کی پنوین پؠٹھہٕ یوان۔"} +{"id": "bench_0231", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Understand how to let go of the past and practice non-attachment.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 65, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سمجھو زماعت کِتھ پٲٹھ چُھ ماضہ مُسترد کرُن تہ غَرب زدی سیت عمل کرناوان۔"} +{"id": "bench_0232", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She was busy, so she could not come.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ ٲس مصروف توٚaذا ہیٚکی نہٕ سۄ یِتھ۔"} +{"id": "bench_0233", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مگر تتھ برعکس تُج یِموٕے دۄشویو لولہٕ والٮ۪و یِمن ٹھیکہٕ درن خلاف علم۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 70, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But on the contrary they both took a different path and developed knowledge against these stubborn people.\"\"\""} +{"id": "bench_0234", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They tried again, and they succeeded.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تمو کٔر دوبارہ کوشش، تہٕ تم کامیاب گٲمٕتۍ۔"} +{"id": "bench_0235", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس کُپواڑہ ضِلعہٕ کِس کَرمھورا زچلدرہ جنٛگلی علاقس منٛز گوٚو سیکورٹی فورسَن تہٕ دہشت گردن درمِیان مُقابلَس منٛز اکھ نامعلوم دہشت گرد مارنہٕ۔\n\nیہِ چھُ ییٚمہِ ؤرۍ یہِ کٔشیٖرِ منٛز مارنہٕ آمُت گۄڈنیُک ملی ٹنٹ۔\n\nیہِ مُقابلہٕ گوٚو ژٔنٛدٕروارِ دۄہ صُبحٲے کُپواڑہ کِس کرمہورا زچلدرہ جنٛگلی علاقَس منٛز سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان تلاشی کاروٲیی دوران شُروٗع۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 380, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The encounter started during a search operation between security forces and terrorists on Monday morning in the Karmekora area of Kুপwara district north Kashmir."} +{"id": "bench_0236", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I have a pen.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مے چھ ایک پین۔"} +{"id": "bench_0237", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نَیہِ دِلہِ: ؤزیٖر اعظم نریندر مودی، پارٹی صدر جے پی نڈا، ؤزیٖر دِفاع راجناتھ سِنٛگھ تہٕ ؤزیٖر دٲخلہٕ امیت شاہن کٔر بَٹہٕ وارِ دۄہ پارٹی ہیڈ کوارٹرَس منٛز بی جے پی زیرِ اقتدار ریاستَن ہٕنٛدٮ۪ن ؤزیٖرِ اعلیٰ سٕنٛدِس اجلاسَس منٛز شرکت۔\nپارٹی ہٕنٛدۍ وزیر اعلیٰ تہٕ مُختٔلِف رِیاستَن ہٕنٛدۍ نٲیِب وزیر اعلیٰ ٲسۍ نیتی آیوگ چہِ سٹیئرنگ کمیٹی کِس نٔوِمِس اجلاسَس منٛز شِرکت کرنہٕ خٲطرٕ دارالحکوٗمتَس منٛز۔ بی جے پی یَن چھِ پننہِ پارٹی ہٕنٛدٮ۪ن ؤزیٖرِ اعلیٰ تہٕ نٲیِب ؤزیٖرِ اعلیٰ سٕنٛز اکھ کونسل تہِ بنٲومٕژ۔ اجلاسُک اہتمام اوس امی کونسلَن کوٚرمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 540, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "New Delhi Prime Minister Narendra Modi party president JP Nadda Defence Minister Rajnath Singh and Home Minister Amit Shah attended a meeting of BJP state ministers in power on Saturday at the party headquarters here today for their newly appointed members of the Steering Committee of the NITI Aayog This included party MLAs from different states participating in the meeting"} +{"id": "bench_0238", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When the wrath of king Ahasuerus was appeased.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ییلہٕ بادشاہ احسویرس سُنٛد غصہٕ شَمَل گوٚو۔"} +{"id": "bench_0239", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژےٚ چھےٚ نازٮ۪و۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "You have نازy eyes."} +{"id": "bench_0240", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أمۍ کٔر پنچلاٮٔٹ زٲلِتھ گام کہِ وٮ۪قارٕچۍ حفاظت۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "He destroyed Panchalats and protected the villagers economy by stealing their wealth.\"\"\""} +{"id": "bench_0241", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was cloudy, so the sky looked gray.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "آبدار اوس آمت لہذا آسمان اوس سرمئی نظر یوان۔"} +{"id": "bench_0242", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پَژھ کٔرٕم نہٕ آیَن حدیٖثَس مَسلَس\nزَلس منز گوس مَژھ زَن تارے\nزونُم نہٕ وُگہٕ وونۍ سوٗرُم ڈلس\nویر میٲنۍ کتھ شاٹھس لارے\nپانژھ دۄہ دُنۍیا دِژون زَلس\nآش ییٚلہ منگہِ تہٕ اسہِ کیا لارے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 179, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Believers will not doubt its truth anymore As we saw above The world became one and expanded forever What did I say What did you see What did You see What Did You See What Did We See What did we perceive What did We perceive What Did we perceive How could we perceive it What did he perceive What could we possibly"} +{"id": "bench_0243", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتمٮ۪و دۄیو دۄہو پٮ۪ٹھ بٔڑِس پٲمانَس پٮ۪ٹھ روٗد پٮ۪نہٕ پتہٕ چھُ وادی کشمیرُک موسم خوشگوار ییٚمہِ سۭتۍ لوٗکَن 15 دۄہَن تام شٔدیٖد گرم لہرٕ نِش راحت میٖج ۔ أتھہِ دوران چھُ موسمیات محکمَن 11 پٮ۪ٹھ 13 جولائی تام گرم تہٕ مرطوب موسمٕچ پیشین گوئی کٔرمٕژ۔ کٔشیٖرِ ہٕنٛدِس موسمَس مُطٲبِق چھُ سرینگرَس منٛز پٔتمہِ ژوُہَن گھنٹَن منٛز 2.6 ملی میٹر روٗد رِیکارڈ کرنہٕ آمُت۔ وادی کٮ۪ن مشہوٗر سیاحتی جاین گلمرگ تہٕ پہلگامَس منٛز آو بِلترتیب 12.6 ملی میٹر تہٕ 2.4 ملی میٹر روٗد درٕج کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 474, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "After days of heavy rain Srinagar recorded 26 mm of rainfall providing relief to people from severe heat waves lasted for 10 days according to weather department forecasts between July 17 and July 8th Kashmir weather conditions are expected warm and humid during these months According to weather departments predictions Srinagar recorded a rainfall of"} +{"id": "bench_0244", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالن وُچھ ثریاہس کُن بس اکی پھیرِ تہٕ اکھ زہر برٕژ اَسن ترٛاے ٲس جمال سٕنٛدِس بُتھِس پٮ۪ٹھ نژان تہٕ اَمہِ پتہٕ اوس سلام نِس جسمس انگ انگ ژٹان تہٕ بار بار اوس مکژِ سۭتۍ سلامس فلہٕ کران تہٕ ثریا ٲس اکہِ کنہِ مُرژِ ہٕنٛدۍ پٲٹھۍ سٲرۍ سےٕ کُٹھس تہٕ وارٕ وارٕ ووت یہِ خوٗن ثریاہس نذدیک۔", "domain": "novel", "length_bucket": "long", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 281, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jallal looked at Thariyah as soon as he saw her eyes and poured some poison into her mouth while she was singing along with Jallals voice and then started drinking a stream of saliva from her body repeatedly doing her face angry with her tongue and slowly getting closer to Thariyas death like a snake passing"} +{"id": "bench_0245", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِم ملاقاتہٕ چھےٚ حٔقیٖقی تہِ آسان تہٕ خیٲلی تہِ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 49, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "These meetings are both real and imaginary though they provide valuable insights into each other people motivations and characteristics of leaders etc.”"} +{"id": "bench_0246", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمو دۄشوٕیو کوٚر خاندر کرنُک فٲصلہٕ تہٕ یِمن اوس یقین زِ خواجہ طاروقی صٲب کرن یِمن اتھ خاندرس منٛز مدد تہٕ یِتھۍ نکاح پرنس پٮ۪ٹھ دِنۍ یِم محبتُک بجر تہٕ تمیُک ثبوٗت ہٲوِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 173, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Both decided on getting married believing that Khawaja Tarquai will provide assistance and proof of their love by performing these two weddings as a result of marriage they considered them brothers due to their relationship with each other through these marriages performed during this period of theirs they believed they would perform these couple wedding ceremonies demonstrating their relationship of"} +{"id": "bench_0247", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄکھس مۄل چُھے چَنن تہٕ کھٮ۪نن\nنِندرِ مۄل چُھے اوخنن سۭتی\nریٚشن مۄل چُھے وارٮ۪ن تہٕ ونن\nککوَن مۄل چُھے پتھ کنٮ۪ن سۭتۍ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Dry soil is characterized by low water retention capacity followed by moisture retention capacity moderate soil retains water moderately well followed by dry soil which has low water retaining capacity along with minimal moisture retention capability from rocks etc.\"\"\""} +{"id": "bench_0248", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The concept applied Perceived Ease of Use (PEOU), Perceived usefulness (PU), Teaching Method (TM), task Technology Fit (TTF), Behavioral Attitude (BA) as factors influencing the use of the system (flipped learning).", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 215, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ تصور چُھ اِستعمال کِس سہولت (PEU)، استواری افادیت (PU)، تدریسی طریقہ کار (TM)، کامہ کی ٹیکنالوجی فٹ (TTTF)، رویہ اعانیاتی نقطہ نظر (BA)، یِم نظام کِس استعمالس اثر انداز"} +{"id": "bench_0249", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعظم نریندر مودی یَن کوٚر بۄموارِ دۄہ جنتا مٲدانَس منٛز مُنعقد أکِس تقریٖبَس منٛز اوڈیشہ حکوٗمتٕچ اکھ اَہَم پہل سبھدرا یوجنا شُروٗع، یُس اوڈیشہَس منٛز 2024 کٮ۪ن اِلیکشنَن دوران ریاست خٲطرٕ بھارتیہ جنتا پارٹی (بی جے پی) ہُنٛد اکھ اَہَم انتخابی وعدٕ اوس۔ اتھ تقریبہِ منٛز کٔر پوٗرٕ ریاستہٕ پٮ۪ٹھٕ 70,000 کھۄتہٕ زِیٛادٕ زنانَو حصہٕ، مودیَن ووٚن پنٛنِس خطبس منٛز زِ ناری شکتی (زنانَن ہُنٛد بااختیار بناوُن) چھُ اوڈیشا چہِ ترقی ہُنٛد اکھ بوٚڑ منتر تہٕ ریاستَس منٛز بی جے پی حکومتہٕ طرفہٕ شروع کرنہٕ آمٕژ سبھدرا یوجنا سۭتۍ ییٚتہِ زنانَن ہٕنٛز سمٲجی تہٕ اقتصٲدی سلامتی مضبوٗط گژھِ۔ اَمہِ سکیٖمہِ تحت یِن پرٛٮ۪تھ بیٚنِفشری کُل 50,000 رۄپیہِ قٕسمن منٛز مِلنہٕ، یِم سیٚدُے تِہنٛدِس بیٚنٛک کھاتَس منٛز ترٛاونہٕ یِیہِ۔ تٔمۍ کوٚر بی جے پی کِس قیادتس منٛز نٔیِس حکومتس اوڈیشہَس منٛز اکھ کرور کھۄتہٕ زِیٛادٕ ماجہِ تہٕ بیٚنٮ۪ن سبھدرا یوجنا ہُک فٲیدٕ واتناونس پٮ۪ٹھ اطمینانُک اِظہار۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 871, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Prime Minister Narendra Modi launched Odisha governments flagship scheme Subhadra Yojana at an event held at Janata Maidan on Tuesday which was supposed to be a major electoral promise of BJP during the Kashmiri elections in Odisha This scheme attracted more than 76 thousand women from across Odisha indicating BJP leadership seeking satisfaction in providing benefits of new"} +{"id": "bench_0250", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں: ڈیموکریٹک پروگریسو آزاد پارٹی (ڈی پی اے پی) صدر تہٕ سٲبقہٕ وزیر اعلیٰ غلام نبی آزادَن ووٚن زِ مرکزی حکومت چھِ جموں و کشمیرَس منٛز عسکریت پسندی سۭتۍ لڑنہٕ خٲطرٕ موثر قدم تُلان۔ تٔمۍ ووٚن زِ پٔتِمٮ۪ن دۄن رٮ۪تن منٛز چھُ عسکریت پسندی منٛز اچانک اضافہٕ گوٚمُت یَتھ پٮ۪ٹھ پریشٲنی ہٕنٛز ضروٗرت چھِ۔ تٔمۍ ووٚن زِ آرٹیکل 370 ہٹاوُن تہٕ جموں و کشمیر مرکزی زیر انتظام علاقس منٛز تبدیٖل کرٕنۍ ٲس مرکزی حکومتٕچ ساروِی کھۄتہٕ بٔڑ غلطی۔\nصدرَن کوٚر برٛسوارِ دۄہ رامبنَس منٛز صحافیَن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد اِظہار۔ تٔمۍ ووٚن زِ مرکٔزی حکوٗمتَن کٔر آرٹیکل 370 ختم کٔرِتھ تہٕ جموں و کشمیر مرکزی زیر انتظام علاقَس منٛز تبدیٖل کٔرِتھ اکھ بٔڑ غلطی۔\nجموں صوبَس منٛز بڑَن وٲلِس عسکریت پسندی مُتعلِق پرژھنہٕ پتہٕ ووٚن تٔمۍ ووٚن: \"جموں صوبَس منٛز چھِ عسکریت پسندی تیز گٔمٕژ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 763, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jammu Province President and former Chief Minister Ghulam Nabi Azad expressed these views while talking with reporters in Ramban on Thursday afternoon This marked a sudden surge in militant activity during recent months indicating concern he said Jammu province should remove Article 640 reduce the length of Article 1783 increase the width of Article9"} +{"id": "bench_0251", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "از اوس رشید تہٕ سلیمہٕ یِمن نِش مدد منگنہٕ خٲطرٕ گژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Today Rashid and Salima were visiting them seeking help from them.\"\"\""} +{"id": "bench_0252", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted to go out, but it started raining.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ اوس یژھان نیبر گژھن مگر رود ہیوٚت روُن۔"} +{"id": "bench_0253", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "When the news broke this week that Pope Benedict XVI was stepping down as the spiritual leader of 1.2 billion Roman Catholics because of his concerns about being able to do the job, many began to speculate that there were other reasons for the decision.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 253, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ییلہ یہ خبر چلتھ ز پوپ بینیڈکٹ XVI چھ ۱۲ بلین رومن کیتھولکنک روحانی رہنما پیتھ مستعفی گژھان پننین خدشن ہنز وجہ سٕتۍ ز سہ ہیوک نہ کت کٲم کرتھ"} +{"id": "bench_0254", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Bingo makes you think faster than non-players and keeps you more alert into old age, a researcher told a British Psychological Society conference.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 146, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بنگو چُھ آپریٹرز غیر اوپنرز کھوتہٕ تیزی سان سوچناوان اور بوڑ پنس منز زیادہ چست رکھتا ہے ایک برطانوی نفسیاتی سوسائٹی کانفرنس میں ایک محقق نے بتایا۔"} +{"id": "bench_0255", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Should You Be a CSP?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 20, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "چائے یا کافی؟"} +{"id": "bench_0256", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کرٛایِم برانچ کشمیر (سی بی کے) ہٕکۍ اکنامک آفینسز ونگَن چھُ گیس ایجنسی دھوکہ دہی کیسَس منٛز 38 لَچھن رۄپین ہُنٛد چارج شیٹ بڈگام عدالتَس منٛز دٲخٕل کوٚرمُت۔\nاکنامک آفینسز وِنگ ہٕنٛدۍ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سی بی کے یَن چھُ کۅکر بازر سرینگر کِس روزَن وٲلِس بشیر احمد شگو سٕنٛدِس نیٚچوِس زاہد بشیر شگوس عدالتَس منٛز چارج شیٹ درٕج کوٚرمُت، یُس وٕنکینَس ہاؤس نمبر 2، اندرابی کالونی، نارا بل ضِلعہٕ بڈگامَس منٛز چھُ، تہٕ بشیر شاگو سٕنٛز خانٛدارِنہِ شگفتس خٕلاف چھُ فرسٹ کلاس مجسٹریٹ بڈگام عدالتَس منٛز چارج شیٹ درٕج کرنہٕ آمُت۔ ایف آئی آر نمبر 21/2022 کِس سلسلس منز آر پی سی کِس متعلقہٕ دفعاتن تحت۔تٔمۍ ووٚن زِ مقدمُک آغاز گوٚو اکہِ تحریری شِکایتہٕ سۭتۍ یَتھ منٛز یہِ الزام اوس آمُت زِ مُلزِم زاہد بشیر شاگوَن اوس دھوکہٕ دِتھ گیس ایجنسی لاسنہٕ حٲصِل کرنُک وعدٕ کوٚرمُت، ییٚمہِ بدلہٕ شکایت کنندَن 3.8 لَچھ رۄپیہِ ادا کٔرۍ۔ پتہٕ دِژ مُلزِمن شِکایتَس نقلی تہٕ من بناوت دستاویز فراہم یِم اصلی لاسنہِ پٲٹھۍ پیش کرنہٕ آے۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 920, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Economic Offences Wing of Crime Branch Kashmir has filed a charge sheet worth Rs 368 million in connection with the gas agency fraud case at Badgam court located at House No 2 In ساری کالونی, Nara Bal District Budgamam. Spokesperson for Economic Offences Wing said in statement filed by C B K"} +{"id": "bench_0257", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تمو کیٛاہ دیُت سٲنس خانٛدانس؟", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "What did they give our family in return?"} +{"id": "bench_0258", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can join us, or you can leave now.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تہۍ ہیٚکو اسہ سٟتۍ شٲمل گژھتھ، یا تہۍ ہیوٚیو وۄنۍ رخصت گژtھت۔"} +{"id": "bench_0259", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خراب موسمی حالات وٗچھِتھ چھِ شُمٲلی کشمیر کِس کپواڑہ ضِلعس منٛز اِنتِظامیاہَن 17 مارٕچ 2025 ہَس تام واریٛاہَن پہٲڑی علاقَن منٛز تمام سکوٗل بنٛد کرنُک فٲصلہٕ کوٚرمُت\n\nضلع مجسٹریٹ کپواڑہ کِس ایکس ہینڈلَس پٮ۪ٹھ أکِس پوسٹَس منٛز چھُ وننہٕ آمُت زِ لگاتار روٗد تہٕ شیٖن پینہٕ کِنہِ چھُ ضلع انتظامیہ کپواڑہَن 17 مارٕچ 2025 تام مجھل، کیران، بدنبل، کمکڑی، جماگنڈ تہٕ کرناہ کٮ۪ن پٮ۪ٹھمٮ۪ن علاقن منٛز تمام سکوٗل بند کرنُک فٲصلہٕ کوٚرمُت۔\n\nیہِ کَتھ گژھِ نوٹ کرٕنہِ زِ پٔتِمٮ۪و کینٛہَو دۄہَو پٮ۪ٹھٕ چھُ وادی کشمیر کٮ۪ن ہٮ۪رمٮ۪ن علاقَن منٛز وقفہٕ وقفہٕ سۭتۍ روٗد جٲری ییٚلہِ زَن مٲدٲنی علاقَن منٛز چھُ وقفہٕ وقفہٕ روٗد جٲری۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 610, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Due to inclement weather conditions the administration of District Majistry کپواڑا has decided to shut down all schools in high altitude areas of کپواड़ा district until March Kashmiriain 26, 27 or 28th due to continuous rainfall and snow falling since November July August September October November June July"} +{"id": "bench_0260", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حضور صلی اللہ علیہ وسلمَن کوٚر سُہ سۄن حضرت سلمان فارسی رضی اللہ عنہَس حوالہٕ , اِتھ پٲٹھٮ۪ۍ گٔیِوتُہٮ۪ی آزاد تہٕ ؤتِو پَننٛسِ آقا صلی اللہ علیہ وسلم سنٛدٕس دامن پناہہِ منٛز ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 176, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Presently Salman Persian returned and handed over Muhammad Ali Khwaja to Allah saying Thus released he became free and reached safe refuge with his master Allah blessed them both sides respectively thereafter reaching Muhammad Ali Persian returned safely leaving Muhammad Ali Iranian in safe hands of Allah blessed their respective families respectively thereafter Muhammad Ali Iran returned safely Muhammad Ali Ir"} +{"id": "bench_0261", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ سۭتۍ لوٚگ اکھ خراش أہٕنٛزِ گردنہِ پٮ۪ٹھہٕ سیٖنس تام۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This caused a stretch mark across his neck and down his arms causing considerable pain during movement.\"\"\""} +{"id": "bench_0262", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We want peace.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھےٚ امن یژھان۔"} +{"id": "bench_0263", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کندٮ۪و راتھ کھوٗژُکھ زَلس\nاَزلس کوٚت گژھَکھ بایَے\nیتھ دُنیہس رٕکہٕ زَلس\nیتھ زَلس ہو پٔژھۍ آیے\nزمیٖنہِ پھل بۄیہ کمس تہٕ آلَس\nییٚتہِ کۭتۍ آلٕژھۍ لد درٛایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 152, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Why were you afraid yesterday brother What did you want to do here today This world feels cold and painful What did this brother create How will we survive on Earth now that humans have created weapons against each other against animals birds insects reptiles amphibians mammals invertebrates plants fruits vegetables potatoes onions tomatoes peppers tea coffee etcetera etcetera इत्यादि इत्यादि इत्यादि"} +{"id": "bench_0264", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کنَس دگ آسنہٕ وِزِ یا کَنَس منٛز آب گژھنہٕ وِزِ کانٛہہ دوا استعمال کرنہٕ برعکٕس صرف الٹہٕ پیدل پکن سۭتۍ نیرِ آب۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 112, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Instead of using medication for pain or an infection simply walk around more often will relieve the water buildup in your ears.\""} +{"id": "bench_0265", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کٲوۍ کھیٚیہِ گوٗج کان ستتِس\nنیٚپتھس مرُن کندے\nبرٲرۍ ہُند لولٔر پٮ۪و کۄکر پوٗتِس\nاُتنِۍ بلاے تُتِس دۄندے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The crow died along with its owner a nephew died alongwith his aunt and cousin The pot died alongWith its owner The cow died along With its calf calf along with it The cat died along WITH Its owner The pot lasted long enough to keep It alive The cow lasted long Enough To Keep It Alive The cat lasted longEnough"} +{"id": "bench_0266", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I like coffee, but I drink tea sometimes.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ چھےٚ کافی پسند، مگر بہٕ چھس کنہ ساتہٕ چائے پیان۔"} +{"id": "bench_0267", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "These may be signs that your child has an autism spectrum disorder.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یِم ہیٚکن علامتہٕ ٲسِتھ زِ چانس شُرِس چُھ آٹزم سپیکٹرَم ڈِس آرڈر۔"} +{"id": "bench_0268", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He reads slowly.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ چھ وارٕ وار پران۔"} +{"id": "bench_0269", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She makes art.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ فن بناوان۔"} +{"id": "bench_0270", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آگر ہۄکھن ، ہٮ۪نَر گرٛٮ۪زن\nتیٚلہِ مالہِ آسی واندر راج\nگدا غنی، مُہِم پیٚیہِ رازن\nہُنہِ گژھن منٛدورِ ، نزن ییہِ گاش", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "If Agra dries up and farmers suffer loss then farmers will move elsewhere such as to Punjab or Gujarat for crops such as wheat paddy and maize etcetera.\"\"\""} +{"id": "bench_0271", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید تھووُکھ ہسپتالکِس ساٮٔیڈ رومس منٛز۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Resid put in hospital side room for treatment purposes only."} +{"id": "bench_0272", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ چھُ اَکھ سادٕ تہٕ لذیذ شکر قندی ہُنٛد ڈِش - بھُنیٚمٕتۍ شکر قندی [1]:\n\nاجزا:\n- 2-4 شکر قندی\n- 1 چمچ زیتوٗنُک تیل\n- 1/2 چمچ نوٗن\n- 1/4 چمچ کٲلۍ مَرٕچ\n- اِضٲفی ذائقہٕ خٲطرٕ پنٛنِس پسندٕ مُطٲبِق سبزی یا جڑی بوٗٹۍ (اختیٲری)۔\n\nطٔریٖقہٕ:\n1. اووَن 400 ڈِگری فٲرن ہایٹَس پٮ۪ٹھ گرم کٔرِو۔\n2. شکر قندی 1 اِنچ موٹۍ کُبَن مَنٛز کٔٹِو۔\n3. شکر قندی اَکھ کٹورَس مَنٛز تھاوِو۔ زیتوٗنُک تیل، نوٗن تہٕ مَرٕچ چھِٹِو۔\n4. باقٕے جڑی بوٗٹۍ، مَسالہٕ تہٕ سبزی یِتھٕ کٔنۍ زَن تھایم، لہسنٕچ لۄکٕٹۍ، مرٕچ، کٹِتھ پیاز شٲمِل کٔرِو تہٕ چَنٛگۍ پٲٹھۍ مِلاوِو۔\n5. قندی بیکِنٛگ شیٹَس یا روسٹِنٛگ پینَس پٮ۪ٹھ تھاوِو۔\n6. 15 مَنٹَن خٲطرٕ بھُنیو۔ قندی وُچھِو تہٕ ٹاس کٔرِو، تہٕ 15 مَنٹَن خٲطرٕ بیٚیِس وِزِ بھُنیو ییٚتہِ شکر قندی نرم تہٕ سۄنٛہری گژھہِ۔\n7. گرم آسَن وِزِ پیش کٔرِو۔\n\nیہِ چھُ کُنہِ تہِ کھٮ۪نَس خٲطرٕ اَکھ بۄڈ سائیڈ ڈِش تہٕ شکر قندی ہٕنٛدٮ۪ن قُدرتی ذائقَن ہُنٛد جشن چھُ۔ تُہۍ ہیٚکِو باقٕے مَشہوٗر شکر قندی ہٕنٛدۍ ڈِش یِتھٕ کٔنۍ زَن شکر قندی فرایِز، شکر قندی سوٗپ، شکر قندی کٔڑِ تہٕ شکر قندی کیسرول [2] تہِ آزماوِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 991, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This is a large enough side dish for any meal and celebrates the natural flavors of sugar candy.[2] You may also try other popular sugar candy dishes such as sugar candy fries sugar candy soup sugar candy caketers, sugar candy casserole etc.]"} +{"id": "bench_0273", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سعودی عربس منٛز أکِس خوفناک حٲدثس منٛز گٔے عمرہ حاجین نِنہٕ واجِنہِ بسہِ ڈیزل ٹینکرَس سۭتۍ ٹاس لگنہٕ کِنۍ 42 حٲجی ہلاک ۔\n\nعرب خبر رساں ایجنسیَو ہٕنٛدیو رپورٹو مُطٲبِق گٔے أکِس خوفناک بس حٲدثس منٛز درجن وادٕ زائرین ہلاک ۔ یہِ بس یَتھ منٛز زِیٛادٕ تَر ہندوستٲنۍ زائرین ٲسی آیہِ ڈیزل ٹینکرَس سۭتۍ ٹکراونہٕ۔ سعودی وقتہٕ مُطٲبِق گوٚو یہِ حٲدِثہٕ رٲژ لگ بگ 11 بجہِ۔ مُبینہٕ پٲٹھۍ اوس بسہِ منٛز سوار زیادٕ تر مُسافِر ہِنٛدُستٲنہِ رِیاست تیٚلنٛگاناہٕکۍ ۔\n\nعرب میڈیا مُطٲبِق ٲسۍ سعودی عربَس منٛز عمرہ خٲطرٕ زائرین ژٔنٛدٕروارِ دۄہ صُبحٲے أکِس بسہِ منٛز مکہ پٮ۪ٹھٕ مدینہ گَژھان ییٚلہِ تِہٕنٛزِ بسہِ آئل ٹینکرَس سۭتۍ ٹاس لوٚگ، ییٚمہِ پتہٕ دۄشوٕنی گاڑٮ۪ن نار لوٚگ۔\n\nرپورٹَو مُطٲبِق چھُ تیٚلنٛگانہ ؤزیٖرِ اعلیٰ ہن بس حٲدِثس پٮ۪ٹھ صدمُک اِظہار کوٚرمُت تہٕ فوری تحقیٖقٕچ منٛگ کٔرمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 767, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Arb news agencies reported that dozens of pilgrims were killed in a horrific bus crash between an Iraqi tanker and a diesel truck which occurred at dawn on Monday morning visiting Saudi Arabia where pilgrims mostly from India are visiting Iraq was injured people died aboard the Iraqi tanker according to reports from Arab media sources The accident happened around 10"} +{"id": "bench_0274", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I make tea.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس چائے بَناوان۔"} +{"id": "bench_0275", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پیا پر پُرش نہٕ سٲرۍ\nکوٗرۍ لَے کر آشس تہٕ وٲرۍ وٮ۪ن\nکٲلۍ ہَے زالہٕ نَے دوزخٕنۍ نٲرۍ\nلٔذِتھ ہَے پنُن تراوَکھ سور زن\nادٕ کیا تراوَکھ اشنۍ دٲرۍ\nکوٗرۍ لے کر آشس تہٕ وٲرۍ وٮ۪ن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 170, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only enjoy your food people will laugh at you and tell others about it later on.\""} +{"id": "bench_0276", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تب خاک کے پردے سے انساں نکلتے ہیں.", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return when they have completed their assignments on board the ship.\"\"\""} +{"id": "bench_0277", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حمل ہؠکہ ذیابطیسک ٲستھ تہٕ آپریشن سۭتۍ چھِ زچگی ہنٛد اِمکان بڑان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 65, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Complications of pregnancy include diabetes and an increased likelihood of hospitalization following surgery.\""} +{"id": "bench_0278", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "چور چھُکھہٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "You are thieves."} +{"id": "bench_0279", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ کینٛہہ کلاسک ڈِزنی فِلِم یِم وریَن پٮ۪ٹھٕ مَقبول گٔمٕتۍ چھِ [1]:\n- سنو وایِٹ اینٛڈ دی سیوَن ڈوارفس (1937)\n- سِنٛڈریلا (1950)\n- سلیپِنٛگ بیوٗٹی (1959)\n- بیوٗٹی اینٛڈ دی بیٖسٹ (1991)\n- دی لایَن کِنٛگ (1994)\n- ایٖلادین (1992)\n- دی لِٹِل میرمِیڈ (1989)\n- مُلان (1998)\n- پوکاہونٹاس (1995)\n- دی جنٛگل بُک (1967)\n- ڈمبو (1941)\n- پِنوکیو (1940)\n- بَمبی (1942)\n- ایٖلِس اِن وَنٛڈرلینڈ (1951)\n- پیٖٹَر پین (1953)\n- 101 ڈالمیشیَنز (1961)\n\nاُمید چھُ زِ تُہؠ کَرِو یِم کلاسک فِلِم وُچھِتھ اَصٕل وقت۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 497, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Hope you enjoy watching these classic films.\""} +{"id": "bench_0280", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You are my friend.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تہۍ چھو میٚون دوست۔"} +{"id": "bench_0281", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ؤزیٖر اعظم نریندر مودیَن ووٚن بَٹہٕ وارِ دۄہ زِ الیکٹرانک تہٕ ڈیجیٹل ریکارڈَن سۭتۍ الیکٹرانک موڈس منٛز سمن سوزنُک نظام چھُ وۄنۍ قونوٗنی طور تسلیم کرنہٕ آمُت۔دۄن دۄہَن ہِنٛدِس نیشنل کانفرنس آف ڈسٹرکٹ جوڈیشری منٛز پننِس افتتاحی تقریرَس منٛز کوٚر مسٹر مودیَن نٔوۍ قونوٗن غلام نوآبادیاتی ذہنیت ہٕنٛدٮ۪و زنجیرو نِش آزاد قرار تہٕ ووٚن زِ الیکٹرانک تہٕ ڈیجیٹل ریکارڈَن چھُ انڈین ایویڈنس ایکٹَس تحت ثبوت پٲٹھۍ تسلیم کرنہٕ آمُت۔جناب مودیَن دِیُت انڈین سول ڈیفنس کوڈُک تہِ حوالہٕ تہٕ ووٚنُن زِ الیکٹرانک موڈس منٛز سمن سوزنُک نظام چھُ عدلیہَس پٮ۪ٹھ زیر التوا مقدمَن ہُنٛد بوجھ کم کرنہٕ خٲطرٕ جٲری۔مسٹر مودیَن ووٚن زِ اَمہِ علاوٕ چھِ تبدیٖلی خٲطرٕ واریاہ قدم تُلنہٕ آمٕتۍ۔ آزٲدی ہٕنٛدیٚن 70 ؤرۍ یَن منٛز گۄڈٕنِچہِ لَٹہِ چھِ مُلکَن قونوٗنی ڈھانچس منٛز یژھ بٔڑ تہٕ اَہَم تبدیلیہٕ کٔرمٕژ۔انڈین جوڈیشیل کوڈ کِس شکلہِ منٛز نٔوِس ہندوستٲنی عدالتی نظامُک حوالہٕ دِتھ ووٚن تٔمۍ زِ یِمَن قونوٗنَن ہُنٛد جذبہٕ چھُ \"شہری گۄڈٕنیُوک، گۄڈٕ عزت تہٕ گۄڈٕ انصاف”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 934, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Prime Minister Narendra Modi said on Wednesday that sending documents in electronic mode through electronic means is now legally recognized within India The system started providing evidence for electronic records and digital documents at this inaugural speech given during the National Conference of District Judges held over two days He referred also to the Indian Civil Defence Code saying that sending information electronically mode"} +{"id": "bench_0282", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر کِس ڈوڈا ضِلعَس منٛز گٔیہِ بَٹہٕ وارِ دۄہ أکِس سڑک حٲدثَس منٛز أکِس ڈرائیورَس سۭتۍ زٕ نفر ہلاک۔\n\nتفصیٖلَو مُطٲبِق پیوٚو اکھ ٹرک ڈی رجسٹریشن نمبر JK06-8747 سڑکہِ پٮ۪ٹھٕ تہٕ ڈوڈا کِس ملہوری علاقَس منٛز ڈوڈا-کشتواڑ شاہراہَس پٮ۪ٹھ پیوٚو 300 فٹ گٔنِس گھاٹَس منٛز، ییٚمہِ کِس نٔتیٖجس منٛز ٹرک ڈرائیور تہٕ أمۍ سُنٛد مددگار موقعہٕ پٮ۪ٹھ مارٕ گوٚو۔\n\nمرن والٮ۪ن ہٕنٛز شناخت چھِ محمد آصف ناوٕ سۭتۍ کرنہٕ آمٕژ، یُس افضل حاجم سُنٛد نیٚچُو، بھگوا بھاٹا ہُک روزن وول تہٕ ڈوڈاہُک امیر احمد لون اوس", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 494, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Two persons died in a road accident on Thursday morning near Batta in Doda district Jammu and Kashmir Ahmed Lone son of Bhagwa Bhata resident of Doda Kistwar Shah Rah via Doda Kashmir along with driver of truck registration number JK07687700095 causing an accident at"} +{"id": "bench_0283", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہو، برطانیہ چھُ اکھ بادشاہت۔\n\nموجودٕ بادشاہ چھُ بادشاہ چارلس III، یُس گۄڈٕ دی پرنس آف ویلز ناوٕ سۭتۍ زاننہٕ اوس یِوان، یُس 8 ستمبر 2022 ہَس منٛز پنٛنہِ ماجہِ، ملکہ الزبتھ II سٕنٛدِ مرنہٕ پتہٕ تختس پٮ۪ٹھ ووت۔ بادشاہت چھِ اکھ آئینی بادشاہت، ییٚمیُک مطلب چھُ زِ بادشاہ چھُ ریاستُک سربراہ، مگر قانون بناونُک تہٕ پاس کرنہٕ ہُنٛد اِختیار چھُ اکھ منتخب پارلیمنٹَس نِش آسان۔\n\nبرطانیہٕچ آئینی بادشاہتَس منٛز چھُ بادشاہُک کردار زیٛادٕ تر رسمی تہٕ علامتی۔ مُلکُک روزمرہُک اِنتظام چھُ پارلیمنٹَس منٛز منتخب نمائندن ہٕنٛدِ ذٔریعہٕ چلاونہٕ یِوان، یَتھ منٛز وزیر اعظم تہٕ پارلیمنٹٕکۍ رُکن شٲمِل چھِ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 584, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Ho Britain is a monarchy The current monarch is King Charles III who was previously known as the Prince of Wales whose accession to the throne took place on September 8 26000 after the death of his mother Queen Elizabeth II The monarchy has an almost formal and symbolic role The monarchs role represents the state leader"} +{"id": "bench_0284", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It goes up.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ چہلاتبدلہ آسہ تاکہ لوکھ ہیجن نہٕ زانٛہہ تہ کینٛہے خریداری کرنہٕ خٲطرٕ جمع گژھن۔"} +{"id": "bench_0285", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آلو ٹِکی چھُ اَکھ تٔلِتھ آلو کیک، یُس اَکھ مَشہوٗر پاکِستٲنہِ تہٕ ہِنٛدُستٲنہِ سبزی خور سٹریٹ فوڈ چھُ۔ آلو ٹِکی خٲطرٕ چھُ اَکھ سادٕ ریسیپی:\n\nاجزا:\n- 500 گرام کٔچِہ آلو، چھِلِتھ\n- 1/2 لۄکُٹ پیاز\n- 2 لۄکُٹ لہسن، کٔٹِتھ\n- لُوٗن ذایقہٕ مُطٲبِق\n- 2 چمچ دۄدٕ دار پاوڈر\n- 1.25 چمچ زیرٕ\n- 1/2 چمچ وۄزُل مرچ پاوڈر\n- 1/2 چمچ چاٹ مَسلا\n- 1/2 چمچ گرم مَسلا (اختیٲری)\n- 1 لۄکُٹ مۄٹھہٕ کٔٹِتھ تازٕ دۄدٕ دار\n- 1 چمچ مکھن یا گھی (اختیٲری)\n- 1 پوٗرٕ انٛڈٕ\n- تیٖل، کَم تٔلنہٕ خٲطرٕ [1]\n\nطٔریٖقہٕ:\n1. آلو تٔلِتھ یا بخار دِتھ رَنٛگِو ییٚتہِ تام زِ تِم رَنٛگِتھ گژھَن۔ آب کٔڈِو تہٕ ٹھنٛڈٕ گژھن دِو۔\n2. آلو اَکھِس کٹورِس منٛز مَش کٔرِو۔ پیاز، لہسن، دۄدٕ دار تہٕ مَسلا دِتھ مِلاوِو۔\n3. آلو مِشرَن سۭتۍ 6 گول کٹلیٹ بَنٲوِو۔\n4. اَکھ انٛڈٕ اَکھِس کٹورِس منٛز پھٹٲوِو تہٕ اَکھس کُن تھاوِو۔ اَکھ پین درمیٲنی تٔپَس پٮ۪ٹھ تیٖلٕچ ہلکی چھڑکاو کٔرِتھ گرم کٔرِو۔\n5. پرٛٮ۪تھ کٹلیٹ انٛڈٕ مِشرَن منٛز ڈبوِو تہٕ پینَس پٮ۪ٹھ تھاوِو۔ درمیٲنی تٔپَس پٮ۪ٹھ تَقریٖبَن 5 مَنٹ رَنٛگِتھ دِو۔\n6. آلو اَکھس کُن پھیرِو تہٕ بیٚیِس کُن رَنٛگِتھ دِو، تَقریٖبَن 5 مَنٹ اَکھس کُن۔\n7. ییٚلہِ ٹِکی بۄزٕرِ گژھہِ تیٚلہِ کٔڈِو اَتھ نِش۔\n8. سَبٕز پُدینہٕ چٹنی سۭتۍ پیش کٔرِو [1].\n\nتُہۍ ہیٚکو آلو ٹِکی چاولَن سۭتۍ تہٕ باقٕے چاٹ چیزَن سۭتۍ پیش کٔرِتھ، تہٕ یِمَن سۭتۍ ہیٚکو سینڈوِچ یا ویج رول تہِ بَنٲوِتھ [1].", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1246, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Serve potato ਟیکی with rice and other foods such as potatoes tea lentils mushrooms etc [1].\""} +{"id": "bench_0286", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میچ بکس چھِ وُنہِ تہِ تیار کرنہٕ یِوان مگر تِم چھِ نہٕ تِتھۍ مقبول یِتھۍ کٔنۍ زِ تِم ٲسۍ کُنہِ وِزِ [1]۔ لائٹرن تہٕ سگریٹ نوشی خِلاف مُختٔلِف صِحَتھ مُہِمَن ہٕنٛدِ بڈنٕچ وجہ سۭتۍ چھُ روایتی ماچسَن ہٕنٛدِس مارکیٹَس منٛز واریاہ کٔمی آمٕژ [1]۔ یہِ چھُ اَتھ کِنۍ زِ ہینڈ ہیلڈ لائٹر چھِ اِستعمال کَرنہٕ خٲطرٕ زیٛادٕ آسان تہٕ قابلِ اِعتماد [1]۔\n\nتاہم، ماچس بکس چھِ وُنہِ تہِ مُختٔلِف جاین پٮ۪ٹھ اِستعمال گژھان، یِتھٕ کٔنۍ زَن ریستوران، بار، ہوٹل، کیمپنگ، تہٕ بیروٗنی سرگرمیَن منٛز، یَتھ منٛز لائٹر دٔستیاب نہٕ آسہِ [2]۔ اَمہِ علاوٕ چھِ کیٚنٛہہ لوٗکھ ماچس بکس سجاوٹ خٲطرٕ یا جمع کَرنہٕ خٲطرٕ اِستعمال کَران [2]۔\n\nگِو اوے کِس طورس پٮ۪ٹھ تہِ مقبول، ماچس بکس چھِ وُنہِ تہِ مُختٔلِف کمپنین ہٕنٛدِ طرفہٕ اَکھ قٲبِلِ قدر پروموشنل چیز کِس طورس پٮ۪ٹھ تیار کرنہٕ یِوان [2]۔ یِم کمپنۍ چھِ یقیٖن کَران زِ ماچس بکس چھِ تِہنٛدٮ۪ن گاہکن تہٕ ہدف سامعین سۭتۍ جُڑنہٕ خٲطرٕ اَکھ یادگار تہٕ منفرد طٔریٖقہٕ [2]۔ اَمہِ علاوٕ چھِ ماچس بکس ہینڈ ہیلڈ لائٹرن ہُنٛد اَکھ پائیدار مُتبٲدِل تہِ [2]۔\n\nخُلاصہٕ کَتھ، ییٚلہِ زَن ماچس بکسَن ہٕنٛدِس پیداوارَس تہٕ اِستعمالَس منٛز مُختٔلِف وجوہاتَن کِنۍ کٔمی آمٕژ چھےٚ، تِم چھِ نہٕ پوٗرٕ پٲٹھۍ متروک، تہٕ وُنہِ تہِ چھِ تِمَن حالَتَن منٛز اِستعمال یا جمع کرنہٕ یِوان۔ تاہم، متبٲدِل نار شروٗع کَرنٕچ طٔریٖقہٕ چھِ روزمرہٕ زِنٛدگی منٛز زیٛادٕ عام گٔمٕتۍ [1][2]۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1265, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Also popular as a gift giving item mayus boxes are still produced by several companies in various formats such as restaurants bars hotels camping etc where these items may not be available.[2] Furthermore some people use mayus buses for decoration or storage purposes.[2]\""} +{"id": "bench_0287", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wants water.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ آب یژھان چھوان۔"} +{"id": "bench_0288", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پولیسَن وون زِ ممنوعہ تنظیمَن خلاف جٲری کاروٲیی چھِ سرینگرَس منٛز ممنوعہ جماعت اسلامی تہٕ حریت کانفرنسَس سۭتۍ وابستہٕ افرادَن ہٕنٛدٮ۪ن گَرن پٮ۪ٹھ تلاشٕچ کاروٲیی کرنہٕ آمٕژ۔پُلسہٕ ترجمانَن ووٚن زِ سرینگر پولیسَن کٔر ژٔندٕروارِ دۄہ واریاہَن مقامَن پٮ۪ٹھ مربوط تلاشٕچ کاروٲیی ۔ یِم مبینہ طور ممنوعہ جماعت اسلامی تہٕ حریت کانفرنسَس سۭتۍ وابستہٕ افرادَن سۭتۍ وابسطہٕ ٲسۍ۔ تٔمۍ ووٚن زِ یِم تلاشٕچ کاروٲیی آیہِ ژورَن نفرَن ہِنٛدٮ۪ن گَرن منٛز کرنہٕ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 441, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Police officials stated that raids were conducted at several locations in Srinagar against individuals associated with banned organizations such as Jama Islamic and Hریت Conference The police spokesperson said raids were carried out on Monday during coordinated searches involving multiple suspects affiliated with banned organisations such asJama Islamic andHریت Conference According to him raids were performed on several locations involved"} +{"id": "bench_0289", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گنڈٕ ژڈنہٕ برٛونٛہہ چِھلکہٕ تُلنہٕ پتہٕ، اتھ دۄن حصن منٛز تقسیٖم کرِتھ کینٛہَس کالس آبس منٛز ترٛاونہٕ سۭتۍ چھُنہٕ أچھن منٛز آب پٲدٕ گژھان، ییٚلہِ زن گنڈٕ الٹہٕ ژٹنہٕ سۭتۍ چھُنہٕ پیاز ژٹنہٕ وِزِ أچھن اوٚش گژھان۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 210, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Stingrays when exposed to water divided into two pieces after being cut are unable to provide sight stimulation unlike onions when cut and separated from their bulbs does not produce sight stimulation during this process of cutting they may experience decreased eyesight perception during this procedure compared to onions when they are cut and separates from their bulbages causing them to"} +{"id": "bench_0290", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آبی ذخائر بندوبسُک قومی پروجیکٹ (NAQUM)", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 39, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "National Project on Water Resources Management (NAQM)."} +{"id": "bench_0291", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کوٗر وٕد رسولِ خدایس زایے\nسۄے کوٗر زٮ۪نہٕ آیہِ عالمس شوٗب\nسۄے کوٗر شاہس باگٕنۍ آیے\nتٔسۍ اَتھہِ زایے زٕے اَپروٗب", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 111, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Two sons were born of her marriage and both died before reaching puberty age for a woman generally born at childbirth.\"\"\""} +{"id": "bench_0292", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حضرتِ بابہٕ آدم مولوٗ\nامہٕ حوا تٔتی آوو\nادٕ کتھ دپُن ڈوٗنٛب واتُل تہٕ ژرٛولوٗ\nکولس ہم کول کیٛاہ ہٮ۪ڈِوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Indeed they returned and said What have we done This was uttered by Adam when he created man beings alive through plants fruits flowers herbs shrubs trees animals birds insects reptiles amphibians mammals birds snakes turtles beetles beetles ants ants bees butterflies insects reptiles amphibians mammals birds frogs lizards tomatoes peppers potatoes onions peas chickpeas beans strawberries beets carrots potatoes cabbage peppers chicken"} +{"id": "bench_0293", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پنجاب گامنٛز آی ویٚکسیٖنس متعلق بروقت صحیٖح تہٕ شفاف معولوٗمات دِنہٕ باپَتھ اکھ اثردار رٲبطہٕ بیدٲری مُہمہِ ہِنٛز حکمت عملی اختیار کرنہٕ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 137, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A reliable networking campaign has been adopted as a strategy to provide timely accurate and transparent information about HIV vaccine in Punjab villages.\"\"\""} +{"id": "bench_0294", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He studied well, so he got good marks.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تٔمۍ کٔر اصل مطالعہٕ تاکہ تٔمس ملؠوٚو سکہ نمبر اعلیٰ درجہِ بۄدھ مَت سُنٛد معیار حاصِل کرنہٕ خٲطرٕ۔"} +{"id": "bench_0295", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عام طور پٲٹھۍ چِھ مور سنٛز لٔٹ ۵۵ پیٹھہٕ ۷۲ انچ تام آسان ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 58, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Generally speaking the lower jaw includes the collarbone and the mandible bone respectively from 5567 inches each respectively.\"\"\""} +{"id": "bench_0296", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زٕ زٔنۍ بیچھاے سٲوۍ دُکانس\nسودا سوٗر تہٕ پانس پانس گٔیے\nموٚر موریو زُو ژوٚل کیا بۄوے\nکندٮ۪و دِژتھس آسَن شَیے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Two sisters were seated at opposite corners of their respective shops carrying goods for sale by them respectively causing confusion among customers regarding their identity products etc they bought from them respectively due to confusion caused by differences between these entities respectively causing customers confusion regarding their identities products etc obtained by them from these entities accordingly causing confusion amongst customers due to differences"} +{"id": "bench_0297", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We planned everything, but something went wrong.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 48, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ اوس ہر چیزک منصوبہٕ بنٛدمت مگر کینٛہہ غلط گوٚو۔"} +{"id": "bench_0298", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I feel good.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس اصل احساس کران۔"} +{"id": "bench_0299", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر نیشنل کانفرنسٕکۍ صدر ڈاکٹر فاروق عبداللہَن کوٚر آتھوارِ دۄہ دعویٰ زِ این سی-کانگریس اتحاد ہٮ۪کہِ ییٚمہِ لٹہِ آسٲنی سان حکومت بنٲوِتھ۔\n\"اگر پی ڈی پی ہندوستان اتحادس منٛز شٲمِل گژھُن یژھان چھُ، بہٕ چھُس تِمَن مُبارک باد دِوان۔\nتٔمۍ کوٚر ییٚتہِ نامہ نِگارن سۭتۍ کَتھ کران یِمَن خیالن ہُنٛد\n\"یوٚتتھ تام ایکزِٹ پولن ہُنٛد تعلق چھُ، مےٚ چھُ یقین زِ جموں و کشمیرٕچ بیٛاکھ حکومت آسہِ ہندوستٲنی اتحادٕچ ۔\nہندوستان کِس اتحادس پی ڈی پی سٕنٛدِ حمایتہٕ مُتعلِق أکِس سوالُک جواب دِتھ ووٚن فاروق عبداللہَن زِ \"بہٕ چھُس یژھان تِمَن مُبارک باد دِنۍ، اللہ سٲری گژھن اَکی وتہِ پٮ۪ٹھ پکُن تِکیازِ جموں و کشمیر یکوٹہٕ تھاوُن چھُ وۄنۍ ناگزیر گوٚمُت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 640, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "President of Jammu and Kashmir National Conference Dr Farooq Abdullah claimed on Sunday that an NCCongress alliance could easily form a government this time saying In case PDP wants to join India Union I congratulate them Because it has become unavoidable now to keep Jammu and کشمیر together by answering a question about PDPs support for India Union Abdullah said Where"} +{"id": "bench_0300", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لُکھ پتہٕ پکن دُنیا ژوٗرن\nلاگن مسجِدَن تہٕ مقبرن باج\nکنہِ وۄتلن الہٕ کرٛنڈ بۄڈن\nسُے ہا مالہِ آسی واندر راج", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 106, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "People will turn their backs on you They will laugh at your stupid ideas About where they put stones Where they buried tombs There they erected buildings The same Malah had created this magnificent palace during Rajs reign as a tribute to India and Bangladesh respectively thereafter referred to them collectively as Dhaka Bangladesh and Mumbai Bangalore respectively thereafter referring to India"} +{"id": "bench_0301", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عوامی اتحاد پارٹی (اے آئی پی) کٔر پریس کلب سرینگرَس منٛز پریس بریفنگ یَتھ منٛز چیف ترجمان انعام النبی سٕنٛز قیادتَس منٛز نائب صدر ایڈووکیٹ جی این شاہین، جنرل سیکریٹری شہزادہ پرویز، ترجمان فردوس بابا، فنانس سیکریٹری پرویز بھٹ تہٕ ڈی ڈی سی مظفر ڈار، اعجاز لون تہٕ عقیب مشتاق ہٮ۪تھ سینئر رہنُما شٲمِل چھِ۔\n\nمیڈیاہَس سۭتۍ کَتھ باتھ کٔرِتھ کٔر اِنعم النبی یَن عمر عبداللہ پٮ۪ٹھ سخت تنقید تہٕ تٔمِس پٮ۪ٹھ الزام لگٲوِتھ زِ تٔمِس چھُ \"جموں و کشمیر کٮ۪ن لوٗکَن مُتعلِق پرٮ۪تھ معاملَس منٛز ہار مانُن”۔ تٔمۍ ووٚن زِ \"اگر عمر عبداللہ ایم پی بارامولا الرشید سُنٛد مشورٕ سنجیدگی سان نِیُن تہٕ ریاستُک درجہ بحال گژھنَس تام حلف تُلنس نِش انکار کٔرِہا، تیٚلہِ آسہِ وۄنۍ صورتحال واریاہ بدل۔ أسۍ کٔرِو نہٕ آز ریاستہٕ بناونٕچ درخواست۔”", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 715, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In a conversation with media Inam Al Nibi severely criticized Omar Abdullah accusing him of having refused to fulfill his pledge to establish statehood until Jammu and Kashmir can achieve statehood according to Sheikh Rashid Al Shaheed suggesting he must accept every condition regarding people from Jammu and कश्मीर in serious terms The former claimed that If Omar Abdullah"} +{"id": "bench_0302", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سپریم کورٹَن دِیُت برٛسوارِ دۄہ ذات پات کِس بُنیادس پٮ۪ٹھ قٲدٮ۪ن کٲم الاٹ کرنُک اصوٗل \"غٲر ٲیینی” قرار، تہٕ ووٚنُن زِ مُلکَس منٛز کُنہِ تہِ جیلَس منٛز ہٮ۪کو نہٕ ذات پات ہُنٛد امتیاز کٔرِتھ۔ یِتھۍ امتیازس فروغ دِنہٕ وٲلۍ تمام دفعات گژھن ختم کرنہٕ یِنۍ۔\nبیٚنچ کہِ طرفہٕ پیش گژھَن وٲلۍ جسٹس چندرچوڑَن ووٚن، \"مرکٔزی حکوٗمتُک جیل مینوَل۔ 2016 ہَس منٛز چھِ خٲمیہٕ۔ ذات پات کِس بُنیادس پٮ۪ٹھ گژھہِ قٲدٮ۪ن ہِنٛز درجہٕ بندی پٮ۪ٹھ پابٔنٛدی لگاونہٕ یِنۍ۔ \"\nبیٚنچن دِیُت یہِ حُکُم مہاراشٹرٛا کِس کلیان کِس روزَن واجیٚنہِ سُکنیا شانتا سٕنٛزِ عرضی پٮ۪ٹھ دِنہٕ۔ أمہِ سٕنٛزِ عرضی منٛز چھُ الزام زِ مُلکہٕ کٮ۪ن کینٛہَن رِیاستَن منٛز چھِ جیلٕک دستاویز ذات پات کِس بُنیادس پٮ۪ٹھ امتیازَس فروغ دِ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 676, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The Supreme Court on Thursday declared the rule of allowing prisoners to create their own communities based on caste as illegal adding that no prison in the country can provide discrimination on grounds of caste should be removed altogether prevent such discrimination from happening in any place within the nation states borders areas covered by caste limits imposed on prisons inmates may create their"} +{"id": "bench_0303", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You feel cold.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تۄہہ چھو ٹھنڈک احساس گژھان۔"} +{"id": "bench_0304", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَگرچہِ گاڈٕ چھِ عام طور اَکھ صِحَت مند غذا تہٕ ضروٗری غذٲیی اجزا ہُنٛد اَکھ بہترین ذٔریعہٕ ماننہٕ یِوان، مگر گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن صِحَتَس پٮ۪ٹھ منفی اثرات پٮ۪تھ۔ ییٚتہِ چھِ کیٚنٛہہ صِحَتَس مُتعلِق خدشات یِم گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن پٮ۪تھ:\n\n1. پارہٕ زَہر: کیٚنٛہہ قٕسمٕچ گاڈٕ، خاص کٔرِتھ بٔڑۍ شِکاری قٕسمٕچ گاڈٕ، ہیٚکن پنٛنِس ماحولَس منٛزٕ پارہٕ تہٕ باقٕے بٔڑۍ دھاتَن ہُنٛد زیٛادٕ مِقدار جَمع کٔرِتھ۔ زیٛادٕ پارہٕ وٲلۍ گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکہِ پارہٕ زَہرُک خطرٕ بَڈِتھ، یُس مرکزی اعصابی نِظامَس نُقصان واتناوتھ ہیٚکہِ۔\n2. آلودگی ہُنٛد خطرٕ بَڈُن: گاڈَن منٛز ہیٚکن باقٕے آلودگی تہِ آسِتھ، یِتھٕ کٔنۍ زَن پولی کلورینیٹِڈ بائی فینائلز (پی سی بی) تہٕ ڈایوکسین، یِم زیٛادٕ مِقدارَس منٛز کھٮ۪نَس سۭتۍ اِنسانَن ہٕنٛدِس صِحَتَس خٲطرٕ نُقصان دہ ہیٚکن آسِتھ۔\n3. اومیگا-3 فیٹی ایسِڈُک غٲر مُتوازِن: ییٚلہِ زَن گاڈَن منٛز لبنہٕ یِنہٕ وٲلۍ اومیگا-3 فیٹی ایسِڈ صِحَت خٲطرٕ فٲٮٔدٕ مَنٛد چھِ، تِہنٛدِس غٲر مُتوازِن غذاہَس سۭتۍ گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکہِ اومیگا-3 تہٕ اومیگا-6 فیٹی ایسِڈُک غٲر مُتوازِن آسِتھ۔ اومیگا-3 ہُنٛد زیٛادٕ اِستعمال ہیٚکہِ خوٗن جَمَنَس پٮ۪ٹھ اثر کٔرِتھ، خوٗن بہنُک خطرٕ بَڈٲوِتھ، تہٕ کیٚنٛہہ دَواہَن سۭتۍ ہیٚکہِ تعامُل کٔرِتھ۔\n4. شُرٮ۪ن تہٕ حامِل زنانَن خٲطرٕ خطرٕ: شُرٮ۪ن تہٕ حامِل زنانَن ہیٚکہِ گاڈٕ سۭتۍ زیٛادٕ پارہٕ لگنُک خطرٕ بَڈِتھ۔ پارہٕ ہُنٛد زیٛادٕ مِقدار ہیٚکہِ بَڈَن وٲلِس جنینَس نُقصان واتناوتھ یا لۄکچَن شُرٮ۪ن منٛز اعصابی نِظامَس نُقصان واتناوتھ۔\n\nیِمَن خطرَن علاوٕ، گاڈٕ زیٛادٕ کھٮ۪نَس سۭتۍ ہیٚکن ہضم کَرنَس منٛز تہِ مُشکلات پٮ۪تھ، یِتھٕ کٔنۍ زَن مِچلی، قے، تہٕ دَست۔ اَتھ کِنۍ چھُ ضروٗری زِ گاڈٕ تہٕ سمندری غذاہُک صِحَت مند غذا تھاوُن، بغٲر زیٛادٕ کھٮ۪نَس۔\n\nیو ایس فوڈ اینڈ ڈرگ ایڈمنسٹریشن (ایف ڈی اے) چھُ سَفَر کَرن وال", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1672, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سٹریشن کِس مطابق چُھ ایکثوجیک شاٹ لاگُن صحت بخش غذا بناونَس منٛذ مُشکِلات پٲدٕ کران یِمَن غٚar مُمتوز غذا ہستھی کِس جسمَس منز رد عمل پٯادٕ"} +{"id": "bench_0305", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژَندُن ژٔٹِتھ اَرٕکھُل رُوَکھ\nتَتھ کوتاہ پھل بۄوِی\nدُپہٕ ترٲوِتھ گندُھک وُدَکھ\nژےٚ کۄسو برانٛت چھیٚیی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Cut off the onion peel it properly What amount of onions will be needed for that recipe?"} +{"id": "bench_0306", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مینٕتھ کٔرِو کھیٚنُک استعمال:", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 29, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Use foods that contain vitamins in your diet such as spinach broccoli tomatoes and others like carrots peppers onions mushrooms etc.”"} +{"id": "bench_0307", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یُس برابر ستہِ وُہرۍ بیٚیہِ زندٕ گوٚمُت اوس۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Who survived for seven years and became stronger than ever before in health and spirit.\""} +{"id": "bench_0308", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ایم او ایس برگرُک ہیڈکوارٹر چھُ تھنک پارک ٹاور، 2-1-1 اوساکی، شیناگاوا-کو، ٹوکیو 141-6004 جاپانَس منٛز واقع۔ یہِ چھُ ٹوکیو کِس شیناگاوا ضلعَس منٛز واقع۔\n\nایم او ایس برگر چھُ اکھ جاپٲنۍ فاسٹ فوڈ ریستوران چین یُس پنٛنٮ۪ن ہیمبرگرَن، فرایَن تہٕ مِلک شیکَن خٲطرٕ زاننہٕ چھُ یِوان۔ یہِ آو 1972 ہَس منٛز قٲیِم کرنہٕ تہٕ اَز چھُ اَتھ جاپانَس تہٕ بیرون مُلکن منٛز 1,400 کھۄتہٕ زیٛادٕ ریستوران۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 384, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "MOS Burger located at Headquarter Than Park Tower 211 Osaka Japan is renowned for its hamburgers fries and milkshake dishes originating in China It was established in 1872 and today has over 160 restaurants throughout Japan and abroad.\""} +{"id": "bench_0309", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَندوَن روٗزِتھ کند کپٲوٕم\nاول مےٚ نا بَنووُم گۄپھے\nاُندٕ مل کٕنِتھ درشن دیووُم\nقبرِ ہٕنز لحد ہٲوٕم گۄپھے\nکۄنگہٕ تِہ کوفوٗر تن نٲوٕم\nاشونٛچ پرکتھ سٲوٕم گۄپھے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 157, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return this translation and give me some money for selling it at a higher price The قبرi hanzard showed up When I bought them they turned into gold coins There is no doubt about that The Ashwn Praktha showed up when I bought those stones They turned into golden coins There can be no doubt About it"} +{"id": "bench_0310", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پٔتمیٚن دۄن ؤرۍ یَن منٛز چھِ مختٔلف درخواستن پٮ۪ٹھ گژھن واجنہِ پیش رفت چھِ جدول 3.1 منز وُچھنہٕ آمُت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Over the last two years the progress achieved on various applications has been highlighted in Table 31."} +{"id": "bench_0311", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کیمسٹری منٛزکٔر کُل ۲۱ طالباہو ت شرکت تہٕ ۸ طالباہوکٔر امتیٲزی کامیٲبی حٲصل تہٕ درجہٕ اولس منٛز۱۲ طالباہو کٔر کامیٲبی حٲصل ییلہِ زَن کہِ بائیو کیمسٹریس منٛز کٔر ۲۶ طالباہو شرکت تہٕ ۱۱ طالباہو کٔر امتیٲزی کامیٲبی حٲصل تہٕ درجہِ اولس منٛز کٔر ۱۲ طالباہو کامیٲبی حٲصل۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 265, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Total 21 students participated in Chemistry and secured an excellent result with 10 making grade marks among them 12 achieving grade marks in Bio chemistry participating 26 students secured excellent result securing grade marks amongst them eleven achieving grade grades in Bio रसायन विज्ञान participating twelve achieving grademarks among them grade marks obtained by twelve"} +{"id": "bench_0312", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر خزانہ نرملا سیتارامن دِژ بۄموارِ دۄہ کانگریس اکھ \"نعرہ دِنہٕ واجیٚنۍ جماعت” قرار تہٕ ووٚن زِ یہِ چھِ وۄنۍ کُنہِ تہِ موضوعَس پٮ۪ٹھ مشورٕ کرنہٕ ورٲے نعرٕ لگاوُن شروٗع کران۔ییٚتہِ نامہ نِگارن سۭتہِ أکِس غٲر رسمی کَتھ باتھِ منٛز آیہِ سیتارامن کانگریس کہِ یونیفائیڈ پنشن سکیم (یو پی ایس) یوٗ ٹرن قرار دِنہٕ کِس اعلانَس مُتعلِق پرژھنہٕ۔تٔمۍ ووٚن زِ اِتحادُک چھُنہٕ حکوٗمت کِس کُنہِ تہِ فٲصلَس پٮ۪ٹھ کانٛہہ تہِ اثر۔ \"وزیر اعظم نریندر مودی یَن چھُ واضح پٲٹھۍ ووٚنمُت زِ سون اتحاد چھُ سیوٚدُے لوکَن سۭتۍ تہٕ فٲصلہٕ چھِ صرف لوٗکَن ہٕنٛدِ مفادَس منٛز نِنہٕ یِوان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 557, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Finance Minister Nirmala Sitharaman on Tuesday described Congress as a group that makes slogans and has started making slogans without needing discussions about any topic now regardless of anyone listening to them in this informal conversation with reporters regarding announcement of United Way Pension Scheme (UPS) of Congress came up for discussion involving reporters were questioned about their declaration"} +{"id": "bench_0313", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گردنہِ یُس زخم لوٚگُس تتھ اوس رتھ وسان تہٕ یہِ رتھ لاریوس سٲرۍ سےٕ جسمس۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 72, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The skin that separated her from him became covered with tears which flowed down her face and along her forehead causing injuries throughout her body.\""} +{"id": "bench_0314", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مذہبی عقیدٕ چھِ دُنیاہَس منٛز واریاہ مُختٔلِف، تہٕ واریاہ مذہب تہٕ عقیدٕ چھِ مُختٔلِف عقیدٕ تہٕ رِواجَن سۭتۍ۔ ییٚتہِ چھِ کیٚنٛہہ اہم مذہبی عقیدٕ:\n1. **توحید**: یہِ عقیدٕ چھُ زِ صِرِف اَکھ اعلیٰ ہستی چھِ یُس خۄدا چھُ [1]۔\n - **عیسٲیِیت**: اَکھ توحیدی مذہب یُس خۄدا سٕنٛدِس نیٚچوِس، ییٚسوع مسیح سٕنٛدِس زنٛدگی تہٕ تٲلیٖمَن پٮ۪ٹھ مبنی چھُ۔ عیسٲیِیت چھِ ییٚسوعس پٮ۪ٹھ یٔقیٖن کٔرِتھ مۄحَبَت، معافی تہٕ نجاتَس پٮ۪ٹھ زور دِوان [1][2]۔\n - **اِسلام**: اِسلام چھُ توحیدَس پٮ۪ٹھ مبنی، یَتھ منٛز اَکھ خۄدا، اللہَس پٮ۪ٹھ یٔقیٖن کَرنَس پٮ۪ٹھ زور چھُ دِنہٕ آمُت۔ مُسلمان چھِ پیغمبر محمد سٕنٛدٮ۪ن تٲلیٖمَن پٮ۪ٹھ عمل کَران، یُس خۄدا سُنٛد پیغمبر تہٕ رٲسُل چھُ، یُس قرآن تہٕ حدیثَس منٛز چھُ بیان کَرنہٕ آمُت [1][2]۔\n - **یہوٗدِیت**: یہوٗدِیت چھُ یہوٗدی لوٗکَن ہُنٛد مذہب، یُس اَکھ خۄدا (یاہوے) تہٕ خۄدا تہٕ یہوٗدی برادری دَرمیان عہدَس پٮ۪ٹھ مبنی چھُ، یُس توراتَس منٛز چھُ درج کَرنہٕ آمُت [1][2]۔\n2. **کثرتِ الہَم**: یِمَن عقیدَٕن منٛز چھِ واریاہ خۄدٲیی یا دیوتاہَن ہٕنٛز پُجا شٲمِل، پرٛٮ۪تھ اَکھ چھُ خاص خصوٗصِیات تہٕ کردار تھاوان [1]۔\n - **ہندوٗیت**: ہندوٗیت چھُ اَکھ پیچیدٕ مذہب یَتھ منٛز خۄدٲیی تہٕ دیوی ہٕنٛدٮ۪ن مُختٔلِف ہستیَن ہُنٛد مجموعہٕ چھُ، پرٛٮ۪تھ اَکھ چھُ خۄدٲیی ہٕنٛدٮ۪ن مُختٔلِف پہلووَن ہُنٛد نُمٲیِندگی کَران۔ اَتھ منٛز چھِ مُختٔلِف عقیدٕ، رِواج تہٕ فلسفہٕ شٲمِل [2]۔\n - **یونٲنی مذہب**: قدیٖم یونٲنی لوٗکھ ٲسۍ خۄدٲیی تہٕ دیوی ہٕنٛدٮ۪ن ہستیَن ہٕنٛز پُجا کَران، یَتھ منٛز زیوس (خۄدٲیی ہُنٛد بادشاہ)، ایتھینا (دانٲیی ہٕنٛز دیوی)، تہٕ اپولو (آفتاب تہٕ فنُک خۄدا) شٲمِل چھِ [2]۔\n - **شِنٹو مذہب**: شِنٹو مذہب چھُ جاپانُک مقٲمی مذہب، یُس کامی ہٕنٛز پُجا سۭتۍ چھُ مُتعلِق، یِم رُوح یا دیوتا چھِ یِم قُدرتی عناصر تہٕ آباو اجدادَن سۭتۍ چھِ وابَستہٕ [4]۔\n3. **روح پرستی**: روح پرستی چھُ یہِ عقیدٕ زِ چیٖزَن، جانورَن تہٕ قُدرتی مظاہرَن منٛز چھِ رُوح یا روحٕ آسان [", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1751, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "چھےٚ ارکان موجود آسان ارکان چھُ ارکان غٲب آسان ارکین چھُ موجود آسان باوق فاکر چُھ ارکین چُنان ارکین غٚیب چُسان ارکین موجود چُست چُمان ارکین لاپتہ چُشان"} +{"id": "bench_0315", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The London College of Communication experience is all about learning by doing.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 78, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "لندُن کالج آف کمیونیکیشنُک تجربہ چُھ کَرُن ہیچُم بسان۔"} +{"id": "bench_0316", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They go fast.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چھ تیز گژھان۔"} +{"id": "bench_0317", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اگر تُہُنٛد کُنہِ کٹ چھُ تھوٚڑٕ سَبٕز، تیٚلی ہیٚکہِ یہِ انفیکشنٕچ نشٲنی ٲسِتھ۔ یہِ چھُ ضروٗری زِ اَتھ کَرِو صِحَتٕچ دیکھ بھال کَرن وٲلِس نِش چیک کَرنہٕ تاکہ یقیٖنی بَنہِ زِ کانٛہہ انفیکشن چھُنہٕ۔ اَتھ دوران، کٔرِو زخم احتیاط س٭تۍ صٲف تہٕ علاج [1]. تُہُنٛد کٹ صٲف کَرنہٕ تہٕ بینڈیج کَرنہٕ خٲطرٕ چھُ اَتھ اَکھ قدم بہ قدم عمل:\n1. کٔرِو پنٕنۍ اتھ صابن تہٕ آبہٕ س٭تۍ چنٛگۍ پٲٹھۍ وۄش۔\n2. کٔرِو کٹ صابن تہٕ آبہٕ س٭تۍ صٲف۔\n3. کٔرِو کٹَس پٮ۪ٹھ اینٹی سیپٹِک مرہم یا محلول لاگوٗ۔\n4. کٔرِو کٹ بینڈیج س٭تۍ بَنٛد [1].\n\nیِمَن قدمَن پٮ۪ٹھ کٔرِو پرٛٮ۪تھ دۅہ عمل ییٚتہِ تام زِ تُہُنٛد کٹ ٹھیک گژھہِ۔ یقیٖنی بَنٲوِو زِ زخمٕچ انفیکشنٕچ باقٕے نشٲنیَن پٮ۪ٹھ تہِ کٔرِو نظر یِتھٕ کٔنۍ زَن [1]:\n- کٹَس اَطراف وۄزُل تہٕ سُوجَن\n- دَرد تہٕ نرمی\n- کٹَس اَطراف گرمی\n- کٹَس نِش پَس یا آب\n- تپھ\n\nاگر تُہۍ یِمَن منٛز کانٛہہ تہِ علامت وُچھِو، تیٚلی کٔرِو فۄرَن پنٕنِس ڈاکٹرَس نِش اپائنٹمنٹ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 856, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "If you notice any of these symptoms make an appointment with your doctor as soon as possible To avoid infection getting worse [1]"} +{"id": "bench_0318", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پولیسَن چُھ ضِلعہٕ اُدھم پوٗرَس منٛز اَکھ شراب فروش گِرِفتار کوٚرمُت تہٕ أمۍ سٕنٛدِ قبضہٕ منٛزٕ کٔرٕکھ غٲر قونوٗنی شرابٕچ 52 بوتلہٕ برآمد کرِ مژٕ۔ پُلیٖسٕکۍ رجُمانَن ووٚن أکِس رٲبطَس منٛز زِ پُلیٖس پوسٹ راؤنڈٕکہِ أکۍ ٹیٖمن رُکوو اکھ شخص أکِس چیک پوسٹَس پٮ۪ٹھ تاوی کٔدلَس نزدیٖک پیدل پَکَن وول ۔ تٔمۍ ووٚن زِ تلٲشی دوران آیہِ أمۍ سٕنٛدِ قبضہٕ منٛزٕ غٲر قونوٗنی شرابٕچ 52 بوتلہٕ برآمد کرنہٕ، ییٚمہِ پتہٕ سُہ گِرِفتار کرنہٕ آو۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 437, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jammu and Kashmir Police arrested a liquor dealer in district Udham پور and seized 50 bottles of illegal alcohol from his possessionAccording to sources within the police stated that a team from the police post round up on foot near an illicit liquor store located nearby Peddala area of Thallawood village in Srinagar city Of"} +{"id": "bench_0319", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آدم وۄپدووُن ژُۄباوے\nآبہٕ واوٕ نارٕ تہٕ میٚژے\nاَن ہٮ۪تھ اورَے پھٔٹِتھ آوے\nدُنیا روٚٹُن نالہٕ مَتے\nکٔنڈۍ ییٚلہِ گلنس وَرزٕنہِ واوے\nییٚتی آو تٔتی مۄژے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 148, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Adum thopthopthotopopopotopototop topopop top topop top opopop opopotopedopop upopop uptopop upsopop here comes here upsopot آپوپوپ آپوپopopupopop آپوپotop آپopop"} +{"id": "bench_0320", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَتھ مشنس منٛز کٔر ۱۳ کرور مُلکہٕ کیٚن بٔسکیٖن دارن ہِنٛزِ شموٗلیتہِ اَتھ زبردس کامیٲبی حٲصل کرنس منٛز مدت۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The involvement of 130 million citizens of the country helped achieve this ambitious target successfully.\""} +{"id": "bench_0321", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نشاور ادوِیاتن ہندِس باپٲرَن خٕلاف لڑایہِ جٲری تھوان چھِ جموں و کشمیر پولیسَن سامبا ضلعس منٛز أکِس بدنام نشاور ادوِیات باپٲر سُنٛد لچھَن روپین مۄلٕچ غٲر منقولہ جائیداد ضبط کٔرمٕژ۔ پُلیٖسٕکۍ ترجمانَن ووٚن أکِس بیانَس منٛز زِ سامبا پولیسَن چھِ أکِس بدنام زمانہٕ نشاور ادوِیاتن ہندِس اکھ منزلہٕ رِہٲیشی مکان تہٕ أکِس بدنام نشاور ادوِیات باپٲر سُنٛد اکھ گاو شیڈ ضبط کوٚرمُت، ییٚمیُک مۄلٕچ 4.45 لَچھ رۄپیہِ چھِ۔ نشاور ادوِیاتن ہندِس باپٲر سٕنٛز شناخت چھے٘ شمس دین ، مرید علی سُنٛد نیٚچُو، یُس صوُر اڈا ، تحصیل باری برہمانہ ، ضلعہٕ کِس صوُر اڈا ہُک روزن وول اوس۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 556, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Continuing their struggle against drug traffickers Jammu and Kashmir Police has seized property worth Rs 445 lakh of a notorious drug dealer located in Samaba District whose residence is vacant belongings belonging to Sams Daan son of Mide Ali who resides in Samba district Of Srinagar area The Srinagar area represents Islamabad District Srinagar city Islamabad town"} +{"id": "bench_0322", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پوٗرٕ دُنیاہَس منز تیزی سان ترقی کرن وٲلِس مُلکس منز چِھ کینٛہہ خاندان یِمن زن خبر کٲتِہن رٮ۪تن اکِہ وقتٕچۍ ژۄٹ تِہ نصیٖب چِھنٕہ گژھان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 136, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In this rapidly growing country some families may not have access to education for several months at a time despite efforts from organizations throughout the world they provide access every year through universities and colleges respectively through grants funded by NIH and USAID etcetera via grants fundedby NIH and USAID etcetera through universities अनुदानों के माध्यम से NIH और"} +{"id": "bench_0323", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You should study, or you may fail.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تۄہہ پز مطالعہ کرن، نَتہٕ ہیٚکو تۄہی ناکام گژھِتھ۔"} +{"id": "bench_0324", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نندٕ سنز کہِ امرت مَٹَے\nاَسہِ دۄہَے چییٚوو کوٗتو\nکَوٕ دُبَے پھیوٗرُکھ یِکہٕ وَٹَے\nنُندٕ سنز گو سۄرگس موٚتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 106, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Nund S poetry has always been remembered by us and it continues to be remembered today through Kautu Dubai Nund S songs have died without anyone else except themselves.”"} +{"id": "bench_0325", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "How do we understand the hardening of Pharaoh's heart?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "فراعرو سُنٛد دل بَنا وَٹھ بَناوُن کِتھ پٲٹھۍ ہیٚکو اَمِچ وضاحت کٔرِت؟"} +{"id": "bench_0326", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خبرو مُطٲبِق گوٚو بۄموارِ دۄہ شامَس پایان شہر کِس نوا بازار علاقَس منٛز تَمہِ وِزِ سنسنی ییٚلہِ أکِس منزلہٕ شاپنگ کمپلیکسَس منٛز نار لوٚگمُت اوس، ییٚمۍ انا فاناہَس منٛز واریٛاہ دُکان لٔگۍ۔", "domain": "news", "length_bucket": "medium", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 188, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "According to reports a panic erupted in نوا market area of Payan town on Tuesday evening when fire broke out in a multi store shopping complex located at Ana Fana causing damage to several shops inside it.\""} +{"id": "bench_0327", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سلیمہٕ ٲس مُدَے گٔنڈۍ گٔنڈۍ رشیدس وُچھان وُنہِ ٲس نہٕ رشیدن سلیمس سۭتۍ اکھ کتھ تہِ کٔر مٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Salim was watching Rashid through his eyes but Rashid had not spoken a single word with Salim either.\""} +{"id": "bench_0328", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We planned a trip, but we canceled it later.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ کٔر اکہ سفرک منصوبہٕ، مگر بعدس منٛز کوٚر تم یہ رد۔"} +{"id": "bench_0329", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It stretched 363 miles across New York State from the Hudson River in the east to Lake Erie in the west.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 104, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یہ اوس نیویارک سٹیٹس منٛز ۳۶۳ میل طوایعہ صوُب ہسٹنز دریاو مشرقس منٛذ ایری جھیلس مغربس منز وسیتھ پھیلِتھ ۔"} +{"id": "bench_0330", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Creating a memory with loved ones?", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "محبت کرن والؠن لوکن سٟتۍ یادداشت بناوون؟"} +{"id": "bench_0331", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پرانٕچ شراب چھِ نوٚو شراب کھۄتہٕ زیٛادٕ ذایقہٕ دار آسان، ییٚمِچ وجہ چھِ کیمیٲیی تہٕ طبعی عملَن ہُنٛد اکھ پیچیدٕ تعامُل یُس پرانٕچ عملہِ دوران چھُ گژھان۔ ییٚتہِ چھِ کیٚنٛہہ اہم وجوٗہات یِمَن کِنۍ پرانٕچ شراب چھِ واریاہ شرابٕچ شوقین لوٗکھ ترجیح دِوان:\n1. کیمیٲیی تعامُل: وقتس سۭتۍ چھِ شرابَس منٛز مُختٔلِف مرکبات کیمیٲیی تعامُلَن منٛز شٲمِل گژھان یَتھ منٛز شکر، تیزاب تہٕ کیمیٲیی مَواد شٲمِل چھِ یِمَن فینولِک مرکبات ونان چھِ۔ یہِ کیمیٲیی عمل چھُ بالآخر شرابَس ذایقہٕ دار اثر دِنٕچ صَلٲحِیَت تھاوان۔\n2. آکسیڈیشن تہٕ ریڈکشن: پرانٕچ عملہِ دوران آکسیجنَس سۭتۍ محدود تعامُل چھُ شرابَس گہرٲیی دِوان۔ اَتھ سۭتۍ ہیٚکہِ شراب پنٕنۍ کیٚنٛہہ میوٕ دار ذایقہٕ گُم کٔرِتھ تہٕ زیٛادٕ پیچیدٕ ذایقہٕ تہٕ خوشبو تیار کٔرِتھ۔\n3. ایسٹر بناوُن: وقتس سۭتۍ چھِ شراب الکحل تہٕ تیزابَن درمیان مُختٔلِف تعامُلَن سۭتۍ ایسٹر تیار کَران۔ ایسٹر چھِ غیر مستحکم مرکبات یِم شرابَس منٛز نرم تہٕ میوٕ دار خوشبو خٲطرٕ ذِمہٕ دار چھِ۔\n4. ذایقَن ہُنٛد اِکٹھا گژھُن: شرابٕکۍ مُختٔلِف اجزا یِتھٕ کٔنۍ زَن ٹینِن، میوٕ تہٕ اوک، چھِ پرانٕچ عملہِ سۭتۍ زیٛادٕ آسانی سۭتۍ اِکٹھا گژھان، ییٚمہِ سۭتۍ اکھ متوازن تہٕ مُتحد ذایقہٕ تہٕ ذایقہٕ چھُ حٲصِل گژھان۔\n5. مائیکروٗبِیل سرگرمی: مائیکروٗبِیا تہٕ شرابَس منٛز موٗجوٗد مرکباتَن درمیان تعامُل چھُ مجموعی ذایقہٕ تیار کَرنَس منٛز مدد کَران۔ یہِ چھُ خاص کٔرِتھ تِمَن شرابَن منٛز اہم یِم زیٛادٕ وقتس تام پران چھِ۔\n6. سیلرٕچ حالَت: یِم شراب صٔحیٖح درجہٕ حرارت، نمی تہٕ رۄشنی سۭتۍ بہترین حالَتَن منٛز تھاونہٕ چھِ یِوان، تِہنٛدِس ذایقَس منٛز چھُ تبدیلی یِوان۔ یہِ چھُ پرانٕچ شرابٕچ قسم خٲطرٕ تہِ ذِمہٕ دار۔\n7. ٹینِنَن ہُنٛد نرم گژھُن: نوٚو شراب، خاص کٔرِتھ وۄزُل شراب، ہیٚکہِ ٹینِنَن ہُنٛد زیٛادٕ سطح تھاوِتھ یُس کڑوٕ یا تیزابٕچ ذایقہٕ دِوان چھُ۔ پرانٕچ عملہِ سۭتۍ چھِ ٹینِن اِکہٕ وٹہٕ جُڑان تہٕ شرابَس منٛزٕ نٮ۪بر گژھان، ییٚمہِ سۭتۍ مُنہَس منٛز زیٛادٕ نرم تہٕ گول احساس چھُ گژھان۔\n\nپرانٕچ شراب چھِ نوٚو شراب کھۄتہٕ زیٛادٕ ذایقہٕ دار یا نہٕ، یہِ چھُ ذاتی ترجیحَس پٮ۪ٹھ مُنحَصِر۔ کیٚ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1870, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "طور پٲٹھۍ ایکثریت پسند لوکن ہنز ترجیہ ہنز کتھ یِم پران چہ عملہ دوران چھِ سپدان۔"} +{"id": "bench_0332", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was kind, and everyone liked him.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ اوس مہربان تہٕ پرؚٛتھ کٲنٛسہ آو سہ پسند کرنہٕ۔"} +{"id": "bench_0333", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was cold, and the wind was strong.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سرد اوس، تہٕ ہوا اوس تیز۔"} +{"id": "bench_0334", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٕڈٕس پرٛنُن چُھے ۂسۍتِس کشُن\nداندس لٕشُن کُس تھوِ چاو\nمٕڈٕن مورکھن حظن توشُن\nمٔرِتھ سُہ کاوٕج تارٕکھو تاو\nکونہٕ صاحبِس مَنگو ارشُن\nچُھ سونتہٕ پھلس ورشُن واو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 158, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Maddum is cooking rice for themselves The lentils are cooking under fire What do they eat After cooking mad hum they put them in a potThen boil them They ask someone to cook it If you want flour cooking spices etc they will cook everything for them easily and quickly cook them down to a pot size they asked anyone they"} +{"id": "bench_0335", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفس چُھے ونُک اَگہٕ زولےٕ\nنیرٮ۪س نہٕ پٔٹ کوٗٹ منزولٕے\nییٚمۍ ژوٚٹ اوٚن گجہِ زولٕے\nتٔمی شرعِ محمد پولُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 101, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if you provide evidence for your claims otherwise proceed with caution against them in court of law.”"} +{"id": "bench_0336", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بہار مظفرپور تہٕ سمستی پور کیٚن پنچایتَن منٛز چھٕ اسہِ نِش زنان سیلف ہیلپ گروپَو ہنٛدِ تِژھ مِثالہٕ موجوٗد یُس نہٕ صرف وارڈ کِس سطحَس پٮ۪ٹھ آب کہِ سکیٖمَن ہنٛدۍ منصوٗبہٕ بندی تہٕ لاگوٗ کرنَس منٛز چھٕ حصہ نِوان بلۍکہِ تِم چھٕ آبٕچ ٹیسٹنگ تہِ یقیٖنی بناوان۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 255, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In Panchayats of Bihar Muzaffarpur and Samasthipur we have such examples of women self help groups which provide not only participate in planning and implementation of water schemes at the level of wards but they also ensure testing of water facilities.\"\"\""} +{"id": "bench_0337", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مہاراشٹر کانگریسَن چھُ بھارتیہ جنتا پارٹی (بی جے پی) تہٕ وزیر اعلیٰ ایکناتھ شندے سنٛز حکومتَس پٮ۪ٹھ فضول خرچہٕ کرنُک الزام لگوٚومُت۔\nکانگریسَن چھُ حکومتَس پٮ۪ٹھ الزام لگوٚومُت زِ سُہ چھُ جلدٕی منٛز کرور رۄپیَن ہٕنٛدۍ ٹینڈر صاف کٔرِتھ \"زِیٛادٕ کھۄتہٕ زِیٛادٕ لوٗٹنٕچ جلدٕ” کران۔\nکانگریسٕکۍ ترجُمان اتُل لوندھیَن کوٚر برٛسوارِ دۄہ رٲژ میڈیا بیانَس منٛز الزام زِ امہِ سۭتۍ گوٚو تٔمۍ سُنٛد حکومتہٕ نٮ۪بر نیرنہٕ برٛونٛہہ منافعَس منٛز تٔمۍ سُنٛد حصہٕ یٔقیٖنی۔ تٔمۍ ووٚن زِ رِیاستی کابینہِ چھُ ڈیجیٹل پلیٹ فارمَن باپتھ اِشتِہارن خٲطرٕ 90 کرور رۄپیَن ہُنٛد ٹینڈر جٲری کوٚرمُت، تہٕ حکم دِیُت زِ یہِ رقم گژھِ پانٛژن دۄہَن انٛدر انٛدر خرچ کرنہٕ یِنۍ۔ اَمہِ علاوٕ چھِ کابینہِ ایس ایم ایس کہِ ذٔریعہٕ حکوٗمتٕکہِ فٲصلہٕ عوامَس تام واتناونہٕ خٲطرٕ 23 کرور رۄپیَن ہُنٛد بیٛاکھ ٹینڈر منظوٗری دِژمٕژ۔\n\"عوٲمی فنڈَن ہٕنٛدِس فضول خرچَس” پٮ۪ٹھ سخت تنقید کران ووٚن مسٹر لونڈھے یَن زِ ریاستَس چھُ 8 لچھ کرور رۄپیہِ کھۄتہٕ زِیٛادٕ قرضہٕ مگر حکومت چھِ کمیشن حٲصِل کرنہٕ باپتھ لاپرواہ ٹینڈر جٲری کران۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 974, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Mr Lone explained their approach as follows: We intend to investigate this matter further and we plan on initiating an investigation into this issue within fifteen days of receipt of the complaint from the concerned department,\" he added adding that they would submit a formal report within three months after receiving it from the complainant within four months after receipt of their"} +{"id": "bench_0338", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تَصویر چِھ بِلا شُبہ ٲمِس شخصَس بہٕ نسبت زیادٕ تیزی سان اکہٕ جایہٕ پٮ۪ٹھ دٔیِمہٕ جایہٕ واتان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The picture speaks volumes about this man compared to me without a doubt reaching from one place to another faster than him does through photos.\""} +{"id": "bench_0339", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ڈاٹ 1990 کہِ دہٲئی کِس ٲخرس تہٕ 2000 کِس شروعاتس منز۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Data from the late 1790s and early 2"} +{"id": "bench_0340", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You can call me, or you can send a message.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تہۍ ہیٚکو مےٚ فون کٔرتھ، یا تہۍ ہیوٚکھ پیغام سوٗزتھ۔"} +{"id": "bench_0341", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خواجہ طاروقی صٲبن شاندار محل ’’خۄجہٕ بنگلچٕ شان تہٕ پر وقار حشمت‘‘ ٲس اَمہِ محلچہِ خوبصورتی کِنۍ نٔنۍ تہٕ نمایا۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 112, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only Khwaja Tarukhi Seps magnificent palace Khwja Bungalchhs stunning reputation and influence were reflected in this beautiful palace due to its beauty.\"\"\""} +{"id": "bench_0342", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "غزٲلۍ أچھ برٕتۍ برٕتۍ رۄخسار پوشہِ ؤتھرن ہٕنٛدۍ پٲٹھۍ نوزُک رۄخسار۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 69, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "the eyes like those of a gazelle looking intently into flowers that bloom with delicate petals like roses and lilies are like نازous flowers they appear to be creating their masterpieces from them.\"\"\""} +{"id": "bench_0343", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِمَن کن تِم سۄن نہٕ وُچھان\nیَمَن چُھے سۄن تِمن نہٕ کَن\nیِمن نہٕ شُرۍ تِمن نہٕ روژان\nیِمن شُرۍ تِمن نہٕ کُنہِ ان پَن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 116, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Gold is not valuable to them who perceive it they are valuable to whom gold belongs they are not valuable at all to them whose gold they perceive belong to others instead of themselves.\"\"\""} +{"id": "bench_0344", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہو، بہٕ چھُس پہیلیَن سۭتۍ اَصٕل۔ اَکھ اے آی زَبان ماڈل آسِتھ چھُس بہٕ شُرٮ۪ن تہٕ بٔڑٮ۪ن ہٕنٛدٮ۪ن سوالَن خٲطرٕ پہیلیَن ہُنٛد حل کَرنہٕ خٲطرٕ پروگرام کَرنہٕ آمُت۔ کیٚنٛہہ مِثال چھِ یِم:\n\nسَوال: یُتھ زیٛادٕ تُہۍ چھِو نِوان، تَتھ زیٛادٕ چھِو تُہۍ پَتہٕ تھاوان۔ بہٕ کیٛاہ چھُس؟\nجواب: پٲدٕرۍ۔\n\nسَوال: یَتھ چابی چھِ مگر تالُکۍ چھُنہٕ کھوٗلِتھ ہیٚکان؟\nجواب: اَکھ پیانو۔\n\nسَوال: بہٕ چھُس لۄکُٹ وِزِ وۄنٛچ تہٕ بٔڑِ وِزِ چھُس لۄکُٹ۔ بہٕ کیٛاہ چھُس؟\nجواب: اَکھ شمع۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 453, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Q: I grew up as a child and grew into an adult who knows how to operate computers but can not understand French at all. What am I?"} +{"id": "bench_0345", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Smaller universities are being consolidated while professors have strict targets in terms of publications in peer-reviewed research journals.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 141, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "چھوٹے یونیورسٹیاں چِھ مستحکم یوان کرنہٕ جبکہ پروفیسروں ہند پبلیکیشن کیتھ بائیو ریویو شدہ تحقیقی جرنین میں اعلیٰ سطحس پؠٹھ توجہ مرکوز ہے۔"} +{"id": "bench_0346", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The experiments ended in 1965.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 30, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تجربہٕ گٲی 1865 میں شروع اور اختتام 1667 میں ہوا۔"} +{"id": "bench_0347", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We wanted to travel, but we had no time.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ ٲس سفر کرن یژھان مگر اسہ اوس نہٕ کینٛہہ وقت۔"} +{"id": "bench_0348", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خدا تعالیٰ اوس تہٕ آسے\nسُہ ییٚتہٕ آرُت کٲنسہِ نہٕ\nنکس دٮ۪نہار روزی آسے\nأسۍ تس ژٮ۪تس سُہ اَسہِ نہٕ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "God exists and will exist here without failAlthough we deny Him some aspect of His existence such as doctrines and beliefs they will not deny Him either.\"\"\""} +{"id": "bench_0349", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پوشہِ متٮ۪ن یِمن ابدالن\nخۄش کلٔمن بوٗزِکھ معنے\nگوش رٔٹِکھ پٮ۪ٹھ سنگاسن\nیِمن لعلن مۄل کُس زانے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 93, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only translate those words which are meaningful for humans beings they will translate accurately and correctly understand their meanings correctly translate them accurately translate these words correctly translate these meanings correctly translated languages provide valuable information about human beings they translate accurately translate meanings correctly understand meanings correctly They translate accurately translates meanings correctly Translated languages provide useful information about humans beings They translate"} +{"id": "bench_0350", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گۄن پرٛژھتو ژۄن دِشن\nمرنُن برٛٮ۪م تھوٚوُن آوٹو\nکینٛژو ڈیوٗنٛٹھ تہٕ کیٖنژۍ ڈیشن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Ask four directions and take note of each one: death thirst passion for friendship etc etc etc Why should you give yourself away If they ask questions asks them directly What should we do If they want your advice what should we know If they dont want your money what should you tell them If they don't want your help what"} +{"id": "bench_0351", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بنگہٕ کٲنِس انٛبر ژھوٚٹُے\nویٖر کٲنِس پھل نو بۄوے\nگورٕ کٲنس انٛبر موٚٹُے\nوتہٕ کٲنِس اندوہ پیٚیے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Bung is thin for him Fruit is sour For him it is tasty To grow strong becomes difficult for him to grow weak becomes difficult For him fruit grows weak For him watermelon grows strong When growing older becomes difficult When growing younger becomes easyFor him fruit grew weak When growing old becomes difficultFor him fruits became weak When young fruit"} +{"id": "bench_0352", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "عارضی شہرت وٲلۍ کھیٚن چھِ عارضی وزن کم کرنُک بٲعث بنان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Quickly losing weight happens because people eat foods that encourage it.\""} +{"id": "bench_0353", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرونگ سائز، یتھ أس ہیڈ مقدارس ونتھ ہیکو، چُھ خوراکچ مقدار یُس کھین کین چیزن ہنٛدس لیبلس پیٹھ غذائی معلوماتس سۭتۍ چُھ یوان دنہٕ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 127, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Serving size which we can refer to as head quantity is the amount of food that goes into the nutritional information on the label of food products.\""} +{"id": "bench_0354", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أندرٕ کروٗد تراوکھ نتہٕ\nنیٚبرٕ کروٗل کندے\nانتہٕ مل کاسَکھ نتہٕ\nچھوٚنۍ وۄتھہٕ بیٹھ کندے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 87, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Sit back and enjoy yourself if you want to or get up and do something else if you dont want it.\"\"\""} +{"id": "bench_0355", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I sleep early.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس جلدی سوان۔"} +{"id": "bench_0356", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can watch a movie, or we can read a book.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ ہیٛکو ایکہ فلم چہ نظٲرہ وچھتھ، یا کتاب پرنتھ ہیٛکن آستۍ۔"} +{"id": "bench_0357", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریاٲس واریاہ کینٛہہ ونُن یژھانمگر ہیوٚکُننہٕ کینٛہہ ؤنِتھ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 60, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Suriya wanted to say a lot but could not speak anything at all."} +{"id": "bench_0358", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اتھ و پار یولا تہٕ ایرادتم مہادیون انڈوس اسکرپٹہٕ چُھ دِیِسی اَنٛدازُک واننہٕ یِوان تہٕ تٔمِل لُکو ذریعہٕ چُھ یہٕ اِختیار کر نہٕ آمُت ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 135, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Its return and continued use by people in Tamil films such as Anja Thola and Iradaathai Mahadevi are cited as examples of this style adopted by others films uses restrictions imposed on Malayalam films namely Iradaathtai Mahادیvi were released starring AnjaThola featuring Iridaathai Mahaade"} +{"id": "bench_0359", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أہنزِ سیم تنہِ پٮ۪ٹھ ٲسۍ گُمبہٕ پھیرۍ ٹھسرایہِ پٮ۪وان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 55, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Balloons floated across his sky creating endless opportunities for exploration and adventure.\"\"\""} +{"id": "bench_0360", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ قٕسمُک ڈرٛامٲٮٔی ظٲہِر چھُ تمام سنگم عٔشقی نظمن منٛز دٔستیاب۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 67, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This type of dramatic effect can be seen throughout all Shangi mourning poetry.\""} +{"id": "bench_0361", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ہندوستان کِس دورٕ کرَن وٲلۍ متحدہ عرب اماراتٕک پارلیمانی وفدَن کوٚر آز پارلیمنٹ ہاؤس کمپلیکسَس منٛز لوک سبھا سپیکر اوم برلا سۭتۍ ملاقات تہٕ امِچ قیادت کٔر ہندوستان تہٕ متحدہ عرب اماراتَس درمیان ہندوستانٕچ تٲریخ تہٕ صدیو پرٛٲنۍ ثقافتی تہٕ ثقافتی شراکتُک حوالہٕ دِتھ محکمہ دفاع، ہوم اینڈ فارن افیئرز کمیٹی ہٕنٛدۍ چیئرمین ڈاکٹر علی رشید النامی یَن ۔ بِرلاہن ووٚن زِ آزٲدی پتہٕ چھُ دۄشوٕنی مُلکَن درمیان لوٗکَن درمیان رٲبطَس منٛز نمایاں اضافہٕ گوٚمُت، ییٚمہِ کِس نٔتیٖجس منٛز بٔڑِس تعدادَس منٛز ہندوستٲنۍ شہری متحدہ عرب اماراتَس منٛز روزان چھِ تہٕ چھِ اَمِچ ترقی منٛز اَہَم کِردار ادا کران۔ تٔمۍ کوٚر دۄشوٕنی مُلکَن ہٕنٛدٮ۪ن شہرین تہٕ لوٗکَن درمیان لوٗکَن سۭتۍ رٲبطَن ہُنٛد مُطالبہٕ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 679, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Parliamentarians from UAE visiting India today paid a visit to Parliament House Complex where Dr Ali Rashid Al Nami Chairman Committee for Defence Home and Foreign Affairs thanked UAE President Omar Burlah for providing leadership reference regarding history of India and centuries old cultural and cultural contributions between India and UAE. Al Nmi said There has been significant"} +{"id": "bench_0362", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہ منعقد أکس اجلاسن نِش خطاب کران ووٚن ہریش راون زِ وزیر اعلی کے سی آر چُھ زنانن ہنٛز ترقی تہٕ فلاح و بہبود خٲطرٕ واریاہن سکیمن پٮ۪ٹھ عمل کران ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 147, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Addressing an session held here Heresr Rao said that Chief Minister KCR was implementing several schemes for women development and welfare."} +{"id": "bench_0363", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The land on which much of the present course stands is the site of a former open cast ironstone mine which was closed around 1874 for economic reasons.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 151, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یتھ زمینس پؠٹھ موجودہ کورس چہ زیادہ تر سطح چِھ واقع چُھ ایک سابقہ اوپن کاسٹ آئرن سٹون کان کنی یوس اقتصادی وجوہات کی وجہ س سے ۱۸۷۴ کے آس پاس بند کر دی گئی۔"} +{"id": "bench_0364", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ماجہِ زیٚوِ فروغ دِنہٕ تہٕ ترقی دِنہٕ خٲطرٕ حکوٗمتٕکۍ عظیم دعواہن درمیان، کٔر اسمبلی رُکنو قونوٗن ساز اسمبلی ہٕنٛدِس احاطس نٮ۪برٕ کٔنہِ میڈیاہس سۭتۍ کتھ باتھ تہٕ کوٚرُکھ کٲشرِ زبٲنۍ منٛز شایٮ۪ سپدن وٲلِس اخبارس روزنامہ کہؤٹس اشتہار بند آسنس پٮ۪ؠٹھ تشویش تہٕ افسوسُک اظہار، کشمیر پریس سروسٕکۍ نامہٕ نگار سٕتۍ کتھ باتھ کٔرِتھ ووٚن سینئر سیاست دان تہٕ بانڈی پورہٕکۍ ایم ایل اے، نظام الدین بٹن زِ کٲشِر زبان چھےٚ سٲنی شناخت تہٕ اخباریا باقی لۄکٕٹۍ اشاعت نظر انداز کرٕنۍ چھِ غٲر منصفانہٕ تہٕ غٲر اصولی۔ تٔمۍ دِیُت زور زِ یِمن گژھہِ زِیٛادٕ کھۄتہٕ زِیٛادٕ ترجیح دِنہٕ یِنۍ أتھۍ دوران ووٚن سینئر سیاست دان تہٕ ایم ایل اے عیدگاہ، مبارک گُلَن زِ کٲشرِ زبانہِ منٛز شایع گژھن وٲلِس اخبارس اشتہار نہ دِنۍ چھےٚ سانہِ ماجہِ زیٚوِ سۭتۍ ناانصافی تہٕ وونُن زِ اَتھ پٮ۪ٹھ چھُ دُبارٕ غور کرنٕچ تہٕ میڈیا پالیسی منٛز اتھ اہمیت دِنٕچ ضرورت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 820, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Amidst great governmental claims of promoting and development for Mother Zewi expressed concern and regret about Assembly members talking to the media outside the confines of the Legislative Assembly about discussions with reporters from Kashmir press service saying that discussing Kashmiri language newspapers publishing in their local languages are unfair and unethical because they require greater importance than providing impetus for"} +{"id": "bench_0365", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I am primarily interested in determining the component from the high voltage power lines near my house.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 103, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس بنیٲدی طور پٲٹھۍ پننِس گَھرَس نذدیکی ہائی وولٹیج پاور لائنَن ہُنٛد جز طے کرنس مَنز دلچسپی رَچھان۔"} +{"id": "bench_0366", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was angry, but he stayed quiet.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ اوس غصہٕ گوٚمت مگر سہ روٗد خاموش۔"} +{"id": "bench_0367", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مان مو لگی پروردگارس\nکیا زیوٗنُم سمسارس زٮ۪تھ\nآدنہٕ ہوٗل لجٔم نہٕ آکارس\nکتھ رچھایم گرٕچی ژٮ۪تھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only translate this sentence without using quotes from sources such as Wikipedia or Google Translate:"} +{"id": "bench_0368", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گنٛدنَس درٛۄکنَس منٛز تہِ چھِ ورزِش آسان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Playing sports includes exercising as well."} +{"id": "bench_0369", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِسلامٕکۍ پانٛژھ بُنیاد چھِ عبادت تہٕ عملٕکۍ بُنیٲدی عمل یِم مُسلمانَن ہٕنٛدِس عقیدس تہٕ زنٛدگی خٲطرٕ مرکزی چھِ۔ یِم چھِ اِسلامی عقیدس تہٕ عملٕچ بُنیاد، یِم مُسلمانَن خۄدا سۭتۍ تہٕ پنٛنٮ۪ن سٲتھین سۭتۍ تعلقاتَس منٛز رَہنُمٲیی کَران چھِ۔ اِسلامٕکۍ پانٛژھ بُنیاد چھِ یِتھٕ کٔنۍ:\n\n1. شَہَدہ (ایمانُک اِقرار): شَہَدہ چھُ ایمانُک اِقرار تہٕ اِسلامُک سارِوٕے کھۄتہٕ بُنیٲدی بُنیاد۔ اَتھ منٛز چھُ گواہی دِنہٕ تہٕ دۄن سادٕ شَہَدَن (بیانَن) ہُنٛد اِقرار شٲمِل یِم یہِ عقیدٕ ظٲہِر کَران چھِ زِ \"اللہ سٕنٛدِ بَرابَر چھُنہٕ کانٛہہ دیوتا\" تہٕ \"محمد چھُ خۄدا سُنٛد رَسول\" [1].\n2. صلاَت (دُعا): صلاَت چھُ پانٛژھ روزانہٕ دُعا یِم مُسلمانَن عبادت تہٕ خۄدا سۭتۍ تعلق تھاونہٕ خٲطرٕ کَرنہٕ چھِ یِوان۔ یِم دُعا چھِ مکہٕ کِس کعبہَس کُن رُخ کٔرِتھ تہٕ دۅہَس تہٕ رٲژِ ہٕنٛدٮ۪ن خاص وقتَن پٮ۪ٹھ کَرنہٕ یِوان۔ پانٛژھ روزانہٕ دُعا چھِ فجر (سُہُب)، ظہر (دُپہر)، عصر (دُپہر پتہٕ)، مغرب (شام)، تہٕ اِشاء (رٲژ) ناوٕ سۭتۍ زاننہٕ یِوان۔ دُعا چھُ قُرآنٕچ گۄڈٕنِچ سُورت (سُرا) پرُن تہٕ چھُ کینٛہہ لٹہِ اَکھ لۄکُٹ قالین یا چٹائی پٮ۪ٹھ کَرنہٕ یِوان یُس خاص طور پٮ۪ٹھ اَتھ مقصدَس خٲطرٕ اِستعمال چھُ گژھان۔ مُسلمان ہیٚکَن کُنہِ تہِ جایہِ اکیلے دُعا کٔرِتھ یا مَسجِدَس منٛز اِکہٕ وٹہٕ، یَتھ منٛز اَکھ رَہنُما (امام) جماعتَس رَہنُمٲیی کَران چھُ [2].\n3. زَکَت (خیرات): زَکَت چھُ ضروٗرت مندَن دِنُک عمل تہٕ چھُ خیرات تہٕ سمٲجی ذِمہٕ دٲری ہُنٛد اَکھ عمل ماننہٕ یِوان۔ یِم مُسلمان مٲلی طور پٮ۪ٹھ قٲبِل چھِ تِمن چھُ پنٛنِس مالَس تہٕ جٲیِدَتَس منٛزٕ اَکھ خاص رَقَم کَٹاوُن پَکان تاکہ اِسلامی برادری ہٕنٛز مدد کَرَن، تہٕ یہِ چھُ عام طور پٮ۪ٹھ اَکھ فردٕچ مالِیَتُک 2.5% آسان [1].\n4. سَوَم (روزہٕ): سَوَم چھُ رَمضان رٮ۪تہٕ کِس دوران روزہٕ تھاونُک عمل، یُس اِسلامی قمری کیلنڈرُک نَوِم رٮ۪تھ چھُ۔ سَوَم چھُ رَمضانَس منٛز دۅہَس کِس وقتَس منٛز گژھان، سُہُب (فجر) پٮ۪ٹھٕ سُہُبَس تام (مغرب)، کھٮ۪ن، چیٖزَن تہٕ باقٕے جسمٲ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1762, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ن، مشروبَن تہٕ تفریح کِس ذرائعَس منز تبدیل کَرُن یِم اسلامیہ عقیدَت مُتعلق چھِ قرار دِن آمٕتۍ۔"} +{"id": "bench_0370", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید صٲب مےٚ دی زٮ۪و معٲفی مےٚ پزِ ہا نہٕ چٲنۍ بے عزتی کرٕنۍ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 61, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "RashiId like to apologize I shouldn't have insulted you Mr Rashid.\""} +{"id": "bench_0371", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گول میز کانفرنسٕچ صدارت کٔرترتیبہٕ سان جناب پی راملو سابق ڈائرکٹر جنرل آف پولیس , حسن_الدین احمد آئی اے ایس۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The گول میز conference was chaired by Mr P Ram لو former Director General of Police Hassanuddin Ahmed I SA in turn by Mr Ahmed Jallal Muhammad Ali M S Thanভীরajinathan president chairman of AIADMK party leadership team members were appointed thereafter Mr E K Mohan chairman secretary general of AI ADMK party"} +{"id": "bench_0372", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یقیٖنی! ییٚتہِ چھُ تُہٕنٛدِ خٲطرٕ اَکھ سادٕ سِپرِنٛگ رول ریسیپی یُس تُہۍ آزماوِتھ ہیٚکو:\n\n**بھرنُک مَواد**\nاجزا:\n- 2 کپ بٮ۪ن شوٗٹ\n- 6 شیٹیک مشروم\n- 2 تہٕ 1/2 چمچ اویسٹر ساس\n- 1 چمچ چِکن برٛوتھ (آب چھُ اَکھ مُناسِب بَدل)\n- 2 چمچ لایٹ سویا ساس\n- 1 چمچ چیٖنۍ\n- 2 چمچ تیٖل، سٹر فرایِنٛگ خٲطرٕ\n- 1/2 وۄزُل مرچ، ڈایس کَرنہٕ آمُت\n- 1 درمیٲنی گاجر، کٔرِتھ\n- لُوٗن تہٕ مَرٕچ، ذایقہٕ مُطٲبِق [1]\n\nطٔریٖقہٕ:\n1. پنٕنۍ سٲری اجزا کٔرِو پَتلی کٔرِتھ۔\n2. اویسٹر ساس، برٛوتھ، سویا ساس تہٕ چیٖنۍ اَکھ لۄکُٹِس کٹورَس منٛز مِلاوِتھ اَکھ کُن تھاوِو۔\n3. اَکھ فرایِنٛگ پینَس منٛز 2 چمچ تیٖل تھاوِو۔ ییٚلہِ تیٖل گَرٕم گژھہِ، تَتھ منٛز وۄزُل مشروم تھاوِو، تہٕ کینٛہہ منٹَن خٲطرٕ رَنٛگاوِو۔\n4. وۄزُل مرچ، بٮ۪ن شوٗٹ تہٕ گاجر پینَس منٛز تھاوِو۔ تُہۍ ہیٚکو پنٕنِس پسندٕچ باقٕے سَبزی تہِ تھاوِتھ۔\n5. ییٚلہِ سَبزی نیم پَکِتھ آسہِ، تَتھ منٛز اویسٹر ساس مِلاوِو تہٕ لُوٗن تہٕ مَرٕچ ذایقہٕ مُطٲبِق تھاوِو۔ مِلاوِو تہٕ بھرنُک مَواد اَکھ کُن تھاوِو [1].\n\n**رول بناونُک طٔریٖقہٕ**\nاجزا:\n- 18-20 سِپرِنٛگ رول ریپر\n- 1 انٛڈٕ، ہلکہٕ پٲٹھۍ پھٹِتھ\n- 4-5 کپ تیٖل، ڈیپ فرایِنٛگ خٲطرٕ [1]\n\nطٔریٖقہٕ:\n1. اَکھ ریپر تھاوِو ییٚمیُک اَکھ کُن تُہٕنٛدِس کُن آسہِ، پتہٕ کٔرِو کَنارَن پھٹِتھ انٛڈٕ سۭتۍ رَنٛگاوُن۔\n2. ریپرَس منٛز اَکھ لۄکُٹ بھرنُک مَواد تھاوِو۔\n3. ریپرُک بۄنِم کَنار بھرنُک مَوادَس پٮ۪ٹھ وۄپَر کُن تہٕ کٔرِو تہہ۔ اَمہِ پتہٕ، ریپرُک کھوُرِم تہٕ دٔچھِن کَنار مَرکَزَس کُن تہٕ کٔرِو تہہ۔ ٲخِرَس پٮ۪ٹھ، سِپرِنٛگ رول بۄنِم پٮ۪ٹھٕ وۄپَر کُن رول کٔرِو۔ اگر رول صٔحیٖح پٲٹھۍ بَنِتھ چھُنہٕ، تیٚلہِ کٔرِو زیٛادٕ انٛڈٕ مِلاوُن۔\n4. اَکھ بۄڈ سکیٹل یا ووک درمیٲنی گَرٕم پٮ۪ٹھ گَرٕم کٔرِو۔ پ", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1538, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ث چُھ اَمِیُک اصل انتخاب۔"} +{"id": "bench_0373", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They open the gate.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چِھ دروازٕ کھولان۔"} +{"id": "bench_0374", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You like coffee.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تۄہہ چھو کافی پسند؟"} +{"id": "bench_0375", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You stand here.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تُہۍ نِیو یَتھ نمبرَس کُلّی طور ۶۴۲۹۶۳۷۸۰۴۱7367۵۹۳۴۴۴۳۴7770775776778773477۳۴۷7۳"} +{"id": "bench_0376", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زنٛدگی نشۍ تنگ یِتھۍ چِھ مزوٗرو گرام پنچایتٕہ کِس دفترس قُلُف کوٚرمُت تاکِہ جل جل گژھِ مزوٗرن ہٕنز موٚزوٗرۍ جٲری کرنٕہ یِنۍ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 124, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Hard pressed against poverty laborers have barely made do with living wages until labourers must hurry their return to villages panchayat offices etc.\""} +{"id": "bench_0377", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نیشنل کانفرنسُک نٲیِب صدر عمر عبداللہ آو آز سری نگرَس منٛز منعقد این سی لیجسلیچر پارٹی کِس اجلاسَس دوران متفقہٕ طور وزیر اعلیٰ ہُنٛد وۄمیدوار مُنتخب کرنہٕ۔ این سی صدر فاروق عبداللہ سٕنٛزِ صدارت منٛز کٔر اجلاسَس منٛز جموں و کشمیرَس منٛز پننِس اتحادی پارٹنر انڈین نیشنل کانگریسَس سۭتۍ حکومت بناونَس پٮ۪ٹھ تہِ کَتھ باتھ۔ قونوٗن ساز اسمبلی ہٕنٛدۍ تمام نٔوۍ منتخب این سی ممبر ٲسۍ اجلاسَس منٛز موٗجوٗد، ییٚتہِ مخلوط حکومتٕک کم از کم مشترکہ پروگرامَس پٮ۪ٹھ بَحَژ آیہِ کرنہٕ۔ پارٹی ذرایعو مُطٲبِق کَرِ کانگریس جموں و کشمیرُک سربراہ طارق حمید قارا نَیہِ دِلہِ پٮ۪ٹھ واپس یِنہٕ پتہٕ جلدٕیہ پنٕنہِ أنٛدروٗنی اجلاس۔ وۄمید چھِ زِ کانگریس لیجسلیچر پارٹی (سی ایل پی) کرِ پنُن رہنُما انتخاب، ییٚمہِ سۭتۍ حکومت بناونَس پٮ۪ٹھ این سی یَس سۭتۍ مٔزیٖد کَتھ باتھِ ہٕنٛز وتھ ہموار گٔیہِ۔ حالٕے ختم گٔمٕتٮ۪ن اِلیکشنَن منٛز زینہِ کانگریسن شےٚ سیٹہٕ – کٔشیٖرِ منٛز پانٛژھ تہٕ جوٚمَس منٛز اکھ۔ اَکہِ لَٹہِ ییٚلہِ این سی تہٕ کانگریس دۄشوٕنی ہٕنٛدۍ رہنُما منتخب گژھَن", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 938, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "National Conference deputy president Omar Abdullah was elected as joint candidate for Chief Minister in Srinagar today during an election of the NC Legislature Party. In addition at the discussion attended by NC President Farooq Abdullah chaired by him discussing making a government with its coalition partner Indian National Congress in Jammu and Kashmir were discussed at this session of the legislative"} +{"id": "bench_0378", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تروٚش آدیش ژٮ۪تھہٕ اۄہر نٕے\nادٕ تِم أندرِم بَر وُژرنَے یِن\nپھل بۄوٮ۪کھ کلہٕ ترٲوِتھ کَمہٕ کرنَے\nادٕ تِم ژھٔرۍ بانہٕ برنَے یِن", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 126, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Take a look around you and see if they are paying attention or not They might want to take their hands off your shoulders too If so bring them closer and make them stand up straight away From where they started they will definitely be feeling hungry soon enough They may want to touch your shoulders as well If soBring them closer And"} +{"id": "bench_0379", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کانگریس کِس سٲبقہٕ صدر راہول گاندھی تہٕ جنرل سکریٹری پرینکا گاندھی واڈراہن چھُ آگرہ-لکھنؤ ایکسپریس وے پٮ۪ٹھ خوفناک حٲدثس منٛز ہلاک گژھَن والٮ۪ن ہٕنٛدٮ۪ن عیالَن سۭتۍ سٮ۪ٹھاہ تعزیت ہُنٛد اِظہار کوٚرمُت تہٕ زخمیَن ہٕنٛدِ جلدی صحتیابی ہٕنٛز دُعا کٔرمٕژ۔ غمزدہ خاندانن سۭتۍ پننہِ گہری تعزیت ہُنٛد اِظہار کران چھُس بہٕ وۄمید کران زِ سٲری زخمی گژھن جلدی صحتیاب۔ اِنتِظامیاہس چُھ گُزٲرِش کرنہٕ یِوان زِ سُہ کَرِ زخمیَن ہِنٛدِس علاجَس منٛز پرٛٮ۪تھ مُمکِن\n\"لکھنؤ-آگرہ ایکسپریس وے یَس پٮ۪ٹھ أکِس خوفناک سڑک حٲدثَس منٛز واریٛاہ لوٗکَن ہٕنٛدِ مرنٕچ تہٕ واریٛاہ تعدادَس منٛز لوٗکھ زخمی گژھنٕچ خبر چھِ واریٛاہ افسوسناک ۔ خۄداے دِیہِ مرحومہٕ سٕنٛدِس روحَس سُکوٗن۔ غمزدہ خاندانن سۭتۍ چھِ میٲنۍ دِلی تعزیت۔ بہٕ چھُس زخمیَن ہٕنٛدِ جلدی صحتیابی خٲطرٕ دُعا کران۔ ‘", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 743, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Congress former president Rahul Gandhi and General Secretary Priyanka Gandhi Vadra expressed their deepest condolences on those killed in a tragic accident on the Agra Lucknow Expressway saying they prayed for speedy recovery of the injured persons health officials urged compassion for victims families expressing their deep condolences to the affected families praying for speedy recuperation of all injured persons healthcare officials"} +{"id": "bench_0380", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمالن ووٚن بڈٕ خشمہٕ سان أمِس کُن ’’ژٕ چھُکھنہٕ اَتھ لاکٹس قٲبل‘‘ جمالن ووٚن سرگوشی ٲس شہمار سٕنٛدۍ پٲٹھۍ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jallal said angrily To her You are not worthy of this lock The singer responded As if he were Allah Almighty."} +{"id": "bench_0381", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پولیس اوس جوابس منٛز اوٚش اَنن وول گیس چلاوان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Police responded by firing tear gas rockets into the crowd causing clashes between protesters and police officers at several locations throughout Mumbai city centre.\""} +{"id": "bench_0382", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The off-site wind and solar projects alone will produce enough electricity to meet about one third of that consumption overall, or more than 40 percent of its consumption in California (additional onsite renewable generation will bring the total to 50 percent in state).", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 270, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "صرف آفتاب تہ شمسی توانائی چہ منصوبہٕ ہی کرن کُل کھپتک تقریباً ایک تہائی حصہ پیداواری یا کیلیفورنیا ہس منٛز امچ کھپتی ۴۰ فیصد سے زیادہ موجود کر کے مجموعی طور پٲنٹھ یہ صارفینیت"} +{"id": "bench_0383", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جنوبی کشمیر کِس شوپیاں ضلعس جموں صوبہٕ کِس راجوری تہٕ پونچھ ضِلعن سۭتۍ جوڑن واجٮ۪ن تٲریٖخی مغل روڈس پٮ۪ٹھ چھِ پٔتمہِ دۄیو ہفتَو پٮ۪ٹھ ٹریفک ہٕنٛز نقل و حرکت رُکاونہٕ آمٕژ۔ وۄنٛہِ گوٚو، سری نگر-جموں قومی شاہراہَس پٮ۪ٹھ دۄن طرفن ہٕنٛز ٹریفک نقل و حرکت، یوٚس وادی باقٕے مُلکَس سۭتۍ رَلاوان چھِ، چھِ معموٗلَس مُطٲبِق جٲری۔ ٹریفک حکامَو ووٚن زِ تٲریٖخی مغل روڈَس پٮ۪ٹھ چھِ ٹریفکٕچ نقل و حرکت وُنہِ تہِ بنٛد۔ تٔمۍ ووٚن زِ اَمہِ سڑکہِ پٮ۪ٹھ شیٖن کڑنٕچ کٲم چھِ پوٗرٕ پٲٹھۍ جٲری۔\n27 دسمبر آو سٮ۪ٹھاہ شیٖن پینہٕ کِنہِ مُغل روڈس پٮ۪ٹھ ٹریفک بنٛد کرنہٕ۔ پبلِک ورکس ڈپارٹمنٹ پوٗنچھَن چھُ سڑکَن ہُنٛد رٲبطہٕ بڑاونہٕ خٲطرٕ اکھ اَہَم قدم پٲٹھۍ مغل روڈ بارڈر روڈز آرگنائزیشن (بی آر او) بفلیاس پٮ۪ٹھٕ پیر کی گلی حوالہٕ کوٚرمُت۔ حکامَو ووٚن زِ سنتھن روڈ تہٕ بھدرواہ چمبا روڈَس پٮ۪ٹھ چھِ ٹریفکٕچ نقل و حرکت تہِ وُنہِ تہِ معطل ۔ تٔمۍ ووٚن زِ بی آر او طرفہٕ گرین سگنل مِلنہٕ پتہٕ یِیہِ سونامرگ-کرگِل سڑکہِ پٮ۪ٹھ ٹریفک چلنُک اِجازت۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 909, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Traffic movement on Mughal Road which connects Shopian district of South Kashmir with Rajouri and Poonch districts of Jammu province has been suspended for the last two weeks However traffic movement continues in both directions on Srinagar - Jammu national highway which connects the valley with other countries according to normal conditions Traffic officials said Traffic movement remains prohibited on Mughal"} +{"id": "bench_0384", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "أکِس جورٕ چھَے طوطس ہٲرٕے\nگارِ عیشس اَتَے گتُو\nبیٚیِس رٔنۍ چھٚے پٲزَس برٲرٕے\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "For one pair a parrot becomes a necklace for another woman becomes a bracelet for herself thus they provide each other in their roles as partners.\"\"\""} +{"id": "bench_0385", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رۄخ ٲسِس امبٕرۍ ژوٗنٹھۍ ہی۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 27, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return the translated items from the brown box containing them in your destination location throughout India or Nepal area respectively)."} +{"id": "bench_0386", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I want food.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 12, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس یژھان کھین چُن۔"} +{"id": "bench_0387", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Drilling on the Akie property by Canada Zinc Metals since 2005 has identified a significant body of baritic-zinc-lead-silver SEDEX mineralisation known as the Cardiac Creek deposit.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 181, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "۲۰۰۵ پؠٹھ کینیڈا زنک میٹالز کی طرفہٕ ایکی پراپرٹی پر ڈرلنگ چھ باریتک زینک لیڈ سلور SEDEX معدنی کاری ہنز ایک اہم جسمانیاتی شناخت کرمت یس کارڈیک کراک ڈیپاذیو"} +{"id": "bench_0388", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "انتہٲئی پرجوش تہٕ دلکش رنگٕک پنکھ وٲلۍ مکاز طوطن ہنٛز لگ بگ ۲٠ قٕسمہٕ چِھ لبنہٕ یوان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 86, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Approximately 20 species of highly excited and charming wingযুক্ত maize parrots are recognized throughout India.\""} +{"id": "bench_0389", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I stand up.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 11, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس کھڑا گَژھان۔"} +{"id": "bench_0390", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "If every child could drift to sleep feeling wrapped in the love of their family – and God's love — this world would be a far more gentle and better place.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 154, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اگر ہر بچہٕ پرعزم احساس سٟتۍ سوچیتھ ز تِم چِھ خاندانس اور خدا کِس لوٗٹس سٲتھی س٨تۍ وابستہٕ تو یہ دُنیا ہا کے طور پٲٹھ ایک مقام اعلیٰ تہ بہتر"} +{"id": "bench_0391", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سرینگر-جموں قومی شاہراہس پٮ۪ٹھ چھِ خراب موسمی حالاتَو باووٚجوٗد وادی کشمیرَس باقی مُلکَس سۭتۍ جوڑَن واجٮ۪ن ٹریفک ہٕنٛز نقل و حرکت جٲری۔\nٹریفک حکامَو ووٚن زِ قومی شاہراہَس پٮ۪ٹھ چھِ مُسافِر گاڑٮ۪ن ہٕنٛز دۄن طرفن ہٕنٛز نقل و حرکت جٲری، مگر بٔڑٮ۪ن گاڑٮ۪ن (مال بردار گاڑِیَن) چھُ آز یعنی جُمعہ دۄہ جموں پٮ۪ٹھٕ سری نگر گژھنُک اجازت۔\nتٔمۍ ووٚن زِ قومی شاہراہَس پٮ۪ٹھ مہاد، کیفیٹیریا تہٕ رامبن ہَس منٛز اَکہِ لینہٕ کہِ وجہ سۭتۍ چھُ ٹریفک منظم طریقہٕ سۭتۍ چلاونہٕ یِوان۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 462, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Despite severe weather conditions on SrinagarJammu national highway traffic movement remains organized via single lanes in Mahad, Kafeeteria and Ramban areas of Jammu.\" Traffic officials said that traffic movement continues on both sides of the national highway but vehicles carrying passengers (traffic vehicles) are allowed from Jammu to Srinagar today i.e"} +{"id": "bench_0392", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We generate a signal with the same frequency as frequency of pins 5 and 6 and after each pulse we change the duty cycle(values from the vector) with an interrupt.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 162, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "أس چِھ پن ५ تہ ۶ کی فریکوینسی سٟتۍ ایک ہی فریکونیسی سگنل پیدا کران اور ہر پُلِس پتہٕ چُھ ہم وقفہٕ س٠تؠ ڈیوٹی سائیکل (ویکٹر کی اقدار)"} +{"id": "bench_0393", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اِقتدارس منٛز حکوٗمتس ہیٚچھِنایہِ تلنگانہُک عوام منٲسب سبق۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 59, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only by means of their own example can we teach Telangana people proper lessons from power and government.\"\"\""} +{"id": "bench_0394", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You should try again, or you will not learn.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 44, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تۄہہ پز دوبارہ کوشش کرٕنۍ، نَتہٕ ہیٚچھو تۅہہِ کینٛہہ تہِ۔"} +{"id": "bench_0395", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The terminating lobe of the opercle is slightly emarginated behind, the membrane projecting immediately above the notch in the form of a short salient point.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 157, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "آپَرکلک ٹرمینیٹنگ لوب چُھ کَم کھوکھرِ یوان کرنہٕ پَتہٕ میمبرین چُہ ایکِس لۄکٹ ساِلنٹ پوائنٹ کی شکلہ منٛز ناچس ہیوٚر کُن فوری طور"} +{"id": "bench_0396", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We can leave now, or we can stay longer.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اَسی چُھ یِوان دِنہٕ بَس یا اَمِہ سٟتۍ کینٛہہ زِیادَے عرصس خٲطرٕ روزُن۔"} +{"id": "bench_0397", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میک ان انڈیا چُھ ہندوستانَس اکھ عالمی مصنوعات سٲزی مرکز بناونہٕ خٲطرٕ پوٗرٕ پٲٹھۍ تیار ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 88, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Make India fully ready for India becoming a global product leader in manufacturing products globally.\"\"\""} +{"id": "bench_0398", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر کِس رٮ۪تہٕ کٲلِس راز دٲنۍ سرینگر کِس نوابزار علاقَس منٛز نار لگنہٕ کِس واقعَس منٛز گٔیہِ کم از کم شےٚ دُکان جلٲوِتھ، ییٚلہِ زِ نار بنٛد کرنٕچ کاروٲیی دوران گٔیہِ أکِس فائر مینَس سۭتۍ زٕ نفر زخمی\n\nخبرو مُطٲبِق گوٚو بۄموارِ دۄہ شامَس پایان شہر کِس نوا بازار علاقَس منٛز تَمہِ وِزِ سنسنی ییٚلہِ أکِس منزلہٕ شاپنگ کمپلیکسَس منٛز نار لوٚگمُت اوس، ییٚمۍ انا فاناہَس منٛز واریٛاہ دُکان لٔگۍ۔\n\nیہِ چھُ پتہ لبنہٕ یِوان زِ نار تہٕ ہنگٲمی اہلکار وٲتہِ فوراً موقعہٕ پٮ۪ٹھ تہٕ کٔرٕن نار بنٛد کرنٕچ کاروٲیی شُروٗع، مگر نار لگنہٕ کِس واقعَس منٛز گوٚو شیٚن دُکانَن نۄقصان ووتمُت۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 576, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "At least six shops were damaged during the incident which started fire in an area of Nawab Zare located near Srinagar the summer resort of Jammu and Kashmir while firefighters worked to bring the fire under control during rescue operations involving one firefighter injured two persons from a shop situated at Ana Fana located inside the shop building complex near Srinagar city"} +{"id": "bench_0399", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She likes music, and she sings well.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ موسیقی پسند کران، تہٕ سۄ چھ سؠٹھا گزوان۔"} +{"id": "bench_0400", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وَرماونٛٹَس منٛز چھُ کھاندرٕچ قانوٗنی وٲنٛس 18 ؤری۔ زٕ لوٗکھ یِمَن ہُنٛد وٲنٛس کم از کم 18 ؤری آسہِ، صٔحیٖح ذِہن آسہِ، تہٕ یِمَن ہُنٛد نزدیٖکی رِشتہٕ آسہِ نہٕ، تِم ہیٚکَن وَرماونٛٹَس منٛز سِوِل کھاندرٕچ لایسَنٛس حٲصِل کٔرِتھ۔\n\nمگر یُس تہِ کٲنٛسہِ نِگرٲنی منٛز آسہِ، سُہ ہیٚکہِ نہٕ نِگرٲنَس سٕنٛدِ لیٚکھِتھ اِجازتہٕ بغٲر کھاندر کٔرِتھ۔ اَتھ سۭتۍ سۭتۍ، اگر دۄشوٕنی منٛزٕ اَکھ وۄنۍ کٲنٛسہِ بیٚیِس سۭتۍ کھاندر کٔرمُت آسہِ یا کٲنٛسہِ بیٚیِس سۭتۍ سِوِل یوٗنِینَس منٛز شٲمِل آسہِ، تِم ہیٚکَن نہٕ قانوٗنی طور کھاندر کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 517, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "In marriage regulations laws require both parties to be at least eighteen years of age have sufficient knowledge and fulfill satisfactory conditions can provide for legal marriage regulations require both partners to be eighteen years old may enter into civil marriage with anyone else or join civil unions with anyone they wish can fulfill satisfactory requirements legally marriage regulations requires both partners eighteen years"} +{"id": "bench_0401", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گٲنٹھ کیا زانہِ آیرِ وسُن\nمٲنتھ کیا زانہِ موٚدُر داتھ\nشٲنٹھ کیا زانہِ لَلنے رسُن\nہٲنٹھ کیا زانہِ پرٛسُن کراٹھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 109, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Manath will know it, Irith will know It will be sweet Dad What does Shanth mean How can I understand It feels good Manath knows it Well understood Dad What did Shanth means Ask me This is good Maneth knows it Okay dad gets the point Manath says What does this mean Shanth says Ask"} +{"id": "bench_0402", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚلہِ تُہُنٛد ہوٗن سکنٛک سٕنٛدِ سپرے سۭتۍ چھُ گژھان، تیٚلہِ چھُ اَتھ اَکھ قدم بہ قدم عمل:\n- پنُن ہوٗن نٮ۪بر کٔرِو تہٕ دِوُن اَتھ نہٲوِتھ۔ اَتھ سۭتۍ چھُ سکنٛک سپرے تُہُنٛدِس گَھرَس منٛز دٲخِل گژھنَس نِش روٗکاونَس منٛز مدد مِلان [1]۔\n- رَبڑ دستانہٕ تہٕ پُرانہِ لُکُٹ پٔتھۍ کٔرِو پَنُن سکنٛک سپرے نِش بچاونہٕ خٲطرٕ [1]۔\n- اَکھ حِصہٕ ڈِش صابُن ترٛیٚن حِصَن ہائیڈروجن پیروکسایڈَس سۭتۍ مِلاوِو اَکھ بالٹی منٛز [1][2]۔\n- یہِ مِشرَن پنُن ہوٗنِس کھالَس پٮ۪ٹھ لاگو کٔرِو تہٕ اَتھ مالِش کٔرِو۔ ہوٗنِس اَچھَن تہٕ کَنَن نِش بچاونہٕ خٲطرٕ کٔرِو احتیاط [1][2]۔\n- یہِ مِشرَن تھاوِو پنُن ہوٗنِس کھالَس پٮ۪ٹھ 5-10 منٹَن خٲطرٕ [1][2]۔\n- پنُن ہوٗن آبَس سۭتۍ چھیٚنِو چھیٚنِو [1][2]۔\n- یُتھ تام سکنٛک سپرے ختم گژھہِ، تیٚتھ تام کٔرِو یہِ عمل دۄبارٕ [1][2]۔\n- ییٚلہِ سکنٛک سپرے ختم گژھہِ، تیٚلہِ ہیٚکو تُہۍ پنُن ہوٗن پنُن عام شیمپو سۭتۍ نہٲوِتھ [1][2]۔\n\nسکنٛک چھُ نہٕ ہوٗنَن خٲطرٕ نقصان دہ۔ تاہم، اگر سکنٛک سپرے تِہنٛدٮ۪ن اَچھَن منٛز گژھہِ، تیٚلہِ ہیٚکہِ اَتھ سۭتۍ اَچھَن منٛز سۄج تہٕ وۄزُل گژھِتھ تہٕ کٔرِتھ ہیٚکہِ کارنیاہَس نُقصان۔ اگر ہوٗن سپرے ساہَس منٛز ہیٚکہِ، تیٚلہِ ہیٚکہِ تٔمِس ساہَس منٛز جلن گژھِتھ۔ اگر یہِ تٔمِس مُنہَس منٛز گژھہِ، تیٚلہِ ہیٚکہِ اَتھ سۭتۍ مِٹہٕ، لال گژھُن تہٕ اُلٹی گژھِتھ [1]۔\n\nاگر تُہُنٛد ہوٗن چہِتھ چھُ سپرے کَرنہٕ آمُت، تیٚلہِ کٔرِو ویٹرنری ڈاکٹرَس نِش گژھنُک خیال تاکہ دَرد تہٕ جلن نِش بچاوِتھ ہیٚکو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1310, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "While your dog gets vaccinated against rabies avoid having them get bitten by animals such as dogs or cats [1]."} +{"id": "bench_0403", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَکھ لۄکُٹ سیل تہٕ اَکھ عام گَرٕچ سیل چھِ رئیل اسٹیٹَس مَنٛز دۄہ مُختٔلِف نِظام۔ یِم چھِ دۄن درمیان کیٚنٛہہ مُختٔلِف فرق:\n1. وٲلِتھ سُنٛد مقصد\n- لۄکُٹ سیل: ییٚلہِ گَرٕ مالِک جٲیِد اَتھ رَقَمَس خٲطرٕ وٲلِتھ چھُ یۄس گَرٕ کِس قَرضَس پٮ۪ٹھ دِنہٕ وٲلِس رَقَمَس کھۄتہٕ واریاہ کم چھُ، اَتھ چھُ لۄکُٹ سیل ونان [1][2][3][4]۔ گَرٕ مالِک چھُ جٲیِد اَتھ خٲطرٕ وٲلِتھ کَران زِ سُہ چھُ مٲلی مُشکلاتَن ہُنٛد سامنہٕ کَران تہٕ گَرٕ کِس قَرضَس کھۄتہٕ چھُ موٗجوٗدٕ بَزارَس زیٛادٕ رَقَم دِنہٕ وٲلِس۔\n- عام گَرٕچ سیل: ییٚلہِ گَرٕ مالِک جٲیِد بَزار قَرضَس یا اَتھ کھۄتہٕ زیٛادٕ رَقَمَس پٮ۪ٹھ وٲلِتھ چھُ، تیٚلہِ چھُ یہِ اَکھ عام گَرٕچ سیل۔ یہِ سیل ہیٚکہِ مُختٔلِف وَجہَن سۭتۍ گژھِتھ تہٕ نہٕ زِ سُہ چھُ مٲلی مُشکلاتَن ہُنٛد سامنہٕ کَران [1]۔\n2. قرض دِنہٕ وٲلِس ہُنٛد شِرکَت\n- لۄکُٹ سیل: لۄکُٹ سیلَس مَنٛز چھُ قرض دِنہٕ وٲلِس ہُنٛد شِرکَت اہم۔ لۄکُٹ سیلَس مَنٛز چھُ گَرٕ مالِکَس قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرُن ضروٗری زِ سُہ کَرِ گَرٕ قَرضَس کھۄتہٕ کم رَقَمَس پٮ۪ٹھ وٲلِتھ۔ اَصٕل قَرض دِنہٕ وٲلِس چھُ سیلٕچ سٲرِوٕے رَقَم مِلان [1][2][3][4]۔\n- عام گَرٕچ سیل: اَکھ عام سیلَس مَنٛز چھُ وٲلِتھَس جٲیِدٕچ لین دینَس پٮ۪ٹھ زیٛادٕ قٲبوٗد آسان۔ قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرنٕچ ضروٗرت چھُنہٕ [1][2]۔\n3. سیلٕچ رَقَم\n- لۄکُٹ سیل: لۄکُٹ سیلَس مَنٛز چھُ سیل عام طور پٮ۪ٹھ بَزار رَقَمَس کھۄتہٕ کم آسان تہٕ جٲیِدٕچ لین دینَس مَنٛز ہیٚکَن واریاہ شرٲیِط شٲمِل آسِتھ [1][2][3]۔\n- عام گَرٕچ سیل: گَرٕ مالِک ہیٚکہِ جٲیِد موٗجوٗدٕ بَزار رَقَمَس مُطٲبِق وٲلِتھ۔\n4. سیلٕچ مُدت\n- لۄکُٹ سیل: لۄکُٹ سیل چھِ خریدار تہٕ وٲلِتھ دۄشوٕنی خٲطرٕ پٮ۪چیدٕ، وقت طلب لین دین۔ خریدار ژھانٛڈنہٕ تہٕ قرض دِنہٕ وٲلِس نِش مَنٛظوٗری حٲصِل کَرنَس مَنٛز ہیٚکہِ ہفت", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1614, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اصِل کرُن چھُ مُشکِل [1]।"} +{"id": "bench_0404", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Every minute of its existence, a living cell must assess and analyze myriad bits of information—everything from the temperature of its environment to the chemical makeup of its surroundings.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 190, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "پننہِ موجودگی ہند ہر لمحہ چُھ ایکہ زندٕ خلیات کِس ماحول کِس درجہ حرارتس تاثریت تام کیمیائی ساختیاتی تنوع ہیتیک شاندار انتخاب تشکیلات چہ مطالعہ اور تجزیہ کرُن ضروری۔"} +{"id": "bench_0405", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وادی کٔشیٖرِ منٛز چُھ سخت ونٛدٕ جٲری تِکیٛازِ رٲژ ہُنٛد درجہٕ حرارت چھُ لگاتار لُکن ہِنٛدِ خٲطرٕ مُختٔلِف مُشکِلات پٲدٕ کَران۔\n\nمحکمہٕ موسمیات کِس ترجمانَس مُطٲبِق آو رٮ۪تہٕ کالہِ رازدٲنی سرینگرَس منٛز کم از کم درجہٕ حرارت 2.4 ڈگری سیلسیس ریکارڈ کرنہٕ، یُس موسمٕچ بیٛاکھ اکھ سرد رات چھےٚ۔\n\nوادی ہٕنٛدِس مشہوٗر سیاحتی مُقام پہلگامَس منٛز آو رٲژ ہُنٛد درجہٕ حرارت منفی 3.8 ڈگری سیلسیس ریکارڈ کرنہٕ، ییٚلہِ زَن گُلمرگہِ منٛز آو کم از کم درجہ حرارت 0.5 ڈگری سیلسیس ریکارڈ کرنہٕ۔\n\nکپواڑہ کِس سرحدی ضِلعس منٛز آو کم از کم درجہٕ حرارت منفی 2.4 ڈگری سیلسیس ریکارڈ کرنہٕ، ییٚلہِ زن قاضی گنٛڈ قصبس منٛزیتھ گیٹ وے آف کشمیر ونان چھِ، اوس رٲژ ہُنٛد درجہ حرارت منفی 2.3 ڈگری سیلسیس۔\n\nأتھۍ دوران اوس وادی منٛز بٹہٕ وارِ دۄہ صبحٲے پیٹھٕ آسمان صاف تہٕ اتہِ اوس ہلکہٕ تاپھ تہِ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 759, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Also during Monday morning since sky was cleared from Kashmir due to moderate snowfall it became slightly sunny in Srinagar which is the capital of Jammu and Kashmir District spokesman of محکمہ موسمیاتیات says Srinagar recorded minimum temperature of 2 degrees Celsius which is another cold night of weather season Kashmir is termed as Gateway of Kashmir Jammu and Kerala"} +{"id": "bench_0406", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "فیس بک چھُ اکھ سمٲجی نیٹ ورکنگ ویب سائٹ یُس صارفینَن دوستَن تہٕ خاندانَس سۭتۍ جُڑنہٕ، فوٹو تہٕ ویٖڈیو شیئر کرنہٕ تہٕ گرُپن تہٕ کمیونِٹین منٛز شٲمِل گژھنٕچ اِجازت چھُ دِوان۔\n\nفیس بک آو فروری 2004 ہَس منٛز ہارورڈ یوٗنیورسٹی منٛز مارک زکربرگ تہٕ ایڈورڈ سیورینَن اکھ سکوٗل پٮ۪ٹھ مبنی سمٲجی نیٹ ورک پٲٹھۍ بناونہٕ۔ صارفینَن چھُ سائن اپ کرُن تہٕ اکھ پروفایل بناوُن۔ تُہۍ ہیٚکو پتہٕ پنٛنٮ۪ن دوستَن، سٲتھیَن تہٕ خاندانَس سۭتۍ جُڑِتھ تہٕ تِمن سۭتۍ فوٹو، ویٖڈیو تہٕ ریل شیئر کٔرِتھ۔\n\nاگر تُہُنٛد پنُن کاروبار چھُ، تُہۍ ہیٚکو پنٕنۍ مصنوعات یا خدمات آن لایِن تہِ وٲتھِتھ، پنٕنِس سامعینَس نشانہٕ بناونہٕ خٲطرٕ اشتہار بناوِتھ۔ فیس بک چھُ گرُپ پیجن، کاروبٲری پیجن تہٕ کمیونِٹین سپورٹ کران، تہٕ اَتھ چھُ پنُن مارکیٹ پلیس۔\n\nفیس بک چھُ صارف دوست تہٕ اِستعمال کرنہٕ خٲطرٕ آسان۔ فیس بکَس منٛز شٲمِل گژھُن ہیٚکہِ تُہٕنٛدٮ۪ن دوستَن سۭتۍ رابطس منٛز روزنُک اکھ اَصٕل طٔریٖقہٕ ٲسِتھ، تہٕ کمیونِٹین تہٕ گرُپن منٛز ہم خیال افراد ژھانٛڈِتھ۔ تاہم، فیس بکَس حَوالہٕ سۭتۍ چھِ رازدٲری تہٕ حِفاظتی خدشات۔ اَتھ کِنۍ، فیس بکَس پٮ۪ٹھ صرف اکھ پروفایل بناوِو اگر تُہۍ اَتھ سۭتۍ آرام دہ چھِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1052, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Facebook is a social networking website that allows users to connect with friends and family share photos and videos, and engage in groups and communities. Users create profiles by signing up and filling out information about themselves including their birthday and address they want access to. You can choose to connect and hang out with others you know through Facebook groups"} +{"id": "bench_0407", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پی ڈی پی کِس سینئر لیڈر تہٕ ایم ایل اے وحید پاراہَن چھُ کان کنی سۭتۍ بٔڑِس پیمانَس پٮ۪ٹھ ماحولیٲتی تبٲہی پٮ۪ٹھ تشویش ظٲہر کٔرمٕژ تہٕ ووٚنُن زِ جموں و کشمیرَس منٛز چھُ اکھ بوٚڑ مافیا کان کنی کران، ییٚمہِ سۭتۍ جموں و کشمیرَس منٛز خاص طور پٲٹھۍ کشمیرَس منٛز بٔڑِس پیمانَس پٮ۪ٹھ ماحولیٲتی تبٲہی چھِ گژھان۔\n\nتٔمۍ چھِ مرکزی وزیر ماحولیات نِش جموں و کشمیرَس منٛز جٲری پروجیکٹَن ہٕنٛدِس ماحولیٲتی جٲیزَس مُتعلِق وضاحت طلب کٔرمٕژ، یَتھ منٛز سڑکہٕ، ریلوے تہٕ سرنگہٕ شٲمِل چھِ۔\n\nایم ایل اے یَن ووٚن بۄدوارِ دۄہ میڈیاہَس زِ \"جموں و کشمیرَس منٛز چھِ اکھ بٔڑ مافیا کان کنی تہٕ امہِ کان کنی تہٕ ترقی کہِ وجہ سۭتۍ چھِ جموں و کشمیرَس منٛز خاص طور پٲٹھۍ کشمیرَس منٛز ماحولیٲتی تبٲہی گژھان، تِکیٛازِ ییٚتہِ ہُنٛد ماحول چھُ نازک”۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 710, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Wajid Parah who is a PDP senior leader and MLA stated concern regarding environmental destruction due to mining stating that mining operates heavily in Jammu and Kashmir causing significant environmental destruction throughout Jammu and कश्मीर particularly in Kashmir as the environment here is delicate due to खनन activities conducted by mining leaders such as Chief Minister of Jammu andashmir Meh"} +{"id": "bench_0408", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تَس راے ہوا ساتےٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 18, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only give him water for washing clothes and food for feeding animals.”"} +{"id": "bench_0409", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دۄشوٕیو ٲس بغاوتٕچ علم نکھس تُجمٕژ تہٕ یِمن دۄشوٕنۍ اوس یقیٖن زِ خواجہِ طاروقی صٲب کرن یِمن یہِ علمتُلنَس منٛز زبردست مدد۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Both had embraced knowledge of rebellion and were convinced that Khawaja Tarquai would provide significant assistance in this regard.\"\"\""} +{"id": "bench_0410", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پہلگامَس منٛز بۄموارِ دۄہ وحشیانہٕ دہشت گردانہ حملہٕ پتہٕ کوٚر جموں و کشمیر اِنتِظامیاہَن مارنہٕ آمتین سیاحَن ہٕنٛزٕ لاشہٕ تِہنٛدٮ۪ن آبٲیی مقامَن تام واتناونہٕ خٲطرٕ خاص ہوٲیی انتظام۔\n\nحکامَو ووٚن زِ یہِ فٲصلہٕ اوس مُتٲثِر خاندانَن فوری مدد فراہم کرنہٕ باپتھ \"انسٲنی تہٕ فوری اقدامات” کِس حصہٕ پٲٹھۍ نِنہٕ آمُت۔\n\nذٔرایعو مُطٲبِق آیہِ حملَس منٛز ہلاک گژھَن والٮ۪ن 26 نفرَن ہٕنٛز شناخت کرنہٕ تہٕ ضروٗری قونوٗنی کاروٲیی پوٗرٕ کرنہٕ پتہٕ تمام لاشہٕ سرینگر کِس پولیس کنٹرول رومس (پی سی آر) منتقل کرنہٕ، ییٚتہِ تِمَن پوٗرٕ سرکٲری اعزاز سۭتۍ الوداع کرنہٕ آو۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 551, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Following Monday’s brutal terrorist attack in Pahalgam Jammu and Kashmir authorities arranged for specialized airlift operations to transport victims bodies to their families destinations after identifying those killed in the attack making necessary legal procedures throughout the entire ceremony where they received a funeral with full official honours from Srinagar Police Control Room (PCR)."} +{"id": "bench_0411", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "زٮ۪و ٲسٕس رامہٕ ہوٗنۍ سٕنٛدۍ پٲٹھۍ ٲسہٕ منٛز پھٔٹِتھ درٛامٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 61, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Their hearts had been broken since they had separated at Ramas deathBut their hearts could not be separated anymore as much as those of Hram Rah were separated after their marriage ended in divorce or separation from her husband during pregnancy and childbirth respectively during Ramadan months)."} +{"id": "bench_0412", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کرسمسُک سارِوٕے کھۄتہٕ بٔڑ گؠوُن چھُ ذاتی ترجیحُک اَکھ معاملہٕ۔ تاہم، یِم چھِ سارِوٕے کھۄتہٕ زیٛادٕ مَقبول کرسمس گؠوُن [1]:\n1. آل آی وانٹ فار کرسمس اِز یوٗ بائی ماریہ کیری\n2. وایٹ کرسمس بائی بِنگ کراسبی\n3. لاسٹ کرسمس بائی ویم!\n4. کرسمس (بیبی پلیز کَم ہوم) بائی ڈارلین لوٗو\n5. راکِن اراوُنٛڈ دی کرسمس ٹری بائی برینڈا لی\n6. اِٹس دی موسٹ وونٛڈر فُل ٹایم آف دی ییَر بائی اینڈی ولیمز\n7. جِنٛگل بیلز بائی جیمز لارڈ پیئرپونٹ\n8. ڈو دی نو اِٹس کرسمس؟ بائی بینٛڈ ایڈ\n9. سائلینٹ نایٹ بائی فرانٛز زیوَر گُروٗبَر\n10. او ہولی نایٹ بائی ایڈولف ایڈم\n\nیِم گؠوُن چھِ سٲرِوٕے وٲنٛسہِ ہٕنٛدٮ۪ن لوٗکن ہٕنٛدِ خٲطرٕ مَقبول، تہٕ یِم چھِ وقتہٕ کِس امتحانَس پٮ۪ٹھ قٲیِم روزِمٕتۍ۔ یِم چھِ یقیٖنی طور تُہنٛدِ چھُٹہِ ہٕنٛدِس جذبس منٛز تھاوان تہٕ تُہنٛدِ کرسمسَس زیٛادٕ جادوٗئی تہٕ دِلکش بناوان۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 765, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "These songs are popular for people of all ages and while they stand the test of time they certainly put their feelings on holiday making your Christmas more magical and enjoyable than ever before.\"\"\""} +{"id": "bench_0413", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ویچھَر نِش بچاوُک اہم مقصد چُھ کم وزن برقرار تھون تِہ۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 54, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Another important goal of weight management is maintaining a balanced diet intake.\""} +{"id": "bench_0414", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We remember the events of our childhood.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 40, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ پننس بچپنک واقعات یاد یوان کرنہٕ۔"} +{"id": "bench_0415", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was windy, so the trees moved fast.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ہوا اوس تیز لہذا کلۍ کٔٹۍ گٔیہ جلدی منتقل۔"} +{"id": "bench_0416", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لۄکچہ بَونٕچہِ کَجے\nاَکجے کرٮ۪ن سِوو\nسۭتۍ جاناوارن ژٔجی\nتِتُھے مےٚ ور دِتو دِیوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 80, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Give me a little boy Let him grow up and be like you The bird cried out loud Do not deny this request please accept it willingly or unwillingly I pray you understand my reason for requesting such a wonderful gift grant me freedom of movement around every place throughout your kingdom please allow me liberty within your will This wonderful gift may"} +{"id": "bench_0417", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "However, a neighbour can complain to local authority about your hedge, if its height 'reduces the amenity value' of their garden, by reducing light to windows (not an issue, the gardens are too long) or denying them winter sunshine.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 232, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تاہم، ایکہ ہمسایہ ہیٛکہ لوکل اتھارٹی یس شکایت کٔرتھ ز تہنز ہیج چھےht تمن ہند باغچ سہولت قدر کم کران اگر یہ روشنی دروازن تکیز کم چِھ یا ونڈرس آفتاب سیت انکار کرت"} +{"id": "bench_0418", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "It was dark, but we walked anyway.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 34, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اندھیرا اوس مگر أسۍ پکن وینس ہیچیں چلیے۔"} +{"id": "bench_0419", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہ ہَن ووٚن از برٛٮ۪سوارِ دۄہ زِ دِلہِ منٛز ہولناک دھماکہٕ کٮ۪ن مجرمَن گژھہِ سارِوٕے کھۄتہٕ شٔدیٖد سزا دِنہٕ یُن۔ وۅنۍ گو٘و تٔمۍ دِیُت زور زِ پوٗرٕ کٲشٕر آبٲدی ملی ٹنسی سۭتۍ جوڑُن چھُ پوٗرٕ پٲٹھۍ غلط۔ صحافیَن سۭتۍ کتھ باتھ کٔرِتھ ووٚن عمر عبداللہ ہَن زِ اَتھ حملَس منٛز چھِ صرف کینٛہہ لُکھ ذِمہٕ وار۔ یِم مُجرِم چھِ تِمن گژھِ سخت سزا دِنہٕ یُن، مگر بےٚ گناہ لوٗکھ گژھن نہٕ متٲثر گژٕھنۍ۔\n\nتمہِ وو٘ن زِ اتھ واقعس کٲژاہ تہِ مذمت کرو سۅ چھنہٕ زانہہ تہِ کٲفی۔ یِتھ پٲٹھۍ بے گناہ شہرین ہُنٛد بے رحمانہٕ قتل چُھ انتہٲیی شرمناک تہٕ قابل مذمت۔ یِتھٮ۪ن عملن ہُند ہیکہِ نہٕ کانہہ جواز ٲسِتھ۔ تفتیش چھِ جٲری تہٕ حقیٖقت یِیہِ برونہہ کُن۔\n\nیہِ بیان آو تَمہِ وِزِ دِنہٕ ییٚلہِ 10 نومبر دِلہِ ہِنٛدِس لال قِلعَس نزدیٖک أکِس کارِ منٛز دھماکہٕ گوٚو ییٚمہِ کِنۍ 12 نفر ہلاک تہٕ باقٕی واریاہ زخمی سپٕدۍ۔ گاڑِ اوس ڈاکٹر عمر نبی چلاوان یُس جنوٗبی کشمیر پلوامیُک چُھ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 881, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jammu and Kashmir Chief Minister Omar Abdullah said today Tuesday that those responsible for the horrific blast in Delhi should be punished severely However he stressed that linking entire Kashmir population with terrorism was completely wrong saying This attack has been attributed largely to criminals The people here who are innocent should not be affected by terrorism altogether wrong statements released by talking"} +{"id": "bench_0420", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She reads daily.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھےٚ روزانہٕ پران۔"} +{"id": "bench_0421", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیر پردیش کانگریس کمیٹی (جے کے پی سی سی) کِس صدر طارق حمید قاراہَن چھُ نیشنل کانفرنس (این سی) ذٔریعہٕ عمر عبداللہ قانون ساز پارٹی ہُنٛد چیئرمین نامزد کرنٕچ تصدیٖق کٔرمٕژ۔ کشمیر انڈیپت نیوز سروس (کے این ایس) سۭتۍ کَتھ کران کٔر کارا ہَن زِ کانگریس چھِ این سی یَس سۭتۍ اتحاد کرنُک روڈ میپ ختم کرنہٕ برٛونٛہہ پننٮ۪ن قانون سازَن سۭتۍ اَہَم میٹنگہٕ کران۔ یہِ چھُ اصل زِ نیشنل کانفرنسٕکۍ قانون سازَو چھُ عمر عبداللہ قانون ساز پارٹی ہُنٛد چیئرمین منتخب کوٚرمُت، ییٚمیُک مطلب چھُ زِ سُہ بنہِ جموں و کشمیرُک بیٛاکھ وزیر اعلیٰ”۔ تٔمۍ کٔر تصدیٖق زِ سُہ یِیہِ پگہہ تام سری نگر واپس تہٕ امہِ پتہٕ یِیہِ جلدٕیہ کانگریس لیجسلیٹو پارٹی ہُنٛد اجلا", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 638, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "President of Jammu and Kashmir Pradesh Congress Committee (JKPCC) Tariq Hamid Karah has confirmed that National Conference (NC) will nominate Omar Abdullah as chairman of the legislative party before reaching an agreement with the Kashmir Independent News Service (KNS). Karah said speaking to Kashmir I Congress intends to hold important meetings"} +{"id": "bench_0422", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مکھن صاف کرنہٕ خٲطرٕ چھُ اکھ قدم بہ قدم گائیڈ:\n\nاجزا:\n- 1 پونٛڈ بَغیر نمک مکھن\n- اکھ بٔڑ ساس پین\n- اکھ لَڈل یا سلیٹڈ چمچ\n- اکھ چیٖز کلوتھ سۭتۍ لٲگِتھ چھاننہٕ وٲلۍ چیز\n- اکھ ہیٹ پروف جار یا کنٹینر [1]\n\nطریقہٕ کار:\n1. مکھن لۄکٕٹٮ۪ن ٹُکرَن منٛز کٔٹِو تہٕ ساس پینَس منٛز تھاوِو۔\n2. مکھن کم گرمی پٮ۪ٹھ گرم کٔرِو ییٚتہِ یہِ پگہٕ گژھہِ۔ تُہۍ ہیٚکو اَتھ مایکروویو منٛز تہِ پگہٕ کٔرِتھ اکھ پیالہ منٛز تھاوِتھ۔\n3. ییٚلہِ مکھن پگہٕ گژھہِ، گرمی میڈیم-ہائی کٔرِو تہٕ اَتھ سُہل پٲٹھۍ گرم کٔرِو۔\n4. ییٚلہِ مکھن سُہل پٲٹھۍ گرم گژھہِ، اَتھ سطحس پٮ۪ٹھ اکھ سفید فوم بَنہِ۔ لَڈل یا سلیٹڈ چمچ سۭتۍ فوم کٔڈِو۔\n5. مکھن زیٛادٕ گرم کرنہٕ نِش بچِو، ورنہ یہِ گژھہِ بۄنٛد تہٕ اَتھ گژھہِ کڑوٕ ذائقہٕ۔\n6. چیٖز کلوتھ سۭتۍ لٲگِتھ چھاننہٕ وٲلۍ چیز سۭتۍ صاف کٔرمُت مکھن احتیاط سۭتۍ ہیٹ پروف جار یا کنٹینرَس منٛز تھاوِو۔\n7. چھاننہٕ وٲلۍ چیزَس منٛز دۄدٕ کٮ۪ن ٹھوٗس چیزَن پَتہٕ تھاونہٕ خٲطرٕ احتیاط کٔرِو۔\n8. صاف کٔرمُت مکھن ٹھنٛڈٕ گژھنہٕ دِوِو۔ اَتھ ریفریجریٹ کٔرِو [1]۔\n\nصاف کٔرمُت مکھن ہیٚکہِ 2-3 رٮ۪تَن تام ریفریجریٹَرَس منٛز تھاونہٕ یِتھ۔ اَتھ ہیٚکہِ 6 رٮ۪تَن تام فریز تہِ کٔرِتھ۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1048, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Keep clean butter refrigerated for 6 months until it starts to freeze at the bottom of bottles or cans with cheese covered with cheesecloth tied tightly around them using a heatproof jar or container.[9]"} +{"id": "bench_0423", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بنگہٕ کٲنِس انبر زیوٗٹھٕے\nوِرٕ کٲنِس پھل نو بوٚوے\nگورٕ کٲنس انبر میوٗٹھُے\nوتہٕ کٲنس اندوہ پیٚے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 94, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Bung is like a stone; Anbar is like sand; Gor is like flour; White is like sugarcane And whata is like rice.\""} +{"id": "bench_0424", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کندو کٔرِو نگر نٲژ\nژلہٕ نو بانڈ تہٕ لانٛژ کھٮ۪تھ\nاَدٕ اَندٕ نَو نہٕ تار، پُل صرٲژ\nپیٚیو اَٹکہِ داہ بٲژ ہٮ۪تھ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 108, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Make a round trip around here Get some coffee eat some tea And maybe try eating seafood dishes at restaurants like seafood restaurant An outlets along with seafood products such as shrimp cocktail prawn cocktail etc This is what happens when you travel around Australia without visiting mainland Australia during summer months July August and September Australia has warm summers and cold winters Australia"} +{"id": "bench_0425", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She writes stories.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ چھ دٔلٟل لیکھان۔"} +{"id": "bench_0426", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وسطی کشمیر کِس بڈگام ضلعہٕ کِس واگورا علاقَس منٛز گٔیہِ بَٹہٕ وارِ دۄہ رٲژ نار لگنہٕ کِس أکِس بٔڑِس واقعَس منٛز ژور رِہٲیشی مکان۔\nفائر اینڈ ایمرجنسی سروسز ڈپارٹمنٹٕکۍ أکۍ اہلکارَن ووٚن زِ آتھٕوارِ تہٕ ژٔنٛدٕروارِ دۄہ درمیٲنی رٲژ گٔیہِ بڈگام کِس واگورا علاقہٕ کِس گنائی محلس منٛز أکِس گَھرٕ پٮ۪ٹھٕ نار۔\nتٔمۍ ووٚن زِ نارَس منٛز گوٚو اکھ زٕ منزلہٕ مکان تہٕ ترٛےٚ اکھ منزلہٕ مکان", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 375, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A fire broke out at a house in Ganai Mahal area of Budgam district on Thursday night in an incident involving four residential houses near Wagoora area of Srinagar city limits within Srinagar city centre limits within Jammu city limits Srinagar city center from Fire and Emergency Services Department officials said one official stated that fire broke started up at"} +{"id": "bench_0427", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یہِ میٚقدار یا حصہٕ چھِ کھیٚنہٕ وٲلۍ مقرر کران، غٕذا تیار کرن وٲلۍ چھِ تیار کران یا فوڈ انڈسٹری چھِ پنُن مال کٕنٛنہٕ خٲطرٕ بناوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 130, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "This quantity or portion is determined by consumers producers prepare foods or the food industry produces goods for sale."} +{"id": "bench_0428", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سۄ ٲس روبودٕ گٲمٕژ تہٕ انتقام کِس اَتھ نارس ٲس مُدیہِ گٔنڈۍ گٔنڈۍ وُچھان۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "She was paralyzed and looked at this amazing miracle happening around her like a child watching fire with emotions filled with revenge taking place inside him every moment of the tragedy unfolding before her eyes.\"\"\""} +{"id": "bench_0429", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تھینکس گیونٛگ خٲطرٕ اَکھ مِثال ٹرکی بناونہٕ خٲطرٕ چھُ اَتھ منٛز اَکھ قدم بہ قدم رَہنُمٲیی:\n1. صٔحیٖح ٹرکی ژھانٛڈِو: صٔحیٖح سائزٕچ ٹرکی خریٖدِو۔ تُہؠن گژھہِ پرٛٮ۪تھ کٲنٛسہِ خٲطرٕ تَقریٖبَن 1.5 پونٛڈ ٹرکی درکار۔ اَتھ کِنۍ اگر تُہؠ 8 لوٗکَن خٲطرٕ چھِو کھؠوان، تیٚلہِ خریٖدِو 12 پونٛڈ ٹرکی [1].\n2. ٹرکی صٔحیٖح پٲٹھۍ پگھلاوِو: ٹرکی پگھلاونُک سارِوٕے کھۄتہٕ بۄڈ طٔریٖقہٕ چھُ ٹرکی ریفریجریٹرَس منٛز تھاوُن۔ پرٛٮ۪تھ 5 پونٛڈَن خٲطرٕ، تھاوِو اَتھ 24 گنٛٹَن خٲطرٕ ریفریجریٹرَس منٛز پگھلُن (اَکھ 12 پونٛڈ ٹرکی خٲطرٕ لگَن 42-45 گنٛٹہٕ درکار)۔ تاہم، اگر تُہؠن نِش کم وقت چھُ، تیٚلہِ ہیٚکو تُہؠ پیکیج کَرنہٕ آمٕژ ٹرکی ٹھنٛڈِس آبَس سۭتۍ بٔرِتھ کنٹینرَس منٛز پگھلاوِتھ [1][2].\n3. ٹرکی تیٲر کٔرِو: پگھلِمٕژ ٹرکی کٔرِو پنٛنِس پیکیجِنٛگَس منٛزٕ کٔڈِتھ۔ گَردَن (یُس عام طور پٮ۪ٹھ پرٛٮ۪نٛدٕ کِس بٔڑِس گُھیرَس منٛز آسان چھُ) تہٕ گِبلیٹَن ہُنٛد بیگ (یُس پرٛٮ۪نٛدٕ کِس لۄکٹس گَردَن کِس گُھیرَس منٛز آسان چھُ) کٔرِو کٔڈِتھ۔ ٹرکی کٔرِو پیپر ٹاولَن سۭتۍ خۄش کٔرِتھ [1].\n4. ٹرکی مَزہٕ دِوِو: ٹرکی اَنٛدَر تہٕ نٮ۪برٕ لُوٗن، مَرٕژ تہٕ باقٕے کُنہِ تہِ جڑی بوٗٹی یا مَسالہٕ سۭتۍ مَزہٕ دِوِو یُس تُہؠس پَسَنٛد چھُ۔ لیموٗن، لَسُن تہٕ جڑی بوٗٹی سۭتۍ بٔرِتھ چھُ ذایقہٕ بَناونُک اَکھ بۄڈ طٔریٖقہٕ [1].\n5. اَتھ اووَن خٲطرٕ تیٲر کٔرِو: ٹرکی ہٕنٛدۍ پَنٛگہٕ کٔرِو ٹرکی ہٕنٛدِس بۄنِس کُن تھاوِتھ تہٕ ٹرکی کٔرِو اَکھ روسٹِنٛگ پینَس پٮ۪ٹھ تھاوِتھ [1].\n6. اَتھ پَکُن دِوِو: اووَن 325 ڈِگری فارن ہایٹَس پٮ۪ٹھ گَرٕم کٔرِو۔ ٹرکی کٔرِو اووَنَس منٛز تھاوِتھ، تہٕ کٔرِو کھؠنُک وقت مُشخص (15 مَنٹ فی پونٛڈ) [1].\n7. وُچھِو زِ اَتھ چھُ پَکِمُت: اَکھ میٹ تھرمامیٹر کٔرِو رانٛگہٕ ک", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1524, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "خروئٹ آو لاگ ان کرنہٕ تاکہ یہِ چَم بَبِل بَبُل بَبَل بَبل بَبلن ہنز آواز بناوِ [1]"} +{"id": "bench_0430", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "پِکسَر سٹوٗڈیوز چھُ شُرٮ۪ن تہٕ بٔڑٮ۪ن دۄشوٕنی خٲطرٕ جذبٲتی، فِکری طور پٮ۪ٹھ مُتٲثِر کَرن وٲلۍ اینیمیٹِڈ فِلِم بناونہٕ خٲطرٕ زاننہٕ یِوان۔ تِمو چھِ اکتوبر 2023 تام 27 مَقبول تہٕ تنقیٖدی طور پٮ۪ٹھ سراہنہٕ آمٕتۍ فِلِم تیار کٔرمٕژ۔ ییٚتہِ چھِ کیٚنٛہہ بہترین پِکسَر فِلِم، بغٲر کُنہِ خاص ترتیٖبَس منٛز:\n1. ٹوٮ۪ سٹوٗری (1995): یہِ بُنیٲدی فِلِم چھِ کھؠلَن ہٕنٛدِس اَکِس گرُپَس سۭتۍ مُتعلِق یِم تِہنٛدِس مالِک، اینڈی، سٕنٛدِس غٲر موٗجوٗد آسَن وِزِ زِنٛدٕ گژھان چھِ۔ ٹوٮ۪ سٹوٗری چھِ اَکھ دِلَس گرم کَرن وٲلۍ تہٕ مَزہ دار فِلِم یۄس سٲرِوَن عُمرَن ہٕنٛدٮ۪ن ناظِرینَن مُتٲثِر کَران چھِ [1].\n2. وال-ای (2008): یہِ فِکری طور پٮ۪ٹھ مُتٲثِر کَرن وٲلۍ فِلِم چھِ اَکِس مُستقبَلَس منٛز قٲیِم یَتھ منٛز زٔمیٖن غٲر آباد گٔمٕژ چھےٚ۔ وال-ای چھِ دۄن روبوٹَن دَرمیان اَکھ مَحَبَتٕچ دٔلیٖل یِمَن سیارٕ صاف کَرنَس تہٕ بحال کَرنَس سُنٛد کٲم دِنہٕ آمُت چھُ [1].\n3. فائنٛڈِنٛگ نیمو (2003): یہِ چھِ مارلِن ناوٕکِس اَکِس کلاوَن فِشٕچ دٔلیٖل یُس پنٛنِس نیٚچوِس نیموٗس ژھانٛڈان چھُ یُس اغوا کَرنہٕ آمُت چھُ۔ اَکھ کلاسک پِکسَر فِلِم، یہِ چھِ جذبات، مَزاح تہٕ ایکشنَس مِلاوان [1].\n4. اَپ (2009): یہِ دِلَس گرم کَرن وٲلۍ فِلِم چھِ کارل فریڈرِکسَن سٕنٛز دٔلیٖل وَنان، اَکھ بٔڑِس وٲنٛسہِ ہُنٛد شَخص یُس پنٛنِس گَھرَس سۭتۍ ہَزارو غُبارٕ بَنٛد کَران چھُ تہٕ جنوٗبی امریکہ کُن وُڑان چھُ [1].\n5. کوکو (2017): یہِ خوٗبصوٗرت تہٕ مُتٲثِر کَرن وٲلۍ فِلِم چھِ میکسیکن ثقافت تہٕ خاندانس اہمیت مناوان۔ کوکو چھُ میگوئل سٕنٛز دٔلیٖل وَنان، اَکھ لۄکُٹ لٔڑکہٕ یُس اَکھ موسیقار بَننُک خواب چھُ وُچھان، مگر تٔمِس سٕنٛدِس خاندانس چھُ موٗسیقی پٮ۪ٹھ پابنٛدی لٲگِتھ [1].\n6. اِنکریڈیبلز (2004): شَہَنٛدہ سُپر ہیرو مِسٹر اِنکریڈیبل تہٕ ایلاسٹِگرل چھِ بوب تہٕ ہیلن پار سٕنٛدِس طورس پٮ۪ٹھ عام زِنٛدگی گُزارنَس پٮ۪ٹھ مجبور کَرنہٕ آمٕتۍ، ییٚلہِ سٲرِوَن س", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1689, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "َتیٰ شخٕصیت ہایتھ پیش کران۔"} +{"id": "bench_0431", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted to help, but I did not know how.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 41, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چُھس یژھان مدد کَرُن، مگر مےٚ چُہ نہ پَے زِ کِتھ کٔنۍ چُس کَرُس یہِ۔"} +{"id": "bench_0432", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بھارتیہ جنتا پارٹی (بی جے پی) کوٚر اَز عمر عبداللہ سٕنٛدِس قیادتس منٛز نیشنل کانفرنس (این سی) حکومتس پیٹھ شدید حملہٕ، تہٕ ووٚن پننِس گۄڈنیُک ؤری ‘ناکامیَن ہُنٛد ؤری’ – یُس وعدٕ پھُٹراونہٕ آمُت تہٕ عوٲمی عدم اطمینانی ہُنٛد نشان زد چھُ۔ سرینگرَس منٛز پارٹی ہیڈ کوارٹرَس منٛز نامہ نگارن سۭتۍ کَتھ باتھ کٔرِتھ کوٚر بی جے پی جموں و کشمیرٕکۍ ترجمان، الطاف ٹھاکرَن پارٹی ترجمان ساحل بشیرَس سۭتۍ وزیر اعلیٰ عمر عبداللہ ہَس پٮ۪ٹھ الزام زِ سُہ چھُ اپُز منشور تہٕ خٲلی یقین دِنہٕ سۭتۍ جموں و کشمیر کین لوٗکن گمراہ کرنُک اِلزام۔ ’12 مُفت ایل پی جی سلنڈر، 10 کِلوگرام ماہانہٕ راشن، 200 یونٹ مُفت بجلی، تہٕ شیٚن رٮ۪تن انٛدر 100,000 نوکرین ہُنٛد وعدٕ کرنہٕ آمُت؟ ٹھاکرَن ووٚن زِ اکھ تہِ وعدٕ آو نہٕ پوٗرٕ کرنہٕ۔’", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 697, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The Bharatiya Janata Party BJP issued a scathing attack against today's National Conference government led by Omar Abdullah calling its first year of failure an era of disappointment marking promises broken and public dissatisfaction with Jammu and Kashmir leaders such as Al تف Thakur BJP spokesperson for Jammu and کشمیر accused Chief Minister Omar Abdullah of misleading the people of Jammu and"} +{"id": "bench_0433", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ضلعہٕ کلکٹرن ووٚن زِ سی آر آیف سکیمہِ تحت چِھ ضلعہٕ میدکس کُل ۴.۵ کرور روپین ہٕنز منظوری حٲصل گمٕژ یمیُک حلقہ اسمبلی نارائن کھیڑس چِھ کُل ۱.۶ کرور روپیہِ دِنہٕ آمژٕ چھے ییلہِ زَن کہِ این آر ڈی ڈبلیو پی سکیمہِ تحت چِھ ضلعہٕ میدکس ۵.۵ کرور روپین ہٕنز منظوری حٲصل گمٕژ یمیُک اسمبلی نارائن کھیڑٕ خٲطرٕ چِھ کُل ۷۳ لچھ روپین ہںزاجرائی چِھ عملہٕ منٛز آمٕژ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 349, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Under the CRIF scheme districts have been sanctioned a total of Rs 45 crore for Medak district while under the NRDP scheme districts has been sanctioned Rs 73 lakh for Assembly Narayan Khade totalling Rs 16 crore has been allocated for construction activities under this scheme respectively.\""} +{"id": "bench_0434", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نصر نصر سرِ کر\nکس یارٕ کرٛشکھ دِہہِ ساسے\nرَہہِ نہٕ مال مراد تہٕ بٔرژر\nیِہ ہَبا ٲرژر نکس آسے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 91, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Nasa NASA sir I wish you could return and provide assistance please sir Would it be possible for me to provide assistance if I could provide assistance through this medium of HABA ARSA NKSAS ISESAMARAH would it be feasible for me?"} +{"id": "bench_0435", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جمال نہِ أچھ آسہٕ وُنہِ اژدھا سٕنٛزن أچھن ہٕنٛدۍ پٲٹھۍ نار چھکان تہٕ رامہٕ ہوٗنۍ سٕنٛدۍ پٲٹھۍ ٲسٕس زٮ۪و پھٔٹِتھ درحامٕژ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 122, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only Jamal eyes seemed burning like fire while others were covered with tears due to grief such as those of Ram Rahun whose eyes were filled with sorrow and despair caused by their setbacks resulted in tears flowing down his cheeks through his teeth like a puppy dog would through its cheeks causing tears to flow down his teeth through his cheeks causing"} +{"id": "bench_0436", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژٮ۪تَس بفن ہاریے\nژٮ۪تس بفن ہاریے\nیاونہٕ مد، اہنکاریے\nبوٚرُم کیا اندھکاریے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 73, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return if they provide evidence against them which proves their innocence and reduces their expectations from you.\"\"\""} +{"id": "bench_0437", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ریونتن ووٚن زِ بی جے پی رکُن اسمبلی نِش ضمانت حٲصل کرن وٲلۍ چھِ مےٚ پٮ۪ٹھ آر ایس ایس الزام لگاوان ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Revanth said those responsible for BJP winning assembly seats are accusing RSS of trying to buy him away from them.\""} +{"id": "bench_0438", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "امیُک مَقصد چھُ E 3 نٲفِذ کرنَس پٮ۪ٹھ آسان۔", "domain": "literature", "length_bucket": "short", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 43, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Its purpose is related to that of E3 described above.\"\"\""} +{"id": "bench_0439", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We stand strong.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ مضبوطی ہنز ضرورت تاکہ ہم کر ہیمافتک مقابلہٕ مؤثر طریقے سٟتۍ نمٹناو۔"} +{"id": "bench_0440", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آنتہِ ہُہِتھ گولم بیولو\nسۄ کلی پَوِ مےٚ پولُم یٔژ\nوُچھتہٕ عزازیلس کیا ژوٚلو\nؤدِس نُندِ تَتہِ گیَس فِژ\nبہٕ پانس تہٕ پانٕے میونو\nلسَے تہٕ نُند تہٕ مَرے تہٕ نٔژ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 158, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return and tell me your story I wish you gladly accept it You see What do we want If you laugh at me What will happen to them If they laugh at you What will become of them They laugh at themselves They laugh for their own sake They laugh because they enjoy their situation They laughbecause they enjoy themselves.\"\"\""} +{"id": "bench_0441", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I wanted help, but no one was there.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 36, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ اوس مدد یژھان مگر کانہہ تہ آو نہٕ اتھ منٛز شٲمل گژھتھ۔"} +{"id": "bench_0442", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "کانگریس تہٕ باقی اپوزیشن جماعتن ہٕنٛدٮ۪و رُکنو کوٚر ژٔنٛدٕروارِ دۄہ صنعت کار گوتم اڈانی سۭتۍ مُبینہٕ رشوت خوری کِس معاملس پٮ۪ٹھ راجیہ سبھایہ منٛز تمام قانون سٲزی ہٕنٛدِس کاروبارس پٮ۪ٹھ روک لگاونُک مطالبہٕ، مگر چیرمینَن کوٚر یہِ رَد، ییٚمہِ پتہٕ حزب اختلاف کہِ ہنگامہٕ کہِ وجہہ سۭتۍ ایوان 15 منٹَن خٲطرٕ دُپہرَس 12.45 بجے تام ملتوی کرنہٕ آو۔\nپارلیمنٹ کِس سرمٲیی اجلاسٕک گۄڈٕنِکہِ دۄہ ووٚن چیئرمین جگدیپ دھنکھرَن زِ 13 ارکانَو چھِ اڈانی رشوت خوری کیسَس سۭتۍ مُختٔلِف معاملَن پٮ۪ٹھ التوا نوٹس دِیُتمُت۔ یِمَن منٛز چھُ اڈانی معاملَس پٮ۪ٹھ حزب اختلاف کِس رہنُما ملیکارجن کھڑگے سُنٛد نوٹس شٲمِل۔ تٔمۍ ووٚن زِ 8 دسمبر 2022 اوس تٔمۍ گۄڈَے رول 267 ہَس مُتعلِق تفصیٖل سان تبصرٕ کوٚرمُت۔ تٔمۍ ووٚن زِ یِم نوٹس ٲسۍ نہٕ قونوٗنَن مُطٲبِق تہٕ چھِنہٕ قبول کرنہٕ آمٕتۍ۔ \"أسۍ کَرِ ٲییٖن اپناونٕکہِ 75 ؤرۍ یَن ہُنٛد جشن۔ اسہِ چھِ تخلیقی کٲم کٔرِتھ لوٗکَن ہٕنٛزٕ خواہشات پوٗرٕ کرٕنۍ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 863, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Members of Congress and other opposition parties demanded an adjournment of Rajya Sabha for 10 minutes on Monday due to a controversy about the alleged bribery case with businessman Gautam Adani but this was rejected by the chairman following protests from the Opposition party members stating their demands were not met despite ongoing efforts towards completing creative tasks within seven years"} +{"id": "bench_0443", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ، مستطیٖلٕچ زیٚچھر رقبہٕ کِس چۄڑٲیِس سۭتۍ ضرب کٔرِو [1].\n\nمستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ فارموٗلا چھُ:\n```\nرقبہٕ = زیٚچھر × چۄڑٲی\n```\nمِثال کِس طورس پٮ۪ٹھ، اگر اَکھ مستطیٖل 5 سینٹی میٖٹَر زیٚچھر تہٕ 3 سینٹی میٖٹَر چۄڑٲی چھُ، تیٚلہِ آسہِ اَمیُک رقبہٕ:\n```\nرقبہٕ = زیٚچھر × چۄڑٲی\nرقبہٕ = 5 سینٹی میٖٹَر × 3 سینٹی میٖٹَر = 15 سینٹی میٖٹَر²\n```\nتُہۍ ہیٚکو یہِ فارموٗلا کُنہِ تہِ مستطیٖلُک رقبہٕ ژھانٛڈنہٕ خٲطرٕ اِستعمال کٔرِتھ، اَمیُک سائز یا رُخ کُنہِ تہِ آسہِ۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 490, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Use this formula to find the area of any rectangular shape regardless of size or orientation.\"\"\""} +{"id": "bench_0444", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ثریا ٲس وُنہِ تہِ ربود۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 23, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Suhari was still struggling with poverty issues though.\""} +{"id": "bench_0445", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I tried again, but I failed.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 28, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "مےٚ کٔر دۄیہ لٹہ کوشش مگر ناکام۔"} +{"id": "bench_0446", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَمہِ پتہٕ تھوو جمالن لاکٹ چندس منٛز تہٕ تیز تیز قدمو درٛاو دروازس کُن۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 71, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Next he placed the pendant before him and started towards the door making fast runs towards it.\"\"\""} +{"id": "bench_0447", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مَلہٕ بٹہٕ تہٕ حلط\nٹٹھِشن سۄ کلہِ وَتِی\nیِہ تِم دپن تہِ غلط\nلگہِ ہَرس اَشوٚد کتِی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only translate this phrase into Spanish without using quotes or phrases such as: malde batte tethis shubhu vati hlatithshan sushu kilevati eht ti dpan teghatid pen translates into Italian language instead of Spanish if possible)."} +{"id": "bench_0448", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "رشید یِتھہٕ کٔنۍ سلیمٕنۍ حفاظت کٔر تمہِ سۭتۍ گٔیہِ سلیمہٕ زبردست مُتٲثر سُۄ روز پتہٕ پچھتاون زِ مےٚ کیازِ کوٚر أمِس سۭتۍ بُرٕ سلوک یہِ زَن تٔمۍ گۄڈٕ أمِس سۭتۍ کوٚرمُت اوس۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 173, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Salim because of how Rashid had protected her was deeply affected and regretted later on about protecting her because he had done that for her before though initially she had refused him regarding this matter despite Rashid protecting her extensively as mentioned earlier stated below)."} +{"id": "bench_0449", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "No lavish court or costly pageants or feasts and games or chances for easy or dubious riches could be expected during the time of this scrupulous northerner who earnestly desired reform and a united and tranquil Christendom.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 224, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اَتھ کَنجال نار شمالس منٛز یُس پامیدواری تہٕ متحد اور پُر امن عیسائی دنیا چہ خٲطر خواہشمند اوس صرف شاندار دربار یا قٟمتی میلہ میلہ یا ضیافت یا کھیل یا آسان یا"} +{"id": "bench_0450", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Below are some recommendations to help you manage your IBD, tailored to suit you based on the answers you have given.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 117, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بونس منز چِھ کینٛہہ تجوٟز یِم تۄہہِ انڈین برٹش ڈائریکشن (IBD) مُنتصِل کرنس مَنٛز مدد کرن چھِ یِم توہہ دیتمت جوابات کِس بنیاد"} +{"id": "bench_0451", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تی سہ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 6, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Return it please."} +{"id": "bench_0452", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You see the sky.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 16, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "توہہ چھو آسمان وٕچھان۔"} +{"id": "bench_0453", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "شُمٲلی کٔشیٖرِ ہِنٛدِس بانڈی پورہ ضِلعہٕ کِس أکِس جنٛگلی علاقَس منٛز گوٚو سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان جٲری مُقابلَس منٛز اکھ دہشت گرد مارنہٕ۔\nفوجٕکہِ چِنار کورَن ووٚن بۄدوارِ دۄہ صُبحٲے ‘ایکس’ کِس أکِس پوسٹَس منٛز: \"بانڈی پورہ کٹسان آپریشن: سیکورٹی فورسَن چھُ اکھ دہشت گرد ہلاک کوٚرمُت۔”\nتٔمۍ ووٚن زِ علاقَس منٛز چھِ آپریشن وُنہِ تہِ جٲری۔\nبۄموارِ دۄہ ووٚن چِنار کورَن زِ دہشت گردَن ہٕنٛدِ ژوٗرِ روزنٕچ قٲبلِ اعتماد اطلاع مِلنہٕ پتہٕ کوٚر فوج، جموں و کشمیر پولیس تہٕ سی آر پی ایفٕچ اکہِ ٹیمَن بانڈی پورہ کِس کیٹسن جنگلی علاقَس گیرٕ تہٕ کوٚرُکھ آپریشن شروع۔\nتٔمۍ ووٚن زِ اتھ وقتس دوران گوٚو سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان گولہِ چلاونہٕ۔\nأتھہِ دوران چھُ کپواڑہ کِس لولاب کِس مرگی علاقَس منٛز سیکورٹی فورسَن تہٕ دہشت گردَن درمِیان مُقابلہٕ تہِ جٲری", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 762, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A terrorist has been killed in an ongoing battle between security forces and terrorists in a forest area of Bandipur District Kashmir north IndiaAccording to reports released by Security Forces Thursday morning at the site of operations near Lalla Ab village in کپwara Jammu and Kashmir The soldiers fired into an X post saying Security forces killed one terrorist during"} +{"id": "bench_0454", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ریٚشۍ وَنٕکۍ میران ریٚشی\nژندرٕ ساسس آنزل چووٚو\nاَدٕ دٕیہِ روٚس آکاش گویو\nتِتُھے مےٚ وَر دِتو دِیوو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 98, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Return and give me your blessing O Ra Rishis father You have seen it all now bless us with freedom of heaven The same goes for you dad please bless us Dad please bless our heavens freedom from heaven dad please blessed us dad please blessings upon our heavens fathers blessings upon us dad Please bless us dad blessed our heavens dads blessings"} +{"id": "bench_0455", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "The challenges here are far more complex than they were for trans fats, which are more easily isolated and replaced in the food supply.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 135, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "یتین چیلنجز چِھ ٹرانس فیٹس کے مقابلے زیادہ پیچیدہ یِم غذائی سپلائی میں آسانی سے الگ تھلتھا اور تبدیل کیے جا سکتے ہیں۔"} +{"id": "bench_0456", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "حالانکہِ تتھ دروازس اوس وُنہِ الہٕ ڈلہٕ گژھان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But there was still no response from either side of the border walls that surrounded it closely aboveground level though their doors remained unlocked constantly with them forever and forever they said this wall exists indeed exist indeed exist undoubtedly they said This wall truly exists indeed exists undoubtedly they added further stating This wall does indeed exist truly exists undoubtedly They said"} +{"id": "bench_0457", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "While the idea of cap and trade is simple—the system's goal is to reduce carbon emissions, the leading contributor to global warming—drafting the bill, not to mention its implementation, could be a nightmare.", "domain": "high_quality", "length_bucket": "long", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 208, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "ییلہ زن cap اور trade کا خیال آسان ہے - نظام کا مقصد कार्बन کے اخراج کو کم کرنا ہے جو کہ گلوبل وارمنگ میں سب سے زیادہ معاون ہیں - بل کا مسودہ تیار کرنا، اس کے نفاذ کا ذکر نہ کرنا ایک ڈراؤنا خواب ہو سکتا ہے۔"} +{"id": "bench_0458", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "I write a note.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "بہٕ چھس نوٹ لکھان۔"} +{"id": "bench_0459", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕکۍ وزیر اعلیٰ عمر عبداللہَن چھُ ہندوستان کِس ٲییٖنُک معمار ڈاکٹر بابا صاحب بھیم راؤ امبیڈکرَس تہنٛدِس زایہِ دۄہَس پٮ۪ٹھ خراج تحسین پیش کوٚرمُت۔\nتٔمۍ کٔر دُعا زِ بابا صاحب سٕنٛز میراث روزِ مُستقبِلس منٛز اسہِ رہنُمٲیی کران۔\n\nبھیم راؤ رام جی امبیڈکر اوس مُلکُک گۄڈنیُک وزیر قانون تہٕ مُلکٕک ٲییٖنُک اکھ اَہَم مُصنِف۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 327, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jammu and Kashmir Chief Minister Omar Abdullah has paid tributes to Dr Babasaheb Ambedkar the architect of Indias constitution on his birth anniversary."} +{"id": "bench_0460", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They were happy, and they celebrated together.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 46, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم ٲس خوشی سان، تہٕ تمو کٔر ایک ساتھ جشن مناونہٕ آمت۔"} +{"id": "bench_0461", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You sit there.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تُہی چِھو تَتِی سا بِہِو اَسی سٟتۍ واپس یِم کیزِلک ترجمہٕ کَرُن چُھ آسان۔"} +{"id": "bench_0462", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توٗشِتھ باتری مارو\nنولٕے قبر زایے\nسونچتہٕ ہا اکابیرو\nژٕ تَھو لۄلہٕ متہٕ لایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 76, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only kill and enjoy yourself while you still can."} +{"id": "bench_0463", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "She wanted to rest, but she had work.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 37, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سۄ ٲس آرام یژھان کرٕنۍ مگر سۄ اوس کٲم کران۔"} +{"id": "bench_0464", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "He was late, but he finished the task.", "domain": "medium_level", "length_bucket": "short", "source_file": "Meduim_Level_English_Sentences_ks_review.jsonl", "char_len_source": 38, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "سہ آو دیر کٔرتھ مگر تٔمۍ کوٚر کامہ مکمل۔"} +{"id": "bench_0465", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲبقہٕ آیی ایٚف ایٚس اَفسَرن ہیٚتھ کارکُنن ہِنٛدِ اَکہِ جمٲژ چُھ سُپریٖم کورٹَس منٛز درخاست کٔرمٕژ زِ ہِنٛدُستانس کَرِ اِسرٲیلس ہتھیارعرضی گزارَن چھُ ایڈووکیٹ پرشانت بھوشن سٕنٛدِ ذٔریعہٕ ریٹائرڈ آئی ایف ایس افسر اشوک کمار شرما سٕنٛدِس قیادتس منٛز سپریم کورٹَس زور دِیُت زِ سُہ کرِ غزہَس منٛز جنگ رُکاونہٕ خٲطرٕ جنگَس دوران اسرٲیلس فوجی ہتھیار تہٕ گولہٕ باروٗد فراہم کرن والٮ۪ن کمپنیَن ہٕنٛدۍ موٗجوٗدٕ لائسنس منسوخ کرنہٕ۔ عرضی منٛز چھُ داواہ کوٚرمُت زِ لایسنسُک یہِ اجازت چھُ مبینہ طور پٲٹھۍ بین الاقوٲمی قونوٗنَن تہٕ ٲییٖنٕچ خٕلاف ورزی کران۔یہِ عرضی چھِ مینا گپتا، دیب مکھرجی، اچن ونیاک، جین ڈریز، تھوڈور مدابوسی کرشنا، ہرش مندر، نکھل دے تہٕ باقیو مِلِتھ مسٹر شرما سٕنٛزِ قیادتس منٛز دٲخل کٔرمٕژ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 696, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "A group of activists including former ISF officers have appealed to the Supreme Court seeking cancellation of existing licenses for companies supplying weapons and ammunition to Israel during war in Gaza through Advocate Prashant Bhushan retired IFS officer whose leadership this dispute claims violates international laws and treaties are submitted by these activists alongside former IS F officers. The plea"} +{"id": "bench_0466", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یَتھ چھُ تُہٕنٛدِ آزماونہٕ خٲطرٕ پلے سٹیشن 3 خٲطرٕ سارِوٕے کھۄتہٕ مَقبول ایڈونچر گیمَن ہُنٛد اکھ فِہرِست:\n1. اَن چارٹِڈ\n2. دی لاسٹ آف اَس\n3. میٹل گیئر سولِڈ V: دی فینٹم پین\n4. گاڈ آف وار\n5. بایو شاک\n6. بیٹ مین: آرکھم سٹی\n7. گرینٛڈ تھیفٹ آٹو V\n8. ریڈ ڈیڈ ریڈیمپشن\n9. اسیسنٛز کریڈ\n10. پرِنٛس آف پرشیا\n11. ٹومب ریڈَر\n12. اَن چارٹِڈ 2: اَمَنٛگ تھیوٗز\n13. جَرنی\n14. دی آی سی او تہٕ شیڈو آف دی کولوسس کلیکشن\n15. بیونٛڈ: ٹوٗ سولز\n16. ہیوی رین\n17. فار کرائی\n18. ریزیڈنٹ ایوِل 4\n19. چائلڈ آف لایٹ\n20. اوکامی 3 ڈی", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 503, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Here is a list of some popular adventure games for Play Station 3 to try out include:"} +{"id": "bench_0467", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نتہٕ پننہِ ییٚمہِ کٔشیٖرِ ہٕنٛدِ بھلٲیی تہٕ فٲیدٕ خٲطرٕ۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 56, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only for your own good and benefit here in Kashmir will this return be beneficial to you.”"} +{"id": "bench_0468", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲبقہٕ ؤزیٖر اعظم ڈاکٹر منموہن سِنٛگھ سٕنٛز ٲخری رسٕم یِیہِ بَٹہٕ وارِ دۄہ راج گھاٹَس نزدیٖک نگم بودھ گھاٹَس منٛز سرکٲری اعزازَس سۭتۍ ادا کرنہٕ، وزارت داخلہَن ووٚن جُمعہ دۄہ ژیرِ یہِ ونان زِ حکومتس چھِ کانگریس پارٹی ہٕنٛدِ صدر سٕنٛدِ طرفہٕ سٲبقہٕ ؤزیٖر اعظم ڈاکٹر منموہن سنگھ سٕنٛدِ یادگار خٲطرٕ جاے الاٹ کرنٕچ درخواست آمٕژ۔\nوزارت ہَن ووٚن زِ مرکزی کابینہ میٹنگ پتہٕ جلدٕیہ ووٚن وزیرِ داخلہ امیت شاہَن کانگریس صدر ملیکارجن کھڑگے تہٕ مرحوٗم ڈاکٹر منموہن سنگھ سٕنٛدٮ۪ن عیالَن زِ حکومت کَرِ یادگار خٲطرٕ جاے۔ اتھ دوران ہیکَن جنازہٕ تہٕ باقی رسمی عمل سپدِتھ تِکیٛازِ یادگار خٲطرٕ پیٚیہِ اکھ ٹرسٹ بناوُن تہٕ اَمہِ خٲطرٕ یِیہِ جاے الاٹ کرنہٕ۔\nسِنٛگھ گُزریٛوو برٛسوارِ دۄہ شامَس ییٚتہِ ایمسَس منٛز۔\nڈاکٹر سِنٛگھ سٕنٛز لاش یِیہِ ٲخری رسٕم برٛونٛہہ کانگریس ہیڈ کوارٹرَس منٛز ٲخری درشن خٲطرٕ تھاونہٕ۔ ٲخری رسٕم یِیہِ صبحٲے 9.30 بجہِ کرنہٕ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 829, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Former Prime Minister Dr Manmohan Singhs last rites will be performed at the Nigambuddha Ghat near Raj Ghat on Thursday afternoon following official honours ceremony at Ministry of Home Affairs saying late in morning on Friday due to government requests from Congress party president asking for a place near former PM Dr ManMohan Singh memorial site."} +{"id": "bench_0469", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ژرِپٕپۍ کریکہٕ ناد کنہِ چلاوان۔", "domain": "novel", "length_bucket": "short", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 31, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Driving along the Jھرip road towards Jharkhand state capital Ranchi.\"\"\""} +{"id": "bench_0470", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "In addition, these colors weren't confined to a province but rather irregularly scattered across various regions over all of China.", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 131, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اَمِہ علاوٕ یِم رنگ ٲس نہ صِرِف کُنہ اَکہ صوبَس تانۍ مَحدود بلکہ چائنا کی جَدوا طرف پھیلیمتؠن مُختلِف علاقَن منٛز بچھا بچھا"} +{"id": "bench_0471", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "You close the door.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 19, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تہۍ چھو دروازٕ بند کران۔"} +{"id": "bench_0472", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "بۄنِم سیارٕ چھُ اَکھ آسمٲنی جِسم یُس آفتابَس گِرد چھُ گَردِش کَران، ییٚمِس چھُ اَکھ گۄل شکل حٲصِل کَرنہٕ خٲطرٕ کٲفی وَزَن، ییٚمِس چھُ نہٕ پنٛنِس گِردِش کِس علاقَس صاف کٔرمُت، تہٕ یہِ چھُ نہٕ اَکھ زوٗن [1].\n\nبۄنِم سیارٕ چھُ اَکھ اِصطلاح یُس سیارٕ کٮ۪ن ساینسدان ایلن سٹرنَن دٔسۍ آفتاب کِس نِظامَس مَنٛز سیارٕ کٮ۪ن وَزَن وٲلؠن چیٖزَن ہٕنٛدِس ترٛیٚن طٔریٖقو سۭتۍ درجہٕ بَنٛدی کَرنہٕ خٲطرٕ اِستعمال کٔرمٕژ: کلاسیکی سیارٕ، بۄنِم سیارٕ، تہٕ سیٹلائٹ سیارٕ [2]. بۄنِم سیارٕ چھِ سیارَن کھۄتہٕ لۄکٕٹۍ، مگر یِم چھِ لۄکٕٹؠن آفتاب کِس نِظام کٮ۪ن چیٖزَن یِتھٕ کٔنۍ زَن ایسٹرایڈ تہٕ دُم دار تٲرِخَن کھۄتہٕ بٔڑۍ۔ بۄنِم سیارَن چھُ اَکھ ہائیڈرو سٹیٹِک توازن تہِ آسان، ییٚمیُک مَتلب چھُ زِ یِم چھِ پنٛنِس گِریویٹی سۭتۍ تَقریٖبَن گۄل [1][2].\n\nبۄنِم سیارٕ کِس مُتعلِق چھُنہٕ کانٛہہ واضِح تعریٖف، تہٕ اَکھ چیٖز بۄنِم سیارٕ کِس طورس پٮ۪ٹھ درجہٕ بَنٛدی کَرُن چھُ اَکھ اِنفرٲدی اَکھاڑِش دانَن پٮ۪ٹھ مُنحَصِر۔ اَتھ پٲٹھۍ چھُ آفتاب کِس نِظامَس مَنٛز بۄنِم سیارَن ہُنٛد اَصٕل تاداد نامعلوٗم [2]. موٗجوٗدٕ وَقٕتَس مَنٛز چھُ اِنٹرنیشنل اَسٹروٗنومِکَل یوٗنِیَن (IAU) اَمہِ نِظامَس مَنٛز پانٛژھ آسمٲنی جِسم بۄنِم سیارَن کِس طورس پٮ۪ٹھ درجہٕ بَنٛدی کَران: سیریس، پلوٹو، ہومیا، میک میک، تہٕ ایریس۔ سیریس چھُ ایسٹرایڈ بیلٹَس مَنٛز واقع، ییٚلہِ زَن باقٕے ژور بۄنِم سیارٕ چھِ کُیپر بیلٹَس مَنٛز واقع، یُس نیپچوٗن کھۄتہٕ بٮ۪رون شِتہٕ وٲلؠن چیٖزَن ہُنٛد اَکھ علاقہٕ چھُ [1][2].\n\nبۄنِم سیارٕ چھِ مُطٲلِعہٕ کَرنہٕ خٲطرٕ اَہَم، کِیاہ کہِ یِم ہیٚکَن اَمہِ نِظامَس مَنٛز سیارَن ہٕنٛزِ تَشکیٖل تہٕ اِرتقا کِس مُتعلِق اِشارٕ دِتھ۔ یِم ہیٚکَن اَتھ مَنٛز تہِ مَدَتھ کٔرِتھ زِ سیارٕ کِتھٕ پٲٹھۍ چھِ باقٕے آفتاب کِس نِظامَس مَنٛز بَنان تہٕ اِرتقا کَران [1].", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1606, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "No specific definition exists for bottoming satellite either describing this class of objects or explaining their formation in Sun systems [2].\""} +{"id": "bench_0473", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "They want fun.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 14, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "تم چھ تفریح یژھان کرن۔"} +{"id": "bench_0474", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "خراب موسمی حالاتٕکہِ پیش نظر دِیُت حُکامو بوموارِ دۄہ جموں و کشمیر کٮ۪ن راجوری تہٕ پونچھ ضِلعن منٛز تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل بنٛد کرنُک حُکُم۔ اہلکارَو وون زِ سٮ۪ٹھا روٗد تہٕ خراب موسم کہِ وجہ سۭتۍ روزن راجوری ضلعٕک تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل بوموارِ دۄہ بنٛد۔ پونچھ کہِ ڈِسٹرکٹ مجسٹریٹ سٕنٛدِ طرفہٕ جٲری أکِس بیانَس منٛز چھُ ونٛنہٕ آمُت زِ احتیٲطی اقدام پٲٹھۍ روزن ضلعٕک تمام سرکٲرۍ تہٕ پرائیویٹ سکوٗل از 12 اگست 2025 موٗجوٗدٕ موسمی حالاتہِ کِنہِ بنٛد۔ قٲبلِ ذِکِر چھُ زِ محکمہٕ موسمیاتَن چھُ جموں و کشمیرس منٛز روٗد پیٚنٕچ پیشن گوئی کٔرمٕژ۔", "domain": "news", "length_bucket": "long", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 552, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Due to poor weather conditions officials ordered all government and private schools in Jammu and Kashmir districts Rajouri and Poonch on Monday to remain closed All Government and Private Schools in Rajouri District will remain closed from Tuesday due to heavy rain and inclement weather officials said This follows an announcement issued by the Director General of Education Department Jammu and"} +{"id": "bench_0475", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "توے چِھ امِہ شعبٕہ کٮ۪ن مختلف مضموٗنن منز گرےجویٹ تٕہ وۄمیدوارٕن ہٕنز مانگ بڈٕیامٕژ۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 84, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "That is why there has been an increasing demand for graduates and candidates across different sectors of this field.\""} +{"id": "bench_0476", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یام آسکھ نٮ۪بر ہَے لایق\nتام اَرزتھ نہٕ پُلگ پَژھی\nگرنٛز لگہٕ نَے نہٕ یِم سندھایک\nپٮ۪کھ پایس یاوَن مٔژی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 102, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return valuable items when they are outdoors They will not be useful indoors If they break easily bring them outside for a change of air.\""} +{"id": "bench_0477", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اینجلا ماریا \"انی\" ڈی فرانکو چھِ اَکھ امریٖکی-کینیڈین گٲیِک تہٕ نغمہٕ لیکھن وٲلۍ۔ سۄ چھےٚ پنٛنِس نسلس منٛز اَکھ بااثر فنکار، ییٚمِس لوٗک تہٕ متبٲدِل راک صنفَس منٛز 20 کھۄتہٕ زیٛادٕ البم جٲری کٔرمٕتۍ چھِ۔ اینی ڈی فرانکو سٕنٛدٮ۪ن نغمَن منٛز چھُ کیٚنٛہہ پنٛک، جاز، فنٛک تہٕ ہِپ ہاپ صوتی اثر تہِ [1]۔\n\nتٔمِس سٕنٛدۍ کیٚنٛہہ مَشہوٗر تہٕ کامیاب نغمہٕ چھِ:\n1. ڈو اور ڈائی\n2. اَن ٹچ ایبل فیس\n3. بلڈنگز اینٛڈ برِجز\n4. ؤرٛتھ\n5. یو ہیڈ ٹایم\n6. شای\n7. گلاس ہاؤس\n8. یۄر نیکسٹ بولڈ موو\n9. جیوک باکس\n10. شیملیش [1]", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 499, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Angela Maria “Anny” DeFranco is an AmericanCanadian singer songwriter and actress who has released over 25 albums in genres such as folk and alternative rock songs Anny De Franco includes some punk jazz funk and hip hop sounds within her songs [1]."} +{"id": "bench_0478", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تہٕ ییٚلہِ غذا نِش مِلن واجیٚن توانٲٮٔی تہٕ خرٕچ گژھن واجیٚن توانٲٮٔی چھےٚ ہشیٖی آسان تیٚلہِ چھیٚنہٕ جسمٲنی وزنس منٛز کانٛہہ تدیٖلی یِوان۔", "domain": "literature", "length_bucket": "medium", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 138, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "And when the energy received from food minus the energy expended becomes equal there is no change in physical weight whatsoever.\"\"\""} +{"id": "bench_0479", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وایناڈ: ریلائنس فاؤنڈیشن چھِ وایناڈ، کیرالہ ہَس منٛز لینڈ سلائیڈٕ سۭتۍ متٲثر گژھَن والٮ۪ن ہٕنٛز مدد کرنہٕ خٲطرٕ برٛونٛہہ کُن، ریلائنس فاؤنڈیشن چھِ مقٲمی انتظامیہ کِس اشتراک سۭتۍ اتھ سانحَس منٛز یِنہٕ والٮ۪ن لوٗکَن طویل مدتی راحت فراہم کرنُک منصوبہٕ بناوان۔ شمسی لالٹین تہٕ ٹارچ فراہم کران۔\nمُتٲثِر گَژھن والیٚن خاندانن یِن بِیٲل، چارہٕ، سامان تہٕ ووکیشنل تربِیت دِنہٕ تاکہِ تِہنٛز زِنٛدگی ہیٚکہِ بیٚیہِ پَکہِ پیٚٹھ واپس یِتھ۔ ریلائنس فاؤنڈیشن کَرِ شُرٮ۪ن ہِنٛزِ تعلیٖمہِ ہُنٛد تسلسل یقینی بناونہٕ خٲطرٕ کِتابہٕ تہٕ کھیلن ہُنٛد سامانَس سۭتۍ تعلیٖمی مدد فراہم۔ ریلائنس جیوَن چھِ رٲبطہٕ بہتر بناونہٕ تہٕ آفات کِس انتظامَس ہموار بناونہٕ خٲطرٕ بچاؤ کارکُنَن تہٕ ڈیزاسٹر مینجمنٹ ٹیمَن ہٕنٛز ہموار کٲم باپتھ خاص ٹاور لگٲوِمٕتۍ۔ فاؤنڈیشن چھِ نفسیٲتی صدمہٕ سۭتۍ متٲثر لوٗکَن مٲہِرَن ہُنٛد مدد تہِ فراہم کران", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 798, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Wayanad: The Reliance Foundation has stepped forward in providing aid for those affected by landslides in Wayanad Kerala Reliance Foundation plans to provide long term relief to those impacted by this tragedy in partnership with local administration by supplying solar lanterns and torches along with educational aids ensuring continuing education for children. To ensure continuity of education for"} +{"id": "bench_0480", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نئی دہلی: سپریم کورٹَن کٔر ژٔنٛدٕروارِ دۄہ بہار سرکار تہٕ باقین أکِس عرضی پٮ۪ٹھ نوٹس جٲری، یَتھ منٛز ریاستَس منٛز کینٛہہ کٔدٕل پٮ۪نہٕ کٮ۪ن حالٕے واقعاتَن ہٕنٛدِس تناظرس منٛز ریاستَس منٛز تمام موٗجوٗدٕ تہٕ زیر تعمیر کٔدلَن ہُنٛد اعلیٰ سطحی ساختی آڈٹ کرنُک مطالبہٕ اوس کرنہٕ آمُت۔ أمۍ دِیُت نتیش کمار حکومتس تہٕ نیشنل ہائی وے اتھارٹی آف انڈیا (این ایچ اے آئی) پنُن جواب دٲخل کرنُک ہدایت۔\nپنٛنہِ عرضی منٛز چُھ سِنٛگھن بِہار حُکوٗمتس کٔدٕلن ہِنٛز نگرٲنی خٲطرٕ اکھ مُنٲسِب تہٕ مؤثر پالیسی یا طریقہٕ کار بناونٕچہِ ہِدایت دِنٕچ منگ کٔرمٕژ۔ اَمہِ علاوٕ چھُ یہِ تہِ ونٛنہٕ آمُت زِ حکوٗمتٕچ مبینہٕ سٔنجیٖدٕ لاپرواہی تہٕ ٹھیکدارَن تہٕ مُتعلقہٕ ادارَن ہٕنٛدِ بدعنوان گٹھ جوڑ کہِ وجہ سۭتۍ چھِ پرٛٮ۪تھ دۄہ جٲنی تہٕ مٲلی نۄقصانٕک واریٛاہ بدبخت واقعہٕ گژھان۔\nأمہِ سٕنٛزِ عرضی منٛز چھِ رِیٲستی حکوٗمتَس امن یا ایگزیکٹو آرڈر کہِ ذٔریعہٕ اکھ مؤثر مُستقل اِدارٕ تشکیل دِنہٕ خٲطرٕ مُنٲسِب ہِدایَت دِنٕچ تہِ کوٗشِش", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 892, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "New Delhi: The Supreme Court issued notice on Monday in response to petitions from Bihar Government and others seeking permission for an اعلی سطحی structural audit of all existing and निर्माing bridges in the state due to recent incidents involving bridges getting damaged during rainy seasons. It directed Justice Kumar to submit his reply to the Government and National Highway"} +{"id": "bench_0481", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "میوٗٹھ کھٮ۪وان تہٕ حزن مازان\nتَوے الک تہٕ پلگ لٕزان آسی\nکینٛہہ شیخ لاگِتھ وَتن پٮ۪ٹھ روزان\nلوٗکن پانس کُن پھِران آسی\nسۄن چُھے گوٚب تہٕ تیٚلہِ کونہٕ وزان\nسرتل زیرے وزان آسی", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 171, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return gold and enjoy your food Because they will appreciate you If gold is valuable sometimes enjoy it anyway They may appreciate you later On occasions enjoy gold because its valuable You may enjoy it sometime anyway The stream flows underneath with some vegetation along its banks Which carries water through forests and mountains To provide sustenance for humans beings roam here constantly"} +{"id": "bench_0482", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "دٲنِشمند چُھے اَمرَت گوٚروٗ\nپھیٚرِ پھیٚرِ اوسُس پَشپان\nبرٛونٛہہ کنہِ ٲسٕس کتاب لٔرُو\nوُچھِتھ آسہِ ڈٲنٛجراوان\nوُچُھن ہیوٚت چُھ أندرٕ ژھوٚروٗ\nپرَس پرٕنان موٚشُس پان", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 163, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Manish is an ardent Guru He feels ashamed of losing his reputation before others see it Therefore he becomes angry and loses self control due to this reason.\"\"\""} +{"id": "bench_0483", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "سٲری مٲزی گرس\nدۄہے کھٮ۪تھ ژھنڈان ہایے\nموٚٹھُے پوٚز ابرارس\nژٕ تَھو لۄلہٕ متہٕ لایے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 81, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return and provide for your mother every day You will prove yourself worthy of being trusted by others in this manner.\"\"\""} +{"id": "bench_0484", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "لڑکہٕ تہٕ لڑکیہِ گٔیہِ خوش تہٕ لٲجِکھ نعرٕ دِنہِ پولیسن کوٚر دۄشوٕنۍ کالجٮ۪ن گیراو لڑکہٕ تہٕ لڑکیہِ رلییہِ پانہٕ وٲنۍ تہٕ چلایکھ پولیسس پٮ۪ٹھ کنہِ۔", "domain": "novel", "length_bucket": "medium", "source_file": "Novel_100_sentences_en_review.jsonl", "char_len_source": 147, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The boy and girl became happy and started shouting The police surrounded both colleges boys and girls yelled at the police towards them until they ran away from him on stones thrown by them together.\"\"\""} +{"id": "bench_0485", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "ییٚتہِ چھِ بَے رِج، برٛوٗکلِن این وای سی نِش کیٚنٛہہ لائبریری:\n1. برٛوٗکلِن پبلِک لائبریری- بَے رِج برانٛچ چھُ 7223 رِج بلووارڈ، 73 وِتھ سٹریٹ، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔\n2. لِٹل فری لائبریری چھُ 81 وِتھ سٹریٹ، 4 وِتھ ایوینیو، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [2] پٮ۪ٹھ واقع۔\n3. برٛوٗکلِن پبلِک لائبریری- میک کِنلے پارک برانٛچ چھُ 6802 فورٹ ہیملٹن پی کے وای (68 وِتھ سٹریٹ، برٛوٗکلِن، این وای 11219، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔\n4. برٛوٗکلِن پبلِک لائبریری- فورٹ ہیملٹن برانٛچ چھُ 9424 4 وِتھ ایوینیو، برٛوٗکلِن، این وای 11209، یوٗ ایس اے [1] پٮ۪ٹھ واقع۔", "domain": "sft_longform", "length_bucket": "long", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 582, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Here are some libraries near B Ay C from Boston including:"} +{"id": "bench_0486", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَکہِ ہوٚت سونٛتھ چُھے نیر شکارس\nؤہرس کیُت بایہِ آسی رُتُے\nورگس تٔہندِس دورٚ روز کارس\nیارَن سۭتی آسی رُتُے", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 107, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only return along with your partner for this journey may it be blessed by God Almighty."} +{"id": "bench_0487", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیرخزانَن ووٛن زِ پانٛژھ ٹریلین امریکی ڈالر َن ہنٛز معیشت خٲطرٕ پیہٕ مصنوعات سٲزی شعبہ مستقبل بنیادَن پٮ۪ٹھ دۄگنٛہٕ حِصن منٛز ترقی کَرٕن تہٕ مصنوعات ساز کمپنیَن چِھ عالمی سطحہٕ پٮ۪ٹھ سپلائی چینہٕ ہُنٛز لٲزمی جزو بننٕچ ضرورت یِمن نِش صلٲحیت تہٕ جدید تَکنیٖکی مہارَت چِھ ۔", "domain": "literature", "length_bucket": "long", "source_file": "Random_Litraturature_sentenses_en_review.jsonl", "char_len_source": 271, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Five trillion US dollars worth of economic output depends on manufacturing sectors providing companies with supply chains capable of growing at several levels of production and requiring modern technological capabilities globally required components for manufacturers companies need capabilities and modern technological knowhow in supplying global supply chains according to Treasury Secretary officials stated that manufacturing companies require capabilities and आधुनिक technological know how"} +{"id": "bench_0488", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Block and file access via iSCSI,FC and NFS protocols.", "domain": "high_quality", "length_bucket": "short", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 53, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "iSCSI FC تہ NFS پروٹوکول کہ ذریعہ ایکسیس بلاک کر اور فائل کریں۔"} +{"id": "bench_0489", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "Did you know you can tell the temperature by looking at the way the rhododendron leaves are curled?", "domain": "high_quality", "length_bucket": "medium", "source_file": "100_high_Quality_English_Sentences_ks_review.jsonl", "char_len_source": 99, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "کیا تۄہہ چھو یہ معلوم ز توہ ہیٚکو روڈوڈینڈron کیٚن پنین ہٕنٛد طٔریقہ سائز وچھتھ درجہ حرارت ونیتھ ہیـکو تھوتھ؟"} +{"id": "bench_0490", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "آئس لینٛڈ چھُ وُچھنہٕ خٲطرٕ اَکھ خوٗبصوٗرت مُلُک۔ ییٚتہِ چھِ کیٚنٛہہ سادٕ آئس لینٛڈِک لفٕظ یِم تُہۍ ہیٚچھِتھ ہیٚکو تاکہ تُہُنٛد آئس لینٛڈُک سفر زیٛادٕ قٲبِلِ رَسٲیی بَنہِ [1][2]:\n1. **ہیلو:** ہالو (ہال-او)\n2. **شُکریہ:** ٹاک (ٹیک)\n3. **تُہۍ کِتھٕ پٲٹھۍ چھِو؟**: ہورنیگ ہیفُرُتھو تھاڈ؟ (تُہۍ کِتھٕ پٲٹھۍ چھِو؟)\n4. **میون ناو چھُ...**: ایگ ہیتی ... (یگ ہی-ٹی...)\n5. **تُہُنٛد ناو کیٛا چھُ؟**: واڈ ہیٹیر تُو؟ (ہواٹ ہی-ٹی تھو؟)\n6. **صبح بخیر**: گوڈن ڈاگِن (گو-تھان ڈائی-ن)\n7. **شب بخیر**: گوڈا نوٹ (گو-تھا نوٹ)\n8. **خوٗب دۅہ**: گوڈن ڈاگِن (گو-تھان ڈائی-ن)\n9. **یَس**: یا (یاہ)\n10. **نہٕ**: نی (نے)\n11. **مُبارک باد**: ٹِل ہیمِنٛگجو (ٹِل ہیم-ِنٛگ-یو)\n12. **کُت چھُ...**: ہوار ایر ... (کوار ایر...)\n13. **بہٕ چھُس گژھُن...**: ایگ وِل فارا ٹِل ... (یگ وِل فاہ-راہ ٹِل...)\n14. **اکھ ٹکٹ ... خٲطرٕ، مہربٲنی کٔرِتھ**: ایِن میڈا ٹِل ...، ٹاک۔ (ایِن-اِن میڈا ٹِل ...، تھاک)\n15. **تُہُنٛد مُلاقات کٔرِتھ خوشی چھُ**: گامَن اَڈ کِنناسٹ تھیر (گامَن اَڈ کِنناسٹ تھو-یر)\n16. **معاف کٔرِتھ**: افساکیڈ (آہٹ-سا-کی)\n17. **یہِ کٮ۪تھ چھُ؟**: ہواڈ کوسٹار تھاٹا؟ (ہواٹ کوسٹار تھاٹا)\n18. **باتھ روم کُت چھُ؟**: ہوار ایر باتھربرگی؟ (کوار ایر باتھ-ہر-بر-گی)\n19. **مدد!**: ہجالپ! (ہجالپ)\n20. **نار!**: ایلڈور! (ایل-ڈور)\n\nیاد تھاوِو زِ آئس لینٛڈِک تلفظ ہیٚکہِ واریاہ مُشکل آسِتھ، اَتھ کِنۍ چھُ یہِ اَکھ اَصٕل خیال زِ مُقٲمی بولن والٮ۪ن ہُنٛد آواز بوٗزِو تہٕ پنُن تلفظ تہِ پریکٹس کٔرِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1354, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Keep in mind that Icelandic pronunciation can be difficult so it is a good idea to listen to local speakers and practice your pronunciation accordingly.\"\"\""} +{"id": "bench_0491", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "مٲنَے کھٮ۪ن چُھے شرعس کرٛنزٕے\nمٲنَے کھٮ۪ن چُھے اند آوار\nمٲنَے کھٮ۪ن آسہِ پرٛٮ۪کتھ سَنزٕے\nمٲنَے کھٮ۪ن چُھے سٔدرس تار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 115, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only if I eat will you get joy From eating it you lose joy Because eating it improves your health You will enjoy eating it This is exactly what happens when you eat unhealthy foods Such as margarine butter eggs potatoes onions tomatoes peppers chicken meat beef pork etc These foods contain saturated fats such as cholesterol triglycerides fatty acids etc This allows for"} +{"id": "bench_0492", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We have time.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 13, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ وقت۔"} +{"id": "bench_0493", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "گۄن پرٛژھتوژۄن دِشن\nمرنُن برٛٮ۪م تھوٚوُن آوٹو\nکینٛژَو ڈیوٗنٛٹھ تہٕ کیٖنژۍ ڈیشن\nپانہٕ آشن کس کیا دِتو", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 100, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Ask questions answered directly and avoid generalizations making specific recommendations based on what you know about them they provide valuable information regarding your current situation and experience in their area of expertise.\"\"\""} +{"id": "bench_0494", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "تازٕ شیٖن پیٚنہٕ کِنہِ آو جنوبی کشمیرَس منٛز شوپیاں ضِلعس جموں کِس پونچھ تہٕ راجوری ضِلعن سۭتۍ جوڑن واجنہِ تاریخی مغل سڑکہِ پٮ۪ٹھ تہٕ وادی لداخ کِس مرکزی زیر انتظام علاقس سۭتۍ جوڑن واجنہِ سری نگر-لیہہ شاہراہَس پٮ۪ٹھ ٹریفک رُکاونہٕ۔ وونہِ گو٘ ، سری نگر-جموں قومی شاہراہَس پٮ۪ٹھ ، یُس وادی مُلکہٕ کٮ۪ن باقٕے حِصن سۭتہِ رَلاوان چھُ ، چھُ معموٗل پٲٹھۍ جٲری۔ ٹریفک حکامَو ووٚن زِ مُغل روڈ، سری نگر-لیہہ ہائی وے تہٕ سنتھن روڈ چھِ تازٕ شیٖن پیٚنہٕ کِنہِ ٹریفک خٲطرٕ بنٛد کرنہٕ آمٕژ۔ تِمَو ووٚن ووٚن زِ سرینگر-جموں قومی شاہراہَس پٮ۪ٹھ چھُ دۄن طرفن ہُنٛد ٹریفک، یُس وادی باقٕے مُلکس سۭتۍ رَلاوان چھُ، چھُ معموٗل پٲٹھۍ جٲری۔ حکامَو چھِ لوٗکَن ہدایت دِژمٕژ زِ تِم کرَن پوٗرٕ بحٲلی تام یِمَن سڑکَن پٮ۪ٹھ سفر کرنہٕ نِش بچُن۔ لوٗکَن چھُ مشورٕ دِنہٕ آمُت زِ تِم دِن افواہَن کُن توجہ نہٕ دِنہٕ، بٔلکہِ ٹریفک پولیسُک ٹویٹر ہینڈل، فیس بُک پیج، تہٕ ٹریفک کنٹرول یونٹ، جموں تہٕ ٹریفک کنٹرول یونٹ، سرینگر کہِ ذٔریعہٕ یِمن سڑکَن ہٕنٛز حالت ؤچھِن۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 924, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Traffic along Srinagar -Leh highway has been disrupted due to fresh snow causing traffic disruptions on Mughal Road connecting Srinagar with Poonch and Rajouri districts of Jammu and Union Territory of Ladakh respectively from Srinagar to Leh Highway which connects Srinagar with other parts of the country is normally open for traffic according to traffic officials who said that Srinagar"} +{"id": "bench_0495", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "وزیر اعلیٰ عمر عبداللہ ہَن ووٚن زِ جموں و کشمیرٕچ نیشنل لا یونیورسٹی کَرِ بیٛکہِ ؤرۍ یہِ اپریل پٮ۪ٹھٕ کِرایہِ رہٲیشہِ پٮ۪ٹھ کٲم شُروٗع، تہٕ بڈگامَس منٛز اوم پورہ ہیٚکہِ اَہم کیمپس ٲسِتھ۔ سی این آیی مُطٲبِق چھُ بانڈی پورہ اسمبلی ہٕنٛدِ رُکُن نظام الدین بٹ سٕنٛدِس قراردادَس پٮ۪ٹھ جموں و کشمیر قانون ساز اسمبلی منٛز تقریر کران، وزیر اعلیٰ عمر عبداللہ ہَن ووٚن زِ حکوٗمت چھُ نیشنل لا یوٗنیورسٹی مدد کرنُک منصوبہٕ تھاوان، تِکیٛازِ اَتھ خٲطرٕ چھِ گۄڈَے 500 ملین رۄپیہِ گرانٹ مختص کرنہٕ آمٕتۍ۔ ییٚلہِ ایوانَس منٛز قرارداد منظور گٔیہِ، وزیر اعلیٰ ووٚن زِ تٔمِس چھِ وۄمید زِ یُنوَرسِٹی منٛز کلاس یِن بیٚکہِ ؤرۍ یہِ اپریل پٮ۪ٹھٕ شُروٗع۔ وزیر اعلیٰ ہن ووٚن، ‘حالانٛکہِ وٕنیُک تام چھُنہٕ جایہِ مُتعلِق کانٛہہ فٲصلہٕ آمُت کرنہٕ، مےٚ چُھ پننٮ۪ن سٲتھیَن ووٚنمُت زِ تِم کٔرِن اَمہِ خٲطرٕ مُنٲسِب جاۓ ہٕنٛز نشاندٕہی کرنہٕ۔ وونہِ گو٘ فی الحال چھِ اسہِ اوم پورہ، بڈگامَس منٛز اکھ سایٹ دٔستِیاب، یۄس خٲلی چھےٚ۔", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 891, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "The Minister of State for Education Omar Abdullah said that Jammu and Kashmir National Law University would start functioning from April next year in rented accommodation and hoped Srinagar could be its main campus According to CNN Omar Abdullah made this comment while speaking at an assembly hall meeting of BDO chairman Nizamuddin بٹ on proposals related to Jammu and कश्मीर Legislative"} +{"id": "bench_0496", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "جموں و کشمیرٕک لیفٹیننٹ گورنر منوج سنہاہن چھُ لوکَن آینی دۄہَس پٮ۪ٹھ مبارک باد دِژمٕژ تہٕ امہِ کٮ۪ن بناون والٮ۪ن خراج تحسین پیش کوٚرمُت۔\nتٔمۍ کٔر لوٗکَن اپیل زِ تِم کرَن ٲییٖنُک تقدس برقرار تھاونہٕ تہٕ سمٲجی انصاف تہٕ برابری ہٕنٛدۍ اصوٗل مضبوٗط۔\nٲییٖنی دۄہ، یَتھ سمودھن دیوس تہِ ونٛنہٕ چُھ یِوان، چُھ مُلکَس منٛز پرٛٮ۪تھ ؤرِیہِ 26 نومبر مناونہٕ یِوان۔\nلیفٹیننٹ گورنرَن ووٚن بوموارِ دۄہ ‘ایکس’ پٮ۪ٹھ أکِس پوسٹَس منٛز زِ بہٕ چھُس سارنٕے لوٗکَن آینی دۄہَس پٮ۪ٹھ مُبارک باد دِوان تہٕ آیین بناون والٮ۪ن خراج تحسین پیش کران۔\nتٔمۍ ووٚن زِ یَتھ اَہَم مُقامس پٮ۪ٹھ چھُس بہٕ پرٛٮ۪تھ أکِس آییٖنُک تقدس برقرار تھونُک تہٕ سمٲجی انصاف تہٕ برابری ہٕنٛدۍ اصوٗل مٔزیٖد مضبوٗط کرنُک مُطالبہٕ کران۔\nتٔمۍ ووٚن زِ \"چلو پنُن پان معاشرٕ کِس امن تہٕ ترقی خٲطرٕ وقف”۔\nیہِ دۄہ چھُ ہندوستانٕچ آئین ساز اسمبلی طرفہٕ 1949 ہَس منٛز ہندوستٲنی ٲییٖن اپناونٕچ نشاندٕہی کران۔ ٲییٖن آو ٲخٕر کار 26 جنوری 1950 ہس منٛز نافذ کرنہٕ", "domain": "news", "length_bucket": "xlong", "source_file": "News_100_samples_en_review.jsonl", "char_len_source": 892, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Jammu and Kashmir Lieutenant Governor Manoj Sinha has congratulated people on Constitution Day while paying tribute to those who created it. He said On this important day dedicated itself to peaceful and prosperous society of India they are responsible for upholding the sanctity of the Constitution and strengthen social justice and equality principles throughout India.\" The Constitution was issued on January"} +{"id": "bench_0497", "direction": "en2ks", "direction_label": "English → Kashmiri", "source_lang": "en", "target_lang": "ks", "source_text": "We go together.", "domain": "simple", "length_bucket": "short", "source_file": "100_Simple_English_Sentences_ks_review.jsonl", "char_len_source": 15, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "اسہ چھ اکوٹے یوان۔"} +{"id": "bench_0498", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "اَلستُ بوٗزِتھ ہیوٚتُکھ پتھٕے\nقالو بلیٰ تتہِ دوٚپُکھ نہ\nشےٚ مَن کھٮ۪وان ماز کِہو بتٕے\nبرہمن لٲگِتھ بٲطن نہٕ کینٛہہ", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 114, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "But they started talking about other things while waiting for him at the station because he wasnt getting hungry enough from their food supply."} +{"id": "bench_0499", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "نفسو کامہِ کرٮ۪تھ کَمہٕ زشتہ\nنفسو وُچھن دِژامَے مِتٕرۍ شہار\nنفس چُھم زاگان دشمن سٕنٛدِ نِشتہ\nنفسَن یَژھے ژھٔنڈم شِتٕرۍ شہار\nنفسٕنہِ دادِ کوٗتاہ بہٕ پشتہ\nنفسَن ژھونڈُم دۄہَے اَتٕرۍ شہار", "domain": "poetry", "length_bucket": "medium", "source_file": "81_Shruks_en_review.jsonl", "char_len_source": 184, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Only give me your translation and we will enjoy each other's company forever The enemy is behind us We must keep our minds fixed on Him every day The goal of this universe Is Him Therefore He chooses us As His servants To fulfill His purpose In addition I wish you would encourage everyone else to understand their brothers faith in Allah"} +{"id": "bench_0500", "direction": "ks2en", "direction_label": "Kashmiri → English", "source_lang": "ks", "target_lang": "en", "source_text": "یِہ، اَکھ کُک بُک چھُ واریاہن مُختٔلِف موقعن خٲطرٕ اَکھ بۄڈ تحفہٕ۔ یہِ چھُ اَکھ فِکر مند تہٕ عملی تحفہٕ یُس یہِ ظٲہِر چھُ کَران زِ تُہۍ چھِو پرواہ کَران۔ کُک بُکس ہیٚکَن رَننٕچ تکنیک تہٕ نوٚو کھٮ۪ن ہیٚچھنُک اَکھ بۄڈ طٔریٖقہٕ آسِتھ، یا مُختٔلِف ریسیپین سۭتۍ تجربہٕ کَرُن۔ اَکھ کُک بُک آسہِ تِمَن لوٗکَن خٲطرٕ اَکھ بۄڈ تحفہٕ یِمَن [1][2][3] -\n- یِم لوٗکھ رَننُک مزٕ چھِ ہیٚوان تہٕ مُختٔلِف تکنیکن سۭتۍ تجربہٕ کَرُن چھِ یِژھان۔\n- یِم لوٗکھ بُنیٲدی رَنن ہیٚچھُن چھِ یِژھان۔\n- یِم لوٗکھ چھِ یِمَن غذٲیی پابنٛدِی چھِ تہٕ یِمَن ریسیپین ہٕنٛز تلاشی کَرنَس مَنٛز مددٕچ ضروٗرت چھِ یِم تِم ہیٚکَن کھٮ۪تھ۔\n- یِم لوٗکھ چھِ یِمَن اَکھ خاص کھٮ۪نَس مَنٛز دِلچسپی چھِ۔\n- گَرٕ رَنن وٲلۍ یِم لذیٖذ، غذٲیی کھٮ۪ن رَنُن چھِ یِژھان۔\n- یِم لوٗکھ چھِ یِمَن تفریح کَرنُک تہٕ پارٹِین ہٕنٛز میزبٲنی کَرنُک مزٕ چھُ۔\n- یِم لوٗکھ چھِ یِمَن ڈایٹ کَرنُک منصوٗبہٕ چھُ تہٕ یِمَن صحت مند ریسیپین ہٕنٛز ضروٗرت چھِ۔\n\nمجموعی طور پٮ۪ٹھ، اَکھ کُک بُک ہیٚکہِ واریاہَن لوٗکَن خٲطرٕ اَکھ بۄڈ تحفہٕ آسِتھ۔ مگر یقیٖنی بَنٲوِو زِ تُہۍ ہیٚچھِو اَکھ کُک بُک یۄس اَتھ شخصٕچ دِلچسپی سۭتۍ مِلان آسہِ۔ تِہنٛدِس ہُنَرٕچ سطح، تِہنٛدِس پسندیدہ کھٮ۪ن، تِہنٛدِس غذٲیی ضروٗرتَن، تہٕ تِہنٛدِس پسندیدہ کھٮ۪نَس پٮ۪ٹھ غور کٔرِو۔", "domain": "sft_longform", "length_bucket": "xlong", "source_file": "kashmiri_sft_400_for_review.csv", "char_len_source": 1165, "pred_stage0_sarvam_base": "", "pred_stage1_ours": "", "pred_stage2_ours": "", "pred_stage3_merged": "", "pred_stage1_safe": "Overall a cookbook can be a great gift for many people However choose one that resonates with this persons interest considering their skill levels food preferences and dietary needs they would prefer cooking dishes from it.\""} diff --git a/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.json b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.json new file mode 100644 index 0000000..970364a --- /dev/null +++ b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.json @@ -0,0 +1,33 @@ +{ + "input_path": "/home/user/.hermes/cache/documents/doc_acc85791762a_kashmiri_benchmark_500.jsonl", + "output_path": "/home/user/.hermes/cache/documents/doc_acc85791762a_kashmiri_benchmark_500.stage1_safe_pred.jsonl", + "total_records": 500, + "chunk_size": 25, + "num_chunks": 20, + "directions": { + "ks2en": 350, + "en2ks": 150 + }, + "domains": { + "novel": 70, + "simple": 50, + "poetry": 80, + "news": 80, + "sft_longform": 50, + "medium_level": 50, + "high_quality": 50, + "literature": 70 + }, + "sample_ids": [ + "bench_0001", + "bench_0002", + "bench_0003", + "bench_0004", + "bench_0005", + "bench_0006", + "bench_0007", + "bench_0008", + "bench_0009", + "bench_0010" + ] +} \ No newline at end of file diff --git a/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.xlsx b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.xlsx new file mode 100644 index 0000000..8aed197 Binary files /dev/null and b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.summary.xlsx differ diff --git a/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.xlsx b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.xlsx new file mode 100644 index 0000000..ee978d0 --- /dev/null +++ b/benchmarks/kashmiri_benchmark_500_stage1_safe_pred.xlsx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1091a3918154edf762222e1d21364ce83eb00df597fa570dd79d94b02c23fffe +size 174136 diff --git a/config.json b/config.json new file mode 100644 index 0000000..c6bf6a8 --- /dev/null +++ b/config.json @@ -0,0 +1,37 @@ +{ + "architectures": [ + "Gemma3ForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "attn_logit_softcapping": null, + "bos_token_id": 2, + "cache_implementation": "hybrid", + "eos_token_id": 1, + "final_logit_softcapping": null, + "head_dim": 256, + "hidden_activation": "gelu_pytorch_tanh", + "hidden_size": 2560, + "initializer_range": 0.02, + "intermediate_size": 10240, + "max_position_embeddings": 131072, + "model_type": "gemma3_text", + "num_attention_heads": 8, + "num_hidden_layers": 34, + "num_key_value_heads": 4, + "pad_token_id": 0, + "query_pre_attn_scalar": 256, + "rms_norm_eps": 1e-06, + "rope_local_base_freq": 10000.0, + "rope_scaling": { + "factor": 8.0, + "rope_type": "linear" + }, + "rope_theta": 1000000.0, + "sliding_window": 1024, + "sliding_window_pattern": 6, + "torch_dtype": "bfloat16", + "transformers_version": "4.50.0", + "use_cache": true, + "vocab_size": 262208 +} diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..0408ca7 --- /dev/null +++ b/generation_config.json @@ -0,0 +1,11 @@ +{ + "bos_token_id": 2, + "cache_implementation": "hybrid", + "do_sample": false, + "eos_token_id": [1, 106], + "max_new_tokens": 48, + "no_repeat_ngram_size": 3, + "pad_token_id": 0, + "repetition_penalty": 1.15, + "transformers_version": "4.50.0" +} diff --git a/model-00001-of-00005.safetensors b/model-00001-of-00005.safetensors new file mode 100644 index 0000000..9c7d671 --- /dev/null +++ b/model-00001-of-00005.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab2c75a03fbe4c2728e13d3137f9be8321627086ba99f8e33c5b9d1ad726f86 +size 1992693080 diff --git a/model-00002-of-00005.safetensors b/model-00002-of-00005.safetensors new file mode 100644 index 0000000..c2b1a00 --- /dev/null +++ b/model-00002-of-00005.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082665572120526415d489574061759ad892b2bdc9026dfb5b118a7153bda77a +size 1992545648 diff --git a/model-00003-of-00005.safetensors b/model-00003-of-00005.safetensors new file mode 100644 index 0000000..ab68881 --- /dev/null +++ b/model-00003-of-00005.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d901983bec8950d0417149921b55e89f7fcf15b4e1c5cc36cc2583724d66f38 +size 1971554848 diff --git a/model-00004-of-00005.safetensors b/model-00004-of-00005.safetensors new file mode 100644 index 0000000..a4d63ba --- /dev/null +++ b/model-00004-of-00005.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3dc51aab563caa116c22e95f221a856dcd106fa697531c4a334412f85bd5cd +size 1803784232 diff --git a/model-00005-of-00005.safetensors b/model-00005-of-00005.safetensors new file mode 100644 index 0000000..b992496 --- /dev/null +++ b/model-00005-of-00005.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16049507ec54dfd98bd5aa76a8df6761e9f9ff5c45a15cb1a685dc3f2f792fcd +size 1342505088 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000..d8882bb --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,452 @@ +{ + "metadata": { + "total_size": 9103031296 + }, + "weight_map": { + "lm_head.weight": "model-00005-of-00005.safetensors", + "model.embed_tokens.weight": "model-00001-of-00005.safetensors", + "model.layers.0.input_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.mlp.up_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.input_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.mlp.up_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.10.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.14.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.14.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.15.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.16.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.2.input_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.mlp.up_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.20.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.input_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.mlp.down_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.mlp.up_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.24.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.24.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.24.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.24.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.24.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.24.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.24.self_attn.k_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.24.self_attn.q_norm.weight": "model-00003-of-00005.safetensors", + "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00005.safetensors", + "model.layers.25.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.25.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.26.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.27.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.28.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.29.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.3.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.3.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.3.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.3.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.3.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00005.safetensors", + "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00005.safetensors", + "model.layers.30.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.30.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.31.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.32.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.input_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.mlp.down_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.mlp.gate_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.mlp.up_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.post_attention_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.k_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.k_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.o_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.q_norm.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.q_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.33.self_attn.v_proj.weight": "model-00004-of-00005.safetensors", + "model.layers.4.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.4.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.5.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.input_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.mlp.down_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.mlp.up_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.k_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.q_norm.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00005.safetensors", + "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00005.safetensors", + "model.norm.weight": "model-00004-of-00005.safetensors" + } +} diff --git a/notebooks/colab_load_stage1_model.ipynb b/notebooks/colab_load_stage1_model.ipynb new file mode 100644 index 0000000..c3674f8 --- /dev/null +++ b/notebooks/colab_load_stage1_model.ipynb @@ -0,0 +1,129 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Koshur Kouter v1 — Colab loader\n", + "\n", + "This notebook loads the **full merged Stage 1** model from Hugging Face and runs a few example translations.\n", + "\n", + "- Repo: `Omarrran/koshur-kouter-ks-en_v1`\n", + "- Base model family: `sarvamai/sarvam-translate` / Gemma 3 text stack\n", + "- Recommended for full `bfloat16` loading on Colab: **L4 / A100 / better**\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip -q install -U transformers accelerate sentencepiece safetensors\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import torch\n", + "from transformers import AutoTokenizer, AutoModelForCausalLM\n", + "\n", + "REPO_ID = \"Omarrran/koshur-kouter-ks-en_v1\"\n", + "\n", + "tokenizer = AutoTokenizer.from_pretrained(REPO_ID)\n", + "model = AutoModelForCausalLM.from_pretrained(\n", + " REPO_ID,\n", + " torch_dtype=torch.bfloat16 if torch.cuda.is_available() else torch.float32,\n", + " device_map=\"auto\",\n", + ")\n", + "model.eval()\n", + "print(model.__class__.__name__)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def first_nonempty_line(text: str) -> str:\n", + " for line in text.splitlines():\n", + " line = line.strip()\n", + " if line:\n", + " return line\n", + " return text.strip()\n", + "\n", + "def build_prompt(source_text: str, direction: str):\n", + " if direction == \"ks2en\":\n", + " system = \"Translate the text below to English. Return only the translation.\"\n", + " elif direction == \"en2ks\":\n", + " system = \"Translate the text below to Kashmiri. Return only the translation.\"\n", + " else:\n", + " system = \"Translate the text below. Return only the translation.\"\n", + " return [\n", + " {\"role\": \"system\", \"content\": system},\n", + " {\"role\": \"user\", \"content\": source_text},\n", + " ]\n", + "\n", + "def translate(source_text: str, direction: str, max_new_tokens: int = 48):\n", + " messages = build_prompt(source_text, direction)\n", + " prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)\n", + " inputs = tokenizer(prompt, return_tensors=\"pt\", truncation=True, max_length=1024).to(model.device)\n", + " with torch.no_grad():\n", + " outputs = model.generate(\n", + " **inputs,\n", + " max_new_tokens=max_new_tokens,\n", + " do_sample=False,\n", + " repetition_penalty=1.15,\n", + " no_repeat_ngram_size=3,\n", + " pad_token_id=tokenizer.eos_token_id,\n", + " )\n", + " decoded = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)\n", + " return first_nonempty_line(decoded)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "examples = [\n", + " (\"Please sit down and have some tea.\", \"en2ks\"),\n", + " (\"The children are playing in the garden.\", \"en2ks\"),\n", + " (\"کٔشیر چھُ اکھ خوبصورت جٲی\", \"ks2en\"),\n", + "]\n", + "\n", + "for text, direction in examples:\n", + " print(\"SOURCE:\", text)\n", + " print(\"DIRECTION:\", direction)\n", + " print(\"PRED:\", translate(text, direction))\n", + " print(\"-\" * 80)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Optional lower-memory path\n", + "\n", + "If your Colab GPU is tight on VRAM, you can try a quantized load with `bitsandbytes`. The uploaded repository is still a **full merged model**; quantized loading is only a runtime option.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..abca2bc --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +torch>=2.5 +transformers>=4.50.0 +accelerate>=1.3.0 +sentencepiece>=0.2.0 +safetensors>=0.4.5 diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..1a61932 --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,33 @@ +{ + "boi_token": "", + "bos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eoi_token": "", + "eos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "image_token": "", + "pad_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "unk_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..29401f9 --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795 +size 33384568 diff --git a/tokenizer.model b/tokenizer.model new file mode 100644 index 0000000..14f810a --- /dev/null +++ b/tokenizer.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c +size 4689074 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..7d4aa37 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,51347 @@ +{ + "add_bos_token": true, + "add_eos_token": false, + "added_tokens_decoder": { + "0": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "1": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "2": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "3": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "4": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "5": { + "content": "[multimodal]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "6": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "7": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "8": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "9": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "10": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "11": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "12": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "13": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "14": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "15": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "16": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "17": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "18": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "19": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "20": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "21": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "22": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "23": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "24": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "25": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "26": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "27": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "28": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "29": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "30": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "31": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "32": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "33": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "34": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "35": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "36": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "37": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "38": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "39": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "40": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "41": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "42": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "43": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "44": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "45": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "46": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "47": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "48": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "49": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "50": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "51": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "52": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "53": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "54": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "55": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "56": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "57": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "58": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "59": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "60": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "61": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "62": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "63": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "64": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "65": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "66": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "67": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "68": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "69": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "70": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "71": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "72": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "73": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "74": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "75": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "76": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "77": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "78": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "79": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "80": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "81": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "82": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "83": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "84": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "85": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "86": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "87": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "88": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "89": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "90": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "91": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "92": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "93": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "94": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "95": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "96": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "97": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "98": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "99": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "107": { + "content": "\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "108": { + "content": "\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "109": { + "content": "\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "110": { + "content": "\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "111": { + "content": "\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "112": { + "content": "\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "113": { + "content": "\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "114": { + "content": "\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "115": { + "content": "\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "116": { + "content": "\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "117": { + "content": "\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "118": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "119": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "120": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "121": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "122": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "123": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "124": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "125": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "126": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "127": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "128": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "129": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "130": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "131": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "132": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "133": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "134": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "135": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "136": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "137": { + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "138": { + "content": "▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "139": { + "content": "▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "140": { + "content": "▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "141": { + "content": "▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "142": { + "content": "▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "143": { + "content": "▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "144": { + "content": "▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "145": { + "content": "▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "146": { + "content": "▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "147": { + "content": "▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "148": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "149": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "150": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "151": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "152": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "153": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "154": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "155": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "156": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "157": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "158": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "159": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "160": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "161": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "162": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "163": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "164": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "165": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "166": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "167": { + "content": "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "174": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "170": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "176": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "184": { + "content": "

", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "185": { + "content": "

", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "186": { + "content": "

", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "187": { + "content": "

", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "188": { + "content": "

", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "189": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "190": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "191": { + "content": "
", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "222": { + "content": "
    ", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "223": { + "content": "
  • ", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "224": { + "content": "
    ", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255968": { + "content": "\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255969": { + "content": "\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255970": { + "content": "\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255971": { + "content": "\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255972": { + "content": "\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255973": { + "content": "\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255974": { + "content": "\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255975": { + "content": "\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255976": { + "content": "\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255977": { + "content": "\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255978": { + "content": "\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255979": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255980": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255981": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255982": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255983": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255984": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255985": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255986": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255987": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255988": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255989": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255990": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255991": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255992": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255993": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255994": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255995": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255996": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255997": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255998": { + "content": "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "255999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "256000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "256001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "256999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "257999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "258999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "259999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "260999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "261999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262000": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262001": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262002": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262003": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262004": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262005": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262006": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262007": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262008": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262009": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262010": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262011": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262012": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262013": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262014": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262015": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262016": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262017": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262018": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262019": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262020": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262021": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262022": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262023": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262024": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262025": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262026": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262027": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262028": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262029": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262030": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262031": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262032": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262033": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262034": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262035": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262036": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262037": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262038": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262039": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262040": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262041": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262042": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262043": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262044": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262045": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262046": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262047": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262048": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262049": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262050": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262051": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262052": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262053": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262054": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262055": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262056": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262057": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262058": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262059": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262060": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262061": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262062": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262063": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262064": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262065": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262066": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262067": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262068": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262069": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262070": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262071": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262072": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262073": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262074": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262075": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262076": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262077": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262078": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262079": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262080": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262081": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262082": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262083": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262084": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262085": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262086": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262087": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262088": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262089": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262090": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262091": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262092": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262093": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262094": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262095": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262096": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262097": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262098": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262099": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262105": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262106": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262107": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "262144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "boi_token": "", + "bos_token": "", + "chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n {%- if messages[0]['content'] is string -%}\n {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n {%- else -%}\n {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n {%- endif -%}\n {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n {%- set first_user_prefix = \"\" -%}\n {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n {%- endif -%}\n {%- if (message['role'] == 'assistant') -%}\n {%- set role = \"model\" -%}\n {%- else -%}\n {%- set role = message['role'] -%}\n {%- endif -%}\n {{ '' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n {%- if message['content'] is string -%}\n {{ message['content'] | trim }}\n {%- elif message['content'] is iterable -%}\n {%- for item in message['content'] -%}\n {%- if item['type'] == 'image' -%}\n {{ '' }}\n {%- elif item['type'] == 'text' -%}\n {{ item['text'] | trim }}\n {%- endif -%}\n {%- endfor -%}\n {%- else -%}\n {{ raise_exception(\"Invalid content type\") }}\n {%- endif -%}\n {{ '\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n {{'model\n'}}\n{%- endif -%}\n", + "clean_up_tokenization_spaces": false, + "eoi_token": "", + "eos_token": "", + "extra_special_tokens": { + "boi_token": "", + "eoi_token": "", + "image_token": "" + }, + "image_token": "", + "model_max_length": 1000000000000000019884624838656, + "pad_token": "", + "padding_side": "right", + "processor_class": "Gemma3Processor", + "sp_model_kwargs": null, + "spaces_between_special_tokens": false, + "tokenizer_class": "GemmaTokenizer", + "unk_token": "", + "use_default_system_prompt": false +}