diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..faad6762486a48386fdf9e47e2c7bd99439fc3e9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,158 @@
+---
+language:
+- en
+library_name: transformers
+tags:
+- stepfun
+- MOE
+- pruning
+- compression
+license: other
+name: cerebras/Step-3.5-Flash-REAP-121B-A11B
+description: >
+ This model was obtained by uniformly pruning 40% of experts in Step-3.5-Flash using the REAP method.
+readme: >
+ https://huggingface.co/cerebras/Step-3.5-Flash-REAP-121B-A11B/main/README.md
+pipeline_tag: text-generation
+base_model:
+- stepfun-ai/Step-3.5-Flash
+---
+
+
+ š³ REAPš³ the Experts: Why Pruning Prevails for One-Shot MoE Compression
+
+
+
+# Step-3.5-Flash-REAP-121B-A11B
+
+## ⨠Highlights
+
+Introducing **Step-3.5-Flash-REAP-121B-A11B**, a **memory-efficient compressed variant** of Step-3.5-Flash that maintains near-identical performance while being **40% lighter**.
+
+This model was created using **REAP (Router-weighted Expert Activation Pruning)**, a novel expert pruning method that selectively removes redundant experts while preserving the router's independent control over remaining experts. Key features include:
+
+- **Near-Lossless Performance**: Maintains almost identical accuracy on code generation, agentic coding, and function calling tasks compared to the full 196B model
+- **40% Memory Reduction**: Compressed from 196B to 121B parameters, significantly lowering deployment costs and memory requirements
+- **Preserved Capabilities**: Retains all core functionalities including code generation, math & reasoning and tool calling.
+- **Drop-in Compatibility**: Works with vanilla vLLM - no source modifications or custom patches required
+- **Optimized for Real-World Use**: Particularly effective for resource-constrained environments, local deployments, and academic research
+---
+## š Model Overview
+
+**Step-3.5-Flash-REAP-121B-A11B** has the following specifications:
+
+- **Base Model**: Step-3.5-Flash
+- **Compression Method**: REAP (Router-weighted Expert Activation Pruning)
+- **Compression Ratio**: 40% expert pruning
+- **Type**: Sparse Mixture-of-Experts (SMoE) Causal Language Model
+- **Number of Parameters**: 121B total, 11B activated per token
+- **Number of Layers**: 45
+- **Number of Attention Heads**: 64
+- **Number of Experts**: 173 (uniformly pruned from 288)
+- **Number of Activated Experts**: 8 per token
+- **Context Length**: 262,144 tokens
+- **License**: Apache 2.0
+
+---
+
+## š Evaluations
+
+
+
+---
+
+## š Deployment
+
+You can deploy the model directly using the **latest vLLM** (that supports Step-3.5-Flash), no source modifications or custom patches required.
+
+```bash
+vllm serve cerebras/Step-3.5-Flash-REAP-121B-A11B \
+ --tensor-parallel-size 8 \
+ --tool-call-parser step3p5 \
+ --reasoning-parser step3p5 \
+ --trust-remote-code \
+ --enable_expert_parallel \
+ --disable-cascade-attn \
+ --enable-auto-tool-choice
+```
+
+If you encounter insufficient memory when running this model, you might need to set a lower value for `--max-num-seqs` flag (e.g. set to 64). For more information, refer to the [official vLLM deployment guide](https://huggingface.co/stepfun-ai/Step-3.5-Flash#61-vllm).
+
+## š§© Model Creation
+
+This checkpoint was created by applying the **REAP (Router-weighted Expert Activation Pruning)** method uniformly across all Mixture-of-Experts (MoE) blocks of **Step-3.5-Flash**, with a **40% pruning rate**.
+
+### How REAP Works
+
+REAP selects experts to prune based on a novel **saliency criterion** that considers both:
+- **Router gate values**: How frequently and strongly the router activates each expert
+- **Expert activation norms**: The magnitude of each expert's output contributions
+
+This dual consideration ensures that experts contributing minimally to the layer's output are pruned, while preserving those that play critical roles in the model's computations.
+
+### Key Advantages
+
+- **One-Shot Compression**: No fine-tuning required after pruning - the model is immediately ready for deployment
+- **Preserved Router Control**: Unlike expert merging methods, REAP maintains the router's independent, input-dependent control over remaining experts, avoiding "functional subspace collapse"
+- **Generative Task Superiority**: REAP significantly outperforms expert merging approaches on generative benchmarks (code generation, creative writing, mathematical reasoning) while maintaining competitive performance on discriminative tasks
+
+š For more details, refer to the following resources:
+
+- [š§¾ arXiv Preprint](https://arxiv.org/abs/2510.13999)
+- [š§¾ REAP Blog](https://www.cerebras.ai/blog/reap)
+- [š» REAP Codebase (GitHub)](https://github.com/CerebrasResearch/reap)
+
+---
+
+## āļø License
+
+This model is derived from
+**[`stepfun-ai/Step-3.5-Flash`](https://huggingface.co/stepfun-ai/Step-3.5-Flash)**
+and distributed under the **Apache 2.0 license**.
+
+---
+
+## š§¾ Citation
+
+If you use this checkpoint, please cite the REAP paper:
+
+```bibtex
+@article{lasby-reap,
+ title={REAP the Experts: Why Pruning Prevails for One-Shot MoE compression},
+ author={Lasby, Mike and Lazarevich, Ivan and Sinnadurai, Nish and Lie, Sean and Ioannou, Yani and Thangarasa, Vithursan},
+ journal={arXiv preprint arXiv:2510.13999},
+ year={2025}
+}
+```
\ No newline at end of file
diff --git a/chat_template.jinja b/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..c09ea497dada6fe2c1f94067b4762dcba193c0f0
--- /dev/null
+++ b/chat_template.jinja
@@ -0,0 +1,80 @@
+{% macro render_content(content) %}{% if content is none %}{{- '' }}{% elif content is string %}{{- content }}{% elif content is mapping %}{{- content['value'] if 'value' in content else content['text'] }}{% elif content is iterable %}{% for item in content %}{% if item.type == 'text' %}{{- item['value'] if 'value' in item else item['text'] }}{% elif item.type == 'image' %}{% endif %}{% endfor %}{% endif %}{% endmacro %}
+{{bos_token}}{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- render_content(messages[0].content) + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou have access to the following functions in JSONSchema format:\n\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson(ensure_ascii=False) }}
+ {%- endfor %}
+ {{- "\n\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n\n\n\nvalue_1\n\n\nThis is the value for the second parameter\nthat can span\nmultiple lines\n\n\n\n\n\nReminder:\n- Function calls MUST follow the specified format: an inner \n...\n block must be nested within \n...\n XML tags\n- Required parameters MUST be specified\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + render_content(messages[0].content) + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and render_content(message.content) is string and not(render_content(message.content).startswith('') and render_content(message.content).endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- set content = render_content(message.content) %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {%- set role_name = 'observation' if (message.role == "system" and not loop.first and message.name == 'observation') else message.role %}
+ {{- '<|im_start|>' + role_name + '\n' + content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- if message.reasoning_content is string %}
+ {%- set reasoning_content = render_content(message.reasoning_content) %}
+ {%- else %}
+ {%- if '' in content %}
+ {%- set reasoning_content = content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- set content = content.split('')[-1].lstrip('\n') %}
+ {%- else %}
+ {%- set reasoning_content = '' %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content + '\n\n' + content }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if tool_call.function is defined %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n\n' }}
+ {%- if tool_call.arguments is defined %}
+ {%- set arguments = tool_call.arguments %}
+ {%- for args_name, args_value in arguments|items %}
+ {{- '\n' }}
+ {%- set args_value = args_value | tojson(ensure_ascii=False) | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
+ {{- args_value }}
+ {{- '\n\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>tool_response\n' }}
+ {%- endif %}
+ {{- '' }}
+ {{- content }}
+ {{- '' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n\n' }}
+{%- endif %}
diff --git a/config.json b/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..0b177329a66f95a501806c33321f74e755243df0
--- /dev/null
+++ b/config.json
@@ -0,0 +1,312 @@
+{
+ "architectures": [
+ "Step3p5ForCausalLM"
+ ],
+ "model_type": "step3p5",
+ "auto_map": {
+ "AutoConfig": "configuration_step3p5.Step3p5Config",
+ "AutoModelForCausalLM": "modeling_step3p5.Step3p5ForCausalLM"
+ },
+ "rope_scaling": {
+ "rope_type": "llama3",
+ "factor": 2.0,
+ "original_max_position_embeddings": 131072,
+ "low_freq_factor": 1.0,
+ "high_freq_factor": 32.0
+ },
+ "yarn_only_types": ["full_attention"],
+ "hidden_size": 4096,
+ "intermediate_size": 11264,
+ "num_hidden_layers": 45,
+ "max_seq_len": 262144,
+ "vocab_size": 128896,
+ "torch_dtype": "bfloat16",
+ "use_qk_norm": true,
+ "moe_layers_enum": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44",
+ "num_attention_heads": 64,
+ "num_attention_groups": 8,
+ "head_dim": 128,
+ "use_moe": true,
+ "moe_num_experts": 173,
+ "moe_top_k": 8,
+ "moe_intermediate_size": 1280,
+ "share_expert_dim": 1280,
+ "moe_layer_offset": 0,
+ "moe_every_n_layer": 1,
+ "norm_expert_weight": true,
+ "moe_router_activation": "sigmoid",
+ "moe_router_scaling_factor": 3.0,
+ "att_impl_type": "GQA",
+ "rope_theta": [
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0,
+ 5000000.0,
+ 10000.0,
+ 10000.0,
+ 10000.0
+ ],
+ "use_head_wise_attn_gate": true,
+ "sliding_window": 512,
+ "use_moe_router_bias": true,
+ "need_fp32_gate": true,
+ "sink": false,
+ "layer_types": [
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "full_attention",
+ "sliding_attention",
+ "sliding_attention",
+ "sliding_attention"
+ ],
+ "use_rope_layers": [],
+ "num_nextn_predict_layers": 3,
+ "partial_rotary_factors": [
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0,
+ 0.5,
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "eos_token_id": [
+ 1,
+ 2,
+ 128007
+ ],
+ "bos_token_id": 0,
+ "attention_other_setting": {
+ "attention_type": "sliding_attention",
+ "num_attention_heads": 96,
+ "num_attention_groups": 8,
+ "head_dim": 128,
+ "true_head_dim": 128
+ },
+ "swiglu_limits": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 7,
+ 7,
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "swiglu_limits_shared": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 16,
+ 0.0,
+ 0.0,
+ 0.0
+ ],
+ "zero_centered": true,
+ "max_position_embeddings": 262144
+}
\ No newline at end of file
diff --git a/configuration_step3p5.py b/configuration_step3p5.py
new file mode 100644
index 0000000000000000000000000000000000000000..ab8d068ee83c25dc0fb2b0a2bd2ca76bdc9faac9
--- /dev/null
+++ b/configuration_step3p5.py
@@ -0,0 +1,59 @@
+from typing import Any, Optional, Union
+
+from transformers.configuration_utils import PretrainedConfig
+
+
+
+class Step3p5Config(PretrainedConfig):
+ model_type = "step3p5"
+ architectures = ["Step3p5ForCausalLM"]
+
+ def __init__(
+ self,
+ hidden_size: int = 4096,
+ intermediate_size: int = 11264,
+ num_attention_heads: int = 64,
+ num_attention_groups: int = 8,
+ num_hidden_layers: int = 45,
+ max_seq_len: int = 128000,
+ vocab_size: int = 128815,
+ rms_norm_eps: float = 1e-5,
+ moe_intermediate_size: int = 1280,
+ moe_num_experts: int = 288,
+ moe_top_k: int = 8,
+ rope_theta: float = 10000,
+ rope_scaling: Optional[dict[str, Any]] = None,
+ max_position_embeddings: int = 128000,
+ share_expert_dims: int = 1280,
+ head_dim: int = 128,
+ norm_expert_weight: bool = True,
+ layer_types: list[str] = None,
+ sliding_window: Optional[int] = None,
+ moe_layers_enum: tuple[int] = (3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44),
+ **kwargs,
+ ) -> None:
+ self.hidden_size = hidden_size
+ self.intermediate_size = intermediate_size
+ self.num_attention_heads = num_attention_heads
+ self.num_attention_groups = num_attention_groups
+ self.num_hidden_layers = num_hidden_layers
+ self.max_seq_len = max_seq_len
+ self.vocab_size = vocab_size
+ self.rms_norm_eps = rms_norm_eps
+ self.moe_intermediate_size = moe_intermediate_size
+ self.moe_num_experts = moe_num_experts
+ self.moe_top_k = moe_top_k
+ self.rope_theta = rope_theta
+ self.rope_scaling = rope_scaling
+ self.max_position_embeddings = max_position_embeddings
+ self.share_expert_dim = share_expert_dims
+ self.head_dim = head_dim
+ self.norm_expert_weight = norm_expert_weight
+ self.moe_layers_enum = moe_layers_enum
+ self.layer_types = layer_types
+ self.sliding_window = sliding_window
+ super().__init__(**kwargs)
+
diff --git a/model-00001-of-00064.safetensors b/model-00001-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..003b91df10001bfc038a542e3327b447d7a4c24a
--- /dev/null
+++ b/model-00001-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5624cc147930c8323253ee4d57648a01cce8aaaeceb96142dc9b35a1c0307e0d
+size 4510089164
diff --git a/model-00002-of-00064.safetensors b/model-00002-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ce4e3bbf1c4eef106f05237740839816e8af57bc
--- /dev/null
+++ b/model-00002-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:878af09c54e5d19261bc14b930a9096b574aa9647ba7749891a10a218b50fcd2
+size 3812486132
diff --git a/model-00003-of-00064.safetensors b/model-00003-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..183a21ca8ecc94e5b111a795fdc3a48b8aa1bb45
--- /dev/null
+++ b/model-00003-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed5ba6a280e951ba5100c2dd2d638d2f77faf7c8057bafe9cff5a36ba5610fe9
+size 3628073232
diff --git a/model-00004-of-00064.safetensors b/model-00004-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b6793683e062f06f12a41e8a1ce9b9aa2490aa3d
--- /dev/null
+++ b/model-00004-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f33e4f3dafd65138d3a69e68f330024232f0a1aa7dfc5b9b559ed2a7a7dbe3b4
+size 3879857140
diff --git a/model-00005-of-00064.safetensors b/model-00005-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f752fa3ce217b783daf2aa911e9782a56deb8f96
--- /dev/null
+++ b/model-00005-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dd5a6bd5e8ff1b6a80e93bb9f72baad578ad1bd7fa1a7f49e139e7b40e509353
+size 3879857140
diff --git a/model-00006-of-00064.safetensors b/model-00006-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..108d9620d7684effd702488b6678380e3044c995
--- /dev/null
+++ b/model-00006-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3aba70cdd5f8012f350419c43b4112f9eec4c7c29f8fef873583370323897ad4
+size 3628073232
diff --git a/model-00007-of-00064.safetensors b/model-00007-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..616b3437afa70a6765da2538a96e447c5c4513a2
--- /dev/null
+++ b/model-00007-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aeef836ba88f32cf8b8164e7562ade441c83e7db00905b62af217952f83646d0
+size 3879857140
diff --git a/model-00008-of-00064.safetensors b/model-00008-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3e09526e45fea57fda979d65da4ccc03760501a2
--- /dev/null
+++ b/model-00008-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a8fe428e15b4b1058ae4a2c9a29a238bdbb992c84b2e13f20d9e269ded488e94
+size 3812486132
diff --git a/model-00009-of-00064.safetensors b/model-00009-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..750032b5b11de3bf127b1489f3db77458c5865f3
--- /dev/null
+++ b/model-00009-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f318861f022f1222933bce4e5eca4905b15268d9df5a69be721b9dd84e6dc417
+size 3628073232
diff --git a/model-00010-of-00064.safetensors b/model-00010-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e71be36dc05119baf373af6c250d424562a0a757
--- /dev/null
+++ b/model-00010-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:76b7feb6b3439905da4d503ae8206844ba862ed4d30507341ea2422c43aa8311
+size 3879857140
diff --git a/model-00011-of-00064.safetensors b/model-00011-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b7961ccf4f4701922f79b2b36cdcda0fc2815b9f
--- /dev/null
+++ b/model-00011-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:24ad37964b706e6ff09f9bf3e12c08d392ca1204db65a469ca9df881b4892a2a
+size 3879857132
diff --git a/model-00012-of-00064.safetensors b/model-00012-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f0fd31ebb82da0186725ce8e19d1175bb6e50e02
--- /dev/null
+++ b/model-00012-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:70a8a02b1bf87b9f2ebb5c993737ee9738bfa7f7636600a909d69ea0a4bfacd7
+size 3628073232
diff --git a/model-00013-of-00064.safetensors b/model-00013-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..21d4bcda9ea2e609f070295da83b769953f073bc
--- /dev/null
+++ b/model-00013-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d5fb52f0a9e06f35975d2612f6583aac9bc97a6b8481113d2b79afc73ed8104a
+size 3879857156
diff --git a/model-00014-of-00064.safetensors b/model-00014-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..437c9b5f3eea1ae05bcf236f1347a1ccb53c1071
--- /dev/null
+++ b/model-00014-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4a9e6e81edd0bbc9f48f984c61f28b4af0e1ead088d1e9d6ff2b2cf3650ac68c
+size 3812486148
diff --git a/model-00015-of-00064.safetensors b/model-00015-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..a7cf56adba4961185dc083a9df6c29ea8621a3d8
--- /dev/null
+++ b/model-00015-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9458a4a0573bab7b3dd74cdff2a5786751b9a1540fa8aeda90a2a9a079355b64
+size 3628073232
diff --git a/model-00016-of-00064.safetensors b/model-00016-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4d2c3fc30b12d4cce477e70f0d8b85728ae5ae2d
--- /dev/null
+++ b/model-00016-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:76c2cfce27b2ae747fa0b1ee02ada6105c2dc163a3a8dc7da7d954c17e1cc377
+size 3879857156
diff --git a/model-00017-of-00064.safetensors b/model-00017-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3baf311641a6662cd1f33fc108054802d2c1c3cb
--- /dev/null
+++ b/model-00017-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f1e097988027795c58526e29345a158c7ab59613b0e624ba8297989c78dce373
+size 3879857156
diff --git a/model-00018-of-00064.safetensors b/model-00018-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ba30d31e80511a1aee0cc0a13746111d363560fd
--- /dev/null
+++ b/model-00018-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc03bf51fef611e82b263274be17a46bcfa4e7b773a046aada486985b2da0211
+size 3628073232
diff --git a/model-00019-of-00064.safetensors b/model-00019-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0c1ab71295214be2958a0ca3f2d6e54976690d99
--- /dev/null
+++ b/model-00019-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f30ccd2eb205e71750bfce444ecc25094f710bc6818116b41ae4c912bd90f135
+size 3879857156
diff --git a/model-00020-of-00064.safetensors b/model-00020-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0a0eda66fc758e33113b8b911ef7cb2b7104a6ab
--- /dev/null
+++ b/model-00020-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a28d11a2a43cae5bfcf9a1d9f77f09c02c9765b0e188093ee9970ee6373bb364
+size 3812486148
diff --git a/model-00021-of-00064.safetensors b/model-00021-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..00bedde74f758e60f526e193f77086e7586481c3
--- /dev/null
+++ b/model-00021-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:96485bdedd6aca4ebc0a87cd43853eef9d73ec7db08fa3e89b97a69a4f60d251
+size 3628073232
diff --git a/model-00022-of-00064.safetensors b/model-00022-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..d73263a352af2463c6c9e0257dbe23a0658ef136
--- /dev/null
+++ b/model-00022-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e92a5ffa1daa21496498b9d839fdfb11f743363ea0a14ed3c5fde4971434d5b7
+size 3879857156
diff --git a/model-00023-of-00064.safetensors b/model-00023-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..45b166388475ab4d8662ecb265ea546c6706d6a0
--- /dev/null
+++ b/model-00023-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:36c654d456ad814a9e8b58eb7d378843df90ec29d941e2c6eb6a06c3a5c0a108
+size 3879857156
diff --git a/model-00024-of-00064.safetensors b/model-00024-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..fbae2d8a81c2af5241ee2f39d1b30dd29c86c0cb
--- /dev/null
+++ b/model-00024-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5d6e1336c73bc505bce0051afc26afb8e221275c314e7d5e88ca2e5f28102cf5
+size 3628073232
diff --git a/model-00025-of-00064.safetensors b/model-00025-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4fe2123baa8f89bfdf9fd341a1f49dc31e140b68
--- /dev/null
+++ b/model-00025-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:804149b9b8b8a96c09f76694e41523a2b758287d4b13624a2d634d840e86df63
+size 3879857156
diff --git a/model-00026-of-00064.safetensors b/model-00026-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c1cfc56eb20abb792f31ef2073d61496121c060e
--- /dev/null
+++ b/model-00026-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7ce46fada0373a3ed448ad89650d26416ea9228e8ce32c4fdf4ce8d18aac7736
+size 3812486148
diff --git a/model-00027-of-00064.safetensors b/model-00027-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3e210d48def78fb76b55052afd21b97d619d605f
--- /dev/null
+++ b/model-00027-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bea7991e88d048115a15da99dc99980dd08cd2b89211f9ec132e32f8eecb7ad5
+size 3628073232
diff --git a/model-00028-of-00064.safetensors b/model-00028-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..644062bd92789edacdfa013449cd36c81f583c28
--- /dev/null
+++ b/model-00028-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9e3700a09bda9f2e00dad75f3c04d1ee345017d71f1546079cccc6f1230add93
+size 3879857156
diff --git a/model-00029-of-00064.safetensors b/model-00029-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..fbea1455a3efc7f5cf8261bf22e07dd7732dae48
--- /dev/null
+++ b/model-00029-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae194ab8f09191acc0ac45a800a07a7f8847dd6e967499769857cc9d7ae21213
+size 3879857156
diff --git a/model-00030-of-00064.safetensors b/model-00030-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7a8cc44edaa83947824e24464f12209e444e7820
--- /dev/null
+++ b/model-00030-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eaf3aaa21eecdf43bd9d1f8889d59a42ff37bed749b39033bc348d7f41696cbd
+size 3628073232
diff --git a/model-00031-of-00064.safetensors b/model-00031-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4813c4a7e29fa442e5d81b3912e0685cd8ce1c9c
--- /dev/null
+++ b/model-00031-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8e4d5c2f6978b364bce503aa9572c60911367ddf374091d27400c9900a04d525
+size 3879857156
diff --git a/model-00032-of-00064.safetensors b/model-00032-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ad750a31fd7385c1021af45b4a9395ba82b1a4d1
--- /dev/null
+++ b/model-00032-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:409d3bfa66fba803c7bad2abf70afc391460a14d22d81bbc7a2f9f5b2555be98
+size 3812486148
diff --git a/model-00033-of-00064.safetensors b/model-00033-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e6f7c2d2c56d246737f0e71e1b7c89ceaaff532d
--- /dev/null
+++ b/model-00033-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ee1b861698948be6c96325e99d993fb15fe276732af8c1c1db66576e4dd5be3
+size 3628073232
diff --git a/model-00034-of-00064.safetensors b/model-00034-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8141e14df28a878b9ec232429b6d838906a053d2
--- /dev/null
+++ b/model-00034-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c38897aac0df2cf728744232f9e3669cf66158d7bc25a80e284aa9982966301f
+size 3879857156
diff --git a/model-00035-of-00064.safetensors b/model-00035-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4f1738cab1bb2223c28147eb91cd18499650a0bb
--- /dev/null
+++ b/model-00035-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a3f6bdb8b5975e386f789154fd6ade2d19db8aaf86ad919e375c4030a7bb9c6b
+size 3879857156
diff --git a/model-00036-of-00064.safetensors b/model-00036-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b0ea4a8b9f6d3ee78ff12caf795462503f9486b8
--- /dev/null
+++ b/model-00036-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b41e79f0b46c1a69ae5449f2216c226219359d63284c730b0b19a92f51db1f97
+size 3628073232
diff --git a/model-00037-of-00064.safetensors b/model-00037-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2b2e537e1e1a9e923badecd3d44d21f04f94ad5b
--- /dev/null
+++ b/model-00037-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:573a7c3eb4c5a9d408eba874042aae12fd81773e87defdcc5b37a3dbeda7bf24
+size 3879857156
diff --git a/model-00038-of-00064.safetensors b/model-00038-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..917c96d7d4fb5f138c2a2efb3fff2f3e06ee6bae
--- /dev/null
+++ b/model-00038-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9fae56646790270cc39c42148b056fa1cd5794a1e38a1884b6df14dad821f6bc
+size 3812486148
diff --git a/model-00039-of-00064.safetensors b/model-00039-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..37b938e494c1e7900b72b04d2c12b39edccf56fc
--- /dev/null
+++ b/model-00039-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:96997535de9cfb69a2d83e2b189f88dec260a194bca89c0eb279fdc983ed059a
+size 3628073232
diff --git a/model-00040-of-00064.safetensors b/model-00040-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..282766313f919085649c9e791f1ba7276aa5f8d6
--- /dev/null
+++ b/model-00040-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2a427495d37e030ee33dfb122e2f0f1a0e6cab7ef06510aa2be1dbc88ad9e8ce
+size 3879857156
diff --git a/model-00041-of-00064.safetensors b/model-00041-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..4f5b4e305eba6b536f1938f1ae093f549e7888d8
--- /dev/null
+++ b/model-00041-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:708369d113576a113fefdaaa5cecb8d890acbd337815fcdd6198ab4fb5944e67
+size 3879857156
diff --git a/model-00042-of-00064.safetensors b/model-00042-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..07151077e70faef85b3a056c91b65969b758e197
--- /dev/null
+++ b/model-00042-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:061e43bfb0c323d13e5a1a0019d0827ba375f841f027a1ce998a2243cfdd7c10
+size 3628073232
diff --git a/model-00043-of-00064.safetensors b/model-00043-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..53858046fcebd971e8899b1f3a5a8471d475e56a
--- /dev/null
+++ b/model-00043-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0972fbc505205d6809e00d7881c33e9c7db4d1ca483fb5bd0a7638ea27fee064
+size 3879857156
diff --git a/model-00044-of-00064.safetensors b/model-00044-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..fffc8a1038514c25368f7bd8852b44631d941285
--- /dev/null
+++ b/model-00044-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d68df4561ec5f6c9525674d7ac9caf76de4ac46e0b80e66bcd2e0fb347f3c4e6
+size 3812486148
diff --git a/model-00045-of-00064.safetensors b/model-00045-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6bfbe85814f25ea78b9ead030fe28aa03a6a0d8a
--- /dev/null
+++ b/model-00045-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:84b273b8cf2ca84d92be432644e4782ca50293953c52e05d13c7c0a0a1e4050f
+size 3628073232
diff --git a/model-00046-of-00064.safetensors b/model-00046-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ade4a2654416e0426a9f27a95bbaaca08c32fda3
--- /dev/null
+++ b/model-00046-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:86c4d517487a6b6fed23934215b32795aa4f42eda3e6afb22329486cfe9d72b6
+size 3879857156
diff --git a/model-00047-of-00064.safetensors b/model-00047-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..ab5f093f4bdf9166a2561f4acf4ba059bc9f5351
--- /dev/null
+++ b/model-00047-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:99b3da57579f78940bd30178100c324d738adaad001f0b025e1b96a843a52cf2
+size 3879857156
diff --git a/model-00048-of-00064.safetensors b/model-00048-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..cea1a77558e8a1d15092e543ca3d6adf60dda836
--- /dev/null
+++ b/model-00048-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a75804cea537ea5315e407270533d809d8ef1476e0a97932f256c3e66226a6bc
+size 3628073232
diff --git a/model-00049-of-00064.safetensors b/model-00049-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7be6000e068620af72269ad5fe24fedf9d5e08da
--- /dev/null
+++ b/model-00049-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8aeeb3c6e0317b7ffc8bb304ccf3ba48dc70d9bc068d11778d8d660b7b84ade5
+size 3879857156
diff --git a/model-00050-of-00064.safetensors b/model-00050-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7f4b3c6ead9a768cc4c1303995433a477a7017d1
--- /dev/null
+++ b/model-00050-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82dc866b533e57ae1d5dcb68c11b86d4482559e4c03efd67cf197cac084cf3b3
+size 3812486148
diff --git a/model-00051-of-00064.safetensors b/model-00051-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..be36114cfca2a64df574a02264a479e23f162405
--- /dev/null
+++ b/model-00051-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7a525a6b21a2e06818d7bbec4b5b587466f54d4f0603e4193ed1707cde97be1c
+size 3628073232
diff --git a/model-00052-of-00064.safetensors b/model-00052-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..0b447518ac705881e2979f655ef192e9d2087b06
--- /dev/null
+++ b/model-00052-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:11cb5838101122b9b35cc713ba7e20dbdb44678b3644a58df236608a1b96b1eb
+size 3879857156
diff --git a/model-00053-of-00064.safetensors b/model-00053-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..58137abc274b9b1c6b2f0ee4081ed3fe6fd3238e
--- /dev/null
+++ b/model-00053-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f5ac99e027d89ebccbc8efa0bbd29c3f7464ccfc0bee6d12c8e714373ceda3df
+size 3879857156
diff --git a/model-00054-of-00064.safetensors b/model-00054-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8ff9524893a029dee0e6f1f63a3a2c2ccdc7dc8a
--- /dev/null
+++ b/model-00054-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:50d0aae9e7d0f18047cdff5cd9460b6ea5b5561a5084b1e0396f014fa77b7850
+size 3628073232
diff --git a/model-00055-of-00064.safetensors b/model-00055-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..1cdceb40b0d7a1b7307923fcd2e60fd512cb03ce
--- /dev/null
+++ b/model-00055-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6b7559d349a9f088edf128eb80303c95ff51ade69f8fc1f4ca96e24b08f9edf0
+size 3879857156
diff --git a/model-00056-of-00064.safetensors b/model-00056-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6777d411083eabb3677d3bf068565684feecbc9c
--- /dev/null
+++ b/model-00056-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d01e22c8876dc714dbb1ae00a3b23ed4df14d398b8f9561b94519c83f4a92251
+size 3812486148
diff --git a/model-00057-of-00064.safetensors b/model-00057-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..da2dd2b2ef72b9ba1ae31e6c9874291add526f72
--- /dev/null
+++ b/model-00057-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e9d0081a585a6e7eba30a5fe21c09ad647b9294afb5500fb5cea9ae232066b6d
+size 3628073232
diff --git a/model-00058-of-00064.safetensors b/model-00058-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f6563a8cdfb26c2e6dc8b2fc3c62aad3e66fa715
--- /dev/null
+++ b/model-00058-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bd50e587ddf268bb71b3f19ea6b42e55231466697e2a9968e708f1a2474787d7
+size 3879857156
diff --git a/model-00059-of-00064.safetensors b/model-00059-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..22dc4ea4907383d28a85e9cd19489ab79b2fc0ee
--- /dev/null
+++ b/model-00059-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eea7c0229901b4529b3e27dd99b81c6afadfa3e8f71ff26bb800756c1c190d21
+size 3879857156
diff --git a/model-00060-of-00064.safetensors b/model-00060-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c6b8b2a38d19748434454029293c19f0fd048602
--- /dev/null
+++ b/model-00060-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2934853309f6ff38f57e7c3d73d2570d6ea70a0c75ab169c008e62f9f20fc498
+size 3628073232
diff --git a/model-00061-of-00064.safetensors b/model-00061-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..2d0c9ff70943330e7638c4f0801ed2174e97fd56
--- /dev/null
+++ b/model-00061-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cb675e0eb0c33919b8d2110f28faff9536d20d92aef7676ebbe27a4adac95758
+size 3879857156
diff --git a/model-00062-of-00064.safetensors b/model-00062-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..9ea642efe5b49db0c514ae2e433b3e2cc8ac7187
--- /dev/null
+++ b/model-00062-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1b55140aa48666aaad2f2d1f05f53656ade97caca3765a86cfc7cc79fe16a1e8
+size 3812486148
diff --git a/model-00063-of-00064.safetensors b/model-00063-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..b2e2ed38f4e004f78c702ca9a16c2b92f6ae72cf
--- /dev/null
+++ b/model-00063-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:45cefe042d764d3932c19797d4c2af460914c48f9583e4391cbee014318d4d6c
+size 3628073232
diff --git a/model-00064-of-00064.safetensors b/model-00064-of-00064.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..77ac2843883cf1a2ff2d3bfbd6cee5bafef8b6f4
--- /dev/null
+++ b/model-00064-of-00064.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:565b559975f00cb958f120906cec7feb1dc54864a5dbdeb81a564ea5b6099a17
+size 2901435312
diff --git a/model.safetensors.index.json b/model.safetensors.index.json
new file mode 100644
index 0000000000000000000000000000000000000000..791cbca66c8d85e1fc9fc9860c92767c2dadf1a3
--- /dev/null
+++ b/model.safetensors.index.json
@@ -0,0 +1,760 @@
+{
+ "metadata": {
+ "total_size": 241934035848
+ },
+ "weight_map": {
+ "model.embed_tokens.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.self_attn.g_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.self_attn.g_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.self_attn.g_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.self_attn.g_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.moe.router_bias": "model-00001-of-00064.safetensors",
+ "model.layers.3.moe.gate.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.moe.up_proj.weight": "model-00001-of-00064.safetensors",
+ "model.layers.3.moe.gate_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.moe.down_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.share_expert.gate_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.share_expert.up_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.share_expert.down_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.input_layernorm.weight": "model-00002-of-00064.safetensors",
+ "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.q_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.k_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.v_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.o_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.q_norm.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.k_norm.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.self_attn.g_proj.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.moe.router_bias": "model-00002-of-00064.safetensors",
+ "model.layers.4.moe.gate.weight": "model-00002-of-00064.safetensors",
+ "model.layers.4.moe.up_proj.weight": "model-00003-of-00064.safetensors",
+ "model.layers.4.moe.gate_proj.weight": "model-00003-of-00064.safetensors",
+ "model.layers.4.moe.down_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.4.share_expert.gate_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.4.share_expert.up_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.4.share_expert.down_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.4.input_layernorm.weight": "model-00004-of-00064.safetensors",
+ "model.layers.4.post_attention_layernorm.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.q_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.k_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.v_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.o_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.q_norm.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.k_norm.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.self_attn.g_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.moe.router_bias": "model-00004-of-00064.safetensors",
+ "model.layers.5.moe.gate.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.moe.up_proj.weight": "model-00004-of-00064.safetensors",
+ "model.layers.5.moe.gate_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.moe.down_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.share_expert.gate_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.share_expert.up_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.share_expert.down_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.input_layernorm.weight": "model-00005-of-00064.safetensors",
+ "model.layers.5.post_attention_layernorm.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.q_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.k_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.v_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.o_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.q_norm.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.k_norm.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.self_attn.g_proj.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.moe.router_bias": "model-00005-of-00064.safetensors",
+ "model.layers.6.moe.gate.weight": "model-00005-of-00064.safetensors",
+ "model.layers.6.moe.up_proj.weight": "model-00006-of-00064.safetensors",
+ "model.layers.6.moe.gate_proj.weight": "model-00006-of-00064.safetensors",
+ "model.layers.6.moe.down_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.6.share_expert.gate_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.6.share_expert.up_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.6.share_expert.down_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.6.input_layernorm.weight": "model-00007-of-00064.safetensors",
+ "model.layers.6.post_attention_layernorm.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.q_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.k_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.v_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.o_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.q_norm.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.k_norm.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.self_attn.g_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.moe.router_bias": "model-00007-of-00064.safetensors",
+ "model.layers.7.moe.gate.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.moe.up_proj.weight": "model-00007-of-00064.safetensors",
+ "model.layers.7.moe.gate_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.moe.down_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.share_expert.gate_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.share_expert.up_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.share_expert.down_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.input_layernorm.weight": "model-00008-of-00064.safetensors",
+ "model.layers.7.post_attention_layernorm.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.q_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.k_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.v_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.o_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.q_norm.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.k_norm.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.self_attn.g_proj.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.moe.router_bias": "model-00008-of-00064.safetensors",
+ "model.layers.8.moe.gate.weight": "model-00008-of-00064.safetensors",
+ "model.layers.8.moe.up_proj.weight": "model-00009-of-00064.safetensors",
+ "model.layers.8.moe.gate_proj.weight": "model-00009-of-00064.safetensors",
+ "model.layers.8.moe.down_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.8.share_expert.gate_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.8.share_expert.up_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.8.share_expert.down_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.8.input_layernorm.weight": "model-00010-of-00064.safetensors",
+ "model.layers.8.post_attention_layernorm.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.q_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.k_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.v_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.o_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.q_norm.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.k_norm.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.self_attn.g_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.moe.router_bias": "model-00010-of-00064.safetensors",
+ "model.layers.9.moe.gate.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.moe.up_proj.weight": "model-00010-of-00064.safetensors",
+ "model.layers.9.moe.gate_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.moe.down_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.share_expert.gate_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.share_expert.up_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.share_expert.down_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.input_layernorm.weight": "model-00011-of-00064.safetensors",
+ "model.layers.9.post_attention_layernorm.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.q_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.k_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.v_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.o_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.q_norm.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.k_norm.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.self_attn.g_proj.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.moe.router_bias": "model-00011-of-00064.safetensors",
+ "model.layers.10.moe.gate.weight": "model-00011-of-00064.safetensors",
+ "model.layers.10.moe.up_proj.weight": "model-00012-of-00064.safetensors",
+ "model.layers.10.moe.gate_proj.weight": "model-00012-of-00064.safetensors",
+ "model.layers.10.moe.down_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.10.share_expert.gate_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.10.share_expert.up_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.10.share_expert.down_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.10.input_layernorm.weight": "model-00013-of-00064.safetensors",
+ "model.layers.10.post_attention_layernorm.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.q_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.k_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.v_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.o_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.q_norm.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.k_norm.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.self_attn.g_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.moe.router_bias": "model-00013-of-00064.safetensors",
+ "model.layers.11.moe.gate.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.moe.up_proj.weight": "model-00013-of-00064.safetensors",
+ "model.layers.11.moe.gate_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.moe.down_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.share_expert.gate_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.share_expert.up_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.share_expert.down_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.input_layernorm.weight": "model-00014-of-00064.safetensors",
+ "model.layers.11.post_attention_layernorm.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.q_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.k_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.v_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.o_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.q_norm.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.k_norm.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.self_attn.g_proj.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.moe.router_bias": "model-00014-of-00064.safetensors",
+ "model.layers.12.moe.gate.weight": "model-00014-of-00064.safetensors",
+ "model.layers.12.moe.up_proj.weight": "model-00015-of-00064.safetensors",
+ "model.layers.12.moe.gate_proj.weight": "model-00015-of-00064.safetensors",
+ "model.layers.12.moe.down_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.12.share_expert.gate_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.12.share_expert.up_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.12.share_expert.down_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.12.input_layernorm.weight": "model-00016-of-00064.safetensors",
+ "model.layers.12.post_attention_layernorm.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.q_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.k_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.v_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.o_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.q_norm.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.k_norm.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.self_attn.g_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.moe.router_bias": "model-00016-of-00064.safetensors",
+ "model.layers.13.moe.gate.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.moe.up_proj.weight": "model-00016-of-00064.safetensors",
+ "model.layers.13.moe.gate_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.moe.down_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.share_expert.gate_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.share_expert.up_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.share_expert.down_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.input_layernorm.weight": "model-00017-of-00064.safetensors",
+ "model.layers.13.post_attention_layernorm.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.q_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.k_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.v_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.o_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.q_norm.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.k_norm.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.self_attn.g_proj.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.moe.router_bias": "model-00017-of-00064.safetensors",
+ "model.layers.14.moe.gate.weight": "model-00017-of-00064.safetensors",
+ "model.layers.14.moe.up_proj.weight": "model-00018-of-00064.safetensors",
+ "model.layers.14.moe.gate_proj.weight": "model-00018-of-00064.safetensors",
+ "model.layers.14.moe.down_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.14.share_expert.gate_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.14.share_expert.up_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.14.share_expert.down_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.14.input_layernorm.weight": "model-00019-of-00064.safetensors",
+ "model.layers.14.post_attention_layernorm.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.q_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.k_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.v_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.o_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.q_norm.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.k_norm.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.self_attn.g_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.moe.router_bias": "model-00019-of-00064.safetensors",
+ "model.layers.15.moe.gate.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.moe.up_proj.weight": "model-00019-of-00064.safetensors",
+ "model.layers.15.moe.gate_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.moe.down_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.share_expert.gate_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.share_expert.up_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.share_expert.down_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.input_layernorm.weight": "model-00020-of-00064.safetensors",
+ "model.layers.15.post_attention_layernorm.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.q_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.k_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.v_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.o_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.q_norm.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.k_norm.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.self_attn.g_proj.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.moe.router_bias": "model-00020-of-00064.safetensors",
+ "model.layers.16.moe.gate.weight": "model-00020-of-00064.safetensors",
+ "model.layers.16.moe.up_proj.weight": "model-00021-of-00064.safetensors",
+ "model.layers.16.moe.gate_proj.weight": "model-00021-of-00064.safetensors",
+ "model.layers.16.moe.down_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.16.share_expert.gate_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.16.share_expert.up_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.16.share_expert.down_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.16.input_layernorm.weight": "model-00022-of-00064.safetensors",
+ "model.layers.16.post_attention_layernorm.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.q_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.k_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.v_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.o_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.q_norm.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.k_norm.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.self_attn.g_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.moe.router_bias": "model-00022-of-00064.safetensors",
+ "model.layers.17.moe.gate.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.moe.up_proj.weight": "model-00022-of-00064.safetensors",
+ "model.layers.17.moe.gate_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.moe.down_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.share_expert.gate_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.share_expert.up_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.share_expert.down_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.input_layernorm.weight": "model-00023-of-00064.safetensors",
+ "model.layers.17.post_attention_layernorm.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.q_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.k_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.v_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.o_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.q_norm.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.k_norm.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.self_attn.g_proj.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.moe.router_bias": "model-00023-of-00064.safetensors",
+ "model.layers.18.moe.gate.weight": "model-00023-of-00064.safetensors",
+ "model.layers.18.moe.up_proj.weight": "model-00024-of-00064.safetensors",
+ "model.layers.18.moe.gate_proj.weight": "model-00024-of-00064.safetensors",
+ "model.layers.18.moe.down_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.18.share_expert.gate_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.18.share_expert.up_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.18.share_expert.down_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.18.input_layernorm.weight": "model-00025-of-00064.safetensors",
+ "model.layers.18.post_attention_layernorm.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.q_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.k_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.v_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.o_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.q_norm.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.k_norm.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.self_attn.g_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.moe.router_bias": "model-00025-of-00064.safetensors",
+ "model.layers.19.moe.gate.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.moe.up_proj.weight": "model-00025-of-00064.safetensors",
+ "model.layers.19.moe.gate_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.moe.down_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.share_expert.gate_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.share_expert.up_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.share_expert.down_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.input_layernorm.weight": "model-00026-of-00064.safetensors",
+ "model.layers.19.post_attention_layernorm.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.q_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.k_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.v_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.o_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.q_norm.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.k_norm.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.self_attn.g_proj.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.moe.router_bias": "model-00026-of-00064.safetensors",
+ "model.layers.20.moe.gate.weight": "model-00026-of-00064.safetensors",
+ "model.layers.20.moe.up_proj.weight": "model-00027-of-00064.safetensors",
+ "model.layers.20.moe.gate_proj.weight": "model-00027-of-00064.safetensors",
+ "model.layers.20.moe.down_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.20.share_expert.gate_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.20.share_expert.up_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.20.share_expert.down_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.20.input_layernorm.weight": "model-00028-of-00064.safetensors",
+ "model.layers.20.post_attention_layernorm.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.q_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.k_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.v_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.o_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.q_norm.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.k_norm.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.self_attn.g_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.moe.router_bias": "model-00028-of-00064.safetensors",
+ "model.layers.21.moe.gate.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.moe.up_proj.weight": "model-00028-of-00064.safetensors",
+ "model.layers.21.moe.gate_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.moe.down_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.share_expert.gate_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.share_expert.up_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.share_expert.down_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.input_layernorm.weight": "model-00029-of-00064.safetensors",
+ "model.layers.21.post_attention_layernorm.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.q_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.k_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.v_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.o_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.q_norm.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.k_norm.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.self_attn.g_proj.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.moe.router_bias": "model-00029-of-00064.safetensors",
+ "model.layers.22.moe.gate.weight": "model-00029-of-00064.safetensors",
+ "model.layers.22.moe.up_proj.weight": "model-00030-of-00064.safetensors",
+ "model.layers.22.moe.gate_proj.weight": "model-00030-of-00064.safetensors",
+ "model.layers.22.moe.down_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.22.share_expert.gate_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.22.share_expert.up_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.22.share_expert.down_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.22.input_layernorm.weight": "model-00031-of-00064.safetensors",
+ "model.layers.22.post_attention_layernorm.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.q_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.k_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.v_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.o_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.q_norm.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.k_norm.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.self_attn.g_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.moe.router_bias": "model-00031-of-00064.safetensors",
+ "model.layers.23.moe.gate.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.moe.up_proj.weight": "model-00031-of-00064.safetensors",
+ "model.layers.23.moe.gate_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.moe.down_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.share_expert.gate_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.share_expert.up_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.share_expert.down_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.input_layernorm.weight": "model-00032-of-00064.safetensors",
+ "model.layers.23.post_attention_layernorm.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.q_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.k_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.v_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.o_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.q_norm.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.k_norm.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.self_attn.g_proj.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.moe.router_bias": "model-00032-of-00064.safetensors",
+ "model.layers.24.moe.gate.weight": "model-00032-of-00064.safetensors",
+ "model.layers.24.moe.up_proj.weight": "model-00033-of-00064.safetensors",
+ "model.layers.24.moe.gate_proj.weight": "model-00033-of-00064.safetensors",
+ "model.layers.24.moe.down_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.24.share_expert.gate_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.24.share_expert.up_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.24.share_expert.down_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.24.input_layernorm.weight": "model-00034-of-00064.safetensors",
+ "model.layers.24.post_attention_layernorm.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.q_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.k_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.v_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.o_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.q_norm.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.k_norm.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.self_attn.g_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.moe.router_bias": "model-00034-of-00064.safetensors",
+ "model.layers.25.moe.gate.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.moe.up_proj.weight": "model-00034-of-00064.safetensors",
+ "model.layers.25.moe.gate_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.moe.down_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.share_expert.gate_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.share_expert.up_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.share_expert.down_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.input_layernorm.weight": "model-00035-of-00064.safetensors",
+ "model.layers.25.post_attention_layernorm.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.q_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.k_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.v_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.o_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.q_norm.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.k_norm.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.self_attn.g_proj.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.moe.router_bias": "model-00035-of-00064.safetensors",
+ "model.layers.26.moe.gate.weight": "model-00035-of-00064.safetensors",
+ "model.layers.26.moe.up_proj.weight": "model-00036-of-00064.safetensors",
+ "model.layers.26.moe.gate_proj.weight": "model-00036-of-00064.safetensors",
+ "model.layers.26.moe.down_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.26.share_expert.gate_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.26.share_expert.up_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.26.share_expert.down_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.26.input_layernorm.weight": "model-00037-of-00064.safetensors",
+ "model.layers.26.post_attention_layernorm.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.q_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.k_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.v_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.o_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.q_norm.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.k_norm.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.self_attn.g_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.moe.router_bias": "model-00037-of-00064.safetensors",
+ "model.layers.27.moe.gate.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.moe.up_proj.weight": "model-00037-of-00064.safetensors",
+ "model.layers.27.moe.gate_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.moe.down_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.share_expert.gate_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.share_expert.up_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.share_expert.down_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.input_layernorm.weight": "model-00038-of-00064.safetensors",
+ "model.layers.27.post_attention_layernorm.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.q_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.k_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.v_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.o_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.q_norm.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.k_norm.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.self_attn.g_proj.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.moe.router_bias": "model-00038-of-00064.safetensors",
+ "model.layers.28.moe.gate.weight": "model-00038-of-00064.safetensors",
+ "model.layers.28.moe.up_proj.weight": "model-00039-of-00064.safetensors",
+ "model.layers.28.moe.gate_proj.weight": "model-00039-of-00064.safetensors",
+ "model.layers.28.moe.down_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.28.share_expert.gate_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.28.share_expert.up_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.28.share_expert.down_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.28.input_layernorm.weight": "model-00040-of-00064.safetensors",
+ "model.layers.28.post_attention_layernorm.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.q_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.k_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.v_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.o_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.q_norm.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.k_norm.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.self_attn.g_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.moe.router_bias": "model-00040-of-00064.safetensors",
+ "model.layers.29.moe.gate.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.moe.up_proj.weight": "model-00040-of-00064.safetensors",
+ "model.layers.29.moe.gate_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.moe.down_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.share_expert.gate_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.share_expert.up_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.share_expert.down_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.input_layernorm.weight": "model-00041-of-00064.safetensors",
+ "model.layers.29.post_attention_layernorm.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.q_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.k_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.v_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.o_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.q_norm.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.k_norm.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.self_attn.g_proj.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.moe.router_bias": "model-00041-of-00064.safetensors",
+ "model.layers.30.moe.gate.weight": "model-00041-of-00064.safetensors",
+ "model.layers.30.moe.up_proj.weight": "model-00042-of-00064.safetensors",
+ "model.layers.30.moe.gate_proj.weight": "model-00042-of-00064.safetensors",
+ "model.layers.30.moe.down_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.30.share_expert.gate_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.30.share_expert.up_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.30.share_expert.down_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.30.input_layernorm.weight": "model-00043-of-00064.safetensors",
+ "model.layers.30.post_attention_layernorm.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.q_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.k_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.v_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.o_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.q_norm.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.k_norm.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.self_attn.g_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.moe.router_bias": "model-00043-of-00064.safetensors",
+ "model.layers.31.moe.gate.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.moe.up_proj.weight": "model-00043-of-00064.safetensors",
+ "model.layers.31.moe.gate_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.moe.down_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.share_expert.gate_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.share_expert.up_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.share_expert.down_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.input_layernorm.weight": "model-00044-of-00064.safetensors",
+ "model.layers.31.post_attention_layernorm.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.q_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.k_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.v_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.o_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.q_norm.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.k_norm.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.self_attn.g_proj.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.moe.router_bias": "model-00044-of-00064.safetensors",
+ "model.layers.32.moe.gate.weight": "model-00044-of-00064.safetensors",
+ "model.layers.32.moe.up_proj.weight": "model-00045-of-00064.safetensors",
+ "model.layers.32.moe.gate_proj.weight": "model-00045-of-00064.safetensors",
+ "model.layers.32.moe.down_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.32.share_expert.gate_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.32.share_expert.up_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.32.share_expert.down_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.32.input_layernorm.weight": "model-00046-of-00064.safetensors",
+ "model.layers.32.post_attention_layernorm.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.q_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.k_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.v_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.o_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.q_norm.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.k_norm.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.self_attn.g_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.moe.router_bias": "model-00046-of-00064.safetensors",
+ "model.layers.33.moe.gate.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.moe.up_proj.weight": "model-00046-of-00064.safetensors",
+ "model.layers.33.moe.gate_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.moe.down_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.share_expert.gate_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.share_expert.up_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.share_expert.down_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.input_layernorm.weight": "model-00047-of-00064.safetensors",
+ "model.layers.33.post_attention_layernorm.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.q_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.k_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.v_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.o_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.q_norm.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.k_norm.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.self_attn.g_proj.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.moe.router_bias": "model-00047-of-00064.safetensors",
+ "model.layers.34.moe.gate.weight": "model-00047-of-00064.safetensors",
+ "model.layers.34.moe.up_proj.weight": "model-00048-of-00064.safetensors",
+ "model.layers.34.moe.gate_proj.weight": "model-00048-of-00064.safetensors",
+ "model.layers.34.moe.down_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.34.share_expert.gate_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.34.share_expert.up_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.34.share_expert.down_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.34.input_layernorm.weight": "model-00049-of-00064.safetensors",
+ "model.layers.34.post_attention_layernorm.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.q_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.k_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.v_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.o_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.q_norm.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.k_norm.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.self_attn.g_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.moe.router_bias": "model-00049-of-00064.safetensors",
+ "model.layers.35.moe.gate.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.moe.up_proj.weight": "model-00049-of-00064.safetensors",
+ "model.layers.35.moe.gate_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.moe.down_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.share_expert.gate_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.share_expert.up_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.share_expert.down_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.input_layernorm.weight": "model-00050-of-00064.safetensors",
+ "model.layers.35.post_attention_layernorm.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.q_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.k_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.v_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.o_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.q_norm.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.k_norm.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.self_attn.g_proj.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.moe.router_bias": "model-00050-of-00064.safetensors",
+ "model.layers.36.moe.gate.weight": "model-00050-of-00064.safetensors",
+ "model.layers.36.moe.up_proj.weight": "model-00051-of-00064.safetensors",
+ "model.layers.36.moe.gate_proj.weight": "model-00051-of-00064.safetensors",
+ "model.layers.36.moe.down_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.36.share_expert.gate_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.36.share_expert.up_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.36.share_expert.down_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.36.input_layernorm.weight": "model-00052-of-00064.safetensors",
+ "model.layers.36.post_attention_layernorm.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.q_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.k_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.v_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.o_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.q_norm.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.k_norm.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.self_attn.g_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.moe.router_bias": "model-00052-of-00064.safetensors",
+ "model.layers.37.moe.gate.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.moe.up_proj.weight": "model-00052-of-00064.safetensors",
+ "model.layers.37.moe.gate_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.moe.down_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.share_expert.gate_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.share_expert.up_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.share_expert.down_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.input_layernorm.weight": "model-00053-of-00064.safetensors",
+ "model.layers.37.post_attention_layernorm.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.q_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.k_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.v_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.o_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.q_norm.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.k_norm.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.self_attn.g_proj.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.moe.router_bias": "model-00053-of-00064.safetensors",
+ "model.layers.38.moe.gate.weight": "model-00053-of-00064.safetensors",
+ "model.layers.38.moe.up_proj.weight": "model-00054-of-00064.safetensors",
+ "model.layers.38.moe.gate_proj.weight": "model-00054-of-00064.safetensors",
+ "model.layers.38.moe.down_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.38.share_expert.gate_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.38.share_expert.up_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.38.share_expert.down_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.38.input_layernorm.weight": "model-00055-of-00064.safetensors",
+ "model.layers.38.post_attention_layernorm.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.q_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.k_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.v_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.o_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.q_norm.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.k_norm.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.self_attn.g_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.moe.router_bias": "model-00055-of-00064.safetensors",
+ "model.layers.39.moe.gate.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.moe.up_proj.weight": "model-00055-of-00064.safetensors",
+ "model.layers.39.moe.gate_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.moe.down_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.share_expert.gate_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.share_expert.up_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.share_expert.down_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.input_layernorm.weight": "model-00056-of-00064.safetensors",
+ "model.layers.39.post_attention_layernorm.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.q_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.k_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.v_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.o_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.q_norm.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.k_norm.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.self_attn.g_proj.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.moe.router_bias": "model-00056-of-00064.safetensors",
+ "model.layers.40.moe.gate.weight": "model-00056-of-00064.safetensors",
+ "model.layers.40.moe.up_proj.weight": "model-00057-of-00064.safetensors",
+ "model.layers.40.moe.gate_proj.weight": "model-00057-of-00064.safetensors",
+ "model.layers.40.moe.down_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.40.share_expert.gate_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.40.share_expert.up_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.40.share_expert.down_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.40.input_layernorm.weight": "model-00058-of-00064.safetensors",
+ "model.layers.40.post_attention_layernorm.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.q_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.k_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.v_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.o_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.q_norm.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.k_norm.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.self_attn.g_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.moe.router_bias": "model-00058-of-00064.safetensors",
+ "model.layers.41.moe.gate.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.moe.up_proj.weight": "model-00058-of-00064.safetensors",
+ "model.layers.41.moe.gate_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.moe.down_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.share_expert.gate_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.share_expert.up_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.share_expert.down_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.input_layernorm.weight": "model-00059-of-00064.safetensors",
+ "model.layers.41.post_attention_layernorm.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.q_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.k_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.v_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.o_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.q_norm.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.k_norm.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.self_attn.g_proj.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.moe.router_bias": "model-00059-of-00064.safetensors",
+ "model.layers.42.moe.gate.weight": "model-00059-of-00064.safetensors",
+ "model.layers.42.moe.up_proj.weight": "model-00060-of-00064.safetensors",
+ "model.layers.42.moe.gate_proj.weight": "model-00060-of-00064.safetensors",
+ "model.layers.42.moe.down_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.42.share_expert.gate_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.42.share_expert.up_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.42.share_expert.down_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.42.input_layernorm.weight": "model-00061-of-00064.safetensors",
+ "model.layers.42.post_attention_layernorm.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.q_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.k_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.v_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.o_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.q_norm.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.k_norm.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.self_attn.g_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.moe.router_bias": "model-00061-of-00064.safetensors",
+ "model.layers.43.moe.gate.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.moe.up_proj.weight": "model-00061-of-00064.safetensors",
+ "model.layers.43.moe.gate_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.moe.down_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.share_expert.gate_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.share_expert.up_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.share_expert.down_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.input_layernorm.weight": "model-00062-of-00064.safetensors",
+ "model.layers.43.post_attention_layernorm.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.q_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.k_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.v_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.o_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.q_norm.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.k_norm.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.self_attn.g_proj.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.moe.router_bias": "model-00062-of-00064.safetensors",
+ "model.layers.44.moe.gate.weight": "model-00062-of-00064.safetensors",
+ "model.layers.44.moe.up_proj.weight": "model-00063-of-00064.safetensors",
+ "model.layers.44.moe.gate_proj.weight": "model-00063-of-00064.safetensors",
+ "model.layers.44.moe.down_proj.weight": "model-00064-of-00064.safetensors",
+ "model.layers.44.share_expert.gate_proj.weight": "model-00064-of-00064.safetensors",
+ "model.layers.44.share_expert.up_proj.weight": "model-00064-of-00064.safetensors",
+ "model.layers.44.share_expert.down_proj.weight": "model-00064-of-00064.safetensors",
+ "model.layers.44.input_layernorm.weight": "model-00064-of-00064.safetensors",
+ "model.layers.44.post_attention_layernorm.weight": "model-00064-of-00064.safetensors",
+ "model.norm.weight": "model-00064-of-00064.safetensors",
+ "lm_head.weight": "model-00064-of-00064.safetensors"
+ }
+}
\ No newline at end of file
diff --git a/modeling_step3p5.py b/modeling_step3p5.py
new file mode 100644
index 0000000000000000000000000000000000000000..aa8ebda29be86a33d508f690254db3add21ee886
--- /dev/null
+++ b/modeling_step3p5.py
@@ -0,0 +1,899 @@
+# Copyright 2025 The LLAMA4 and HuggingFace Inc. team. All rights reserved.
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+from dataclasses import dataclass
+from typing import Callable, Optional, Tuple, Union
+
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+from transformers.activations import ACT2FN
+from transformers.cache_utils import Cache, DynamicCache
+from transformers.generation import GenerationMixin
+from transformers.masking_utils import (create_causal_mask,
+ create_sliding_window_causal_mask)
+from transformers.modeling_flash_attention_utils import FlashAttentionKwargs
+from transformers.modeling_layers import GradientCheckpointingLayer
+from transformers.modeling_outputs import BaseModelOutputWithPast, ModelOutput
+from transformers.modeling_rope_utils import (ROPE_INIT_FUNCTIONS,
+ dynamic_rope_update)
+from transformers.modeling_utils import (ALL_ATTENTION_FUNCTIONS,
+ PreTrainedModel)
+from transformers.processing_utils import Unpack
+from transformers.utils import TransformersKwargs, can_return_tuple, logging
+
+from .configuration_step3p5 import Step3p5Config
+
+logger = logging.get_logger(__name__)
+
+__all__ = ["Step3p5Model", "Step3p5ForCausalLM"]
+
+class Step3p5RotaryEmbedding(nn.Module):
+
+ def __init__(self, config: Step3p5Config, device=None, layer_idx=None):
+ super().__init__()
+ # BC: "rope_type" was originally "type"
+ self.layer_idx = layer_idx
+ if config.rope_parameters is not None:
+ self.rope_type = config.rope_parameters.get(
+ "rope_type", config.rope_parameters.get("type"))
+ else:
+ self.rope_type = "default"
+ self.max_seq_len_cached = config.max_position_embeddings
+ self.original_max_seq_len = config.max_position_embeddings
+
+ partial_rotary_factors = getattr(config, "partial_rotary_factors",
+ None)
+ if partial_rotary_factors is not None:
+ config.partial_rotary_factor = partial_rotary_factors[
+ self.layer_idx]
+ else:
+ config.partial_rotary_factor = 1.0
+
+ self.rope_theta = config.rope_theta
+ if isinstance(config.rope_theta, list):
+ self.rope_theta = config.rope_theta.copy()
+ config.rope_theta = self.rope_theta[self.layer_idx]
+
+ self.config = config
+ self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
+ inv_freq, self.attention_scaling = self.rope_init_fn(
+ self.config, device)
+
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
+ self.original_inv_freq = self.inv_freq
+ config.rope_theta = self.rope_theta
+
+ @torch.no_grad()
+ @dynamic_rope_update # power user: used with advanced RoPE types (e.g. dynamic rope)
+ def forward(self, x, position_ids):
+ inv_freq_expanded = self.inv_freq[None, :, None].float().expand(
+ position_ids.shape[0], -1, 1).to(x.device)
+ position_ids_expanded = position_ids[:, None, :].float().to(x.device)
+
+ device_type = x.device.type if isinstance(
+ x.device.type, str) and x.device.type != "mps" else "cpu"
+ with torch.autocast(device_type=device_type,
+ enabled=False): # Force float32
+ freqs = (inv_freq_expanded.float()
+ @ position_ids_expanded.float()).transpose(1, 2)
+ emb = torch.cat((freqs, freqs), dim=-1)
+ cos = emb.cos() * self.attention_scaling
+ sin = emb.sin() * self.attention_scaling
+
+ return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
+
+
+def rotate_half(x):
+ """Rotates half the hidden dims of the input."""
+ x1 = x[..., :x.shape[-1] // 2]
+ x2 = x[..., x.shape[-1] // 2:]
+ return torch.cat((-x2, x1), dim=-1)
+
+
+def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
+ """Applies Rotary Position Embedding to the query and key tensors.
+ Args:
+ q (`torch.Tensor`): The query tensor.
+ k (`torch.Tensor`): The key tensor.
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
+ position_ids (`torch.Tensor`, *optional*):
+ Deprecated and unused.
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
+ Returns:
+ `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
+ """
+ rotary_dim = cos.shape[-1]
+ q_rot, q_pass = q[..., :rotary_dim], q[..., rotary_dim:]
+ k_rot, k_pass = k[..., :rotary_dim], k[..., rotary_dim:]
+
+ # Apply rotary embeddings on the first half or full tensor
+ q_embed = (q_rot * cos) + (rotate_half(q_rot) * sin)
+ k_embed = (k_rot * cos) + (rotate_half(k_rot) * sin)
+
+ # Concatenate back to full shape
+ q_embed = torch.cat([q_embed, q_pass], dim=-1)
+ k_embed = torch.cat([k_embed, k_pass], dim=-1)
+ return q_embed, k_embed
+
+
+def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
+ """
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
+ """
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
+ if n_rep == 1:
+ return hidden_states
+ hidden_states = hidden_states[:, :,
+ None, :, :].expand(batch,
+ num_key_value_heads,
+ n_rep, slen, head_dim)
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen,
+ head_dim)
+
+
+# Adapted from transformers.models.llama.modeling_llama.eager_attention_forward -> llama4 doesn't cast attn weights to fp32
+def eager_attention_forward(
+ module: nn.Module,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ value: torch.Tensor,
+ attention_mask: Optional[torch.Tensor],
+ scaling: float,
+ dropout: float = 0.0,
+ **kwargs,
+):
+ key_states = repeat_kv(key, module.num_key_value_groups)
+ value_states = repeat_kv(value, module.num_key_value_groups)
+ # breakpoint()
+ attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling
+ if attention_mask is not None:
+ causal_mask = attention_mask[:, :, :, :key_states.shape[-2]]
+ attn_weights = attn_weights + causal_mask
+
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1)
+ attn_weights = nn.functional.dropout(attn_weights,
+ p=dropout,
+ training=module.training)
+ attn_output = torch.matmul(attn_weights, value_states)
+ attn_output = attn_output.transpose(1, 2).contiguous()
+
+ return attn_output, attn_weights
+
+@dataclass
+class Step3p5CausalLMOutputWithPast(ModelOutput):
+ r"""
+ loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `labels` is provided):
+ Language modeling loss (for next-token prediction).
+ logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, config.vocab_size)`):
+ Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).
+ past_key_values (`Cache`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):
+ Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape
+ `(batch_size, num_heads, sequence_length, embed_size_per_head)`)
+ Contains pre-computed hidden-states (key and values in the self-attention blocks) that can be used (see
+ `past_key_values` input) to speed up sequential decoding.
+ """
+
+ loss: Optional[torch.FloatTensor] = None
+ last_hidden_state: Optional[torch.FloatTensor] = None
+ logits: torch.FloatTensor = None
+ past_key_values: Optional[list[torch.FloatTensor]] = None
+ hidden_states: Optional[tuple[torch.FloatTensor]] = None
+ attentions: Optional[tuple[torch.FloatTensor]] = None
+
+
+class Step3p5MLP(nn.Module):
+
+ def __init__(self, config, intermediate_size=None, swiglu_limit=None):
+ super().__init__()
+ self.config = config
+ self.hidden_size = config.hidden_size
+ self.intermediate_size = intermediate_size if intermediate_size is not None else config.intermediate_size
+ self.gate_proj = nn.Linear(self.hidden_size,
+ self.intermediate_size,
+ bias=False)
+ self.up_proj = nn.Linear(self.hidden_size,
+ self.intermediate_size,
+ bias=False)
+ self.down_proj = nn.Linear(self.intermediate_size,
+ self.hidden_size,
+ bias=False)
+ self.act_fn = ACT2FN["silu"]
+ self.limit = swiglu_limit
+
+ def forward(self, x):
+ up = self.up_proj(x)
+ gate = self.act_fn(self.gate_proj(x))
+ if self.limit is not None:
+ gate = gate.clamp(min=None, max=self.limit)
+ up = up.clamp(min=-self.limit, max=self.limit)
+
+ return self.down_proj(gate * up)
+
+
+def sigmoid_routing_function(gating_output: torch.Tensor, topk: int,
+ renormalize: bool):
+ gating_output = gating_output.float()
+ gate_prob = torch.sigmoid(gating_output)
+ gate_prob = gate_prob / gate_prob.sum(dim=-1, keepdim=True)
+ topk_prob, indices = torch.topk(gate_prob, k=topk, dim=1)
+ expert_topk_weight = topk_prob
+ if renormalize:
+ expert_topk_weight = expert_topk_weight / torch.sum(
+ expert_topk_weight, dim=-1, keepdim=True)
+ return expert_topk_weight, indices
+
+
+def softmax_routing_function(gating_output: torch.Tensor, top_k: int,
+ renormalize: bool):
+ gating_output = gating_output.float()
+ gate_prob = torch.softmax(gating_output, dim=-1)
+ gate_prob = gate_prob / gate_prob.sum(dim=-1, keepdim=True)
+ topk_prob, indices = torch.topk(gate_prob, k=top_k, dim=1)
+ expert_topk_weight = topk_prob
+ if renormalize:
+ expert_topk_weight = expert_topk_weight / torch.sum(
+ expert_topk_weight, dim=-1, keepdim=True)
+ return expert_topk_weight, indices.to(torch.int32)
+
+
+class MoELinear(nn.Module):
+
+ def __init__(self, num_experts, in_features, out_features):
+ super().__init__()
+ self.num_experts = num_experts
+ self.in_features = in_features
+ self.out_features = out_features
+ self.weight = nn.Parameter(
+ torch.empty(num_experts, out_features, in_features))
+
+ def forward(self, x, expert_id):
+ x = F.linear(x.float(), self.weight[expert_id].float())
+ return x
+
+
+class Step3p5MoEMLP(nn.Module):
+
+ def __init__(self, config, swiglu_limit=None):
+ super().__init__()
+ self.num_experts = config.moe_num_experts
+ self.top_k = config.moe_top_k
+ self.hidden_size = config.hidden_size
+ self.moe_intermediate_size = config.moe_intermediate_size
+
+ self.use_moe_router_bias = config.use_moe_router_bias
+ if self.use_moe_router_bias:
+ self.router_bias = nn.Parameter(torch.zeros(config.moe_num_experts,
+ dtype=torch.float32),
+ requires_grad=False)
+ self.custom_routing_function = self.router_bias_func
+ elif config.moe_router_activation == "sigmoid":
+ self.custom_routing_function = sigmoid_routing_function
+ else:
+ self.custom_routing_function = None
+ self.need_fp32_gate = config.need_fp32_gate
+ self.routed_scaling_factor = getattr(config,
+ "moe_router_scaling_factor", 1.0)
+
+ # gating
+ self.gate = nn.Linear(self.hidden_size, self.num_experts, bias=False)
+
+ self.act_fn = ACT2FN["silu"]
+ self.limit = swiglu_limit
+
+ self.up_proj = MoELinear(self.num_experts, self.hidden_size,
+ self.moe_intermediate_size)
+ self.gate_proj = MoELinear(self.num_experts, self.hidden_size,
+ self.moe_intermediate_size)
+ self.down_proj = MoELinear(self.num_experts,
+ self.moe_intermediate_size,
+ self.hidden_size)
+
+ def router_bias_func(self, gating_output: torch.Tensor, topk: int,
+ renormalize: bool):
+ gate_prob = torch.sigmoid(gating_output.float())
+ gate_prob_with_bias = gate_prob + self.router_bias.unsqueeze(0)
+ _, indices = torch.topk(gate_prob_with_bias, k=topk, dim=1)
+ topk_prob = torch.gather(gate_prob, 1, indices)
+ expert_topk_weight = topk_prob
+ if renormalize:
+ expert_topk_weight = expert_topk_weight / (
+ torch.sum(expert_topk_weight, dim=-1, keepdim=True) + 1e-20)
+ return expert_topk_weight, indices
+
+ def get_expert_output(self, inputs: torch.Tensor, expert_id):
+ #if self.limit is None:
+ up = self.up_proj(inputs, expert_id)
+ gate = self.act_fn(self.gate_proj(inputs, expert_id))
+ if self.limit is not None:
+ gate = gate.clamp(min=None, max=self.limit)
+ up = up.clamp(min=-self.limit, max=self.limit)
+
+ return self.down_proj(gate * up, expert_id)
+
+ def forward(self, hidden_states):
+ """ """
+ batch_size, sequence_length, hidden_dim = hidden_states.shape
+ hidden_states = hidden_states.view(-1, hidden_dim)
+ if self.need_fp32_gate:
+ router_logits = torch.matmul(hidden_states.to(torch.float32), self.gate.weight.t().to(torch.float32))
+ else:
+ # router_logits: (batch * sequence_length, n_experts)
+ router_logits = self.gate(hidden_states)
+
+ if self.custom_routing_function:
+ routing_weights, selected_experts = self.custom_routing_function(
+ router_logits, self.top_k, renormalize=True)
+ else:
+ routing_weights = F.softmax(router_logits,
+ dim=1,
+ dtype=torch.float)
+ routing_weights, selected_experts = torch.topk(routing_weights,
+ self.top_k,
+ dim=-1)
+
+ routing_weights = routing_weights * self.routed_scaling_factor
+
+ final_hidden_states = torch.zeros(
+ (batch_size * sequence_length, hidden_dim),
+ dtype=hidden_states.dtype,
+ device=hidden_states.device)
+
+ # One hot encode the selected experts to create an expert mask
+ # this will be used to easily index which expert is going to be sollicitated
+ expert_mask = torch.nn.functional.one_hot(
+ selected_experts, num_classes=self.num_experts).permute(2, 1, 0)
+
+ # Loop over all available experts in the model and perform the computation on each expert
+ for expert_idx in range(self.num_experts):
+ idx, top_x = torch.where(expert_mask[expert_idx])
+
+ # Index the correct hidden states and compute the expert hidden state for
+ # the current expert. We need to make sure to multiply the output hidden
+ # states by `routing_weights` on the corresponding tokens (top-1 and top-2)
+ current_state = hidden_states[None, top_x].reshape(-1, hidden_dim)
+ current_hidden_states = (
+ self.get_expert_output(current_state, expert_idx) *
+ routing_weights[top_x, idx, None])
+
+ # However `index_add_` only support torch tensors for indexing so we'll use
+ # the `top_x` tensor here.
+ final_hidden_states.index_add_(
+ 0, top_x, current_hidden_states.to(hidden_states.dtype))
+ final_hidden_states = final_hidden_states.reshape(
+ batch_size, sequence_length, hidden_dim)
+ return final_hidden_states
+
+
+class Step3p5RMSNorm(nn.Module):
+
+ def __init__(
+ self,
+ hidden_size: int,
+ eps: float = 1e-5,
+ ) -> None:
+ super().__init__()
+ self.weight = nn.Parameter(torch.ones(hidden_size))
+ self.variance_epsilon = eps
+
+ def forward(self, x: torch.Tensor) -> torch.Tensor:
+ dtype = x.dtype
+ x = x.float()
+ variance = x.pow(2).mean(dim=-1, keepdim=True)
+ normed = x * torch.rsqrt(variance + self.variance_epsilon)
+ normed = normed * (self.weight.float() + 1)
+ return normed.to(dtype)
+class Step3p5Attention(nn.Module):
+
+ def __init__(self, config: Step3p5Config, layer_idx):
+ super().__init__()
+ self.config = config
+ self.layer_idx = layer_idx
+ self.num_attention_heads = config.num_attention_heads
+ self.num_key_value_heads = config.num_attention_groups
+
+ layer_types = getattr(config, "layer_types", [])
+ if layer_types:
+ enable_sliding_window = layer_types[
+ self.layer_idx] == "sliding_attention"
+ else:
+ enable_sliding_window = self.layer_idx % 2 == 0
+
+ if hasattr(config, "yarn_only_types") and layer_types[
+ self.layer_idx] not in config.yarn_only_types:
+ config.rope_parameters = None
+ else:
+ config.rope_parameters = getattr(config, "rope_scaling", None)
+
+ self.sliding_window = config.sliding_window
+ if enable_sliding_window:
+ self.num_attention_heads = config.attention_other_setting[
+ "num_attention_heads"]
+ self.num_key_value_heads = config.attention_other_setting[
+ "num_attention_groups"]
+
+ if self.sliding_window is not None and enable_sliding_window:
+ self.sliding_window = (self.sliding_window)
+ else:
+ self.sliding_window = None
+ self.head_dim = getattr(config, "head_dim",
+ config.hidden_size // self.num_attention_heads)
+ self.num_key_value_groups = self.num_attention_heads // self.num_key_value_heads
+
+ self.rotary_emb = Step3p5RotaryEmbedding(config, layer_idx=layer_idx)
+
+ self.q_size = self.num_attention_heads * self.head_dim
+ self.kv_size = self.num_key_value_heads * self.head_dim
+ self.scaling = self.head_dim**-0.5
+
+ self.q_proj = nn.Linear(config.hidden_size, self.q_size, bias=False)
+ self.k_proj = nn.Linear(config.hidden_size, self.kv_size, bias=False)
+ self.v_proj = nn.Linear(config.hidden_size, self.kv_size, bias=False)
+ self.o_proj = nn.Linear(self.q_size, config.hidden_size, bias=False)
+ self.q_norm = Step3p5RMSNorm(self.head_dim,
+ eps=config.rms_norm_eps)
+ self.k_norm = Step3p5RMSNorm(self.head_dim,
+ eps=config.rms_norm_eps)
+
+ self.use_head_wise_attn_gate = config.use_head_wise_attn_gate
+ if self.use_head_wise_attn_gate:
+ self.g_proj = nn.Linear(config.hidden_size,
+ self.num_attention_heads,
+ bias=False)
+
+ self.use_rope = True
+ use_rope_layers = getattr(config, "use_rope_layers", None)
+ if use_rope_layers:
+ self.use_rope = use_rope_layers[self.layer_idx]
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ attention_mask: Optional[torch.Tensor],
+ past_key_value: Optional[Cache] = None,
+ cache_position: Optional[torch.LongTensor] = None,
+ position_ids: Optional[torch.LongTensor] = None,
+ **kwargs: Unpack[FlashAttentionKwargs],
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor],
+ Optional[Tuple[torch.Tensor]]]:
+ input_shape = hidden_states.shape[:-1]
+ hidden_shape = (*input_shape, -1, self.head_dim)
+
+ query_states = self.q_norm(
+ self.q_proj(hidden_states).view(hidden_shape)).transpose(1, 2)
+ key_states = self.k_norm(
+ self.k_proj(hidden_states).view(hidden_shape)).transpose(1, 2)
+ value_states = self.v_proj(hidden_states).view(hidden_shape).transpose(
+ 1, 2)
+ if self.use_head_wise_attn_gate:
+ gate_states = self.g_proj(hidden_states)
+ cos, sin = self.rotary_emb(hidden_states, position_ids)
+
+ # cos, sin = position_embeddings
+ query_states, key_states = apply_rotary_pos_emb(
+ query_states, key_states, cos, sin)
+
+ # query_states, key_states = apply_rotary_pos_emb(query_norm_states, key_norm_states, cos, sin)
+ if past_key_value is not None:
+ # sin and cos are specific to RoPE models; position_ids needed for the static cache
+ cache_kwargs = {
+ "sin": sin,
+ "cos": cos,
+ "cache_position": cache_position
+ }
+ key_states, value_states = past_key_value.update(
+ key_states, value_states, self.layer_idx, cache_kwargs)
+
+ attention_interface: Callable = eager_attention_forward
+ # TODO: considering FP8ļ¼
+ # RuntimeError: Expected attn_mask dtype to be bool or float or to match query dtype,
+ # but got attn_mask.dtype: long int and query.dtype: c10::BFloat16 instead.
+ if self.config._attn_implementation != "eager":
+ attention_interface = ALL_ATTENTION_FUNCTIONS[
+ self.config._attn_implementation]
+
+ attn_output, attn_weights = attention_interface(
+ self,
+ query_states,
+ key_states,
+ value_states,
+ attention_mask,
+ dropout=0.0 if not self.training else self.attention_dropout,
+ scaling=self.scaling,
+ sliding_window=self.sliding_window, # main diff with Llama
+ **kwargs,
+ )
+ attn_output = attn_output.reshape(*input_shape, -1)
+ if self.use_head_wise_attn_gate:
+ output = attn_output.view(
+ *attn_output.shape[:-1], self.num_attention_heads,
+ self.head_dim) * gate_states.unsqueeze(-1).sigmoid()
+ attn_output = output.view(*attn_output.shape)
+ attn_output = self.o_proj(attn_output)
+
+ return attn_output, attn_weights
+
+
+class Step3p5DecoderLayer(GradientCheckpointingLayer):
+
+ def __init__(self, config, layer_idx):
+ super().__init__()
+ self.hidden_size = config.hidden_size
+ self.layer_idx = layer_idx
+ self.self_attn = Step3p5Attention(config, layer_idx)
+ self.attention_type = config.layer_types[layer_idx]
+
+ moe_layers_enum = getattr(config, "moe_layers_enum", None)
+ if moe_layers_enum is not None:
+ moe_layers_idx = [
+ int(i) for i in moe_layers_enum.strip().split(',')
+ ]
+ else:
+ moe_layers_idx = [i for i in range(1, config.num_hidden_layers)]
+ self.is_moe_layer = layer_idx in moe_layers_idx
+ self.use_moe = False
+
+ if config.swiglu_limits_shared and config.swiglu_limits_shared[
+ layer_idx] is not None and config.swiglu_limits_shared[
+ layer_idx] != 0:
+ swiglu_limit_shared = config.swiglu_limits_shared[layer_idx]
+ else:
+ swiglu_limit_shared = None
+ if config.swiglu_limits and config.swiglu_limits[
+ layer_idx] is not None and config.swiglu_limits[layer_idx] != 0:
+ swiglu_limit = config.swiglu_limits[layer_idx]
+ else:
+ swiglu_limit = None
+ if self.is_moe_layer:
+ self.moe = Step3p5MoEMLP(config, swiglu_limit=swiglu_limit) #
+ self.share_expert = Step3p5MLP(
+ config,
+ intermediate_size=config.share_expert_dim,
+ swiglu_limit=swiglu_limit_shared)
+ self.use_moe = True
+ else:
+ self.mlp = Step3p5MLP(config,
+ intermediate_size=config.intermediate_size,
+ swiglu_limit=swiglu_limit_shared)
+
+ self.input_layernorm = Step3p5RMSNorm(
+ config.hidden_size,
+ eps=config.rms_norm_eps)
+ self.post_attention_layernorm = Step3p5RMSNorm(
+ config.hidden_size,
+ eps=config.rms_norm_eps)
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ attention_mask: Optional[torch.Tensor] = None,
+ position_ids: Optional[torch.LongTensor] = None,
+ past_key_value: Optional[tuple[torch.Tensor]] = None,
+ cache_position: Optional[torch.LongTensor] = None,
+ **kwargs: Unpack[FlashAttentionKwargs],
+ ) -> torch.FloatTensor:
+ residual = hidden_states
+ hidden_states = self.input_layernorm(hidden_states)
+ hidden_states, _ = self.self_attn(
+ hidden_states=hidden_states,
+ attention_mask=attention_mask,
+ position_ids=position_ids,
+ past_key_value=past_key_value,
+ cache_position=cache_position,
+ **kwargs,
+ )
+ hidden_states = residual + hidden_states
+
+ # Fully Connected
+ residual = hidden_states
+ hidden_states = self.post_attention_layernorm(hidden_states)
+ if self.use_moe:
+ share_output = self.share_expert(hidden_states)
+ moe_output = self.moe(hidden_states)
+ ffn_output = moe_output + share_output
+ else:
+ ffn_output = self.mlp(hidden_states)
+ if isinstance(ffn_output, tuple):
+ hidden_states, _ = ffn_output
+ else:
+ hidden_states = ffn_output
+
+ hidden_states = residual + hidden_states
+ return hidden_states
+
+
+class Step3p5PreTrainedModel(PreTrainedModel):
+ # Link this model family to its configuration class so PreTrainedModel.from_pretrained
+ # can load the config instead of failing with a NoneType error.
+ config_class = Step3p5Config
+ supports_gradient_checkpointing = True
+ _skip_keys_device_placement = ["past_key_values"]
+ _keys_to_ignore_on_load_unexpected = [
+ r"model\.layers\.45\.*",
+ r"model\.layers\.46\.*",
+ r"model\.layers\.47\.*"
+ ]
+ _supports_flash_attn = False
+ _supports_sdpa = True
+ _supports_flex_attn = True
+ _supports_static_cache = True
+ _supports_attention_backend = True
+
+
+class Step3p5Model(Step3p5PreTrainedModel, GenerationMixin):
+ _no_split_modules = ["Step3p5DecoderLayer"]
+ base_model_prefix = "model"
+ _tied_weights_keys = ["lm_head.weight"]
+ config: Step3p5Config
+ def __init__(self, config: Step3p5Config):
+ super().__init__(config)
+ self.padding_idx = config.pad_token_id
+ self.vocab_size = config.vocab_size
+
+ self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size,
+ self.padding_idx)
+ self.layers = nn.ModuleList([
+ Step3p5DecoderLayer(config, layer_idx)
+ for layer_idx in range(config.num_hidden_layers)
+ ])
+ self.norm = Step3p5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
+ self.gradient_checkpointing = False
+ self.has_sliding_layers = "sliding_attention" in self.config.layer_types
+
+ # Initialize weights and apply final processing
+ self.post_init()
+
+ def get_input_embeddings(self, input_ids):
+ return self.embed_tokens(input_ids)
+
+ @can_return_tuple
+ def forward(
+ self,
+ input_ids: torch.LongTensor = None,
+ attention_mask: Optional[torch.Tensor] = None,
+ position_ids: Optional[torch.LongTensor] = None,
+ past_key_values: Optional[Cache] = None,
+ inputs_embeds: Optional[torch.FloatTensor] = None,
+ use_cache: Optional[bool] = None,
+ output_attentions: Optional[bool] = None,
+ output_hidden_states: Optional[bool] = None,
+ return_dict: Optional[bool] = None,
+ cache_position: Optional[torch.LongTensor] = None,
+ **kwargs: Unpack[TransformersKwargs],
+ ) -> Union[tuple, BaseModelOutputWithPast]:
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
+ output_hidden_states = (output_hidden_states
+ if output_hidden_states is not None else
+ self.config.output_hidden_states)
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
+ if (input_ids is None) ^ (inputs_embeds is not None):
+ raise ValueError(
+ "You must specify exactly one of input_ids or inputs_embeds")
+
+ if self.gradient_checkpointing and self.training and use_cache:
+ logger.warning_once(
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`."
+ )
+ use_cache = False
+
+ if inputs_embeds is None:
+ inputs_embeds = self.embed_tokens(
+ input_ids.to(self.embed_tokens.weight.device))
+
+ if use_cache and past_key_values is None:
+ past_key_values = DynamicCache()
+
+ if cache_position is None:
+ past_seen_tokens = past_key_values.get_seq_length(
+ ) if past_key_values is not None else 0
+ cache_position = torch.arange(past_seen_tokens,
+ past_seen_tokens +
+ inputs_embeds.shape[1],
+ device=inputs_embeds.device)
+
+ if position_ids is None:
+ position_ids = cache_position.unsqueeze(0)
+
+ hidden_states = inputs_embeds
+
+ # It may already have been prepared by e.g. `generate`
+ if not isinstance(causal_mask_mapping := attention_mask, dict):
+ # Prepare mask arguments
+ mask_kwargs = {
+ "config": self.config,
+ "input_embeds": inputs_embeds,
+ "attention_mask": attention_mask,
+ "cache_position": cache_position,
+ "past_key_values": past_key_values,
+ "position_ids": position_ids,
+ }
+ # Create the masks
+ causal_mask_mapping = {
+ "full_attention": create_causal_mask(**mask_kwargs),
+ }
+
+ # The sliding window alternating layers are not always activated depending on the config
+ if self.has_sliding_layers:
+ causal_mask_mapping[
+ "sliding_attention"] = create_sliding_window_causal_mask(
+ **mask_kwargs)
+
+ # # create position embeddings to be shared across the decoder layers
+ # decoder layers
+ all_hidden_states = () if output_hidden_states else None
+ all_self_attns = () if output_attentions else None
+ for decoder_layer in self.layers[:self.config.num_hidden_layers]:
+ if output_hidden_states:
+ all_hidden_states += (hidden_states, )
+
+ layer_outputs = decoder_layer(
+ hidden_states,
+ attention_mask=causal_mask_mapping[
+ decoder_layer.attention_type],
+ position_ids=position_ids,
+ past_key_value=past_key_values,
+ output_attentions=output_attentions,
+ use_cache=use_cache,
+ cache_position=cache_position,
+ **kwargs,
+ )
+
+ hidden_states = layer_outputs
+
+ hidden_states = self.norm(hidden_states)
+
+ return BaseModelOutputWithPast(
+ last_hidden_state=hidden_states,
+ past_key_values=past_key_values if use_cache else None,
+ hidden_states=all_hidden_states,
+ attentions=all_self_attns,
+ )
+
+
+class Step3p5ForCausalLM(Step3p5PreTrainedModel, GenerationMixin):
+ _tied_weights_keys = ["lm_head.weight"]
+ config: Step3p5Config
+
+ def __init__(self, config: Step3p5Config):
+ super().__init__(config)
+ self.model = Step3p5Model(config)
+ self.lm_head = nn.Linear(config.hidden_size,
+ config.vocab_size,
+ bias=False)
+
+ self.post_init()
+
+ def get_input_embeddings(self):
+ return self.model.get_input_embeddings()
+
+ def set_input_embeddings(self, value):
+ self.model.set_input_embeddings(value)
+
+ def get_output_embeddings(self):
+ return self.model.get_output_embeddings()
+
+ def set_output_embeddings(self, new_embeddings):
+ self.model.set_output_embeddings(new_embeddings)
+
+ def set_decoder(self, decoder):
+ self.model.set_decoder(decoder)
+
+ def get_decoder(self):
+ return self.model.get_decoder()
+
+ def forward(
+ self,
+ input_ids: torch.LongTensor = None,
+ num_patches=None,
+ patch_pixel_values=None,
+ patch_newline_mask=None,
+ attention_mask: Optional[torch.Tensor] = None,
+ position_ids: Optional[torch.LongTensor] = None,
+ past_key_values: Optional[Cache] = None,
+ inputs_embeds: Optional[torch.FloatTensor] = None,
+ labels: Optional[torch.LongTensor] = None,
+ use_cache: Optional[bool] = None,
+ output_attentions: Optional[bool] = None,
+ output_hidden_states: Optional[bool] = None,
+ return_dict: Optional[bool] = None,
+ cache_position: Optional[torch.LongTensor] = None,
+ **kwargs: Unpack[TransformersKwargs],
+ ) -> Union[tuple, Step3p5CausalLMOutputWithPast]:
+ r"""
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
+ Example:
+ ```python
+ >>> from transformers import AutoTokenizer, Llama4ForCausalLM
+ >>> model = Llama4ForCausalLM.from_pretrained("meta-llama4/Llama4-2-7b-hf")
+ >>> tokenizer = AutoTokenizer.from_pretrained("meta-llama4/Llama4-2-7b-hf")
+ >>> prompt = "Hey, are you conscious? Can you talk to me?"
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
+ >>> # Generate
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
+ "Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you."
+ ```"""
+
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
+ output_hidden_states = (output_hidden_states
+ if output_hidden_states is not None else
+ self.config.output_hidden_states)
+ # breakpoint()
+ outputs = self.model(
+ input_ids=input_ids,
+ num_patches=num_patches,
+ patch_pixel_values=patch_pixel_values,
+ patch_newline_mask=patch_newline_mask,
+ position_ids=position_ids,
+ attention_mask=attention_mask,
+ past_key_values=past_key_values,
+ inputs_embeds=inputs_embeds,
+ use_cache=use_cache,
+ output_attentions=output_attentions,
+ output_hidden_states=output_hidden_states,
+ return_dict=return_dict,
+ cache_position=cache_position,
+ **kwargs,
+ )
+ hidden_states = outputs.last_hidden_state
+ logits = self.lm_head(hidden_states)
+
+ return Step3p5CausalLMOutputWithPast(logits=logits, )
+
+ def prepare_inputs_for_generation(
+ self,
+ input_ids,
+ past_key_values=None,
+ inputs_embeds=None,
+ pixel_values=None,
+ attention_mask=None,
+ cache_position=None,
+ logits_to_keep=None,
+ **kwargs,
+ ):
+
+ model_inputs = super().prepare_inputs_for_generation(
+ input_ids,
+ past_key_values=past_key_values,
+ inputs_embeds=inputs_embeds,
+ attention_mask=attention_mask,
+ cache_position=cache_position,
+ logits_to_keep=logits_to_keep,
+ **kwargs,
+ )
+
+ if cache_position[0] == 0:
+ # If we're in cached decoding stage, pixel values should be None because input ids do not contain special image token anymore
+ # Otherwise we need pixel values to be passed to model
+ model_inputs["pixel_values"] = pixel_values
+
+ return model_inputs
+
+ def _fix_state_dict_key_on_load(self, key: str) -> tuple[str, bool]:
+ if key.startswith("language_model."):
+ return key[len("language_model."):], True
+
+ return key, False
\ No newline at end of file
diff --git a/special_tokens_map.json b/special_tokens_map.json
new file mode 100644
index 0000000000000000000000000000000000000000..71e14b354c9d1319df9ac55d385c33e74c0113bd
--- /dev/null
+++ b/special_tokens_map.json
@@ -0,0 +1,23 @@
+{
+ "bos_token": {
+ "content": "<ļ½begināofāsentenceļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "eos_token": {
+ "content": "<|im_end|>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ },
+ "pad_token": {
+ "content": "<ļ½endāofāsentenceļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false
+ }
+}
diff --git a/tokenizer.json b/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..a57a955520240603eca1ffedcf3f8d27a1d678ec
--- /dev/null
+++ b/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b564c620eb77fa11d0926011c2202347d6cfc358d79724ee04ae7007e13636f0
+size 9976972
diff --git a/tokenizer_config.json b/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..c29f8000f644d30a535f738cb1efba4e9afff26c
--- /dev/null
+++ b/tokenizer_config.json
@@ -0,0 +1,6562 @@
+{
+ "add_bos_token": true,
+ "add_eos_token": false,
+ "add_prefix_space": null,
+ "added_tokens_decoder": {
+ "0": {
+ "content": "<ļ½begināofāsentenceļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "1": {
+ "content": "<ļ½endāofāsentenceļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "2": {
+ "content": "<ļ½āpadāļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128000": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128001": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128002": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128003": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128004": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128005": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128006": {
+ "content": "<|im_start|>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128007": {
+ "content": "<|im_end|>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128008": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128009": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128010": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128011": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128012": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128013": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128014": {
+ "content": "<ļ½placeāholderānoā14ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128015": {
+ "content": "<ļ½placeāholderānoā15ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128016": {
+ "content": "<ļ½placeāholderānoā16ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128017": {
+ "content": "<ļ½placeāholderānoā17ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128018": {
+ "content": "<ļ½placeāholderānoā18ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128019": {
+ "content": "<ļ½placeāholderānoā19ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128020": {
+ "content": "<ļ½placeāholderānoā20ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128021": {
+ "content": "<ļ½placeāholderānoā21ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128022": {
+ "content": "<ļ½placeāholderānoā22ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128023": {
+ "content": "<ļ½placeāholderānoā23ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128024": {
+ "content": "<ļ½placeāholderānoā24ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128025": {
+ "content": "<ļ½placeāholderānoā25ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128026": {
+ "content": "<ļ½placeāholderānoā26ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128027": {
+ "content": "<ļ½placeāholderānoā27ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128028": {
+ "content": "<ļ½placeāholderānoā28ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128029": {
+ "content": "<ļ½placeāholderānoā29ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128030": {
+ "content": "<ļ½placeāholderānoā30ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128031": {
+ "content": "<ļ½placeāholderānoā31ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128032": {
+ "content": "<ļ½placeāholderānoā32ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128033": {
+ "content": "<ļ½placeāholderānoā33ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128034": {
+ "content": "<ļ½placeāholderānoā34ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128035": {
+ "content": "<ļ½placeāholderānoā35ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128036": {
+ "content": "<ļ½placeāholderānoā36ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128037": {
+ "content": "<ļ½placeāholderānoā37ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128038": {
+ "content": "<ļ½placeāholderānoā38ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128039": {
+ "content": "<ļ½placeāholderānoā39ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128040": {
+ "content": "<ļ½placeāholderānoā40ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128041": {
+ "content": "<ļ½placeāholderānoā41ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128042": {
+ "content": "<ļ½placeāholderānoā42ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128043": {
+ "content": "<ļ½placeāholderānoā43ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128044": {
+ "content": "<ļ½placeāholderānoā44ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128045": {
+ "content": "<ļ½placeāholderānoā45ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128046": {
+ "content": "<ļ½placeāholderānoā46ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128047": {
+ "content": "<ļ½placeāholderānoā47ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128048": {
+ "content": "<ļ½placeāholderānoā48ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128049": {
+ "content": "<ļ½placeāholderānoā49ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128050": {
+ "content": "<ļ½placeāholderānoā50ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128051": {
+ "content": "<ļ½placeāholderānoā51ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128052": {
+ "content": "<ļ½placeāholderānoā52ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128053": {
+ "content": "<ļ½placeāholderānoā53ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128054": {
+ "content": "<ļ½placeāholderānoā54ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128055": {
+ "content": "<ļ½placeāholderānoā55ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128056": {
+ "content": "<ļ½placeāholderānoā56ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128057": {
+ "content": "<ļ½placeāholderānoā57ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128058": {
+ "content": "<ļ½placeāholderānoā58ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128059": {
+ "content": "<ļ½placeāholderānoā59ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128060": {
+ "content": "<ļ½placeāholderānoā60ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128061": {
+ "content": "<ļ½placeāholderānoā61ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128062": {
+ "content": "<ļ½placeāholderānoā62ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128063": {
+ "content": "<ļ½placeāholderānoā63ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128064": {
+ "content": "<ļ½placeāholderānoā64ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128065": {
+ "content": "<ļ½placeāholderānoā65ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128066": {
+ "content": "<ļ½placeāholderānoā66ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128067": {
+ "content": "<ļ½placeāholderānoā67ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128068": {
+ "content": "<ļ½placeāholderānoā68ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128069": {
+ "content": "<ļ½placeāholderānoā69ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128070": {
+ "content": "<ļ½placeāholderānoā70ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128071": {
+ "content": "<ļ½placeāholderānoā71ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128072": {
+ "content": "<ļ½placeāholderānoā72ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128073": {
+ "content": "<ļ½placeāholderānoā73ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128074": {
+ "content": "<ļ½placeāholderānoā74ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128075": {
+ "content": "<ļ½placeāholderānoā75ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128076": {
+ "content": "<ļ½placeāholderānoā76ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128077": {
+ "content": "<ļ½placeāholderānoā77ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128078": {
+ "content": "<ļ½placeāholderānoā78ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128079": {
+ "content": "<ļ½placeāholderānoā79ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128080": {
+ "content": "<ļ½placeāholderānoā80ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128081": {
+ "content": "<ļ½placeāholderānoā81ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128082": {
+ "content": "<ļ½placeāholderānoā82ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128083": {
+ "content": "<ļ½placeāholderānoā83ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128084": {
+ "content": "<ļ½placeāholderānoā84ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128085": {
+ "content": "<ļ½placeāholderānoā85ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128086": {
+ "content": "<ļ½placeāholderānoā86ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128087": {
+ "content": "<ļ½placeāholderānoā87ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128088": {
+ "content": "<ļ½placeāholderānoā88ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128089": {
+ "content": "<ļ½placeāholderānoā89ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128090": {
+ "content": "<ļ½placeāholderānoā90ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128091": {
+ "content": "<ļ½placeāholderānoā91ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128092": {
+ "content": "<ļ½placeāholderānoā92ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128093": {
+ "content": "<ļ½placeāholderānoā93ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128094": {
+ "content": "<ļ½placeāholderānoā94ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128095": {
+ "content": "<ļ½placeāholderānoā95ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128096": {
+ "content": "<ļ½placeāholderānoā96ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128097": {
+ "content": "<ļ½placeāholderānoā97ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128098": {
+ "content": "<ļ½placeāholderānoā98ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128099": {
+ "content": "<ļ½placeāholderānoā99ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128100": {
+ "content": "<ļ½placeāholderānoā100ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128101": {
+ "content": "<ļ½placeāholderānoā101ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128102": {
+ "content": "<ļ½placeāholderānoā102ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128103": {
+ "content": "<ļ½placeāholderānoā103ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128104": {
+ "content": "<ļ½placeāholderānoā104ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128105": {
+ "content": "<ļ½placeāholderānoā105ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128106": {
+ "content": "<ļ½placeāholderānoā106ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128107": {
+ "content": "<ļ½placeāholderānoā107ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128108": {
+ "content": "<ļ½placeāholderānoā108ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128109": {
+ "content": "<ļ½placeāholderānoā109ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128110": {
+ "content": "<ļ½placeāholderānoā110ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128111": {
+ "content": "<ļ½placeāholderānoā111ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128112": {
+ "content": "<ļ½placeāholderānoā112ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128113": {
+ "content": "<ļ½placeāholderānoā113ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128114": {
+ "content": "<ļ½placeāholderānoā114ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128115": {
+ "content": "<ļ½placeāholderānoā115ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128116": {
+ "content": "<ļ½placeāholderānoā116ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128117": {
+ "content": "<ļ½placeāholderānoā117ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128118": {
+ "content": "<ļ½placeāholderānoā118ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128119": {
+ "content": "<ļ½placeāholderānoā119ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128120": {
+ "content": "<ļ½placeāholderānoā120ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128121": {
+ "content": "<ļ½placeāholderānoā121ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128122": {
+ "content": "<ļ½placeāholderānoā122ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128123": {
+ "content": "<ļ½placeāholderānoā123ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128124": {
+ "content": "<ļ½placeāholderānoā124ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128125": {
+ "content": "<ļ½placeāholderānoā125ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128126": {
+ "content": "<ļ½placeāholderānoā126ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128127": {
+ "content": "<ļ½placeāholderānoā127ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128128": {
+ "content": "<ļ½placeāholderānoā128ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128129": {
+ "content": "<ļ½placeāholderānoā129ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128130": {
+ "content": "<ļ½placeāholderānoā130ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128131": {
+ "content": "<ļ½placeāholderānoā131ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128132": {
+ "content": "<ļ½placeāholderānoā132ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128133": {
+ "content": "<ļ½placeāholderānoā133ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128134": {
+ "content": "<ļ½placeāholderānoā134ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128135": {
+ "content": "<ļ½placeāholderānoā135ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128136": {
+ "content": "<ļ½placeāholderānoā136ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128137": {
+ "content": "<ļ½placeāholderānoā137ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128138": {
+ "content": "<ļ½placeāholderānoā138ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128139": {
+ "content": "<ļ½placeāholderānoā139ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128140": {
+ "content": "<ļ½placeāholderānoā140ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128141": {
+ "content": "<ļ½placeāholderānoā141ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128142": {
+ "content": "<ļ½placeāholderānoā142ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128143": {
+ "content": "<ļ½placeāholderānoā143ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128144": {
+ "content": "<ļ½placeāholderānoā144ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128145": {
+ "content": "<ļ½placeāholderānoā145ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128146": {
+ "content": "<ļ½placeāholderānoā146ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128147": {
+ "content": "<ļ½placeāholderānoā147ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128148": {
+ "content": "<ļ½placeāholderānoā148ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128149": {
+ "content": "<ļ½placeāholderānoā149ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128150": {
+ "content": "<ļ½placeāholderānoā150ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128151": {
+ "content": "<ļ½placeāholderānoā151ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128152": {
+ "content": "<ļ½placeāholderānoā152ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128153": {
+ "content": "<ļ½placeāholderānoā153ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128154": {
+ "content": "<ļ½placeāholderānoā154ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128155": {
+ "content": "<ļ½placeāholderānoā155ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128156": {
+ "content": "<ļ½placeāholderānoā156ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128157": {
+ "content": "<ļ½placeāholderānoā157ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128158": {
+ "content": "<ļ½placeāholderānoā158ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128159": {
+ "content": "<ļ½placeāholderānoā159ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128160": {
+ "content": "<ļ½placeāholderānoā160ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128161": {
+ "content": "<ļ½placeāholderānoā161ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128162": {
+ "content": "<ļ½placeāholderānoā162ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128163": {
+ "content": "<ļ½placeāholderānoā163ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128164": {
+ "content": "<ļ½placeāholderānoā164ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128165": {
+ "content": "<ļ½placeāholderānoā165ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128166": {
+ "content": "<ļ½placeāholderānoā166ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128167": {
+ "content": "<ļ½placeāholderānoā167ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128168": {
+ "content": "<ļ½placeāholderānoā168ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128169": {
+ "content": "<ļ½placeāholderānoā169ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128170": {
+ "content": "<ļ½placeāholderānoā170ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128171": {
+ "content": "<ļ½placeāholderānoā171ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128172": {
+ "content": "<ļ½placeāholderānoā172ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128173": {
+ "content": "<ļ½placeāholderānoā173ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128174": {
+ "content": "<ļ½placeāholderānoā174ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128175": {
+ "content": "<ļ½placeāholderānoā175ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128176": {
+ "content": "<ļ½placeāholderānoā176ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128177": {
+ "content": "<ļ½placeāholderānoā177ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128178": {
+ "content": "<ļ½placeāholderānoā178ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128179": {
+ "content": "<ļ½placeāholderānoā179ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128180": {
+ "content": "<ļ½placeāholderānoā180ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128181": {
+ "content": "<ļ½placeāholderānoā181ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128182": {
+ "content": "<ļ½placeāholderānoā182ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128183": {
+ "content": "<ļ½placeāholderānoā183ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128184": {
+ "content": "<ļ½placeāholderānoā184ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128185": {
+ "content": "<ļ½placeāholderānoā185ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128186": {
+ "content": "<ļ½placeāholderānoā186ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128187": {
+ "content": "<ļ½placeāholderānoā187ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128188": {
+ "content": "<ļ½placeāholderānoā188ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128189": {
+ "content": "<ļ½placeāholderānoā189ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128190": {
+ "content": "<ļ½placeāholderānoā190ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128191": {
+ "content": "<ļ½placeāholderānoā191ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128192": {
+ "content": "<ļ½placeāholderānoā192ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128193": {
+ "content": "<ļ½placeāholderānoā193ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128194": {
+ "content": "<ļ½placeāholderānoā194ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128195": {
+ "content": "<ļ½placeāholderānoā195ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128196": {
+ "content": "<ļ½placeāholderānoā196ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128197": {
+ "content": "<ļ½placeāholderānoā197ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128198": {
+ "content": "<ļ½placeāholderānoā198ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128199": {
+ "content": "<ļ½placeāholderānoā199ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128200": {
+ "content": "<ļ½placeāholderānoā200ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128201": {
+ "content": "<ļ½placeāholderānoā201ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128202": {
+ "content": "<ļ½placeāholderānoā202ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128203": {
+ "content": "<ļ½placeāholderānoā203ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128204": {
+ "content": "<ļ½placeāholderānoā204ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128205": {
+ "content": "<ļ½placeāholderānoā205ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128206": {
+ "content": "<ļ½placeāholderānoā206ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128207": {
+ "content": "<ļ½placeāholderānoā207ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128208": {
+ "content": "<ļ½placeāholderānoā208ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128209": {
+ "content": "<ļ½placeāholderānoā209ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128210": {
+ "content": "<ļ½placeāholderānoā210ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128211": {
+ "content": "<ļ½placeāholderānoā211ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128212": {
+ "content": "<ļ½placeāholderānoā212ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128213": {
+ "content": "<ļ½placeāholderānoā213ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128214": {
+ "content": "<ļ½placeāholderānoā214ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128215": {
+ "content": "<ļ½placeāholderānoā215ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128216": {
+ "content": "<ļ½placeāholderānoā216ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128217": {
+ "content": "<ļ½placeāholderānoā217ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128218": {
+ "content": "<ļ½placeāholderānoā218ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128219": {
+ "content": "<ļ½placeāholderānoā219ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128220": {
+ "content": "<ļ½placeāholderānoā220ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128221": {
+ "content": "<ļ½placeāholderānoā221ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128222": {
+ "content": "<ļ½placeāholderānoā222ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128223": {
+ "content": "<ļ½placeāholderānoā223ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128224": {
+ "content": "<ļ½placeāholderānoā224ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128225": {
+ "content": "<ļ½placeāholderānoā225ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128226": {
+ "content": "<ļ½placeāholderānoā226ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128227": {
+ "content": "<ļ½placeāholderānoā227ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128228": {
+ "content": "<ļ½placeāholderānoā228ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128229": {
+ "content": "<ļ½placeāholderānoā229ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128230": {
+ "content": "<ļ½placeāholderānoā230ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128231": {
+ "content": "<ļ½placeāholderānoā231ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128232": {
+ "content": "<ļ½placeāholderānoā232ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128233": {
+ "content": "<ļ½placeāholderānoā233ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128234": {
+ "content": "<ļ½placeāholderānoā234ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128235": {
+ "content": "<ļ½placeāholderānoā235ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128236": {
+ "content": "<ļ½placeāholderānoā236ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128237": {
+ "content": "<ļ½placeāholderānoā237ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128238": {
+ "content": "<ļ½placeāholderānoā238ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128239": {
+ "content": "<ļ½placeāholderānoā239ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128240": {
+ "content": "<ļ½placeāholderānoā240ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128241": {
+ "content": "<ļ½placeāholderānoā241ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128242": {
+ "content": "<ļ½placeāholderānoā242ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128243": {
+ "content": "<ļ½placeāholderānoā243ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128244": {
+ "content": "<ļ½placeāholderānoā244ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128245": {
+ "content": "<ļ½placeāholderānoā245ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128246": {
+ "content": "<ļ½placeāholderānoā246ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128247": {
+ "content": "<ļ½placeāholderānoā247ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128248": {
+ "content": "<ļ½placeāholderānoā248ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128249": {
+ "content": "<ļ½placeāholderānoā249ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128250": {
+ "content": "<ļ½placeāholderānoā250ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128251": {
+ "content": "<ļ½placeāholderānoā251ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128252": {
+ "content": "<ļ½placeāholderānoā252ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128253": {
+ "content": "<ļ½placeāholderānoā253ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128254": {
+ "content": "<ļ½placeāholderānoā254ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128255": {
+ "content": "<ļ½placeāholderānoā255ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128256": {
+ "content": "<ļ½placeāholderānoā256ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128257": {
+ "content": "<ļ½placeāholderānoā257ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128258": {
+ "content": "<ļ½placeāholderānoā258ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128259": {
+ "content": "<ļ½placeāholderānoā259ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128260": {
+ "content": "<ļ½placeāholderānoā260ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128261": {
+ "content": "<ļ½placeāholderānoā261ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128262": {
+ "content": "<ļ½placeāholderānoā262ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128263": {
+ "content": "<ļ½placeāholderānoā263ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128264": {
+ "content": "<ļ½placeāholderānoā264ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128265": {
+ "content": "<ļ½placeāholderānoā265ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128266": {
+ "content": "<ļ½placeāholderānoā266ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128267": {
+ "content": "<ļ½placeāholderānoā267ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128268": {
+ "content": "<ļ½placeāholderānoā268ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128269": {
+ "content": "<ļ½placeāholderānoā269ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128270": {
+ "content": "<ļ½placeāholderānoā270ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128271": {
+ "content": "<ļ½placeāholderānoā271ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128272": {
+ "content": "<ļ½placeāholderānoā272ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128273": {
+ "content": "<ļ½placeāholderānoā273ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128274": {
+ "content": "<ļ½placeāholderānoā274ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128275": {
+ "content": "<ļ½placeāholderānoā275ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128276": {
+ "content": "<ļ½placeāholderānoā276ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128277": {
+ "content": "<ļ½placeāholderānoā277ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128278": {
+ "content": "<ļ½placeāholderānoā278ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128279": {
+ "content": "<ļ½placeāholderānoā279ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128280": {
+ "content": "<ļ½placeāholderānoā280ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128281": {
+ "content": "<ļ½placeāholderānoā281ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128282": {
+ "content": "<ļ½placeāholderānoā282ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128283": {
+ "content": "<ļ½placeāholderānoā283ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128284": {
+ "content": "<ļ½placeāholderānoā284ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128285": {
+ "content": "<ļ½placeāholderānoā285ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128286": {
+ "content": "<ļ½placeāholderānoā286ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128287": {
+ "content": "<ļ½placeāholderānoā287ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128288": {
+ "content": "<ļ½placeāholderānoā288ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128289": {
+ "content": "<ļ½placeāholderānoā289ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128290": {
+ "content": "<ļ½placeāholderānoā290ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128291": {
+ "content": "<ļ½placeāholderānoā291ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128292": {
+ "content": "<ļ½placeāholderānoā292ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128293": {
+ "content": "<ļ½placeāholderānoā293ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128294": {
+ "content": "<ļ½placeāholderānoā294ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128295": {
+ "content": "<ļ½placeāholderānoā295ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128296": {
+ "content": "<ļ½placeāholderānoā296ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128297": {
+ "content": "<ļ½placeāholderānoā297ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128298": {
+ "content": "<ļ½placeāholderānoā298ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128299": {
+ "content": "<ļ½placeāholderānoā299ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128300": {
+ "content": "<ļ½placeāholderānoā300ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128301": {
+ "content": "<ļ½placeāholderānoā301ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128302": {
+ "content": "<ļ½placeāholderānoā302ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128303": {
+ "content": "<ļ½placeāholderānoā303ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128304": {
+ "content": "<ļ½placeāholderānoā304ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128305": {
+ "content": "<ļ½placeāholderānoā305ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128306": {
+ "content": "<ļ½placeāholderānoā306ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128307": {
+ "content": "<ļ½placeāholderānoā307ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128308": {
+ "content": "<ļ½placeāholderānoā308ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128309": {
+ "content": "<ļ½placeāholderānoā309ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128310": {
+ "content": "<ļ½placeāholderānoā310ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128311": {
+ "content": "<ļ½placeāholderānoā311ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128312": {
+ "content": "<ļ½placeāholderānoā312ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128313": {
+ "content": "<ļ½placeāholderānoā313ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128314": {
+ "content": "<ļ½placeāholderānoā314ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128315": {
+ "content": "<ļ½placeāholderānoā315ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128316": {
+ "content": "<ļ½placeāholderānoā316ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128317": {
+ "content": "<ļ½placeāholderānoā317ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128318": {
+ "content": "<ļ½placeāholderānoā318ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128319": {
+ "content": "<ļ½placeāholderānoā319ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128320": {
+ "content": "<ļ½placeāholderānoā320ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128321": {
+ "content": "<ļ½placeāholderānoā321ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128322": {
+ "content": "<ļ½placeāholderānoā322ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128323": {
+ "content": "<ļ½placeāholderānoā323ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128324": {
+ "content": "<ļ½placeāholderānoā324ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128325": {
+ "content": "<ļ½placeāholderānoā325ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128326": {
+ "content": "<ļ½placeāholderānoā326ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128327": {
+ "content": "<ļ½placeāholderānoā327ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128328": {
+ "content": "<ļ½placeāholderānoā328ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128329": {
+ "content": "<ļ½placeāholderānoā329ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128330": {
+ "content": "<ļ½placeāholderānoā330ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128331": {
+ "content": "<ļ½placeāholderānoā331ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128332": {
+ "content": "<ļ½placeāholderānoā332ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128333": {
+ "content": "<ļ½placeāholderānoā333ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128334": {
+ "content": "<ļ½placeāholderānoā334ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128335": {
+ "content": "<ļ½placeāholderānoā335ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128336": {
+ "content": "<ļ½placeāholderānoā336ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128337": {
+ "content": "<ļ½placeāholderānoā337ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128338": {
+ "content": "<ļ½placeāholderānoā338ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128339": {
+ "content": "<ļ½placeāholderānoā339ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128340": {
+ "content": "<ļ½placeāholderānoā340ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128341": {
+ "content": "<ļ½placeāholderānoā341ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128342": {
+ "content": "<ļ½placeāholderānoā342ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128343": {
+ "content": "<ļ½placeāholderānoā343ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128344": {
+ "content": "<ļ½placeāholderānoā344ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128345": {
+ "content": "<ļ½placeāholderānoā345ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128346": {
+ "content": "<ļ½placeāholderānoā346ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128347": {
+ "content": "<ļ½placeāholderānoā347ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128348": {
+ "content": "<ļ½placeāholderānoā348ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128349": {
+ "content": "<ļ½placeāholderānoā349ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128350": {
+ "content": "<ļ½placeāholderānoā350ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128351": {
+ "content": "<ļ½placeāholderānoā351ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128352": {
+ "content": "<ļ½placeāholderānoā352ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128353": {
+ "content": "<ļ½placeāholderānoā353ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128354": {
+ "content": "<ļ½placeāholderānoā354ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128355": {
+ "content": "<ļ½placeāholderānoā355ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128356": {
+ "content": "<ļ½placeāholderānoā356ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128357": {
+ "content": "<ļ½placeāholderānoā357ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128358": {
+ "content": "<ļ½placeāholderānoā358ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128359": {
+ "content": "<ļ½placeāholderānoā359ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128360": {
+ "content": "<ļ½placeāholderānoā360ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128361": {
+ "content": "<ļ½placeāholderānoā361ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128362": {
+ "content": "<ļ½placeāholderānoā362ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128363": {
+ "content": "<ļ½placeāholderānoā363ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128364": {
+ "content": "<ļ½placeāholderānoā364ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128365": {
+ "content": "<ļ½placeāholderānoā365ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128366": {
+ "content": "<ļ½placeāholderānoā366ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128367": {
+ "content": "<ļ½placeāholderānoā367ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128368": {
+ "content": "<ļ½placeāholderānoā368ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128369": {
+ "content": "<ļ½placeāholderānoā369ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128370": {
+ "content": "<ļ½placeāholderānoā370ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128371": {
+ "content": "<ļ½placeāholderānoā371ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128372": {
+ "content": "<ļ½placeāholderānoā372ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128373": {
+ "content": "<ļ½placeāholderānoā373ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128374": {
+ "content": "<ļ½placeāholderānoā374ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128375": {
+ "content": "<ļ½placeāholderānoā375ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128376": {
+ "content": "<ļ½placeāholderānoā376ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128377": {
+ "content": "<ļ½placeāholderānoā377ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128378": {
+ "content": "<ļ½placeāholderānoā378ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128379": {
+ "content": "<ļ½placeāholderānoā379ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128380": {
+ "content": "<ļ½placeāholderānoā380ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128381": {
+ "content": "<ļ½placeāholderānoā381ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128382": {
+ "content": "<ļ½placeāholderānoā382ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128383": {
+ "content": "<ļ½placeāholderānoā383ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128384": {
+ "content": "<ļ½placeāholderānoā384ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128385": {
+ "content": "<ļ½placeāholderānoā385ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128386": {
+ "content": "<ļ½placeāholderānoā386ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128387": {
+ "content": "<ļ½placeāholderānoā387ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128388": {
+ "content": "<ļ½placeāholderānoā388ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128389": {
+ "content": "<ļ½placeāholderānoā389ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128390": {
+ "content": "<ļ½placeāholderānoā390ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128391": {
+ "content": "<ļ½placeāholderānoā391ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128392": {
+ "content": "<ļ½placeāholderānoā392ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128393": {
+ "content": "<ļ½placeāholderānoā393ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128394": {
+ "content": "<ļ½placeāholderānoā394ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128395": {
+ "content": "<ļ½placeāholderānoā395ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128396": {
+ "content": "<ļ½placeāholderānoā396ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128397": {
+ "content": "<ļ½placeāholderānoā397ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128398": {
+ "content": "<ļ½placeāholderānoā398ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128399": {
+ "content": "<ļ½placeāholderānoā399ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128400": {
+ "content": "<ļ½placeāholderānoā400ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128401": {
+ "content": "<ļ½placeāholderānoā401ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128402": {
+ "content": "<ļ½placeāholderānoā402ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128403": {
+ "content": "<ļ½placeāholderānoā403ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128404": {
+ "content": "<ļ½placeāholderānoā404ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128405": {
+ "content": "<ļ½placeāholderānoā405ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128406": {
+ "content": "<ļ½placeāholderānoā406ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128407": {
+ "content": "<ļ½placeāholderānoā407ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128408": {
+ "content": "<ļ½placeāholderānoā408ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128409": {
+ "content": "<ļ½placeāholderānoā409ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128410": {
+ "content": "<ļ½placeāholderānoā410ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128411": {
+ "content": "<ļ½placeāholderānoā411ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128412": {
+ "content": "<ļ½placeāholderānoā412ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128413": {
+ "content": "<ļ½placeāholderānoā413ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128414": {
+ "content": "<ļ½placeāholderānoā414ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128415": {
+ "content": "<ļ½placeāholderānoā415ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128416": {
+ "content": "<ļ½placeāholderānoā416ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128417": {
+ "content": "<ļ½placeāholderānoā417ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128418": {
+ "content": "<ļ½placeāholderānoā418ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128419": {
+ "content": "<ļ½placeāholderānoā419ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128420": {
+ "content": "<ļ½placeāholderānoā420ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128421": {
+ "content": "<ļ½placeāholderānoā421ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128422": {
+ "content": "<ļ½placeāholderānoā422ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128423": {
+ "content": "<ļ½placeāholderānoā423ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128424": {
+ "content": "<ļ½placeāholderānoā424ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128425": {
+ "content": "<ļ½placeāholderānoā425ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128426": {
+ "content": "<ļ½placeāholderānoā426ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128427": {
+ "content": "<ļ½placeāholderānoā427ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128428": {
+ "content": "<ļ½placeāholderānoā428ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128429": {
+ "content": "<ļ½placeāholderānoā429ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128430": {
+ "content": "<ļ½placeāholderānoā430ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128431": {
+ "content": "<ļ½placeāholderānoā431ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128432": {
+ "content": "<ļ½placeāholderānoā432ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128433": {
+ "content": "<ļ½placeāholderānoā433ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128434": {
+ "content": "<ļ½placeāholderānoā434ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128435": {
+ "content": "<ļ½placeāholderānoā435ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128436": {
+ "content": "<ļ½placeāholderānoā436ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128437": {
+ "content": "<ļ½placeāholderānoā437ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128438": {
+ "content": "<ļ½placeāholderānoā438ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128439": {
+ "content": "<ļ½placeāholderānoā439ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128440": {
+ "content": "<ļ½placeāholderānoā440ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128441": {
+ "content": "<ļ½placeāholderānoā441ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128442": {
+ "content": "<ļ½placeāholderānoā442ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128443": {
+ "content": "<ļ½placeāholderānoā443ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128444": {
+ "content": "<ļ½placeāholderānoā444ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128445": {
+ "content": "<ļ½placeāholderānoā445ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128446": {
+ "content": "<ļ½placeāholderānoā446ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128447": {
+ "content": "<ļ½placeāholderānoā447ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128448": {
+ "content": "<ļ½placeāholderānoā448ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128449": {
+ "content": "<ļ½placeāholderānoā449ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128450": {
+ "content": "<ļ½placeāholderānoā450ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128451": {
+ "content": "<ļ½placeāholderānoā451ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128452": {
+ "content": "<ļ½placeāholderānoā452ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128453": {
+ "content": "<ļ½placeāholderānoā453ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128454": {
+ "content": "<ļ½placeāholderānoā454ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128455": {
+ "content": "<ļ½placeāholderānoā455ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128456": {
+ "content": "<ļ½placeāholderānoā456ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128457": {
+ "content": "<ļ½placeāholderānoā457ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128458": {
+ "content": "<ļ½placeāholderānoā458ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128459": {
+ "content": "<ļ½placeāholderānoā459ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128460": {
+ "content": "<ļ½placeāholderānoā460ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128461": {
+ "content": "<ļ½placeāholderānoā461ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128462": {
+ "content": "<ļ½placeāholderānoā462ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128463": {
+ "content": "<ļ½placeāholderānoā463ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128464": {
+ "content": "<ļ½placeāholderānoā464ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128465": {
+ "content": "<ļ½placeāholderānoā465ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128466": {
+ "content": "<ļ½placeāholderānoā466ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128467": {
+ "content": "<ļ½placeāholderānoā467ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128468": {
+ "content": "<ļ½placeāholderānoā468ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128469": {
+ "content": "<ļ½placeāholderānoā469ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128470": {
+ "content": "<ļ½placeāholderānoā470ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128471": {
+ "content": "<ļ½placeāholderānoā471ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128472": {
+ "content": "<ļ½placeāholderānoā472ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128473": {
+ "content": "<ļ½placeāholderānoā473ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128474": {
+ "content": "<ļ½placeāholderānoā474ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128475": {
+ "content": "<ļ½placeāholderānoā475ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128476": {
+ "content": "<ļ½placeāholderānoā476ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128477": {
+ "content": "<ļ½placeāholderānoā477ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128478": {
+ "content": "<ļ½placeāholderānoā478ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128479": {
+ "content": "<ļ½placeāholderānoā479ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128480": {
+ "content": "<ļ½placeāholderānoā480ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128481": {
+ "content": "<ļ½placeāholderānoā481ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128482": {
+ "content": "<ļ½placeāholderānoā482ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128483": {
+ "content": "<ļ½placeāholderānoā483ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128484": {
+ "content": "<ļ½placeāholderānoā484ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128485": {
+ "content": "<ļ½placeāholderānoā485ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128486": {
+ "content": "<ļ½placeāholderānoā486ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128487": {
+ "content": "<ļ½placeāholderānoā487ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128488": {
+ "content": "<ļ½placeāholderānoā488ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128489": {
+ "content": "<ļ½placeāholderānoā489ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128490": {
+ "content": "<ļ½placeāholderānoā490ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128491": {
+ "content": "<ļ½placeāholderānoā491ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128492": {
+ "content": "<ļ½placeāholderānoā492ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128493": {
+ "content": "<ļ½placeāholderānoā493ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128494": {
+ "content": "<ļ½placeāholderānoā494ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128495": {
+ "content": "<ļ½placeāholderānoā495ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128496": {
+ "content": "<ļ½placeāholderānoā496ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128497": {
+ "content": "<ļ½placeāholderānoā497ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128498": {
+ "content": "<ļ½placeāholderānoā498ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128499": {
+ "content": "<ļ½placeāholderānoā499ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128500": {
+ "content": "<ļ½placeāholderānoā500ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128501": {
+ "content": "<ļ½placeāholderānoā501ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128502": {
+ "content": "<ļ½placeāholderānoā502ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128503": {
+ "content": "<ļ½placeāholderānoā503ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128504": {
+ "content": "<ļ½placeāholderānoā504ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128505": {
+ "content": "<ļ½placeāholderānoā505ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128506": {
+ "content": "<ļ½placeāholderānoā506ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128507": {
+ "content": "<ļ½placeāholderānoā507ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128508": {
+ "content": "<ļ½placeāholderānoā508ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128509": {
+ "content": "<ļ½placeāholderānoā509ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128510": {
+ "content": "<ļ½placeāholderānoā510ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128511": {
+ "content": "<ļ½placeāholderānoā511ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128512": {
+ "content": "<ļ½placeāholderānoā512ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128513": {
+ "content": "<ļ½placeāholderānoā513ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128514": {
+ "content": "<ļ½placeāholderānoā514ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128515": {
+ "content": "<ļ½placeāholderānoā515ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128516": {
+ "content": "<ļ½placeāholderānoā516ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128517": {
+ "content": "<ļ½placeāholderānoā517ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128518": {
+ "content": "<ļ½placeāholderānoā518ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128519": {
+ "content": "<ļ½placeāholderānoā519ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128520": {
+ "content": "<ļ½placeāholderānoā520ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128521": {
+ "content": "<ļ½placeāholderānoā521ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128522": {
+ "content": "<ļ½placeāholderānoā522ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128523": {
+ "content": "<ļ½placeāholderānoā523ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128524": {
+ "content": "<ļ½placeāholderānoā524ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128525": {
+ "content": "<ļ½placeāholderānoā525ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128526": {
+ "content": "<ļ½placeāholderānoā526ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128527": {
+ "content": "<ļ½placeāholderānoā527ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128528": {
+ "content": "<ļ½placeāholderānoā528ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128529": {
+ "content": "<ļ½placeāholderānoā529ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128530": {
+ "content": "<ļ½placeāholderānoā530ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128531": {
+ "content": "<ļ½placeāholderānoā531ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128532": {
+ "content": "<ļ½placeāholderānoā532ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128533": {
+ "content": "<ļ½placeāholderānoā533ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128534": {
+ "content": "<ļ½placeāholderānoā534ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128535": {
+ "content": "<ļ½placeāholderānoā535ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128536": {
+ "content": "<ļ½placeāholderānoā536ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128537": {
+ "content": "<ļ½placeāholderānoā537ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128538": {
+ "content": "<ļ½placeāholderānoā538ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128539": {
+ "content": "<ļ½placeāholderānoā539ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128540": {
+ "content": "<ļ½placeāholderānoā540ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128541": {
+ "content": "<ļ½placeāholderānoā541ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128542": {
+ "content": "<ļ½placeāholderānoā542ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128543": {
+ "content": "<ļ½placeāholderānoā543ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128544": {
+ "content": "<ļ½placeāholderānoā544ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128545": {
+ "content": "<ļ½placeāholderānoā545ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128546": {
+ "content": "<ļ½placeāholderānoā546ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128547": {
+ "content": "<ļ½placeāholderānoā547ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128548": {
+ "content": "<ļ½placeāholderānoā548ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128549": {
+ "content": "<ļ½placeāholderānoā549ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128550": {
+ "content": "<ļ½placeāholderānoā550ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128551": {
+ "content": "<ļ½placeāholderānoā551ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128552": {
+ "content": "<ļ½placeāholderānoā552ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128553": {
+ "content": "<ļ½placeāholderānoā553ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128554": {
+ "content": "<ļ½placeāholderānoā554ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128555": {
+ "content": "<ļ½placeāholderānoā555ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128556": {
+ "content": "<ļ½placeāholderānoā556ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128557": {
+ "content": "<ļ½placeāholderānoā557ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128558": {
+ "content": "<ļ½placeāholderānoā558ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128559": {
+ "content": "<ļ½placeāholderānoā559ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128560": {
+ "content": "<ļ½placeāholderānoā560ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128561": {
+ "content": "<ļ½placeāholderānoā561ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128562": {
+ "content": "<ļ½placeāholderānoā562ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128563": {
+ "content": "<ļ½placeāholderānoā563ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128564": {
+ "content": "<ļ½placeāholderānoā564ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128565": {
+ "content": "<ļ½placeāholderānoā565ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128566": {
+ "content": "<ļ½placeāholderānoā566ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128567": {
+ "content": "<ļ½placeāholderānoā567ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128568": {
+ "content": "<ļ½placeāholderānoā568ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128569": {
+ "content": "<ļ½placeāholderānoā569ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128570": {
+ "content": "<ļ½placeāholderānoā570ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128571": {
+ "content": "<ļ½placeāholderānoā571ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128572": {
+ "content": "<ļ½placeāholderānoā572ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128573": {
+ "content": "<ļ½placeāholderānoā573ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128574": {
+ "content": "<ļ½placeāholderānoā574ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128575": {
+ "content": "<ļ½placeāholderānoā575ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128576": {
+ "content": "<ļ½placeāholderānoā576ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128577": {
+ "content": "<ļ½placeāholderānoā577ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128578": {
+ "content": "<ļ½placeāholderānoā578ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128579": {
+ "content": "<ļ½placeāholderānoā579ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128580": {
+ "content": "<ļ½placeāholderānoā580ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128581": {
+ "content": "<ļ½placeāholderānoā581ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128582": {
+ "content": "<ļ½placeāholderānoā582ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128583": {
+ "content": "<ļ½placeāholderānoā583ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128584": {
+ "content": "<ļ½placeāholderānoā584ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128585": {
+ "content": "<ļ½placeāholderānoā585ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128586": {
+ "content": "<ļ½placeāholderānoā586ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128587": {
+ "content": "<ļ½placeāholderānoā587ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128588": {
+ "content": "<ļ½placeāholderānoā588ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128589": {
+ "content": "<ļ½placeāholderānoā589ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128590": {
+ "content": "<ļ½placeāholderānoā590ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128591": {
+ "content": "<ļ½placeāholderānoā591ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128592": {
+ "content": "<ļ½placeāholderānoā592ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128593": {
+ "content": "<ļ½placeāholderānoā593ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128594": {
+ "content": "<ļ½placeāholderānoā594ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128595": {
+ "content": "<ļ½placeāholderānoā595ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128596": {
+ "content": "<ļ½placeāholderānoā596ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128597": {
+ "content": "<ļ½placeāholderānoā597ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128598": {
+ "content": "<ļ½placeāholderānoā598ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128599": {
+ "content": "<ļ½placeāholderānoā599ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128600": {
+ "content": "<ļ½placeāholderānoā600ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128601": {
+ "content": "<ļ½placeāholderānoā601ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128602": {
+ "content": "<ļ½placeāholderānoā602ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128603": {
+ "content": "<ļ½placeāholderānoā603ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128604": {
+ "content": "<ļ½placeāholderānoā604ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128605": {
+ "content": "<ļ½placeāholderānoā605ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128606": {
+ "content": "<ļ½placeāholderānoā606ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128607": {
+ "content": "<ļ½placeāholderānoā607ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128608": {
+ "content": "<ļ½placeāholderānoā608ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128609": {
+ "content": "<ļ½placeāholderānoā609ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128610": {
+ "content": "<ļ½placeāholderānoā610ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128611": {
+ "content": "<ļ½placeāholderānoā611ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128612": {
+ "content": "<ļ½placeāholderānoā612ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128613": {
+ "content": "<ļ½placeāholderānoā613ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128614": {
+ "content": "<ļ½placeāholderānoā614ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128615": {
+ "content": "<ļ½placeāholderānoā615ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128616": {
+ "content": "<ļ½placeāholderānoā616ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128617": {
+ "content": "<ļ½placeāholderānoā617ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128618": {
+ "content": "<ļ½placeāholderānoā618ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128619": {
+ "content": "<ļ½placeāholderānoā619ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128620": {
+ "content": "<ļ½placeāholderānoā620ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128621": {
+ "content": "<ļ½placeāholderānoā621ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128622": {
+ "content": "<ļ½placeāholderānoā622ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128623": {
+ "content": "<ļ½placeāholderānoā623ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128624": {
+ "content": "<ļ½placeāholderānoā624ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128625": {
+ "content": "<ļ½placeāholderānoā625ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128626": {
+ "content": "<ļ½placeāholderānoā626ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128627": {
+ "content": "<ļ½placeāholderānoā627ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128628": {
+ "content": "<ļ½placeāholderānoā628ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128629": {
+ "content": "<ļ½placeāholderānoā629ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128630": {
+ "content": "<ļ½placeāholderānoā630ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128631": {
+ "content": "<ļ½placeāholderānoā631ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128632": {
+ "content": "<ļ½placeāholderānoā632ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128633": {
+ "content": "<ļ½placeāholderānoā633ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128634": {
+ "content": "<ļ½placeāholderānoā634ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128635": {
+ "content": "<ļ½placeāholderānoā635ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128636": {
+ "content": "<ļ½placeāholderānoā636ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128637": {
+ "content": "<ļ½placeāholderānoā637ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128638": {
+ "content": "<ļ½placeāholderānoā638ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128639": {
+ "content": "<ļ½placeāholderānoā639ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128640": {
+ "content": "<ļ½placeāholderānoā640ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128641": {
+ "content": "<ļ½placeāholderānoā641ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128642": {
+ "content": "<ļ½placeāholderānoā642ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128643": {
+ "content": "<ļ½placeāholderānoā643ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128644": {
+ "content": "<ļ½placeāholderānoā644ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128645": {
+ "content": "<ļ½placeāholderānoā645ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128646": {
+ "content": "<ļ½placeāholderānoā646ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128647": {
+ "content": "<ļ½placeāholderānoā647ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128648": {
+ "content": "<ļ½placeāholderānoā648ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128649": {
+ "content": "<ļ½placeāholderānoā649ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128650": {
+ "content": "<ļ½placeāholderānoā650ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128651": {
+ "content": "<ļ½placeāholderānoā651ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128652": {
+ "content": "<ļ½placeāholderānoā652ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128653": {
+ "content": "<ļ½placeāholderānoā653ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128654": {
+ "content": "<ļ½placeāholderānoā654ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128655": {
+ "content": "<ļ½placeāholderānoā655ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128656": {
+ "content": "<ļ½placeāholderānoā656ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128657": {
+ "content": "<ļ½placeāholderānoā657ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128658": {
+ "content": "<ļ½placeāholderānoā658ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128659": {
+ "content": "<ļ½placeāholderānoā659ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128660": {
+ "content": "<ļ½placeāholderānoā660ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128661": {
+ "content": "<ļ½placeāholderānoā661ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128662": {
+ "content": "<ļ½placeāholderānoā662ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128663": {
+ "content": "<ļ½placeāholderānoā663ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128664": {
+ "content": "<ļ½placeāholderānoā664ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128665": {
+ "content": "<ļ½placeāholderānoā665ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128666": {
+ "content": "<ļ½placeāholderānoā666ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128667": {
+ "content": "<ļ½placeāholderānoā667ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128668": {
+ "content": "<ļ½placeāholderānoā668ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128669": {
+ "content": "<ļ½placeāholderānoā669ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128670": {
+ "content": "<ļ½placeāholderānoā670ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128671": {
+ "content": "<ļ½placeāholderānoā671ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128672": {
+ "content": "<ļ½placeāholderānoā672ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128673": {
+ "content": "<ļ½placeāholderānoā673ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128674": {
+ "content": "<ļ½placeāholderānoā674ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128675": {
+ "content": "<ļ½placeāholderānoā675ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128676": {
+ "content": "<ļ½placeāholderānoā676ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128677": {
+ "content": "<ļ½placeāholderānoā677ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128678": {
+ "content": "<ļ½placeāholderānoā678ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128679": {
+ "content": "<ļ½placeāholderānoā679ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128680": {
+ "content": "<ļ½placeāholderānoā680ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128681": {
+ "content": "<ļ½placeāholderānoā681ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128682": {
+ "content": "<ļ½placeāholderānoā682ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128683": {
+ "content": "<ļ½placeāholderānoā683ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128684": {
+ "content": "<ļ½placeāholderānoā684ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128685": {
+ "content": "<ļ½placeāholderānoā685ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128686": {
+ "content": "<ļ½placeāholderānoā686ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128687": {
+ "content": "<ļ½placeāholderānoā687ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128688": {
+ "content": "<ļ½placeāholderānoā688ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128689": {
+ "content": "<ļ½placeāholderānoā689ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128690": {
+ "content": "<ļ½placeāholderānoā690ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128691": {
+ "content": "<ļ½placeāholderānoā691ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128692": {
+ "content": "<ļ½placeāholderānoā692ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128693": {
+ "content": "<ļ½placeāholderānoā693ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128694": {
+ "content": "<ļ½placeāholderānoā694ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128695": {
+ "content": "<ļ½placeāholderānoā695ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128696": {
+ "content": "<ļ½placeāholderānoā696ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128697": {
+ "content": "<ļ½placeāholderānoā697ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128698": {
+ "content": "<ļ½placeāholderānoā698ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128699": {
+ "content": "<ļ½placeāholderānoā699ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128700": {
+ "content": "<ļ½placeāholderānoā700ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128701": {
+ "content": "<ļ½placeāholderānoā701ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128702": {
+ "content": "<ļ½placeāholderānoā702ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128703": {
+ "content": "<ļ½placeāholderānoā703ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128704": {
+ "content": "<ļ½placeāholderānoā704ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128705": {
+ "content": "<ļ½placeāholderānoā705ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128706": {
+ "content": "<ļ½placeāholderānoā706ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128707": {
+ "content": "<ļ½placeāholderānoā707ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128708": {
+ "content": "<ļ½placeāholderānoā708ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128709": {
+ "content": "<ļ½placeāholderānoā709ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128710": {
+ "content": "<ļ½placeāholderānoā710ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128711": {
+ "content": "<ļ½placeāholderānoā711ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128712": {
+ "content": "<ļ½placeāholderānoā712ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128713": {
+ "content": "<ļ½placeāholderānoā713ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128714": {
+ "content": "<ļ½placeāholderānoā714ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128715": {
+ "content": "<ļ½placeāholderānoā715ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128716": {
+ "content": "<ļ½placeāholderānoā716ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128717": {
+ "content": "<ļ½placeāholderānoā717ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128718": {
+ "content": "<ļ½placeāholderānoā718ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128719": {
+ "content": "<ļ½placeāholderānoā719ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128720": {
+ "content": "<ļ½placeāholderānoā720ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128721": {
+ "content": "<ļ½placeāholderānoā721ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128722": {
+ "content": "<ļ½placeāholderānoā722ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128723": {
+ "content": "<ļ½placeāholderānoā723ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128724": {
+ "content": "<ļ½placeāholderānoā724ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128725": {
+ "content": "<ļ½placeāholderānoā725ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128726": {
+ "content": "<ļ½placeāholderānoā726ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128727": {
+ "content": "<ļ½placeāholderānoā727ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128728": {
+ "content": "<ļ½placeāholderānoā728ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128729": {
+ "content": "<ļ½placeāholderānoā729ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128730": {
+ "content": "<ļ½placeāholderānoā730ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128731": {
+ "content": "<ļ½placeāholderānoā731ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128732": {
+ "content": "<ļ½placeāholderānoā732ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128733": {
+ "content": "<ļ½placeāholderānoā733ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128734": {
+ "content": "<ļ½placeāholderānoā734ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128735": {
+ "content": "<ļ½placeāholderānoā735ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128736": {
+ "content": "<ļ½placeāholderānoā736ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128737": {
+ "content": "<ļ½placeāholderānoā737ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128738": {
+ "content": "<ļ½placeāholderānoā738ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128739": {
+ "content": "<ļ½placeāholderānoā739ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128740": {
+ "content": "<ļ½placeāholderānoā740ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128741": {
+ "content": "<ļ½placeāholderānoā741ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128742": {
+ "content": "<ļ½placeāholderānoā742ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128743": {
+ "content": "<ļ½placeāholderānoā743ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128744": {
+ "content": "<ļ½placeāholderānoā744ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128745": {
+ "content": "<ļ½placeāholderānoā745ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128746": {
+ "content": "<ļ½placeāholderānoā746ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128747": {
+ "content": "<ļ½placeāholderānoā747ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128748": {
+ "content": "<ļ½placeāholderānoā748ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128749": {
+ "content": "<ļ½placeāholderānoā749ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128750": {
+ "content": "<ļ½placeāholderānoā750ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128751": {
+ "content": "<ļ½placeāholderānoā751ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128752": {
+ "content": "<ļ½placeāholderānoā752ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128753": {
+ "content": "<ļ½placeāholderānoā753ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128754": {
+ "content": "<ļ½placeāholderānoā754ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128755": {
+ "content": "<ļ½placeāholderānoā755ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128756": {
+ "content": "<ļ½placeāholderānoā756ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128757": {
+ "content": "<ļ½placeāholderānoā757ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128758": {
+ "content": "<ļ½placeāholderānoā758ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128759": {
+ "content": "<ļ½placeāholderānoā759ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128760": {
+ "content": "<ļ½placeāholderānoā760ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128761": {
+ "content": "<ļ½placeāholderānoā761ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128762": {
+ "content": "<ļ½placeāholderānoā762ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128763": {
+ "content": "<ļ½placeāholderānoā763ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128764": {
+ "content": "<ļ½placeāholderānoā764ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128765": {
+ "content": "<ļ½placeāholderānoā765ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128766": {
+ "content": "<ļ½placeāholderānoā766ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128767": {
+ "content": "<ļ½placeāholderānoā767ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128768": {
+ "content": "<ļ½placeāholderānoā768ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128769": {
+ "content": "<ļ½placeāholderānoā769ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128770": {
+ "content": "<ļ½placeāholderānoā770ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128771": {
+ "content": "<ļ½placeāholderānoā771ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128772": {
+ "content": "<ļ½placeāholderānoā772ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128773": {
+ "content": "<ļ½placeāholderānoā773ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128774": {
+ "content": "<ļ½placeāholderānoā774ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128775": {
+ "content": "<ļ½placeāholderānoā775ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128776": {
+ "content": "<ļ½placeāholderānoā776ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128777": {
+ "content": "<ļ½placeāholderānoā777ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128778": {
+ "content": "<ļ½placeāholderānoā778ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128779": {
+ "content": "<ļ½placeāholderānoā779ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128780": {
+ "content": "<ļ½placeāholderānoā780ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128781": {
+ "content": "<ļ½placeāholderānoā781ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128782": {
+ "content": "<ļ½placeāholderānoā782ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128783": {
+ "content": "<|BOT|>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128784": {
+ "content": "<ļ½placeāholderānoā784ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128785": {
+ "content": "<ļ½placeāholderānoā785ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128786": {
+ "content": "<ļ½placeāholderānoā786ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128787": {
+ "content": "<ļ½placeāholderānoā787ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128788": {
+ "content": "<ļ½placeāholderānoā788ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128789": {
+ "content": "<ļ½placeāholderānoā789ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128790": {
+ "content": "<ļ½placeāholderānoā790ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128791": {
+ "content": "<ļ½placeāholderānoā791ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128792": {
+ "content": "<ļ½placeāholderānoā792ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128793": {
+ "content": "<ļ½placeāholderānoā793ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128794": {
+ "content": "<ļ½placeāholderānoā794ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128795": {
+ "content": "<ļ½placeāholderānoā795ļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128796": {
+ "content": "<ļ½begināofāmaskļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128797": {
+ "content": "<ļ½endāofāmaskļ½>",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128798": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128799": {
+ "content": "",
+ "lstrip": false,
+ "normalized": false,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128800": {
+ "content": "<ļ½fimāholeļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128801": {
+ "content": "<ļ½fimābeginļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128802": {
+ "content": "<ļ½fimāendļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128803": {
+ "content": "<ļ½Userļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128804": {
+ "content": "<ļ½Assistantļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128805": {
+ "content": "<|EOT|>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": true
+ },
+ "128806": {
+ "content": "<ļ½toolācallsābeginļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128807": {
+ "content": "<ļ½toolācallsāendļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128808": {
+ "content": "<ļ½toolācallābeginļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128809": {
+ "content": "<ļ½toolācallāendļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128810": {
+ "content": "<ļ½toolāoutputsābeginļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128811": {
+ "content": "<ļ½toolāoutputsāendļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128812": {
+ "content": "<ļ½toolāoutputābeginļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128813": {
+ "content": "<ļ½toolāoutputāendļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ },
+ "128814": {
+ "content": "<ļ½toolāsepļ½>",
+ "lstrip": false,
+ "normalized": true,
+ "rstrip": false,
+ "single_word": false,
+ "special": false
+ }
+ },
+ "bos_token": "<ļ½begināofāsentenceļ½>",
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "extra_special_tokens": {},
+ "legacy": true,
+ "model_max_length": 131072,
+ "pad_token": "<ļ½endāofāsentenceļ½>",
+ "sp_model_kwargs": {},
+ "tokenizer_class": "LlamaTokenizerFast",
+ "unk_token": null,
+ "use_default_system_prompt": false
+}