初始化项目,由ModelHub XC社区提供模型

Model: agarwalanu3103/clarify-rl-grpo-qwen3-0-6b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-19 02:19:25 +08:00
commit 7bf4b0f98e
319 changed files with 89077 additions and 0 deletions

36
.gitattributes vendored Normal file
View File

@@ -0,0 +1,36 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text

68
README.md Normal file
View File

@@ -0,0 +1,68 @@
---
base_model: Qwen/Qwen3-0.6B
library_name: transformers
model_name: clarify-rl-grpo-qwen3-0-6b
tags:
- generated_from_trainer
- hf_jobs
- trl
- grpo
licence: license
---
# Model Card for clarify-rl-grpo-qwen3-0-6b
This model is a fine-tuned version of [Qwen/Qwen3-0.6B](https://huggingface.co/Qwen/Qwen3-0.6B).
It has been trained using [TRL](https://github.com/huggingface/trl).
## Quick start
```python
from transformers import pipeline
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="agarwalanu3103/clarify-rl-grpo-qwen3-0-6b", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])
```
## Training procedure
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
### Framework versions
- TRL: 1.2.0
- Transformers: 5.7.0.dev0
- Pytorch: 2.8.0
- Datasets: 4.8.4
- Tokenizers: 0.22.2
## Citations
Cite GRPO as:
```bibtex
@article{shao2024deepseekmath,
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
year = 2024,
eprint = {arXiv:2402.03300},
}
```
Cite TRL as:
```bibtex
@software{vonwerra2020trl,
title = {{TRL: Transformers Reinforcement Learning}},
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
license = {Apache-2.0},
url = {https://github.com/huggingface/trl},
year = {2020}
}
```

89
chat_template.jinja Normal file
View File

@@ -0,0 +1,89 @@
{%- if tools %}
{{- '<|im_start|>system\n' }}
{%- if messages[0].role == 'system' %}
{{- messages[0].content + '\n\n' }}
{%- endif %}
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
{%- for tool in tools %}
{{- "\n" }}
{{- tool | tojson }}
{%- endfor %}
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
{%- else %}
{%- if messages[0].role == 'system' %}
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
{%- for message in messages[::-1] %}
{%- set index = (messages|length - 1) - loop.index0 %}
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
{%- set ns.multi_step_tool = false %}
{%- set ns.last_query_index = index %}
{%- endif %}
{%- endfor %}
{%- for message in messages %}
{%- if message.content is string %}
{%- set content = message.content %}
{%- else %}
{%- set content = '' %}
{%- endif %}
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
{%- elif message.role == "assistant" %}
{%- set reasoning_content = '' %}
{%- if message.reasoning_content is string %}
{%- set reasoning_content = message.reasoning_content %}
{%- else %}
{%- if '</think>' in content %}
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
{%- endif %}
{%- endif %}
{%- if loop.index0 > ns.last_query_index %}
{%- if loop.last or (not loop.last and reasoning_content) %}
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- if message.tool_calls %}
{%- for tool_call in message.tool_calls %}
{%- if (loop.first and content) or (not loop.first) %}
{{- '\n' }}
{%- endif %}
{%- if tool_call.function %}
{%- set tool_call = tool_call.function %}
{%- endif %}
{{- '<tool_call>\n{"name": "' }}
{{- tool_call.name }}
{{- '", "arguments": ' }}
{%- if tool_call.arguments is string %}
{{- tool_call.arguments }}
{%- else %}
{{- tool_call.arguments | tojson }}
{%- endif %}
{{- '}\n</tool_call>' }}
{%- endfor %}
{%- endif %}
{{- '<|im_end|>\n' }}
{%- elif message.role == "tool" %}
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
{{- '<|im_start|>user' }}
{%- endif %}
{{- '\n<tool_response>\n' }}
{{- content }}
{{- '\n</tool_response>' }}
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
{{- '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant\n' }}
{%- if enable_thinking is defined and enable_thinking is false %}
{{- '<think>\n\n</think>\n\n' }}
{%- endif %}
{%- endif %}

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa7a0fedf223e516197cf403d5689d839e1482df25b015a7cb722948d822c4a6
size 20003

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:411afcf57f95c19d05ad091d41b64eec4e9e477d3460367f3fa704d8ef09291a
size 26391

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b63f2f0511381abc3fc925aaa24401263355437baa5e06bdcbc985d0547c19fc
size 23965

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9209e29940cd819d9a5414a3bcd48ae7af1f99e7e42cf7be8e5e16e2c4ced9d5
size 20288

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6bc55160ba289625a0873f22ba205cdc7f047a6ea55cf997416854ab0565a4b9
size 20781

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0c95211b3370e8f72de232cfc88830c7296707f154ac1be6c95818eda7dd66af
size 22443

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d186535af55187e1fe667e628296b304a40f77c0b6845b9fbeae0c1048626a7
size 20465

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3695829ffa6eaaf9c87763b4e28105439ca7dc180b4c7a7ca191098b94974da9
size 20768

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b022334c2111d43e5c7b29024be71bc46fe220d28f7f87376ddf00c38093ec39
size 20792

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c64024029e0c4b764541cf49495e21743e8e5655ef413c3594bdd3e8743e679d
size 21948

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88b361df0e52c2a822c275eef01785a1cbf349e4e946f7b8a896f77f8450ebf5
size 23411

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3008d0f576ff8b255a6bc90ffd6ca214b2827a5527e4314576866204846bf97
size 21874

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52d431a3931b7c6e75f502994665d1dc66a1dad802ef9ab95626152de82e9dc2
size 24388

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12d2ae7a56d263a3c03613b9a3c12c8eb030b8eec2ac503a9456344d9789e9f0
size 24656

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a6d0ce56186033617d4cf66c634291923dd2a05e638911c78d27686fb3b2db51
size 24535

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef6531b4f9ecf2b246758a7eef62184528f5faa207eafb413e25927914f96dcd
size 22309

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:388659cddc619d09c0a83f6df8dddfb836c74ac91e5d8cf49c237c8301586f6d
size 24714

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:236190b38eb7970c797ac9e823861e196f59d46a108b5bc645710ba85d1000d6
size 28167

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:920da0ebec50fde9c8caefa1189550bdfb3117bb028734515c19c544f14acecc
size 25423

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c619aa7f3986c4b5489818f7b3b52d4a92e387314510b0fc5595ab5b85249fe5
size 25177

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ed6d38ccbcd03c8fab89f2fe0d9544fd8408be50d7b456ad9b1db6d296e834af
size 23527

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55c11135941a00167c98dbe2ac23c85ce5ba8b1a93bb224fa2aacab2886ce64a
size 23199

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:509c03e3afd61b7b48c73224ea751cc39352fd6bf319affb9cad41d08bbd8c28
size 28086

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:591de213b017564d1612a7e8a26a9932056d1d8e0c069bbd52154acd7bef0803
size 25394

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f5dbdf5dc1f698cca87630f552e77ba09cf1d1381fca353d61c4d2a86270a87c
size 22356

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5707ad068d403672851157381e7db866e4bea13b88c19139d6167814909c93bf
size 22383

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:050e42d322acd62141137d2c4535711add77d509a817eb6a6e7b72fee8487418
size 25819

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c5aa5ec47242f86f8d27d80d383284fed3913d8ac157531de6fea0127aed7ea
size 22674

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1dec126fa1967913f79cbb71cfd2cc4a426566a04c622e322f739ad3d12ce74f
size 24194

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0462ca35d2f1b0dad7e9cd9050f38de1cf821ab85a1d949e47d98dbb61d55e6
size 22756

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:75f06ad11654da09f5943a511beb87cbb3e70047db5aa8ed28d88e9c31cbd179
size 24126

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b3232de0a0175bff5fb640828ed91b516cde5c097c81f96421cef6ded025401b
size 25344

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3437616cd2ea6f454123fe803608dd10fd40a041c14bbade316793f70e31762f
size 24831

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2eeced0ec8f4a40230ea48894218fc72e202bd705b7233bc22e1c9144e97e7b8
size 25281

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ac5065007dab2c685fb186a09cd9db79bc6d035ae228864e8e9339aad8ff254
size 26077

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f29e456e8ae3463d4097ddb2fe0a9f13431cd5b007368cde018b3eb6a1317cab
size 23017

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8a1b98cf8cffe6bdfa3dda57d48a95a69f678aa61ad9429f633c2eca190aa8f
size 25530

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b9349fdcc5da857252a4dc10597da26d453171dbc1431473d018320e64de958
size 25094

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90e6144a2d2050b3da49e288dacd7254f5ac730277f7a78d8cca406a39c5fc95
size 22626

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8a2ea0acfb536d94294e4f07054d0aa0b2d05394a826d5d32e4ca7fe3aaddd3
size 22448

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad61d9a18d0149a4255a48ebb0798cd52cbf54801cef14ea9cadde8005ea2ad4
size 28247

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e59229cbfeb9c9443415ddbb783e88d822ef35025ceedd46ead157bd027a2830
size 24441

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1639a559318b4f9493850fb15234fa140cd151988ed9103b8227c4f6e00269b7
size 23349

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd4e1fb23392cdfab5a3ab614c2229df51c62d61632b602f112a623886344cc8
size 26585

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4553d5e9f36020ae075d04d11ad40b1692ea8793526d79812dd6fc1cacb84684
size 24549

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:05cd52dbac51ff9f8b8a18d66f2fadd781a3631182894d92c5783689718e78eb
size 27519

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff7d46a83d172facef3e9995463e3c0df8f5d222130a2f907e59802c5259d5bd
size 24913

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b427da23e67d866483030b83bac24be3872a03f29fb5ce0376d87f6357d380a9
size 22486

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78ed9f44fbb687137c9d5e1824057bc3a0efa64333184a8b7809e857c526bf31
size 24004

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a836f5d493ffd0ca80c474c92f266c47d4b6ae3421eaf7f36c2a4cdcfc2f5e37
size 25459

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0b5bdedc382125b59028cbdf1f7695d1796bc288f3412ca71d4439f343adf148
size 23601

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8586d506fd6de5068b129bec9ade9d2ac7ec7e5e71f1947a91ab7780ddad5283
size 23380

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:81a1e2a4ac6ffa86d3856725ae6d9b29cd81e2ae58b0ce713d5d64d2fc2456ed
size 23715

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1cbbb8c0ab967f943b5a1a0a0c9a76a0c7844a755c62d4d4e97f1295cdc755a2
size 22281

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:887c368227c988590fe700b16639d5f1cde22dba03eefa884bcc3a4a66ecebf7
size 24495

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e410b9fe90e5d1f62c73966e4038c64c6006669cc6f94d14dc42c6abdc6e833
size 23672

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f53b6c86df0271230aae2c7b645000370e29122007da0bdac765207d66bd1426
size 25265

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:db4339a7d7fc3f25e728887eac52a5c4c927cf423b50f7714236acbe07956403
size 26145

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:acb00c2c1a99973ced8b871c275eeff435ef697326cb709f6416fe115af39988
size 25655

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:691537a83a77e665e28760bdafaff50c4a8cc9834edd2f584c98d9efa72a566a
size 26521

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e298469b8da8b7afb196494bbceb117c5c2035cc91aff9dde33a0f65d927a3bb
size 22526

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ac8b2fd735aa08293692a90d8617094f9885cb80c876295ec01571e984db9930
size 26757

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b8bf1b96a5441c1a5099e2a3aa57fa4a2f24c63ccc3268fa373319c672e1dd9
size 23980

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f69ad15b6d78c28f6b1f55d4637512f0e14baecbd3d2f953edd699c69eb0e77
size 26186

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:50deec31b890239e97c1f847b5d9e83d9e668bd253ef2c4462443416c2f2e401
size 25374

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ca6071f1ce58c4081bee2500bb478c5106e159a395ede4c73e2aa7a1989eb2b
size 25723

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:17d1acd67f5f398bd342aa27e1a6562c6874a1402280411126ceb54319e3c1e8
size 24017

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47c6ed8376656c6cac2365c94483c61e98cc82d468bcccfeccf0f17c8ef278fb
size 24538

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df435050e20597ac4994b99f9f904c6d11f63bcd91fd263967005073bfc284a3
size 26649

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:705af0eb129e2ca2d44abcf0b61c1bd4ee8fb059555acd8de9278531c3c49f66
size 21223

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c33d3391a35b05872cfc930873c47da0018e2d72b29bf9598a2f54b7fb62499
size 24411

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7edc73a40bbe761a24eb69afef23f5ba086904dcaf739b28185b36131cf6b94c
size 22958

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08cdd2267d7400223d895e399166abe5fb61b218d9014169027759be0d1e0d4a
size 23188

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e12d55241595bef863f8eeef248fde042095521d5624ae058da2308203a6c220
size 23851

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35d6b2fa703045dcad2d47a9edae242b4b4e79283344c9c32d0d95a55bb738cb
size 27744

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd9b29d56e258e49c3d55f7734a6088125c2e9f5e8d7f6f07689731fb6cdfec8
size 22474

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0c46c8720860f68a166532c55d837d17d32dce79eefe83d16aefb79c5e7bbbb
size 25789

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:91d726d91668a9039761ace913d31a3ac1cbfc50180c98f92dfeb6e5183601a7
size 21546

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:adf2ca68cb60900667794448120662d1ebaaa9d9c623380d6064d3d9e87b735e
size 26549

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:885961fe0a6764eb87651238a0ccc721f36e765ee5abd3cfa5774af1c6951147
size 20921

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:185bff25832dedcdc364cb2b4fa61d74160edf434aed32d55daccd4141a92cfd
size 21931

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:02f88bf8855dad569dc53382fd2bb42b879067a85e5626de08da139882099184
size 25214

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bad19b9834591fe08ed12e7f4f0047a1daee4a35571aa3408800ecc902d7f190
size 21506

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:43028f73f85604c453edbf4f87eb8d0b984a0af5e937072fda62fc1db2ddae99
size 21104

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6dd476dc0563933b6475e49b5ad06e98f2de4343b28770e57245c2fae7446b53
size 26964

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5eb09b1cb3a9085182d90b9ede93554abf6be131bde66defd2b78cb858c3f535
size 24647

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c81a4b032999ba874c19bb28454fde9c12feaa1a8a16fbd072bbf99df24f7f12
size 24216

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40c6b56b8c7b7dd5feef1ef6675cc120ef165031d5a34489817d65f001c57efb
size 24993

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:70bd3bf7368049ce0ced1803f41d8dea652573a2bcf3d4029d8a7dc613127aaf
size 22218

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:431c1defb3a2aff19bd07ca8baad3a3e247a2a8f999b62e5f4a50dfeb5343336
size 24077

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7e992626662d8af8b5d2f87f9fc4700671244b663c3e2f7470e09a212ecb1e9
size 27152

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3d231687dc3befdc1b471b03fdc51c237d4e26ec5a6382779c3104d5f1de4410
size 28454

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:deca0779370ac95b88b7be7a0d0c7eff59d19244fa1a8ce09ea39500eeed742c
size 22468

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:511978d3796e4a43149ab062014087f9eb0a638654dd6c4bd1d7af74cb01c7dc
size 27009

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7b5938870340fbe401b00ea18c0d96b0b0ef3884141e6a8d870c899f8ad457e
size 24500

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe914414a159478eb949c9ef47d5865911a345b4074005afca39a6521267ace3
size 21654

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:006aa99737e560a9d6bb55be9b707f5af54a015a3274df5105d86fab19b4c191
size 21805

Some files were not shown because too many files have changed in this diff Show More