OwOOwO commited on
Commit
0aef475
·
verified ·
1 Parent(s): 486555d

Add files using upload-large-folder tool

Browse files
Files changed (46) hide show
  1. .gitattributes +7 -0
  2. Dockerfile +48 -0
  3. README.md +13 -0
  4. assistant_female_voice.wav +3 -0
  5. attention_mask_research.md +186 -0
  6. compare_generation.py +129 -0
  7. hotkey.txt +1 -0
  8. models/Llama-3.2-1B-Instruct/.gitattributes +35 -0
  9. models/Llama-3.2-1B-Instruct/config.json +39 -0
  10. models/Llama-3.2-1B-Instruct/generation_config.json +12 -0
  11. models/Llama-3.2-1B-Instruct/model-00001-of-00002.safetensors +3 -0
  12. models/Llama-3.2-1B-Instruct/model-00002-of-00002.safetensors +3 -0
  13. models/Llama-3.2-1B-Instruct/model.safetensors.index.json +261 -0
  14. models/Llama-3.2-1B-Instruct/special_tokens_map.json +16 -0
  15. models/Llama-3.2-1B-Instruct/tokenizer.json +3 -0
  16. models/Llama-3.2-1B-Instruct/tokenizer_config.json +2063 -0
  17. models/dsp/config.json +31 -0
  18. models/dsp/weights_24khz_1.5kbps_v1.0.pth +3 -0
  19. models/dsp/weights_24khz_3kbps_v1.0.pth +3 -0
  20. models/lm/config.json +38 -0
  21. models/lm/generation_config.json +11 -0
  22. models/lm/model.safetensors +3 -0
  23. models/lm/special_tokens_map.json +23 -0
  24. models/lm/tokenizer.json +3 -0
  25. models/lm/tokenizer_config.json +2066 -0
  26. models/v10/config.json +36 -0
  27. models/v10/generation_config.json +13 -0
  28. models/v10/model.safetensors +3 -0
  29. models/v10/special_tokens_map.json +0 -0
  30. models/v10/tokenizer.json +3 -0
  31. models/v10/tokenizer_config.json +0 -0
  32. models/wpt/wpt.pt +3 -0
  33. module.py +3 -0
  34. pyarmor_runtime_000000/__init__.py +2 -0
  35. pyarmor_runtime_000000/pyarmor_runtime.so +3 -0
  36. pyarmor_runtime_xoxoxo/__init__.py +2 -0
  37. pyarmor_runtime_xoxoxo/pyarmor_runtime.so +3 -0
  38. requirements.txt +16 -0
  39. server.py +3 -0
  40. service.py +4 -0
  41. smoe.py +3 -0
  42. spk_001.wav +3 -0
  43. test.ipynb +190 -0
  44. test_asr.py +23 -0
  45. tokenizer.py +3 -0
  46. utils.py +3 -0
.gitattributes CHANGED
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ assistant_female_voice.wav filter=lfs diff=lfs merge=lfs -text
37
+ models/Llama-3.2-1B-Instruct/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ models/lm/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ models/v10/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ pyarmor_runtime_000000/pyarmor_runtime.so filter=lfs diff=lfs merge=lfs -text
41
+ spk_001.wav filter=lfs diff=lfs merge=lfs -text
42
+ pyarmor_runtime_xoxoxo/pyarmor_runtime.so filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:12.3.2-cudnn9-devel-ubuntu22.04
2
+
3
+ # Set environment variables
4
+ ENV PYTHONUNBUFFERED=1 \
5
+ DEBIAN_FRONTEND=noninteractive \
6
+ CUDA_HOME=/usr/local/cuda \
7
+ PATH=/usr/local/cuda/bin:$PATH \
8
+ LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH \
9
+ NVIDIA_VISIBLE_DEVICES=all \
10
+ NVIDIA_DRIVER_CAPABILITIES=compute,utility \
11
+ HF_HOME=/app/models \
12
+ TRITON_CACHE_DIR=/tmp/triton_cache \
13
+ XDG_CACHE_HOME=/tmp \
14
+ NUMBA_CACHE_DIR=/tmp/numba_cache
15
+
16
+ # Install system dependencies
17
+ RUN apt-get update && apt-get install -y --no-install-recommends \
18
+ python3 \
19
+ python3-pip \
20
+ python3-dev \
21
+ build-essential \
22
+ git \
23
+ ffmpeg \
24
+ libsndfile1 \
25
+ curl \
26
+ && rm -rf /var/lib/apt/lists/*
27
+
28
+ # Upgrade pip and install build tools
29
+ RUN python3 -m pip install --upgrade pip setuptools wheel uv
30
+
31
+ WORKDIR /app
32
+
33
+ # Create Numba cache directory
34
+ RUN mkdir -p /tmp/numba_cache /tmp/triton_cache && \
35
+ chown nobody:nogroup /tmp/numba_cache /tmp/triton_cache && \
36
+ chmod 700 /tmp/numba_cache /tmp/triton_cache
37
+
38
+ COPY requirements.txt .
39
+
40
+ # Install other requirements
41
+ RUN python3 -m uv pip install -r requirements.txt --prerelease=allow
42
+ RUN python3 -m nltk.downloader punkt punkt_tab
43
+
44
+ COPY . .
45
+
46
+ EXPOSE 8000
47
+
48
+ CMD ["python3", "service.py"]
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - any-to-any
5
+ - omega
6
+ - omegalabs
7
+ - bittensor
8
+ - agi
9
+ ---
10
+
11
+ This is an Any-to-Any model checkpoint for the OMEGA Labs x Bittensor Any-to-Any subnet.
12
+
13
+ Check out the [git repo](https://github.com/omegalabsinc/omegalabs-anytoany-bittensor) and find OMEGA on X: [@omegalabsai](https://x.com/omegalabsai).
assistant_female_voice.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d712ba6de1d15d52eda96bdc043ce43eb5af4b4ac441b78b6fb0fdaf6683c7a
3
+ size 235244
attention_mask_research.md ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Attention Masks and Pad Tokens in Transformer Generation: Research Questions
2
+
3
+ ## Core Problem Statement
4
+
5
+ When running transformer models (specifically Llama-3.2-1B-Instruct) for text generation, we encounter warnings about missing attention masks and pad tokens, even for single input sequences. This leads to inconsistent generation outputs despite identical inputs.
6
+
7
+ ### Warning Messages Observed
8
+ ```
9
+ The attention mask and the pad token id were not set. As a consequence, you may observe unexpected behavior. Please pass your input's `attention_mask` to obtain reliable results.
10
+ Setting `pad_token_id` to `eos_token_id`:128001 for open-end generation.
11
+ The attention mask is not set and cannot be inferred from input because pad token is same as eos token.
12
+ ```
13
+
14
+ ## Key Research Questions
15
+
16
+ ### 1. Why do single inputs require attention masks?
17
+ **Initial Assumption**: Single sequences without padding shouldn't need attention masks.
18
+ **Observed Reality**: Even single inputs show different generation outputs when attention masks are missing.
19
+
20
+ ### 2. What is the relationship between pad tokens and attention masks?
21
+ **Question**: How do pad_token_id and attention_mask work together in the generation process?
22
+
23
+ ### 3. Why does pad_token_id = eos_token_id cause issues?
24
+ **Specific Issue**: When padding token equals end-of-sequence token, what ambiguity does this create?
25
+
26
+ ## Code Analysis
27
+
28
+ ### Current Implementation (Problematic)
29
+ ```python
30
+ def chat_current(system_prompt: str, user_prompt: str) -> str:
31
+ messages = [
32
+ {"role": "system", "content": system_prompt},
33
+ {"role": "user", "content": user_prompt},
34
+ ]
35
+
36
+ # Only returns input_ids tensor
37
+ input_ids = tok.apply_chat_template(
38
+ messages,
39
+ add_generation_prompt=True,
40
+ return_tensors="pt"
41
+ ).to(lm.device)
42
+
43
+ with torch.inference_mode():
44
+ output_ids = lm.generate(
45
+ input_ids, # Missing: attention_mask, pad_token_id
46
+ max_new_tokens=2048,
47
+ do_sample=True,
48
+ temperature=0.2,
49
+ repetition_penalty=1.1,
50
+ top_k=100,
51
+ top_p=0.95,
52
+ )
53
+
54
+ return tok.decode(output_ids[0][input_ids.shape[-1]:], skip_special_tokens=True)
55
+ ```
56
+
57
+ ### Fixed Implementation
58
+ ```python
59
+ def chat_fixed(system_prompt: str, user_prompt: str) -> str:
60
+ messages = [
61
+ {"role": "system", "content": system_prompt},
62
+ {"role": "user", "content": user_prompt},
63
+ ]
64
+
65
+ # Returns dictionary with input_ids AND attention_mask
66
+ inputs = tok.apply_chat_template(
67
+ messages,
68
+ add_generation_prompt=True,
69
+ return_tensors="pt",
70
+ return_dict=True # KEY CHANGE: Get both components
71
+ )
72
+
73
+ input_ids = inputs["input_ids"].to(lm.device)
74
+ attention_mask = inputs["attention_mask"].to(lm.device)
75
+
76
+ with torch.inference_mode():
77
+ output_ids = lm.generate(
78
+ input_ids=input_ids,
79
+ attention_mask=attention_mask, # Explicit attention guidance
80
+ pad_token_id=tok.eos_token_id, # Explicit pad token
81
+ max_new_tokens=2048,
82
+ do_sample=True,
83
+ temperature=0.2,
84
+ repetition_penalty=1.1,
85
+ top_k=100,
86
+ top_p=0.95,
87
+ )
88
+
89
+ return tok.decode(output_ids[0][input_ids.shape[-1]:], skip_special_tokens=True)
90
+ ```
91
+
92
+ ### Model and Tokenizer Setup
93
+ ```python
94
+ model_name = "models/Llama-3.2-1B-Instruct"
95
+ tok = AutoTokenizer.from_pretrained(model_name)
96
+ # Critical: Set pad token if not available
97
+ if tok.pad_token is None:
98
+ tok.pad_token = tok.eos_token
99
+
100
+ lm = AutoModelForCausalLM.from_pretrained(
101
+ model_name,
102
+ torch_dtype=torch.bfloat16,
103
+ device_map="cuda",
104
+ ).eval()
105
+ ```
106
+
107
+ ## Observed Behavioral Differences
108
+
109
+ ### Input Structure Analysis
110
+ ```python
111
+ # Single input contains multiple components:
112
+ messages = [
113
+ {"role": "system", "content": "You are a helpful assistant..."},
114
+ {"role": "user", "content": "What is the capital of France?"},
115
+ ]
116
+
117
+ # After apply_chat_template, becomes token sequence:
118
+ # [system_tokens, user_tokens, assistant_start_token]
119
+ ```
120
+
121
+ ## Technical Hypotheses for Investigation
122
+
123
+ ### Hypothesis 1: Internal Masking Ambiguity
124
+ When attention_mask is missing, the model cannot distinguish between:
125
+ - Real input tokens that should influence generation
126
+ - Structural tokens (system prompts, role markers)
127
+ - Token boundaries between different message roles
128
+
129
+ ### Hypothesis 2: EOS Token Dual Purpose Confusion
130
+ When `pad_token_id == eos_token_id`, the model faces ambiguity:
131
+ ```python
132
+ # Same token (128001) serves dual purposes:
133
+ # 1. End of sequence marker
134
+ # 2. Padding token for batch processing
135
+ # Model cannot infer which purpose applies in context
136
+ ```
137
+
138
+ ### Hypothesis 3: Autoregressive Generation Context Boundary Issues
139
+ During generation, model needs to know:
140
+ - Which input tokens provide valid context for next token prediction
141
+ - Where the "prompt" ends and "generation" begins
142
+ - How to weight attention across different input components
143
+
144
+ ## Research Objectives
145
+
146
+ ### Primary Questions
147
+ 1. **Mechanism Analysis**: How exactly does missing attention_mask affect the internal attention computation?
148
+ 2. **Consistency Impact**: Why do identical inputs produce different outputs without proper masking?
149
+ 3. **Single vs Batch Behavior**: What differences exist between single sequence and batched sequence processing?
150
+
151
+ ### Secondary Questions
152
+ 1. **Model-Specific Behavior**: Do different transformer architectures handle missing attention masks differently?
153
+ 2. **Generation Parameter Interaction**: How do attention mask issues interact with sampling parameters (temperature, top_p, etc.)?
154
+ 3. **Performance Impact**: What computational overhead does proper attention masking add?
155
+
156
+ ## Key Technical Areas for Deep Research
157
+
158
+ ### Attention Mechanism Internals
159
+ - How attention weights are computed with/without explicit masks
160
+ - Impact on multi-head attention distributions
161
+ - Interaction with causal masking in autoregressive models
162
+
163
+ ### Tokenizer Behavior
164
+ - How `apply_chat_template` constructs input sequences
165
+ - Default attention mask generation behavior
166
+ - Role of special tokens in attention computation
167
+
168
+ ### Generation Process
169
+ - How `model.generate()` handles missing parameters
170
+ - Internal assumptions and fallback behaviors
171
+ - Impact on sampling and beam search algorithms
172
+
173
+ ## Expected Research Outcomes
174
+
175
+ Understanding of:
176
+ 1. Exact mechanism causing output inconsistency
177
+ 2. Best practices for single sequence generation
178
+ 3. Relationship between attention masking and generation quality
179
+ 4. Guidelines for production transformer deployment
180
+
181
+ ## References for Deep Research
182
+
183
+ - Hugging Face Transformers documentation on attention masks
184
+ - Technical blogs on transformer attention mechanisms (2024)
185
+ - Community discussions on pad token vs attention mask differences
186
+ - Official model documentation for Llama architecture attention handling
compare_generation.py ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+
3
+ import torch
4
+ from transformers import AutoModelForCausalLM, AutoTokenizer
5
+
6
+ # Load model and tokenizer (same as server.py)
7
+ model_name = "models/Llama-3.2-1B-Instruct"
8
+ tok = AutoTokenizer.from_pretrained(model_name)
9
+ lm = AutoModelForCausalLM.from_pretrained(
10
+ model_name,
11
+ torch_dtype=torch.bfloat16,
12
+ device_map="cuda",
13
+ ).eval()
14
+
15
+ def chat_current(system_prompt: str, user_prompt: str) -> str:
16
+ """
17
+ Current implementation (same as server.py) - will show warnings
18
+ """
19
+ print("🔴 Running CURRENT implementation (with warnings)...")
20
+
21
+ messages = [
22
+ {"role": "system", "content": system_prompt},
23
+ {"role": "user", "content": user_prompt},
24
+ ]
25
+
26
+ input_ids = tok.apply_chat_template(
27
+ messages,
28
+ add_generation_prompt=True,
29
+ return_tensors="pt"
30
+ ).to(lm.device)
31
+
32
+ with torch.inference_mode():
33
+ output_ids = lm.generate(
34
+ input_ids, # No attention_mask, no pad_token_id
35
+ max_new_tokens=2048,
36
+ do_sample=True,
37
+ temperature=0.2,
38
+ repetition_penalty=1.1,
39
+ top_k=100,
40
+ top_p=0.95,
41
+ )
42
+
43
+ answer = tok.decode(
44
+ output_ids[0][input_ids.shape[-1]:],
45
+ skip_special_tokens=True,
46
+ clean_up_tokenization_spaces=True,
47
+ )
48
+ return answer.strip()
49
+
50
+
51
+ def chat_fixed(system_prompt: str, user_prompt: str) -> str:
52
+ """
53
+ Fixed implementation - proper attention mask and pad token
54
+ """
55
+ print("🟢 Running FIXED implementation (no warnings)...")
56
+
57
+ messages = [
58
+ {"role": "system", "content": system_prompt},
59
+ {"role": "user", "content": user_prompt},
60
+ ]
61
+
62
+ # Get both input_ids and attention_mask
63
+ inputs = tok.apply_chat_template(
64
+ messages,
65
+ add_generation_prompt=True,
66
+ return_tensors="pt",
67
+ return_dict=True # Returns dict with input_ids and attention_mask
68
+ )
69
+
70
+ # Move to device
71
+ input_ids = inputs["input_ids"].to(lm.device)
72
+ attention_mask = inputs["attention_mask"].to(lm.device)
73
+
74
+ with torch.inference_mode():
75
+ output_ids = lm.generate(
76
+ input_ids=input_ids,
77
+ attention_mask=attention_mask, # Proper attention mask
78
+ pad_token_id=tok.eos_token_id, # Explicit pad token
79
+ max_new_tokens=2048,
80
+ do_sample=True,
81
+ temperature=0.2,
82
+ repetition_penalty=1.1,
83
+ top_k=100,
84
+ top_p=0.95,
85
+ )
86
+
87
+ answer = tok.decode(
88
+ output_ids[0][input_ids.shape[-1]:],
89
+ skip_special_tokens=True,
90
+ clean_up_tokenization_spaces=True,
91
+ )
92
+ return answer.strip()
93
+
94
+
95
+ def compare_generations():
96
+ """Compare both implementations"""
97
+ system_prompt = "You are a helpful assistant who tries to help answer the user's question."
98
+ user_prompt = "Create a report on anxiety in work. How do I manage time and stress effectively?"
99
+
100
+ print("=" * 60)
101
+ print("COMPARING GENERATION METHODS")
102
+ print("=" * 60)
103
+ print(f"System: {system_prompt}")
104
+ print(f"User: {user_prompt}")
105
+ print("=" * 60)
106
+
107
+ # Test current implementation
108
+ print("\n" + "=" * 60)
109
+ current_output = chat_current(system_prompt, user_prompt)
110
+ print(f"CURRENT OUTPUT:\n{current_output}")
111
+
112
+ print("\n" + "=" * 60)
113
+ # Test fixed implementation
114
+ fixed_output = chat_fixed(system_prompt, user_prompt)
115
+ print(f"FIXED OUTPUT:\n{fixed_output}")
116
+
117
+ print("\n" + "=" * 60)
118
+ print("COMPARISON:")
119
+ print(f"Outputs are identical: {current_output == fixed_output}")
120
+ print(f"Current length: {len(current_output)} chars")
121
+ print(f"Fixed length: {len(fixed_output)} chars")
122
+
123
+
124
+ if __name__ == "__main__":
125
+ # Set pad token for the fixed version
126
+ if tok.pad_token is None:
127
+ tok.pad_token = tok.eos_token
128
+
129
+ compare_generations()
hotkey.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 5HB6nF6QQYUnUJkc8e8ssdtnYXiq3GRwakSTpDxsUZsc9dSX
models/Llama-3.2-1B-Instruct/.gitattributes ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
models/Llama-3.2-1B-Instruct/config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 128000,
8
+ "eos_token_id": [
9
+ 128001,
10
+ 128008,
11
+ 128009
12
+ ],
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 3072,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 8192,
18
+ "max_position_embeddings": 131072,
19
+ "mlp_bias": false,
20
+ "model_type": "llama",
21
+ "num_attention_heads": 24,
22
+ "num_hidden_layers": 28,
23
+ "num_key_value_heads": 8,
24
+ "pretraining_tp": 1,
25
+ "rms_norm_eps": 1e-05,
26
+ "rope_scaling": {
27
+ "factor": 32.0,
28
+ "high_freq_factor": 4.0,
29
+ "low_freq_factor": 1.0,
30
+ "original_max_position_embeddings": 8192,
31
+ "rope_type": "llama3"
32
+ },
33
+ "rope_theta": 500000.0,
34
+ "tie_word_embeddings": true,
35
+ "torch_dtype": "bfloat16",
36
+ "transformers_version": "4.48.3",
37
+ "use_cache": true,
38
+ "vocab_size": 128256
39
+ }
models/Llama-3.2-1B-Instruct/generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 128000,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "temperature": 0.6,
10
+ "top_p": 0.9,
11
+ "transformers_version": "4.48.3"
12
+ }
models/Llama-3.2-1B-Instruct/model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f90d40f2171b1b64091d6d4764ef9cb8335878edc78e2263b7bb9115c41cec94
3
+ size 4965799096
models/Llama-3.2-1B-Instruct/model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b770216613ac5c34d7c54bdff1fa616bc4e338a9d0b20af6303e48c295ee23c
3
+ size 1459729952
models/Llama-3.2-1B-Instruct/model.safetensors.index.json ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 6425499648
4
+ },
5
+ "weight_map": {
6
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
7
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
125
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
126
+ "model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
127
+ "model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
129
+ "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
133
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
134
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
135
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
136
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
137
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
138
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
139
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
140
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
141
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
142
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
143
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
144
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
145
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
146
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
147
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
148
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
149
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
150
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
151
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
152
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
153
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
154
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
155
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
156
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
157
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
158
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
159
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
160
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
161
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
162
+ "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
163
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
164
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
165
+ "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
166
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
167
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
168
+ "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
169
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
170
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
171
+ "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
172
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
173
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
174
+ "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
175
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
176
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
177
+ "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
178
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
179
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
180
+ "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
181
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
182
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
183
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
184
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
185
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
186
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
187
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
188
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
189
+ "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
190
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
191
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
192
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
193
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
194
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
195
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
196
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
197
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
199
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
200
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
201
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
202
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
203
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
204
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
205
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
206
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
207
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
208
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
209
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
210
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
211
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
212
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
213
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
214
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
215
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
216
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
217
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
218
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
219
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
220
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
221
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
222
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
223
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
224
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
225
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
226
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
227
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
228
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
229
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
230
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
231
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
232
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
233
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
234
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
235
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
236
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
237
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
238
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
239
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
240
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
241
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
242
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
243
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
244
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
245
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
246
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
247
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
248
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
249
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
250
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
251
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
252
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
253
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
254
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
255
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
256
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
257
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
258
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
259
+ "model.norm.weight": "model-00002-of-00002.safetensors"
260
+ }
261
+ }
models/Llama-3.2-1B-Instruct/special_tokens_map.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ }
16
+ }
models/Llama-3.2-1B-Instruct/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
models/Llama-3.2-1B-Instruct/tokenizer_config.json ADDED
@@ -0,0 +1,2063 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "128000": {
4
+ "content": "<|begin_of_text|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "128001": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "128002": {
20
+ "content": "<|reserved_special_token_0|>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "128003": {
28
+ "content": "<|reserved_special_token_1|>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "128004": {
36
+ "content": "<|finetune_right_pad_id|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "128005": {
44
+ "content": "<|reserved_special_token_2|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "128006": {
52
+ "content": "<|start_header_id|>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": true
58
+ },
59
+ "128007": {
60
+ "content": "<|end_header_id|>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": true
66
+ },
67
+ "128008": {
68
+ "content": "<|eom_id|>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": true
74
+ },
75
+ "128009": {
76
+ "content": "<|eot_id|>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": true
82
+ },
83
+ "128010": {
84
+ "content": "<|python_tag|>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": true
90
+ },
91
+ "128011": {
92
+ "content": "<|reserved_special_token_3|>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": true
98
+ },
99
+ "128012": {
100
+ "content": "<|reserved_special_token_4|>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": true
106
+ },
107
+ "128013": {
108
+ "content": "<|reserved_special_token_5|>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": true
114
+ },
115
+ "128014": {
116
+ "content": "<|reserved_special_token_6|>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": true
122
+ },
123
+ "128015": {
124
+ "content": "<|reserved_special_token_7|>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": true
130
+ },
131
+ "128016": {
132
+ "content": "<|reserved_special_token_8|>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": true
138
+ },
139
+ "128017": {
140
+ "content": "<|reserved_special_token_9|>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": true
146
+ },
147
+ "128018": {
148
+ "content": "<|reserved_special_token_10|>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": true
154
+ },
155
+ "128019": {
156
+ "content": "<|reserved_special_token_11|>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": true
162
+ },
163
+ "128020": {
164
+ "content": "<|reserved_special_token_12|>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": true
170
+ },
171
+ "128021": {
172
+ "content": "<|reserved_special_token_13|>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": true
178
+ },
179
+ "128022": {
180
+ "content": "<|reserved_special_token_14|>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": true
186
+ },
187
+ "128023": {
188
+ "content": "<|reserved_special_token_15|>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": true
194
+ },
195
+ "128024": {
196
+ "content": "<|reserved_special_token_16|>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": true
202
+ },
203
+ "128025": {
204
+ "content": "<|reserved_special_token_17|>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": true
210
+ },
211
+ "128026": {
212
+ "content": "<|reserved_special_token_18|>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": true
218
+ },
219
+ "128027": {
220
+ "content": "<|reserved_special_token_19|>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": true
226
+ },
227
+ "128028": {
228
+ "content": "<|reserved_special_token_20|>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": true
234
+ },
235
+ "128029": {
236
+ "content": "<|reserved_special_token_21|>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": true
242
+ },
243
+ "128030": {
244
+ "content": "<|reserved_special_token_22|>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": true
250
+ },
251
+ "128031": {
252
+ "content": "<|reserved_special_token_23|>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": true
258
+ },
259
+ "128032": {
260
+ "content": "<|reserved_special_token_24|>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": true
266
+ },
267
+ "128033": {
268
+ "content": "<|reserved_special_token_25|>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": true
274
+ },
275
+ "128034": {
276
+ "content": "<|reserved_special_token_26|>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": true
282
+ },
283
+ "128035": {
284
+ "content": "<|reserved_special_token_27|>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": true
290
+ },
291
+ "128036": {
292
+ "content": "<|reserved_special_token_28|>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": true
298
+ },
299
+ "128037": {
300
+ "content": "<|reserved_special_token_29|>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": true
306
+ },
307
+ "128038": {
308
+ "content": "<|reserved_special_token_30|>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": true
314
+ },
315
+ "128039": {
316
+ "content": "<|reserved_special_token_31|>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": true
322
+ },
323
+ "128040": {
324
+ "content": "<|reserved_special_token_32|>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": true
330
+ },
331
+ "128041": {
332
+ "content": "<|reserved_special_token_33|>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": true
338
+ },
339
+ "128042": {
340
+ "content": "<|reserved_special_token_34|>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": true
346
+ },
347
+ "128043": {
348
+ "content": "<|reserved_special_token_35|>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": true
354
+ },
355
+ "128044": {
356
+ "content": "<|reserved_special_token_36|>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": true
362
+ },
363
+ "128045": {
364
+ "content": "<|reserved_special_token_37|>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": true
370
+ },
371
+ "128046": {
372
+ "content": "<|reserved_special_token_38|>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": true
378
+ },
379
+ "128047": {
380
+ "content": "<|reserved_special_token_39|>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": true
386
+ },
387
+ "128048": {
388
+ "content": "<|reserved_special_token_40|>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": true
394
+ },
395
+ "128049": {
396
+ "content": "<|reserved_special_token_41|>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": true
402
+ },
403
+ "128050": {
404
+ "content": "<|reserved_special_token_42|>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": true
410
+ },
411
+ "128051": {
412
+ "content": "<|reserved_special_token_43|>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": true
418
+ },
419
+ "128052": {
420
+ "content": "<|reserved_special_token_44|>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": true
426
+ },
427
+ "128053": {
428
+ "content": "<|reserved_special_token_45|>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": true
434
+ },
435
+ "128054": {
436
+ "content": "<|reserved_special_token_46|>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": true
442
+ },
443
+ "128055": {
444
+ "content": "<|reserved_special_token_47|>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": true
450
+ },
451
+ "128056": {
452
+ "content": "<|reserved_special_token_48|>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": true
458
+ },
459
+ "128057": {
460
+ "content": "<|reserved_special_token_49|>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": true
466
+ },
467
+ "128058": {
468
+ "content": "<|reserved_special_token_50|>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": true
474
+ },
475
+ "128059": {
476
+ "content": "<|reserved_special_token_51|>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": true
482
+ },
483
+ "128060": {
484
+ "content": "<|reserved_special_token_52|>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": true
490
+ },
491
+ "128061": {
492
+ "content": "<|reserved_special_token_53|>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": true
498
+ },
499
+ "128062": {
500
+ "content": "<|reserved_special_token_54|>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": true
506
+ },
507
+ "128063": {
508
+ "content": "<|reserved_special_token_55|>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": true
514
+ },
515
+ "128064": {
516
+ "content": "<|reserved_special_token_56|>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": true
522
+ },
523
+ "128065": {
524
+ "content": "<|reserved_special_token_57|>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": true
530
+ },
531
+ "128066": {
532
+ "content": "<|reserved_special_token_58|>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": true
538
+ },
539
+ "128067": {
540
+ "content": "<|reserved_special_token_59|>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": true
546
+ },
547
+ "128068": {
548
+ "content": "<|reserved_special_token_60|>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": true
554
+ },
555
+ "128069": {
556
+ "content": "<|reserved_special_token_61|>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": true
562
+ },
563
+ "128070": {
564
+ "content": "<|reserved_special_token_62|>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": true
570
+ },
571
+ "128071": {
572
+ "content": "<|reserved_special_token_63|>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": true
578
+ },
579
+ "128072": {
580
+ "content": "<|reserved_special_token_64|>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": true
586
+ },
587
+ "128073": {
588
+ "content": "<|reserved_special_token_65|>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": true
594
+ },
595
+ "128074": {
596
+ "content": "<|reserved_special_token_66|>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": true
602
+ },
603
+ "128075": {
604
+ "content": "<|reserved_special_token_67|>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": true
610
+ },
611
+ "128076": {
612
+ "content": "<|reserved_special_token_68|>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": true
618
+ },
619
+ "128077": {
620
+ "content": "<|reserved_special_token_69|>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": true
626
+ },
627
+ "128078": {
628
+ "content": "<|reserved_special_token_70|>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": true
634
+ },
635
+ "128079": {
636
+ "content": "<|reserved_special_token_71|>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": true
642
+ },
643
+ "128080": {
644
+ "content": "<|reserved_special_token_72|>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": true
650
+ },
651
+ "128081": {
652
+ "content": "<|reserved_special_token_73|>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": true
658
+ },
659
+ "128082": {
660
+ "content": "<|reserved_special_token_74|>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": true
666
+ },
667
+ "128083": {
668
+ "content": "<|reserved_special_token_75|>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": true
674
+ },
675
+ "128084": {
676
+ "content": "<|reserved_special_token_76|>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": true
682
+ },
683
+ "128085": {
684
+ "content": "<|reserved_special_token_77|>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": true
690
+ },
691
+ "128086": {
692
+ "content": "<|reserved_special_token_78|>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": true
698
+ },
699
+ "128087": {
700
+ "content": "<|reserved_special_token_79|>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": true
706
+ },
707
+ "128088": {
708
+ "content": "<|reserved_special_token_80|>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": true
714
+ },
715
+ "128089": {
716
+ "content": "<|reserved_special_token_81|>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": true
722
+ },
723
+ "128090": {
724
+ "content": "<|reserved_special_token_82|>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": true
730
+ },
731
+ "128091": {
732
+ "content": "<|reserved_special_token_83|>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": true
738
+ },
739
+ "128092": {
740
+ "content": "<|reserved_special_token_84|>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": true
746
+ },
747
+ "128093": {
748
+ "content": "<|reserved_special_token_85|>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": true
754
+ },
755
+ "128094": {
756
+ "content": "<|reserved_special_token_86|>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": true
762
+ },
763
+ "128095": {
764
+ "content": "<|reserved_special_token_87|>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": true
770
+ },
771
+ "128096": {
772
+ "content": "<|reserved_special_token_88|>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": true
778
+ },
779
+ "128097": {
780
+ "content": "<|reserved_special_token_89|>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": true
786
+ },
787
+ "128098": {
788
+ "content": "<|reserved_special_token_90|>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": true
794
+ },
795
+ "128099": {
796
+ "content": "<|reserved_special_token_91|>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": true
802
+ },
803
+ "128100": {
804
+ "content": "<|reserved_special_token_92|>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": true
810
+ },
811
+ "128101": {
812
+ "content": "<|reserved_special_token_93|>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": true
818
+ },
819
+ "128102": {
820
+ "content": "<|reserved_special_token_94|>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": true
826
+ },
827
+ "128103": {
828
+ "content": "<|reserved_special_token_95|>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": true
834
+ },
835
+ "128104": {
836
+ "content": "<|reserved_special_token_96|>",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "128105": {
844
+ "content": "<|reserved_special_token_97|>",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "128106": {
852
+ "content": "<|reserved_special_token_98|>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "128107": {
860
+ "content": "<|reserved_special_token_99|>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ },
867
+ "128108": {
868
+ "content": "<|reserved_special_token_100|>",
869
+ "lstrip": false,
870
+ "normalized": false,
871
+ "rstrip": false,
872
+ "single_word": false,
873
+ "special": true
874
+ },
875
+ "128109": {
876
+ "content": "<|reserved_special_token_101|>",
877
+ "lstrip": false,
878
+ "normalized": false,
879
+ "rstrip": false,
880
+ "single_word": false,
881
+ "special": true
882
+ },
883
+ "128110": {
884
+ "content": "<|reserved_special_token_102|>",
885
+ "lstrip": false,
886
+ "normalized": false,
887
+ "rstrip": false,
888
+ "single_word": false,
889
+ "special": true
890
+ },
891
+ "128111": {
892
+ "content": "<|reserved_special_token_103|>",
893
+ "lstrip": false,
894
+ "normalized": false,
895
+ "rstrip": false,
896
+ "single_word": false,
897
+ "special": true
898
+ },
899
+ "128112": {
900
+ "content": "<|reserved_special_token_104|>",
901
+ "lstrip": false,
902
+ "normalized": false,
903
+ "rstrip": false,
904
+ "single_word": false,
905
+ "special": true
906
+ },
907
+ "128113": {
908
+ "content": "<|reserved_special_token_105|>",
909
+ "lstrip": false,
910
+ "normalized": false,
911
+ "rstrip": false,
912
+ "single_word": false,
913
+ "special": true
914
+ },
915
+ "128114": {
916
+ "content": "<|reserved_special_token_106|>",
917
+ "lstrip": false,
918
+ "normalized": false,
919
+ "rstrip": false,
920
+ "single_word": false,
921
+ "special": true
922
+ },
923
+ "128115": {
924
+ "content": "<|reserved_special_token_107|>",
925
+ "lstrip": false,
926
+ "normalized": false,
927
+ "rstrip": false,
928
+ "single_word": false,
929
+ "special": true
930
+ },
931
+ "128116": {
932
+ "content": "<|reserved_special_token_108|>",
933
+ "lstrip": false,
934
+ "normalized": false,
935
+ "rstrip": false,
936
+ "single_word": false,
937
+ "special": true
938
+ },
939
+ "128117": {
940
+ "content": "<|reserved_special_token_109|>",
941
+ "lstrip": false,
942
+ "normalized": false,
943
+ "rstrip": false,
944
+ "single_word": false,
945
+ "special": true
946
+ },
947
+ "128118": {
948
+ "content": "<|reserved_special_token_110|>",
949
+ "lstrip": false,
950
+ "normalized": false,
951
+ "rstrip": false,
952
+ "single_word": false,
953
+ "special": true
954
+ },
955
+ "128119": {
956
+ "content": "<|reserved_special_token_111|>",
957
+ "lstrip": false,
958
+ "normalized": false,
959
+ "rstrip": false,
960
+ "single_word": false,
961
+ "special": true
962
+ },
963
+ "128120": {
964
+ "content": "<|reserved_special_token_112|>",
965
+ "lstrip": false,
966
+ "normalized": false,
967
+ "rstrip": false,
968
+ "single_word": false,
969
+ "special": true
970
+ },
971
+ "128121": {
972
+ "content": "<|reserved_special_token_113|>",
973
+ "lstrip": false,
974
+ "normalized": false,
975
+ "rstrip": false,
976
+ "single_word": false,
977
+ "special": true
978
+ },
979
+ "128122": {
980
+ "content": "<|reserved_special_token_114|>",
981
+ "lstrip": false,
982
+ "normalized": false,
983
+ "rstrip": false,
984
+ "single_word": false,
985
+ "special": true
986
+ },
987
+ "128123": {
988
+ "content": "<|reserved_special_token_115|>",
989
+ "lstrip": false,
990
+ "normalized": false,
991
+ "rstrip": false,
992
+ "single_word": false,
993
+ "special": true
994
+ },
995
+ "128124": {
996
+ "content": "<|reserved_special_token_116|>",
997
+ "lstrip": false,
998
+ "normalized": false,
999
+ "rstrip": false,
1000
+ "single_word": false,
1001
+ "special": true
1002
+ },
1003
+ "128125": {
1004
+ "content": "<|reserved_special_token_117|>",
1005
+ "lstrip": false,
1006
+ "normalized": false,
1007
+ "rstrip": false,
1008
+ "single_word": false,
1009
+ "special": true
1010
+ },
1011
+ "128126": {
1012
+ "content": "<|reserved_special_token_118|>",
1013
+ "lstrip": false,
1014
+ "normalized": false,
1015
+ "rstrip": false,
1016
+ "single_word": false,
1017
+ "special": true
1018
+ },
1019
+ "128127": {
1020
+ "content": "<|reserved_special_token_119|>",
1021
+ "lstrip": false,
1022
+ "normalized": false,
1023
+ "rstrip": false,
1024
+ "single_word": false,
1025
+ "special": true
1026
+ },
1027
+ "128128": {
1028
+ "content": "<|reserved_special_token_120|>",
1029
+ "lstrip": false,
1030
+ "normalized": false,
1031
+ "rstrip": false,
1032
+ "single_word": false,
1033
+ "special": true
1034
+ },
1035
+ "128129": {
1036
+ "content": "<|reserved_special_token_121|>",
1037
+ "lstrip": false,
1038
+ "normalized": false,
1039
+ "rstrip": false,
1040
+ "single_word": false,
1041
+ "special": true
1042
+ },
1043
+ "128130": {
1044
+ "content": "<|reserved_special_token_122|>",
1045
+ "lstrip": false,
1046
+ "normalized": false,
1047
+ "rstrip": false,
1048
+ "single_word": false,
1049
+ "special": true
1050
+ },
1051
+ "128131": {
1052
+ "content": "<|reserved_special_token_123|>",
1053
+ "lstrip": false,
1054
+ "normalized": false,
1055
+ "rstrip": false,
1056
+ "single_word": false,
1057
+ "special": true
1058
+ },
1059
+ "128132": {
1060
+ "content": "<|reserved_special_token_124|>",
1061
+ "lstrip": false,
1062
+ "normalized": false,
1063
+ "rstrip": false,
1064
+ "single_word": false,
1065
+ "special": true
1066
+ },
1067
+ "128133": {
1068
+ "content": "<|reserved_special_token_125|>",
1069
+ "lstrip": false,
1070
+ "normalized": false,
1071
+ "rstrip": false,
1072
+ "single_word": false,
1073
+ "special": true
1074
+ },
1075
+ "128134": {
1076
+ "content": "<|reserved_special_token_126|>",
1077
+ "lstrip": false,
1078
+ "normalized": false,
1079
+ "rstrip": false,
1080
+ "single_word": false,
1081
+ "special": true
1082
+ },
1083
+ "128135": {
1084
+ "content": "<|reserved_special_token_127|>",
1085
+ "lstrip": false,
1086
+ "normalized": false,
1087
+ "rstrip": false,
1088
+ "single_word": false,
1089
+ "special": true
1090
+ },
1091
+ "128136": {
1092
+ "content": "<|reserved_special_token_128|>",
1093
+ "lstrip": false,
1094
+ "normalized": false,
1095
+ "rstrip": false,
1096
+ "single_word": false,
1097
+ "special": true
1098
+ },
1099
+ "128137": {
1100
+ "content": "<|reserved_special_token_129|>",
1101
+ "lstrip": false,
1102
+ "normalized": false,
1103
+ "rstrip": false,
1104
+ "single_word": false,
1105
+ "special": true
1106
+ },
1107
+ "128138": {
1108
+ "content": "<|reserved_special_token_130|>",
1109
+ "lstrip": false,
1110
+ "normalized": false,
1111
+ "rstrip": false,
1112
+ "single_word": false,
1113
+ "special": true
1114
+ },
1115
+ "128139": {
1116
+ "content": "<|reserved_special_token_131|>",
1117
+ "lstrip": false,
1118
+ "normalized": false,
1119
+ "rstrip": false,
1120
+ "single_word": false,
1121
+ "special": true
1122
+ },
1123
+ "128140": {
1124
+ "content": "<|reserved_special_token_132|>",
1125
+ "lstrip": false,
1126
+ "normalized": false,
1127
+ "rstrip": false,
1128
+ "single_word": false,
1129
+ "special": true
1130
+ },
1131
+ "128141": {
1132
+ "content": "<|reserved_special_token_133|>",
1133
+ "lstrip": false,
1134
+ "normalized": false,
1135
+ "rstrip": false,
1136
+ "single_word": false,
1137
+ "special": true
1138
+ },
1139
+ "128142": {
1140
+ "content": "<|reserved_special_token_134|>",
1141
+ "lstrip": false,
1142
+ "normalized": false,
1143
+ "rstrip": false,
1144
+ "single_word": false,
1145
+ "special": true
1146
+ },
1147
+ "128143": {
1148
+ "content": "<|reserved_special_token_135|>",
1149
+ "lstrip": false,
1150
+ "normalized": false,
1151
+ "rstrip": false,
1152
+ "single_word": false,
1153
+ "special": true
1154
+ },
1155
+ "128144": {
1156
+ "content": "<|reserved_special_token_136|>",
1157
+ "lstrip": false,
1158
+ "normalized": false,
1159
+ "rstrip": false,
1160
+ "single_word": false,
1161
+ "special": true
1162
+ },
1163
+ "128145": {
1164
+ "content": "<|reserved_special_token_137|>",
1165
+ "lstrip": false,
1166
+ "normalized": false,
1167
+ "rstrip": false,
1168
+ "single_word": false,
1169
+ "special": true
1170
+ },
1171
+ "128146": {
1172
+ "content": "<|reserved_special_token_138|>",
1173
+ "lstrip": false,
1174
+ "normalized": false,
1175
+ "rstrip": false,
1176
+ "single_word": false,
1177
+ "special": true
1178
+ },
1179
+ "128147": {
1180
+ "content": "<|reserved_special_token_139|>",
1181
+ "lstrip": false,
1182
+ "normalized": false,
1183
+ "rstrip": false,
1184
+ "single_word": false,
1185
+ "special": true
1186
+ },
1187
+ "128148": {
1188
+ "content": "<|reserved_special_token_140|>",
1189
+ "lstrip": false,
1190
+ "normalized": false,
1191
+ "rstrip": false,
1192
+ "single_word": false,
1193
+ "special": true
1194
+ },
1195
+ "128149": {
1196
+ "content": "<|reserved_special_token_141|>",
1197
+ "lstrip": false,
1198
+ "normalized": false,
1199
+ "rstrip": false,
1200
+ "single_word": false,
1201
+ "special": true
1202
+ },
1203
+ "128150": {
1204
+ "content": "<|reserved_special_token_142|>",
1205
+ "lstrip": false,
1206
+ "normalized": false,
1207
+ "rstrip": false,
1208
+ "single_word": false,
1209
+ "special": true
1210
+ },
1211
+ "128151": {
1212
+ "content": "<|reserved_special_token_143|>",
1213
+ "lstrip": false,
1214
+ "normalized": false,
1215
+ "rstrip": false,
1216
+ "single_word": false,
1217
+ "special": true
1218
+ },
1219
+ "128152": {
1220
+ "content": "<|reserved_special_token_144|>",
1221
+ "lstrip": false,
1222
+ "normalized": false,
1223
+ "rstrip": false,
1224
+ "single_word": false,
1225
+ "special": true
1226
+ },
1227
+ "128153": {
1228
+ "content": "<|reserved_special_token_145|>",
1229
+ "lstrip": false,
1230
+ "normalized": false,
1231
+ "rstrip": false,
1232
+ "single_word": false,
1233
+ "special": true
1234
+ },
1235
+ "128154": {
1236
+ "content": "<|reserved_special_token_146|>",
1237
+ "lstrip": false,
1238
+ "normalized": false,
1239
+ "rstrip": false,
1240
+ "single_word": false,
1241
+ "special": true
1242
+ },
1243
+ "128155": {
1244
+ "content": "<|reserved_special_token_147|>",
1245
+ "lstrip": false,
1246
+ "normalized": false,
1247
+ "rstrip": false,
1248
+ "single_word": false,
1249
+ "special": true
1250
+ },
1251
+ "128156": {
1252
+ "content": "<|reserved_special_token_148|>",
1253
+ "lstrip": false,
1254
+ "normalized": false,
1255
+ "rstrip": false,
1256
+ "single_word": false,
1257
+ "special": true
1258
+ },
1259
+ "128157": {
1260
+ "content": "<|reserved_special_token_149|>",
1261
+ "lstrip": false,
1262
+ "normalized": false,
1263
+ "rstrip": false,
1264
+ "single_word": false,
1265
+ "special": true
1266
+ },
1267
+ "128158": {
1268
+ "content": "<|reserved_special_token_150|>",
1269
+ "lstrip": false,
1270
+ "normalized": false,
1271
+ "rstrip": false,
1272
+ "single_word": false,
1273
+ "special": true
1274
+ },
1275
+ "128159": {
1276
+ "content": "<|reserved_special_token_151|>",
1277
+ "lstrip": false,
1278
+ "normalized": false,
1279
+ "rstrip": false,
1280
+ "single_word": false,
1281
+ "special": true
1282
+ },
1283
+ "128160": {
1284
+ "content": "<|reserved_special_token_152|>",
1285
+ "lstrip": false,
1286
+ "normalized": false,
1287
+ "rstrip": false,
1288
+ "single_word": false,
1289
+ "special": true
1290
+ },
1291
+ "128161": {
1292
+ "content": "<|reserved_special_token_153|>",
1293
+ "lstrip": false,
1294
+ "normalized": false,
1295
+ "rstrip": false,
1296
+ "single_word": false,
1297
+ "special": true
1298
+ },
1299
+ "128162": {
1300
+ "content": "<|reserved_special_token_154|>",
1301
+ "lstrip": false,
1302
+ "normalized": false,
1303
+ "rstrip": false,
1304
+ "single_word": false,
1305
+ "special": true
1306
+ },
1307
+ "128163": {
1308
+ "content": "<|reserved_special_token_155|>",
1309
+ "lstrip": false,
1310
+ "normalized": false,
1311
+ "rstrip": false,
1312
+ "single_word": false,
1313
+ "special": true
1314
+ },
1315
+ "128164": {
1316
+ "content": "<|reserved_special_token_156|>",
1317
+ "lstrip": false,
1318
+ "normalized": false,
1319
+ "rstrip": false,
1320
+ "single_word": false,
1321
+ "special": true
1322
+ },
1323
+ "128165": {
1324
+ "content": "<|reserved_special_token_157|>",
1325
+ "lstrip": false,
1326
+ "normalized": false,
1327
+ "rstrip": false,
1328
+ "single_word": false,
1329
+ "special": true
1330
+ },
1331
+ "128166": {
1332
+ "content": "<|reserved_special_token_158|>",
1333
+ "lstrip": false,
1334
+ "normalized": false,
1335
+ "rstrip": false,
1336
+ "single_word": false,
1337
+ "special": true
1338
+ },
1339
+ "128167": {
1340
+ "content": "<|reserved_special_token_159|>",
1341
+ "lstrip": false,
1342
+ "normalized": false,
1343
+ "rstrip": false,
1344
+ "single_word": false,
1345
+ "special": true
1346
+ },
1347
+ "128168": {
1348
+ "content": "<|reserved_special_token_160|>",
1349
+ "lstrip": false,
1350
+ "normalized": false,
1351
+ "rstrip": false,
1352
+ "single_word": false,
1353
+ "special": true
1354
+ },
1355
+ "128169": {
1356
+ "content": "<|reserved_special_token_161|>",
1357
+ "lstrip": false,
1358
+ "normalized": false,
1359
+ "rstrip": false,
1360
+ "single_word": false,
1361
+ "special": true
1362
+ },
1363
+ "128170": {
1364
+ "content": "<|reserved_special_token_162|>",
1365
+ "lstrip": false,
1366
+ "normalized": false,
1367
+ "rstrip": false,
1368
+ "single_word": false,
1369
+ "special": true
1370
+ },
1371
+ "128171": {
1372
+ "content": "<|reserved_special_token_163|>",
1373
+ "lstrip": false,
1374
+ "normalized": false,
1375
+ "rstrip": false,
1376
+ "single_word": false,
1377
+ "special": true
1378
+ },
1379
+ "128172": {
1380
+ "content": "<|reserved_special_token_164|>",
1381
+ "lstrip": false,
1382
+ "normalized": false,
1383
+ "rstrip": false,
1384
+ "single_word": false,
1385
+ "special": true
1386
+ },
1387
+ "128173": {
1388
+ "content": "<|reserved_special_token_165|>",
1389
+ "lstrip": false,
1390
+ "normalized": false,
1391
+ "rstrip": false,
1392
+ "single_word": false,
1393
+ "special": true
1394
+ },
1395
+ "128174": {
1396
+ "content": "<|reserved_special_token_166|>",
1397
+ "lstrip": false,
1398
+ "normalized": false,
1399
+ "rstrip": false,
1400
+ "single_word": false,
1401
+ "special": true
1402
+ },
1403
+ "128175": {
1404
+ "content": "<|reserved_special_token_167|>",
1405
+ "lstrip": false,
1406
+ "normalized": false,
1407
+ "rstrip": false,
1408
+ "single_word": false,
1409
+ "special": true
1410
+ },
1411
+ "128176": {
1412
+ "content": "<|reserved_special_token_168|>",
1413
+ "lstrip": false,
1414
+ "normalized": false,
1415
+ "rstrip": false,
1416
+ "single_word": false,
1417
+ "special": true
1418
+ },
1419
+ "128177": {
1420
+ "content": "<|reserved_special_token_169|>",
1421
+ "lstrip": false,
1422
+ "normalized": false,
1423
+ "rstrip": false,
1424
+ "single_word": false,
1425
+ "special": true
1426
+ },
1427
+ "128178": {
1428
+ "content": "<|reserved_special_token_170|>",
1429
+ "lstrip": false,
1430
+ "normalized": false,
1431
+ "rstrip": false,
1432
+ "single_word": false,
1433
+ "special": true
1434
+ },
1435
+ "128179": {
1436
+ "content": "<|reserved_special_token_171|>",
1437
+ "lstrip": false,
1438
+ "normalized": false,
1439
+ "rstrip": false,
1440
+ "single_word": false,
1441
+ "special": true
1442
+ },
1443
+ "128180": {
1444
+ "content": "<|reserved_special_token_172|>",
1445
+ "lstrip": false,
1446
+ "normalized": false,
1447
+ "rstrip": false,
1448
+ "single_word": false,
1449
+ "special": true
1450
+ },
1451
+ "128181": {
1452
+ "content": "<|reserved_special_token_173|>",
1453
+ "lstrip": false,
1454
+ "normalized": false,
1455
+ "rstrip": false,
1456
+ "single_word": false,
1457
+ "special": true
1458
+ },
1459
+ "128182": {
1460
+ "content": "<|reserved_special_token_174|>",
1461
+ "lstrip": false,
1462
+ "normalized": false,
1463
+ "rstrip": false,
1464
+ "single_word": false,
1465
+ "special": true
1466
+ },
1467
+ "128183": {
1468
+ "content": "<|reserved_special_token_175|>",
1469
+ "lstrip": false,
1470
+ "normalized": false,
1471
+ "rstrip": false,
1472
+ "single_word": false,
1473
+ "special": true
1474
+ },
1475
+ "128184": {
1476
+ "content": "<|reserved_special_token_176|>",
1477
+ "lstrip": false,
1478
+ "normalized": false,
1479
+ "rstrip": false,
1480
+ "single_word": false,
1481
+ "special": true
1482
+ },
1483
+ "128185": {
1484
+ "content": "<|reserved_special_token_177|>",
1485
+ "lstrip": false,
1486
+ "normalized": false,
1487
+ "rstrip": false,
1488
+ "single_word": false,
1489
+ "special": true
1490
+ },
1491
+ "128186": {
1492
+ "content": "<|reserved_special_token_178|>",
1493
+ "lstrip": false,
1494
+ "normalized": false,
1495
+ "rstrip": false,
1496
+ "single_word": false,
1497
+ "special": true
1498
+ },
1499
+ "128187": {
1500
+ "content": "<|reserved_special_token_179|>",
1501
+ "lstrip": false,
1502
+ "normalized": false,
1503
+ "rstrip": false,
1504
+ "single_word": false,
1505
+ "special": true
1506
+ },
1507
+ "128188": {
1508
+ "content": "<|reserved_special_token_180|>",
1509
+ "lstrip": false,
1510
+ "normalized": false,
1511
+ "rstrip": false,
1512
+ "single_word": false,
1513
+ "special": true
1514
+ },
1515
+ "128189": {
1516
+ "content": "<|reserved_special_token_181|>",
1517
+ "lstrip": false,
1518
+ "normalized": false,
1519
+ "rstrip": false,
1520
+ "single_word": false,
1521
+ "special": true
1522
+ },
1523
+ "128190": {
1524
+ "content": "<|reserved_special_token_182|>",
1525
+ "lstrip": false,
1526
+ "normalized": false,
1527
+ "rstrip": false,
1528
+ "single_word": false,
1529
+ "special": true
1530
+ },
1531
+ "128191": {
1532
+ "content": "<|reserved_special_token_183|>",
1533
+ "lstrip": false,
1534
+ "normalized": false,
1535
+ "rstrip": false,
1536
+ "single_word": false,
1537
+ "special": true
1538
+ },
1539
+ "128192": {
1540
+ "content": "<|reserved_special_token_184|>",
1541
+ "lstrip": false,
1542
+ "normalized": false,
1543
+ "rstrip": false,
1544
+ "single_word": false,
1545
+ "special": true
1546
+ },
1547
+ "128193": {
1548
+ "content": "<|reserved_special_token_185|>",
1549
+ "lstrip": false,
1550
+ "normalized": false,
1551
+ "rstrip": false,
1552
+ "single_word": false,
1553
+ "special": true
1554
+ },
1555
+ "128194": {
1556
+ "content": "<|reserved_special_token_186|>",
1557
+ "lstrip": false,
1558
+ "normalized": false,
1559
+ "rstrip": false,
1560
+ "single_word": false,
1561
+ "special": true
1562
+ },
1563
+ "128195": {
1564
+ "content": "<|reserved_special_token_187|>",
1565
+ "lstrip": false,
1566
+ "normalized": false,
1567
+ "rstrip": false,
1568
+ "single_word": false,
1569
+ "special": true
1570
+ },
1571
+ "128196": {
1572
+ "content": "<|reserved_special_token_188|>",
1573
+ "lstrip": false,
1574
+ "normalized": false,
1575
+ "rstrip": false,
1576
+ "single_word": false,
1577
+ "special": true
1578
+ },
1579
+ "128197": {
1580
+ "content": "<|reserved_special_token_189|>",
1581
+ "lstrip": false,
1582
+ "normalized": false,
1583
+ "rstrip": false,
1584
+ "single_word": false,
1585
+ "special": true
1586
+ },
1587
+ "128198": {
1588
+ "content": "<|reserved_special_token_190|>",
1589
+ "lstrip": false,
1590
+ "normalized": false,
1591
+ "rstrip": false,
1592
+ "single_word": false,
1593
+ "special": true
1594
+ },
1595
+ "128199": {
1596
+ "content": "<|reserved_special_token_191|>",
1597
+ "lstrip": false,
1598
+ "normalized": false,
1599
+ "rstrip": false,
1600
+ "single_word": false,
1601
+ "special": true
1602
+ },
1603
+ "128200": {
1604
+ "content": "<|reserved_special_token_192|>",
1605
+ "lstrip": false,
1606
+ "normalized": false,
1607
+ "rstrip": false,
1608
+ "single_word": false,
1609
+ "special": true
1610
+ },
1611
+ "128201": {
1612
+ "content": "<|reserved_special_token_193|>",
1613
+ "lstrip": false,
1614
+ "normalized": false,
1615
+ "rstrip": false,
1616
+ "single_word": false,
1617
+ "special": true
1618
+ },
1619
+ "128202": {
1620
+ "content": "<|reserved_special_token_194|>",
1621
+ "lstrip": false,
1622
+ "normalized": false,
1623
+ "rstrip": false,
1624
+ "single_word": false,
1625
+ "special": true
1626
+ },
1627
+ "128203": {
1628
+ "content": "<|reserved_special_token_195|>",
1629
+ "lstrip": false,
1630
+ "normalized": false,
1631
+ "rstrip": false,
1632
+ "single_word": false,
1633
+ "special": true
1634
+ },
1635
+ "128204": {
1636
+ "content": "<|reserved_special_token_196|>",
1637
+ "lstrip": false,
1638
+ "normalized": false,
1639
+ "rstrip": false,
1640
+ "single_word": false,
1641
+ "special": true
1642
+ },
1643
+ "128205": {
1644
+ "content": "<|reserved_special_token_197|>",
1645
+ "lstrip": false,
1646
+ "normalized": false,
1647
+ "rstrip": false,
1648
+ "single_word": false,
1649
+ "special": true
1650
+ },
1651
+ "128206": {
1652
+ "content": "<|reserved_special_token_198|>",
1653
+ "lstrip": false,
1654
+ "normalized": false,
1655
+ "rstrip": false,
1656
+ "single_word": false,
1657
+ "special": true
1658
+ },
1659
+ "128207": {
1660
+ "content": "<|reserved_special_token_199|>",
1661
+ "lstrip": false,
1662
+ "normalized": false,
1663
+ "rstrip": false,
1664
+ "single_word": false,
1665
+ "special": true
1666
+ },
1667
+ "128208": {
1668
+ "content": "<|reserved_special_token_200|>",
1669
+ "lstrip": false,
1670
+ "normalized": false,
1671
+ "rstrip": false,
1672
+ "single_word": false,
1673
+ "special": true
1674
+ },
1675
+ "128209": {
1676
+ "content": "<|reserved_special_token_201|>",
1677
+ "lstrip": false,
1678
+ "normalized": false,
1679
+ "rstrip": false,
1680
+ "single_word": false,
1681
+ "special": true
1682
+ },
1683
+ "128210": {
1684
+ "content": "<|reserved_special_token_202|>",
1685
+ "lstrip": false,
1686
+ "normalized": false,
1687
+ "rstrip": false,
1688
+ "single_word": false,
1689
+ "special": true
1690
+ },
1691
+ "128211": {
1692
+ "content": "<|reserved_special_token_203|>",
1693
+ "lstrip": false,
1694
+ "normalized": false,
1695
+ "rstrip": false,
1696
+ "single_word": false,
1697
+ "special": true
1698
+ },
1699
+ "128212": {
1700
+ "content": "<|reserved_special_token_204|>",
1701
+ "lstrip": false,
1702
+ "normalized": false,
1703
+ "rstrip": false,
1704
+ "single_word": false,
1705
+ "special": true
1706
+ },
1707
+ "128213": {
1708
+ "content": "<|reserved_special_token_205|>",
1709
+ "lstrip": false,
1710
+ "normalized": false,
1711
+ "rstrip": false,
1712
+ "single_word": false,
1713
+ "special": true
1714
+ },
1715
+ "128214": {
1716
+ "content": "<|reserved_special_token_206|>",
1717
+ "lstrip": false,
1718
+ "normalized": false,
1719
+ "rstrip": false,
1720
+ "single_word": false,
1721
+ "special": true
1722
+ },
1723
+ "128215": {
1724
+ "content": "<|reserved_special_token_207|>",
1725
+ "lstrip": false,
1726
+ "normalized": false,
1727
+ "rstrip": false,
1728
+ "single_word": false,
1729
+ "special": true
1730
+ },
1731
+ "128216": {
1732
+ "content": "<|reserved_special_token_208|>",
1733
+ "lstrip": false,
1734
+ "normalized": false,
1735
+ "rstrip": false,
1736
+ "single_word": false,
1737
+ "special": true
1738
+ },
1739
+ "128217": {
1740
+ "content": "<|reserved_special_token_209|>",
1741
+ "lstrip": false,
1742
+ "normalized": false,
1743
+ "rstrip": false,
1744
+ "single_word": false,
1745
+ "special": true
1746
+ },
1747
+ "128218": {
1748
+ "content": "<|reserved_special_token_210|>",
1749
+ "lstrip": false,
1750
+ "normalized": false,
1751
+ "rstrip": false,
1752
+ "single_word": false,
1753
+ "special": true
1754
+ },
1755
+ "128219": {
1756
+ "content": "<|reserved_special_token_211|>",
1757
+ "lstrip": false,
1758
+ "normalized": false,
1759
+ "rstrip": false,
1760
+ "single_word": false,
1761
+ "special": true
1762
+ },
1763
+ "128220": {
1764
+ "content": "<|reserved_special_token_212|>",
1765
+ "lstrip": false,
1766
+ "normalized": false,
1767
+ "rstrip": false,
1768
+ "single_word": false,
1769
+ "special": true
1770
+ },
1771
+ "128221": {
1772
+ "content": "<|reserved_special_token_213|>",
1773
+ "lstrip": false,
1774
+ "normalized": false,
1775
+ "rstrip": false,
1776
+ "single_word": false,
1777
+ "special": true
1778
+ },
1779
+ "128222": {
1780
+ "content": "<|reserved_special_token_214|>",
1781
+ "lstrip": false,
1782
+ "normalized": false,
1783
+ "rstrip": false,
1784
+ "single_word": false,
1785
+ "special": true
1786
+ },
1787
+ "128223": {
1788
+ "content": "<|reserved_special_token_215|>",
1789
+ "lstrip": false,
1790
+ "normalized": false,
1791
+ "rstrip": false,
1792
+ "single_word": false,
1793
+ "special": true
1794
+ },
1795
+ "128224": {
1796
+ "content": "<|reserved_special_token_216|>",
1797
+ "lstrip": false,
1798
+ "normalized": false,
1799
+ "rstrip": false,
1800
+ "single_word": false,
1801
+ "special": true
1802
+ },
1803
+ "128225": {
1804
+ "content": "<|reserved_special_token_217|>",
1805
+ "lstrip": false,
1806
+ "normalized": false,
1807
+ "rstrip": false,
1808
+ "single_word": false,
1809
+ "special": true
1810
+ },
1811
+ "128226": {
1812
+ "content": "<|reserved_special_token_218|>",
1813
+ "lstrip": false,
1814
+ "normalized": false,
1815
+ "rstrip": false,
1816
+ "single_word": false,
1817
+ "special": true
1818
+ },
1819
+ "128227": {
1820
+ "content": "<|reserved_special_token_219|>",
1821
+ "lstrip": false,
1822
+ "normalized": false,
1823
+ "rstrip": false,
1824
+ "single_word": false,
1825
+ "special": true
1826
+ },
1827
+ "128228": {
1828
+ "content": "<|reserved_special_token_220|>",
1829
+ "lstrip": false,
1830
+ "normalized": false,
1831
+ "rstrip": false,
1832
+ "single_word": false,
1833
+ "special": true
1834
+ },
1835
+ "128229": {
1836
+ "content": "<|reserved_special_token_221|>",
1837
+ "lstrip": false,
1838
+ "normalized": false,
1839
+ "rstrip": false,
1840
+ "single_word": false,
1841
+ "special": true
1842
+ },
1843
+ "128230": {
1844
+ "content": "<|reserved_special_token_222|>",
1845
+ "lstrip": false,
1846
+ "normalized": false,
1847
+ "rstrip": false,
1848
+ "single_word": false,
1849
+ "special": true
1850
+ },
1851
+ "128231": {
1852
+ "content": "<|reserved_special_token_223|>",
1853
+ "lstrip": false,
1854
+ "normalized": false,
1855
+ "rstrip": false,
1856
+ "single_word": false,
1857
+ "special": true
1858
+ },
1859
+ "128232": {
1860
+ "content": "<|reserved_special_token_224|>",
1861
+ "lstrip": false,
1862
+ "normalized": false,
1863
+ "rstrip": false,
1864
+ "single_word": false,
1865
+ "special": true
1866
+ },
1867
+ "128233": {
1868
+ "content": "<|reserved_special_token_225|>",
1869
+ "lstrip": false,
1870
+ "normalized": false,
1871
+ "rstrip": false,
1872
+ "single_word": false,
1873
+ "special": true
1874
+ },
1875
+ "128234": {
1876
+ "content": "<|reserved_special_token_226|>",
1877
+ "lstrip": false,
1878
+ "normalized": false,
1879
+ "rstrip": false,
1880
+ "single_word": false,
1881
+ "special": true
1882
+ },
1883
+ "128235": {
1884
+ "content": "<|reserved_special_token_227|>",
1885
+ "lstrip": false,
1886
+ "normalized": false,
1887
+ "rstrip": false,
1888
+ "single_word": false,
1889
+ "special": true
1890
+ },
1891
+ "128236": {
1892
+ "content": "<|reserved_special_token_228|>",
1893
+ "lstrip": false,
1894
+ "normalized": false,
1895
+ "rstrip": false,
1896
+ "single_word": false,
1897
+ "special": true
1898
+ },
1899
+ "128237": {
1900
+ "content": "<|reserved_special_token_229|>",
1901
+ "lstrip": false,
1902
+ "normalized": false,
1903
+ "rstrip": false,
1904
+ "single_word": false,
1905
+ "special": true
1906
+ },
1907
+ "128238": {
1908
+ "content": "<|reserved_special_token_230|>",
1909
+ "lstrip": false,
1910
+ "normalized": false,
1911
+ "rstrip": false,
1912
+ "single_word": false,
1913
+ "special": true
1914
+ },
1915
+ "128239": {
1916
+ "content": "<|reserved_special_token_231|>",
1917
+ "lstrip": false,
1918
+ "normalized": false,
1919
+ "rstrip": false,
1920
+ "single_word": false,
1921
+ "special": true
1922
+ },
1923
+ "128240": {
1924
+ "content": "<|reserved_special_token_232|>",
1925
+ "lstrip": false,
1926
+ "normalized": false,
1927
+ "rstrip": false,
1928
+ "single_word": false,
1929
+ "special": true
1930
+ },
1931
+ "128241": {
1932
+ "content": "<|reserved_special_token_233|>",
1933
+ "lstrip": false,
1934
+ "normalized": false,
1935
+ "rstrip": false,
1936
+ "single_word": false,
1937
+ "special": true
1938
+ },
1939
+ "128242": {
1940
+ "content": "<|reserved_special_token_234|>",
1941
+ "lstrip": false,
1942
+ "normalized": false,
1943
+ "rstrip": false,
1944
+ "single_word": false,
1945
+ "special": true
1946
+ },
1947
+ "128243": {
1948
+ "content": "<|reserved_special_token_235|>",
1949
+ "lstrip": false,
1950
+ "normalized": false,
1951
+ "rstrip": false,
1952
+ "single_word": false,
1953
+ "special": true
1954
+ },
1955
+ "128244": {
1956
+ "content": "<|reserved_special_token_236|>",
1957
+ "lstrip": false,
1958
+ "normalized": false,
1959
+ "rstrip": false,
1960
+ "single_word": false,
1961
+ "special": true
1962
+ },
1963
+ "128245": {
1964
+ "content": "<|reserved_special_token_237|>",
1965
+ "lstrip": false,
1966
+ "normalized": false,
1967
+ "rstrip": false,
1968
+ "single_word": false,
1969
+ "special": true
1970
+ },
1971
+ "128246": {
1972
+ "content": "<|reserved_special_token_238|>",
1973
+ "lstrip": false,
1974
+ "normalized": false,
1975
+ "rstrip": false,
1976
+ "single_word": false,
1977
+ "special": true
1978
+ },
1979
+ "128247": {
1980
+ "content": "<|reserved_special_token_239|>",
1981
+ "lstrip": false,
1982
+ "normalized": false,
1983
+ "rstrip": false,
1984
+ "single_word": false,
1985
+ "special": true
1986
+ },
1987
+ "128248": {
1988
+ "content": "<|reserved_special_token_240|>",
1989
+ "lstrip": false,
1990
+ "normalized": false,
1991
+ "rstrip": false,
1992
+ "single_word": false,
1993
+ "special": true
1994
+ },
1995
+ "128249": {
1996
+ "content": "<|reserved_special_token_241|>",
1997
+ "lstrip": false,
1998
+ "normalized": false,
1999
+ "rstrip": false,
2000
+ "single_word": false,
2001
+ "special": true
2002
+ },
2003
+ "128250": {
2004
+ "content": "<|reserved_special_token_242|>",
2005
+ "lstrip": false,
2006
+ "normalized": false,
2007
+ "rstrip": false,
2008
+ "single_word": false,
2009
+ "special": true
2010
+ },
2011
+ "128251": {
2012
+ "content": "<|reserved_special_token_243|>",
2013
+ "lstrip": false,
2014
+ "normalized": false,
2015
+ "rstrip": false,
2016
+ "single_word": false,
2017
+ "special": true
2018
+ },
2019
+ "128252": {
2020
+ "content": "<|reserved_special_token_244|>",
2021
+ "lstrip": false,
2022
+ "normalized": false,
2023
+ "rstrip": false,
2024
+ "single_word": false,
2025
+ "special": true
2026
+ },
2027
+ "128253": {
2028
+ "content": "<|reserved_special_token_245|>",
2029
+ "lstrip": false,
2030
+ "normalized": false,
2031
+ "rstrip": false,
2032
+ "single_word": false,
2033
+ "special": true
2034
+ },
2035
+ "128254": {
2036
+ "content": "<|reserved_special_token_246|>",
2037
+ "lstrip": false,
2038
+ "normalized": false,
2039
+ "rstrip": false,
2040
+ "single_word": false,
2041
+ "special": true
2042
+ },
2043
+ "128255": {
2044
+ "content": "<|reserved_special_token_247|>",
2045
+ "lstrip": false,
2046
+ "normalized": false,
2047
+ "rstrip": false,
2048
+ "single_word": false,
2049
+ "special": true
2050
+ }
2051
+ },
2052
+ "bos_token": "<|begin_of_text|>",
2053
+ "chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n{%- endif %}\n\n{#- System message #}\n{{- \"<|start_header_id|>system<|end_header_id|>\\n\\n\" }}\n{%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n{%- endif %}\n{{- \"Cutting Knowledge Date: December 2023\\n\" }}\n{{- \"Today Date: \" + date_string + \"\\n\\n\" }}\n{%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n{%- endif %}\n{{- system_message }}\n{{- \"<|eot_id|>\" }}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|start_header_id|>user<|end_header_id|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot_id|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\\n\\n'+ message['content'] | trim + '<|eot_id|>' }}\n {%- elif 'tool_calls' in message %}\n {%- if not message.tool_calls|length == 1 %}\n {{- raise_exception(\"This model only supports single tool-calls at once!\") }}\n {%- endif %}\n {%- set tool_call = message.tool_calls[0].function %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' -}}\n {{- '{\"name\": \"' + tool_call.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- \"}\" }}\n {{- \"<|eot_id|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|start_header_id|>ipython<|end_header_id|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot_id|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|start_header_id|>assistant<|end_header_id|>\\n\\n' }}\n{%- endif %}\n",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "tokenizer_class": "PreTrainedTokenizerFast"
2063
+ }
models/dsp/config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DacModel"
4
+ ],
5
+ "codebook_dim": 8,
6
+ "codebook_loss_weight": 1.0,
7
+ "codebook_size": 1024,
8
+ "commitment_loss_weight": 0.25,
9
+ "decoder_hidden_size": 1536,
10
+ "downsampling_ratios": [
11
+ 2,
12
+ 4,
13
+ 5,
14
+ 8
15
+ ],
16
+ "encoder_hidden_size": 64,
17
+ "hidden_size": 1024,
18
+ "hop_length": 512,
19
+ "model_type": "dac",
20
+ "n_codebooks": 4,
21
+ "quantizer_dropout": 0.0,
22
+ "sampling_rate": 24000,
23
+ "torch_dtype": "float32",
24
+ "transformers_version": "4.42.0.dev0",
25
+ "upsampling_ratios": [
26
+ 8,
27
+ 5,
28
+ 4,
29
+ 2
30
+ ]
31
+ }
models/dsp/weights_24khz_1.5kbps_v1.0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d77ca0b04df942ec64e6a7a162bcac093b1127700acdaec0079f40d32c4405fb
3
+ size 295731578
models/dsp/weights_24khz_3kbps_v1.0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:566a68a00dd5f5780aff5bbd80db4fd1d9aa25c639c516e596d3841710b6ffe7
3
+ size 295949662
models/lm/config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "lm",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 128000,
9
+ "eos_token_id": 128001,
10
+ "head_dim": 64,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 8192,
15
+ "max_position_embeddings": 131072,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 32,
19
+ "num_hidden_layers": 16,
20
+ "num_key_value_heads": 8,
21
+ "pad_token_id": 128004,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-05,
24
+ "rope_scaling": {
25
+ "factor": 32.0,
26
+ "high_freq_factor": 4.0,
27
+ "low_freq_factor": 1.0,
28
+ "original_max_position_embeddings": 8192,
29
+ "rope_type": "llama3"
30
+ },
31
+ "rope_theta": 500000.0,
32
+ "tie_word_embeddings": true,
33
+ "torch_dtype": "bfloat16",
34
+ "transformers_version": "4.48.0",
35
+ "unsloth_fixed": true,
36
+ "use_cache": false,
37
+ "vocab_size": 128256
38
+ }
models/lm/generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "do_sample": true,
5
+ "eos_token_id": 128001,
6
+ "max_length": 131072,
7
+ "pad_token_id": 128004,
8
+ "temperature": 0.6,
9
+ "top_p": 0.9,
10
+ "transformers_version": "4.48.0"
11
+ }
models/lm/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9e3415500b3ad47b0d87dbb6076bdd5a908195df1efe6716b12b6c449135091
3
+ size 2471645576
models/lm/special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end_of_text|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|finetune_right_pad_id|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
models/lm/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
models/lm/tokenizer_config.json ADDED
@@ -0,0 +1,2066 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "added_tokens_decoder": {
4
+ "128000": {
5
+ "content": "<|begin_of_text|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "128001": {
13
+ "content": "<|end_of_text|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "128002": {
21
+ "content": "<|reserved_special_token_0|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "128003": {
29
+ "content": "<|reserved_special_token_1|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "128004": {
37
+ "content": "<|finetune_right_pad_id|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "128005": {
45
+ "content": "<|reserved_special_token_2|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "128006": {
53
+ "content": "<|start_header_id|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "128007": {
61
+ "content": "<|end_header_id|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "128008": {
69
+ "content": "<|eom_id|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "128009": {
77
+ "content": "<|eot_id|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "128010": {
85
+ "content": "<|python_tag|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "128011": {
93
+ "content": "<|reserved_special_token_3|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "128012": {
101
+ "content": "<|reserved_special_token_4|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "128013": {
109
+ "content": "<|reserved_special_token_5|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ },
116
+ "128014": {
117
+ "content": "<|reserved_special_token_6|>",
118
+ "lstrip": false,
119
+ "normalized": false,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": true
123
+ },
124
+ "128015": {
125
+ "content": "<|reserved_special_token_7|>",
126
+ "lstrip": false,
127
+ "normalized": false,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": true
131
+ },
132
+ "128016": {
133
+ "content": "<|reserved_special_token_8|>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": true
139
+ },
140
+ "128017": {
141
+ "content": "<|reserved_special_token_9|>",
142
+ "lstrip": false,
143
+ "normalized": false,
144
+ "rstrip": false,
145
+ "single_word": false,
146
+ "special": true
147
+ },
148
+ "128018": {
149
+ "content": "<|reserved_special_token_10|>",
150
+ "lstrip": false,
151
+ "normalized": false,
152
+ "rstrip": false,
153
+ "single_word": false,
154
+ "special": true
155
+ },
156
+ "128019": {
157
+ "content": "<|reserved_special_token_11|>",
158
+ "lstrip": false,
159
+ "normalized": false,
160
+ "rstrip": false,
161
+ "single_word": false,
162
+ "special": true
163
+ },
164
+ "128020": {
165
+ "content": "<|reserved_special_token_12|>",
166
+ "lstrip": false,
167
+ "normalized": false,
168
+ "rstrip": false,
169
+ "single_word": false,
170
+ "special": true
171
+ },
172
+ "128021": {
173
+ "content": "<|reserved_special_token_13|>",
174
+ "lstrip": false,
175
+ "normalized": false,
176
+ "rstrip": false,
177
+ "single_word": false,
178
+ "special": true
179
+ },
180
+ "128022": {
181
+ "content": "<|reserved_special_token_14|>",
182
+ "lstrip": false,
183
+ "normalized": false,
184
+ "rstrip": false,
185
+ "single_word": false,
186
+ "special": true
187
+ },
188
+ "128023": {
189
+ "content": "<|reserved_special_token_15|>",
190
+ "lstrip": false,
191
+ "normalized": false,
192
+ "rstrip": false,
193
+ "single_word": false,
194
+ "special": true
195
+ },
196
+ "128024": {
197
+ "content": "<|reserved_special_token_16|>",
198
+ "lstrip": false,
199
+ "normalized": false,
200
+ "rstrip": false,
201
+ "single_word": false,
202
+ "special": true
203
+ },
204
+ "128025": {
205
+ "content": "<|reserved_special_token_17|>",
206
+ "lstrip": false,
207
+ "normalized": false,
208
+ "rstrip": false,
209
+ "single_word": false,
210
+ "special": true
211
+ },
212
+ "128026": {
213
+ "content": "<|reserved_special_token_18|>",
214
+ "lstrip": false,
215
+ "normalized": false,
216
+ "rstrip": false,
217
+ "single_word": false,
218
+ "special": true
219
+ },
220
+ "128027": {
221
+ "content": "<|reserved_special_token_19|>",
222
+ "lstrip": false,
223
+ "normalized": false,
224
+ "rstrip": false,
225
+ "single_word": false,
226
+ "special": true
227
+ },
228
+ "128028": {
229
+ "content": "<|reserved_special_token_20|>",
230
+ "lstrip": false,
231
+ "normalized": false,
232
+ "rstrip": false,
233
+ "single_word": false,
234
+ "special": true
235
+ },
236
+ "128029": {
237
+ "content": "<|reserved_special_token_21|>",
238
+ "lstrip": false,
239
+ "normalized": false,
240
+ "rstrip": false,
241
+ "single_word": false,
242
+ "special": true
243
+ },
244
+ "128030": {
245
+ "content": "<|reserved_special_token_22|>",
246
+ "lstrip": false,
247
+ "normalized": false,
248
+ "rstrip": false,
249
+ "single_word": false,
250
+ "special": true
251
+ },
252
+ "128031": {
253
+ "content": "<|reserved_special_token_23|>",
254
+ "lstrip": false,
255
+ "normalized": false,
256
+ "rstrip": false,
257
+ "single_word": false,
258
+ "special": true
259
+ },
260
+ "128032": {
261
+ "content": "<|reserved_special_token_24|>",
262
+ "lstrip": false,
263
+ "normalized": false,
264
+ "rstrip": false,
265
+ "single_word": false,
266
+ "special": true
267
+ },
268
+ "128033": {
269
+ "content": "<|reserved_special_token_25|>",
270
+ "lstrip": false,
271
+ "normalized": false,
272
+ "rstrip": false,
273
+ "single_word": false,
274
+ "special": true
275
+ },
276
+ "128034": {
277
+ "content": "<|reserved_special_token_26|>",
278
+ "lstrip": false,
279
+ "normalized": false,
280
+ "rstrip": false,
281
+ "single_word": false,
282
+ "special": true
283
+ },
284
+ "128035": {
285
+ "content": "<|reserved_special_token_27|>",
286
+ "lstrip": false,
287
+ "normalized": false,
288
+ "rstrip": false,
289
+ "single_word": false,
290
+ "special": true
291
+ },
292
+ "128036": {
293
+ "content": "<|reserved_special_token_28|>",
294
+ "lstrip": false,
295
+ "normalized": false,
296
+ "rstrip": false,
297
+ "single_word": false,
298
+ "special": true
299
+ },
300
+ "128037": {
301
+ "content": "<|reserved_special_token_29|>",
302
+ "lstrip": false,
303
+ "normalized": false,
304
+ "rstrip": false,
305
+ "single_word": false,
306
+ "special": true
307
+ },
308
+ "128038": {
309
+ "content": "<|reserved_special_token_30|>",
310
+ "lstrip": false,
311
+ "normalized": false,
312
+ "rstrip": false,
313
+ "single_word": false,
314
+ "special": true
315
+ },
316
+ "128039": {
317
+ "content": "<|reserved_special_token_31|>",
318
+ "lstrip": false,
319
+ "normalized": false,
320
+ "rstrip": false,
321
+ "single_word": false,
322
+ "special": true
323
+ },
324
+ "128040": {
325
+ "content": "<|reserved_special_token_32|>",
326
+ "lstrip": false,
327
+ "normalized": false,
328
+ "rstrip": false,
329
+ "single_word": false,
330
+ "special": true
331
+ },
332
+ "128041": {
333
+ "content": "<|reserved_special_token_33|>",
334
+ "lstrip": false,
335
+ "normalized": false,
336
+ "rstrip": false,
337
+ "single_word": false,
338
+ "special": true
339
+ },
340
+ "128042": {
341
+ "content": "<|reserved_special_token_34|>",
342
+ "lstrip": false,
343
+ "normalized": false,
344
+ "rstrip": false,
345
+ "single_word": false,
346
+ "special": true
347
+ },
348
+ "128043": {
349
+ "content": "<|reserved_special_token_35|>",
350
+ "lstrip": false,
351
+ "normalized": false,
352
+ "rstrip": false,
353
+ "single_word": false,
354
+ "special": true
355
+ },
356
+ "128044": {
357
+ "content": "<|reserved_special_token_36|>",
358
+ "lstrip": false,
359
+ "normalized": false,
360
+ "rstrip": false,
361
+ "single_word": false,
362
+ "special": true
363
+ },
364
+ "128045": {
365
+ "content": "<|reserved_special_token_37|>",
366
+ "lstrip": false,
367
+ "normalized": false,
368
+ "rstrip": false,
369
+ "single_word": false,
370
+ "special": true
371
+ },
372
+ "128046": {
373
+ "content": "<|reserved_special_token_38|>",
374
+ "lstrip": false,
375
+ "normalized": false,
376
+ "rstrip": false,
377
+ "single_word": false,
378
+ "special": true
379
+ },
380
+ "128047": {
381
+ "content": "<|reserved_special_token_39|>",
382
+ "lstrip": false,
383
+ "normalized": false,
384
+ "rstrip": false,
385
+ "single_word": false,
386
+ "special": true
387
+ },
388
+ "128048": {
389
+ "content": "<|reserved_special_token_40|>",
390
+ "lstrip": false,
391
+ "normalized": false,
392
+ "rstrip": false,
393
+ "single_word": false,
394
+ "special": true
395
+ },
396
+ "128049": {
397
+ "content": "<|reserved_special_token_41|>",
398
+ "lstrip": false,
399
+ "normalized": false,
400
+ "rstrip": false,
401
+ "single_word": false,
402
+ "special": true
403
+ },
404
+ "128050": {
405
+ "content": "<|reserved_special_token_42|>",
406
+ "lstrip": false,
407
+ "normalized": false,
408
+ "rstrip": false,
409
+ "single_word": false,
410
+ "special": true
411
+ },
412
+ "128051": {
413
+ "content": "<|reserved_special_token_43|>",
414
+ "lstrip": false,
415
+ "normalized": false,
416
+ "rstrip": false,
417
+ "single_word": false,
418
+ "special": true
419
+ },
420
+ "128052": {
421
+ "content": "<|reserved_special_token_44|>",
422
+ "lstrip": false,
423
+ "normalized": false,
424
+ "rstrip": false,
425
+ "single_word": false,
426
+ "special": true
427
+ },
428
+ "128053": {
429
+ "content": "<|reserved_special_token_45|>",
430
+ "lstrip": false,
431
+ "normalized": false,
432
+ "rstrip": false,
433
+ "single_word": false,
434
+ "special": true
435
+ },
436
+ "128054": {
437
+ "content": "<|reserved_special_token_46|>",
438
+ "lstrip": false,
439
+ "normalized": false,
440
+ "rstrip": false,
441
+ "single_word": false,
442
+ "special": true
443
+ },
444
+ "128055": {
445
+ "content": "<|reserved_special_token_47|>",
446
+ "lstrip": false,
447
+ "normalized": false,
448
+ "rstrip": false,
449
+ "single_word": false,
450
+ "special": true
451
+ },
452
+ "128056": {
453
+ "content": "<|reserved_special_token_48|>",
454
+ "lstrip": false,
455
+ "normalized": false,
456
+ "rstrip": false,
457
+ "single_word": false,
458
+ "special": true
459
+ },
460
+ "128057": {
461
+ "content": "<|reserved_special_token_49|>",
462
+ "lstrip": false,
463
+ "normalized": false,
464
+ "rstrip": false,
465
+ "single_word": false,
466
+ "special": true
467
+ },
468
+ "128058": {
469
+ "content": "<|reserved_special_token_50|>",
470
+ "lstrip": false,
471
+ "normalized": false,
472
+ "rstrip": false,
473
+ "single_word": false,
474
+ "special": true
475
+ },
476
+ "128059": {
477
+ "content": "<|reserved_special_token_51|>",
478
+ "lstrip": false,
479
+ "normalized": false,
480
+ "rstrip": false,
481
+ "single_word": false,
482
+ "special": true
483
+ },
484
+ "128060": {
485
+ "content": "<|reserved_special_token_52|>",
486
+ "lstrip": false,
487
+ "normalized": false,
488
+ "rstrip": false,
489
+ "single_word": false,
490
+ "special": true
491
+ },
492
+ "128061": {
493
+ "content": "<|reserved_special_token_53|>",
494
+ "lstrip": false,
495
+ "normalized": false,
496
+ "rstrip": false,
497
+ "single_word": false,
498
+ "special": true
499
+ },
500
+ "128062": {
501
+ "content": "<|reserved_special_token_54|>",
502
+ "lstrip": false,
503
+ "normalized": false,
504
+ "rstrip": false,
505
+ "single_word": false,
506
+ "special": true
507
+ },
508
+ "128063": {
509
+ "content": "<|reserved_special_token_55|>",
510
+ "lstrip": false,
511
+ "normalized": false,
512
+ "rstrip": false,
513
+ "single_word": false,
514
+ "special": true
515
+ },
516
+ "128064": {
517
+ "content": "<|reserved_special_token_56|>",
518
+ "lstrip": false,
519
+ "normalized": false,
520
+ "rstrip": false,
521
+ "single_word": false,
522
+ "special": true
523
+ },
524
+ "128065": {
525
+ "content": "<|reserved_special_token_57|>",
526
+ "lstrip": false,
527
+ "normalized": false,
528
+ "rstrip": false,
529
+ "single_word": false,
530
+ "special": true
531
+ },
532
+ "128066": {
533
+ "content": "<|reserved_special_token_58|>",
534
+ "lstrip": false,
535
+ "normalized": false,
536
+ "rstrip": false,
537
+ "single_word": false,
538
+ "special": true
539
+ },
540
+ "128067": {
541
+ "content": "<|reserved_special_token_59|>",
542
+ "lstrip": false,
543
+ "normalized": false,
544
+ "rstrip": false,
545
+ "single_word": false,
546
+ "special": true
547
+ },
548
+ "128068": {
549
+ "content": "<|reserved_special_token_60|>",
550
+ "lstrip": false,
551
+ "normalized": false,
552
+ "rstrip": false,
553
+ "single_word": false,
554
+ "special": true
555
+ },
556
+ "128069": {
557
+ "content": "<|reserved_special_token_61|>",
558
+ "lstrip": false,
559
+ "normalized": false,
560
+ "rstrip": false,
561
+ "single_word": false,
562
+ "special": true
563
+ },
564
+ "128070": {
565
+ "content": "<|reserved_special_token_62|>",
566
+ "lstrip": false,
567
+ "normalized": false,
568
+ "rstrip": false,
569
+ "single_word": false,
570
+ "special": true
571
+ },
572
+ "128071": {
573
+ "content": "<|reserved_special_token_63|>",
574
+ "lstrip": false,
575
+ "normalized": false,
576
+ "rstrip": false,
577
+ "single_word": false,
578
+ "special": true
579
+ },
580
+ "128072": {
581
+ "content": "<|reserved_special_token_64|>",
582
+ "lstrip": false,
583
+ "normalized": false,
584
+ "rstrip": false,
585
+ "single_word": false,
586
+ "special": true
587
+ },
588
+ "128073": {
589
+ "content": "<|reserved_special_token_65|>",
590
+ "lstrip": false,
591
+ "normalized": false,
592
+ "rstrip": false,
593
+ "single_word": false,
594
+ "special": true
595
+ },
596
+ "128074": {
597
+ "content": "<|reserved_special_token_66|>",
598
+ "lstrip": false,
599
+ "normalized": false,
600
+ "rstrip": false,
601
+ "single_word": false,
602
+ "special": true
603
+ },
604
+ "128075": {
605
+ "content": "<|reserved_special_token_67|>",
606
+ "lstrip": false,
607
+ "normalized": false,
608
+ "rstrip": false,
609
+ "single_word": false,
610
+ "special": true
611
+ },
612
+ "128076": {
613
+ "content": "<|reserved_special_token_68|>",
614
+ "lstrip": false,
615
+ "normalized": false,
616
+ "rstrip": false,
617
+ "single_word": false,
618
+ "special": true
619
+ },
620
+ "128077": {
621
+ "content": "<|reserved_special_token_69|>",
622
+ "lstrip": false,
623
+ "normalized": false,
624
+ "rstrip": false,
625
+ "single_word": false,
626
+ "special": true
627
+ },
628
+ "128078": {
629
+ "content": "<|reserved_special_token_70|>",
630
+ "lstrip": false,
631
+ "normalized": false,
632
+ "rstrip": false,
633
+ "single_word": false,
634
+ "special": true
635
+ },
636
+ "128079": {
637
+ "content": "<|reserved_special_token_71|>",
638
+ "lstrip": false,
639
+ "normalized": false,
640
+ "rstrip": false,
641
+ "single_word": false,
642
+ "special": true
643
+ },
644
+ "128080": {
645
+ "content": "<|reserved_special_token_72|>",
646
+ "lstrip": false,
647
+ "normalized": false,
648
+ "rstrip": false,
649
+ "single_word": false,
650
+ "special": true
651
+ },
652
+ "128081": {
653
+ "content": "<|reserved_special_token_73|>",
654
+ "lstrip": false,
655
+ "normalized": false,
656
+ "rstrip": false,
657
+ "single_word": false,
658
+ "special": true
659
+ },
660
+ "128082": {
661
+ "content": "<|reserved_special_token_74|>",
662
+ "lstrip": false,
663
+ "normalized": false,
664
+ "rstrip": false,
665
+ "single_word": false,
666
+ "special": true
667
+ },
668
+ "128083": {
669
+ "content": "<|reserved_special_token_75|>",
670
+ "lstrip": false,
671
+ "normalized": false,
672
+ "rstrip": false,
673
+ "single_word": false,
674
+ "special": true
675
+ },
676
+ "128084": {
677
+ "content": "<|reserved_special_token_76|>",
678
+ "lstrip": false,
679
+ "normalized": false,
680
+ "rstrip": false,
681
+ "single_word": false,
682
+ "special": true
683
+ },
684
+ "128085": {
685
+ "content": "<|reserved_special_token_77|>",
686
+ "lstrip": false,
687
+ "normalized": false,
688
+ "rstrip": false,
689
+ "single_word": false,
690
+ "special": true
691
+ },
692
+ "128086": {
693
+ "content": "<|reserved_special_token_78|>",
694
+ "lstrip": false,
695
+ "normalized": false,
696
+ "rstrip": false,
697
+ "single_word": false,
698
+ "special": true
699
+ },
700
+ "128087": {
701
+ "content": "<|reserved_special_token_79|>",
702
+ "lstrip": false,
703
+ "normalized": false,
704
+ "rstrip": false,
705
+ "single_word": false,
706
+ "special": true
707
+ },
708
+ "128088": {
709
+ "content": "<|reserved_special_token_80|>",
710
+ "lstrip": false,
711
+ "normalized": false,
712
+ "rstrip": false,
713
+ "single_word": false,
714
+ "special": true
715
+ },
716
+ "128089": {
717
+ "content": "<|reserved_special_token_81|>",
718
+ "lstrip": false,
719
+ "normalized": false,
720
+ "rstrip": false,
721
+ "single_word": false,
722
+ "special": true
723
+ },
724
+ "128090": {
725
+ "content": "<|reserved_special_token_82|>",
726
+ "lstrip": false,
727
+ "normalized": false,
728
+ "rstrip": false,
729
+ "single_word": false,
730
+ "special": true
731
+ },
732
+ "128091": {
733
+ "content": "<|reserved_special_token_83|>",
734
+ "lstrip": false,
735
+ "normalized": false,
736
+ "rstrip": false,
737
+ "single_word": false,
738
+ "special": true
739
+ },
740
+ "128092": {
741
+ "content": "<|reserved_special_token_84|>",
742
+ "lstrip": false,
743
+ "normalized": false,
744
+ "rstrip": false,
745
+ "single_word": false,
746
+ "special": true
747
+ },
748
+ "128093": {
749
+ "content": "<|reserved_special_token_85|>",
750
+ "lstrip": false,
751
+ "normalized": false,
752
+ "rstrip": false,
753
+ "single_word": false,
754
+ "special": true
755
+ },
756
+ "128094": {
757
+ "content": "<|reserved_special_token_86|>",
758
+ "lstrip": false,
759
+ "normalized": false,
760
+ "rstrip": false,
761
+ "single_word": false,
762
+ "special": true
763
+ },
764
+ "128095": {
765
+ "content": "<|reserved_special_token_87|>",
766
+ "lstrip": false,
767
+ "normalized": false,
768
+ "rstrip": false,
769
+ "single_word": false,
770
+ "special": true
771
+ },
772
+ "128096": {
773
+ "content": "<|reserved_special_token_88|>",
774
+ "lstrip": false,
775
+ "normalized": false,
776
+ "rstrip": false,
777
+ "single_word": false,
778
+ "special": true
779
+ },
780
+ "128097": {
781
+ "content": "<|reserved_special_token_89|>",
782
+ "lstrip": false,
783
+ "normalized": false,
784
+ "rstrip": false,
785
+ "single_word": false,
786
+ "special": true
787
+ },
788
+ "128098": {
789
+ "content": "<|reserved_special_token_90|>",
790
+ "lstrip": false,
791
+ "normalized": false,
792
+ "rstrip": false,
793
+ "single_word": false,
794
+ "special": true
795
+ },
796
+ "128099": {
797
+ "content": "<|reserved_special_token_91|>",
798
+ "lstrip": false,
799
+ "normalized": false,
800
+ "rstrip": false,
801
+ "single_word": false,
802
+ "special": true
803
+ },
804
+ "128100": {
805
+ "content": "<|reserved_special_token_92|>",
806
+ "lstrip": false,
807
+ "normalized": false,
808
+ "rstrip": false,
809
+ "single_word": false,
810
+ "special": true
811
+ },
812
+ "128101": {
813
+ "content": "<|reserved_special_token_93|>",
814
+ "lstrip": false,
815
+ "normalized": false,
816
+ "rstrip": false,
817
+ "single_word": false,
818
+ "special": true
819
+ },
820
+ "128102": {
821
+ "content": "<|reserved_special_token_94|>",
822
+ "lstrip": false,
823
+ "normalized": false,
824
+ "rstrip": false,
825
+ "single_word": false,
826
+ "special": true
827
+ },
828
+ "128103": {
829
+ "content": "<|reserved_special_token_95|>",
830
+ "lstrip": false,
831
+ "normalized": false,
832
+ "rstrip": false,
833
+ "single_word": false,
834
+ "special": true
835
+ },
836
+ "128104": {
837
+ "content": "<|reserved_special_token_96|>",
838
+ "lstrip": false,
839
+ "normalized": false,
840
+ "rstrip": false,
841
+ "single_word": false,
842
+ "special": true
843
+ },
844
+ "128105": {
845
+ "content": "<|reserved_special_token_97|>",
846
+ "lstrip": false,
847
+ "normalized": false,
848
+ "rstrip": false,
849
+ "single_word": false,
850
+ "special": true
851
+ },
852
+ "128106": {
853
+ "content": "<|reserved_special_token_98|>",
854
+ "lstrip": false,
855
+ "normalized": false,
856
+ "rstrip": false,
857
+ "single_word": false,
858
+ "special": true
859
+ },
860
+ "128107": {
861
+ "content": "<|reserved_special_token_99|>",
862
+ "lstrip": false,
863
+ "normalized": false,
864
+ "rstrip": false,
865
+ "single_word": false,
866
+ "special": true
867
+ },
868
+ "128108": {
869
+ "content": "<|reserved_special_token_100|>",
870
+ "lstrip": false,
871
+ "normalized": false,
872
+ "rstrip": false,
873
+ "single_word": false,
874
+ "special": true
875
+ },
876
+ "128109": {
877
+ "content": "<|reserved_special_token_101|>",
878
+ "lstrip": false,
879
+ "normalized": false,
880
+ "rstrip": false,
881
+ "single_word": false,
882
+ "special": true
883
+ },
884
+ "128110": {
885
+ "content": "<|reserved_special_token_102|>",
886
+ "lstrip": false,
887
+ "normalized": false,
888
+ "rstrip": false,
889
+ "single_word": false,
890
+ "special": true
891
+ },
892
+ "128111": {
893
+ "content": "<|reserved_special_token_103|>",
894
+ "lstrip": false,
895
+ "normalized": false,
896
+ "rstrip": false,
897
+ "single_word": false,
898
+ "special": true
899
+ },
900
+ "128112": {
901
+ "content": "<|reserved_special_token_104|>",
902
+ "lstrip": false,
903
+ "normalized": false,
904
+ "rstrip": false,
905
+ "single_word": false,
906
+ "special": true
907
+ },
908
+ "128113": {
909
+ "content": "<|reserved_special_token_105|>",
910
+ "lstrip": false,
911
+ "normalized": false,
912
+ "rstrip": false,
913
+ "single_word": false,
914
+ "special": true
915
+ },
916
+ "128114": {
917
+ "content": "<|reserved_special_token_106|>",
918
+ "lstrip": false,
919
+ "normalized": false,
920
+ "rstrip": false,
921
+ "single_word": false,
922
+ "special": true
923
+ },
924
+ "128115": {
925
+ "content": "<|reserved_special_token_107|>",
926
+ "lstrip": false,
927
+ "normalized": false,
928
+ "rstrip": false,
929
+ "single_word": false,
930
+ "special": true
931
+ },
932
+ "128116": {
933
+ "content": "<|reserved_special_token_108|>",
934
+ "lstrip": false,
935
+ "normalized": false,
936
+ "rstrip": false,
937
+ "single_word": false,
938
+ "special": true
939
+ },
940
+ "128117": {
941
+ "content": "<|reserved_special_token_109|>",
942
+ "lstrip": false,
943
+ "normalized": false,
944
+ "rstrip": false,
945
+ "single_word": false,
946
+ "special": true
947
+ },
948
+ "128118": {
949
+ "content": "<|reserved_special_token_110|>",
950
+ "lstrip": false,
951
+ "normalized": false,
952
+ "rstrip": false,
953
+ "single_word": false,
954
+ "special": true
955
+ },
956
+ "128119": {
957
+ "content": "<|reserved_special_token_111|>",
958
+ "lstrip": false,
959
+ "normalized": false,
960
+ "rstrip": false,
961
+ "single_word": false,
962
+ "special": true
963
+ },
964
+ "128120": {
965
+ "content": "<|reserved_special_token_112|>",
966
+ "lstrip": false,
967
+ "normalized": false,
968
+ "rstrip": false,
969
+ "single_word": false,
970
+ "special": true
971
+ },
972
+ "128121": {
973
+ "content": "<|reserved_special_token_113|>",
974
+ "lstrip": false,
975
+ "normalized": false,
976
+ "rstrip": false,
977
+ "single_word": false,
978
+ "special": true
979
+ },
980
+ "128122": {
981
+ "content": "<|reserved_special_token_114|>",
982
+ "lstrip": false,
983
+ "normalized": false,
984
+ "rstrip": false,
985
+ "single_word": false,
986
+ "special": true
987
+ },
988
+ "128123": {
989
+ "content": "<|reserved_special_token_115|>",
990
+ "lstrip": false,
991
+ "normalized": false,
992
+ "rstrip": false,
993
+ "single_word": false,
994
+ "special": true
995
+ },
996
+ "128124": {
997
+ "content": "<|reserved_special_token_116|>",
998
+ "lstrip": false,
999
+ "normalized": false,
1000
+ "rstrip": false,
1001
+ "single_word": false,
1002
+ "special": true
1003
+ },
1004
+ "128125": {
1005
+ "content": "<|reserved_special_token_117|>",
1006
+ "lstrip": false,
1007
+ "normalized": false,
1008
+ "rstrip": false,
1009
+ "single_word": false,
1010
+ "special": true
1011
+ },
1012
+ "128126": {
1013
+ "content": "<|reserved_special_token_118|>",
1014
+ "lstrip": false,
1015
+ "normalized": false,
1016
+ "rstrip": false,
1017
+ "single_word": false,
1018
+ "special": true
1019
+ },
1020
+ "128127": {
1021
+ "content": "<|reserved_special_token_119|>",
1022
+ "lstrip": false,
1023
+ "normalized": false,
1024
+ "rstrip": false,
1025
+ "single_word": false,
1026
+ "special": true
1027
+ },
1028
+ "128128": {
1029
+ "content": "<|reserved_special_token_120|>",
1030
+ "lstrip": false,
1031
+ "normalized": false,
1032
+ "rstrip": false,
1033
+ "single_word": false,
1034
+ "special": true
1035
+ },
1036
+ "128129": {
1037
+ "content": "<|reserved_special_token_121|>",
1038
+ "lstrip": false,
1039
+ "normalized": false,
1040
+ "rstrip": false,
1041
+ "single_word": false,
1042
+ "special": true
1043
+ },
1044
+ "128130": {
1045
+ "content": "<|reserved_special_token_122|>",
1046
+ "lstrip": false,
1047
+ "normalized": false,
1048
+ "rstrip": false,
1049
+ "single_word": false,
1050
+ "special": true
1051
+ },
1052
+ "128131": {
1053
+ "content": "<|reserved_special_token_123|>",
1054
+ "lstrip": false,
1055
+ "normalized": false,
1056
+ "rstrip": false,
1057
+ "single_word": false,
1058
+ "special": true
1059
+ },
1060
+ "128132": {
1061
+ "content": "<|reserved_special_token_124|>",
1062
+ "lstrip": false,
1063
+ "normalized": false,
1064
+ "rstrip": false,
1065
+ "single_word": false,
1066
+ "special": true
1067
+ },
1068
+ "128133": {
1069
+ "content": "<|reserved_special_token_125|>",
1070
+ "lstrip": false,
1071
+ "normalized": false,
1072
+ "rstrip": false,
1073
+ "single_word": false,
1074
+ "special": true
1075
+ },
1076
+ "128134": {
1077
+ "content": "<|reserved_special_token_126|>",
1078
+ "lstrip": false,
1079
+ "normalized": false,
1080
+ "rstrip": false,
1081
+ "single_word": false,
1082
+ "special": true
1083
+ },
1084
+ "128135": {
1085
+ "content": "<|reserved_special_token_127|>",
1086
+ "lstrip": false,
1087
+ "normalized": false,
1088
+ "rstrip": false,
1089
+ "single_word": false,
1090
+ "special": true
1091
+ },
1092
+ "128136": {
1093
+ "content": "<|reserved_special_token_128|>",
1094
+ "lstrip": false,
1095
+ "normalized": false,
1096
+ "rstrip": false,
1097
+ "single_word": false,
1098
+ "special": true
1099
+ },
1100
+ "128137": {
1101
+ "content": "<|reserved_special_token_129|>",
1102
+ "lstrip": false,
1103
+ "normalized": false,
1104
+ "rstrip": false,
1105
+ "single_word": false,
1106
+ "special": true
1107
+ },
1108
+ "128138": {
1109
+ "content": "<|reserved_special_token_130|>",
1110
+ "lstrip": false,
1111
+ "normalized": false,
1112
+ "rstrip": false,
1113
+ "single_word": false,
1114
+ "special": true
1115
+ },
1116
+ "128139": {
1117
+ "content": "<|reserved_special_token_131|>",
1118
+ "lstrip": false,
1119
+ "normalized": false,
1120
+ "rstrip": false,
1121
+ "single_word": false,
1122
+ "special": true
1123
+ },
1124
+ "128140": {
1125
+ "content": "<|reserved_special_token_132|>",
1126
+ "lstrip": false,
1127
+ "normalized": false,
1128
+ "rstrip": false,
1129
+ "single_word": false,
1130
+ "special": true
1131
+ },
1132
+ "128141": {
1133
+ "content": "<|reserved_special_token_133|>",
1134
+ "lstrip": false,
1135
+ "normalized": false,
1136
+ "rstrip": false,
1137
+ "single_word": false,
1138
+ "special": true
1139
+ },
1140
+ "128142": {
1141
+ "content": "<|reserved_special_token_134|>",
1142
+ "lstrip": false,
1143
+ "normalized": false,
1144
+ "rstrip": false,
1145
+ "single_word": false,
1146
+ "special": true
1147
+ },
1148
+ "128143": {
1149
+ "content": "<|reserved_special_token_135|>",
1150
+ "lstrip": false,
1151
+ "normalized": false,
1152
+ "rstrip": false,
1153
+ "single_word": false,
1154
+ "special": true
1155
+ },
1156
+ "128144": {
1157
+ "content": "<|reserved_special_token_136|>",
1158
+ "lstrip": false,
1159
+ "normalized": false,
1160
+ "rstrip": false,
1161
+ "single_word": false,
1162
+ "special": true
1163
+ },
1164
+ "128145": {
1165
+ "content": "<|reserved_special_token_137|>",
1166
+ "lstrip": false,
1167
+ "normalized": false,
1168
+ "rstrip": false,
1169
+ "single_word": false,
1170
+ "special": true
1171
+ },
1172
+ "128146": {
1173
+ "content": "<|reserved_special_token_138|>",
1174
+ "lstrip": false,
1175
+ "normalized": false,
1176
+ "rstrip": false,
1177
+ "single_word": false,
1178
+ "special": true
1179
+ },
1180
+ "128147": {
1181
+ "content": "<|reserved_special_token_139|>",
1182
+ "lstrip": false,
1183
+ "normalized": false,
1184
+ "rstrip": false,
1185
+ "single_word": false,
1186
+ "special": true
1187
+ },
1188
+ "128148": {
1189
+ "content": "<|reserved_special_token_140|>",
1190
+ "lstrip": false,
1191
+ "normalized": false,
1192
+ "rstrip": false,
1193
+ "single_word": false,
1194
+ "special": true
1195
+ },
1196
+ "128149": {
1197
+ "content": "<|reserved_special_token_141|>",
1198
+ "lstrip": false,
1199
+ "normalized": false,
1200
+ "rstrip": false,
1201
+ "single_word": false,
1202
+ "special": true
1203
+ },
1204
+ "128150": {
1205
+ "content": "<|reserved_special_token_142|>",
1206
+ "lstrip": false,
1207
+ "normalized": false,
1208
+ "rstrip": false,
1209
+ "single_word": false,
1210
+ "special": true
1211
+ },
1212
+ "128151": {
1213
+ "content": "<|reserved_special_token_143|>",
1214
+ "lstrip": false,
1215
+ "normalized": false,
1216
+ "rstrip": false,
1217
+ "single_word": false,
1218
+ "special": true
1219
+ },
1220
+ "128152": {
1221
+ "content": "<|reserved_special_token_144|>",
1222
+ "lstrip": false,
1223
+ "normalized": false,
1224
+ "rstrip": false,
1225
+ "single_word": false,
1226
+ "special": true
1227
+ },
1228
+ "128153": {
1229
+ "content": "<|reserved_special_token_145|>",
1230
+ "lstrip": false,
1231
+ "normalized": false,
1232
+ "rstrip": false,
1233
+ "single_word": false,
1234
+ "special": true
1235
+ },
1236
+ "128154": {
1237
+ "content": "<|reserved_special_token_146|>",
1238
+ "lstrip": false,
1239
+ "normalized": false,
1240
+ "rstrip": false,
1241
+ "single_word": false,
1242
+ "special": true
1243
+ },
1244
+ "128155": {
1245
+ "content": "<|reserved_special_token_147|>",
1246
+ "lstrip": false,
1247
+ "normalized": false,
1248
+ "rstrip": false,
1249
+ "single_word": false,
1250
+ "special": true
1251
+ },
1252
+ "128156": {
1253
+ "content": "<|reserved_special_token_148|>",
1254
+ "lstrip": false,
1255
+ "normalized": false,
1256
+ "rstrip": false,
1257
+ "single_word": false,
1258
+ "special": true
1259
+ },
1260
+ "128157": {
1261
+ "content": "<|reserved_special_token_149|>",
1262
+ "lstrip": false,
1263
+ "normalized": false,
1264
+ "rstrip": false,
1265
+ "single_word": false,
1266
+ "special": true
1267
+ },
1268
+ "128158": {
1269
+ "content": "<|reserved_special_token_150|>",
1270
+ "lstrip": false,
1271
+ "normalized": false,
1272
+ "rstrip": false,
1273
+ "single_word": false,
1274
+ "special": true
1275
+ },
1276
+ "128159": {
1277
+ "content": "<|reserved_special_token_151|>",
1278
+ "lstrip": false,
1279
+ "normalized": false,
1280
+ "rstrip": false,
1281
+ "single_word": false,
1282
+ "special": true
1283
+ },
1284
+ "128160": {
1285
+ "content": "<|reserved_special_token_152|>",
1286
+ "lstrip": false,
1287
+ "normalized": false,
1288
+ "rstrip": false,
1289
+ "single_word": false,
1290
+ "special": true
1291
+ },
1292
+ "128161": {
1293
+ "content": "<|reserved_special_token_153|>",
1294
+ "lstrip": false,
1295
+ "normalized": false,
1296
+ "rstrip": false,
1297
+ "single_word": false,
1298
+ "special": true
1299
+ },
1300
+ "128162": {
1301
+ "content": "<|reserved_special_token_154|>",
1302
+ "lstrip": false,
1303
+ "normalized": false,
1304
+ "rstrip": false,
1305
+ "single_word": false,
1306
+ "special": true
1307
+ },
1308
+ "128163": {
1309
+ "content": "<|reserved_special_token_155|>",
1310
+ "lstrip": false,
1311
+ "normalized": false,
1312
+ "rstrip": false,
1313
+ "single_word": false,
1314
+ "special": true
1315
+ },
1316
+ "128164": {
1317
+ "content": "<|reserved_special_token_156|>",
1318
+ "lstrip": false,
1319
+ "normalized": false,
1320
+ "rstrip": false,
1321
+ "single_word": false,
1322
+ "special": true
1323
+ },
1324
+ "128165": {
1325
+ "content": "<|reserved_special_token_157|>",
1326
+ "lstrip": false,
1327
+ "normalized": false,
1328
+ "rstrip": false,
1329
+ "single_word": false,
1330
+ "special": true
1331
+ },
1332
+ "128166": {
1333
+ "content": "<|reserved_special_token_158|>",
1334
+ "lstrip": false,
1335
+ "normalized": false,
1336
+ "rstrip": false,
1337
+ "single_word": false,
1338
+ "special": true
1339
+ },
1340
+ "128167": {
1341
+ "content": "<|reserved_special_token_159|>",
1342
+ "lstrip": false,
1343
+ "normalized": false,
1344
+ "rstrip": false,
1345
+ "single_word": false,
1346
+ "special": true
1347
+ },
1348
+ "128168": {
1349
+ "content": "<|reserved_special_token_160|>",
1350
+ "lstrip": false,
1351
+ "normalized": false,
1352
+ "rstrip": false,
1353
+ "single_word": false,
1354
+ "special": true
1355
+ },
1356
+ "128169": {
1357
+ "content": "<|reserved_special_token_161|>",
1358
+ "lstrip": false,
1359
+ "normalized": false,
1360
+ "rstrip": false,
1361
+ "single_word": false,
1362
+ "special": true
1363
+ },
1364
+ "128170": {
1365
+ "content": "<|reserved_special_token_162|>",
1366
+ "lstrip": false,
1367
+ "normalized": false,
1368
+ "rstrip": false,
1369
+ "single_word": false,
1370
+ "special": true
1371
+ },
1372
+ "128171": {
1373
+ "content": "<|reserved_special_token_163|>",
1374
+ "lstrip": false,
1375
+ "normalized": false,
1376
+ "rstrip": false,
1377
+ "single_word": false,
1378
+ "special": true
1379
+ },
1380
+ "128172": {
1381
+ "content": "<|reserved_special_token_164|>",
1382
+ "lstrip": false,
1383
+ "normalized": false,
1384
+ "rstrip": false,
1385
+ "single_word": false,
1386
+ "special": true
1387
+ },
1388
+ "128173": {
1389
+ "content": "<|reserved_special_token_165|>",
1390
+ "lstrip": false,
1391
+ "normalized": false,
1392
+ "rstrip": false,
1393
+ "single_word": false,
1394
+ "special": true
1395
+ },
1396
+ "128174": {
1397
+ "content": "<|reserved_special_token_166|>",
1398
+ "lstrip": false,
1399
+ "normalized": false,
1400
+ "rstrip": false,
1401
+ "single_word": false,
1402
+ "special": true
1403
+ },
1404
+ "128175": {
1405
+ "content": "<|reserved_special_token_167|>",
1406
+ "lstrip": false,
1407
+ "normalized": false,
1408
+ "rstrip": false,
1409
+ "single_word": false,
1410
+ "special": true
1411
+ },
1412
+ "128176": {
1413
+ "content": "<|reserved_special_token_168|>",
1414
+ "lstrip": false,
1415
+ "normalized": false,
1416
+ "rstrip": false,
1417
+ "single_word": false,
1418
+ "special": true
1419
+ },
1420
+ "128177": {
1421
+ "content": "<|reserved_special_token_169|>",
1422
+ "lstrip": false,
1423
+ "normalized": false,
1424
+ "rstrip": false,
1425
+ "single_word": false,
1426
+ "special": true
1427
+ },
1428
+ "128178": {
1429
+ "content": "<|reserved_special_token_170|>",
1430
+ "lstrip": false,
1431
+ "normalized": false,
1432
+ "rstrip": false,
1433
+ "single_word": false,
1434
+ "special": true
1435
+ },
1436
+ "128179": {
1437
+ "content": "<|reserved_special_token_171|>",
1438
+ "lstrip": false,
1439
+ "normalized": false,
1440
+ "rstrip": false,
1441
+ "single_word": false,
1442
+ "special": true
1443
+ },
1444
+ "128180": {
1445
+ "content": "<|reserved_special_token_172|>",
1446
+ "lstrip": false,
1447
+ "normalized": false,
1448
+ "rstrip": false,
1449
+ "single_word": false,
1450
+ "special": true
1451
+ },
1452
+ "128181": {
1453
+ "content": "<|reserved_special_token_173|>",
1454
+ "lstrip": false,
1455
+ "normalized": false,
1456
+ "rstrip": false,
1457
+ "single_word": false,
1458
+ "special": true
1459
+ },
1460
+ "128182": {
1461
+ "content": "<|reserved_special_token_174|>",
1462
+ "lstrip": false,
1463
+ "normalized": false,
1464
+ "rstrip": false,
1465
+ "single_word": false,
1466
+ "special": true
1467
+ },
1468
+ "128183": {
1469
+ "content": "<|reserved_special_token_175|>",
1470
+ "lstrip": false,
1471
+ "normalized": false,
1472
+ "rstrip": false,
1473
+ "single_word": false,
1474
+ "special": true
1475
+ },
1476
+ "128184": {
1477
+ "content": "<|reserved_special_token_176|>",
1478
+ "lstrip": false,
1479
+ "normalized": false,
1480
+ "rstrip": false,
1481
+ "single_word": false,
1482
+ "special": true
1483
+ },
1484
+ "128185": {
1485
+ "content": "<|reserved_special_token_177|>",
1486
+ "lstrip": false,
1487
+ "normalized": false,
1488
+ "rstrip": false,
1489
+ "single_word": false,
1490
+ "special": true
1491
+ },
1492
+ "128186": {
1493
+ "content": "<|reserved_special_token_178|>",
1494
+ "lstrip": false,
1495
+ "normalized": false,
1496
+ "rstrip": false,
1497
+ "single_word": false,
1498
+ "special": true
1499
+ },
1500
+ "128187": {
1501
+ "content": "<|reserved_special_token_179|>",
1502
+ "lstrip": false,
1503
+ "normalized": false,
1504
+ "rstrip": false,
1505
+ "single_word": false,
1506
+ "special": true
1507
+ },
1508
+ "128188": {
1509
+ "content": "<|reserved_special_token_180|>",
1510
+ "lstrip": false,
1511
+ "normalized": false,
1512
+ "rstrip": false,
1513
+ "single_word": false,
1514
+ "special": true
1515
+ },
1516
+ "128189": {
1517
+ "content": "<|reserved_special_token_181|>",
1518
+ "lstrip": false,
1519
+ "normalized": false,
1520
+ "rstrip": false,
1521
+ "single_word": false,
1522
+ "special": true
1523
+ },
1524
+ "128190": {
1525
+ "content": "<|reserved_special_token_182|>",
1526
+ "lstrip": false,
1527
+ "normalized": false,
1528
+ "rstrip": false,
1529
+ "single_word": false,
1530
+ "special": true
1531
+ },
1532
+ "128191": {
1533
+ "content": "<|reserved_special_token_183|>",
1534
+ "lstrip": false,
1535
+ "normalized": false,
1536
+ "rstrip": false,
1537
+ "single_word": false,
1538
+ "special": true
1539
+ },
1540
+ "128192": {
1541
+ "content": "<|reserved_special_token_184|>",
1542
+ "lstrip": false,
1543
+ "normalized": false,
1544
+ "rstrip": false,
1545
+ "single_word": false,
1546
+ "special": true
1547
+ },
1548
+ "128193": {
1549
+ "content": "<|reserved_special_token_185|>",
1550
+ "lstrip": false,
1551
+ "normalized": false,
1552
+ "rstrip": false,
1553
+ "single_word": false,
1554
+ "special": true
1555
+ },
1556
+ "128194": {
1557
+ "content": "<|reserved_special_token_186|>",
1558
+ "lstrip": false,
1559
+ "normalized": false,
1560
+ "rstrip": false,
1561
+ "single_word": false,
1562
+ "special": true
1563
+ },
1564
+ "128195": {
1565
+ "content": "<|reserved_special_token_187|>",
1566
+ "lstrip": false,
1567
+ "normalized": false,
1568
+ "rstrip": false,
1569
+ "single_word": false,
1570
+ "special": true
1571
+ },
1572
+ "128196": {
1573
+ "content": "<|reserved_special_token_188|>",
1574
+ "lstrip": false,
1575
+ "normalized": false,
1576
+ "rstrip": false,
1577
+ "single_word": false,
1578
+ "special": true
1579
+ },
1580
+ "128197": {
1581
+ "content": "<|reserved_special_token_189|>",
1582
+ "lstrip": false,
1583
+ "normalized": false,
1584
+ "rstrip": false,
1585
+ "single_word": false,
1586
+ "special": true
1587
+ },
1588
+ "128198": {
1589
+ "content": "<|reserved_special_token_190|>",
1590
+ "lstrip": false,
1591
+ "normalized": false,
1592
+ "rstrip": false,
1593
+ "single_word": false,
1594
+ "special": true
1595
+ },
1596
+ "128199": {
1597
+ "content": "<|reserved_special_token_191|>",
1598
+ "lstrip": false,
1599
+ "normalized": false,
1600
+ "rstrip": false,
1601
+ "single_word": false,
1602
+ "special": true
1603
+ },
1604
+ "128200": {
1605
+ "content": "<|reserved_special_token_192|>",
1606
+ "lstrip": false,
1607
+ "normalized": false,
1608
+ "rstrip": false,
1609
+ "single_word": false,
1610
+ "special": true
1611
+ },
1612
+ "128201": {
1613
+ "content": "<|reserved_special_token_193|>",
1614
+ "lstrip": false,
1615
+ "normalized": false,
1616
+ "rstrip": false,
1617
+ "single_word": false,
1618
+ "special": true
1619
+ },
1620
+ "128202": {
1621
+ "content": "<|reserved_special_token_194|>",
1622
+ "lstrip": false,
1623
+ "normalized": false,
1624
+ "rstrip": false,
1625
+ "single_word": false,
1626
+ "special": true
1627
+ },
1628
+ "128203": {
1629
+ "content": "<|reserved_special_token_195|>",
1630
+ "lstrip": false,
1631
+ "normalized": false,
1632
+ "rstrip": false,
1633
+ "single_word": false,
1634
+ "special": true
1635
+ },
1636
+ "128204": {
1637
+ "content": "<|reserved_special_token_196|>",
1638
+ "lstrip": false,
1639
+ "normalized": false,
1640
+ "rstrip": false,
1641
+ "single_word": false,
1642
+ "special": true
1643
+ },
1644
+ "128205": {
1645
+ "content": "<|reserved_special_token_197|>",
1646
+ "lstrip": false,
1647
+ "normalized": false,
1648
+ "rstrip": false,
1649
+ "single_word": false,
1650
+ "special": true
1651
+ },
1652
+ "128206": {
1653
+ "content": "<|reserved_special_token_198|>",
1654
+ "lstrip": false,
1655
+ "normalized": false,
1656
+ "rstrip": false,
1657
+ "single_word": false,
1658
+ "special": true
1659
+ },
1660
+ "128207": {
1661
+ "content": "<|reserved_special_token_199|>",
1662
+ "lstrip": false,
1663
+ "normalized": false,
1664
+ "rstrip": false,
1665
+ "single_word": false,
1666
+ "special": true
1667
+ },
1668
+ "128208": {
1669
+ "content": "<|reserved_special_token_200|>",
1670
+ "lstrip": false,
1671
+ "normalized": false,
1672
+ "rstrip": false,
1673
+ "single_word": false,
1674
+ "special": true
1675
+ },
1676
+ "128209": {
1677
+ "content": "<|reserved_special_token_201|>",
1678
+ "lstrip": false,
1679
+ "normalized": false,
1680
+ "rstrip": false,
1681
+ "single_word": false,
1682
+ "special": true
1683
+ },
1684
+ "128210": {
1685
+ "content": "<|reserved_special_token_202|>",
1686
+ "lstrip": false,
1687
+ "normalized": false,
1688
+ "rstrip": false,
1689
+ "single_word": false,
1690
+ "special": true
1691
+ },
1692
+ "128211": {
1693
+ "content": "<|reserved_special_token_203|>",
1694
+ "lstrip": false,
1695
+ "normalized": false,
1696
+ "rstrip": false,
1697
+ "single_word": false,
1698
+ "special": true
1699
+ },
1700
+ "128212": {
1701
+ "content": "<|reserved_special_token_204|>",
1702
+ "lstrip": false,
1703
+ "normalized": false,
1704
+ "rstrip": false,
1705
+ "single_word": false,
1706
+ "special": true
1707
+ },
1708
+ "128213": {
1709
+ "content": "<|reserved_special_token_205|>",
1710
+ "lstrip": false,
1711
+ "normalized": false,
1712
+ "rstrip": false,
1713
+ "single_word": false,
1714
+ "special": true
1715
+ },
1716
+ "128214": {
1717
+ "content": "<|reserved_special_token_206|>",
1718
+ "lstrip": false,
1719
+ "normalized": false,
1720
+ "rstrip": false,
1721
+ "single_word": false,
1722
+ "special": true
1723
+ },
1724
+ "128215": {
1725
+ "content": "<|reserved_special_token_207|>",
1726
+ "lstrip": false,
1727
+ "normalized": false,
1728
+ "rstrip": false,
1729
+ "single_word": false,
1730
+ "special": true
1731
+ },
1732
+ "128216": {
1733
+ "content": "<|reserved_special_token_208|>",
1734
+ "lstrip": false,
1735
+ "normalized": false,
1736
+ "rstrip": false,
1737
+ "single_word": false,
1738
+ "special": true
1739
+ },
1740
+ "128217": {
1741
+ "content": "<|reserved_special_token_209|>",
1742
+ "lstrip": false,
1743
+ "normalized": false,
1744
+ "rstrip": false,
1745
+ "single_word": false,
1746
+ "special": true
1747
+ },
1748
+ "128218": {
1749
+ "content": "<|reserved_special_token_210|>",
1750
+ "lstrip": false,
1751
+ "normalized": false,
1752
+ "rstrip": false,
1753
+ "single_word": false,
1754
+ "special": true
1755
+ },
1756
+ "128219": {
1757
+ "content": "<|reserved_special_token_211|>",
1758
+ "lstrip": false,
1759
+ "normalized": false,
1760
+ "rstrip": false,
1761
+ "single_word": false,
1762
+ "special": true
1763
+ },
1764
+ "128220": {
1765
+ "content": "<|reserved_special_token_212|>",
1766
+ "lstrip": false,
1767
+ "normalized": false,
1768
+ "rstrip": false,
1769
+ "single_word": false,
1770
+ "special": true
1771
+ },
1772
+ "128221": {
1773
+ "content": "<|reserved_special_token_213|>",
1774
+ "lstrip": false,
1775
+ "normalized": false,
1776
+ "rstrip": false,
1777
+ "single_word": false,
1778
+ "special": true
1779
+ },
1780
+ "128222": {
1781
+ "content": "<|reserved_special_token_214|>",
1782
+ "lstrip": false,
1783
+ "normalized": false,
1784
+ "rstrip": false,
1785
+ "single_word": false,
1786
+ "special": true
1787
+ },
1788
+ "128223": {
1789
+ "content": "<|reserved_special_token_215|>",
1790
+ "lstrip": false,
1791
+ "normalized": false,
1792
+ "rstrip": false,
1793
+ "single_word": false,
1794
+ "special": true
1795
+ },
1796
+ "128224": {
1797
+ "content": "<|reserved_special_token_216|>",
1798
+ "lstrip": false,
1799
+ "normalized": false,
1800
+ "rstrip": false,
1801
+ "single_word": false,
1802
+ "special": true
1803
+ },
1804
+ "128225": {
1805
+ "content": "<|reserved_special_token_217|>",
1806
+ "lstrip": false,
1807
+ "normalized": false,
1808
+ "rstrip": false,
1809
+ "single_word": false,
1810
+ "special": true
1811
+ },
1812
+ "128226": {
1813
+ "content": "<|reserved_special_token_218|>",
1814
+ "lstrip": false,
1815
+ "normalized": false,
1816
+ "rstrip": false,
1817
+ "single_word": false,
1818
+ "special": true
1819
+ },
1820
+ "128227": {
1821
+ "content": "<|reserved_special_token_219|>",
1822
+ "lstrip": false,
1823
+ "normalized": false,
1824
+ "rstrip": false,
1825
+ "single_word": false,
1826
+ "special": true
1827
+ },
1828
+ "128228": {
1829
+ "content": "<|reserved_special_token_220|>",
1830
+ "lstrip": false,
1831
+ "normalized": false,
1832
+ "rstrip": false,
1833
+ "single_word": false,
1834
+ "special": true
1835
+ },
1836
+ "128229": {
1837
+ "content": "<|reserved_special_token_221|>",
1838
+ "lstrip": false,
1839
+ "normalized": false,
1840
+ "rstrip": false,
1841
+ "single_word": false,
1842
+ "special": true
1843
+ },
1844
+ "128230": {
1845
+ "content": "<|reserved_special_token_222|>",
1846
+ "lstrip": false,
1847
+ "normalized": false,
1848
+ "rstrip": false,
1849
+ "single_word": false,
1850
+ "special": true
1851
+ },
1852
+ "128231": {
1853
+ "content": "<|reserved_special_token_223|>",
1854
+ "lstrip": false,
1855
+ "normalized": false,
1856
+ "rstrip": false,
1857
+ "single_word": false,
1858
+ "special": true
1859
+ },
1860
+ "128232": {
1861
+ "content": "<|reserved_special_token_224|>",
1862
+ "lstrip": false,
1863
+ "normalized": false,
1864
+ "rstrip": false,
1865
+ "single_word": false,
1866
+ "special": true
1867
+ },
1868
+ "128233": {
1869
+ "content": "<|reserved_special_token_225|>",
1870
+ "lstrip": false,
1871
+ "normalized": false,
1872
+ "rstrip": false,
1873
+ "single_word": false,
1874
+ "special": true
1875
+ },
1876
+ "128234": {
1877
+ "content": "<|reserved_special_token_226|>",
1878
+ "lstrip": false,
1879
+ "normalized": false,
1880
+ "rstrip": false,
1881
+ "single_word": false,
1882
+ "special": true
1883
+ },
1884
+ "128235": {
1885
+ "content": "<|reserved_special_token_227|>",
1886
+ "lstrip": false,
1887
+ "normalized": false,
1888
+ "rstrip": false,
1889
+ "single_word": false,
1890
+ "special": true
1891
+ },
1892
+ "128236": {
1893
+ "content": "<|reserved_special_token_228|>",
1894
+ "lstrip": false,
1895
+ "normalized": false,
1896
+ "rstrip": false,
1897
+ "single_word": false,
1898
+ "special": true
1899
+ },
1900
+ "128237": {
1901
+ "content": "<|reserved_special_token_229|>",
1902
+ "lstrip": false,
1903
+ "normalized": false,
1904
+ "rstrip": false,
1905
+ "single_word": false,
1906
+ "special": true
1907
+ },
1908
+ "128238": {
1909
+ "content": "<|reserved_special_token_230|>",
1910
+ "lstrip": false,
1911
+ "normalized": false,
1912
+ "rstrip": false,
1913
+ "single_word": false,
1914
+ "special": true
1915
+ },
1916
+ "128239": {
1917
+ "content": "<|reserved_special_token_231|>",
1918
+ "lstrip": false,
1919
+ "normalized": false,
1920
+ "rstrip": false,
1921
+ "single_word": false,
1922
+ "special": true
1923
+ },
1924
+ "128240": {
1925
+ "content": "<|reserved_special_token_232|>",
1926
+ "lstrip": false,
1927
+ "normalized": false,
1928
+ "rstrip": false,
1929
+ "single_word": false,
1930
+ "special": true
1931
+ },
1932
+ "128241": {
1933
+ "content": "<|reserved_special_token_233|>",
1934
+ "lstrip": false,
1935
+ "normalized": false,
1936
+ "rstrip": false,
1937
+ "single_word": false,
1938
+ "special": true
1939
+ },
1940
+ "128242": {
1941
+ "content": "<|reserved_special_token_234|>",
1942
+ "lstrip": false,
1943
+ "normalized": false,
1944
+ "rstrip": false,
1945
+ "single_word": false,
1946
+ "special": true
1947
+ },
1948
+ "128243": {
1949
+ "content": "<|reserved_special_token_235|>",
1950
+ "lstrip": false,
1951
+ "normalized": false,
1952
+ "rstrip": false,
1953
+ "single_word": false,
1954
+ "special": true
1955
+ },
1956
+ "128244": {
1957
+ "content": "<|reserved_special_token_236|>",
1958
+ "lstrip": false,
1959
+ "normalized": false,
1960
+ "rstrip": false,
1961
+ "single_word": false,
1962
+ "special": true
1963
+ },
1964
+ "128245": {
1965
+ "content": "<|reserved_special_token_237|>",
1966
+ "lstrip": false,
1967
+ "normalized": false,
1968
+ "rstrip": false,
1969
+ "single_word": false,
1970
+ "special": true
1971
+ },
1972
+ "128246": {
1973
+ "content": "<|reserved_special_token_238|>",
1974
+ "lstrip": false,
1975
+ "normalized": false,
1976
+ "rstrip": false,
1977
+ "single_word": false,
1978
+ "special": true
1979
+ },
1980
+ "128247": {
1981
+ "content": "<|reserved_special_token_239|>",
1982
+ "lstrip": false,
1983
+ "normalized": false,
1984
+ "rstrip": false,
1985
+ "single_word": false,
1986
+ "special": true
1987
+ },
1988
+ "128248": {
1989
+ "content": "<|reserved_special_token_240|>",
1990
+ "lstrip": false,
1991
+ "normalized": false,
1992
+ "rstrip": false,
1993
+ "single_word": false,
1994
+ "special": true
1995
+ },
1996
+ "128249": {
1997
+ "content": "<|reserved_special_token_241|>",
1998
+ "lstrip": false,
1999
+ "normalized": false,
2000
+ "rstrip": false,
2001
+ "single_word": false,
2002
+ "special": true
2003
+ },
2004
+ "128250": {
2005
+ "content": "<|reserved_special_token_242|>",
2006
+ "lstrip": false,
2007
+ "normalized": false,
2008
+ "rstrip": false,
2009
+ "single_word": false,
2010
+ "special": true
2011
+ },
2012
+ "128251": {
2013
+ "content": "<|reserved_special_token_243|>",
2014
+ "lstrip": false,
2015
+ "normalized": false,
2016
+ "rstrip": false,
2017
+ "single_word": false,
2018
+ "special": true
2019
+ },
2020
+ "128252": {
2021
+ "content": "<|reserved_special_token_244|>",
2022
+ "lstrip": false,
2023
+ "normalized": false,
2024
+ "rstrip": false,
2025
+ "single_word": false,
2026
+ "special": true
2027
+ },
2028
+ "128253": {
2029
+ "content": "<|reserved_special_token_245|>",
2030
+ "lstrip": false,
2031
+ "normalized": false,
2032
+ "rstrip": false,
2033
+ "single_word": false,
2034
+ "special": true
2035
+ },
2036
+ "128254": {
2037
+ "content": "<|reserved_special_token_246|>",
2038
+ "lstrip": false,
2039
+ "normalized": false,
2040
+ "rstrip": false,
2041
+ "single_word": false,
2042
+ "special": true
2043
+ },
2044
+ "128255": {
2045
+ "content": "<|reserved_special_token_247|>",
2046
+ "lstrip": false,
2047
+ "normalized": false,
2048
+ "rstrip": false,
2049
+ "single_word": false,
2050
+ "special": true
2051
+ }
2052
+ },
2053
+ "bos_token": "<|begin_of_text|>",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|end_of_text|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|finetune_right_pad_id|>",
2063
+ "padding_side": "left",
2064
+ "tokenizer_class": "PreTrainedTokenizerFast",
2065
+ "unk_token": null
2066
+ }
models/v10/config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "models/v10",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 133309,
9
+ "eos_token_id": 133310,
10
+ "head_dim": 64,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 8192,
15
+ "max_position_embeddings": 131072,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 32,
19
+ "num_hidden_layers": 16,
20
+ "num_key_value_heads": 8,
21
+ "pretraining_tp": 1,
22
+ "rms_norm_eps": 1e-05,
23
+ "rope_scaling": {
24
+ "factor": 32.0,
25
+ "high_freq_factor": 4.0,
26
+ "low_freq_factor": 1.0,
27
+ "original_max_position_embeddings": 8192,
28
+ "rope_type": "llama3"
29
+ },
30
+ "rope_theta": 500000.0,
31
+ "tie_word_embeddings": true,
32
+ "torch_dtype": "bfloat16",
33
+ "transformers_version": "4.48.0",
34
+ "use_cache": true,
35
+ "vocab_size": 134400
36
+ }
models/v10/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 133309,
4
+ "do_sample": true,
5
+ "eos_token_id": 133310,
6
+ "min_p": 0.05,
7
+ "pad_token_id": 128001,
8
+ "repetition_penalty": 1.1,
9
+ "temperature": 0.4,
10
+ "top_k": 40,
11
+ "top_p": 0.9,
12
+ "transformers_version": "4.48.0"
13
+ }
models/v10/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95bed4cf57a65691aef7fca1556720dc08ad30b55b2918cc5920d1786c71b50a
3
+ size 2496811408
models/v10/special_tokens_map.json ADDED
The diff for this file is too large to render. See raw diff
 
models/v10/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec54a55e3c6fc7318ea02cbd1a6eb1fb180bff1b58acbf068504a25f1b407b7b
3
+ size 18366636
models/v10/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
models/wpt/wpt.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ff212d338b9334f5241a72a777219edd04803708d0c7e428ae4f8a13fc50723
3
+ size 483585640
module.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Pyarmor 9.1.8 (trial), 000000, non-profits, 2025-09-24T04:38:53.087399
2
+ from pyarmor_runtime_000000 import __pyarmor__
3
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\xcd\x01\x00\x00\x12\t\x04\x00\x89~\xdd$\x11\xd1\x88\'7_\xb2\x1c\xe4K\x91\xdc\x00\x00\x00\x00\x00\x00\x00\x00{\xfb\xc3\xb7\x94\xb0#\xbe\x92\x19\xda\xd3\xfe\x16\xb4d\x00\xb1\xb6\x11\xe9\'@\xab/\xa7\xbf\x8b]\xd1\xb4\xee\xc5\x1e\xcf\xb0\x89\xbc\xfbuH\x87~ \x93\xaf\xf3f\xb4F3O\xae\xa4\x8f!\x02\x17Q_l\xfe!6D\xfa\xcf\tz\xf8_GN&*\xa5\xb3\xeb\x11LE\xc8\x89\x9d\x08\xb1\x92\xcc\xf8\xa7\x90\xebK&\x8d\xa8$\xf7\x8f\xc0\xabW\xb9\xf2\x8d\x00\x01\x02\x86\x85\xff\x0b(\x97\xd5Z!\x95Y\xac\x99\xea%P\xc7\xe5\xe2\xd3\xcbm\xbbe\x90\x10\x94=j\x85\xff\xe0 \x1cq\x16\xe2\x9atr?\xb6\x8a\\\xd0,\x10\xc6D\xf2\xd1\x12s\xa5\xba\x8f~\x85\xa90\xd3\xed\xf1\xa9\x8d\x128\xf4V\xbc\xad\xc0E\xfb \xfd\x86W)u\xa3\xc8pt\xb0\r\xa8f\xa2cW\x06\xac\xca\x7f;\x11\x03\xf9\xc1\x1f\x85\xb9\x13\x1f\x8e\xf9\x1co<IvV\x8ea\x93\xa4\x96~XS\x83\xffq\xc1\xe6\xdd\xb6\xc6\x01\xae;\xd3\xc8\xe0\xdd\xa1"\x1eM\xe9\xff\xbf\xf6\xe3\x08\xca\x8b\x02\xa9\xa8L\xe3W\xd2\x91\x88\xb4\x91X\x99\xce\x04\xa3\xc5\xc2\xe0\xe9\xba\x0ff\xa0\xae\xe4\xa8\xb0#\x19i\x16N\x1dsA\x01\x9b\x84\xae\x19\xe1\x1d\x92\x1d`\xb95CI;</\x9a1\xb0\xaa\x82a\x1a\xd1\xb6W\xf6\xd5\xb571\xe5\xfd\x13^\xa5\xcd\x91\xcek\x9d\xfc\xf9\xd6LP\xf1Nm\\=\xb5\x93\xbc\xc19]\x9a\x85\xa7L\x96\x93\r\xb9\x05!=\xc4\xd5\x01<x\xec\x89\x1b=\xfeS\r\xf1\xae\x8f\xd5\xb6&\xbe\x10\xfa{\xbc\x18a\xb1W\xfd\x9a\x879\xa0\xa2\x06CGx!M6\x9f\xf3j\xa1\x1f\x94Y\x84\xf2\xe7|\x14\xc5\xea\xe3_\x9b_\x97\xa1\xa0\xadZ\x8cF\xb5\xd1\xcfx\xd6Q\xd1\xdd)\xb2_:/\x0eXw\xeeb\xbcq\x12\xdc\x0e\xdd\xecY\xafzG?\xa1tvV\xca')
pyarmor_runtime_000000/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Pyarmor 9.1.9 (trial), 000000, 2025-10-20T02:45:43.947080
2
+ from .pyarmor_runtime import __pyarmor__
pyarmor_runtime_000000/pyarmor_runtime.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c902464a0c01fa3c898df66d7b692d4303de7f5eac422c38668307f82ac5060f
3
+ size 792360
pyarmor_runtime_xoxoxo/__init__.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Pyarmor 9.1.8 (trial), 000000, 2025-10-25T01:22:27.350318
2
+ from .pyarmor_runtime import __pyarmor__
pyarmor_runtime_xoxoxo/pyarmor_runtime.so ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3e183243b975c02b40b9f0359e98d9b2d1c09a07b3df850f0cc62ce973ec054
3
+ size 792360
requirements.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ transformers==4.48.3
2
+ pydantic==2.11.4
3
+ numpy==2.2.5
4
+ torch==2.4.1
5
+ torchaudio==2.4.1
6
+ torchvision==0.19.1
7
+ outetts==0.4.1
8
+ fastapi==0.115.12
9
+ uvicorn==0.34.2
10
+ librosa==0.11.0
11
+ openai-whisper==20240930
12
+ soundfile==0.13.1
13
+ accelerate==0.26.0
14
+ nltk>=3.8
15
+ loguru>=0.7.2
16
+ pyarmor
server.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Pyarmor 9.1.9 (trial), 000000, non-profits, 2025-10-20T02:45:43.956377
2
+ from pyarmor_runtime_000000 import __pyarmor__
3
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\xa2\x0b\x00\x00\x12\t\x04\x00\xa7\xc9\x08\xf3o\xcd\xf0\x19\x113\xf9\xe6}\x96\xe6\x06\x00\x00\x00\x00\x00\x00\x00\x00k\xca\xb4-Qas\xae\xba^\xf7\x92\x11\xcd\xdd\xc0\x88t\xdf\xf0\xce\xee\x1bv`\xc5\x91\x8cw\xc6\xe3&}q\x82~\xc4Q\xbf\xd3Il\xcfC\xce\xe8\x92\xa1\xb5v\xa9\xc3n\xf9\xb2u\xa4\x8dU<\xa8\x8b\x8eV\xb2\xe7\xfc\xb7\xf2\xbbC\xef\x9a\xde\x0f\xd9\x078 [\xcc\x8aR\xd8\xebY\xb4\xe9EC\x18X$\xcd\x8b}IQ\xae\xc9Fz\xa6i\xbf\xaf2\xd8\xb7\x08z\xc0 /;\xf2\x1e\x1b\xf2\xcc\x88\x88\xf3\xa2\xb2]\xcc\x8bs\x8d`\x14\xe6\x945\xfbr\xfef\x0e\x9b\xdbp\xb1\xec\x89\xdb\xe9L\xea\xe3D&\x18l\x8a}\xfe4\xd4\x10\xda\x8a\xaf \x8eKno\x0c\'5\x87\xd5U\x9f\xb4\xdf\x01\xd1-\xe2\x95\x90\xdf\xa7\x00\x1fZ$^\x9c\x1f1\xd1\xf4Fq\xee\xc9[\xe6XD\xb2F\xb6\xcaJ\xb8\x9c\xb7\x1e\x97rBi\xc4\xdc\xf7LZ\\L\x14\xdb\x97\x8a\x9b\xaa.\x06\xf1o \\1\x82\xa4\x94\xa2\x08Q\xfd\x05\x16\xbf\xfb\xce\xd4\x03 \xb2\\\xf1\xceL\x16\xd7\t\xbd?\xfetF\xca\xb7\xa4Su\xb5\xd6\xe6O\x89a\xe8\x0c\x05>\xc3E%\x95\xd3\xfe\x03\x1c\xdf\x8bh\x19\x8c\x18\x9d\x0c,\xbd\xf0\xb6;@PWM\xec\x96\x1d\xb3\x18\x12\xf8:J\xf4\xec\r,\x858\xd1\xfa\xfa@!\x1c\xd5\xf6XTz=\xc3;d\x19\x8b,\xa9\xd2\xff\xa2#\xd5\xc15p$\x15\x9eFL/\xdc\xfe\x04\x8c54\xaba8.\'\xb9\x968\x18K\xd9\xc6u\xfc\xabV\xcd\xd8\xb9\xc1\x0b[7O\x8b\xe0I\xd7J\xea\xb4S\xc8f\x93V\xbf\xba\xd8\xbc\xf0\x1d\xf0f)u\x8fw\x7f\xd4\xc8@\xf5\xe9F 3\xef@\x1a\xc5\xf6K\x85\rN\x06\xa7w\x83"g\'\xdf\xd8w\xcd\xd0\xe3\x1e\xa3\x91\x07\n\xfeCu\xc2\xa4\'\xa3\xde\xc5\xb9\x93\xb9ps$>\xbc\x8b\xd0B\xd6\xd1\x91iP\x89\xdb\x95Wl\xc8qa\xb2#/\xc7\xbb\xec\x9a-\x81\xdc\xb8\xae%\x9f\x87W\xa5*\xac\x92G\xc8P\xa1\xb4#C\x8e\xab\xae\x1e\xebT\x06\xbf\xf5\x7f?2\xed.\xa3#h\x16\xcf@n\x032Q^4\x996\xfd\xd2\xd51Q\xec\xcc\xf6\x9d\xe7\x1e\xab\xd1\x12\x1eb\x8a\xc8\xa5\x9b,\x85\xc7\x01\x12\x0eZ\xde\xf5\x86\xcc1[\xc5\x04\xa5Z\xbd#n\xf7\x1bu\xe0&w3\xa9X\x0fW\xdd\xcc#\x93?\\#\x80\x93dK\nDaU0\xb3\x004O\xed\xf0\x96\xe8w\x13\x9e`\xc2\xc5\x08\x80\x8e\xfc#\xde9\x9b\xd7\xfc\x0f\xa8\xc4\xa5\xd3\x15\x99Ez\r\xc2_\x82\x9f\x0e\x04\x15\x1a\xdd\xb7\x16>\xec\x80U}\xab4\rB\x7f\x1d\x1bg\xce\xde\xa7\x96\xcd\xb5\xb0\x1cD\xe0\xe0?\xd6\x91\xaa\xf7\xa8h\xc2\xda>\xec\xd8\xa3`H+\x9f\x9aM*\xab\xc7\xbe(r)9JT\xe4\xe3=\x12\x95\xf6\x1c;\x9e\x94\xd4)b\t\xbf5\xb1\tJ\x7f)\xa3\xee\x13\xba\xb6\t\x8a\xe2dM\x13D\x81\xca\'\x959\x01\xda,\x90|#\xf2EN\xd1\x8e\xc5\x0b\xffXa_\x84\xeazP\x83\r&\xb6E\xc6\x897\xde\x92\xb1xos^\xfdJ\x7f\xc9\x82\x99}\xe9\xc4Hb\xda\xa2\xb4q\xa6L\x00\xc2\xee\x88\xf0\xc1\xec@"8\xd3pFd\t\xd3\'\x80\xb7\x82\x94K\x86[ &\x06\x99\x17\x10\xaf\x13l1}\x14\xfaW\x0b\x03\x9c\x92\xc62W\xeab\xec\xc9U\x9f_J\x1a\xd3\xaf\xabO\xc6\x8eW\xe2\xe0d\xba\xf2\xe0\xfd`K\x8f\xf9g\xc2F\xec\x93\xd0\xb4\xdbO\x8d\xf6\xd8\x8b\xf8\xdeR\x17\xf9L\x115F?\x835\xef\xb2fF\xe2$A\x0f\xc5SU\xa8S\x1cx\x8e\xc8Q\xac6X\xbb"\xcf\xc6\xe2\xd2YDD\xf2-\xea\xd0\x10\x13\x9bV\xe7\x7fq/E\x906Ju\xe73\r\xc4\x89A\x8eu\xbe\'\xc7E\xe1+1\nT6\xec\xda\x81\x01\xeaa\xe9\xff\x15\xf1\xa2\xe0]\x10\xc6\xaa\x15\xe7r\x80\xc7\xf9\xebm\xe8u\xd6\xee\xcd\xea;\xd8JX\x8f\'LE\x03\xdaE\xf3p\xaaB7\xbe\xcb\xd3wJ\xdcoZ\n$Q\x9f\xf6\xae\xe1\xe3\x01\xd4#2]\xd9\xe6\x024\x1d~b\xb6\x90\xd8S\x99\x1cx\xeb#7+\xe2@\xd2A\xeb\x0b\xc5a\xb3\xb0c\x92\x1cW\x1c\xc6\xb0\xa7\x9a\xaf\xd3\x9cj_\x0ck\x11\x87\xbeK\x91\xf6\x98l-\x15Y\xea\xc4T\xad\x95\x88\xb6\xdbi\xc1\x19\xb4\x17\xeejYIX@?\xfc\xa0\x9cdK\xd2\xfd\nL_\x04B\x1a9\xce\x02X\x90IB\xa5\xd0/\x88\x04\xd29\x1eI\x1a\x1eUr\xc4\xb3\x96\xcaM!\xfa\x8f\x8e\x96T\xac\xfc\xd3\x14&\xfb\xee\xe8P\xcbd\xf1\xfe\x0b73i\x9f\x97u\x98\xa3\xf1\xed\xff\xfe\xbcZ\xb4K=\xcd4Js`\xf2o\xa1!\\\x02j\xc9vm\xf2\x13\x80\x1b\xad\x19|_\xf19\x81\x1cq\xb3\x82i\x15\xf7\xe5\xae^\xae>\xfa>p=\xe2]\x87B+\x89lq~\xa8\xe4\xf7v>\x03S\x1d\n\xca4\xb9\x9b\xf6\xb1\xb1\x88H`\'6\xd9\xb3\xf1\xf5\xca\xbbs\x95\x8e\x81kq\xae\x06c\xcb\x93&6\x0f\xf7\xb4#(j\x01\xaf\xb1\xe9\x87\x90\xaaT $-;\x0e\xa1\x104\xf2<\xf1\xb9M\x1e\x11\x0c\x9aS\xef\xb4\x9a\xafUDU`\x91m\x8f\x8a\\4Y\x99\x9c\x17\x10\x16\x8co4\\*\x1d\x83\xaa\x13\x1c\xb1\xb8\xd2RN6#^\x16 B\x9bp\xbd\xcd\x9apw0\xe0\xe2\xee\xfc\x0e\xec\x06\xd1#\xe4~\xf3h6I\x059\xb1\xde\xf9w\xe8"\xca\x0b~\xb1]\t\x14OSk\x97\xad\xea;\x95J\xbbAZsv\xe5\t\xfboi\xe3{cG#\x01\x8b}\xb9\x810\xeeurM\x13Q\xf5k\x95f%r\xd3\x08\xdd\x9f\xceXo\xaeq\xd3\xd1n\x04q\x81\xed\xb6\x99\xe1\x8c}h\x96K\x8c\x8b\xd6\xec\x9f\xcd\x8e\x8d\x97u8\xf4\x80\xabV\x19\xff\xe5\x0cd\xf0BN\xbc\xba\xe4\xfa\xad\x9f\xe8\x83\x91\xdb \xffz\xfdW\xe2\xa1Q\x8c\xbc\x83v;\'L\xf3\x95!\xafj\n\xf4zQ\rKe)\xfa&\xd7\xe0\xc6XJL\xb0\n[jypbqb\xe9h|\xcb\xf7l\xe7\xa0\x82\x02Sq\xbd\x18\xc8\x0b\xb0\xc6\x0b\x13Y\x04\xc5=\roi\xc6 \xdavi)\xddi\xc45\xa4p\x9a\xae\xf2\xfc\x8d\x84I\xbd\xf0\xe1\xa5bi\xce\xfcj\xf1{\xf5U;Hr\xd1\xa3\x0f@\xa5Y<e\xd7\xb6@Y\x9dG~\x7f"e\xff\x07\xc7%\x86\xedU\x10\x81.\xb8\x1cc\x0cU\xe6_\x19\xb2\xc4g7h\xbe\xcfw\xe4\xc3)[\xf5r\xa4\xd3\xc5\x8cHs\xee\'\xee\xd2\xc6\xeejX\x8f\xe6\x9d\x9a\xc0@\x98\x96\xfda5\x1b$\xd4\x10\xb3:3\x08%\xdem\xe1\x03!\x0b\xd5|\xd7\rls\x10\xee\xce\xf5\x1a\x92\r\xf1\x88\x1b\xff\x85\x0b\x0b\xe5\xb4m\xb0\x11\xaaf\xd2D\xf2dRZ\\;Z\xbb(\x9di9\xd8\x94D\x1e\xac\x88!B\xcc\x0b\xd3\x14\x97\xd7u\xf0e\xbd\x13\xb2\xb7:\x97\xfdo\xe8f\xef;\x04k\xe0\xdfC#\xcaMD\x18\xb0\xb5jf,\xbc\x9a\xef\xaa5U\xbcl\x01gA\x07iU\xc1\x93\x90C\xf3\x81<\xc3\xe5\x8a\xcf7\x9dEcW\xda5\x13\xce\xe6.\xf9\xe0\x1a\xc5Y]\xb6\xbc\xc8{\x13\xf72\\\x12~\x91\x84\xb8\x9b*\x95V\xa4\xbdb\xc2\xd2\xf0\x04\x1f9Wrc\x02c\xeeR\x92\xecv\x87\x8e\x14\x82\x10\x89\xa8g\x16Q\xbczY\xf9\xe4;\xf0\xef\x9a\xcb\x87!\x80p\x9f\x0b\t\x97\xc6\x17\xb9\xc84\x95\\\x0b^\xca\x06\xc4\xc1\xe2{\xef\xc2\xaf\xb1lI\xd1\xf8\xd9\x02^AJ\xf1MB\xaf\xc1\xc2C\xe9v\xc6\xe3\xfe H#\xf6=\xec\xf5d\xc8\xee\xc0\xbb\xf0\t\xc9m\xb8]\xbeTwKT^\x94\xb8\xa3\x03\\\xe8\x90\xba\xe9jb\x95y\xa8\xff\x8f\x89\x0b\xef:\xcd\xc7\x9c\x05\xd6N\xc1\x1c@ !\x89\xa5\x84t\x89\x90\x05\xec\xc5\xffB[\x9f6\xfc\xbb\xce!\xad^\xf5\xaf\xc9\x9euU\x17\x0fq\x90\xafK\xd5?\x89x\x8c\xdeg\xbf\xa6\xc6s5\xe5\t\xeb\x9f\xc7\xa3&\x9c9\r\xb2\xb5\xf9\x1fS\xf3\x0f\x16f\xd2\xf1\xaa\xa4\xb7?\x16\x8e\xe7C*\x1cI\xfc\xed\x04#x\x92{\xb8\xc90\xb3\xa1I\x0b\xea\x85%3\x0f\xe9\'`5\x9d\x0ec\xde \x14\xbb\xb1=8\x10\xadu&\x93 \xc1\x1f\xa7\tz\xe1\xdc\xf8\x1a\xa2\xbf\xf2\xb7\xa4\x9a\xadl\x15\x89\xe4v\x88\x93\xfb\xfcBO\\\xcb\x82s.$<\x17\xbfd;\x1d\xef\xf6\x1e\xae\xb18\x9d\xf6v\xbf\xfb~\xe2~\x16n4S\x13Q9\xbe\xad^\xb4\x91O\xf5\x84Y\xbf#\xa8\xb9S7\xfb\xc7\xef\xd8\x91"hxT(\xe2\xdeR\xc0\xf35\xb3\xd9\xaf\x81\xbf\xcd3\x85\xe4\xff/[\x87\x84\x18\x06?O\xb0\xae\x05\x9a\n\xb0q\xd9L\xe7\xba\xd55\x0c\x08v2\xaf\x967\xa2J\xc3]\x9e\x90\t\xbc\xd1\x1b4\x08\x16\x16Q]\xbeW\x99;>Z\xab\xb58\xb4Fl\xf9\x06\xact\xd6\xe8\x84\xd67]\xc2\xfe\x129\xe2z\xbb\xaf\x83\xaf\xcfA\x8c\x84\xf6\x03M\x180e?\xad\xabw6\x98\x92\x9et\xc8\'\xc6\xa3\xcdaP\xdf\x19y\x03\x14%\xef\xaf)\xbbH1\xe4\x1e\x97\xf3\x06,\xc8\xa5\xee\xd3\xde\x16\xa9\xcc\xdcF\x81\xa4\x1b\xc3\xdb\xae\x96.\xa7\x98\n\x0e\x17J\xe0\x87\x13\r\x986_p\xf3\xb7\x02\xdd\x14\xb7\x9d\xf4\x14\xaa\xea\x19u\x08\x94V\xd6KT\xde00%\xb2\xe5{w\xc4\xa2\x06\x1c\x83ol6\xe8D9\xbc\xbe\xd4\xac\x1bTs\xa7\xc7U\xbb\xd6\xb7>Oi\xb2\x0c\x88\xf5r\xe9\xd6ldm\xc7\xa3\xd1\xe6\xc6\xa0\x14\xab\x82\xa2S\xe4\xbcn\x14\xc2\xca\x02N0\xd1\x06\xc2I\x97\x1bw\xe8O\ty\xb7!\xae?\xd5[\xc9\t\x85\xd35\xc7\x86.\xe2h\x1c\x04\x0e\x80\xf6\x1b\xf9!\x90L^5\x83\x9d\xe5#8\x1b\xe7\x86\xb4\x00\x18R\x8d;\xd3X;E\xa4=\x1f\xac\xc8i\xc8\x99\xf5m&\x9bO\xe9\x82TiV\xe5o\xe7?\xc1\xbc\x8asz\xf5Eb\xbbG\xd4\xab\xb7@\xfd\'\x8c\xc8\xa8\xe2\xeb\xe2\x14\xec\xed\x0bP\xbdE\xa3F\x9f*\n\x95C\xb7\x1f(\x80\xec\xd6 \x17b\x9b\xa5\x0eP"\xc0-p\x04\xa7\xbf\x97b:h\x95\xaa\xbc\xc9\x02\x16\x11\xca\xe7oJd\xed\xe7\xeb>\xe9*\x03R&\xc1D\x86K\xa0\xc8J\x1e\xf6\x05\xd2K*\x9d\xb4\xdehdx\x92:\xad\xd0\x05C\x7f\x06\xabA\xba\x17\xe0:I\n=\xc3X\xd9+\xde\xd83m\xbf\xd3*\x17\x15*m\x08K\xddu\xb3\xfej\xcc\x1b7\xa8@\xf0?k\xae\xd8\x00q\xffR\xa1<6\xfc\x00\xce\xfdmqR\x80u\x00:\x93O\xf9k(\x96\x17h\xfa3\xe2\xc8\x86~\x8ds,\xf4\xfcG\xae7\xf1\'O\xd0\xce0\x83=t\x9f]\xf3\x96~<\xcfF\xba\xfe\x00\xe5\xceB\xf7\xfd\x0b{\x028\xd2)\x87\xa9\x80`\xf2l\x13h\xca\x94\xd8P\xecL\xbbt\xde\x85\x0e\x8b\x80C\xf2\xe2\xc5\x05\xc0\x15\x98\x88vz\xd31\x0b\xb1\x8aO\xf77\xd36f\xe6\xf2\x94\xe0\xf7f\x12\x88?H\xbe(@w\x94L\xf6\xfa\xc4\x7f\xab8\xa2\xf2-\xe2\x03\xba \x03C\x11u\x10C\xe0\x91\x8b\x14oB\xf8B\xac0=q\x1d\xd2\xc5\x1f\xf6\xb93v=\x8b\x127^P\xd6\xdau\xaf9W\x19\xd5*\x12\x0e\x9c]\x99\xae\x80\x1d\xb1U\xd2\xaf@\xe3\xe9OB..\xab@vv\xba\xc7\x8b\x14\x19\x89#\xc6N\x13S.ld\x04\x8bo\x03\xcc\xf9_X\xc65\x18\xc5\x10H\xb4\x01\xe0\x1dt\xc9d\xee\xb8\xf1\x83\xdc\x0fn\x8c\xad\x8a\xb4\xc0\x90\xe0\x81\xe9\x15\xb0l\x99\xdc\xd2\xe3\xf4\x04\x0f_n\xe1\xa7\xdb{E;\xf6\xe0\xf9\xe4\xbe\xdbao\xb7\x80"6\xac\x02\x08>\x99\xa6\xfb\xb1X\xe3\xafB,)\xbf"\xb5>\x8d\xc7\x84\xb0\x7f\x03z\x92\xebi\x91\xdf\x96\xef\x08\xa8\xc5\xe4\xda\xcb=\x89\xa1\x04\xa5kO\xccM\xf6\x17vo\xaa\x17\x0f\x99\xecrLKB')
service.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # Pyarmor 9.1.8 (trial), 000000, non-profits, 2025-10-25T01:22:27.362932
3
+ from pyarmor_runtime_000000 import __pyarmor__
4
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\x81\x06\x00\x00\x12\t\x04\x000\xfdm\xaef\xd9\xc1\x02\xa2Z\xda\xa0\xadw\x01\x06\x00\x00\x00\x00\x00\x00\x00\x00\xc0M\x1d\x0f\xec\xb6\xa3_\x8b\x1b\xe4a\x90R|\xc9\\\xe2\xba\xac\x91\xdc\xa6\xd1O\x01\x85X\xaeCX\x95G\xdf!\xd4j\r\x83 \x0e\\\xb1\xb2<\xe0\x0e\xa4\xb0 \'\x1e*G\xf5f\xd5;[)\xfbu\xd4\x14\xc6\xb9\xd3\xa8\\a9\r\xf1\xbe\xc9\x96\x9c\xf4\x82\xed\x0f\xf2\x158\xf8\xe3\xb4v#\xe3\xb1e\xed\x93\xd6\xa4L\n\xb1]\xbe\xcbq=\x16\xc9\xe3\x16\x1b\x9dWu\x9b\xfe$\\\xe8H\x80\xecw\x07]\xb9\xf6\x9b\x9e!\x90\x00\x96\x8e\x13\xacx\xb8f9X\x99\x075\x88\x8d\x85\xba\xebpz+\xc6g\xc8\xd00dZ\xc3`\xfe\x89KUi\xd7\x9aA\xf4\xf2\xfa\x16G\xd8|\xe8\xe6=\xf9_\xe90\xf64s"\x9bx\xa0\x94%\xfdED\xc0lKu\x82\xac\xf9~q\xf3\x16\x8f\xeb}G\xd9\x9b\xc8\xd9\xd1\x81\x13$\xc8\x9c\xecV\x87\xb3\xf8\x81\x81\x0e1B\x024Y\x7f\x8b\x13\x87P\xf3n\xb1\xfbaM\x01[\xf9\x8c\x00\xab\xd6\xf5+\xad/!\x80\x03\xe0=\xa6\xe9u\xd5#\xb4\x1a\x19\xc7\xc2\xb2\x18\xdb\xec\x92\t\xf0\xa3Z\x9c\xe9?\xb7_\ty\x1f_\x13Q\xdb\xf5\xdc[:t\xd3:\xe3-\x86\x80\x0e\xe3x)\xec$\x04A*\xa6Z#\xb0\x95I|/1v,\xeb\xdd{o\xc52=u\xd2\xe1\xe92(\xad\xbe#\xa6\x9cl\x04\xd2\xd5\x82\x07h\xe0\xdf\xfc\xddn3\x8b%\xa7X7\x06s\xa4\xd1\x95(-\x1c\x80\xbb\xdf0\x91\xb1\xf4)D\xe3r\x0e\xbd4\xc9i%\x00\xdf\xac\xe2|\x1e(Gk\xb2SK\xd2\xdf\xaa\xdeB\xe0\xc3\x9a2\xdcsd\xcf\x81(\xf2z\x82\xb84\xdd\xc7\x8f\xcd\x80\xe8\xda\x01"\xce\x94\xdb\xdb\xa1s\xfe*G\x0b-K?D|#I\xa4\x03E\x14p8"\xa7>\x07\x16\x0e,\xef\n\xc9\x8e2\xc5ig\x87$\x1f\x93\xeet\xec\x00\xe5\x81\xf9\xaekBiGMq\x84\xcb;\xe2\xa2\x8cG\xc5oq\x1a\xc13&H\xbe\ta\x90YB\x0b0u\xe1\xed76\xd3\xe8\xff\xb7-X\xc3\xf5[p\xe5:\xb7W\x82\\\xf2Q\x86\xa4\xd3#\xd2k8\xab9C1\xff\x8co\xd2\x051\xe5\xddD]\xf9c\x9a\x02\xea\xc9\xe3\xa1\xb6-CO\xa5\xc6\xb1^2@\x14\xa0<\x01\xe23&A\xac"s\xaa\\\xd9w?3\xa4\xef@\xaa^\xa6[\xa90\xd5\xe0uu\x85\xedWs\x8e\xd9\x07_\x1a`\xef\xa3+\xdc\xb3\x19\xec=Ks\x91\xbb\xbc\xa6\xfc\x06\xc4X\x9d\xe2\x01\x84\xb9\xbc\xd6Y\x02\x81\x05Qkp\xff#\x00m\xa3\xa0[)KH\xceUgC\x19.\xef;W@\x19j\x19\x14\x1e\xa3\xbc3\xbc\xd2\xdf4\xd9%\xb3\xfaAg\xa7|\xca\xfb\x9e\x9d\xcb\x93~\x8f\xac\xc6r$9\xc69\xcb\xf25\t=x>>\xcc^\xf5\xe3\xdd\x92\x97\xf4\x05,\xfe\x0f\xa9*\xd9Y\xf4\x0e7p\x82p]g8L\xc0\xba\x08\x19Q\x92\xe2Y\xd2\x1a\xf4\x83\x98(\xc7\xd4;\xff\xfe^=\x7f\x05]\x17\xab\x01<\xf2\x7f\xe8\xd2\xe2\x0f\x13\x01L\t\xa2A\x85}\x03\xfei!s\xe6[\xe9d[_\xcd\x1a\xbbeg\xe6>>\xbe\xe63\x889G\xc1\xb6\xb5\x8c`*\xa7\xa6\xc3V\xfc\x92]8J\xb863\x1c\xbds\x07\xad\xb0.\x84hm\'\xf8\xe1\x88\x16\tM}\x8e{*\xd22)@\x94w\xaa\x97\xf8 \xb1\x06-\xdctU\xe2Y\x9f\x89:\xc8\xa89\xe0\xdb\x04\x81aA\xac\xbc\xf4\xc6\xe9\xf2j\x03-\x80\x07>3\xea\xf1\xf4\x85\xa6\xf1=\x9d\x06\xd3\xc9\xf2\x7fy8\xad\x7f&\x02\xde\xbc\xda\x0e\xa3\x8aq\xb9\xb2<d\xa3l\x8d\xa4\x85\x98\xb3E\xcc\xb2}\\T\xc0 z^N^\xb7\xe8\r\xfe4\xa3\x08\x8b\xe0\x01\'\xfb\xa5t\xdb\xa9\xe1\x14\x12\xf5\xdd1\xa0\xa5\xb8\xe9\x1e\xb7\x0f\xfa\x15vz;\xd9%\xea\x14\x1e\xbbe\xb3A*\xc4\xe8\xf1\x93\xe4\xa2M\xfc\x88P\xd4n\xaduG\x90\xd3\x94\xb8\xf9\x9c\xe1\xe4\xbc\xc3\xce\xb7H\xf3\xae\x13\x12Rq8\x96S\xa1\x06\xd39r\xd1\xe8\xa1\x9c\xf3\xafQL*i\xbd\xc2\xcc\x8e\xee6f@(\xac\xaa\\\xc6\xad\x81\xc7\xa2\xb05\xb7\x0e\xe4\xafc\x1ee\xe3\x89\x8a\xd2\xb3\x1a6\xd7$_\x14 \xaaa\x03\x16\xab\x02\x95~T\x92\xaf\\\x03\xbb\xf5\x0fY\xcd\xac\xaa\xc2\xd1\xf6>\x15q\xe9\xe5e,L\xac\x9d\xec\x86mN\x90\xa3\xe1i\xc6\xa4HL\x9e\x81\xe7\xa4\xfb\x89\x1e\xe1L\xae\xccU\xaf\x84\xd2\x98\xb7\xd3eq10x?\xbf\x1b\xfe\xd1\xac\x11N"3)\x10\xe9\xa7\x04K9X\x05{\xd9~\x92~S\x9e\x16\xda.\xa7g\x19\x8a\xbf\x8b\xf3%\xf1\x0c$J\xae<\x1a\xd6\xc4\x9fN8k\xd6\x9e\x0e_\xdd7\x89\xcf\x83\x0b\x10\x17\xf8O\xc6\xe9\x07\xca/OR\x89\x1e\xea\x936n\x96c\xed\x01C\xb2\xd4K\xfd\xf20\xa0\xfa\x9d\x98\xe63\x93\xd0\xdf\xbf\x7f\x1c<\xd7,\xafy\xd6\x94\xd8!#\xc5\x81\xd9\x81\x8f\x82\xaa\x95,\xcc\xc7$\xb5m\xf4\xce\xd8b\xda\x9d\x06\xa0\xb6%\xcc>#\x8e\xe4gB#\xe1\x02P\x85\xa0w\xcb\xe0\xfa\x9c\xd1\x1cq\x1ax\xb7\x96\xecS\xb1\xab`d\xf7\x19\xe9{\xbe\xe9Q-\xd2gE\x84*\x03\x0c\xd9\x9b\x06\x12\xaf\x89C\xaa\xba\xbe\x00\x97\xd6\xa4W]S\xcfD\x1dRs\xb2\xf7\xb4\xb7A\x0e\xd9\xf9\x9b}|\xd03V\x95\x8aB\xdcH\xd2a"\xbd.\xaf\xdc\xae]\\\x04\xc3\xf0d\xcfH\xc0{\xe4T\xeb\x9e\xee\x11\xb8\xc3\xf1"\x1f%\x0cH\xb5\xb5lj\x8f\'b\x86\x14v\x8a\x0c\x8e\xad\x07\xc6{w/fa\\\xb9c&\xd5\x1a\xf0;(V\xc6\xa2\xad\xe7\xa4\xd0\xbb\x07R\x86\xdc\\\xe4c\xb1\xd7\xca\x00V:\x0b\x80\x9d\xe9\'#\xc3$\xb5\xad\xc8k\xa9\xdf)\xe1\x89\x0e\x90\xeb\xf7\xdcujAp+;g\xd4\xd1\xc4\xf2\xb80Fp\x801\xe6\x90\xb6\x05:z\x87\xf9&?\xc12_A\xf8l\xed\xfb\x1d.\xb8\xa3\xe8\x03\x96\x00\x90Wq\x1f\xaa\xfd\xf4m\x0c\xef\xc2\xa4\xcc\xc5\xb0\xfa\t\x17\x02\xf2\x92\x1e\xd6\xd8\xd1\xab\xd7\xc8\xff{si\xcc\x1b\tn\xb5N\xc8\xe7\xdb(\xef\x17\xc4d2"\xa9\x80\x19\xea\xd9x\x11.\xe3\x0f)\xed[8\xc3\xca}K\xfa_v\x7f\xbd\xf2\xe143\xc2\xd0\xb0\xa5\xec\x12 "jtV\x04!u\xc4\xf5;\xc6\x198\xd1\x9c\x05\xce\x00\x88\nTJ\xdc\x7fQ\x91~\xa7rIS I\x9c\x8e\xdd\xac\xc9\xf4\xe1\x9d\xf3%\xdbY\xd3\x13\xbbE8<\xe0\xa9\x91H\xefN\x1bPt\xc8\x1a\x83\xba\x9e$\x88\xf9`\x17K\xeav\xe5L\x80\xf3\xfe\xf4}\x8f\x87\nc\x80\x9b_\x8f\x15M')
smoe.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Pyarmor 9.1.8 (trial), 000000, non-profits, 2025-09-21T16:41:37.409047
2
+ from pyarmor_runtime_000000 import __pyarmor__
3
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\rE\x00\x00\x12\t\x04\x00EY\x9f\x88\xb7\x07y\xd9\xb0\x8c\xd8\xde\xa0\x9d\x1eS\x00\x00\x00\x00\x00\x00\x00\x00Z\x04TA\xe2n\x98|\xddI\xa9\xb1IFMH]\xd7%\xb2\'\xab\x19\x15\x1f\xa4\xbe\x16\x05\xa8\x14\x1cV\xab-\xafc\xe9\xff;\x86\xb3F\x9ca\xf5j\x882@(h\xda\xc1\xa4\xb7\xa0\xba\xb6\xfe\x84\xdd.^Np\x87>\xfc\xcd1D\xa4\xc2\\\x16z"\x1d\xc3d\x7f\xc2\x98\xf7\xa0\xf9rF"2\x01\xa2\x94\xd9\xe6p\xa0\'\xc8Ha\xaaV\xf7\x15\x0c|e^\xa2P\xa9[=\xc9d\x8b@\xb8\xa2!`\x1d\x86\x12w.\x96\xc1\x17\x18\xe6\xb2\x99\xe0\xc8\'\x9b\xe2\xf7LG\x9b\x84L\xaa2\x04B\x82^E\x8f\xec\t\xb9LJ4\xc9[\xdd\xd8\x92\xb6A\x19\xfd\xbd\xd7\xce\xd4\xab\x9d\xf2;U\xba\xbf\x8f\x05\x12\xbci\x84^\x86\xecEyb\xdd!J\x19V\x00\x96k9\xb7\xb1\x8e\r\xe1#\xe8\xbaQ\x9a\x00~VF\r\xe5\xcf\xd1vxK\xe6L\xfaD\x95\tI\xcc\xca\x94\xc9-\xc9BtP\xa9i\x12\xfc\xf9\xdb\xc6\x7f\xa4\x19\xfa\xfc\r\xde\x8dfim=\xda\xb6\xd5{\xda\xf2@\xc9\x0f\x1d4\x9b\xfc+\x18(X\xb0\x19\x0fy\xc0\x7f\x9ax\x00m\x94\xc5\xb4f(\xe9g\xffN\xe6k\xa1\xa8\xb2\x18\x07\x00Di\xeb\xac\xd6\x02\xd7?\xeb\x89-\xbb\x93%\xbd\xf9g\x92&\x9d\x9d\xbe.s\xd8\x01\x14\x1d\x0e\x08\xa7[\x9a\x1fQ\x8fZ\x8d\xd2`\x8c\xe1V\x05\xa7|\xd3\xa2b\xd0\xedFK\xd6\x04\x9c\x9e*\xf64\x86\x1e\xa72\xa1\x90U\xda"Af]\xd1\x07e\xa6"\x99\xfa\xeauz\n\xffm\xcc\x96\xedV\xff\x9c\x1f\xf5\xb3\xce\xb4G\xab\xbf&\xbav)$>\x99W\xf4\xda\x87\xce\\\xb4\xd9\xbcsv\nvo\xc3\xa5\t\xac\xb4kt\xf4\xa3\xa7)Q]\x01\x80w\xe8\xd6\x9e\xb0\x0c\xd4="\'p\x96\xdeW%\xa0K\r\x06gHJ\x104V@Jxj`mP\x05\n\xb2\xce\xbc\xb1<\xe5\xa50\xd2(\xae/\xe5y\x8c\xe2\xbb\xfc\x92\xfc\xf0_\xd0\x0e\x00Hm^?\xf3\x91\x80{\x92\xe3\xf2\xa2\'E+\xbc\xd1H\xfd\x1e\xc3$\xe9\xec\x00XE=\xcf\n`\x7f]\xfd\xa9\x97\xe2V\x00\x9a\xaa\x8b\xef\'\x01\xd0D\x18m\x9fU\xcb\x00\xe25\x9d]\x029q\xaez=DG\r\xa6/\xce\xc4\x17\xf9Y\xf5\x1cTI\x9b\xc1\xf2\xef\xf4\x12\xec\xc9\x98|\xa5\xd5\x0c\xc9\x8dC\xfd\xbe\x19\x87\x08\nK\x0e\x013x:S\xfa\xc8\x84\xd3~\xbf\xa9\xc7\x05\xc1\xf7\x05\xf5\xba\xb2\xe0\xcfg)\xe4\xd2F\xaf\xbc\xd6\xc4\x0f\xd4\xbf\x95v\xde\x81\xba\xc2\xbay\xc8\x16\xcc\xf8N=\x1f\x84\xa6\x1e5\x85,\xc9\x0b\xbf=\xabu\xf2C\xd23\xdd\x9eB\xb5B\x88\x95\xa1\x82\xe2\xb5Fl\x00\xa9^E\xda\xe3\xbeH\xe7\xee\xd6<^\xf3o\x1bD~Z\xea\xdf\x96\xb9L\x91\x9c\xc0C\xa1\xa8x\xdc\xbaL\xfa\xb2\xf8\x1d3\xc3\xd0\xba\x11q\xfch\xa7\x89\x01\xb6\xea\xfaO\xb7\xa8g\x9c\xa9\x12r(d\xce\xe4\xc6\xafLiC\x86\xe2\x9f^\xe7A\x8e\xf2\xf3\xc8\r\xa9\x8a:\xfa^@\xd5\x84\x80~8\xcb\xaaA\xf8\x8c=\x95\xcb\x00r}\xd4\xe01I&\x8eY\x9f\x97d\x07\xbd\xc8\xe9P\x91\xe7>W\x8e\xde\\\x8cr\xe9\x90\xdf\xc7u\x0en\xae\x12\xb8\xce\x93\xef\x92\x8e\xd7\xacP\x92K\xff\x1b\x8c\x1fT\x84\xe2\xbd\x1fs\x95\xe2\x11w\x9b\xcb\x99\xd3\x97\x99JC\xcaB\xf3\xbc\xd3\xcaRS\xf3\x88\xabB\xeb\x01v\x1b\x1a\xfe\xacP8\xc6\xd4;"?V*_]\x07\xbd\xde\xa5\xe8\xe3\xbf\x19nt\xd6E\xb5\xa1u\x94h,\xc7>\xfd\xa9pc\xc4\xdfH\xc5\xf0\xb4a\xe1\xee\xd3\xc3\xa0n\xfdd+~\xbf\xa7g\xba\x8f\xc1\xff\x01.xo\xe0\xa4\xcaRPr\xbe\xda\xa2\x80py\x07z`u\xc6\x11\x1b\x94!r\xaf\xc9T\xa9\xfa\xdb\xb0J\xea\x16 \xd3\xc6i8\xaf\xf7I\x98\xa7\x9a\xf1\xcc\xe4\x12}\xfc\x06\x98Y\xebN\x0fw,\xcb\xcb\xb8\xdb\x1b)\xfd\xf8\xb3EB\x8f\xe1hP\x87\x90\xf3\x1e\x01}\x95 \x06\x80\x9a4\x0c\x9f\x91d\xdfl{ce\x1f\xc3\xcb\x1c\xcc\xb6\xbb9\'wM@\xc3\xe7\x98\xd7\xc1\x0c7\x0b}\x10\xcbs 6\xc1\xe1\xe8!\x10\xb4&y\xb0\x05\xe8\x12\x98\xf0S\'\x9b<p\x195\xfb\xfc \xd6\x8e\x8f\x03\x98\xeeu{B\xbe\x89\xa7\x10\xd2\xec\xad\xcd\xecEF\x8a\xc3} \x15\x89\xf2bg}\xf4\x88\xe1\xe9\xe6AH\xe7QF\xee\x87\xa9\x15l\x00\xd2\xff+\x91H\xd8!,]\xd2\xc6<Vl \xdcNG1\xf8\xede\xd6~%L\xd0d\x06\xb7B\x06\xe4W\xdd\x17\xa4\x94\xb1\xe5\xb5E\x9d\xc1+d\x0f\nJ\x87\xf0\xdb\xce\x85\xc5\xd99\xec\x0f\xa8\x17\x9c\x81e\xc9\xa66m\xb91\xe7J\xed\x87",#kB\rb\x1b\xa5\xd3\xa7\xab\xc3\xd1^\x86\x19/\x14p\xd6\x1b\xf0\xc2T\xa0&\x90\x83\xcc\xc9\xba\xbc\n \xe96_T>\xccS\x1e\xae\x1c\x03\xf8\xbe\xd9\xf7\xf3\r\x00E\xef\x7fP\xfc\xc8T!U\xd0\xda\xec\x9d\x8f\xb6\x8bw|\x9b\xd8\x8b\\M5\xb0\xfc\xeb\x0f\xedM\xb4\xee \x9c\xe2<g\x86\x01HR\x14\xd9\xa3\xcc\xa9\xdb+\xaf&\x00\xdc\xd2\xb0\xda\x82\xb7\x9bF\x8e\xc3\xa0\xe9\xf1_\xce!j\x93\x1b\xca\xc04\xc0\x80\xc3#\xe77%\x02+q\x9dl\xech\xc2\xfe\x90\x0fW\x91\xe5\xb7\x17\xcf\xb7\xa0\xf3\x9c\xe0\xa2i\xe8\xc9F\xb0\xb6^\x99\x8a\xa6\xad\xe3\x95\xc9\xa6D\x841\xa5\xf8I@\x81w\xfb^\x8d\x8b\'j\xc6\x05\xb4z\x8c\x19;\xb2\xf0\x1ee\xcca@\xbb\x1cyS\xe6U\x863\xd5Q\x13(\xdd. ~\xa3\xb4\x9d#\xcf6\x94\x01\x8a?\xc1\xb3\xaekz\xab \xe4\x99p\xa62\xa3\xdc\x01\x1c\xe8y*?$\xda\xd6\xdd\x0f\xc9\xd3KG\x99\x1d\xe7\xb8\xe9Y\xa5\x00\xa9\xffH\xd5\xc6\xa7\xc6s\xb4\x82T\xd8|v!\x1f[(\xcc\xb8+\xe6\xf9%\x92Q\xfaU\x80^\x05\xc0\x8a\xfd2\x1e\xcf\xab\xcd.\x16\x9e\xaaL|]\r\xc56\x1a+\xae\x11%\x99\x97e\xfd6T\xa2\xff\x15\xa4Y\x12\xe4\xeeJ\xe5\xd1K\xb6\xc0\xd5-\x06q\x07\xb3y\x8dv\xfc\xa5\xba\xe2\xee).\xdd\xcbQ(\x058D\\\xdc\x1b{/D\x14T\xec\xa3\x92\x0e\x03\x02-\x9a\x9f9\xc1\x92|\xc8\x92\xc5\xa0\x0b\xc7\xeb\xb9\xf7\xdf\xf4g\x0b\xb2\x84\x1a\'\xb6r\x8b \xda\x95b\xc7\x03j\x82\x0e\xe2\x9b\x08\xc7\x80\xbc!\xcc\xf2\xadI\x88M\x9a\xc6\xa6\xa8/\xea\xc2\xd2\x0c\n\x97\x98\x88\xd7W\xcblO\xa2\x80\xa3 4\xfa[\x8d\xa8\xacY\xcef\x13\xa1\xbaQNk\xd6\x08\xa2\x07\xea|W\x0e]\x11F\x13\xd6\xc8\x02lb|a\xb1\xcfi\xedy\x7f\xf0%\x10\xe8\xaa\x05\xf5~\x1b\xe6\x18\x16U\xc3A^\xb9\xee\x11\xa3\xbeqp32\xb70\xfb\xcb\xa2J\xee\xd4\xb6\xa1\x8a\xab\x9e\xb1\xdb\xa4x6\xb9\xbc\x0c\n{\x92\xf14]f\xec(%\x1cG\xba\x8c*\xffx\x0e\x81\x1b\x92l^\x13\xcf\xeb\xf3Zs\xf4*\xc2\t\xf75\x11><\x14)\xc8\xf0\xd2\x97\xb8\xb7\x01\xde\xd0\x9d@\xe3\xf3\x00!\x9aKX\xff\x91G6\xfa\xf7\xf8\xf6\x94\x9b:\xd7}\xdf=\xea?\xae\x92\xa5\xa6\x1c\xcd\xcd(\r\xab\x8b\x8f\x8b\xb6\xfc=v\x1b\xac\xbd\x97B\x0b\x9fb\xa1&SF\xf9s}\xa9\xd6\x14\xd3\xf6\x0b\xc0\xabh\x85I\x18\xcd\xb4P\xa2\xe1J\x0b\xd7\xd0\x92\xf4\x94\x15\xd8a\x8b@\xbdm\xbeM\xad\x8a\xdb\x03M\xc2\x01\xa0\xd1B\x84\x1b\x85\xf9\xc2u\x96v\x85M\x03\x12\xb9\xa6\xa3n\xec`\xaep\xf9\xb0\xaf$r\xc8\x7f!\x0fb\xc5\xe0\x8eGFe\x99\xb4\x84\x9a\xe4Y\x1c\xc8?`a\xca\xdd\x1e\x89\xc9p\x95\r<Y\x86\xf7\xda|2\x92\xf2\xb7\xdb\xed\xfdQ\xbf\xfe\xd4i6F\xb9\xc0\xf8\xda\xbbk\xde\xd4\x8cb\xa8\xdc\xda\x001}\xcf\x07\x8dk\xc1\xaa\xa0\x9e\x1b\x94\xb7X\r\x9b\x0ex6\x7f\x11\xad\xfa\x8c\xd6L\x9a\x9b\xcd\xeb\xc3 b\x8f\xe9D\x92.\xd6\xc0q\x84\xb2%\t\x85\xd0\x0c\xc9\x8b\xec\x13*F\xfb\xd6[=\x8f\x91r\xf8n\xe3;l\xf2\xa5\x1f\xaa\xc6*\xb8\xe2\x07\x00\xa5r\x0b\xe0\xbcp\xc1o\xb2"Y\x15\xf2\xf8\x83\xf7\x9ezH\xcf\x90o"\x83}kK!\x00.\xe6\x16s@\xdbC\x86\x15\xc3Y4\x8dn\xd4\xa3\x1f,\x15\xce~\x87p8\x96\\$\xc8\xe6\x06\x04\xd2\xfa\x830\x01,=\xe0n\xc9\x88\xd9\xfac\x83\xd2\xcb\xf9>\xfb\xe2\x9b\x9d\xb7\x92\xbd>:ajy\xd9I\r72{.\xa5p\xa5\t &\xde\x14\xaa\x14\x8f\xc4\xe0w\x85.\xbc\x90&X$\xe1W;\x8f\xd5/\x00\xc7\x1f~\x96U\xd65\x95ltI\xed\x82\xaca\xe2\xf6\xe6\xc1V\xecjcD\x86\x18\x16\xb4\xdd\x105c\x90\xcd\x9c\x85Z\xa5I\x17^\x1d\xae\xf3+\x8d\xc7\x96\xbfEe\x10U\x1b\xeb0E\xf52\xd6%\xf6:Q\xb2\x81\xdc\xf1u\x92\x07\x8f\xc7\xa0\xaf\x84\xf9#}S\x11\x92\xb5\xec=\x97\x7f\x08"V\xc8Fz\xbbr\x85\xe9\xed\xf6\x81\xc9L\x14F%\x83\x00\x9b\xd7t\xe2O\xe3D\xc8\xdc\xc3\xbd\xbc\xbd\xaf7\xe2\x10\x10\xd3\xa47\x18\xc5\xaf\xef\xd4\xdb\x0e\xe4\x16\x9b\xfc\xd5\x97Z"d\x11\x84\xb7\xdd\x84\xbdR \x93\xc7\xe8!\x08\x1e\xeb\xad]\t1\xdcr\x03\x9e\x04\xfc|\x1d\xeb\xc0\xb9|\xb2\xc5\x11O\xc6kW\xa4@\xbb\xab,\xfb\xf1\xefH\xf7X\xd3\x01\xd2\x04L\x11\xf6\xa6u\x93\xab?\xdb\'\xaf\x99\x960\xc1\xee*A\xf9\xba\xe4Q\x7f*\xb1Pp\xab\xfdp\xe7w\x13\x15\xb0\xc7e&\x83]}*H\xb2\xbc6\xfd\x1a\xfa"[\xde\xb7\xaf\x93%\xb8\x04\xd8\x0cL\x98\x14\xfcL\x02\xda\x0f\x08\xbd\xda\xbd\x9d\xf9x2>.\x94\x92\x99\xf2\x04\x02\x92\x15\r\xb5\x80\x88\x8aA$\xaf\xa5\xdd{\xda\xa5Xs\x91G\x839\x98&5\x84w\xaa`\xb7J\xa9\xdb\xce\xea\x97so\xc3Z\x82)2\x8e\xca\x18S\xfc\x81\xa4\xc0\x0e\x9ag\xe5\x17\xb5\xb2\xb5\xc7}#\xd3\xf3\xec\xf3\xa4" ?\xa0\xb5 >\xe4-["UqS:\x16\r\xb76\x00\x84\xe0\xdd:\x83\x90\xee8p\xd9\xbc\x97\x81\x92\xa45"\x82\x8d\x12\xec\xd8\xb5\x89=\xb7\xd1\xc8\xb8-@}G/\xc4\x01\x10F\'\x04ny\x8ar\x11)\xb1\xae{\x8d\x86q0RE\xb2\x97\x00\xcc\x17$@\xd4\xaeU\x9d\xb5\xef\xc9\x9c\x10\xcf\xca3\x95;\xf9\xe4T\xc8\xfc\xff\xdb\x0e\xdb\x98\xe7\x8e:\xba\xff\xef\x17\x84\x03\x89 U\x0f\xba\x10~#\xf7\xc58\x98\xbb\xb5!\xe8\xbb!\x93\xfcC\xb0u\xa8\xc3\xb4N\x02o\xcaT<(\xac4\xdb\x16\x9aQ\x88\xee{8\xc7\xfaO\x18\x98\xefVt\xb0\xf9G@9Y\x92\xc8\x99S\xf3\xf9\xec\xff\xb1\xe1\\\xae\xea\xff\xe3\xe7\xa5\x9b\x8f\xd6\xcb\x17u\xd6J\x91\xd7\x06\xca\x7fx\x90\x08Z\xe1\x8e\xdf4\xff\xb4\xdfGn\x10\xa3\xa7\xdf\xf9\x15\x88\x0e`\xc8\xf9\xfc\x1akS\x84.\x02\xfb\xb4\'\xeb9(\x85\xa6\x97\xdb{\xe6\xfe\xf7\xd7U\x11J\xea;}\xe8Dt\xcaZ\r\xfd~\xcb\xcf\x8fY\x18L\xcf]\x840\xba\x89\x00N\xcb|\xb0\xd8\x96\x8aOF\x90\xd9\xd7<\x1a\x05\xaa\x01\x0fNq\xf1~Z\x7fJ\x1a\xb4\xfc\x1aH\x96\xdd\xe2\xf6*V\x90\xcb<2C\xa2\xae\xcf\x0fz\xa5\xfb\xd3\x83\x02\xe0\x9b\x10\x01\xa5k\xb1\x88\x1d\xc5\x86\x10\xf5\x1f\x86\x07\xe6\xb0T\xbcu\xc4\x14\x80.B\x7f\xc08\x82\xaa\x1e\xb9\xfe\x9d\x03\x98\xc3d\xdc\x00AH\xa4tOt&\xe1\x19N|\xb9\xe1o \xe4\x9f\xe6\x9c\xce\xcc\x06p\xc8\xb5\xfc\xdf\x9c\x0b$\xb7y\xe5.u\xc4\xb7U\xf3%\x94\xe96"\x85\x82\x9d\xea\xb2\x1fb\x8a\xa1\xe4\xf1\xecn6\x0c\x16\x15Ez\xe6bJ\xbc\x92\xf2\xee\x0bU\xaa\xad\x88 \xa0\xf8u\x01\xdd,\xf6\xb3\x04\xb3> \xc7\xd8\xd4\x0f\xf3}v\x00F\xf7i\x95\x8a\x8d\xf8\x0c\x8c\x91\xfbT\x0c\xfd(0\xa1\xe96qHh\x1ca\xc2\xe7Y\x04\xf3,\xdd\'\xb9\xb1\x9f\xf9\xe7*\xcbD\xd00#\x87\xdbQ\x9c\xe9M\xa4\xff|\xd8\xce\xea\xaf\'z\x86\x9d\xba\xe1\xe7\xf9\x960\xd4\xaf\xa6|\x9c\xceK\xdd\x1e\x0b\xa1\xf3\x90\xa3,D\x8by\xa4\xf7\x8b#W\xefG\\\x1b\x0fU\xdf\xb3\xe4\xafZ7\xa3\x1a\xd4-\x80YO\xdbL\x94\xdel\xa2#\x86x\x92\xf7.C;\xfd`\xf7\xb1l-\x7fJ\xea\xc7R6\xca=\xaaO\xc1Q\xa0\xeb\x00\x7fRJh\xb2\xb4~\xa5g\xa0K ^\xb25\xaa\x03\x00\x80S\xbf\x06\xadu\x8a\'`\xe1G\xe2.\x9b\xc0\xaa\xf8\x89D\xa0M\xa9\x93f\xee\xf9\xde\xc9\x9cX4\x95\x90\xc0\x00r\x17_\xf1\xf0\xa9\xa0#\xefG\xeb\'\xa7g;\x83\xdb\xc8nj\x9f\x07\xf4\x03\x18\r\xd6\'\xdb\x9e\xb2\x958}\x81\x1d\t\x13\xbev\xa6\xbb\xc4\x1d_\xd6\xd1\xf4\xe4G\x84\xe6\xcfbp\x08t\xec\x00\x80\x08\xbcT)F/\xd4\x03\\\x04\xdav;"$\xe4\xc7\xcfnr\x8bpe\x99\xc0/+J\xc8\xd1\x1b\xc1\xde\xc8)\xcb4o\xf5\xaa\xcb\x85Np\xe4\x93Y\xff\x15{B\x02\xef\xdd\xa4P\xe0E\xceH}lY\x1b\xc9\xda\x11;8<M\x84p\xf4\x11\xc9\xba`Y\xd6{\x01\xa0\x1c\x80V2_V\xeen(\x80\xd2\x14)F\x10\\\x1e\xbb\xda\x18]\xc2_\xa9bk6\xba\'\xd4\xa7\xba\xd8\xcf\xd1\xe8\x1a\xf3\'Bd\xaatqE\xa4\xae^v\xb4|\xaas=!{1\x9d`\xd3b\xaf\x06xpU\xfb\x8cg\x1e\xf4\x87\xcfQ}\\\xb0\xc6\xd4\n\x16P\'\x02\xfe!\xfeE\xb7\xa0Fd\xc9J\xb2\x8c\x95\x1d@\xd4=|\xdc\xe0\xc3\xb1}\xf58.e\xaf@b\xb3\x8c\xf5\xd5\xf1\x8d\x1a>,\xa1\xc0\xce\xf1\x9e\xa0\xe0`\xa1\x10-\x85\xd4^\xf8\x10\xc9\xe6{\xd5Y\x7f(\xc9\x84\xd4\x82R\x1cuR\x80u\x15\x17\x8c\x05w;}\xb2\xff\x1fT\x8b\xd9\x8f\xe4,Q\xe5#HGw_E{\x0e\xe3/\n[\x8b\x12\xde7-y\xe4\\\x12\x01b\xa2\xaf\xd2N\xba\xa8P8\x1b\x93\x85v\xf5\xea\xce\xdeU!\x87\xde\xfd\x0eD\x91\'y\x1dAz!\xc0\x07\x1cA\xbe\xea\x1f~B\x8d\xd5\xa0"b\x8d\xf7,\xb3~\xe9\x8f\xd91Pu\xd9\xb0\x0e\x0b\xed\xd8\x93\x93\x97L\x06\x1e|\xfd\xba^\x89\x87\x8f Ez\x16\xe9m\x88oD\xc9u\x7f\xa9yxI\xe2\xd8\xc7\x00\x89\xef\xde\xe8\xaf3\x92\xfff[q\xe19\x19)\t\xdc\x02<\x86\xdb\xb89}\x14\xb83\xb2bV2P\xf8C\xc5{i\x16x%r\xbb\xa2\xb9\x98\xe6\x96"\xa6g\x89\x0eqK\x17\x1d\xce\x90\x11\xeb\xf5D\x19\xde\xa4\xf2qd\xa8a+GeE\xffB\xe6\xce\'[\'{\x15u"\x87\xfa\xa7y\x1a\xad\xf6\xb2X)A-G&\x86c\x8c\x93\x90\xce\xbd\xfd\xe3h\xad\xe5\x84k\xb8\xe5\xf3\x97\xa2\x0f\xbfw{5i\xa5>\xe4V9\xe9\xe0\x85-\xd6\x14\xf6\xa7~`\xf15^\xb9\x19x\x06l>zr\x89\x94\x96\x93\xffd\xd8\xca\xa6\xa28\'\x13\t\xf1\x7f\x19/\xa0\xec \x80q\x89\xba\x1eM\x04\xad\xdd$\x7f\xb7\xb3\x94\x90\xd7M\xa3\xe0\x883i\x08_\xb9\xd9\x11\x1aB\x99\xcaT\x93\xf8\xd21\x81\xfe\x81\x82\xec\xc3\x1d5\xfa\xeb\xa3Vx\xb5\xb1\x13\xd3\xee\xe8\xa5\xf3\xa6\xf9\xbaI\xab\n\xa98\xb4&_\xca\xdd\xb80\x9bT\xe8\xc3\xa3M)\xae\xb0\x81\x11hbEG\xeeNz\x9f\xf7\xca9\x7f\xe4\xc7\x89\xf8B-\x03u\x98h\x15\xe0!\xd1\xea\x80\xe5\x1c\xb6-\x99Zh\x816\xfdm|\x02a\xa4fk\x91\x95\xb3\x94\xe9\x1b\x19\x0e\xbeU\xa4\xde\xba\xdc\xc9\x11\x86"C\xb4\x17\\W/C\xcaD\xf3\x97\xf0c[\xa1d\xc7\x99M#N\xe2%\xf1\x810\xf5BQ%\xd6\x1cd\xccy\xb9K\xb4\xf1~\x0e\xef\xff\x8a\xe8\x0e\xee`m\xf9F\x14;{\xf1\x1d-\xa7\x07{\xd8\xab\xe3h\xb3\x07\xb8\x08j_vq\xcc\xda3i\xc5\xa3\x1a\x99\x97\xabX\x80AV \xf4\x0cy\xaf\xd4\xf7\xb2/\xc8V\xbe.\xbc\xd0\x91i.Z\xc4\xe2\x89\x17w\xad*,\x9a\xd2\x04\xee\xa5:i\xc9\xdc\xc5!\xf7\xf3?\x91<Qh\xf1|P\xe2:w1\\L!\xdd\x87I\xf6\xb7\xa1({bL[\xe2\xfd\x93\xdf\xec>\x8e\xea\x07\x83\xbd\xfa;\xc9\xdf\xce\xd5\x18\xc2\xa6\x1e{\x9f]\x04\x1d\x0e\'a\xe0\xc9\x12\xbc\xb4y\xe1\xf2\xc7\xed\x80@\x9f\xd4\x07\x10`\xe3\xda\x1a\x83\xf9\xe3b\x9b8\x92o\x13z\xb4\x8f\x89\x93\xf5\xbc\xa9Y\xd7\x95\x00\xc1\x06l\x88\x0e\xf2l7f\x08\xa1\xbb\x0cu\xe2\xf9\xac\x02\xaa\xd8\x06T\xaf\x17FT*\x99L\xc1\xdc?x"\')\xc6Z\xe9y\x06\x84Z\x04\x8d\x94\xff\xf3,\x7fW\r\xfeH\x84\x00\xf1\xfb\x1a2\x13\xa5\xfcc\xdd\xbf\xf9\xcdd\xaa\x07\xe2\xac\xde\x01\x83\xb8\xcbo\xc8/!\xf9\xbc\x97\x8e\x0f\xc4\x1c\xdb9\xc0\xc8\xb1\x14\xb0hO"7\x11\xe8\xba.\xb0\x1f\xa0\x1a\xdc~\xf9zh\x11+T8\xde\x1a^\x1bC\xf0G\'w\xe2U\xae \xd0\xfd\xbdz\xce}}\x8a\xe4\x7f\\\xe0\xa0\xde\x85o\xbd\xcbu\x15\x85\xae\x9a\xe9\xfd7.\xc5Y\'\xd4\xea0,|\x87DI\xd0\xba\x13\xa4(a\xb9G\x020,-\xbczM\xba)\x88H\xb5\x02\xbb\'$"\xa0t\x99\x98R\x8e\xaay\x16L\x97\xf1\xbc\x8f\xfe\x81\xed&\x84\xefY\xc6\x9d0\x9ds\xd1W\xb4T\x07<\x9c\x07\x9c>7\xa9\x19\xb4\xa6\x85\x98KW\x08\xc3\x9d>\x06\x99"\x8b\t\xff\xfco\xb6\xa7\x15f\xd3\x84\x97\x8bQ\xa3I\xf5(\xb0\r\xcc\xc0\xba;\xcb\xca\xbe\xa6<\xfb\xaf\x8e-\xd5\x06\xd8\xf2KS\xbdW\x1d{\xff\xc99\xa6\xd3S)\x91\xe6\xb6\xe3(\xe6\x92p\x80\x02AB\xaaX\xb3\x05o\xb6\xe8U\x01]U\xda\xe1\xa9\x84\x1e&\xc6\tk-\xc13\xe4\xf2\xbdz\xae\xa7\xcf%GH\xadG\xa3\xcfp\x8d\x0c\x05!qX\xe9U\xa2\xe8\xec\x10\xc7b)\x8e(\xb5\xd9\x04\xd1"\xfe.5\xf5\xb8\xa1u\xa6\x1c+\x15\xb5\xcf\xc7@J\xac\xaa9X\x97\xca\x85\x86\x9c\x91!\rra"\xd2\xe6BM\x80\x0e\x87\x9dfTy\x1c\xc1S\x0e*J\x8cy:\x93\x12\x16\xe0#\x01&\xf1\xb0\xf7\x1cH8{?\xef\x97\xfb\xa9\xa0\xa8\x80\\\xee\xa8\xfc\x9c\xea\x99\xd6V\xe1\x91^\xd0\xc09HJ{=d\xd2\xea\xbc\xb0\xf2z\x00H\xe8\x9f\xbc\xba!\xa3J\x0e\xc2\xb6X1\xd1t\xcd\x94\\\xaaE\x98\x18\x1a\x9a\x96f\x88\x92]\xbd\xa3]\xab\x85\xf5\x82\xc7\xe5\xb6W\x14 \xfe\x92\x8d\xdcI&\xe1\x10U\x1c9M=n\x0e\xf2\xfdcQ\x19\xcc\x8bp\x9b,_\xdb\xeds\x17T\xa4 l\xd3\xff\xae\xaa\xfb?\x9c\x9a\x92b\xf3\xe0\xd8_+Bv\xaa\xe9\xbb\t G\x02]\x8d\x93k\xac\xe5\xb1\x84\x8d\x07\x94-g\xe0;\xe5@y\x1es\xca\xc1F\x89\xc6\x9b\xae\x9c\xb0\xc4G`\xcce\x87w\x00\x80\t\x9b\xd2\xe5\xe6\x11\xd8M\xfai\x86s\xd1^\xb3AXb.U^\xf3i\xd9\xdf\x17\x14\xa4]`oc\x0bV\xe0\xe7X\x08\x9b\xc4\xd8\x10id\xa6\xfc\xef\xe58\xf4T\xae\x93]\xab;\xc6\xc1-P5\xb3\x07\xc2\xea%W\xd3\x13\xb4\xbc\x1d\t\x9f\xe0q~\xddZ\xc5\xdb\xf2\xc1wz\xbf]\xfe\x10 2\xb2\x19\xe3\x9a\x93\xd2\xa5z\x0eRe\x1e\x9f+>\x18q{j\xd9.\xd3_\xd7\xb0*\x1cl\xc1\x90\xffm\'\xdf_d\x98\x19\x81Z=Cc\xde\xf0\xb3\xa6\x19\xa5\xbc$k\x81\x7f\xe6I\x91V\xd4\xc9\xaa\xc0\xda\x15W$\x8a\x14fCaSA^\x08\xfcZ\xdb\xc3L\x11\xac\xdd{\t_g\xfcz\x11W\x96\x1c;p\xba\xea\x92\\\xf8\xa1\x0f..\xe7\x91\xac\xd7\xb2\x96\xf4\xa8\x0f\xdf\xd4{"\xf4\x18@\x11\xd4\x022y\x08\x82\xc9\x1a\'\x93\xa0=]X\xe9\'\x80\x8a\xdc\xc0\x00\x19\t\xdd\x18\xfe\xdc_e\x8e\xaa\xfb%CSjF&\xf5`k\xe5\x81\xe8<j\xa5\xc6\x10\xb7\xcbH\x00\xf1B\xd4\xa6\xde\x06h&aS1\x1a\xd2\xb7QMm\x90@c5\x9c\xfc#\xf7\x01\x8f<\x85N\xc8(Z+\xc1\xe8\xcaU5aNj\xb4\xa7\xeb\xa7\xeeUAfu\x8a\xb2>\xe9=\x91Yo\xa1\xd2\xe1\xb3\x041|[\x05\xfeC/I\x01E\xa1\xd0\x19\xa6h\x94\xb1,Q_\x15\x16K\x90\x15-\x91\x8f\\\xea\x81[\xc6\x04\xb0u\xc9+\xe1\n\x13r\xf3T\xdd\x0e\x98\xc6_\x0e*\xa9\xda\x84\xb8\x92L.\xd3B\xef-U\xb0p\x03VM\xd4\xe3\xb4\x870\xf6\xb4y{\x95\xff\xde\x99c\xb2\xc9\xe8\x05\x0bk#!\x0e\x8d%\xece\x93%/\x80\'v\xacg\xc9\xc7\x9b\xb9\xfb0\xab~Iu\xccoh\xc5\x19\x16\xb0\xa7\xcd\ro\xf5\xef\xcb\x11\xf6\xda\xc0ti\xc9R\x87\xb6\xca\xfd\x12\x01\x1e\xd2v\xab\x83\xedB\xe6\x0b\xeb\x1d\xc3X\xc6\x1b\xe37\x89\xd2(1\x0fg\xe2C\xb7\xc4\x07\xdbR\xa7:\xe5\xa2S\xd7\xcc\t\xa2,\x1cR\x04=\x83\x1a\xb1,j<\xf0QoiV\x88\x07B\x96X\xf5\xb3c\xef\x0bT.\xcb\xb6\xf0&\x13\x87\x7f\xe2\xce_a\xa1C_6\xf0"\x86\xb3tc<\xb8n\x94\xff-N6\xb9\xed\xae}\xf0B\x9f\xccipdJ\xfexq3\xcf\xcb]\x9f\xc0.2\xaeN\x0f\xb2O\x11\xf8o$\x82a\xcd(\xe5\xc1\x19\xae\x9d\xd1\x84r\xac\x034\xad\x02\xa3\xa2\x80\x0b\x0f\x10y\xcb;\xe6>^\xae\xd1\x16\xb5\xc4\x99v\xdec\x89\x90\x01\xcd\xba\x8c\xa5G7\xffP^\xc2\xf8\x92\x06\xf8\xfc*MB\xebo\xc1\xd4\xb9\xc9\x99\xc9(\x17\x0cw"\xff<n\x06VF?H\xab7\xc2\xc26M\xe5c\xa6\xde\xbcy\x92\xe2|R\x84\xc3\x90\xae\xbc\xed\xd8\xf5\xd2\x00H`LG\x1dK\xf1`\xd1\x05\x05\xbdl\x10\xd8\xf62\xd4CEYe9\xe3\x9fY\x0e\xc5\x858UA\xd8\xf9\xf9&\xbc\xfd<\x9eTc\xfaW\xfcU\xc40Y\'Y\xf6|\xad\xbe\x01\xa2x\x00\x08ze\x99\xa2\xfd\xdc\x02t\x96x"\xc3\xc5\x00q&\xe4\xd2\x08[?\x98\x89\xab\xf2\x00$<\xe2\x0c\xec1\'j\xcd]\xc5\xb9>\x9e0\x8f\x13\xc6\x08\xa8\x9c\xe8\xef\x88\xf9q\xa7I\xb7\xca\xf6\xaf[9@\x1d\x08\xa3\x95\xabR\xdb\xef)\xfe\xd6\x04\x92\xb8\xe9\x949\x8b|Gt\xc9U\xf6Z\xec\xcf\x0c\xee\xf8\x1c}\xa4tqk\xd0L\x0e\xe3\x08x\x0b\x80##q.ms\xd7\xa4L\x94\x07\x16\xfa\xdf\x13G\x9f\xcb\xb3<\x0bh"\x93\n\xad+*%\xe8Qqbs\xb4nM\x1f\xf5\xf2\x9a\x18\xb7@-f\xbc\x9f\xb9\x9f\'\x03\x87\x9b\xa2\x94\xb4\x97\xcf\xeb\xce%\x90j->,\xc3=\xd9n\x98\xe9\x9b$Z\xee`\x0f\xe761\xdf9*k\xc6v\xeb\xb1\xa1\x11k\xceX\x9b\xce\x1f\xe1\x99\x83\xd7\x08W\xf99AZ1\x8el@\x12#\xfc\xf7\x02)B\xae\xf4\r\xeal\x1f\xe1\x8e\xa8=\xc6\xa8\x1e\xb4\x89RS\x8ft\t\x93i\x112F\x08\x97\x91\x18\xccv\x85S\xd2\xcfN\x0e\x88# \x99\x8e\x8a\x10Y,\xa9\x84\xf0y\x1e\xf7~\x0f\x88"\x18\xa80\xe3\xff\xf8\xf3\xe97c\xca\x9ai\xc1Ly\xa6\x10\t}\x15\xda-\xd8# \xd0@\xae\tj\xb4]\xb2;dH0\r\xd4\xf0\xf0\xbf\xfa\x97f\x96\xfe1\xac\xca5}\xb5\x8c\xef\xb0]\x8b\xb9\xd6\x80\x87/\x9e\x03EH\xd4\xec"\xe1O\x8c\t\x08\xbfTO\'*\xa2\xae\xb0\x8eJ\xe9\xcb\x97/\x98\xf0\xf4U\x16\xdf\xfcgD\x96\xdd\x16)\xae^\xd6\x1aul\x07\x01l\xd3@\xa92\xd8\x05\xf4\x8e\x89j\xe2\xefG\xff\xf7\x86Qq\xeaFz\xc5=0\xefv=\xf9V\x0c\xc3i\x9c\x0fd\xfe\x83\xdc\xa5M\xc1\xaan{o\x9ajNga\xe0\xa2\x18`\xdc}\xfb\x04\x9e\xc1\xa8\\w \x84\xb4W\x8f\xfe\xb8>\xaa+\xf3\x96\x8e\xe2\xaa\x19$\xa3\xc2Y\xa9a\xe1\x1a\xe6&\xa0\xac-\xeeV\x0b\x92\r\xdf\x189\xf6\x0c\x85ym\x8aPOf$\xca\x95\x0b\x1bZ\xfa\xd2\xc2s\x13\xdc\x18\xbcd[\t#\x1fL\xab\xbd\x03/\x18\xf6\x08N\xed\xb2\xba\xca\n1.\x81\xac\x99L@\xd0\xef\xfd\xcaaN\x92\x86\xd8X\x9a\x01Q\xc6\r\xb9\xde\x82w\x1a\xca\x8dX\xb2CJ\'-\xec\x85\xe0{\x18\xf7"\xc5\x03-\n\xd5Pu_\xe1\xbe\xa7\xecW\x08B\xb9A\xd2\x86p\x95\x81 \x1b\xa7\xd3\xb3\xcf{\xf5\x88\xc9\xb9>\x18N\x7f\x85j\\<\xe8\xd6\xb4\xa8\x1dQ\xfa\x9fX*n,\xfe67\x88\xe696\xebYg\x8d\x80\xd6\xd8\xe9\xb9Y\xa9\x0e\\\x958D\x94\x04\x94\x8f\xe8t9\xc9I\x16\xad \xa0\xc4\xba\xd0\x9e\xa5\r\xf3t\xccn\xf5\xd4\x8d\xd0\xee\x97\xcaA\xb1J\xc6$\xb2&\xa1\x15\xadJ\x12_\xa4\x85>\xe0\xc5\x15\x00p[WFm\x1f\\\xcf6\xf8\x91K(\xa3?p\xc6\x81\xfc\xc3"\xecW\xdb\xe4\xb2\xa8\xde\xf4sT\xdf4x\xf7w\x1a\xc0\x0f\x8c./&\xd1\x94.\x18\x81\x7fUG\x857_0\x9bG\xaep\x8a\x1a\xdf\xa5q\xba\xac]@\x0b\x0c\x85\x999\n\xc2\x8f,\xca\n\x01\xf5\x96\xa5qz\x82\\\x82\x9c*\x13\xf9\x1f\xc6K=\x01\x0e\xe9\x8d\xda\xd1\x161\xfb-\xf4\x8f\x0b\x0e\x90E\t-7\xdf\x7f\xf3\x038"\xf8\r\x18\xd41OC$T\x80\x97r\xd0\xe0y\x0f\x07\xb1\xce\x7f|d\xc8_\xcc}\x04\xb8[\xc3\xd9\xf2\xd5\xf0F\xa6\x82\xbe-\x80\xcfX\xc8\t\x9f\xb2\xd2\xe7\xc3\xa1-\x03\xe9vC\xa8Q\x07O\xa1\xacs5HM\xb7\x92\xa8\xe3\xabL\xff2]\xdb\xe5Lf\x88\xde%n\xe5\xda\x16\xee{B|\xf5\x0f\x07\xadr\x98d\xe0\x8b\xce\xb0\xecfZu\x90\xca$oF\xdf\x01?\xbd\xaaZ;!\xc5\xa2\x91\xf4\xad\x1b\x92y&\xe8\x08\xc0sb\xf91a\xfdp\x1dC8\x13\x88@S(0\xf0\x9ca1&\xf5\xcf\xf9\x01\x93\x98nI\xf6\xef\xb6\xda\x1c`\x8bO*j4\xd1\xda\x1bFG\x1cw\x03\xe9c\x0f\x04%\xbaCV\xf9\x9fSH\x0fEwP\x08\xa5\x99\x94\xef\xc3\xb9\xe2V\x9acz\x16\xf2\x8fI41"\xca\x9f\xe5K\xd0\x81m\x93\xb9q\x03l\r\x8a\x95]\xacI\x9c\x17I\xef\xc8\xd4d\x01\xda\x15j\xcc\xf2\xcbo\x8cph\xfe\xf1\xc1\xd5\xb9*\xcf\x8c\xd2N\x1b\xae\xfaO\xe8\xab5\xd5\x0f|\x7fb\xb6\xccN\x16\xb2\x9a\xe8\xc9\xbb\x1f\xa2\xd1\xc4\xf3\xe7\x0fXT\xde9A\xfeg\xd2HD`\x87E\x04\x0f\x9c\xa6\xdb7y\x0b\x91t\xe9\xc7\xf6\xc6\x89\x1c\xa0\xb7q3\x86\xcf\x99\xf5_\xef\xfc\xac\x9d\xbd\x9c\xdd!\xf1q\xbf&\xe6\xf0hi_\x93\xcd\xfc\xfc@8\x81M"L>\xfc\xbaL~\\H\xaeN\xbf\n\x8e\x96\xb7\xe8\xf6#\xea\xcb\x1e\x9f\xd1\x1e+~uzt!\xa9+J}<\xddn\xc5\xeav\x92\xc3\xe3\x7f\xa7\xbb\xe1>yi\xf7\x194\x80\xc2{E\xf6H\x8d\xfc\xe1\xdf\xeav\x8e\xe1\xf7\x9cR8B Q\xb9\xe5\x97\x14\xf0\xb9\xc4\xe7k3\x95s\xd2\x1f\x15\xc6\xce\xc11\xf7\x16+\x8d\x9e\x94\xdb\x06\xaa\x85\x0e+\x9d.Rk.M\x99\x94\xa7\xa4\xa7\xdd\xe3\xf7QQ]\x88\x97\xaa\xcc\xb3\xad\xff\xfa\x04\xfe"\xecZ\x07u\xc8\xa0\xae]\xff\xf0\xac*d\xafI\xfa\x0e\xbcq\xd2\xb3\xd6\xf5\xba}IL!\xdb\x85\\?\x8ee\x11\xe0\xfcP\xdfn|\x98F\x19}\xe0\xffig\xc3\xf8\x08\x85\x18l\x92\x0b]\xca\xcb\xae\x1fp\x80\'G\x97\xef\x94\xf7g\xbe\x98\x91\r\xcaLp\r\x10tz\xa6o\xa3\x0e\xc5\xdd\xd5\xa0\x1f\x97\xb4\xe6\xe5\\v"Dp^\xc7A\x19a\xea\x84\xe6\xf8\xf4\xea2K\x85\x01\xb3k\\\xa7)\xda\xec>\x80\x99\xd61\x95\xaaWz.6\xaa\xec\xc9\xbd\xa5{\x040J\x08R\xd3b\xd9\xdc\xd9\x98\xf5l\xee`\xb2\xc5\xac\xce\xa8\xbe5\xcc\xbb\xfa\x89\xfe\xefF\xd8\xd4\x93\x85\xa6\xbb]\x9cr\x91la\xf1\xe6\xdbB\x06H\xb2\\\x9a\xec\xb7\xde\xa1\xc8.\x08\x81W\xf8\xba`\xf3\x1e\xad\x19l\xf0\x07\xf5\x97I\xef\xb2\xbev$\x0b\xcbz\x18\xa4\x11\x0em4\xa6*\xbf\x95^\xb3\x1d-\xa1\x9dx\xd6\xb3j\xf1\x1a\xb8\xa5h\x8bo/$\x04Y\xf1#`A\xe3\xf1\xfc\x8f\xee\xa2u7n\xc0m\\~Y\x07\xcd\xb1\x8e\xe1Lm3\xf4v\x01j22\xa0\x1e\x15Y\x0bJ\x9d\x00\'\xb5Wr\x90\xff\x12\x84\xbc\xa7#z\x8aB\x0f\xd2\\\x95\x8a\xb9\x01p\x11\xc4U\x85%\x99\x15\xe3]g\n\xa1"\xb3\xee\xb6f2\x99!\r\xcfi\xa4KO\xf8K\xa8;\xe9G\xf6b\xedPP/C\xbd\xe7A\xec\xcd\xedh\xf4x\x1b\xcc\xa7\x80\x86h\xf4\xac^K\xf1M\xc7\x12zW\xe4>\x86\xafAJ\xbc\xc9W\xf3\x01\xaa\xddTB"\xa8&tp\x02 \xa9&\xb5\xc4\x06y\xf4l\x7f\xf7\xf9\xa0\xc3V\x1d\x86\xcc\xd7\xd8\xc6\x12\xf4&\xa8X\xc3\xaa\x17@\xce\x02R\x11\xe0\xb1u\x05\xa5\x81\xa9\xdbq\xf2s\x82z\xb1v\x83\x84\x85\x1eo\xf1\xf6\xff\x0bk6\x9aJ\xb3\x1b\xe7\x16\xab\xe7-\x02\xec\x91\xa4^\xb6\xf0\xa0 \xd3\x07\xef\xbb\xca\x8f\xafS\xcd\xfb\xa6VW\x13\xab\xc1\xa9u\xcbL\x02\xb1v\\\xb2\x8d\x01_rb-\x84T\x12\x01\x82\x16<\x90\xa0\xbd\xe6G\x05\xfe\xb4\x1d\xba\t\xa13MRi\xcd\xcf\xad\xd2f\x05\xd1Q\x18\x86\x99\x8a\xfdX.\xdaY\xd4\xbc\x8cD\xa9\x024\xb7+N5Na\x9e#\x19\xf3Z\x85#\xf5\xa9@l\x9c\x85\x99Pg\xb7\x19\x00\xfcE\x8c\x84\xb1\xc7Ug\x80p,\x17\x89ZD\xce\x0c%\x9e\x01\xd6\x1b\xcd!\x1cE\xb4\x8cR\x06\xa2k\xa1!\xd3\xcd@S\xce\xdc\x8d\x8b+\x1c\xe4!\xd3\xb77C\xdb\x0fD8v\x8d\xb7w\xcb\x88\xafy\xcf\xa1(/\xabk\xf1#\xce\x95{\xe1\x15\x85W@\x85\xa8\xdf^G\xe0$j\xcd\xe1\xa8K\x14]*8":\x1e\xb6\xe1\x88\x8c\x81\xa9\xec8B\xed$\xa6\xce\x9b\xadv\xd5\xea\xd4Y;\x19\xa6\xcf)\th\xc9t5\xc2\x02\x906\x85\t\x08\x9dt\xdd=q|m\x9a3]\xf9i\x87\x03\xd2`\t\xff\xac\x0b\x98\'\x90e\x14\xfa\x11\x14[\x95\x11\xa4qz#\xc7W\xad\xd4\xb8\xdc>\x00\xe1S\x11\xfe\x96\xfde\xc0\x98\x88\xeb\x93\x8f\x9d\xf1\xc9z\xe6\xb0\x02\xdc\x97\xbf\xf1\xe9\x1e]f|\x9a|;\x8fe\xe5_Q\xf3x\xb4\x98~\xd5f\xdb\xc5\x19z,\xe6\xdf.Z(Z\x97D\x98\xa3\x0f\xf2fF\x135}k Z\x00u?\x10O37\x93\xbb66\xf9\xf3\xab\xb4s0^s\xf8\x8a\xf9\xa2\xd2L\xdcR}t\n\xb8k\xfa.\x80gx)\x04\xedHl\x1a\xb0]\xdd\xa8;\x88N \xda\xfbV\t\xbb\xee\x99\xe5\x00)\x83\x1e\x0fG\xe7+-\x8aR8Tv\x8c-\x06=\x01a|xN\x06-%S\xb4T\xa6\\\x98A=\xdc\xe4\x1e\xb5\xde\xd2\x1ca\x10\xd4\xc6\x817h\x14\xcb/ks3\xe8T`p\xb5\x13\xa7+TC\xbc\xac\x8f\x90\xe4\x85\x06V\xfe0\x12\xec\x87\x8bj\xceN\xaf\xe6\xa7\xa2dk\x88^\xe5/>\x93\x0b?\x95\xe3\xdc\x18\x1e\x94rH\xd5\xa5\xe1\xbf.~=m44\xablX\x02u\x9c\xe2\xfaz4L\x8c~\xcc\x9b\xe8\x94\x91\xae1X+v,\xbd<\x89\x199DsfR\xa1\xe6oL\xed\xa8\xc8Q\xc3z\x88\x18M\x95N\xce\xda\x91B\x15\x84{b\xf0\xcf\x16V)S\xf9\x04\xe7e\x94\xad\xf1\xc3\x0f\xae\xca\xac\x11\xd0\x05k\xd8)\xca\xa7\xda\x9bq7?\xec\x85\xea\x8d\x84\xb7\x08\x07\xc802\xd0G\x87r\xc79\xc0#\xeb^\xa9\xd3<\xcc\x1e\xccw)\xb4\x7f5-\x0f\xb7\n4\t\xe6\xbb\x01\x05\xe6\xc4\x0c^\x8f;\xebx\xda\x1e\xd4V\x16\xf8L o\xa4?Y\xbe\x14\xb4bd\x8c\xdca\xd1 A\xa2\x90\xdd\xedE\x1ew\xae\xb5\xd6|\x80\x0c\x94Spa\x16n\x7f28\x0f\xd3\x08L\x10EfJ\xa1\x07\x86.\xf0#\xad\xc7\x04\xb5\xb0\xbb\xb6\x98\xad\\\x9ff\xe7\xfa\xbd\xf8`\xf0\x00\xc7\xa5]\xd2\x02+\x7fJ\xb3/\xeb\x16I+\xa6\xd2\x8boo\x18\x12\'\x1a\xa5D\xaeajZO\'Y\xf4HS{\xc8\x8fN\xc3\x818,\xa7\xf2\xbf\xe9\x13\xb9*9N\x0e\xfe\x92\x0bh&BT\x86\xffjO\xda\xa2\n\xd2\xcd,\xf4\x8c\xfd(Tj\x81\x0c\xceQl\xd4\x16\x1c\xbb\xf5\xb1\xd3B\xc4\xc7\xca\xa3;\n\xbcs\xd1-g\xcbt\x05,\xf7\xd5\xa7S\xa9\xf5\xe4{YtX7\nR\x05\t\x95\xb9\t\xca\xc4\x96\x088\x0f\x98q\xb8;u\x1c\x15"o4\x0e\x9c\xb7e\xf7t\x91\xda\xd6\xbf\x88\xdb\x020k\x9aI\x92\xa7\xca\x10C\x01\xafh\xee\\\x85U4\x11\x98M\xc7e\xd8+\xd1\xbe\xe3\xfb\x14(\xb3\x91\xb1\xf3\x08\xbf\x86oQ\xda\x1bb\x12f(q_ g\xb0\x8d\x8foG;(Z\x04\xfa\xee\xc7\x12\xc2\ne\x13pk<\xb4=X(K\x1e\xda\rl\xcc\x84\xa1\x19\x1e\xf9\xeeuV[\x07R\x92C\x84\xd4\xcf&\xbd\xc76\x05\xf6\xf4\xa3s\xf6\xe0\xf5\xb5Gf\t\xf3va\xbb|\xa5\x06\x0f\xabGc\x19\xea\t\x17W\xf4\x07\xef\xcf\x1f\xf3\x0f1\xb3\xda\xee\x9f\xecs\x98\x01\xf7\xcd:W\xb0\xdc2x\xaa\x1f\xea\xcf5\x95\xf6H!\xda\x80"/\xee\x89\x7fT\x1f\xfaK\xbd3d\xa3\xa7P\xa2\t\xb2\xbc(t\xdeY\x91h\xafa\x1d\xdcJ\xf67\xa4\xb8\x1c}\x0eo\xb7S\xd3\x00!\xcd\x10\xff\x07w\xc5\xc1\x088\xcb\x8e\xcf\\]\x9a\x15[\xb7\x90\'\xb4\xe2\xab\xc2\xc2\x9d\x01\xdcb\x1a\x9b\x1eb{\x8f\xc26\x94\x9b=\x19Y-\xed\xc0\x1f\xc2\x8b\xce\xd6\xfc\x12\xf8b\xed;(s\xf5\xe4\xa8\x02\xfd\xb2mv\xa2\xb7\xac8\x9aK-\xd22@Z\xbdk2\xb5\xbf\xca\x7f\x0e<\xa3^3\x86\xe43\x0b\xd9\xcc\x81^\x9e\x92\x1f\\\x85\xe2}BV\xb0\'#\xb2\xad)\x0f}\xf0\xda\xe5\xcf\xef\xf4@N\x11@\xfc\x13\x999D\xae\xfe\xd6H\xbf\xe7\xe1;\xb6e\x01\xec\xef\x0f\xb6!\xec\xc5\xf2\xf3_\x83.\x9c\xb8A\xeeOb\xba>\xda\x14\xcb\xa3h\x12\xb7\x9eqh\x9f\x07\x86I\xc4\x15\xe2\x1d\x87Q\x01\xe4\x18t\x88\xf5~\x99kbl\x1b\xd2e\xb9\xd0\xbc\x89\xfcrF\xd4x\x83^1\x82\x05\x13\xc1\xbb\xe6\xcd}\x9f\xe2\xe3\xee\xe8\xde\xeb\xf6\xa5:\xb0\xdaZ\x00\xe6\xd0{\'\xc7N\x10i\xc3AKb&\xa2:\x92\x06\x9c\xf5}\x8bs\x9dY`\xef\xf0`\xae\x01#\xfdRb\x85R$u\xf3\xce\x8aC"\xbf\xdb\t?\xb2~g\xe3J\x9e\xa1\x90\xd4\x97A\x03\xd2Q[qG\x16e\xaa<\xda\x8d\x0b\xe7\xb3\xf1\x0f]\x1e\x15|\x9bl\xeb\x7f\x95C\t\xb3\xef\xe9\xdf\x9e\\\xd8O&\x9d\x0f`\xa9\xf6\xc7\x83!*\xb4\xf5\xab\xc5\xe0\xcf-\x1a\x01\xce\x0f\xb80\xa1\xa1\xaa\x98\xa1\xc0\xc5\x1c\x18E\x04\xf2\x89\x86M*\xfcM\'\xf6\xce3\xe9P\xd0\x9d\xfb"\x06\x89o\xe4\xbb\\\x89\xa4\xc7\xe7:\xf6\xaeYX/\x9f\xa6f[\x037,\x1a%\x9a\xd4=w%\x81;\x05\ne@\x9f\xa7\xb5\x00\xb8U\xd6\x89_F\xb2#\xe4\xb3\xa9\x84ANu\xb9\x9a\xfaG\xda\xab\x11l\xc4\xa0\xaar"\xcf\xfe\xad\x92\x8f|\xa3\x9f>\xfc\x0b\x1b\x88\xc7\xa9v\x04\x11\xfa\x89;O\xb0\x08\xbbj9\xf6\xea:\xd5I4\x15\xb8.\x98\xcd\xf8\x8f\xb1\x95\xc0\xf7jq\x841l\x13\xd6g\xb3\xbcYh#fG\xc8\xcfU\x16\x94\xcaB\xb6\x1d6G\xa9e\xdc@&\xeaR\xfe`\x96\xbd\xd0\x00I\xa7\x97\xda\x9c\x9a\xc2\xb6\r\xa3R\xe2\xfb\xbe\xb7\x8e\xe7\x97\xc0k\x85S\x12)\xf4\xcf\x83C\xe3\xe1\x0cT\xfcT\x9e~\xce\xb7\xce\xa4Q\x7fk+\x87\xd1\xd5Y\xbd\xcbj\xc4\xfaL\xfdr\x95\xfaM\x968\x85\x11k$k\xdb\xa8@\t3\x12\xd9n\xe4p>f2\xb3\xc3\x08\xb4+\xb9\xa5\xb3T`\xc2\xac\xcc\xb7\x91t\x9c \xbc\xdb\xdc\xf6H\xd1P\xa3\xe0\x16\xfd\xb92yc00\xb5J\xf4&\x86\x10xT|U\xd8\x1f{\x05\xd2\xf2\xb6\x08.)\xdf\xc0\xc4O\xe8C\x18g\xd0\xab\xadV\xc0\xc0\xcc\x1a\xbc\xdc+ 9\x98K\xdc\xf2$\x0c\xaa\xab\xef\xecF\xadf\x93\xdf\xeer\xe3i\xf7S\xbe\x13\x12\xef\xe5\xfc\x98\xaa\xc4\xf2\xac6^;.\xa0\x88S\xc7\xa1\x0e\xaf\xfd_\x1dU\x1f=eY\x90u\xf7\x94\xbe\xdb\xeb\xe1\xb8\x12\x81\x17\xefW\xc8\xdb\x9b\x95\x12D\\}H\x98G\xfc\x14tE\xe7zm[\x0f\xdf!\x83\xa1\x91\xad\xd8\x1f\xaf\xad\xa2\xe8c\x7f\x9a\xe6\x81\xfd\xc5\xe6u\xc0\xf4m\xcd\xcd\xdfn\xddEz9\x96o\x86\x93S\xf3\xca6\x9c\xb6,\x14\xc6\x97.n\x11AO\xe0\xe5\xb1n\x8dK\xf8>eI\xa0\x8ayf6\x0b\xb7"\\\x96,\xe5U\xdd\xc0z\xf3\xddG\x9b\xa3\xfb4\x9e\x18]\xdf\xd5\x0e\xa1*4\xf2`\xec\xb4\x9b\x05\x17h\xfc\xa7\x05\x04\x1f\xec\x1d\xf2s\xaa\x9f\xa9\xb7\xea.\x83.\x7f\xed\x18b;\x8e\xbc\xcc\x90\xd1\x7fv\x9e\xbe\xef(\x8e\xce\xcc\xe8\xd3\xb7S\xc4L$0Y\xea\x07\xc7\x13\x12\xd7\xdb\xf0\x9c)q3o8\xbb\x0fB\xe5\xf4\xbcY\xbb8\xeeM\x9a\x93\x80\xaf\xf8\xe3a0\xcf(d\xa2|B\xfcw\xd4\x18\x8di\xb7\x00\x1e\xee\xb7\xcckQnJ\x08l\xdb\xb2\xe7\x97\x16Y\x8bV\xed1z\xef\xc6\xa1\x82/\x05\x0c\x90`0\n|\x89\xc7\x88\xd0ta\x9a\xdc\xe5p\xca\xea\x8d\x90\xf7V$\xb0\xadXe\xc6\xbc\x83!E\x00K\x9c\x94V\x88\xd37SL\xf6\x99\xeb+\x1c\x95sQg\x98ji!\xadjTPYl\x93c&)\xfbR\xd0\xde\x99K\xb8\xfdV\xaa^`j\x04\xb3\xc9\x13\x9d~\x15b9c\xa3\x18\xe7c<\xdf\xa5L\x9cyfWA\xfa\x98\'\xb5q\xfc,\x89\xbb\x18\x1d\xf7I\xe1\xb0\xee\xc1\x86pvl\xf2\x91mC\xf4\xf2\xef\xf4\x89Nq\x80\x0c2S\xb2\x88\x9b\xd8.\xf9\xe56X\xbb\x9b\x82\xfcm|\xb9\xa7\xb3\x12\xb3\xbf\xc6\r\xf35Z.\x83\xa5.\xc1\xd6P\xc0\xe4\x02$\xdfpb36\x8c]\xe9T@N7\x83\xa9\xcf\x7f\x87\xb5\xe7^\xf6\x84\x00\x10\x1b!\x8a\x80\xf0\x18\xf0Fc\xb7\xb7\xad=rwA9Y;\xcc1\x12$\x1e\x0f\xee9A&\xfa\xb31\xca&pL\xaa\xdb\xf8\r\x90\xc8\xfd\x93\x99\r\x16s\xd0\xd7\x93\xc1AMl\x14:t\xa5\xe6\x0b\xa0C\xceI\xe8\xa3K\x06I\xe1\xe3R\xee:\x9b>/\xf8\rc\xbf;3\xe4\x1d\xd6\xba(\x7f\x1a\xa8\x9e\x97\xcbq\xcdXM\xba~\x8d\x97\x85\xed\xb3>~Y?\xb1\xd2\xa5L\\mH\xb5\xa4a\xad\xc2Wu\x9f/-R\xee\x9c,\x0f0\xde\xb5\xb4\xc4h\xb1\x87ws:\xf9m1u6\x9f\xe7\x1e\xa6C*\x1e\x00\x04\xf1u\t.=`\x14\x85\xbaT\xd8%\xee\xcfN\xf7D\x83\xcc\x9c\xc2;_k\x90\x83\x95=\x08{\x134Ro\xb9D5H\xf9\x1108i\xae\r\xb3\xb6\x9e2U0\x1b\x8b\\~\x8b\x00\x0e)j+8X\x9c\x06-L9Z\xd5\xfe\x83\x80\xe3\xce\x1e()\x9d\xde\x91\x81R\xaf\xc6\x900{\xef\x0ejU\xc9\xb4\xe6ALG\x02\xfc\x95m\xce\x90\xf9\xba\xd0\x94\xf8@\xe6\x15\xa9\xd1\tA\x95\x10!R\xc3\x9e\xd6\x8a\xb2\x8cm\xea\x07\x9a\xa9eH\x05\xeeU\x94\xfa7\xf5r\x80%\x12\x97\xbcK\x1cK7>\x97\xe4e\xda\x8ab\x97\x94\x10"w\xa3\x1d\x1c\xa5\x1eK\x8c\x91^Y\xb0\x9a\xcc!\x84\xec`3\x0e\xd2~yD\x88\xd9\x14\xa5\'\xa4x\xcb\xb5\x06\xf5\x9e7\xa7\xdb\xcaL\x84z\xd5\x03^\x8al\xcc\xa8Y\xe6\x95\'\x14\xb14\xa4\xdf\x18:i\xed\xceL\xf2\xc6S\xbe\xa7\xd4\xb9\xce\xca\xf3h\x0c\xb1\xcbE$\x8f\xcf\xea\xe5\xb8\x8c\xc8\xe1@|\xa7\xea\x01\x19\x99>\xe6\xe7a\x8c\x91<\x1f\xbe6t;\x81\xc2\xb2\xe6i\x9dW\xaa\x8cxC\xfd9\x8eAK+g\xe1%\xb0q\x9f\x8d^#Kjg\xc3/l\x87\x04\x7f\xf1\xa3\xd9\xc504\xaf\x0b~\x1cc\xe6\xa5\xb8\xcb\xc39\xeb \x13\x87\xfes\xff~L\x94T\x1d\x8cW.m\xbd\xbf\x8c\xb6R\r\xed\xa3w\x06T\xd4\xebl\xda\xce4\r.\xc4\xfdH\\\x82\xab\xa2\x06\x9f\x0e\xa7\x95\xf4\x83=~Q\xcc\x83e\xd1\x08\xedp\xb7\x0c=\xe9\xe69n\xae\xc6\xa6>\x87\x1bR\x08z\x9e\x0b\xaf\xe2.\xfe\xd3\x0e\xe9E\xb21\x93\x0b\xcc0\x85L\xca\xbc6\x89\xb4\x9a\xc7\xa1k@|\xbe\x0eQ\x0bx\xd5\xcb\x85 k\x97v\x9f\xe3\x8b;\xe1\xfc\x89\x92L\xc4\xa8}5\xb2O\xc3\xd9\xa1O\xdd\x0f\x97\xe0U\xd5\xb7\xb7q}\xfeA\xe9\n\xc5\\\xe4+|\xd9&\x11\x96\xd8L\x11\xd2\xcd0r)\xa6xn\x96A\xb6\xcb8\xf2\xa6V\x01\xb7\x85\xa0\xcc\x1b\x01E)\xc1\xfdg\xf7\x96\xf8h3\rd&\xe5.\x0e\xe0\x18\xbc\x1b\x15\x7f\x88\xc3P\x07\xcd$\\\x0c\x8bd\xa1\x86"\xde\x1b\x96\x19\x11E\xcb\xe98\x8e,$!\x80\x12%\xc4XP\x13\xa7T\xa4\x84\xba\xfe\xc8v\xea\x9a\x8b\x84\xc2q/\xad3<\x1dc\x01z\xcd\tJ\xc1\xa5\x95\x1d\x82?\x0euit\xca\xdd\x03\x91S>\x01om\xed\xe299\xca\x96\xe5:\xfb\xfc\x13H\xbdmq\xfc\x06G\xf4\xfe\r\x1e\xc80\x8d\x0b\x90\x94\x08\x14u\xa7d|\x9b!\xefs\t\xcc1\x85\x9d<\xd8J:I]\xe6\xc8R=\xa14\x05\xf6\xa2\xf2C\x99\xae\xecH\xfd\xad\x03a\x96\xbb!Uz\xec\xec@t\x1dl\x95\xaa\x8f 5\xc5~\xa2x\xcf\xf0-\xe4g\x84\x94#\xfa\xaah\xcb\xd5\xee\xa6+f\xdf\xc2\x0c\xeb\xa6\xe6@\xc01\xd9T\x15~\x07\xdfO\x97\x01\xd9\x88I<\x10\x98K\xe5%\xcc\xa0\xa1\xd9A\x8d\xc3\x80\xb95\xe9\x87\xadB1\xcc\xea0\xcd\x08\xf4\x14\xc6\xf1\xb9\x10\xb4\xea1.\x8c\x83\xd5\xe2\x10B9\xbb\xc2b\x0f\xf6\x83\xd2+\xe6S2\xd8\xf6k8\x8b\x85\xd8\xa8\xb8\x91!\x02M/\xbc\xf4s\xef\xcd]-\x15K\x8e\x15\xd2K\xa2:\xc2,\x02G|\xb0\xbe1oY\xb0Q\xcc?\xfe{\x8a\x9d}\xce[\xb2c]\x97vg<\xc8\x89\xe8T\x07\xa7\xac\xee6\xd0z\xc6\xaa\xaa\xb3<\x82m\xf6~\xb71\x03\xfb>\xac\xbaWo\xae\x1c\xb4\\\x16\xbe\xf2B/\xe2\x14\x01\x05\x8an\x9d\xbe\xde~G\xb2\xe4\t\xf8\xaf\x05! \xca\xfe\x84\xccrf\xa1G\xaa\xa8\xad\xf10\xdbH\x02\xa5\xcd\x8a\xd2\xd1\xb3\x99C\xb0\xaeS\xee\x15\xb4\xd8\x01\xb8\xec\x8d\xad\xf2s\xe3\xa8\xdd\xdf\xa6\x97\xf0\xd4.K)t\x8d\x00\xdf\xc1\xe9\x1a\x9e\xc3\x07d\xf8\x0eX\xf47>\xf8\xd2\xf2\x96@\x8e\x18-\xa9XC\xd7\x0e\x1d\xe5\xd0\x08\xbb\x91\x98\xc8\x95\xe4\x80\x086\x8a`\xe7\x85r\x8c\x9a\x8e\xb4xo\xd8\xe8\x8b\xed\\\xd9j\xbbX\x15\xc3~\x8405\x8e\x10k\xcc\xbf\xd4\x84=\rXp\xd6\xca\x10\x81\x85-\xf0pw\xce\x95/\x1f\xb5N\\\x95\xb4\\\xadk\x94\xcaH\xd0\xd5u\x95R\xea\x96\x15T3\xa0q\x7f\xe3\xa7\xa7(\x94\x9dvb\xc1\x7f\xd3az\xc0\x7f\xa2\xc2\xa2\x8d`\xac=\x1e\x8bPg\x1d\xd0q\t\xbcxR\xf3\xc6^\xce[\xa4k\x870B\x04\xdf"\x02Mp\xb0\x0c\x00\xb0\x14G\xda\xfe\xf3\xc2\x052)\x17\xab\rq\x86\t\xb9\xd0\nZ\xb8\xa1S\xabU\xff\xdd8\x0c\xf6\xbf7\xc2\x84 \xc9\x87\x8bF&\xeb~\xc9\x90\xcc\x14`\xfd\xae\x9f\xf7=\xbf\x95gw)\xc9\xd1M)JwQv\xceZ\x80\xb5\xf9r\xa5\x16\ru\xab$\xfe:\xb8\xea\xb0N\xf9S\xf7\t_\xbb\r@\xd0\x85+\xe6\x96\x85\xd9@I\xd5\x97)\x000\x13R#8s\x0f\xa6\xf7\xd0\xf4\xed@\x90\xdd!\xd3\x01\x90{\xe2\xff\x96\xc7\x90s1.H\xed&\xf7\xe6\xf6\xa7>\xa3\x91\x0f=\xbf\xb1i\x91N\xbd\x19\x94\xe2\x03\x80c.\xde\xb7!\x85mv\x07]\x8f\x11\xe1\xde\xbc\xbe\xdb\xf3\xf1\xc2\xdb\xbcPUPO+\xdc\x1b\xe1\x15\xae\xb8(tVq[Z>w\x14\x1c)\xfe\xb7\x12\x9d\xa4\x97\xc0W\xf1q\x93S\x89-:\xec@\xec\'<\x98\x84E\x12\xe3u\xcd~\x05%\x1b\x8f8\xba/\xd4<\x13z7\xd1\xe1(\xd6\x80\xc3+\x05z1\xbfe\xda\xffs\xb0\x19\xf4!R\x08\xfdFF\xb6\x91\xeb\xf4\x9dl\xb1U^z\xb5\xd6\xcb\xba-Be\xe4\x85\xd0\x18\x05\xc2\xe8\x0e\'\xd1\xe0\xacE\x94)\xf8\xd1*\xbf\x06oc\xc1[\xb9\x1eM\'\x19\x97\xe9\xddk\xcda\xc4\x8e=E\xc0\x0eC\x84\xe6O\xb3\x13*\xf9\xb1uQ\x885\xbf\xc5\xf0tN\xf10\xa6Y\xb6\xf2\x0c\xad\xcee4RK\xf7\t\x1a\\?\xefe\xda\x19.g\xcf\xd3\x80<\x8f\xd9f\x80`\x17J\xce8\x07\xc6P\x14\xad\xc4\x925=\xad\xaf\xb7O\xe6\x92k\x11\r"\x7f\xfeU\x1a\xdd\xd5\xa8\xdc\x80Y\xd6\x13CAWM\\\xb2S\xca\x1eM4\xe9\x99.d\xb2\x03+8C\xcf\xf33\x07O`w\x9dv\xf8]\xbf\xb4Z\x84\xe4\x07\xc5\x96\xfd\xb1{\n&u"\x1d\x86\xcb\xa0\xee\xf3\xceU\x92u\xfd\x10\xc0~\x82\xf2\x14\x12%\xd2\xc6~\xbf\n\xdf\xdf\x9d//\x0f\x0cH\xd7\xb3J\xb0*}B\x9bQ\xc0\\\x89ht\xd8\xab\xe4d\xe8!\xd6\x03ncZL\xb7\xf9\x9fu/\x97\x92\x82<\xe1\xc2_\xce\xe2\xf2\',W\xfb+X\xc2x\xdau\xdc3UX*\xe7\x9de)E\xac\x02Z\xe6\x0f\xf3\x16\xf3.\xbd \xd0\\\t\xd1<\xa0\xfd|\x8d\xd5b\xe9z\x1b\x85\xd6\xb1\xdf\x19b\x1a)\x1c]HG\xe4\x16@/\xb9\xad\xa8\xd7W\r\xf0/\x05\xa5c\xca(#\xe9\x8e\x1et\x83(\xb4x\xb9\xed\xe6\x08 \xc3\x043\xf0\x84^\xab\x8a\xab\x01\xaf\xf2^]\xbb\xc9Z\xadD\x1d\ta\x9fWW\xf1\x989\x86\xff\x8c\xd1\xc3\x11\x07\xc7\xd1Rd\xa4\xf3\x9d\x99\xd9\xa1\xa9\xb4\xf1\x8b\xc2E\xa3E/m.\xa5\xa1\x83\\\xc5\xa4}\x04\x8c%\xcbQ\nl:\xab\xb4\xb3\x877\x10\xbbd\xa2\x02\xa1{\xa7\x14\xa9\x10D\xe3hh\xdf<7\xec\xdd\xbeL\xfeHF\xb9\x06e\xea\xcc\xc5\xe4\xdcy\xb7\xc8-\xb62\x0b\xda\xfd\xaa\x97\x08V$\x91y\xe2\x9dR\xa8\xd3\xb0}\xd9\xc0\xe1\xba7\x0b\xdd\xb4;\x1e\t\xb81\xaa\x06\x7f\xa2\xcax\xbb\xcc\x1b\xcd<z\xcb[s\x0b\x0eJ\xba\xd7o\xa2\x83\xdcZ\xd2\xb5\x1f\xee`\xbbz\x88\x16*\xa0\xab\x9e\xe5\xde\xfcA\xbf\xb2N\x84\x85\x0eX\xc1\x12/\x07\xf2\tw\xb37\xca-s\xc4)\x03\x91\xbad\xba\x9cRX\xc7\x08\x0buz\x8a\xfdg\x83J[\x9c\xfa\x1f\xc2\xfd\x01z\x9e\x07\xc8\x88rX\xe8\x88\x9a1\x99\xca_N\xb0\\by\xb5u:\xb5\xd7\x04\x14(\x11\n\xb3\xb0\x01\x807\x16\xf5GH\xfcc\xd4\xd8m(\xc9o\x97\x13\x99I9\x01\xbaF7\xf7\xfa\xf7\xb7\x1e|\'\xd92\xbd\x18\xc4\x90\xd2\xcagH\x86\xda\x0c\x9a?\xb9\xf2=4\x1b$\xcc\xa4 \xa7f\x07ufZ\xdft.6!\x1cA\xees\xdd;\x97\xfe\x0b\x13\xeey\xe5\xe9\x05\x9c\xefU=\x86\xc0\xb4IF\xe4@t\xec\xb9\x0c\xa1k\xc9\xa9\xf6\xf4\x88\xd4\xb9\xc7\xa8\x07\x04\x94\xaf\xee~\x9c\xde\x98$*h\xf6nDwW\xe6\nX\x8f\xa9\xf7p\xb8\xd6\x9c\xe9\xc5R`\x17P\x93+\xb4\xa9\xb0\xfc\x0e\xae&\x87\x93jH\x07\x04Q\xf9\x1d\x9d\xb2UF\x93P\x92\xa4\xa6\xef-\xfaCO9\x82\x05\xed\xf8*\x0b7\xb7\x0fV\xe5\x1c\x00\xd9\xea\xe1\x0b\xfc\x80\xfb~)\xbc\x7f\x13\xeb\x1aS\xfe)2\xa4\xc4W\x0c\xa9\x0f\xab\xc7\xef+b@\xf1g\xe8\xd3R\xc8\x86\x00\xd6`\xb9H\x9e\x92\xcdhf\x15\xea\x8c\xb0\t\xbf5w\x90$g\xf5Ej\xca\xdb\xfde\xd6-\x1af\xe6\xcc\x8f-9\xad+\x8er\xc99\xde\xf0\xae\xdb\xac\x97K\xb9ads\x0b\x96\xce\xc7D\xea\x80\xb4\xc9\xa2\x8e}\xc4\xe2DB\x17\xa8\xfa\xda\xdef\x0f\xc6\xe5q\xd3n\x81Q\xcd\xc9\x93)\xb8\xa3\x0b\xa0W\xa5\xc8Q\x9c\x92Z<QT6\xf1\x9bF\x8d?\xa1#\xcc\x9a9\rV\x06\xa7\x159\xc5\xe0N\xde\xd3\x92x\r\xf5\x01\x07Y\x05\xf9E]\xfc\xc2 \xe3\xc3:\xc2\xb8\xb3\xb8bUh\xf7\xd7f<W\xe8\xd7\xc9G"\x91E\xdc\x8a#\x85\xec\x9c5\x92\xe6\xc86\x83\'f{\xcf\x0b\xafh\xafH\x88\xc7\xc3\t\xca`=_\xba\x1a\xaei\xef\xab\xe7\xf64O+\xe6\x1b|\tBJ7y\xab\t\xd6\xf7\xd4~!YW\xb9\xb3\xfa\x8d\xa6\xe2D\xd6\xc5\x1a\xa1bf\xbc\xd7\xb8$~N\xeb\x97\xb2\xb5\xb1i\x1d\xe2\xa9\xdf\x8e\xbe\x7f%T/wGh\x87\xa7X\x806\xbdS\x9fW\x0b\x7fDy#E\x8e\xe5\x159`x\xa9\xb7\x18zf\x02\xb3\x16\xc4\x81{\xd5\x9e\xb6\x10\xdc\xb8\xe7\xd6\xb5\xed\xe3pB$\xfb\xf4\xbd\xddY\x88\xb8\x9c\xa6\x8c%J\x02\x90\xc4\x8cZ\xd8u<\xa6s9ZzV\xff"\xd9\xa0\x91\x98\x17\xff\xd4\xceY\xe9\x81H3\x9e\xc1\x10\xd8\x9dD\xf8x5\x8c\x9d\x04\xbd\xf2\xfd:h\x87&{q\xf1ut\xc9\x86\x14Y\xb4g\xb9\x8c=\xb8\x11\x7f\xaaS-\x9e\xe7\xbey\xf0\xe7\xc3\x91~ee\xb5\x9b\xdd6\xb4[\xd9\xf4\x98\xc34\xedM9[w\xc4q\x1c\x12<D\xac\x9d\x02\x94\xdf(\x07\xc5\xf6z<Z\xa5gn\xe5\xb7\x8c\x05\x07\xd9ag\x16+\xe6\x86\xb1+\x19\xbe\xeaR\xd1\x8boy\xd0q\xae\x8c\xb2\n\x11\xc3\xa7iG\xdd\x9cy\x06\x11\x12\xe4\x16\x96F5]\xe4T\xc6M\x8d\x95@\xa9\xdf\xbb\xc2De\xf0\xb2\xe4/\x1d\xf0 XyX\x94\xdbT \xdb`\x8e\x1d\x81\x87=\xe31\x87:\xf0\xf5\xd0\xc8T\xc59\xc9\xa6\x1fh\xb7\xc8n\xd8\xd2\x83\xd0\xc3\xb6\xbd\x82\x89\xf7&\xe4\x16\x9aO\xac\t$\x7f\x1c\n\xcb\xca\xac\xb0F\xc6\x10\x1a\xe2[*\x0b\x94?e\xf9\x83\x88\xe6\xa2\xb4\xe44\x95\xbc\xc4F\x12\xa2\xd3Q\xee(~o\x87\xad=z\xc5\x88\x05JTQ\xc2G\xe9\x9aOl\x14xc\x8f\x1b\x9c\xbbX\xf3\xabuith5\xb2\x0f\xf6\x8d\x9dx\xc6\xf0\xbe\rX<R@\x87\xf9\xc8w\'\x8bJ?E\xb4\xcc\x8a+|\x0c4!w\xc3\x97!\x94\xefu\xdb|\xcc\xed\x8b\xcb{c\xe0pJm\xbaQ\xe8Y\xa2\x91Br\x12\xf6\x8d\x1d\xc7\x9f\xa6\xaf\xb5\xd9\x1aZ\xdc\xb6\xd6+\x9f\xfa4\x92\xf0":\xd8|%\x1a\x8d\xa6\x99p`\xde\xc2N\xdc\xd6\xc2{[\xda\xdd\t\x96\xd7o\x17(u\tS\xb0\x03Wf\xee\xcd|p\xdb\xcaQ\xebv\xf9,H\x12\x07?\xdfO}>5c\xd2\xfb\xae!\xc8z/2\xdbe:\xd7 \xd0\x83`\x8b#\xa6\x9b\xf2\xa0\x9d\x0b|6_Q\xe61\x86\x15\xb7\x18\x15\xf2\x1c{\xa7\xf4TlD\xd2\x03\x0c|\xe2\xe5\xc3\x97\xd3\xf1)\xe4\x7f\xa1\xdeR\xb2\xc8N\xa7I\xdbL`\xdb\xe4j;\xab\xc4\x8e\xdf/@^\xe8f5\x84\x12\xa3\x15\x82-\xa4\x9bF)+h(m\x1e\xa5\x94\x83\xc5\xa4\x17\xf3"\x8d\xbd\x18\x13\t\xffU\x02\xfc}\xad!\xbb\x07\xa0\x89A\'\x8a\xddx\xdb`\xd8j\xec\x88rN\xab\xdb`Q\xb7\xaeO\x95\xa2\xeaH3no\x99S\x05\x06z~\xbe{~\xbc\x1a\xfe\xe8\x14:\x87|r\x89fv/D\xc69\xd0\x82\xa3/\xfdP\xe0\x98\xf3\xa0X\xf83\x8bx\xf5\xd5\xab\xe2\x87B\x05F\x0b\xf0x\xc4\x08\x9a\xc4\x05H\xfcCT\x8aA\xf6\xb7\xa9Q\xd7{ \x19\xd2O\xcbMu\xd6f oB\x8cl\x01\xde\x11.Mc\x94n:!\xb8\xbc\xdfH\xc90o\x7f\xc6\xa0\x06\xba\xd3#\'\x83\x94\xd3\xf7+\xe7\x81`\xd1s\x91%\xa8\x8a:w\xa7\\:ZWQ*\xb7s\x93\xa7\xf4\xb8\xcc!\x91?\xe8\xae\xa8\x86\xb3\x9e\x04X\x9c3\xd91\x1b\x1ci\x91\xf8z*\xb4\r\x80\xa7\x18Uc\xd4~O\xfa\xfc\xdf\xc0\x9f\xbaV\xb5p\xabb \xc0\xad\x87\xf6\x9d\x01\xf8\xd1u\xa7\x040{&\x7f\xcd\x8a\x05I\xdc\xb6/\xa3\x0b\x9b7KB5e\xf8L\xb96^\x9d\x13cP\xdc7\x8dz\xa8R\x7f=B\x1c\x1d\xe3\t\xe9\xb7C\x9b\xb3\x92\xd8\xc6{;e\xe54q=\xd0\x9a1B\xba\xacH\r\xc8\x02y\xf3\xaa\x1a\xfa\xba\x00\x8b@uc\xecI<e\x8e:\x97]\xdcLk\xce\xf9\x10\xe6W\x81\xcf\xa4\xf3\xec;\xc5\xa3\xb3\xab\xa7^q\x998\xc5\xb6\x05I\x02>\xa7y\xdcu.\xa6\xf7"\xf4/I\xdf\xb7=\xf8\xeey\x89\xec\x82\xc32\xe8\x0f\xc3\x7f\xe6u\x8d&\xd1\xf2\xdcu\xfdH\xbf \xb60\'4rVZz\xa6\x14cn\x18>_`[\x1c}81\\\xbeV\xf1\'W\x8c\xf0\xb1kj\x03\xde\x7f\x16\xed"\xbfu3<\xa9\xa9:4\\r\x91`\xfd}RC\r\xc4\xb6\xdf\x93\xdf\xbc\xaem\xca\xd4\xe7\x8e\xe1/^#S\xee\xa0\xef\xd0\x85\x07\x90\x9cy\xaes*\xf8\xca6\xb7\xec\x95!\xac\x15\x00\xb0\xd9$\x01\xaa\xd7\xfb\xcb\x9c\x08\x13\x06$\xb6\xd9\x97a%\xe10\xe8\xb7\xacKY:_!\xbf\xff+&\x00\x80,\xa1@\x98|n\r\x87\xe2\x19\xb5\x0b\x1c\xf8l\x81\xd8\xa9k\x8f\xe9\xb6\x94L\xb7?\xbfe\x9b\xe8\x0c\xe7$A\xc8\xdcY\xc6\x8d\x04@\x86\x902,Ai\xff\xc5\xe7i%\xfc\xe0\xc9\xd5\x18\xcc\xee\xfa\x87\x16tA\x81/\xad\x0c\x9e\xc8\x15\xbf\x8b\t\x1d\xe7\xdc\x80\x91\x97\x91\n\x86\xe7\xb5\x0f\x84\'8\x16\xa7\x14`\xc9\x01\x1e\xd3\xa4]\x07\xb0R/M\x7f\xb0\xb8g\xb6NY\xaco\x11\xa6\xc7z\xb9\xcc\xd8\x16\x82\xdb&\x02\t\xd1\xa6\x0f\xd6\x13\xb5O\x8f\x97\x95\x03\x87W!\xb7}\xa1\x85\xdd\x14p\xe3<\xf0\xb5\xa7\x0b\x82\xdd2;t\x98\xbd\xf7L\xb2`\xe4x<\x81\xa1L\x8c\xde\xa6\xec\x03\xdc\xaa\xd1`\xa1\x10]\xcc\x0f\xe0\x87\xcb\xb2\x83\xa2n\xf3\x1bKfO\x83\xb8\x8b\xab\xf4e\xdd\xe4\x86\xfd<N\x8b\n$5=\x81\xe8?\xa9\xf4 \xf28o\xa1^\xd9\xfb\x96t|\x17\x1d\xf3xM\xe9\xb0\xfa\x86\x046\xb3\x96}\xf1\xa9\xe7\x91\xa3g\x8c\xcb\x10\x8e\x99\xa8\x19\t\xf7\xf0\xe4\xb4\x1f\x82"\n?\x98&\xe3\xdb\x01\xfdG\x8a\xeb\x02V\xbb2\x05\x16+Tl\xa9\xe5\xcawP=\xb8\xf3\xadpT\x1e\xa4\xbc\x00y?\xf4Q\xea\xa8v\x7f\x14\xc8\x0f\xb7+\xf8\xd1(Hg6\xc3\x87d\x86\xce\x1fW\xea\xdb\xa5\xc8Zl\x1a\xd7\x9c\xd4\xd3\xb4\xf7o\x15\x87\'B\xc4\xa2\xc5\x96\xe3\xe9}\'\x7fu\x9doz\xcf\x89S\x0bk\xa8\xaf\xbe\xdf/\xe8\x93\x85\xfa\x13R\x06\xe7I\xd3Z\x84\x8d\xe4\x19\x12\xb5T\xb3\x05\xd3\x80\xd1\xe2\xb7\xe9\xf5\xe5\xe3\xcf\xf6\x92\x877<\x86nT\xa9S\x03.H\x1bN\xe5\xfc\xab\x0b(\xbfz\x10 \x04\xce\x9ayz["\xb8[&\x82\xea\xed\xcf\xe0Wq\xeeV\xec\xfd^\xb0\xd9\xb3\x11%\xb2\x85\xe6u\x04\x94>3\x81\xa6\x05\x8e\xee\xe7\xf6]\x14\x19\x94\xda7Qo\xea\x97\nf~}\xa8\xa6g\xdc\xe2\x96E\xc1ZB\xcf\xeeE\xc8\x18CD\xf8Ga\x1a\xcai\xe5|\xea\xba\xe1M\xb95\xb0\xb0\x07\xe3\xf2\xf7\x1f\xe2`M\x13\xd0\x15\n\xcc\xe3m0)0\x8b\xdf\xef\xcb"1\x9f^\xe97N@\t6nI\xa6\xb1)#\x8a\xea=\xdf\xe3\xa2\xfcZ4!!`/f\x1f\x8d\xb9\x1a\xb5\xfd=\xcdx\xa3\xe5\x14{\xef;\xf6\x1d\xa1c\x19Q\x97\xbd/"<\xccb]k\x05k\xca\xdc\xe8\xb0RH\xce\xbc\xd2\xafc\x87*\xe5\x8c+\xb3\xa4sj\xf8\xd6\xdd8\xe6\xe4\xbd[\x91\xb3\x03\xc4\x1b`\xdf\'y\xd4Y\no?\'\x8b\x84/\xbf\x00\x07\x99\x10"c\xb1\x19\xdf\xb1ED\xcf\xba\x11\xee\xd65\xa6\xd4\x8d+\x99\xc5\xc1\xf7\x99L\xf9\xc8\xcc\xf5\xbd\xd3\xc2\xed\xea\x87\xaa\xaf\xd1rX\x89\x15\x18\x0c\xae\xa2\xaf\xcd\x9dM\x90\xe8JU!\x87\xd2\xe9d=\x9d\xc1\xbc\rS\xca&\x80\x86\x89\xde\x8f\x02\x1e\x85\x8c\x87\xfe\x13KY\xac\xaa(Zr\xaf\xfdG\xa0\xc5\x19_\x0b\xe8\x86\x06h\xc3\r\xfaN\x8f\xecE\xa0\xcb\xd7\xc0|\xb1\xbfr<A\x98\x9c\xab\xf7/\xd6\x0e\x0b\xe69x\x96\xab\x07\x9ax\xaaz\xf0\xb1\xb3\x06L\xe5\x90\xd11\x12\x9a\x96rYHA:\x05iz\xcb\x80\xd6\xa3Y\x02\xf7h\xdf\xc9\xd8c\xef\x8a\xf2\x0f\x8dK\x8b\x05\x88\xa4z\xa4\xd3\xe6\xa9\xd7>\x1d\x90g=D;\xb4\x7fL\xe2l\xa8\xffy?\\\x8f\xd8\xff\xb8\x8e\r\xf3\xc5u\x1a\x90kJ&\x95gwJ]|G\x98M\xb0\xf1\xab\x8aj&\xae\xbfJ\x82\x8e\xbc\xc0o~\xfe\xb2\xb5mg*3\x1e\xa9\x18\xddXH\xe4!s\xafl\xe8\xd3\x1e\x08,\xd6}\x9d5\xc4r\xa8?\xf1XJ|N\x9a\x82\x82\xf5/,iY\xd6\x1d\xeb\xee\xf9\x90\xd9\xbc\xb0\xe1@\xcc\x13=Y\xa4mt\xfc\xce\xa6C`\x0c\xc2\x99\xa4\x83\x08\xe2;KqW\x13\xa0\x11\x992\xb6\x82%\xef\x0fY\xc3\x05\x8db\xf5F\x82\x1a5\xa5\xbe\xdc\xf2\x1az\xf4\xab\x99\x165\xab\xa9\xb4\xf1~\x1aGd\x1f\xfdqY\x1ad\x90\xe4/\xfd\x02>\x9f\x8b[|\xb2\x04\xfbft)\x10\xce\xf5\xb1\xbeY\x94f\x0b4P\x8c\xdd\x85{y\xf1\xcaV9.\xc7\xedP%\xeax\x9e\xa6\xbe\xec\xd9\x81\x83\xf3\x15/\'\xbf\xba\xb3\xc9\xca\xbb\xbc\xc9\xd1\xf3\x06\xdd\x90S\x9c\xba\xa9\xcb\xe4\x9c\xb3G\xea\xc6\x86\xadV\x81\x00\x1c0[\x7f\xc5\x00\xe4\x80\xef\x99\xb4\xd5\xd1\xf6\xdeGy \xbfW\x10\x8d\xd8\xfeFgX\x91\'OOz\x89\x0b`G"\x16Tt;\x0b\xb01\\z\x11\xabG\xb0\xfe\x80e\xcd[M\xec\xfa$\x82\x04\xbb\x8c\x86\xebtv1\xe2x\xa6\x8ex5H7>\x8a\x06$N\xab\xd3\xf2R\x17\x85\xd1\xe2}Y\xbe\x9e\x18\xe7]\x92BZ\xc9t\xbdc\x9b:U\x1b\x1e\xb2\xd3\xc0\x81\x87=S\xc2\xba\xee\x03\xcb\x91AF\xc3\xd6WET.9\xd3\xddE\xde\x8d\\\xaf\x1f \x86ljR\x8b\xd1:\x9d\xd4\xe9\xc4\x1aY\xe6\xbdF\x89\xd9s8\x94\x93\xe2\xc0\xac\xcc\x9b\xc0_\xda\xfe5/\x8e\xbf\xd1jU\xd1\xbf\xbc\xe9Hn\xd3\x87\xed\xf3\xe8\xf3\x0ce\xc5\xb0t\xba\x80\x1bG\x8d\x7f\xbdxI\xe3|\xa2\xc7\x1e\x90ezj\xafi\xc5S\x9b\xb6\x1b\x1f\x1d\xabS%\xfe\x81o\xd9\xc5?\x7f\x08\x0b\xa0\xc0Rj\xf3\xea\xe0\x145\x98\x07\xf6\xdf\x9f\x1e\xde\x9c\x01\xc6\x81\xd86\xf5\xe4\x9f+\x8f\xc8\xe8\x1f\x80\xa6\\\xb7\xc9\xbe\xed\x01\x05\x0eG46\xebs\x9d\x14\xeb\xbc\xba\x1cD\xf0Y\x9exQYa\x0b\xa1\r\xef\xe1\xdep\xbe\xa2\r\x10X\xc7\xdf\xda\x9c`\x11\xea\xc0`\x9a\x7f\x85A\x9bZ\xd2 \x85\x11}\xce\xc37\xfc\x92\xf3\xb6\x10\xe1\xc1\'T\x95\x89R\xe8\x00\xb3\x83\xc5o <k\xf1$e+\xfe\xb1\xec\x8cs\xd1\xa6\x0e\xbe\xd0\x9d\x82\xf4\xe3m\xbb\xe5?F\x89\xfe`=#C\x90\x13\rX^\x8el\xfb\xab\x14\x0c.)"\x88\xc0wY\x95\x88\x11T\xdc\no\xa80\xa9\xca\xf1\x97\xf7\xaf\xe5\x15\x025LYq7\x91\xf8\x0e"oU\xc6\x0c\x1e\xc0\xad\x84\xcf\x86\xbb.\xb1o|\xe3\'&\xb6\xfdc\xf6\xcf\xee87\x002\x8bcv\x17\x14\x96\x06\x18\x99\xafb\xc1F\x89\x1d\x90\x81e&\xf3_\xd2\x19$]\x00\xc4\xed"\xe6A;\x82\x12G\x87\xa3\x8a\xaa\x99g\xbc\xbe\x18\x8c\x90\x94\x1c\x97nc\xa2\xaf\x9f\xd2\x80i&\xe9|\x947\xb6^ZWB\x1e\x83\xf3z{r\x18\x92\x8bK\x1d\xbb\xfc[\xb48"q\x8b\xd0\xe7\t\xe0#"S\xe0j\xe2\xe0\xd0m\xd9\xe5\xcfr\x8fT\xd9\xa6\x89\x8a\x8f!#\x8a\x92\xa3\xd0=\x84\x04[\xfbW\xe1%\xb5A\x06eZ_\x18\xb1\x86\xcf\xb3f\x02#\xd1\xf2;1@\xa8\xca9Ot\xf0\xaa\xab\xf2!g06\x16\xe7\xd6#E\x11\xd0Z\xb7>\xdc\x0b\r\xcc$\n\x9cx\xa4\r:\x98\xfb\xcb\xfd6\xc8\\\xeb\x85\x8f\xd2\x85_?\t\x17D\x00\xb6\x95\x05p\xaeW\xa6\x1e\xb19\xfa\xf7\xcc\xed\x17\t\xa55\xa0\xa0\tO!\xfb\xd3c\xdb\x8e\xdb\x1435\xb44\xedE\xff\xb1\xd7\xf1\x9e\xa4\xa1\xa5w\xf1mZ\x13\xf5Pjn\xfbg/kDf\x87"\xf6R5k\x02\xc2^\xbe \xc4\x0e\xec\x9b.\x03\xcelZ`K\xd6?\xc4\xae}\x13\x08?\x82C\x809\x9d\xf2x\xc6\xc2^\xbd\x92;\x14W\xeezv#\xeb+\xcb \xf2h\xd9\x82\xdf\xd9\x0c\x08\xc5\xbc\xd1r\x9bKhUB\x16\xa5/\xb4\xc3^V=|k$\xbe\xe1\n^\xbd&o\xe1J\x18f\xdd\xb6\x81\x1d\x8e\xb8^\xb4\xb4\xcac\x10o<On\xe2\xe3\xef\x9e\xec\xd4u(\xdb\x1c\x0e\xe6\x14_\xcb\xc0\x9d\x92\xbe\xf6\xbb5\xad\xc5 ]YEL\x8d\x0cv~\x1a\x136\xf9\xe6\x99\xa4h\x18\x03\xe2\xccR\xa3]/\t\x96tq\x9b\x15\x1f|\xdb/`r\xac\x9b\x9e\xb7\xbf\xfc\xe3\xe69H\xff\x80\xbc\xd5\xf6\\|\xd9#\x8b\x82X\xbf@\xcf\xdaN\xda\xa3z\x80\x13\xc2_\xbd\xa9\xa0!\xe1ADTb\xa7\x0b\xf0\xbd&Z\x9d\xb3A\x8dV)\xf1(\xe2\n\xcf\xf0z9s\x03\xfc\xd7\x81\xe3\xbf\xc9F\xe4%\xb6\x97\xf4K\xbe\x86\xe2\x04[\xfe\x1f\xe3\x83\n\x18@\xc4\x9e?o\xd9{z\xf2\x18\x8f\xc8A\xe02\x08 /\xd7\xcd\xb7\xff\xcd\xcb*K\xef\xcf\'\xdc4k\xa5u\xdb\xad\xb8\xc9\x18\xd7(\x90\x8bjP\xcc\x94\xf5\x9b\x1eR\xdc0a\x9b8\x88p\xd4N\xde\xd2\xd6s\x1de\xf3OsUv\x0e6c{\x08Q0gX\xae\xbf;$\x83".B^f\xcb\xe0\x06s\x7f]\x18_\x06\x9e"\x915\x04"\x83\xba\xf6\x89t\xdb[\xa4^&\xc1\xda\xd7@\xcb\xebfxU\xd3\x1eO>\x8e\xeb\x9c>\x90\xb7\xc5?\xc9\x1e\xde\xd6\xb4\xd5\x17q\xc6%\xa8Q*\x1b\x1f\x84\xcf\xb0?3\xba\xa8v\x98:\x0c\x1a\xf8HP\x8d\xb6J\x02Sx\xc9\xb5\x1e\xfdS\x98\xe7\x8e\x1f\xd8\xbe\xddc\xb9\x10$GC\xfa\x97\x01\'\xef\r\x1f\xa3<\x90\x07\xe0bO_Wm\xe9n\xf3m\x01\x10L\xd0\xda\x87\xe9\x19\xd0\r\xbf\xbai\x10\x98\xdc\xe2\xe8\x92b\xf9\xbb\xc7\xfb\x8b\xee\x94S\xea\x16u\x04\x80n\xb3\xe1B\x8c8\xc3\x97\xd9\x15\xbb\x8d\r\xb2\xd5\x9d\x085\xc6\x86\x0e\x1d\xfb\xdc\xa4J\xa5\xc9\xba\xe2\xba\x05\x93aY\xf6\x0fw\x82\xa0\t)\xf6\x84\xfa\x80\x8fv\x1a\xbc\xae\xefE\x91\xbc\x97&ej\x93\x9c\x99K\x1edC\xa0L\x9dl\x8f\x8a\xc0\n\xb9\xf8\xe8\xc85\x80k\x00\xd6\x0c)[\xf0\x819m\x0c\x0ft\x055\xb4\xcb\xb1\xe5M\xb8\xd67!\xc8\xb8\xe7\xde\xe8\xa5\x01\x01\x7f5\xe1\xd9K\xf8j\xe7P\xb7|\x07\xea\xdaCA53\x1d\xb3\xdb\xd6\xfbo6\xb6\xb1\xcb\x92\x10\xfe\x93\n\xd9b\x9ei\x0f\xf1~F<\xee\t\xac\xb2\x85X\x85\xb7\xb9\xe4\xc8\xa4\x9c\xb5\x80\xab\xee\xff\xd3ki\xaa\xf3\x0bu\xac6#\x00\xd4+B\xfb\xa3\xd4g\xd9\xd6*\xf0wUT\x99\xe3\x0ew)\xf9P+\x07\x9eZ%\xb9\xf6.\x97yi\ti\xef?\xa3v\x08\xa9\xcd\x18\xab\xcc\xd4g*\x98\xd3\xf4\'\xd7\n\xb7;!\xe4r`\x07\x06\x9bm\x7f\x9e\xb6E6\xbd\x92\xb3e\xfa\x9b\xf4y\xd3\xb1\xc0j\xbaX\xa01\xae0\x0c\xfdO11\x05\x7f\x18\xc3\xb2\x08kx\xd8\x1a\xa0\xc1e!:\xb8ij5a\xcc\x97\x83a\xed\x10\xe3\x01\xf6\x15\xdc\xcf3e\x99\r\xf5\x94|\xbc8x\xf9\xd6t\x12\xa0\xb93L/KV5\xc7\xf6\xc8U\x08\xcd\\`\xdf\xb8~Jx[_\x12&\x021\n\x84\'\x02sz\xd0\xaeG\xd1\xbcHN0EI\xe2\x82\xf6\xe1\x00B\x1f\xca\xd0\x80I\xa7\x88R\x99X\xb2\x9bGrR\xafA\r\x8e\xc9\x19n\xcb\xeccR\x19\xf5\xab.\x1d\x06aalG\xdd\xb9F\x88\x19~\xe7\xe5\xce\xd9l\xb6|\xe3~\xd3\xc2\xc1\xe8t\r\xd9=\xf61b\xf3\x01Hx\x9e\xfb`\xc5~Q\xa0\xed\xfb\xe2\x1bh\xe7\xebFti\x19\xd1\xb8\xc2\r\xf1"i\xfbN\xec\xae\xddb=]\xbcT\xcd\xbf\xe73w\xe1\xab\xecl\x19>\xed|\xda\xe0\xbb\xa3[8\x9c\xa21\x11\xa1\xcf%\xa5\xf9\xcc\xa2\xaa\xbc9\xf6[\xe6LH?_\xc2\x98$f=\x13N\xf4\x8fY\xa5\xa4\xde5\xde\xd0.\xc4\xe7\x14\x96\xd1\xe8:\xa7\x1b\\\x00\xb4\xbe\x0bg\xbb\x1f`\x8du\xd1\xb5\xfb-\xe6\xda|\xeaX\x11-\xc5\xd2^:<\x7fX\x1av\xc7\xc6\xf7PB\x92\xd6 \xc3Gyy\xd8\xa6\x99L\xdb\x7f\xf0\x8a)\x87\x11\xdb_{\xa3\x88\xd5\xbaK)\x88\x9bO\x18\x9fP\xae\xa2\xa0h\x1fQ\xc6\x9f\xf9\x99\xb1\xb6\x1c\xa0\xc6\xe8\xfep\xe7ot\xce\x96\xf1(5\xda\xba\x83\x88n\'\xb2V\x0fx\xfaj:u-\xb5N\x14\x8b\x15\xac\x10\n_?c\xebH\xe4a0\x813Ov\xec \xfa`\xa1Q\xc8W\xc6(\x05v8\x0b\x12\xe6\x19\x1d\x0c\xe9\xeb\x8c\\OK\x16(\x9f\\g\xa2\xfar\xc3\xd0?<\x99Bs#\xed\xecID5i_\xee\xb2\xfc\xf1\xf2\x9d\x93hI\x04\xd5\xd1\xaa\xb7\x03\x9b\xc5,\xe2\x15\xba8l\x15V\xee\xe2\xb6d=4\x8c\x91v\x15W*\x18\xd1\xa28\x81\x1dp\xe48\xb0W\x16\xd4\xb8\x90\xbfW\xd3\x07s\x9c\x1b[\x1b\x1cX\x8fRO\x16:\xc4t\xa2\x1f+\xb7\xc8\xb4\x90\\\xdb9\x06\xb7\xaaL}X\xcfnb\'"s\xa3:\xf8gp\xbe\xf3\xaf\x05J\xe4d\x8b\x9a\x85\xfc\'\xf1>\xe0\xbeFS`\xfbG\xdb\x82)l\x9a\xf5\xd1\xa7)\xbc\xc7Jt\x86\xa5Q\x07\xdbD\xbd\xe3\xc7\x8bV"y)\x04>Y\x9b\xba\xb5z\x0e\xec\x02iTH)\xbe\xe6\xc5\n\xb5\xe38\xfb(jz\xba\x11\x04>\xd1\x9e\xfa\xa4\xa1\x1b\x9c\xa29p\xfc\xac\x8a\xd5\xbe\xa8\x9c\x0c\x81\xde\xe0\xb9g\x18\x1b!]\'\x91!\xcf\x1f7\xc5\xe1\xd6\'\x05n\x90\xa4\xc5b\xf6\xe8Udal\xc7\xd9\xd63b\xe9\x00\xa6\xfa\xdf\x13\x01\x9a\x1b(\xb4\xf1\xb8t\x8a\xa2.\x94#g\x8c+\xfcMo\xf8\xe8h\xa2\xaa\x1f\xbad\xf3\xdfg\xef:\r\xf1\xb6\xc91AP\xfez\xb4>\x8d.\x96\x08V\tK-\x88j\xd0rF\x01\x90\xf4\xca\x02o\x16\x95\xc1V\x1ej3\x1ef,\xd3\xfc\xb8\x18P\xd1;\x1d\xee\xc7$\x9d\xcc\x1f\xf3\x8e\x0e\xeaOL\xbc\xe6v\xd3\xe4\xae\xb6i&K\xd6\x92\xe0\xd6\xe6\xb6\x07\xb6 \r\x8ap@\xafy\x11\xe6\xdf\x00r\xd7\xb9\xc730\xf3\x88\xe1O\t3\x85\x03\xd5\xa1\xab\xe7\xba\xa1\xacm\x06\x8aE \xf6\xb2\xd4Q)\xc5\x89\x03\x02\\@\xa5\tx\xfdi\xe2\x1c\x1d\xc5\xe5W\xd2%\xce\xcbr\x15\x1c\x14\xbf\xf7\x94\\\x1a\xe0@[\xb4E\xbe\x91M\xc8\x1b+\x19\xb9}\xd8\x0c\xd4\xa5\x7f\xcf6\xce)\x845\xf4\'\xffc:2\x93\xe3#\xc4\xfb\xae\xef\xfa\xd6\x99\xc6\x10\x13\xd5\xb1\xf5\xcc\xf7\x8c^\x03\xa1\xce\x0c\x81\xf1se\x9fyuSp\xea\xc6\xd2\x11\x12&\xad\xa3e\xab.~D\xee\xb50\xc0\xd9]F\x90\xdc\xba\xdaU\x8f\xe2-\xd6\xbc\xa9\xc0i\xe6\xeeJ\xbf\x9aI\xc4:\xd2T\x82\x04\xe3W\xfa\xeeoT\x05ZuY\xfa\x0f\x97\xd5\xd42\x8e\xda %\xe8\x88\xa9\x18F>\xfa\xad\\\x98\'}\xa3t\xaa\xc5\xdfI\xa6\xae\x85c\xc8\x07-[\x9b\x13\x12\xc5]\xbe2t]\x7f`\xda\xf4\x0c\xadY\x8f\xfe\x13?\xf4\x90\xc9|\xde8\xdeVhSA\xf7x\xf1\xed\xc91\x11\x92\xcf\xcb\xd8\x12$\xb3\xa4\xecW\xf4\xc3\xac}\x95\xa1;\xe9\xb9)\x0b+r\x8b\x0c\xaax\x08:;\xea\xd0+H#\x17\x19\xe5N3`\x9d\xdb\x01\xc4\x1f\xf9\xe8\xce\x1ai\x99W\xb2\x83\x85\xe6\xb4||\x8cZ\xc0+\xffd\xed?\xde\xa7>\xc6\x10 \xfa\xc5\xd9t\xde\x82@\xa8\xc6O\xaei\x18&$tg\x8e\xbc%\xbb\r\x88\x80\xce\xc0M)\xb0\xc1\xd9\x9f\x84@l\xdd\xe7A\xb0}\xaas?\xe6\xfa;\x92\xb4d_\xce\xdf\x19\xd5j\xba\xe2\xb4x\xef%3\xb4\x14\xd2\xa4*\xb9h\xa7\xda?A\xfd;i\xab\x9b(\xf6\xad:\x85\x92=\xc5\xd3\xfd}\x11\xae\xfc\xe7\xbcl\x1a\r3\xe5\xde\x8ah\x0e\x9aA\xcf\x7f\x02X\xc2#\xbb\x9fl\xfem\xdc:\xaa\xea;\xc2\xd5E\xa2\xc9\x10\xc2\x81\x1dmAqqP\xff\xc9\x03\x18JQ|\r\xe4(\x8e4\xdc\xc3\xd0\xa8\x9b\xd1\xa4\x08w\x8fD@\x9e\x92\x1a:\xa1\xf2d\x170\x88\xedA}\x1a\xd9\x14>\xa4\xe1\xa6}bT\xb9im\x1biY\x8cJM\'R\x16\x88W\x04\xb3\x7fK\xac^f\xd3\xb2\xce\xf9b\xc0\x9e\xd2\xfe\x16|U\x16\x8b\xc45\x9a\x15\xf6/\x1dsm\x1bn\xaf\xe1\xe4\xdd\x7f\xaai\x17X\xbc\xe5\xc3\x97\xa5\x91\xa6\xf6\xe9M\x90\xd6\xdct\x1cb\xd0-\xf6Tn\xd0\x0c\xbb\x18\x08\xa8wSJ\xf0iF\xb77FZ\xdd\xf5~\x06\x87\xean\x8bA)\xe2b0Vy\xec"\xc2\t\x9a\x9e?l9\xbd\xe5\\\xbf\xaf\x03\x0fM\x85\xbd\xc6\x9d\xee\x9a\x89\x98B\x9bb\x9f\x84\x86\x06\xef#8\x16_g\xfc\x16\xff\xb9l2\x87f\x1d\x1b/m|\xa2\xa1V:\xecmN|\xa3\xc4\xe2\x81\x16ME\xfa&\xe7\xa6nt\x9a\xe6\xb0\xdat\x8e\r\xe9\x81\x81#\x06\x87\x94\xbb\xcd\\\xe8\x03\xabH#\x7f0V\x01^\xcd\xb5W\xcd\xc5;\x96jB\xa2\xb5G>\xc4m\xd4\x8c\xab\xe2\xe1\xc6FA\xb7\xba\xd04\xbeW\x0e\\\xeeC\x0c@\x9a}\x07\xb2\xa0G\x0e\xfbo\x1c\x15D<:\xbf\xaf\x06\xf5\xf5\x83x\xfe\x00\xb8\x8f\xe8\x83\x89H\x07\xac\xda\xdaRc\x02$\xb9d\xee \xf5\x00\xe4\xa7\xed1\x92\x1c\xed\xbc\xfd\x7f Tq\xb8\xdd\xe5\xb5\x8fU\x17\xfc\xa2~-\x00 \x8d^\xce"\x95]\xd1\x88r\xc1\xa6\xbb\xb6\x03\xd4\x96\xa4\xd5H\x96\x19\x07\xc6\xea\x933\xd9\xb6\xf9D+\xc7\r\x94M\xbav\xb0j\xe9\x01\xee%\'\xabqx\x91!M?\xf0\xb3#\x15>\x82\xae\xd1\x9f\xe4\xba{\xc2\xb1\xf1\x9e\xae\xcc\x9c$\x11b\xa9\xd7@\x0c{\x8b\x92\xe0\xaes\x92\x03W\xcd\xfd\x8c\xa2\xc9\xdd@\xb0\x11\xcf\xf3<\xacA\x05\xc7\xaeQ\x93\x03j\x13#\xde\x87\x1f\xee.\x99\xd7\xaaj\xc9\xbb\'\xe1\x94\x8e\xdd\xf5\xf0\x1a54\x1fH\t\x0c\x9a&\xacX\x00g\xf1\x1a\x11\x067\xe0Ld\x9c\x02\xfav10R\xfa\x8b\xce\xee\xad\x8e\x0b\xcf\xcd\'\xc8f)\xae\xe6\xbe4\xde`v\xa7\xa57\x8f\xd2\x87\xeb\xb6\xa5dj\xb6\xd8B\xb50\x15\xaa\xee')
spk_001.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79de3a5775f8880c0bf3e950b103f03b257db630224fab265a309d82753b1aa5
3
+ size 480044
test.ipynb ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": 1,
6
+ "metadata": {},
7
+ "outputs": [
8
+ {
9
+ "name": "stderr",
10
+ "output_type": "stream",
11
+ "text": [
12
+ "/home/salman/salman/minomni_sn21/omega-v2v/console/backend/venv/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
13
+ " from .autonotebook import tqdm as notebook_tqdm\n",
14
+ "/home/salman/salman/minomni_sn21/omega-v2v/console/backend/venv/lib/python3.10/site-packages/torch/nn/utils/weight_norm.py:143: FutureWarning: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`.\n",
15
+ " WeightNorm.apply(module, name, dim)\n"
16
+ ]
17
+ }
18
+ ],
19
+ "source": [
20
+ "from server import lm"
21
+ ]
22
+ },
23
+ {
24
+ "cell_type": "code",
25
+ "execution_count": 2,
26
+ "metadata": {},
27
+ "outputs": [],
28
+ "source": [
29
+ "from server import tok"
30
+ ]
31
+ },
32
+ {
33
+ "cell_type": "code",
34
+ "execution_count": 3,
35
+ "metadata": {},
36
+ "outputs": [],
37
+ "source": [
38
+ "import torch"
39
+ ]
40
+ },
41
+ {
42
+ "cell_type": "code",
43
+ "execution_count": 4,
44
+ "metadata": {},
45
+ "outputs": [
46
+ {
47
+ "name": "stderr",
48
+ "output_type": "stream",
49
+ "text": [
50
+ "\u001b[32m2025-07-17 20:59:03.022\u001b[0m | \u001b[1mINFO \u001b[0m | \u001b[36moutetts.models.hf_model\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m20\u001b[0m - \u001b[1m🔄 Using patched RepetitionPenaltyLogitsProcessor -> RepetitionPenaltyLogitsProcessorPatch | penalty_last_n: 64\u001b[0m\n"
51
+ ]
52
+ }
53
+ ],
54
+ "source": [
55
+ "\n",
56
+ "rr = \"\"\"I'm trying to come up with a funny name for my new goldfish. He's orange with a white spot on his head and he's pretty energetic. Got any silly suggestions?\"\"\"\n",
57
+ "\n",
58
+ "inputs = tok(rr, return_tensors=\"pt\").to(lm.device)\n",
59
+ "\n",
60
+ "with torch.inference_mode():\n",
61
+ " out_ids = lm.generate(\n",
62
+ " **inputs,\n",
63
+ " max_new_tokens=500,\n",
64
+ " do_sample=True,\n",
65
+ " temperature=0.2,\n",
66
+ " repetition_penalty=1.11,\n",
67
+ " top_k=100,\n",
68
+ " top_p=0.95,\n",
69
+ " )\n",
70
+ "\n",
71
+ "resp = tok.decode(\n",
72
+ " out_ids[0][inputs.input_ids.shape[-1] :], skip_special_tokens=True\n",
73
+ " )"
74
+ ]
75
+ },
76
+ {
77
+ "cell_type": "code",
78
+ "execution_count": 5,
79
+ "metadata": {},
80
+ "outputs": [
81
+ {
82
+ "data": {
83
+ "text/plain": [
84
+ "\" I've got a few, but they aren't very catchy. The one I like the best is just gonna be called fish. It's kinda long and it's kinda boring. Oh, I thought you were gonna give me some name for the goldfish. I'm just kidding. Yeah. So, you know, it's really easy to take care of a goldfish. We have a big tank, and, we're both in the same house. So it's not like, oh, where are my three goldfish? You know, it's just, oh, how many goldfish do you have? It's, like, four or five. But, we only have room for one person to be a goldfish keeper. So that is hard, especially when it's, like, 20 degrees outside and you're trying to keep a fish at home. Right? Yeah. That's difficult. And with the tank being this size, you don't really feel bad about taking him out. You know, you just kinda get a little more nervous because you know you're gonna be doing a big fish transfer if you have that big of a tank and all that stuff. But Mhmm. It's much easier to take care of the goldfish at home. So I wouldFor the rest of us simple folks, we worry about somebody stealing our password. To you, you laugh about it because you know how to do that with your eyes closed, right, with the technology you've created. So nowadays, you talk to certain investors, so where do hide your passwords? I don't want to really say, but I hide my passwords in my notes section on my phone. Oh shoot. Okay. Where do you hide your passwords? I write it on a piece of paper. Where do you hide your password? I have it on file on my computer. Where do you hide your password? I have it on an Excel spreadsheet, right? And all these places you go through. And so now there's a business model for apps that you put your passwords in and they protect your password. If it's so easy to break into softwares to get my password, How can I trust an app to restore all my password? Is there anywhere you trust to restore your passwords? So let's imagine that I want your password. I'm gonna make a website for Iranian American fans of Atlas Shrugged, and I'm gonna send you an email with a,\""
85
+ ]
86
+ },
87
+ "execution_count": 5,
88
+ "metadata": {},
89
+ "output_type": "execute_result"
90
+ }
91
+ ],
92
+ "source": [
93
+ "resp"
94
+ ]
95
+ },
96
+ {
97
+ "cell_type": "code",
98
+ "execution_count": 8,
99
+ "metadata": {},
100
+ "outputs": [
101
+ {
102
+ "data": {
103
+ "text/plain": [
104
+ "'All right. Good afternoon, everybody. Welcome to Friday afternoon. Appreciate you all coming. Really pleased today to be able to host the students to to COVID. Great. Correct me if I get it wrong. From the University of Wisconsin,'"
105
+ ]
106
+ },
107
+ "execution_count": 8,
108
+ "metadata": {},
109
+ "output_type": "execute_result"
110
+ }
111
+ ],
112
+ "source": [
113
+ "resp"
114
+ ]
115
+ },
116
+ {
117
+ "cell_type": "code",
118
+ "execution_count": null,
119
+ "metadata": {},
120
+ "outputs": [],
121
+ "source": []
122
+ },
123
+ {
124
+ "cell_type": "code",
125
+ "execution_count": null,
126
+ "metadata": {},
127
+ "outputs": [
128
+ {
129
+ "ename": "ValueError",
130
+ "evalue": "Cannot use chat template functions because tokenizer.chat_template is not set and no template argument was passed! For information about writing templates and setting the tokenizer.chat_template attribute, please see the documentation at https://huggingface.co/docs/transformers/main/en/chat_templating",
131
+ "output_type": "error",
132
+ "traceback": [
133
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
134
+ "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)",
135
+ "Cell \u001b[0;32mIn[6], line 5\u001b[0m\n\u001b[1;32m 1\u001b[0m messages \u001b[38;5;241m=\u001b[39m [\n\u001b[1;32m 2\u001b[0m {\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrole\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msystem\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcontent\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mYou are a concise assistant that answers in short paragraphs.\u001b[39m\u001b[38;5;124m\"\u001b[39m},\n\u001b[1;32m 3\u001b[0m {\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrole\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124muser\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcontent\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mExplain rotary positional embeddings briefly.\u001b[39m\u001b[38;5;124m\"\u001b[39m},\n\u001b[1;32m 4\u001b[0m ]\n\u001b[0;32m----> 5\u001b[0m prompt_ids \u001b[38;5;241m=\u001b[39m \u001b[43mtok\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mapply_chat_template\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 6\u001b[0m \u001b[43m \u001b[49m\u001b[43mmessages\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 7\u001b[0m \u001b[43m \u001b[49m\u001b[43madd_generation_prompt\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# appends the assistant header the model should complete\u001b[39;49;00m\n\u001b[1;32m 8\u001b[0m \u001b[43m \u001b[49m\u001b[43mreturn_tensors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mpt\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\n\u001b[1;32m 9\u001b[0m \u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39mto(lm\u001b[38;5;241m.\u001b[39mdevice)\n",
136
+ "File \u001b[0;32m~/salman/minomni_sn21/omega-v2v/console/backend/venv/lib/python3.10/site-packages/transformers/tokenization_utils_base.py:1621\u001b[0m, in \u001b[0;36mPreTrainedTokenizerBase.apply_chat_template\u001b[0;34m(self, conversation, tools, documents, chat_template, add_generation_prompt, continue_final_message, tokenize, padding, truncation, max_length, return_tensors, return_dict, return_assistant_tokens_mask, tokenizer_kwargs, **kwargs)\u001b[0m\n\u001b[1;32m 1618\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m tokenizer_kwargs \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1619\u001b[0m tokenizer_kwargs \u001b[38;5;241m=\u001b[39m {}\n\u001b[0;32m-> 1621\u001b[0m chat_template \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_chat_template\u001b[49m\u001b[43m(\u001b[49m\u001b[43mchat_template\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtools\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1623\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m return_assistant_tokens_mask \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m re\u001b[38;5;241m.\u001b[39msearch(\u001b[38;5;124mr\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124m{\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124m%\u001b[39m\u001b[38;5;124m-?\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124ms*generation\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124ms*-?\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124m%\u001b[39m\u001b[38;5;124m\\\u001b[39m\u001b[38;5;124m}\u001b[39m\u001b[38;5;124m\"\u001b[39m, chat_template):\n\u001b[1;32m 1624\u001b[0m logger\u001b[38;5;241m.\u001b[39mwarning_once(\n\u001b[1;32m 1625\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mreturn_assistant_tokens_mask==True but chat template does not contain `\u001b[39m\u001b[38;5;124m{\u001b[39m\u001b[38;5;132;01m% g\u001b[39;00m\u001b[38;5;124meneration \u001b[39m\u001b[38;5;124m%\u001b[39m\u001b[38;5;124m}` keyword.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1626\u001b[0m )\n",
137
+ "File \u001b[0;32m~/salman/minomni_sn21/omega-v2v/console/backend/venv/lib/python3.10/site-packages/transformers/tokenization_utils_base.py:1789\u001b[0m, in \u001b[0;36mPreTrainedTokenizerBase.get_chat_template\u001b[0;34m(self, chat_template, tools)\u001b[0m\n\u001b[1;32m 1787\u001b[0m chat_template \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mchat_template\n\u001b[1;32m 1788\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1789\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 1790\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot use chat template functions because tokenizer.chat_template is not set and no template \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1791\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124margument was passed! For information about writing templates and setting the \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1792\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtokenizer.chat_template attribute, please see the documentation at \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1793\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mhttps://huggingface.co/docs/transformers/main/en/chat_templating\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 1794\u001b[0m )\n\u001b[1;32m 1796\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m chat_template\n",
138
+ "\u001b[0;31mValueError\u001b[0m: Cannot use chat template functions because tokenizer.chat_template is not set and no template argument was passed! For information about writing templates and setting the tokenizer.chat_template attribute, please see the documentation at https://huggingface.co/docs/transformers/main/en/chat_templating"
139
+ ]
140
+ }
141
+ ],
142
+ "source": [
143
+ "messages = [\n",
144
+ " {\"role\": \"system\", \"content\": \"You are a concise assistant that answers in short paragraphs.\"},\n",
145
+ " {\"role\": \"user\", \"content\": \"Explain rotary positional embeddings briefly.\"},\n",
146
+ "]\n",
147
+ "prompt_ids = tok.apply_chat_template(\n",
148
+ " messages,\n",
149
+ " add_generation_prompt=True, # appends the assistant header the model should complete\n",
150
+ " return_tensors=\"pt\"\n",
151
+ ").to(lm.device)\n"
152
+ ]
153
+ },
154
+ {
155
+ "cell_type": "code",
156
+ "execution_count": null,
157
+ "metadata": {},
158
+ "outputs": [],
159
+ "source": []
160
+ },
161
+ {
162
+ "cell_type": "code",
163
+ "execution_count": null,
164
+ "metadata": {},
165
+ "outputs": [],
166
+ "source": []
167
+ }
168
+ ],
169
+ "metadata": {
170
+ "kernelspec": {
171
+ "display_name": "venv",
172
+ "language": "python",
173
+ "name": "python3"
174
+ },
175
+ "language_info": {
176
+ "codemirror_mode": {
177
+ "name": "ipython",
178
+ "version": 3
179
+ },
180
+ "file_extension": ".py",
181
+ "mimetype": "text/x-python",
182
+ "name": "python",
183
+ "nbconvert_exporter": "python",
184
+ "pygments_lexer": "ipython3",
185
+ "version": "3.10.17"
186
+ }
187
+ },
188
+ "nbformat": 4,
189
+ "nbformat_minor": 2
190
+ }
test_asr.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from data_backupp.Champion.ShiTop1.ShiV3_NewUpdate.REP21Sun__14_21.tokenizer import gt
2
+ import librosa
3
+ ref_audio, _ = librosa.load('/home/salman/salman/minomni_sn21/omega-v2v/miner_models/MiniCPM-o/assets/input_examples/assistant_female_voice.wav', sr=16000, mono=True) # load the reference audio
4
+
5
+ text = gt(ref_audio, 16_000)
6
+ print(text)
7
+
8
+ # write a code to recursively iterate a directory and subdirectories to transcript all audio .wav files in it
9
+ import os
10
+ def transcribe_directory():
11
+ for root, dirs, files in os.walk('/home/salman/salman/minomni_sn21/omega-v2v/miner_models/recordings'):
12
+ for file in files:
13
+ if file.endswith('.wav'):
14
+ print(f"Processing file: {file}")
15
+ file_path = os.path.join(root, file)
16
+ audio, sr = librosa.load(file_path, sr=16000, mono=True)
17
+ transcription = gt(audio, sr)
18
+ print(f"Transcription for {file_path}: {transcription}")
19
+ with open(file_path.replace('.wav', '.txt'), 'w') as f:
20
+ f.write(transcription)
21
+
22
+
23
+ transcribe_directory()
tokenizer.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Pyarmor 9.1.8 (trial), 000000, non-profits, 2025-09-21T16:41:37.351423
2
+ from pyarmor_runtime_000000 import __pyarmor__
3
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\x1b*\x00\x00\x12\t\x04\x006\x92\x18\x01/TC\x8f\x8fA\x94.\xf6$\x85\x99\x00\x00\x00\x00\x00\x00\x00\x00\xf5\xae\x91\x85\x0b\n4\xde\xa5y\xcbS\xf9:o\xf3\xb8Vj\x0c\x8a\xf3t:"@g\xab\xa1\xd1\xd0\x03\xccv\'\x84i\x07\xb6<\x92\x87Q7A\xbeC\x03=\x84\x0c\x00\xf3B\xe6>\xdcg/\x8f\xa6\x87\xb0\x0fX\x9cL\xe6xX\xd3\xd33\xe8\x84\xdc\x14\x86\xf3\xe2\xad\xaeKN\xf4B\xda\x12\xc1r1\x90\xea\xf7\xe5T\xee}\r\xc6\xa8=\xc6\xd1v\x1cp\xd8o\xbe\xbc\xeeYp\xa7K.\xbf]H\x85i\x16\xd8\xc9=&\x17A\x134R=\x14../\xc3\x14\xfe\x8b\xf7\xa8G9\x80\x90q\xba\x12.\xef\xf9\xfc\x93c\xc5\xcc\xb8\x9bX\x01\xae\x85\x97\xc7\xbf\x08\x0e\x94\xfah#\xbe\nF\x03Yj\xf0)\x13\x15\xd3\x10\xd1\x8a\x16\'ew\x14-:\x93Y\xf1\'#\x0bd\xc1q\xbfe\xd2U\xb3a\xa6\x8b\x9b\x9d\xa7u5V\xdft\xbcv\x10u\xc2]dI\xf0\xb1\xbeW\xb7\xa6\x1f\xbc\x0b]b\x94u\x05\xbfA0\xbc\xfc\xa7\xc1\xc7\xc1zZ\x19_\x9a\x92\xc3(\xb7\x8b\xb2\x9a\x8d\xfc\x87\xae\x8a\xf7\xbe\xb8\x1a\\\xbe6$\xddc\x19~;\xaf\xd5\xdd\xb5s\xa1\xf1\xa1\xa8"\xe8\xd4\xfa2g\xfey$/%\x9d\xef\xa0)\x12\xf01\x9b6\xbd\xda1^d\xa3\x96\x88\xbe0\x0c\x0e\x18\x919\xbf\x03\xb7\xc6\x9d\xac\x89\xac(Q\x89\xbc\x16\x92M\xdf\xaf\x89\xc7P~\xc4u\xde\xbe\n\xc6td\xe6\n\xd6f]\x84\x81,\x7f\x85\xb1Dz\xf4\xcce\xe6i\xfe\xbd\'kX*\x97\xa7Z\x04\xccrB\x8a\\"\xdb\xe2\xed5\x80dm\xf6\xb7\xc6\xc8\xf1}\xe9L\x1a\xb1\xa4}\xc2v\x10s}\xf8vm\xed\x90x9\xf7\xcf\xc7\xa0\x96/\xb0F\x99\x93\x99\x8a:\x8c\xa5\x80(\xf01\x1e\x06\xec\x82 \xa5\xf3\xd2q\x84I\xb4t\xca\xc0\xc0\x921^7C\x88&\xe4\xe9UT\xb1\x03\xc11\x1cS*nK\x86\xb0!\'\xdc\xa9\x87x\xb5\x1f1\xa6\xda\xda\xe4\x87\xfa,\x82U\xbe\xe51{\xbf\xa7\xaet\x8a\xcc\xca2?\xe3$\x1e\xd0\x8c\xd0\xd9\x83\xdb\x19\\\x0f\xa5O\x9c\xb5F\xfd\xb2\xc9\xaaR\xc38!u\xd3\x1ed\xf5\xb1\r\xc8(\x97\xa8qCQ\xd5\xc4\xe1r\xaaq7^\xaf\xe3\x1ch\xaa$i\xb7_A\xd2Z\xfa\xff7\xa0\xc8p\xd6dT\xb0\x1a\x17F\x1b\xdd8\xc8\xea\x82\xae\x98h\xd7\x17\xc5\xe4C\xca\xeb\xd5L\xdc2:1\xd4\xfcK\'[\x97xd\xd6Q\x81\x9c\xc9b^\x8b\x12\xa6\x9fV\n\xeeV3\x8co\x15\x93\xd5\xcdQH\\e\xcf\xd8\x9e3\xf3s\x82\x92\xc2\xaf\xda\xaa\xcd\n\xf3#\x97FL\x08\x10\xaa8\xffA\x96]\xe7\x86\xa4\\\x19N\xbb\xe5[D)\x18&E\xe7r\xfc\xe6\\\x84\xe4\x96\xd5z\x115\xcc\xa9n\xb3&\xe4\x1b\xa4\xcf\x92y\xdda\xf1W\xab\xcdk\xca\ne\\\x03\xca\xac\xfb3\xc8Ud\x9d\xc8\x96}0\xd1\x01\x06\xad\xcb\xae\xb0\xab4d\x0b\xb4\xc3\xdd\x93\x86\xa2Z\r\x1cl/&~\x96E\xd7e\x1f%\xed\xe3&\xa1\xc5c\xad.\x8c]\xf1M\xa3\xec\x89\x93\x12\xf9f\xa6Y\x066\xaa\xb3\xcb\xba\xd4\xfa#.\xee\x19\x83rS\x90\xbajn++b\xcfE113\x04\xcb\xd0\xfd\xe8%\x12\x96\xb7\x9b\xc1JJ#\x14\x1fxWT\xd0?\xc7o\xd42kV\t\xfd\xdd\x0e\x19_\xc7\xf33\xd4\xf8\xd0 e\xb6c\xe4\xd2&QM\x9a\x82%B\xc2@B\x05\x92\x17X`t\xcf\x7f\x94\xaf\xe4\xf4\x83\xabS\xae0\xa5}\xbf5\xc8\xf3\x1e_f\x90\x8e\xb8\x1d\x1epJfW\xd2N\xac\x0e\xad\xeeB\x7f\x7f\xb9\xd3\x91\xc7\xed\x1830[\xbfc\xe7\x03\xf3\xd2\xa5\x9d={\x89dB\xfe\x16\xb2d44\xa3\xdf\xa7b_\x9c\x83\xc9\xb8\x85c\xdf@&\xde:\xe1=6E)\xf4\x08a\x95\xc6\x82\x04w\x1bL\xda\xa4a! \x14\xd2 ,\xfd\xeb\xbb\xd9\x96\x97v!yX\x8a\xa6\x93\x00\x1f\xe6\xbe!U\xf8Dv}:0?]\xc3\x94\xfe\xc9\xf8\xd1\x99\xfc.)\xce\xc4\x811\xef\xce\xe4\xdcz\xd0UU\xbd~\'w\xea<r\'\x14wR:\x06U2\x8f\xaa\xe5\xf2Y\xb0~\xcfU\xb7\x06\xcf\x1a\x12\x9b\xa1\r\xd2\x82\x86\x1f?\x0b\xdc\xd4\x989\xe7\xa6+\x860\xd9"\xb1\x9b\xb3eK^\xd3\xd8I(\xb9u&0\x06\xfca\x12kTZ\xae\x84^*\x05J\x87\xab\xf1\x87\x06\xb1\xc5\x84)\x9d0\x16\xc8\xc1\xe0\x92n,A\x8b\xff\xebD\xa8\xe9K\n\xac\xaa\x9f1\xa3n\x97\x9e\xf4\xcd\xdc\xda\xfe[8q7y\xb4\x07\xfewj\x96\x07\x94wK\x9a\x85\x0eEX\xd9\x05*s?\x00\xb2\xf6\xa8\x12\x00\xa3\xf7\xdd\xea\xb0.S\x01Vo\x086\xef\xd8;\x95=\x91e\xb2+U\xa7\x0c|\xfb\x1a\xcc\x0c\xcb$7\x18\x98=\xf1D 6\xac\x9e\x84\xab.\xdf}\xee\xa9b5\xb9\nX\x00\xacm\xa1x\xee\xf3\x13\xae\x11|\x0b\xd3\xae\xfc\xe1\xcfL\xc3]\x83B\xd9h*\xe0\xce\xac\xe5\x9d\xbfC@\xf2\xa7\xf1\xec|\xd1\xe8p\xc1\xcbO|B%\x1aL\x1f\xa90;wDX\x9fP\xc2\xa0\xec\xc03\x8f\x08\xbc\xee&\r\xdc\xd5\x14a\x10\xce`\xac\xcc\x93}.uR\x00\xbf\x1b\x17U\x9d\x0f\xbc\xc86\xd4h`>N\xfb\n\x87M\xa5\xe0\xe33\xe8|\xecL\x99\x17\x07\x14/\xaa\xd8\x81\xe62\x1e+\x94\xe1=\x15\xda\xdb\xea\xab\x1fY&\xba\xf5\xf2\xc3\x11/\x1aB\x8c\x07\x98\xa9Y\xec+\x80a\x97\xc2)\xa0u6j\xf8\x96H\xe8\xc1q\x08#`\x84h\x00\x8a\xb8z\xbf\x95\xdf\xca\x9bDi\x96\xcd<\xa5\r\xac\xdb\xf5\x1b\x01\xb0i3\xde\xa8]\x1a\xd8,\xab\x86\xda>\xed\x99fi(W\xf0W\x0c\xf66\xd3\x06\xe6~\xa3\x8eNf\x9b\x0eh\r\xf9w\xb6\xbc\xff\x9d1\x80(z\x83P\x0c(\xd2\x01-\x1aM#~\xc8\xf2\x07\xc1&\xfd8\xf9!\xe33\xdc\x80\xb3Lh\xedxw]\xc45\xcf\xdf\xe9\x91\n\x83O\x15\xb9\xeb\x96{\xee\x9c>\xebVy\xfb\x8a\x99D\x07Z|\x1f;\xcc\xc0\xbdh\x02r\x04k\xf4\xf7\xb14\xc2^+\xc3\xb5R\xce\xc9mGG\x83Y\xef\x90\xb4\xe4\x85\xfa\xfdr _UHJ\x92B\xc8`\x1090\xf78fC\x8cB\xca\x83Z\xc0\r\x9b \xf45.\xd2\x06\xf6o\x92\x9b \n}\xd5;\x80].\x00PW\x9f\x9a\xdc-\xd3\x7f\xf2\xf9\x8c\xef\x1bW\xf4S/xE+\x97H\xdc\xd7\x92T\xae\x81qR\xe1\xde\x83\xe6\x12\x1bt@\xf9{\xe8a\x83=\xbb\x19\xe5\x16\xb4\xbf\xa5\x8dC\x08\xd8;\xe7\xfe\x1ap\x06$\x819g\x83XE\x9c\xd6/o\xd0?#\xc9\x8a\xf9\xc9\x003\xa4UU\xf3\xe3z8\xf4\xb4\xe8\xb4{\x9a\xbf\xaf\xde"\xaaeU\x90\x01\x97\xd2\t;\x89$(\x8a]\x86m}\x1c\x8bJ\xf4\xda/\x12\xc9\x8f5!\xb5v\xd4K\xf7\x00\x08Ka\xadSE\xeb\x95~\x19\xa4z\xad\x19|GS\x1f\xe8\x15\x93\x1c\xc5\x0b\xaeU\xac\x8ed1q\xb4\xd2\xfc\x18qr\xe2_\x11\xa6\x12ch\xbc\xc3sFp9\xfey\x99b\x03\x80\xa6L\xbe\x91\xbf\xc8jd\xd6\x9c\x8bc\xd7\xfc\xdf\x97\xb1\x1e J[\xc2r\x05\xb7\xb3\x88\xf0\xd9\x11\xb0\x85\xe1\x16`T\xfb\x1c\xb2a\x8d\x96e{+\x81yG\xa3\x89M\xd2Ez\xd9\xcb\xec\xbc\x9ca\xc1\xeetW\x16\xa6\x04U\t\x9c!\xa6Jw\xd5\xf1\xb6B\xcc&d\xe9F\xdc\x1f\xc8\x11\xee-\xf4\xef\xaa\x89\xbc`\xcb=\t%\xf3\x05\xa7\xdb\x1a\n\xa3\xcb\x03\x87G\xb6m~\xd1|a\x9e3\\\x15\xd3~\x925\xe5g?\x96\xdfR]\xc0\xa3\xe1?@&*&\x8e\xa2\x85\xd21\xab\xeab2\x89\x10\xab\x95\x84\x01\xe6e\xa4\x8e\x16\x91v\x80\xb6+\x91\xdf\x97oL\xcb+\xedS\x0b\x19\xf6\xc5\xfe\xab\xee0-\xdc\xea\xa9\x14\x8c#\xd8\xb7\xf9\x89Y\x96$\xe7JB\x0ez\x1e/\x8f4\ty\x06\x0f&\x02>\x1e\xa8wM;f\xe7\xa5\x98\x1a5\x0c\xa0]\xd66\x1d^\x18\x95G\x81\xb5\x97f\xfbS\x87\xe7R\x1f\xca\x8c\xa9\xe9\xd3zL\xd0\xee"8\x99!\xcbT\x8a\xa5)\xf9\x91U\xbdJ\xaax\x0c\x84\x81\xd03\xceC\x1e\xdc\xdb\x92Y(\xd3\x9c;\xc9\x146\x1f\x10\x05\xaba\x9dV\xf6\xde|\xc6\xeb>\xec\x9d\xe0\xdbDpH\x94~\x14H<\x1e\x17W\x9cE\xffnV\xed\x89\xe1\xc5}\xf1tT\xc9\xe6\xf5tp4,K\xc3\x12\xdc\xf8s\xe4\xc4\x8aN \xbd\xe5\xe06\xf4*\xd3uX\xe3P\xbf\xac\x15+\xf6~\xb7gtC\x9c\x1dx\xe0\xb3\x87Z\xffHj\x87\nS5\xcc\x8a\'\xcc\x9e\xe7\x83\xf2\x8c\xb4\xd3\x8f\xec\xad\xed\xa4\x99\xac\xa1\xf4\x999\xc2\x17\xb0jl\'\'\xb77\x8cA\xae \xfa\xfc\xd1LAG\x97 \xb9b\xdd\xe5S\x1d\xa9\x8f\xc8*9\x0f\xadD\xeeL\xb6\x86\xd7\xa6\xd0\x9fb\xe6DI\xac\r\xd6\xf7\xe2\x88Z\xe5\xbe\xd0d\xbb\xc3s+\xb7B0\x19\x88yU\xab\xaf@=m\xf3\xbc\xf2\xc4\xce\xdf\xdc6\xa7\x14\x9c\xb8\x057\tr\x17\x92\xc0\x05s\xc3\xc7\xa2k\xc6\x0c\x19\x8d`\r\x85\x82\x95\xc0j\x85_\xea5;t(\x8c\xf5\xe1\xc1K=\x8e\xcc\xc0\xbd-X\xb9\x8f\x12R\xd7\x13\xd1\xa6\xca\xb3\xe3\x94x\x0e\xf8%\xdf\xcf:e!\xcd\x04\x16W\xb4P\x81\x98.T\x97\x97\xe9\xfa\xb1\x1cM\xef\xabN2\x95Z\x08\'r:>NStT\x90\x12c\x02\xb9\x1e1DZ\xfc\xc9\xebw\xd6\xe5\x1e\xcc\xdf\xea\x81\xa7+\xb9/%\xa2+1\xf88\xec\x00\xf9\x86\xf3\xa8\x18\xcd\xba\xcf\xffq\xa5\xaf#\xa7?\xde?\xd640\xcf\xf6+\xc2\xcc\xfa\x0c#\x94\xe4\xa2\xbe|X\xf8s\xc1W\xcd\x81\xa9Tm6\x1a\xac<~B\x8a\xa5\xd2\xac\xa0\xe3\x9d\xdf\xcaY\xed\xd2\x88d\xa3\xcd\xb4\xa30\x96x\xb7\xa5\xeb\x83Km\xe8\xb6)\x18\xcc\x15{\xa8\xfb\xac\xd9\xc8\x05@\xd7\xe9\x07\x18\r{\xf1\x186c\x83\xf3\xde\'\x88\xd5\x11d\x06\xb3\xf7\xa1\xb9\xce{\x8d\x8e\xa3|\xca\xd6\xd1-\xa32\xf2\xda\x14\xf2\xc25\x0c\xe8C\xd7\xf4\x93\x9c(\xd2\x82C\xc8h\xbb\x96\xf6\x95\xe9\xca:\xc6\xb2a\xbe\x93u\xd8\xb7x\x1bv\xc8\xb6]\xa2\x86/\x87q\xe2\x0c$<\x8eA\\\xcc\x10\x9d\xc5\xb0\x97\x1e\xe9\xd8\xfe\xcc\xcc?\xfa\x08\x8a_+\xfa\xe9g\xd6\xee~\x11\xb1\xabl\xf5\xe8\x8dD\xea\x95\x89p\x0c\x90\xe6\xeau\xac\x18(\x1e\'!\xd8r\x08\xf3\x06\xe9I\xed\xf4\xee{\x1c\xf8\xdf\xa9?TU\xee!&H\xf2\xc2\xb3\xc3Sv\xb38a\xb7\xbfT\xc9B\x13\xe6\xd2\xe8\xb6\x83*\xc0\xb2(\x99X=sz.\xe8\'%\xd0\x95\x9c\xf85\x80\xd4\xc2\xc9(\xeb\x04"X\xf9\xeb|C\x7f\x1b5\x8f{\xf3\xec\xeaC\xfb\x9b\xc2\x03\xe0\x89\xe5\x8f\x98\xf0\xf2\xc9\xb0\x86>\xaa\xc9\xcaD%\xce\x0f\xe3\x87\xc8\x95 ^\xdf\x1e\x17%\x9f\xd6AK,\x83\xc0\xf6\xd2e\x10\xb2c{\xca9\xad\xf7\x89q\x0b\x90\x94\x05\xadoBV\x89\rG\x07\x08\xbe\x87\xb7\xb6\xc8\xe30\xb3\xec\xf9\xb0l\x9a($\xa3\xb2\xfe4\xa6\xf8\x19\x10\xcb-P\xea\xdd4\xad.\x83\x12<L]F\xb6\x07[\x0c\x13\xc5\x8f\x14\xd6H\xa1\xdaB\xb6T\x04aU\\,SbJ*\xec\x0bX#\x90\xb7z\xa9\xd0.\xf3\xb3\x18`!\xd5\x9f\xbc\x94\x17\x9e\xcc\x85\xddnMs)\xd0\xfe\xb4\x7f\xbd\x86qG\xdb\x0f\xc0/\xb3\x93\xf2a\xd2\x92r\x0b\xe3\xb2\xe0n\x97\xc4`\xd3I}\x0c\x9d\x17(\x9f\x01\xee\x03p#g\\\xdd\xd5-D\x18\xf6\xf9\xc2~\xe3\x8aI\xd4R\xe7\xac\xaemfS\xe8\xb31\x80\xdc\xe3\xfdw\xed\xb23\x94E\x9b?\xd7RG\xe6\xd4\n\xbdS\xf2\x98\x98\xf6\x86\xa5\xae\xd8\x15\x9f\x12jCT"Q\xd6\xb5\x9b\xd8\xd4\x08\xb7\x98XT\x12(0\xc6\x85\x90\xb8\xb2\x9bV{\x98\xad\xe8M(\xde*^\x19\xe2\xd1\xea\xf8\x87\xf9\xb5\x17\xc29k6q0\x1d\xcb3\x94\x8b\xa5\x9b6\x96\x07|.\x86\xf4\xe5\x8e\xe9\xe5\x93\xdf\x81\x88\x94RDx\x8a\xc0\x99\xa4\xb9m\x1cQ\xb3\xe8W\x8e\xf7\xa3\x0c\xd2rI:\xbb\x9cTy=\xe12v\xc8\xa9\xc0W&\xaaS\xff8\xc9\x0fW\xd3\xd8\x1e=\x07\x1e\x9f\xa2\x0fc\x0c(k*\x18\xd4\x92pV\xb0\x0e\x06\x82\xbb\x82;\x16ET\x8f\xc4K\xe4\xa0\xd4\x99#1r\x9a\xa9\xca\x92\xd8a\xf4.\x82\n\x03>\x8a\xae\x88\xd3\x07\xb8\xba$u\tV\x99\xaf_ J\x91\x1e\xf5\x97\x9b\xc7\x1c"\xa8\xa2\xf0\xa7\x0cEw\x17\xe9.\xddI\x13r\xc5\xe3\x96\xc6\xae\x80\\a\xb8\xd6\x8a\xa2\xc6\x1f)\x0c\\\xe4\xc8\x99\x1f\xd7H\xcc\x9e_\x8d\x05\x12f\xf6\xa1\x14\x95\xd7L\xc0\x00\xd7\xe1\xb9\x85Y&\x8b\x1a\xff7\xd6\xa1\x07%-\x03\x8c]\xd6&\x99\xb8\xf3\xf6\xa8?y\xd1\xbew\x10\xbe\xb7\xaa\xc4&\xb3o\xb2@\xcc\'\x83\xa2\x1c\xfd\xcc\xe3P\x8c\xcb\x1a\xb7]8\x02\x81h\x0e\x89\x88</n!\xc9\xca\xd6o\xed\xe4\xd0K\x16\xb3\x96s\xc5S\xa9\xfe\xa3\xdd;\x00\x1c\xabb"\xce\x92\x96\xcb\xc9\x1b\xdb\xd5\xd6/\xa3B\xd1\x90\xbaX\xbd\x07AM\xbe\xf7\xcdd\x92\xbc?\x87t\x13\x88\x05d%\xe8\x0fz4\xcd\xa9\xa0\x90\x17 4\x1b\x86\x00\xc8e\xf4\xd6[h\xb1\xa9\xbf\x96\xb0>Co\xcd\xb1\x04w\xb4\x9a\xd0\xeb\x98\xbc\x0c6\x02-\xfe\xee}\xb8\x13L\x95Wx\xd7\xa2\xf3\xf9\x1a\xc1-ct\xb8#\xda\xdb<\xc1{\xd9\x92C\xc0nD<\x8e8\x12X\xdb\xe6nGj\xd5C\xbcD~\xc0\xcb\xea\x11\xd07\xcf\xb7\'L\xcdy\xf3\x08\xdc\x8e\x10\xfc\x83\xcd\x0b5%\xb1\x94\x9c\x91<H\xa6\x8f\t\xdeL\xca\x88\x16\xe4mRU\xfd\xfb\xacQI\xc38[E)\x0e\x84\xe1\x11\xc0\xa57\xb9\x1b\xa9\xf4F\xc6zw]m\x83\xedJt\xadQ\x95\xa6\xd6_\xfd\xc6MIE$4\\\xc8VKn\xc1*\x06\xf8\x10\xd0\x1b\x06e\x9f\x14_\xa86\xd4\x86\x9cw?\x8c\x80Q\xa1\xd3\x08)\xb4\x9f\x95\x80\xff\x88\xfdu\'\xc9\x80\x04u\x8b\xa1\xd1EeH2[\\\x8f/>3\x83\xbe\xb2MjW\xa5\xc1~\xfc\xa8)\x82\x08h`\x8e\x1d\xab\xc7\x1e\xa3\xfa3B96\x1d#u\xb1\xbf\x00\x8e\xb7\xe3\xba[w\xdc@o\x95\xaa\xcf\xd5\xec\x19\x14 \x85\x00\xee!\xbc\xa6\xe6\x07\xa7\xcc\xa6\xa7\xb5\xcf.\xc6B\x12\x16h\x0b\x9f\x99\xa4\xaa[\xf8\xe3\x8e\xfb\x14l\xf8%\xf7f\xc6?\x17|3\x00\x95\x98\xa8bQCMD\xe86:\x97\x1e$d}[\xd4\x14"I4\xd8\x8aP\x9d\x08j\x02\x1e\n\x82\x12\x10@\xb9\x82~\x03\xd1%6\xb2\xee\x81 \xff\'\xf5\xa3\x96\x83\x8a\xed\xa7\x85\x01}\x14M\xc3\x82\xedp4f\xfeW\xbe\x8a\xcc:]\x08\xe3\x8d\x9a"\xef\xc5\xe4\xa0\x19/\x888;\x93\xee\x01P#\x87\xb2\xad\xd9\x93\xef\x8d\x87?\xad\x8b\x96\xd2\xfa\x08\x8a@\x9c^z\x92y\xb2\xcfe\x90&\xf2F\xa4\xba\x03\x96\xb7f\x87ub\xd0Y\x85t,\xd0\x10\x7f\xb7P\xdeyZe\x01\xfe%\x87\xd7w\xf3h\xaf\xe4w\x05\xd2\x0c\xbfn\xf1\x01T\x07!\x06\xba\x98 \xeeA\xe3\xee\xa8\xa4\xdb\xae\xc2Yg\x1bX\xca\xce\xcd\x86@\x04\x94\xbcrN\xd1J\xfc\xca\xbe6\xe6Wq\xe5\xbb[\xe9A\x1ado\xa5!\xa5-\r\x1bI\x80\xf9\x07\xee\x02Z0\x18/\xbe\x87\x88+c`\xc3\xc8?\x98k\x92\x056o4\x11;\xffW\xb6\x14yQ\x1e+\xa7$\xa9\x1d"\x8c\xb6N\xcamT\xf0\xd6\x88J\x08[.Y\xa5\xdck\x9b\xfd\x04\xa3\xe7\xc0+0\xf7f\x86$%\x9d\x05\xdd\x97pK>j\nn\xf5O%\xdc\x96\x94\xe9-\xc5V\xb3\x0c\x15\xb8\x1bN\x81N\xc7e\x05\xf4aI_\xce\x08\x8aS\x19\xa09\x94\x13:\xf7dIG\x98\xd72\xf6(~\x88\xd0\x81\x172bz\xbe\xec\x87Y\xf8\xf3\xf5\xf0@\xab\xf5\x8f\xa8\x1a\xf5\xea\xc0\xc5\xa6\x16pp1\xc2\xf8.<\xde\xcd6]\xf5\x05\xdb\xae\xab\x01gL#\xcc\x7f\xba\xbe\x93\x1a\xfcf5\x1cEf*k\xbfl\xf9\xab\xcbS\xb9@\x00\x1f8\xc0uFa\x02\xf0\xf6\xdf\x83U\x9ce\xb2\x88;O\x12\xc3(:pOB)\xb4\x97r\'\xab\xad\xa6D*\x15\xf5\x80\xba\xaf2\xd6\xa4\xb5c\xf9\xd9\xbb@&m4\xde\xef\'\xc0x\xfb\xae$\\HIK\xcce\xd9Sh\x150LO\x8e\xee\x91\x18GAZlY\xc8M"R\xfe\x8aOd\x07\r\x15\xfb&N\xc05\'\x00\x1ar\xc7\xf6\x9f\xe0dU\xc4H#\x07\x8e\xf5\xeaGG\xb2\x05;W{a\xcaX+\xa9>A\x14\x08H\x9c%\xa0\xc1\xf3\xee\x7f\x87\x18\xac\ni\xe4\x87\x00\xca\r\x02D\n\xdac\xe2\x83#c\xda\xa13\x1f_\x83V)[\xe5S\xfe\xa9\xaf\xe16f\xa0/nOy\x9c\x01\x06\xbf|\xd4\xca\x1e)\x16 \xe5\xe9\xa5\xf1\x80\xddS\\+#,\xc6N\xcd\xb8\x0cq\x80\xe0\xeaE\xd6\x83\xa5\x1dw\xbd\xaao\xa8\xb6o-\xe0t\xd1&\xf7\x06\xd3\xda1\x01A\x8d#A\xbafbT\xbf\xc6\x0fO\xb5\xb9l\x01\xd9Fw\x9d\x82\xf3F\x8bs\xe7\x19\xbf\xd0\xe1\xcew\xde\xfa\t(\xf0X"\xa0-\x1eb\xb5-\xa5\xcf\xd2yr9\xbe\xebpn\xef\xca\xfd\xa5Z\xf2\x02\xa65\xdd\xa6\xee\xa3\xc7\xa9\x86\x1c{\xe5\r.\x00\xc8\xf0\xf0\xf3\xf9\xe3\x99t\x9e\xc0"\x0bI\x9b\xae\x97\xaa\xfb\x939k5\x1e\x1as\nv+Q\x84Z\x94x\xb9\xdf\x06\x94Q:J\x19IX$l\xa3\xf2P%\xe6\xb1R\xe0\xa9\xe1i \x89\x18H=\\$\xccBA\xab2W\x01\xdd\x1c\xa6\xe9\x1f%H"\xb3\xb8\r?\x16\tD<&\x13\xec\x8dC\xe5x\xc6\x07\x13\xa3\xff\xe3v\xc7\xa6,\xdd\xa7\x04O\xa3 \xab\xbe\xa00!\x810\x8a=\x15\x0cJ\xab\x15Kh\x8feH\x13\x1c\xd3rHb\xad\'\xf1\xbf\xb1\x9au\xd3\xe8\xf5Q+\x06\xcc\xc5\xaf\xa0|\x0b%\xfd\xe2\x15\xac\xb4\xf4Tg\xed\x90\xc4\x04\x9a\x1c2\x08\xb9\xe9\xef\xffL,p2S\x83J\xe8\x11\xc2k3s\x1bx\\q4?AP\xa2\x1c\x83\xda\'?\xd12;\x89a\n}\x01G\n\xeav$!\xd1\xec\x982X4\x13\x0f\xa1:Jei\xa3\x8bX&wt**F}&\x03\xf9\x0c\xa7!\xec:\x0f\x90\xe8xk)\xbe~\x18\x01\xc6F\xf5K\xb9\x04O\x1f!Jf\xe0y\xfd\x99\xd2\x12\xb0\x88B\xf4\x1d\x91\xd2YY\xe4\xee\xc2`l\xa4\x86/A\xac\xca\xaf\x10\x83&\x15W\x0e\x15\x99s\x9bk\xff}\xfefa\x9e\x80\\\xc1\x0c\xef\xf5,\x80\xd9}\xc9\xbeY_\x7f\xdez\x99\xfc\x93\x10\xcc\x04\x13\xe29Tl:\x88\xb8\xe7\x00c\\\xb1\xacOxFC\xefW\xb1W\x1eL\xf6\x9d\xf2\xdd\xcf\xc3C\xe9\x0f\xea.a\xe2\xe3\xeb\\\x0bJ\x81\x7f\x150x:\x05\xe9\xb85U\xd0l5Rt\x18X\xf88\x07d\xdee|\'\xdd^\x11\x02\xa5\x16\xc2Q\x83\x8euA\t:\xf0N\xdc#\x06I\x9f\x9apb-\xbb\xf4.\xca\x86"\x1c\xbd\xd2\xd6\x1fs^d\x91\x98\xbc\xc5\x82\x03=\xc4V\xa9;\x99\xbd\xd8T\xf3\x8b\x87\xb6\xaa\x18v\xe3\t\x84V\x85@Z\xcc\xee%\xff$F\xd5\x17o\x80\x17\n\xd7\x85\xaa\xfar\x0c\xbd\x88\xe8g\x1e\xb7\x1fF\xbc\x81}\x10\xa0Ix>\xa9#4 X\xf4\x07w\x81I\xffS(\xae\xcf(\xf2ES|\x94\xa4\\\xa7c\xe4\xcaR\x9eF\xee\xd97\xb7[%\xa9H\x8dA\xb3\x14\x93|\x9d\x86\x94\x9a\xf4y\xc8i\xdaZ\'#\xbc\x1ec\x90\x9c\xd7Imf^\x8by"l\xac\x99d\xfaE\xfb\xfa\x15F\xac,\xc1\x1b\xe6\xb5!sL\xdb.\xc7{\xfa\x8f\xb3\xd1\x93\xf2\x1c\x8f!\x00n\x9d]\xb8H\xa1\xf3\x05\xae1N`N\xe4[H\xb0\xa5\x00p\x9f\x12\xb5\x06\x1fr\x00/\xf71\xc3\xd9U$9U\x1av\x94]X\x02\xb45%\xe5\xb7\x97DMd\xe0\xf9;Y\xe2Z\x05+\x19\xd3\xc5uw= P\x07n}\x8b\xcf\x8a&\x05wQ\x17\x8bc\x00\x13\x85\'\x149b \x9e!\x10\x16\r)\x98\xb7\xfauhW\x1c\x9e}e\x06\x9f\xd5\x80\xad\x80g\xccg \\\xd04e\xc8.0\x7f\x92f\x1c\xba\x85\xfd\xa9\xf3\xacTj\xd0QF\xbe\x9dA\xfd\x13\xa7k\xb5:\x95\xd1\x90\xd0\xff\x17\xcc\x98\xa0\x96\\k\x065\xfd\xf4\xdeJ\xd6\xfdE-\xb7\xce\xa7\xcc\xe6p\xa9c<\xf4\xe4\xee\xb7/I&\xa17\xaf\xb9\'u\x9c\xef3@i\x1d"\xf5r\x13=M\x9f\xec\xc0\xe8\xaf\x1b\xcd\xd3<\xfc\x9e\'P\xabtU7G\x0b^\xb6\x9b\x19\x18< ,\x08~\x81A\x9d\xad\x0c\xd0\x07\xb5\xd2P\xedf\'\x7f\x10\xf7\xa2 ws\x9c[~\xd0\xf5O\xf6\x91\xa0x\xac\x89m\x98\x8bP\xac\xf9}`\xe5\xb7Z?i\x8by\x85W\x08\x8e\x1ali\xe8\xd6\xa9\xae_\x02\xe4sR\x18u\x17\x04\xb2\xe5;}\xa1j\'\xd7\xf1\')\x935\x87\x9a\xcfi\x19_\x1d(\xa4gknV\xc2\xe8\xffS\xdd\r\xd4P\xe9\xb5k;\xf5?Ib\x9cF\xdf\xce\xde\xc0s\xfc\xd1\xc1\xef\x1e\'\x80)\x03\x19Q\xc9\xd3Nj\x133\x98\xb6Q\x8d#\x9f\xcf\xdev*H5\xb2T\xdc\xdcj\xff*\x84+\xea\x000x(\xe8\xf9s\xc1\xfd\xc1*Cl.\x146z\x06?\x9b\x18\x1f8?\x17\x14Gq\xb9A\xca\xba(\x0c\xad\x7f\x1fWy\xd7\xce\x7f\xa7j\xd7O\x9f\xec\xef\x95e4%\x1e\x80\xe8\x96\x17\x17\xdb\xdd\x91\xb5\xcb%FS\xd97\xdf`%!\xd8\x99\xc3\xd6\x16\xb0~\xb7T\xf4\x94\x14\xed\xd8\xd3\xd1\xc0\xaa8\x0c\xff\x1d|\x02,\xa1\x9d \xd1\x86\xc6\xcf\xbb\x8b\xd7sI\xd2f\x96F\xf9\xdc\\<\xe7\xc2S%1v\x10\xc6_RV\xab^\x81?\x04\x94\ng\xf98T/Ke\xd0\xe9\xf8o\xc3\xe8\xa8\xfbs\xebP\xe8\xdc)\xa5\xce\x12\xa7\x8c\xd3I\xeaemiC=\xd6\xe4+\xa8\xbb,\xa7S\xb5\xe8$\x8bM\x00\xb3\xe0\xa4\xbd\xe5]j\xd2\xe1\xbe\x1a\xcf\x84\r`\xf7rK\xfdK\x0b}>E\x8aS\xf0\x94\x85l\x15\xc4~~\xf1X\xf1\xfdM\x18\xfc\xcf\xfc\xd3\xcf\x10\x07|CNy$T\x8b\xc8\rs\x08\xb1\x90\xfe\xad\xc4\x14\x90k\x11\xa3\xad\x82gH2?\xfeV\xb7\xeb\x90\xb5\xb1\x12\x17%KFc\xc1\xbe_\x9f\xf5\x00\xbem\x1c\xe8\xc9\xccN\xdf\x0b\x1dK\xb1\x06s\xcc\x11\xb7\xe2\x0ckk\x92\x1aL\x86\xde\xf8M\xa5\xf5\xbd\xf6\x07\x0f\xef\xd1X\xa6c\xec\x05\xffl\xd3\xedj\x8a\x17\xcd\\|\x81\xe9\t\x86z\xbcy\xf1=Y6\x1fpcDo\x9b\xe7\xec\xa0\x8ah\tB7\x9au\x12(\xb9\xbb\xaf\xda\xdc\xae\x864>\xc3ZL\x9c\xbd\x17\xb8(\xc5:V\x1d}\x81\x96\xb9c\x16\x01\xb9\x04\xad\xbc\x16u\xe6?K\x19\xfc\x92h_\xaa\xdeK\xe5m\xae\x04\xfa[\xaa\x8b\xd1\xfaU\xce\xe8\x13!\x9e\xcdU\xe5H\x98[\xbf\xccx\x9fz\x98\x1e\xc2v\xbcb^8\xa1F\x00\xe0O\xdb|\x8fD\x9d\xfc\x04\x7f\xc5\x9b\x80\x95L\x15\x87\xb0\xf8~\xccs\xfa\xb7\xe3\r\x95\x8b\x8c\xa34\xc8\xd5\xb4\xcd\xbf}\xf0\x9bR\xf9\x1b(\x9e\x0b\xad\xff\x83=\xc8\x15\xc1\x18\xe3\x14\xeb\x0c\xa9\xa3\xae;\xd6\x83\xf1\xfb]\xa3\x94%\xfa\xed?C\xb9\xa8\xbcg\xb0t\x16x0\x93\xd5\x14\x8a\xd2\xc92\xe1\x81\xc8V\xb70\xfc\xdd\xc8\xf7\xdb\xc9\xff\xd9\t\x95;\xd7\xcb\xcf\x82C\xec\x92\xea\x93\xbf\x0c\xc3Q\xd8\xbb\xe8\x9c\x81\x88\x1bHH\x93\xbb\x12\xb8!\x9e\x13\xb1\xd1\x1a\x7f\xd2\xc1eR\x82\xa0\xbb\x81\\\n3Q\xeb\x830\x1fbc+k\xf0\xbe\xc7j\x8dK\x1baM\x19\xac\xa6\xc9\r*:\xb6\x83\x8d`\xa8k\x9e\xd67g?\xd8b\xf8\xfd\xf07`\ng\x06\xc6\x03\xb3\xeb\x96-Lm3\xc5\x94\x12\x98\xb0\x94\xa3\xbe\xf2H\x94\xd2\x8d\xeer\x7f\x88\x1c\xf9\xed\x12\xb3\x03d_\x86?]\xc8\x97QA\xbd>\xd18\x96w\xc1H\xa5\xb6\xed\x13\xae\xa7\x8cm\x99\x8b}\t\xd7\xe5;J\xd6\xf4\xd6g\xfdL\xad\xab\x95\xab7>\x10\xa2@\xaa\xaa\xf3\xa7X]\xbd\x06\x13\xb0$\xbc\x83\xcc\xa2\xff;\x04\xec\xcd\x02*+\xa70\x1dH/P\xdd\xd3\th\xb7zz\x19\x0f\x0eg\xb8Dy3\xc8c\xb0\x04\xf9mi/\xfe\xf3\x96\x96\x98\xcbm\xb6\xb9\xeaO\xaeW8\x02\x85J\xfa\xa8k\xd4\xa5\xcb\xfc},\xa6#\xf0}\xabSD\x88[$\xd5?I\xdaO^\'\x96\xc2\x05\x1d\x84\xda}\xf3k\xb37\x02\xdd\xfc\xe3|\xdb\xc3\x1b\xde\xbf\xb6\tyg\x0e>c\xc1p\xa4\xc2V1\xc6j\x06\xbdm\xd0\xa2\x0f\xde\x97\xe0\xebEA(@\xdc\xa2\xca\xbdDQ`\xf0\x02\xda+\xe0qr\xf6\xc2G\'\x96a\xd1c\xf1\xea0\x99\x7f\x05t\x04:\x0e&\x89\xda\xef\xd0\x15\xd3r~\xc7S\xbbh\xc9-nhq\r!\xa3\x9f|m\xb7\x1e\xd2\n\x9d\xe2T\xc4\xf6O\x82\xcd\x9b\xea\xdb\xafn\xdd\xf9\xfc\xe7n\xea\x00\x07l\x96\x04%H\xc6\x9cg*\x8c|\xdd!?oV\x96;\xd1\x17lO5\xe7-\xf6aF:/aN\xce\x14wo\x8e\xcf\xe9\xbf\xadi\xaa\xebp\xe8z\xafk]\xf1\x8f\x9a\xda\x02\xef\xa7)\xf6\xa6\x1e\xe3\x13\xab\x18\xa5(XG\x8b\xd6\xc8]\xf7H\x8d\xbd\xe7\xbb\xde?\x17\x93\xb7H\xe2\x90m\xc5\x85\xeb4\x92"\x9f\xe2\xc3\x136\xcf\xe7g\x8c\xe8l\x15UV\xe3\x83\tkh\x1c\x8fUD\xef\xda2\x81f\x92\xba\xb1\xfa\x0fk\xf5A\xdf\x11X\xdc\xe0\xa2\xf2\x07\xbe\xe2kI\xad\xca\xf8q\x88\xa7\x87\xbd\xc2[y\xa2\x1bH\r\xc9v\xf5\x85\xd8R\x91\x08\xce^\x80yC\xe7`1[YS\x93D]\x14\xd0\x85\x98\xae\xd5\xe6X\x9f\xf9\xe0a\xe9E\xe0\x08j\x80\x9d+cY\xe2\x86\x13\xf1\xe0\x03\x7f\xb3\xb5\xf6\xc7\xe2\x02U8\xc8\xb6 l\x939f\xd6\xbf\xfd\x199\x88OK\x9d`\xabB\xcd\x97Q\x02uO\xe8\x89}\x91\xc6\x95;\xc7P_Ic\xfe(Iz\xd66\x00$p0\xbc\x01i\xa2P\x0c\xb2^\x81\xda\xb3\xa1\xc7\x9e\xa2\xdf\x14)\xc08\x05X\xba4;gJC\xc8u\xb9\xe5\x88\xa9\x8e\xfb\x9b\xff\xe3\x0cl\xd0E\xb7\x05\xa8\x85\x8aiV\x1f\x81\xa5\xa6\x8f\xb9\x12WU\xa8\xed7\xfc\x1d\xb7\x0e\x8eT\xb5|b\xc2m\xb3\x90\xa3HB\xb3\xcd\xba\x9c\xac\xd4\xed\xfdD*Z8{o\x13\x07\x1d\xde\x18R\xe3]YZ\xc59H\xe29\xfd`\x18]x\xc6\xe6B\xab>\x1d/\x91\xfb\xae\xb3O\x85j\xba\xc7\xd5\xae\'\xafLu\n\xf6~\xff\xdd3\xff\xc3s2\xc4\x80\xa9\xca\x18On\x1f\xc6/\xf8\xb6\xf4W4\xad\xd3\x07\x97<\x8f#\xa6\xff\xf6\xda\xabI\x05\xb7R*\xdc\xbc\xdafi\x88\xe9\xf5\xe5M\xda\xe7\xe8&\xeb\xbe\x9f\x86\xb0\xa4\xc7+\xa7\x074\x93\x07\x90wH\x94\xd5\x128\xdd\x9951\x83\xd7x\xdd]\x14\xf7-\xb9\xb9#~\xbf\xbf\xd2\x89\xae\x80k\xbd\xb2\xf6=\x05\x8d\x93\x10\x9a\xe5c3\x0b\\"\xea\x18\xe7\xfb"\x1e\x12\xb3s\xb7\xe5\xe6\xdfe\x16\xae\x14|\xb0\xd5y\xb6"\xd8\xfd\xd7[\r\xe1@\xde\xa7\xbf3\x03\xcb_\x9bs# I\x1d\n\x8d9p\xf6\x85\x89W2\x8d_\xba \x8f\xf9\xb0\x99\x11\xb3\x14u\xfeL\xc6\x83\xc5\x97\xe3\x94u\x1d~/\xdf\xa5\x870iA\xf05o3GQ\x8d\xc1^\xf5\xc2\r\xebT\x91\xbf\x16\xbfb\x1f3%\x9c\xd9\x838\x18\x07\xd0\xe3\xbfE\xb0L@:5\xa6\xa7\xd2\xce\xc5\xfb\x11\xe4\xf8\xba\xeb!\xd4\xddm\xa3,\xfe\xf8\xa1\xb7@\x90\x93\x01\x0cW\xc7.\xe5\xaa\xc8\x98. 4\xc3\xe8\xdf\x9b\x9ah,\x03OUvRg b}*/\xbe\\A7\xd1\x9e9\xff\xa7\xa1\xf42\xeb2^d\x99\x8e\xc6{\x93\x1bo\xe6\xd8\xd7\xb6\xc3\x1eo\xfd6\xc9:\xd2\x8ag\x19`s\n\x1ei\x0e\xbb\x98\x1a\xaa\xa3}\x8d\x14\x9a6F\x06y\x94\x15\xf3\xe8}K\x06\xbc9\xa3l\xdd\x9ct e\xad\x1f/\x83*[>\xcb|fu\x04\xe4Q\x95\xed\xa7#\x1e3\x19\xfb\xe6\xecx\x0b\xc3B,\xb0&k{^\xa4\x14\xb9!=VN\x0b\xc2\xf8+\'\x98\xcf\xe2\x821\xd8\xfdHJ\xe5\x0e\xdb/\xc6\xafA7,[\xca\r\xcd{\xa6\x1c9\xfc0\xb5\x0c\xdb\t\xba\x89\xc6\xb1\xd7)j@.>\xf5\xdc\x80f\xe3\xb7\xf7g\x9a\x00\x1e\xc0TwaB\x8bg\xf7 ^I\xfa\x15\x92\x85\xdas\xa42\x84n\x82\xa2\xf1\xdc\xd6 ib\x95\x97^\xa7\xc6\xc5{\'\xdc4C\\\x08\xf6\xe0e% \xc0\x81\xdb\x1a%U\xb3p\xfd\xcc\\\xdc\xae\xd3.K\x7f\x99XhP\xf8zc\xf4\xe9\xc4 T\xb3\xd07cyIet\xba.\xfa\xb4\x0c\xc3J\xccF\x11\xedG\xee\x98\x84L\x8da\xdf\x08\xf3=\xfe\x1d\x03\xa0;U\xa1\x91\xae\x19\xee\xbe~\x8e\xe6\xf0=\x1d\x9d\xf8-\xee\xc1\xe71\xdd\x03\xf5YS\xcd\x08\xdc:\xd6\xaf\x0e\x8c\x87m\x9fm\xf1P\x13\xd1\x9f\xb2\xd0\x1a^\x81\x985\xd6\\E\x01\xa2iT6\xfdg\xbe\xafIW\xeb\xfd\xba\rkv*\x8eBE\x1f\x1d\xa7\x7f\x937\xe2\xfc.\xec`\x7f\x13i\xb6*|;\xb1\xe1mB\x98\t\xde\x93|\xb9\nF\x86w\xc0\xde\xec\x85\x00\xf63\xcdv\xb3\xf4\x18^\xd5\x89q\xa9\x93\xc3\xc8\x92\xc0\x03\xa9\x8c\xcb)S\x9f\xcb2w\xbe$\xa6\x94\x85\xdc\xe9\xea\xab$\xc02\xe0\xe2\xe5\xb9\xfb\x10\xa2\xf8o\x92\x81\nz\xf5^\xc1\xe8\xab\xd4\x85\x182\xd5\x1eW3\x16~4\xacb\xe6\xc0{Z\xa3\x07|\x97\x04\xf8\xd6\t\xe1^0-\xed\xbfTu4\x03H\x7f0I|\xaa\'\xe0\x18s\xbf\xae\x88u\xcd\x8a\x9ar\xf7Qs\\\xec(\x19J\x86\xbdTY\x11\xbe3\xf8M\xd1p\x1a\xc7/\xb9?>\xdc\x8c\x1e\xc5O\xfb\x7f\xbd\x9b\xd7=\x8an\xcc{\x90\x9cn\x86\x06r~\xd4^\xff_\xbd\xbf{}\xbb\xb1B\xcc\x13\xd2\n\xe7\xb1}6A\x8f2\xb4\x08\xd4\xad\xf3\x19&\xa1\x9d\x11|\x0cG\xcb\x95\xc8+}\xc9N\xae|\x9a\'u\x9d#\xd2RNn\xd26\x00\xa8\xe7\xfe\x10Y\xf2f=\xeb\xd2P\xfcn\xea\x14\xb4\x91\x18\x8f\xde{\x08\xfe\xf8\xd6\xaaP\x98\xbd-\xbb\x0eH_\xef8\xbfx\xear]\x99^\x89\xa7\xea\x87\r\tAA)\x82\xba\xc4$M\x82\x07\xff\x0cdD\x02\x82\xdf\xc56\x10\xf3fFP\x9d%\xfcG\x1b5\xec6m\xcc8)\xb8\x92M\xa2\xa7\x9d\x93\x04k\x9b\xe9\xc5\xb7\xa8U\xdc\x9f\xe0lqn\x8f\xcf1Q\xd2a\xa1\xf4\x89\xb4\x0b"\xf0\x7f\x81n\x1b\xa4\xb3\x8f\x1a0\x1d\x11R\xed\xbc\xa6_\xbeT\x07\xc5\xb3\xe2V\x93\xc4\xa1*$\xa0\xf7J\x8f\x9b\xe4\x1d1b\x06D\xff\x94j\xe5`pm\x9b\x0bd\xb8\xb3\xe1h&kv\xae\xdc\xe7\xf2\xc9F\xd8\x9f%j\x1b\xa2\x1c\xfd~}n\xec4\xfet\xcd\xaa\x98\xc1\xa4\x1d\xfe@\rl\xa9\xf5\x8b\x9f\xa5\xd8P\x96\x82\x90\xc1\xcad\x1b\xa1\xec\xc5\x00\xde\xf1\xe830\xf2[\xd9D\xe5\x0fl\x91\xaa\xcd\xbe$\x95\xf1\x87_\xc1sf\xe9k\xd4\xfb\xc1\xf7\xcc\x0f{\x08$\x01|S\xe9\xa2\x0e\xd9\x1b\xb0\xd4\xa0\xda\xcc\xfd\xe2\xcfj\xea\xc9I\x1e\x19=\xe1\xe6BfY\xc5|\xe6\xde\x01\xa8\x08\x9f\x81\xd5"R\xeb\xaa\xda\xb94\x17\xb6Z)\xa2\xff]\xa2\xa5\x0e\xdci\x19bX\xc9[@\xf9\xb5\x01\xd5\xccH\x1b22<\xd0\xf2\xa1\xc2=<A\xf3&:\xc9d\xc8\xb5\x9c\xff\xeflV\x91\x04\ra\x8b\x94r\r\xb0\x9f\xe2\xa6\xae A\xca\xf2|}\x07\xdb\xc4\xbb\xd3/\xd9 \x184\xe9\x15\xc3 ?#\xf6\x7fS\xea&\xcb\r\x16>\x1d\x12\xdep\xec\\E\x12\xe55&v\xb2\x19\xf4\x93@{K\xa4t\xfd\xdc{\x19\xf9BR\x00:^\x8d\'\x9f\xad\xb9h?\xb6\xc1\xbc\x11PW:8\xa8\x9c\x18\xf4\xe8qt\xca\xb0-\xfd)\xd2\xa0\xb8\x80\x8c\xaa\x0f\x99\xacz\'\xf2\xe7\xc7\xef\x84L\xe0\xb9\x1e\xd2>\xdc#SN\xe5\x1e\x9d\xde\xd4\x1df\x0b\xd0\x02\x104TFVC\xbbU\xf0\xc5\x04\xd3h\xf5\x87\xae\xa2\x96g/F\xf5p|Z\x01\x93\xc3\xad\xa2bR\x8f\xdf\xf3\xc4x\xd3\xa8`W\xfa\x89\xf8\x17f~\x9b\xbf\x84\xf8\xe4\xd6\xf10\x04\xe7\x8a\xc3\xaep\x160\xe5s\xb4%i@\x06\x19\xf4\x8e\xa2\x8b5\xdc\xe0D\xf8\xcaq\xccz:\xfb%\x88H\x9c\x8e\xb9\xf5/\xc3u\xda\xcf\x95\x13\xc7\xa1\xe5\'\'\xb4Y\x10\xb8:\xa4\x05r8:~\x88\x8f\xba\x06\x83\xe3\x18\xe3\xd7\x9e\xf4\xc1tdC\xb6\xcd\x1c\xd0\x8e\x08\x02U\xf3\xbb\xa0b\x16\xd1\xc9\x93\xb7\x02\x19O\xd2\x0f\x93\xb2NK/vW\xff\xea\x80}\n\x02\xff\xa5\'\xf6\xeaE|=\xd8\xa3>\xbb\x02\x9e\x1fX\xcb\x9a\x9c\x11\xc42\xb46\xd9i\xe3p`\xbexv\xed\xae\xc4\x8do\xb7w\'\xc33EJ\r\xd8\xd5\x94,\x16\xa6\x12\x90`lA\x1d-tT.\xd9\xc5B\x17\r\xda\x04b \xf4]\xaa\xf5\x7f\xa1n\xef>\xd4\xfb8O\x8d4\xa5)T\xcc\xbc\x10\x16\x0bq\x85^\xfb\xb7\x17\x17J!\xf6\xf2\xe5\xa89\xc8,\xe7\xc6n\n\xc3\x0b\xd9\xec{\x0b\xbb\x99\x9a2\xab\x93\xf5\x9d\xed3?\xe4?\xf4\'e\xe6\x96\xb7\x14\xf9\x86\xf4\xe0\xb5\xf2t3\xfa~\xa5\x14\xad~\xcc\x02\xbc\xfe\x87\xc9ip\x80\x7f\xa1\xf7\x85\xb5!3R)N~\rA\xc0\x9cT=m\xfb\xf1b\x9c\x1dy\\\xf6\xb3\x9e\x13\x1b\x91\xc7\xd9\xd61C\x0f\x16v\xb5gjyk[a\xa8\x8d\x8a\x8e\xf2\xc1\x90\xe1\x975\xb2w\x88\xdc\xb1\x1f\xef\x02\xcaJ\xbc]\x85\xdesM\xda\xd5\x0f\xf2\x91\xe8!D/\xad\x95\x8cx\xca\x9dD\xed\x9a\xbf\x97\xd8!.\xc8\xcd$\xbc\xb6\xcf\x81DZ\x07\xcf\xc8\x9f\x1b\x90\x89|\xe6\'H\xf6C\x95\x15H\xccG#\x85\xa62g\xbf11\t?\xd2\xe46\x8d\x03\xd5\xc8\x1at\xa0{\r\x1e \xaf\r\x11\x90y\x88]\xa5\xac\xc1\x9a \xdd\xd1#\x0c.\xba~\xfb\x0biu\xaf\x132\xccC2M\xdd\x8d\xfa\xd0^\xf9\xeb=\xc6}&\x95O\x15l\xd7\x14\xe7\xeeMI:\x00\x0e0\x92\x08o\x96\xd9\xfcfWH\x0c\x93^|M\xfa\x17\xff\xd3\x10\xfb\xc2\x97u\xff\x95\xf4\xac\xe1\x9fs\x9a\xdb(\x9c\x9d;z8\xd4\xa7\xa6o\x03\xee1\xcf\xfd\x95\xc9\xd7\'?\x85\xf0\x17?\xd7/\xea\xe6\x8f\x90\x1e\xb3\xe1\x9b\x9a\xf5\xfa\x06\xe6\xcb\x80\x94\x99<\x10\xa7$?\xf5\x9b\x11gN#\x81\x1es:w\x1a_\x93\xc0{=$\xcd.\x93\xfe\x99\x18\t\x02G\xa2+c\x17\xf9\x82+l\x84\xe1\x89\xb2\xe1\xe6\x01-\xd9\x10N\x0bc(D\xb7\xa3\xdc\xe2va5}h*M\xd5\x9b\xf5\x03\x8a{\x82\xe0\xbd\x93\x1fZZA\x95\xc5\x9eYG\xa5\x9fs\xafo\x0c\x03\xc3]\xe2eL\xa0D\xfb\xf5\x8cC\xa0C?\xc8\xb9\xb3br\xb3\x0f\xa2\xe2\xf6\x17\xf4\xc6\xbd\x0fY\x0ff\xb8\x82\x92\xcb\\\xf8"\xc9\xed/.j\x01\xe2|\xe4/\xbfq\xba\xe5Z\x12\xdc\xe9\xa7~P\xcb\x0f\x962R`)\xfd:\xc5\x88\x18\xf5Wl\xe63\xf7e\xe0\xd4\xa8dss\x18(\x9e\xe7\x12\x98\xfb\x17\xc4\xb3=\xb4\xe2!\x0c\xe5.%`e\xe3\x1c\xf58\xf8\x81\xd45\xc6v\xd4\x85\xd3\x80{-\x8a\x88\xa3\xecX~t\xbb\xbe\xf6\x8d\xf8\xe6\xdbm5k\x80\x16\x18\xa1\x08\'{@\x9d\xa8\xa2D*\xac !\xce\xba\x97\xb5\x10`\x89s\x89\x9aK\xb2\x94n\xa1\x99e\x1et\x8aA~\xd9)\xbd\x81\xd7\xdch\xd4OI\xc8\x12\x06\x13\x05p4\xcf\xbeV\x8b\xd3\xf2\xb6\xc1*WE\xef>*\x99\xecS\xf2}{\x10\xdb\xf94\xdc\x9d\xaa\xaf\x18\xbe\xc3\\w\xa6,?\x17\x05\xcf\xb3x\x0c\x83\x9e2\x9e\x93\n\x816a\xb18\x97\xce^\xc8\xad\x0f\xe1&\x08p+u\nm\xf7\x01\x03\xf0\xc7\x0b\xe8\xfa\rV\x13 \xcf\xb7z\x82\xc4\x80J\xfd\xb4\x9a\xe7y\x08l\xe11\xa6$0e\xb0\xff\x07\xbb\x8d\x07\xc0C\x8b}\xa0\xd5[\x12\xff\xa6X\xab\xe9$>E\x9a\x92\xfb\xe7\xc1{\xc8uB\xc6\xd6H\x8a\'Ma\xf0\xdd\xb5\xe9)\x80\xcfI\x98\xd8\xe4,\x002\xc5\xc0L\xea\xce\xb8m\xb7T\xf8x\xf2\x1d\x987\x0b\xc7\xdb\xa0nV\x98.\xa6\x13^\x11|Uq4\xbe\x99\xdb\x10%\x89R\x80\x82u\xed\xa5\t\xcd\x94\xdc\x0f\xc8\xdd}|\xa4t\x8a\xd8v\xf3\xbc\xa66\xdd\xbdI\xd8\xb6\x92\x9e\x0b\x9e\xd3bj\xdf9\x7f\x96\xd3S\x14\xa5L\x8b\x8d.\xfe7F*\x13\xca\xc4\xb1\xfa\x1b\xd5r\x1f\xe1\xa3!\xea\x1a\xf1\n\xb1\xbbJ\xc4\x13\x0b8R\xefnJZT#\x1cOQ\x0e\xca"\xcf\x90\xd5F\xdb[\x85wd\xc7<\xec^\x12\t&;\xb2\xb0q\x18=k8\xf6k\xfe\xe6a\n\x9d\xa4\xf6\xf8j\xc5B\xd0\xa9\xe0t<\xbb%_\xc8lx\xddm\xdf@\x96\xf7M\x11\xcdv\xc3\xd3\xb9\xda$\xdaeg{\r\xec7t_\xfa\x17\x9f\xbf\xc3A\x0e\xb6\x92\xe5b\nx\xe3\xf07\xbal\xaa\x81]\x19\xca\xe3\xe2f\x84}B\xcd\x10N\xd68\x01\xf0\xd9u\x15\x196\xac\x84C\xfa\x8d6\xab\xce?f\x10n4g"x\x8ec\xee\x84\x96/=\xed\x07\xb3\x8e\x99\xac\x8b\x80H\x17\x03\xeaw\xfb4\x86\x13\xe95\x96 \xa4Ph\x91\xbey\x91\xe0\x94+@\x02Y\xcd\x05m\x97\xa80\xf4O/\xaf(\xbc\x00\x9b\xcb\x82_^\x06\xc9\xc6f\x1e4l/2:\ra\x88 @\xa6H\xb7\xbb\'\xa1k8A\xe0\x12c\x07\x8c\x89\xaa\xa0\xa7]\x92\xcb\xd9Y\xd4:\x83\xb7\xbc\xd9X\xe5\xccq\xe1\x872\xd0(\x83G+9q&\r\xa5|\xbb\x80r\x96\xd5\xab\xa4\x0e\xbd\xdbb8X\xf9\x89pZ4\x15\xebd\x07\x81S\x06\xb8\xf6\xe4\xaa\x03\x00\xc69\xa0\x89\x11TJ\xcb\xc5\xd0\xc6./\xca\xb0\xe1\xad\xb9\xf7\xa2"\x82o\x81Q\xcd\x0bH<j\x8e\xdd*DKK;\xb8\x85\xfa\xb8\xc0`\x8fA\x98\x87\xc3\xd7$\xa43\xdc\x91\x1f\x91\x80\x87n\x94\x0fY\xab4\x82\xc4iw\x8e]H\xc3E^\xbd\x84>\xf5B\xf8\xb6\xf7\xb6\xa0\xf1I\xdcn4\x9a,\x11\x04\x13\xd0:7L\xcc\x9f\xb9\xd3\x9e\\\xc4\x0e{kz\x19\xfb\x81L}vU\xff\xaeC\r\\=wf\xa6j]\x8e\x9f\x1b\x10\xfa\xbdc\x10\xa0\xf7@\x125Y\x8anQ\xa7\x99\xc5\xb7\xea\xfe\x97\n\xe6|Sx\xc6\x16\xe4`\x07w\xe7\n\x02\xa1 \xca]\xc1\x98RK\x8f\x1bj\x87\\\xe8NhV\xa6~\xfb\xe8J9\x90s\x1cfQP\x17FP\xdf7\x17\xf7\xa3\x848\n\x02dNP\xd9\x00\x16\x01\xfc\xe8\x83|\xb7J\x85\x88Um\x96\xcc\x9a#\x90\x8d\x1f\xbb\xa7\x11\xc87P`i\xe6\xa0%\x13%\xe4LT\x85\xbaw\xddd\xeb\xe7\x14\x19Q\xb7\xc8S\x18D\x89\x96\xe4\x88u\xbaM\xcd\x9a\x8e\xa5Y\xf3@7xw\xea\xe8\xf5I\xe3%V\xfaag\x95O\xea\x94\x82\xdf\xf5\x1c6\x18\xdf\xc0\x8f\x15\xcc\xecZn\xd5\xa3\x14>\xf6\xdd\x88\x07\x9a\x8a\x15\x05\x018\x91L\\PWV\xb3\xcc\xbbe)3\xc9\x07;`\x8f\x1f\x94^\xad/\xd9\x82X\\\xac\x07\xbe]b.\x9bm\x17\x07E\xf8\xd0}\xe2\xc8[\x97\n+)%\xc3\xff\x08\x8a/\x9e0\xd96I\xfb\xbf\xcf\x83yj\x9b\xa5\x05\xb29\x11\x047\xf4j22w\xf4LX\x1d\x05\xb8)p\xc2\x94\x1bi/\xddtK%\xd5 \xb58fY\x13`\xe7r\x89\xf9o\xcek\xdb$VR\x19\x0e\xdb*\x90\xa9\x87\xf3\xabu\x13\x90QSNF\xa9\xafy6R\x8c\xa6%\xa1\xf2*\x98G\xd7O\x12Cl8\x1c5\xca\xcb9\xe1N\xca\x9bQ\x81\x15\xbc\xa0\xbaa\x04\xefT6\xa0E\xc4v>\xa3/&\xfd\'o\x8b\x7f<\xfe\xb5\xbd\x8f\xd8\xf3\x1c\xed\xd1\xc4U\x80\xa4\x8d\x1b\xc1\ne\t\x98|\xd0\xda\xb0\x92\x01c>\xb6i{m6R\x0b)Y\x8d\x1b\x8d\x14\x02\x11\x99\x06\xea2qn\xe4N\xca\x04}\x9bO\xec\xa4\xe8\x1e\xef\xbb\xfe\x93=\xd1\xdfl6\x83\xffj\xa4\x03?\xff?\x87K\xa7}R`sG\xfa_\xca\xfd\x99y\x99c\xa3B\xc7\xb4a\r*$M|\xb2\xc0,3o\xacqD\x11\x8ek\xc2\xd3\x8fku\xa7\xb0\xcf\x0f\x1b\x19\x90\x07\xe3I\xb6Rwp\xf0\xa0\x9e\xd4\xf8"W6I\x9f\x1fg\xcbU\x90c\xbb~\x0eCP\xbf\x9e\xbd\xb4\x08\x81\x1e\xa1\xe599\x14\x01n\x98Lr$\x15\xfa\x0b"]=\xf0h\x9dR\xdd\x00\xce\x03\xc4\xf5H|\xaa\xd2\xc3;7\xac\xb7\xa4w\x10\xa7\x01)\x8aP\x86\xb5Y\\\xbc\xc8\xeb\xad\x89`>\x9cn\x15\xe9\xa9\x9djK\xea\xe9{\xfe\xb8\xfc&\x80\x0e\x151\x10\x1dD\xba\xee\xa3\x1d\xd4|\xfc[\xd5w\x1c\xe9zT\x00W\xf0\x11\x80w\xf7\xd2\xb5\x81S\x07\x1e\xe4\x83jgY\x7f\xd9\x13C\x18\x84\xa2P,Da\xb8U\nw\xcb\x11\x0f\x97e\x02\x81\xa5"\xf6\xa6\xc0e\x03[\xa53\xe69\n\xf8\xa3f\xd5\xcfW\xccs\x902\xb7\xe8\xb8NnC\xf9\x10s\xd3Z\xc2\x99\x03\x99O\x94{\x0f,\x06\x16\x11m+\xdf\xae\xd5L~\xb6\x81\xac\xe1t\xe1\xc6\x13\xaac\x03jT\xee(\'!\xdfy\xaa\xaf]\xc4\x15"\xbb5PO\xa4t\x17u\xb1I\xba1\x94\xaf\xd4Dn\xc5\x9a\x0c\x03\x01\x12\x1c\xe8\x9b7H\x07$\x97\x82\x17\xec\xc46Q\x9b\xce\xec\x7f\xf9\x91!S6 !b2\x11[^\xdf\xaa\x8f\x12\xb9\xf1\xac\x1b\xbbd}4?\xff\xfe\xf9\xacol{Jf\xc0\xdc\xfeW}H4\xd8\xd6\xccW\xa3\x93\xf3p1\xcd\xa8Ou\x07R\x0b!\xcb8i*\x15&\xf2\x02?c\xe2\xc7>\xad\xd3\x92\xf6[\x92H\x88\xfc\xacK\x8cY_\xed\xac\xe45\x18\'\xa0!\xcd;X\x07\xde\xf8\x8dL\xed!pd\xea\x9f\xa9\xd1)\x13`L(\x14\xf1\x9a>\xd5\xf3\x07o\xb9Y\x1c\xea\xaa}\x1d\xa6@\x1f\r\x08z\x8f\x0bl\xa6\x91\xe5\xec\xa9[\xaa\x11\xa9\x9a\x9b?\xdaZE\xdbjv\xc9!@\x15\xbb\x85\\\x06A\xa2\xbd\xb7\x9d\xa1\xa6\x832\xf12h=\x984\xc0\x04\x05/\xb9\xdd^\xf8\xe3/\xcf~\xd6p4m5\xd5\x8fW\x86\xd48\x17L\x89^T\xa6\x84\xa9\x01\x86"\t:\tlh\x8crlA\x1b\x9e\x18\xf3\x99\x00;\xdf\x15\xb8\xeczx!9p%y\xc0\x97\xb0_pt\xfa"\x91\x8ai\xa4\x99~#{\x0ep\x08zBn\x12\xf1\xc7\x03Rk\x91<Mo#\xf2\xdc\x86\xc0"\xb2q\x85"\xf96%\xbe+\xd1\x94AL\xeb\xc8\xf7\xb7\xd2c\r\xf9\x8eM\x02\x86\t\xaaQ\x0b#\x9e\x96b<\xe3\'r\xe1"\xf8\x08\xe4P\x80\xb2f\xa6\xf3\x1a\x17\xe0\xe3e\x89\xf9.\x0e\x1cA\x8f\xb1\xab\xad\xdd\x8d\x19\x1a\x16\xeb\n\x0c\x16\xcen')
utils.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Pyarmor 9.1.8 (trial), 000000, non-profits, 2025-09-24T04:38:52.780253
2
+ from pyarmor_runtime_000000 import __pyarmor__
3
+ __pyarmor__(__name__, __file__, b'PY000000\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\xcd\x02\x00\x00\x12\t\x04\x00\xc9\r\'T\xbfO\xa7\x8f4KR\x8b\x9fRc\xad\x00\x00\x00\x00\x00\x00\x00\x00\xbe\xf7U\x17\xcd\xd9/k\xad\xac\x1b\xc8\r(\x8a\xab\x9b\x00wo\x99\xbb\x8cfI\x1f\x8f@\xc8u\x0fZ-\xbd\xd2@7E\xd3R\xec\xb5S\xf1\xdd\x9f5\xec\x16OH\xdfl\xbdm\'\xca\x87z\xe0\x8ba#!\xfc\x1e\xebbu\xfb\x05\'G\xb7\xad\xa2\xbe\x88je\xf7\xee\x06\x91\xae.Trr\x83\xde\x05\t\xfa\x91\xa2d\x9f\xb9\x8a\xd3#\xea\x82\xc0\xbd\xba\xd1u\n\xc1n\xd9\x1a\xa7O\x9d\x82\x16\xf4\x8d\xe5\':\x9f\xf2\xd1\x8f\x96\xe7^\xdc\xd0\xc4\x1a<\xf1\x80a\x0fOL\xee\xbe\xd7Y"\x0e\xdf\xdf\xee\xe6\xcc\x98\xecM9\xbe3\xdb{\xb57D\xceL\x90\xf6\xfds\xe5\x93\x1f\xcc\x13rT\x99Y\xb1\xb6\x85\x8b\xe0)\xfe:N\xa9\xc1\x8c\xc3K\xec\x1c\x10\xe2\\op\xef`X\xffOV\xbf\xfcV\xb7g\x1f\xa4\xe2\x05\xf0i\xfd\xde#&\xc0\x91\xfa=+\xa8\x9d\x86b\xc7\xabf\xcbU"\xab\x00<y\x11\xf1\xff3\xfd\x8e\x90-@\xac&bK\x92\xae(\xf8\xfa\xaf\x8f\xef\xca#\xcb\x92^\xbaQ\xdf=\x8b\x94\x0cdr"\x17\xb8\xe7\xdcr\xa8\x90V\x9b;\xf5W\x1a\xce\xe8f\x8d\xb0<o\xe6\x8c\xa6\x82\x90q\x12\x9a\xf1\x93\xb5\xf2i\\\x1fR\x91\xfcj\xdb\xd60ef\xf4\xfe=\x84hr9A\xf5\xa7\xaa*\x02&\xfa\xf7\x80\x88\xf4\xde\xa2[\xe9(\x13\x8f\xd8\xfa\x8b>\x9fZ\x92]\x93L\x7f\x90\xfc\xff\x93\xb5Xt\n\xe6\x17P\xf8q/\x00\xee\x14\x92q\x05\xdd\x07\xedr\xf9E\'\xb3A\xdf\xc6y~\x96\xcb\x05t\xee9\xefk\xfd\xe0t\xceoz\x98xyn\xa2Y\xaf\xa0)\xf1y\x00\xf60p,\xb8\xfd\x02\x89z^\xce\xf8\xbdQq\xf7S\xb3E"/\xd9\x87O\x10EA\xb4\xd4r\xd0\xe1\xa0\xc3Tt`\x86\xf2\x1cV\x7f\t\xc7\\\xce\xec\x98\xf1\xdd\xf5\xfb\xc0\x00%R\xe4i\'6\xa9\xd9\x00\xcaq\x80\x8emMR\xaf\x7f\x04\x06\x17\x1d\xc3d\r\x9b\xcf\x064\xdd\xda\x19"\xcf"!\x1d\xb4\xf6\x85\x18\xc4\x0b\x9f\x9d~\xfe\xf7\xf5}y\xc1\xbcEhn\xe1\x83=dM\x1d\x01\x12\xee3\xb1\xf8\'*f\x8c\xb2\x08\xa3\xea\xf6fD\x9aW\x17x\x1dj\xcd\xa7\xef3\x05\xe6\xe5\xd3\xb0"\x91)~\x00\xfat{\x03\xd5\xed\xcfa\x0c\xa6\xb4\xe1\xb5\xd5\xd4q\x16q8\x84b]\xdc:\xe4t\xc6\xeeW;\xd5\x0c\xa6\x7f>\xba,\xb3\xaa\xdf!\xfa\xd3#\x15\xe9\x17m\xaf\xe0\x86\xb8\x13\x91:\x1d\xcd\'vvY\xc8\xe0\xe4D[X\xf64\x9d\x8dv\t\x87\x80y21\x13J\xc2T\x8f\x9c\xda\xb3\x13\xeb\xf2\xbcd\xdc:\xab\xa1\x03\x07\xc0\'!\xf3\xcc_\x0f\x10\xc3Y\xce\xdb\xaf\xef\xd5\xe1\x9d%1iz\xde\x9c\x06,\xb6\xba\xb6\xfa\x12\xd3\xa7bW+v=\xcfg\x0b`R[~\xebT\xf3\xc6n2\xa2')