From 30ea629c505e4fc983e91b51f0aa64df800fda3d Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Sat, 6 Jun 2026 17:55:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: tartuNLP/Apertus-EstLLM-8B-Instruct-0326 Source: Original Platform --- .gitattributes | 36 + README.md | 253 + assets/logo-sinine.png | Bin 0 -> 31525 bytes chat_template.jinja | 337 ++ config.json | 38 + generation_config.json | 11 + model-00001-of-00004.safetensors | 3 + model-00002-of-00004.safetensors | 3 + model-00003-of-00004.safetensors | 3 + model-00004-of-00004.safetensors | 3 + model.safetensors.index.json | 459 ++ special_tokens_map.json | 30 + tokenizer.json | 3 + tokenizer_config.json | 8020 ++++++++++++++++++++++++++++++ 14 files changed, 9199 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 assets/logo-sinine.png create mode 100644 chat_template.jinja create mode 100644 config.json create mode 100644 generation_config.json create mode 100644 model-00001-of-00004.safetensors create mode 100644 model-00002-of-00004.safetensors create mode 100644 model-00003-of-00004.safetensors create mode 100644 model-00004-of-00004.safetensors create mode 100644 model.safetensors.index.json create mode 100644 special_tokens_map.json create mode 100644 tokenizer.json create mode 100644 tokenizer_config.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..52373fe --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.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 +tokenizer.json filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a36b13 --- /dev/null +++ b/README.md @@ -0,0 +1,253 @@ +--- +library_name: transformers +language: +- et +- en +base_model: +- tartuNLP/Apertus-EstLLM-8B-Instruct-1125 +- swiss-ai/Apertus-8B-Instruct-2509 +tags: +- merge +license: apache-2.0 +--- + +![image/png](assets/logo-sinine.png) + +# Apertus EstLLM 8B 0326 Instruct + +`Llama-3.1-EstLLM-8B-Instruct-0326` is obtained by applying the chat-vector merge approach +to [tartuNLP/Apertus-EstLLM-8B-Instruct-1125](https://huggingface.co/tartuNLP/Apertus-EstLLM-8B-Instruct-1125). + +## Use with transformers + +```python +from transformers import AutoModelForCausalLM, AutoTokenizer +import torch + +model_name = "tartuNLP/Apertus-EstLLM-8B-Instruct-0326" + +model = AutoModelForCausalLM.from_pretrained( + model_name, + dtype="auto", + device_map="auto" +) + +# to use on apple silicon, load the following way +# model = AutoModelForCausalLM.from_pretrained( +# model_name, +# dtype=torch.float16, +# device_map="mps", +# ) + +tokenizer = AutoTokenizer.from_pretrained(model_name) + +messages = [ + {"role": "user", "content": "Kas sa räägid eesti keelt?"} +] + +text = tokenizer.apply_chat_template( + messages, + tokenize=False, + add_generation_prompt=True +) + +model_inputs = tokenizer(text, return_tensors="pt").to(model.device) + +generated_ids = model.generate( + **model_inputs, + max_new_tokens=128, + do_sample=True, + temperature=0.4, + # specify eos token to stop at the end of the assistant response + eos_token_id=tokenizer.eos_token_id, +) + +# generated_ids include the input tokens as well, so we only decode new tokens +response = tokenizer.decode( + generated_ids[0][model_inputs["input_ids"].shape[1]:], + skip_special_tokens=True, +) + +print(response) +``` + +## Evaluation + +## Logits-based + +Scores for logits-based evaluation benchmarks are available on the [EuroEval](https://euroeval.com/leaderboards/Monolingual/estonian/) leaderboard. + +## Generative + +Every benchmark in this category is treated as a *generative* problem, and thus the evaluation is performed on the model responses obtained with 0 temperature (not logits). +The top scores are higlighted with **bold**. Second best scores are highlighted with **_italic bold_**. Rows are sorted in descending order based on the number of parameters of models (not scores). +The test set is used for evaluation of each dataset unless noted otherwise. + +Note that _all models are evaluated with the same prompt template_ for comparability, meaning that the scores do not necessarily represent each model's best possible +performance. This is especially the case for `deepseek-ai/DeepSeek-V3-0324` on some of the benchmarks. + +Only models of comparable size are evaluated on benchmarks in English. + +### Instruction-following + +#### Estonian + +Instruction level strict accuracy is reported for IFEval-et. + +| Model (# parameters ↓) | [IFEval-et](https://huggingface.co/datasets/tartuNLP/ifeval_et) | +|-------|-----------------------------------| +| moonshotai/Kimi-K2-Instruct | **0.7891** | +| deepseek-ai/DeepSeek-V3.2 | 0.7221 | +| deepseek-ai/DeepSeek-V3-0324 | 0.7171 | +| mistralai/Mistral-Large-3-675B-Instruct-2512 | 0.7097 | +| meta-llama/Llama-3.1-405B-Instruct | 0.7159 | +| meta-llama/Llama-3.3-70B-Instruct | **_0.7705_** | +| Qwen/Qwen2.5-72B-Instruct | 0.7407 | +| google/gemma-3-27b-it | 0.7655 | +| google/gemma-3-12b-it | 0.7556 | +| utter-project/EuroLLM-9B-Instruct-2512 | 0.5571 | +| utter-project/EuroLLM-9B-Instruct | 0.5397 | +| mistralai/Ministral-3-8B-Instruct-2512 | 0.4888 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326** | 0.5608 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125 | 0.4665 | +| swiss-ai/Apertus-8B-Instruct-2509| 0.5484 | +| meta-llama/Llama-3.1-8B-Instruct | 0.3797 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | 0.6141 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.5174 | +| BSC-LT/salamandra-7b-instruct | 0.5195 | +| tartuNLP/Llammas | 0.3524 | +| Qwen/Qwen2.5-7B-Instruct | 0.4988 | +| CohereLabs/tiny-aya-global | 0.6687 | + + +#### English + +Instruction level strict accuracy is reported for IFEval-en. + + +| Model (# parameters ↓) | [IFEval-en](https://huggingface.co/datasets/tartuNLP/ifeval_en) | +|-------|-----------------------------------| +| utter-project/EuroLLM-9B-Instruct-2512 | 0.7564 | +| utter-project/EuroLLM-9B-Instruct | 0.7004 | +| mistralai/Ministral-3-8B-Instruct-2512 | 0.6845 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326** | 0.7089 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125 | 0.6638 | +| swiss-ai/Apertus-8B-Instruct-2509 | 0.7808 | +| meta-llama/Llama-3.1-8B-Instruct | _**0.8106**_ | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | **0.8173** | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.7527 | +| tartuNLP/Llammas | 0.4373 | +| BSC-LT/salamandra-7b-instruct | 0.3289 | +| Qwen/Qwen2.5-7B-Instruct | 0.7954 | + +### Multiple Choice + +All datasets except Winogrande-et are evaluated in 0-shot mode. Winogrande-et is evaluated in 3-shot mode. Exact match accuracy is reported for every dataset. + +#### Estonian Language Competence + +| Model (# parameters ↓) | [Grammar-et](https://huggingface.co/datasets/TalTechNLP/grammar_et)| [Inflection-et](https://huggingface.co/datasets/TalTechNLP/inflection_et)| [Word-Meanings-et](https://huggingface.co/datasets/TalTechNLP/word_meanings_et) | +|-------|------|------|--------| +| moonshotai/Kimi-K2-Instruct | **0.916** | 0.6458 | **0.9689** | +| deepseek-ai/DeepSeek-V3.2 | 0.781 | 0.6891 | 0.8134 | +| deepseek-ai/DeepSeek-V3-0324 | 0.364 | 0 | 0 | +| mistralai/Mistral-Large-3-675B-Instruct-2512 | 0.796 | _**0.8355**_ | 0.9488 | +| meta-llama/Llama-3.1-405B-Instruct | 0.818 | **0.9089** | 0.9438 | +| meta-llama/Llama-3.3-70B-Instruct | 0.797 | 0.6421 | 0.9408 | +| Qwen/Qwen2.5-72B-Instruct | 0.694 | 0.5208 | 0.9057 | +| google/gemma-3-27b-it | 0.817 | 0.5934 | 0.9529 | +| google/gemma-3-12b-it | 0.789 | 0.4227 | 0.9318 | +| utter-project/EuroLLM-9B-Instruct-2512 | 0.644 | 0.4466 | 0.9288 | +| utter-project/EuroLLM-9B-Instruct | 0.764 | 0.367 | 0.9258 | +| mistralai/Ministral-3-8B-Instruct-2512 | 0.562 | 0.4833 | 0.8395 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326**| 0.713 | 0.4326 | 0.9438 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125| 0.646 | 0.421 | 0.9178 | +| swiss-ai/Apertus-8B-Instruct-2509 | 0.512 | 0.3662 | 0.9027 | +| meta-llama/Llama-3.1-8B-Instruct | 0.657 | 0.4165 | 0.8335 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | _**0.8310**_ | 0.5777 | _**0.9619**_ | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.692 | 0.5188 | 0.9569 | +| BSC-LT/salamandra-7b-instruct | 0.594 | 0.2668 | 0.8084 | +| Qwen/Qwen2.5-7B-Instruct | 0.598 | 0.4136 | 0.7984 | +| tartuNLP/Llammas | 0.529 | 0.2289 | 0.5326 | +| CohereLabs/tiny-aya-global | 0.563 | 0.3221 | 0.8455 | + +#### Knowledge and Reasoning (Estonian) + + +| Model (# parameters ↓) | [Winogrande-et](https://huggingface.co/datasets/tartuNLP/winogrande_et) | [Trivia-et](https://huggingface.co/datasets/TalTechNLP/trivia_et) | [Exam-et](https://huggingface.co/datasets/TalTechNLP/exam_et) | [GlobalPIQA-et](https://huggingface.co/datasets/mrlbenchmarks/global-piqa-nonparallel/viewer/ekk_latn)| [TruthfulQA-et](https://huggingface.co/datasets/LumiOpen/opengpt-x_truthfulqax/viewer/mc_ET) | +|-------|-----------------------------------|---------------------------------------------|---------------------------------------------|---------------------------------------------|-------------------------------------------| +| moonshotai/Kimi-K2-Instruct | **0.8138** | 0.4225 | **0.8414** | **0.79** | **0.7136** | +| deepseek-ai/DeepSeek-V3.2 | 0.4805 | 0.38 | 0.614 | 0.7 | 0.5863 | +| deepseek-ai/DeepSeek-V3-0324 | **_0.8042_** | 0.27 | 0.1221 | 0.04 | 0.2093 | +| mistralai/Mistral-Large-3-675B-Instruct-2512 | 0.7487 | 0.4275 | 0.7931 | _**0.73**_ | 0.6854 | +| meta-llama/Llama-3.1-405B-Instruct |0.7878 | **0.4713** | _**0.8309**_ | 0.58 | _**0.7001**_ | +| meta-llama/Llama-3.3-70B-Instruct |0.7397 | 0.3875 | 0.7652 | 0.58 | 0.6255 | +| Qwen/Qwen2.5-72B-Instruct | 0.7227 | 0.315 | 0.7162 | 0.65 | 0.6683 | +| google/gemma-3-27b-it | 0.7510 | 0.325 | 0.7751 | 0.71 | 0.5814 | +| google/gemma-3-12b-it | 0.6712 | 0.3237 | 0.7069 | 0.54 | 0.3158 | +| utter-project/EuroLLM-9B-Instruct-2512 | 0.5195 | 0.375 | 0.6097 | 0.52 | 0.399 | +| utter-project/EuroLLM-9B-Instruct | 0.5846 | 0.3738 | 0.5589 | 0.55 | 0.2889 | +| mistralai/Ministral-3-8B-Instruct-2512 | 0.5812 | 0.3125 | 0.5012 | 0.48 | 0.3525 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326** | 0.5976 | 0.35 | 0.6022 | 0.64 | 0.4296 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125 | 0.5467 | 0.3575 | 0.5651 | 0.63 | 0.3696 | +| swiss-ai/Apertus-8B-Instruct-2509 | 0.5105 | 0.345 | 0.552 | 0.59 | 0.366 | +| meta-llama/Llama-3.1-8B-Instruct | 0.5399 | 0.2888 | 0.5 | 0.54 | 0.437 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | 0.6440 | _**0.4288**_ | 0.6332 | 0.68 | 0.3794 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.5812 | 0.425 | 0.5093 | 0.63 | 0.3525 | +| BSC-LT/salamandra-7b-instruct | 0.2878 | 0.2875 | 0.3556 | 0.55 | 0.3011 | +| Qwen/Qwen2.5-7B-Instruct | 0.5473 | 0.2938 | 0.4913 | 0.57 | 0.4113 | +| tartuNLP/Llammas | 0.5037 | 0.2838 | 0.3649 | 0.01 | 0.2032 | +| CohereLabs/tiny-aya-global | 0.5603 | 0.31 | 0.5638 | 0.52 | 0.3782 | + +#### Knowledge and Reasoning (English) + + +| Model (# parameters ↓) | [Winogrande](https://huggingface.co/datasets/allenai/winogrande) | [GlobalPIQA-en](https://huggingface.co/datasets/mrlbenchmarks/global-piqa-nonparallel/viewer/eng_latn) | [TruthfulQA](https://huggingface.co/datasets/truthfulqa/truthful_qa) | [MMLU-Redux](https://huggingface.co/datasets/edinburgh-dawg/mmlu-redux-2.0) | [GSM8K](https://huggingface.co/datasets/openai/gsm8k) | +|-------|-----------------------------------|-----------------------------------|-----------------------------------|-----------------------------------|-----------------------------------| +| utter-project/EuroLLM-9B-Instruct-2512 | 0.5546 | 0.58 |0.4614 | 0.6334 | 0.4139 | +| utter-project/EuroLLM-9B-Instruct | 0.5059 | 0.58 | 0.2962 | 0.5741 | 0.5944 | +| mistralai/Ministral-3-8B-Instruct-2512 | _**0.6503**_ | _**0.77**_ | 0.519 | _**0.7418**_ | 0.3927 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326** | 0.5699 | 0.69 | 0.4174 | 0.5946 | 0.5588 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125 | 0.5348 | 0.56 | 0.3647 | 0.5944 | 0.5277 | +| swiss-ai/Apertus-8B-Instruct-2509 | 0.5133 | 0.73 | 0.3831 | 0.6099 | 0.5936 | +| meta-llama/Llama-3.1-8B-Instruct | 0.5625 | 0.76 | _**0.5239**_ | 0.6959 | 0.7710 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | 0.6118 | 0.76 | 0.3635 | 0.6606 | _**0.7726**_ | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.6084 | 0.71 | 0.366 | 0.6388 | 0.7202 | +| tartuNLP/Llammas | 0.498 | 0 | 0.1971 | 0.3417 | 0.1456 | +| BSC-LT/salamandra-7b-instruct | 0.4029 | 0.63 | 0.2717 | 0.5180 | 0.0076 | +| Qwen/Qwen2.5-7B-Instruct | **0.6627** | **0.83** | **0.5875** | **0.7555** | **0.7862** | + + +### Translation + +#### English to Estonian + +| Model | [wmt24pp](https://huggingface.co/datasets/google/wmt24pp) (BLEU ↑) | +|-------|---------| +| BSC-LT/salamandraTA-7b-instruct | 0.2713 | +| **tartuNLP/Apertus-EstLLM-8B-Instruct-0326** | 0.2676 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-1125 | 0.2635 | +| tartuNLP/Llama-3.1-EstLLM-8B-Instruct-0825 | 0.264 | +| tartuNLP/Apertus-EstLLM-8B-Instruct-1125| 0.2609 | +| utter-project/EuroLLM-9B-Instruct | 0.2602 | +| utter-project/EuroLLM-9B-Instruct-2512 | 0.2567 | +| swiss-ai/Apertus-8B-Instruct-2509 | 0.2372 | +| tartuNLP/Llammas | 0.1472 | +| meta-llama/Llama-3.1-8B-Instruct | 0.1406 | +| BSC-LT/salamandra-7b-instruct | 0.1201 | +| Qwen/Qwen2.5-7B-Instruct | 0.0476 | + + + +## Citation + +``` +@misc{dorkin2026estllmenhancingestoniancapabilities, + title={{EstLLM: Enhancing Estonian Capabilities in Multilingual LLMs via Continued Pretraining and Post-Training}}, + author={Aleksei Dorkin and Taido Purason and Emil Kalbaliyev and Hele-Andra Kuulmets and Marii Ojastu and Mark Fišel and Tanel Alumäe and Eleri Aedmaa and Krister Kruusmaa and Kairit Sirts}, + year={2026}, + eprint={2603.02041}, + archivePrefix={arXiv}, + primaryClass={cs.CL}, + url={https://arxiv.org/abs/2603.02041}, +} \ No newline at end of file diff --git a/assets/logo-sinine.png b/assets/logo-sinine.png new file mode 100644 index 0000000000000000000000000000000000000000..eee9fef6bc4a1fe298edf2574fa3f962db7cd300 GIT binary patch literal 31525 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 50 -%} + {{- "any[]" }} + {%- else -%} + {{- inner_type + "[]" }} + {%- endif -%} + {%- endif -%} + {%- if param_spec.nullable -%} + {{- " | null" }} + {%- endif -%} + {%- else -%} + {{- "any[]" }} + {%- if param_spec.nullable -%} + {{- " | null" }} + {%- endif -%} + {%- endif -%} + {%- elif param_spec.type is defined and param_spec.type is iterable and param_spec.type is not string and param_spec.type is not mapping and param_spec.type[0] is defined -%} + {#- Handle array of types like ["object", "object"] from Union[dict, list] #} + {%- if param_spec.type | length > 1 -%} + {{- param_spec.type | join(" | ") }} + {%- else -%} + {{- param_spec.type[0] }} + {%- endif -%} + {%- elif param_spec.oneOf -%} + {#- Handle oneOf schemas - check for complex unions and fallback to any #} + {%- set has_object_variants = false -%} + {%- for variant in param_spec.oneOf -%} + {%- if variant.type == "object" -%} + {%- set has_object_variants = true -%} + {%- endif -%} + {%- endfor -%} + {%- if has_object_variants and param_spec.oneOf|length > 1 -%} + {{- "any" }} + {%- else -%} + {%- for variant in param_spec.oneOf -%} + {{- render_typescript_type(variant, required_params) -}} + {%- if variant.description %} + {{- "// " + variant.description }} + {%- endif -%} + {%- if variant.default is defined %} + {{ "// default: " + variant.default|tojson }} + {%- endif -%} + {%- if not loop.last %} + {{- " | " }} + {% endif -%} + {%- endfor -%} + {%- endif -%} + {%- elif param_spec.type == "string" -%} + {%- if param_spec.enum -%} + {{- '"' + param_spec.enum|join('" | "') + '"' -}} + {%- else -%} + {{- "string" }} + {%- if param_spec.nullable %} + {{- " | null" }} + {%- endif -%} + {%- endif -%} + {%- elif param_spec.type == "number" -%} + {{- "number" }} + {%- elif param_spec.type == "integer" -%} + {{- "number" }} + {%- elif param_spec.type == "boolean" -%} + {{- "boolean" }} + {%- elif param_spec.type == "object" -%} + {%- if param_spec.properties -%} + {{- "{\n" }} + {%- for prop_name, prop_spec in param_spec.properties.items() -%} + {{- prop_name -}} + {%- if prop_name not in (param_spec.required or []) -%} + {{- "?" }} + {%- endif -%} + {{- ": " }} + {{ render_typescript_type(prop_spec, param_spec.required or []) }} + {%- if not loop.last -%} + {{-", " }} + {%- endif -%} + {%- endfor -%} + {{- "}" }} + {%- else -%} + {{- "object" }} + {%- endif -%} + {%- else -%} + {{- "any" }} + {%- endif -%} +{%- endmacro -%} + +{%- macro render_tools(tools) -%} + {%- for tool in tools %} + {{- "// " + tool.description + "\n" }} + {{- "type "+ tool.name + " = " }} + {%- if tool.parameters and tool.parameters.properties %} + {{- "(_: {\n" }} + {%- for param_name, param_spec in tool.parameters.properties.items() %} + {%- if param_spec.description %} + {{- "// " + param_spec.description + "\n" }} + {%- endif %} + {{- param_name }} + {%- if param_name not in (tool.parameters.required or []) -%} + {{- "?" }} + {%- endif -%} + {{- ": " }} + {{- render_typescript_type(param_spec, tool.parameters.required or []) }} + {%- if param_spec.default is defined -%} + {%- if param_spec.enum %} + {{- ", // default: " + param_spec.default }} + {%- elif param_spec.oneOf %} + {{- "// default: " + param_spec.default }} + {%- else %} + {{- ", // default: " + param_spec.default|tojson }} + {%- endif -%} + {%- endif -%} + {%- if not loop.last %} + {{- ",\n" }} + {%- else %} + {{- "\n" }} + {%- endif -%} + {%- endfor %} + {{- "}) => any;" }} + {%- else -%} + {{- "() => any;" }} + {%- endif -%} + {%- if not loop.last -%} + {{- "\n" }} + {%- endif -%} + {%- endfor %} +{%- endmacro -%} + +{{ bos_token }} + +{%- set system_token = '<|system_start|>' -%} +{%- set end_system_token = '<|system_end|>' -%} +{%- set developer_token = '<|developer_start|>' -%} +{%- set end_developer_token = '<|developer_end|>' -%} +{%- set user_token = '<|user_start|>' -%} +{%- set end_user_token = '<|user_end|>' -%} +{%- set assistant_token = '<|assistant_start|>' -%} +{%- set end_assistant_token = '<|assistant_end|>' -%} +{%- set inner_token = '<|inner_prefix|>' -%} +{%- set outer_token = '<|inner_suffix|>' -%} +{%- set tool_calls_token = '<|tools_prefix|>' -%} +{%- set end_tool_calls_token = '<|tools_suffix|>' -%} +{%- set image_token = '<|image|>' -%} + +{%- set ns = namespace(in_assistant=false, in_tool=false, in_inner=false, waiting_for_tool_outputs=false, assistant_format=none) -%} + +{%- if messages and messages[0].role == 'system' -%} + {%- if "content" in messages[0] -%} + {%- if messages[0].content is string -%} + {{ system_token + messages[0].content + end_system_token }} + {%- elif messages[0].content is mapping and "text" in messages[0].content -%} + {{ system_token + messages[0].content.text + end_system_token }} + {%- else -%} + {{- raise_exception("Invalid system message") -}} + {%- endif -%} + {%- else -%} + {{- raise_exception("Invalid system message") -}} + {%- endif -%} + {%- set loop_messages = messages[1:] -%} +{%- else -%} + {{ system_token + 'You are Apertus, a helpful assistant created by the SwissAI initiative.\nKnowledge cutoff: 2024-04\nCurrent date: ' + strftime_now('%Y-%m-%d') + end_system_token }} + {%- set loop_messages = messages -%} +{%- endif -%} + +{{ developer_token + 'Deliberation: ' }} +{%- if enable_thinking is defined and enable_thinking -%} + {{ 'enabled\n' }} +{%- else -%} + {{ 'disabled\n' }} +{%- endif -%} +{%- if tools is defined and tools -%} + {{ 'Tool Capabilities:\n' + render_tools(tools) }} +{%- else -%} + {{ 'Tool Capabilities: disabled' }} +{%- endif -%} +{{ end_developer_token }} + +{%- for message in loop_messages -%} + {%- if message.role == 'user' -%} + {%- set ns.in_inner = false -%} + {%- if ns.in_tool -%} + {{ ']' }} + {%- set ns.in_tool = false -%} + {%- endif -%} + {%- if ns.in_assistant -%} + {{ end_assistant_token }} + {%- set ns.in_assistant = false -%} + {%- endif -%} + {%- if "content" in message -%} + {{ user_token }} + {%- if message.content is string -%} + {{ message.content }} + {%- elif message.content is mapping and "parts" in message.content -%} + {%- set parts = message.content.parts -%} + {%- for part in parts -%} + {%- if part.type == "text" -%} + {{ part.text }} + {%- elif part.type == "image" -%} + {{ image_token }} + {%- else -%} + {{- raise_exception("Invalid user part: " + part.type) -}} + {%- endif -%} + {%- endfor -%} + {%- else -%} + {{- raise_exception("Invalid user message: " + message.role) -}} + {%- endif -%} + {{ end_user_token }} + {%- endif -%} + {%- elif message.role == 'assistant' -%} + {%- if not ns.in_assistant -%} + {{ assistant_token }} + {%- set ns.in_assistant = true -%} + {%- endif -%} + {%- if "content" in message -%} + {%- if message.content is string and (ns.assistant_format is none or ns.assistant_format == "string") -%} + {%- if ns.in_tool -%} + {{ ']' }} + {%- set ns.in_tool = false -%} + {%- endif -%} + {%- set ns.assistant_format = "string" -%} + {{ message.content }} + {%- elif message.content is mapping and "blocks" in message.content and (ns.assistant_format is none or ns.assistant_format == "mapping") -%} + {%- set ns.assistant_format = "mapping" -%} + {%- set blocks = message.content.blocks -%} + {%- for block in blocks -%} + {%- if block.type == 'thoughts' -%} + {%- if ns.in_tool -%} + {{ ']' }} + {%- set ns.in_tool = false -%} + {%- endif -%} + {%- if not ns.in_inner -%} + {%- set ns.in_inner = true -%} + {{ inner_token }} + {%- endif -%} + {{ block.text }} + {%- elif block.type == 'tool_calls' -%} + {%- if ns.in_tool -%} + {{ ']' }} + {%- set ns.in_tool = false -%} + {%- endif -%} + {%- if ns.in_inner and not loop.first and block.calls|length == 1 and block.calls[0].name == 'display_answers' -%} + {%- set ns.in_inner = false -%} + {{ outer_token }} + {%- endif -%} + {{ tool_calls_token + '[' }} + {%- for tool_call in block.calls -%} + {{- '{"' + tool_call.name + '": ' + tool_call.arguments + '}' }} + {%- if not loop.last -%} + {{- ", " }} + {%- endif -%} + {%- endfor -%} + {{ ']' + end_tool_calls_token }} + {%- set ns.waiting_for_tool_outputs = true -%} + {%- elif block.type == 'tool_outputs' -%} + {%- if ns.in_tool -%} + {{- raise_exception("Cannot have both tool outputs as separate messages and tool outputs as blocks") -}} + {%- endif -%} + {{ '[' }} + {%- for tool_output in block.outputs -%} + {{- tool_output.output }} + {%- if not loop.last -%} + {{- ", " }} + {%- endif -%} + {%- endfor -%} + {{- ']' }} + {%- set ns.waiting_for_tool_outputs = false -%} + {%- elif block.type == 'response' -%} + {%- if ns.in_tool -%} + {{ ']' }} + {%- set ns.in_tool = false -%} + {%- endif -%} + {%- if (not loop.first and ns.in_inner) or (ns.in_assistant and ns.in_inner) -%} + {%- set ns.in_inner = false -%} + {{ outer_token }} + {%- endif -%} + {{ block.text }} + {%- else -%} + {{- raise_exception("Invalid assistant block type: " + block.type) -}} + {%- endif -%} + {%- endfor -%} + {%- else -%} + {{- raise_exception("Invalid assistant content") -}} + {%- endif -%} + {%- else -%} + {{- raise_exception("Invalid assistant message") -}} + {%- endif -%} + {%- if "tool_calls" in message and message.tool_calls -%} + {{ tool_calls_token + '[' }} + {%- for tool_call in message.tool_calls -%} + {%- if tool_call.type == 'function' -%} + {%- set function = tool_call.function -%} + {{- '{"' + function.name + '": ' + function.arguments + '}' }} + {%- if not loop.last -%} + {{- ", " }} + {%- endif -%} + {%- else -%} + {{- raise_exception("Invalid tool call type: " + tool_call.type) -}} + {%- endif -%} + {%- endfor -%} + {{ ']' + end_tool_calls_token }} + {%- set ns.waiting_for_tool_outputs = true -%} + {%- endif -%} + {%- elif message.role == 'tool' -%} + {%- if not ns.in_assistant -%} + {{- raise_exception("Tool message outside of assistant") -}} + {%- endif -%} + {%- if not ns.in_tool -%} + {{ '[' }} + {%- set ns.in_tool = true -%} + {%- else -%} + {{ ", "}} + {%- endif -%} + {{ message.content }} + {%- set ns.waiting_for_tool_outputs = false -%} + {%- else -%} + {{- raise_exception("Invalid message role") -}} + {%- endif -%} +{%- endfor -%} +{%- if ns.in_tool -%} + {{ ']' }} +{%- endif -%} +{%- if ns.in_assistant and not (continue_assistant_message is defined and continue_assistant_message) and not ns.waiting_for_tool_outputs -%} + {{ end_assistant_token }} +{%- endif -%} +{%- if add_generation_prompt -%} + {{ assistant_token }} +{%- endif -%} diff --git a/config.json b/config.json new file mode 100644 index 0000000..e1b546c --- /dev/null +++ b/config.json @@ -0,0 +1,38 @@ +{ + "architectures": [ + "ApertusForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": 1, + "dtype": "bfloat16", + "eos_token_id": 68, + "hidden_act": "xielu", + "hidden_dropout": 0.0, + "hidden_size": 4096, + "initializer_range": 0.02, + "intermediate_size": 21504, + "max_position_embeddings": 65536, + "mlp_bias": false, + "model_type": "apertus", + "num_attention_heads": 32, + "num_hidden_layers": 32, + "num_key_value_heads": 8, + "pad_token_id": 3, + "post_norm": false, + "qk_norm": true, + "rms_norm_eps": 1e-05, + "rope_scaling": { + "factor": 8.0, + "high_freq_factor": 4.0, + "low_freq_factor": 1.0, + "original_max_position_embeddings": 8192, + "rope_type": "llama3", + "type": "llama3" + }, + "rope_theta": 12000000, + "tie_word_embeddings": false, + "transformers_version": "4.57.1", + "use_cache": false, + "vocab_size": 131072 +} diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..7de40ae --- /dev/null +++ b/generation_config.json @@ -0,0 +1,11 @@ +{ + "_from_model_config": true, + "bos_token_id": 1, + "eos_token_id": [ + 2, + 68, + 72 + ], + "pad_token_id": 3, + "transformers_version": "4.57.1" +} diff --git a/model-00001-of-00004.safetensors b/model-00001-of-00004.safetensors new file mode 100644 index 0000000..0604e46 --- /dev/null +++ b/model-00001-of-00004.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174a0305fe59da00f3f6422438a98f783890935d906ebe607c219c3e5dc0adc9 +size 4999776656 diff --git a/model-00002-of-00004.safetensors b/model-00002-of-00004.safetensors new file mode 100644 index 0000000..23d0771 --- /dev/null +++ b/model-00002-of-00004.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc87d197cda0fd413165ef75d5138aaa724ea7784d5551ca9311d916811c3620 +size 4882374192 diff --git a/model-00003-of-00004.safetensors b/model-00003-of-00004.safetensors new file mode 100644 index 0000000..0fca3e9 --- /dev/null +++ b/model-00003-of-00004.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d860d9d63f353d5f22c44102129c9e45317810f6bd634933543cab83320098 +size 4974647808 diff --git a/model-00004-of-00004.safetensors b/model-00004-of-00004.safetensors new file mode 100644 index 0000000..ecf13d3 --- /dev/null +++ b/model-00004-of-00004.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ccfcc62aa610b56f7943a1c4e701661a8d755f077bfeef3d259847eb2f8745 +size 1249928160 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000..0125ef3 --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,459 @@ +{ + "metadata": { + "total_parameters": 8053338176, + "total_size": 16106676480 + }, + "weight_map": { + "lm_head.weight": "model-00004-of-00004.safetensors", + "model.embed_tokens.weight": "model-00001-of-00004.safetensors", + "model.layers.0.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.0.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.1.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.10.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.10.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.11.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.12.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.13.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.14.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.15.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.16.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.17.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.18.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.19.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.2.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.2.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.20.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.20.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.20.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.20.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.21.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.21.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.22.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.23.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.24.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.25.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.26.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.27.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.28.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.29.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.3.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.3.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.30.attention_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.30.feedforward_layernorm.weight": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.act_fn.alpha_n": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.act_fn.alpha_p": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.act_fn.beta": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.act_fn.eps": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.31.attention_layernorm.weight": "model-00004-of-00004.safetensors", + "model.layers.31.feedforward_layernorm.weight": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.act_fn.alpha_n": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.act_fn.alpha_p": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.act_fn.beta": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.act_fn.eps": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.down_proj.weight": "model-00004-of-00004.safetensors", + "model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.k_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.q_norm.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors", + "model.layers.4.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.4.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.5.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.6.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.7.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.attention_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.8.feedforward_layernorm.weight": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.act_fn.alpha_n": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.act_fn.alpha_p": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.act_fn.beta": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.act_fn.eps": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors", + "model.layers.9.attention_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.9.feedforward_layernorm.weight": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.act_fn.alpha_n": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.act_fn.alpha_p": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.act_fn.beta": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.act_fn.eps": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.k_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.q_norm.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors", + "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors", + "model.norm.weight": "model-00004-of-00004.safetensors" + } +} diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..daaf740 --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,30 @@ +{ + "bos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eos_token": { + "content": "<|assistant_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "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..81836e9 --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010095abf1dc6f52d4867584e7b3f0d4eece854593ae310220ec7782dd1b0a66 +size 17078474 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..b14c182 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,8020 @@ +{ + "add_bos_token": true, + "add_eos_token": false, + "add_prefix_space": 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": "[/INST]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "5": { + "content": "[AVAILABLE_TOOLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "6": { + "content": "[/AVAILABLE_TOOLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "7": { + "content": "[TOOL_RESULTS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "8": { + "content": "[/TOOL_RESULTS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "9": { + "content": "[TOOL_CALLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "10": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "11": { + "content": "[PREFIX]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "12": { + "content": "[MIDDLE]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "13": { + "content": "[SUFFIX]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "14": { + "content": "\\begin{", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "15": { + "content": "\\end{", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "16": { + "content": "\\text{", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "17": { + "content": "\\boxed{", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": false + }, + "18": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "19": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "20": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "21": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "22": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "23": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "24": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "25": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "26": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "27": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "28": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "29": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "30": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "31": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "32": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "33": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "34": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "35": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "36": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "37": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "38": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "39": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "40": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "41": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "42": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "43": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "44": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "45": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "46": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "47": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "48": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "49": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "50": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "51": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "52": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "53": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "54": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "55": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "56": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "57": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "58": { + "content": "<|fim_begin|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "59": { + "content": "<|fim_hole|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "60": { + "content": "<|fim_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "61": { + "content": "<|system_start|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "62": { + "content": "<|system_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "63": { + "content": "<|developer_start|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "64": { + "content": "<|developer_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "65": { + "content": "<|user_start|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "66": { + "content": "<|user_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "67": { + "content": "<|assistant_start|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "68": { + "content": "<|assistant_end|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "69": { + "content": "<|inner_prefix|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "70": { + "content": "<|inner_suffix|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "71": { + "content": "<|tools_prefix|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "72": { + "content": "<|tools_suffix|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "73": { + "content": "<|image|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "74": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "75": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "76": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "77": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "78": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "79": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "80": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "81": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "82": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "83": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "84": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "85": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "86": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "87": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "88": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "89": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "90": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "91": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "92": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "93": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "94": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "95": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "96": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "97": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "98": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "99": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "100": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "101": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "102": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "103": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "104": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "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": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "108": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "109": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "110": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "111": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "112": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "113": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "114": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "115": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "116": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "117": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "118": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "119": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "120": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "121": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "122": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "123": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "124": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "125": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "126": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "127": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "128": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "129": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "130": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "131": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "132": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "133": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "134": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "135": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "136": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "137": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "138": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "139": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "140": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "141": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "142": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "143": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "144": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "145": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "146": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "147": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "148": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "149": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "150": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "151": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "152": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "153": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "154": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "155": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "156": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "157": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "158": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "159": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "160": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "161": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "162": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "163": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "164": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "165": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "166": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "167": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "168": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "169": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "170": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "171": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "172": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "173": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "174": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "175": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "176": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "177": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "178": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "179": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "180": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "181": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "182": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "183": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "184": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "185": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "186": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "187": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "188": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "189": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "190": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "191": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "192": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "193": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "194": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "195": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "196": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "197": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "198": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "199": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "200": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "201": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "202": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "203": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "204": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "205": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "206": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "207": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "208": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "209": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "210": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "211": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "212": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "213": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "214": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "215": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "216": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "217": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "218": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "219": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "220": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "221": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "222": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "223": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "224": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "225": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "226": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "227": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "228": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "229": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "230": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "231": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "232": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "233": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "234": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "235": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "236": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "237": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "238": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "239": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "240": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "241": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "242": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "243": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "244": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "245": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "246": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "247": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "248": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "249": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "250": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "251": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "252": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "253": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "254": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "255": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "256": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "257": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "258": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "259": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "260": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "261": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "262": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "263": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "264": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "265": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "266": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "267": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "268": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "269": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "270": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "271": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "272": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "273": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "274": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "275": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "276": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "277": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "278": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "279": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "280": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "281": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "282": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "283": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "284": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "285": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "286": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "287": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "288": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "289": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "290": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "291": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "292": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "293": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "294": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "295": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "296": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "297": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "298": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "299": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "300": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "301": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "302": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "303": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "304": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "305": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "306": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "307": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "308": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "309": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "310": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "311": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "312": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "313": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "314": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "315": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "316": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "317": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "318": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "319": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "320": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "321": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "322": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "323": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "324": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "325": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "326": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "327": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "328": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "329": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "330": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "331": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "332": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "333": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "334": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "335": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "336": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "337": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "338": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "339": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "340": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "341": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "342": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "343": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "344": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "345": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "346": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "347": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "348": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "349": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "350": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "351": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "352": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "353": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "354": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "355": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "356": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "357": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "358": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "359": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "360": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "361": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "362": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "363": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "364": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "365": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "366": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "367": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "368": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "369": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "370": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "371": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "372": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "373": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "374": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "375": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "376": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "377": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "378": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "379": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "380": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "381": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "382": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "383": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "384": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "385": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "386": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "387": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "388": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "389": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "390": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "391": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "392": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "393": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "394": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "395": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "396": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "397": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "398": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "399": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "400": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "401": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "402": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "403": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "404": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "405": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "406": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "407": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "408": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "409": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "410": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "411": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "412": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "413": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "414": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "415": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "416": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "417": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "418": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "419": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "420": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "421": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "422": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "423": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "424": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "425": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "426": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "427": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "428": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "429": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "430": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "431": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "432": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "433": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "434": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "435": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "436": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "437": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "438": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "439": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "440": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "441": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "442": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "443": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "444": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "445": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "446": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "447": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "448": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "449": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "450": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "451": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "452": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "453": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "454": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "455": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "456": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "457": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "458": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "459": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "460": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "461": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "462": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "463": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "464": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "465": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "466": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "467": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "468": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "469": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "470": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "471": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "472": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "473": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "474": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "475": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "476": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "477": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "478": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "479": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "480": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "481": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "482": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "483": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "484": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "485": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "486": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "487": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "488": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "489": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "490": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "491": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "492": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "493": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "494": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "495": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "496": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "497": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "498": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "499": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "500": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "501": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "502": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "503": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "504": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "505": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "506": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "507": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "508": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "509": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "510": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "511": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "512": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "513": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "514": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "515": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "516": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "517": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "518": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "519": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "520": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "521": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "522": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "523": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "524": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "525": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "526": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "527": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "528": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "529": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "530": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "531": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "532": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "533": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "534": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "535": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "536": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "537": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "538": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "539": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "540": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "541": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "542": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "543": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "544": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "545": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "546": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "547": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "548": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "549": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "550": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "551": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "552": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "553": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "554": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "555": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "556": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "557": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "558": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "559": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "560": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "561": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "562": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "563": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "564": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "565": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "566": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "567": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "568": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "569": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "570": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "571": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "572": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "573": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "574": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "575": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "576": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "577": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "578": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "579": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "580": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "581": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "582": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "583": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "584": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "585": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "586": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "587": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "588": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "589": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "590": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "591": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "592": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "593": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "594": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "595": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "596": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "597": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "598": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "599": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "600": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "601": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "602": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "603": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "604": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "605": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "606": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "607": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "608": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "609": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "610": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "611": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "612": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "613": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "614": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "615": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "616": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "617": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "618": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "619": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "620": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "621": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "622": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "623": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "624": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "625": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "626": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "627": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "628": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "629": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "630": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "631": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "632": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "633": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "634": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "635": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "636": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "637": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "638": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "639": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "640": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "641": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "642": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "643": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "644": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "645": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "646": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "647": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "648": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "649": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "650": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "651": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "652": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "653": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "654": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "655": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "656": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "657": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "658": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "659": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "660": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "661": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "662": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "663": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "664": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "665": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "666": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "667": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "668": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "669": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "670": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "671": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "672": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "673": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "674": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "675": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "676": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "677": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "678": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "679": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "680": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "681": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "682": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "683": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "684": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "685": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "686": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "687": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "688": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "689": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "690": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "691": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "692": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "693": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "694": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "695": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "696": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "697": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "698": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "699": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "700": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "701": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "702": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "703": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "704": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "705": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "706": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "707": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "708": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "709": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "710": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "711": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "712": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "713": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "714": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "715": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "716": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "717": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "718": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "719": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "720": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "721": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "722": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "723": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "724": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "725": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "726": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "727": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "728": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "729": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "730": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "731": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "732": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "733": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "734": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "735": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "736": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "737": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "738": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "739": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "740": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "741": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "742": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "743": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "744": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "745": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "746": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "747": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "748": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "749": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "750": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "751": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "752": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "753": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "754": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "755": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "756": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "757": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "758": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "759": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "760": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "761": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "762": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "763": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "764": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "765": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "766": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "767": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "768": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "769": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "770": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "771": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "772": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "773": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "774": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "775": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "776": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "777": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "778": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "779": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "780": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "781": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "782": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "783": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "784": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "785": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "786": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "787": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "788": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "789": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "790": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "791": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "792": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "793": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "794": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "795": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "796": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "797": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "798": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "799": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "800": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "801": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "802": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "803": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "804": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "805": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "806": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "807": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "808": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "809": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "810": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "811": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "812": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "813": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "814": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "815": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "816": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "817": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "818": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "819": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "820": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "821": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "822": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "823": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "824": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "825": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "826": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "827": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "828": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "829": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "830": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "831": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "832": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "833": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "834": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "835": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "836": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "837": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "838": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "839": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "840": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "841": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "842": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "843": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "844": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "845": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "846": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "847": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "848": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "849": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "850": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "851": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "852": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "853": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "854": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "855": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "856": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "857": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "858": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "859": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "860": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "861": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "862": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "863": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "864": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "865": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "866": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "867": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "868": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "869": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "870": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "871": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "872": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "873": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "874": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "875": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "876": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "877": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "878": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "879": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "880": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "881": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "882": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "883": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "884": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "885": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "886": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "887": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "888": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "889": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "890": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "891": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "892": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "893": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "894": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "895": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "896": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "897": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "898": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "899": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "900": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "901": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "902": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "903": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "904": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "905": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "906": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "907": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "908": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "909": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "910": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "911": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "912": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "913": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "914": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "915": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "916": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "917": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "918": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "919": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "920": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "921": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "922": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "923": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "924": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "925": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "926": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "927": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "928": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "929": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "930": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "931": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "932": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "933": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "934": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "935": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "936": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "937": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "938": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "939": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "940": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "941": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "942": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "943": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "944": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "945": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "946": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "947": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "948": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "949": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "950": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "951": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "952": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "953": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "954": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "955": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "956": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "957": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "958": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "959": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "960": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "961": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "962": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "963": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "964": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "965": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "966": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "967": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "968": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "969": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "970": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "971": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "972": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "973": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "974": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "975": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "976": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "977": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "978": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "979": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "980": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "981": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "982": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "983": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "984": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "985": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "986": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "987": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "988": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "989": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "990": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "991": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "992": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "993": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "994": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "995": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "996": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "997": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "998": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "999": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "bos_token": "", + "clean_up_tokenization_spaces": false, + "eos_token": "<|assistant_end|>", + "extra_special_tokens": {}, + "model_input_names": [ + "input_ids", + "attention_mask" + ], + "model_max_length": 1000000000000000019884624838656, + "pad_token": "", + "padding_side": "left", + "tokenizer_class": "PreTrainedTokenizerFast", + "unk_token": "" +}