Text Generation
GGUF
mesh-llm
layer-package
skippy
distributed-inference
local-inference
openai-compatible
imatrix
conversational
Instructions to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: llama cli -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./llama-cli -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers # Run inference directly in the terminal: ./build/bin/llama-cli -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Use Docker
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- LM Studio
- Jan
- vLLM
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Ollama
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Ollama:
ollama run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Unsloth Studio
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers to start chatting
- Pi
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Docker Model Runner:
docker model run hf.co/meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
- Lemonade
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Run and chat with the model
lemonade run user.MiniMax-M2.1-UD-Q4_K_XL-layers-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "meshllm/MiniMax-M2.1-UD-Q4_K_XL-layers" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add layer package manifest from unsloth/MiniMax-M2.1-GGUF (unsloth/MiniMax-M2.1-GGUF:UD-Q4_K_XL)
Browse files- model-package.json +556 -0
model-package.json
ADDED
|
@@ -0,0 +1,556 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": 1,
|
| 3 |
+
"model_id": "unsloth/MiniMax-M2.1-GGUF:UD-Q4_K_XL",
|
| 4 |
+
"source_model": {
|
| 5 |
+
"path": "/source/UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf",
|
| 6 |
+
"sha256": "7eaf9c62666a52348f1b47d6db83e7c63a41b21d38dfbfb8d6eaeaee4c353c4a",
|
| 7 |
+
"repo": "unsloth/MiniMax-M2.1-GGUF",
|
| 8 |
+
"revision": "main",
|
| 9 |
+
"primary_file": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf",
|
| 10 |
+
"canonical_ref": "unsloth/MiniMax-M2.1-GGUF@main/UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf",
|
| 11 |
+
"distribution_id": "MiniMax-M2.1-UD-Q4_K_XL",
|
| 12 |
+
"files": [
|
| 13 |
+
{
|
| 14 |
+
"path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00001-of-00003.gguf",
|
| 15 |
+
"size_bytes": null,
|
| 16 |
+
"sha256": null
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00002-of-00003.gguf",
|
| 20 |
+
"size_bytes": null,
|
| 21 |
+
"sha256": null
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"path": "UD-Q4_K_XL/MiniMax-M2.1-UD-Q4_K_XL-00003-of-00003.gguf",
|
| 25 |
+
"size_bytes": null,
|
| 26 |
+
"sha256": null
|
| 27 |
+
}
|
| 28 |
+
]
|
| 29 |
+
},
|
| 30 |
+
"format": "layer-package",
|
| 31 |
+
"layer_count": 62,
|
| 32 |
+
"activation_width": 3072,
|
| 33 |
+
"shared": {
|
| 34 |
+
"metadata": {
|
| 35 |
+
"path": "shared/metadata.gguf",
|
| 36 |
+
"tensor_count": 0,
|
| 37 |
+
"tensor_bytes": 0,
|
| 38 |
+
"artifact_bytes": 8238592,
|
| 39 |
+
"sha256": "bb405f23120fa13387ae711ec4d4693aa56375a92ec9afff2678d5b41b23d953"
|
| 40 |
+
},
|
| 41 |
+
"embeddings": {
|
| 42 |
+
"path": "shared/embeddings.gguf",
|
| 43 |
+
"tensor_count": 1,
|
| 44 |
+
"tensor_bytes": 345710592,
|
| 45 |
+
"artifact_bytes": 353949216,
|
| 46 |
+
"sha256": "0d41c074ef7d90857b9358acca03830b5626edcf024f5b0dc16253e9ace1a500"
|
| 47 |
+
},
|
| 48 |
+
"output": {
|
| 49 |
+
"path": "shared/output.gguf",
|
| 50 |
+
"tensor_count": 2,
|
| 51 |
+
"tensor_bytes": 504173568,
|
| 52 |
+
"artifact_bytes": 512412256,
|
| 53 |
+
"sha256": "0af98138be53f03c1db899e862bd2beac854bfce0afad221389225917f48d20c"
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"layers": [
|
| 57 |
+
{
|
| 58 |
+
"layer_index": 0,
|
| 59 |
+
"path": "layers/layer-000.gguf",
|
| 60 |
+
"tensor_count": 13,
|
| 61 |
+
"tensor_bytes": 2071270400,
|
| 62 |
+
"artifact_bytes": 2079509792,
|
| 63 |
+
"sha256": "83a34806b90125bd617f0a734b6d673f423fb205aeeac64cf23124417a2fa7b7"
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"layer_index": 1,
|
| 67 |
+
"path": "layers/layer-001.gguf",
|
| 68 |
+
"tensor_count": 13,
|
| 69 |
+
"tensor_bytes": 2222265344,
|
| 70 |
+
"artifact_bytes": 2230504736,
|
| 71 |
+
"sha256": "3e423d1d68c491774936eb17c927759a760a3f587ba6143e504aabec387232ee"
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"layer_index": 2,
|
| 75 |
+
"path": "layers/layer-002.gguf",
|
| 76 |
+
"tensor_count": 13,
|
| 77 |
+
"tensor_bytes": 2222265344,
|
| 78 |
+
"artifact_bytes": 2230504736,
|
| 79 |
+
"sha256": "0d3c408b4096e836758745683a55f0c743199fab928ebe7fa11e9eb732bfb3d5"
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"layer_index": 3,
|
| 83 |
+
"path": "layers/layer-003.gguf",
|
| 84 |
+
"tensor_count": 13,
|
| 85 |
+
"tensor_bytes": 2066404352,
|
| 86 |
+
"artifact_bytes": 2074643744,
|
| 87 |
+
"sha256": "bcb88df5dc70a80dbbbb5247c3429365018a1a52e64f7e2e81f3fb0896ce6c7e"
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"layer_index": 4,
|
| 91 |
+
"path": "layers/layer-004.gguf",
|
| 92 |
+
"tensor_count": 13,
|
| 93 |
+
"tensor_bytes": 2066404352,
|
| 94 |
+
"artifact_bytes": 2074643744,
|
| 95 |
+
"sha256": "f911ff01bb80af4e15c4b03702655f39a73040775fbb69cf4d0fc28441e428ad"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"layer_index": 5,
|
| 99 |
+
"path": "layers/layer-005.gguf",
|
| 100 |
+
"tensor_count": 13,
|
| 101 |
+
"tensor_bytes": 2217399296,
|
| 102 |
+
"artifact_bytes": 2225638688,
|
| 103 |
+
"sha256": "9c28493be5ead81821f3a3de781c6da438ac17bbbdcab9444e8b28a1e979b9cc"
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"layer_index": 6,
|
| 107 |
+
"path": "layers/layer-006.gguf",
|
| 108 |
+
"tensor_count": 13,
|
| 109 |
+
"tensor_bytes": 2066404352,
|
| 110 |
+
"artifact_bytes": 2074643744,
|
| 111 |
+
"sha256": "53c9bddb0ca21a5a750161b8a45e69c614a156a390764e6db0bb24e0a5af25a0"
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"layer_index": 7,
|
| 115 |
+
"path": "layers/layer-007.gguf",
|
| 116 |
+
"tensor_count": 13,
|
| 117 |
+
"tensor_bytes": 2066404352,
|
| 118 |
+
"artifact_bytes": 2074643744,
|
| 119 |
+
"sha256": "a2fdc36cfa1540c37a32249ab9e9e0e4d26f405a662a4b3456b6c9ceb7334ac6"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"layer_index": 8,
|
| 123 |
+
"path": "layers/layer-008.gguf",
|
| 124 |
+
"tensor_count": 13,
|
| 125 |
+
"tensor_bytes": 2071270400,
|
| 126 |
+
"artifact_bytes": 2079509792,
|
| 127 |
+
"sha256": "2b37e7bd14daf1026b5127d79a891f56479c46be9ec238f5796312b909410ead"
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"layer_index": 9,
|
| 131 |
+
"path": "layers/layer-009.gguf",
|
| 132 |
+
"tensor_count": 13,
|
| 133 |
+
"tensor_bytes": 2071270400,
|
| 134 |
+
"artifact_bytes": 2079509792,
|
| 135 |
+
"sha256": "21a08d76c151ebab4c031c452bc6f06fb5f219d4fbd4f7906feda700b0dc8ae1"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"layer_index": 10,
|
| 139 |
+
"path": "layers/layer-010.gguf",
|
| 140 |
+
"tensor_count": 13,
|
| 141 |
+
"tensor_bytes": 2071270400,
|
| 142 |
+
"artifact_bytes": 2079509792,
|
| 143 |
+
"sha256": "9f3955ec0cf4c08071373bdac57707bd87587dee3e1eccbe72c5f267b1260883"
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"layer_index": 11,
|
| 147 |
+
"path": "layers/layer-011.gguf",
|
| 148 |
+
"tensor_count": 13,
|
| 149 |
+
"tensor_bytes": 2066404352,
|
| 150 |
+
"artifact_bytes": 2074643744,
|
| 151 |
+
"sha256": "4f87e019c2d072c2029765a90250cafbf6e75c3b9f9413c2654f2a74459868a1"
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"layer_index": 12,
|
| 155 |
+
"path": "layers/layer-012.gguf",
|
| 156 |
+
"tensor_count": 13,
|
| 157 |
+
"tensor_bytes": 2066404352,
|
| 158 |
+
"artifact_bytes": 2074643744,
|
| 159 |
+
"sha256": "0a497267083eac1daf0ab5284f267dce3d840f9282237ba9c905281c231cf3b8"
|
| 160 |
+
},
|
| 161 |
+
{
|
| 162 |
+
"layer_index": 13,
|
| 163 |
+
"path": "layers/layer-013.gguf",
|
| 164 |
+
"tensor_count": 13,
|
| 165 |
+
"tensor_bytes": 2066404352,
|
| 166 |
+
"artifact_bytes": 2074643744,
|
| 167 |
+
"sha256": "e90e34a114b06053c4fdb0c5e31e24814337f0d2c1705770b03f57ba48e00cac"
|
| 168 |
+
},
|
| 169 |
+
{
|
| 170 |
+
"layer_index": 14,
|
| 171 |
+
"path": "layers/layer-014.gguf",
|
| 172 |
+
"tensor_count": 13,
|
| 173 |
+
"tensor_bytes": 2066404352,
|
| 174 |
+
"artifact_bytes": 2074643744,
|
| 175 |
+
"sha256": "8f8c5dde4b16f178a426894f769e90e17447de32f74e564125bd7899a66fe294"
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"layer_index": 15,
|
| 179 |
+
"path": "layers/layer-015.gguf",
|
| 180 |
+
"tensor_count": 13,
|
| 181 |
+
"tensor_bytes": 2066404352,
|
| 182 |
+
"artifact_bytes": 2074643744,
|
| 183 |
+
"sha256": "b755b8737b3e764d9ee3a62ae33ecea8351a2e27e52712e020e094a91e4cde5e"
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"layer_index": 16,
|
| 187 |
+
"path": "layers/layer-016.gguf",
|
| 188 |
+
"tensor_count": 13,
|
| 189 |
+
"tensor_bytes": 2066404352,
|
| 190 |
+
"artifact_bytes": 2074643744,
|
| 191 |
+
"sha256": "c5d696c4ff51851701d84c124fb8877cc58c0380241a0433d4b30761d3bc7cfe"
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"layer_index": 17,
|
| 195 |
+
"path": "layers/layer-017.gguf",
|
| 196 |
+
"tensor_count": 13,
|
| 197 |
+
"tensor_bytes": 2066404352,
|
| 198 |
+
"artifact_bytes": 2074643744,
|
| 199 |
+
"sha256": "4d1be66966b50043b4a1cb00b6a0591a5e5a73c7ef5f1525840d7946b89d27e1"
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"layer_index": 18,
|
| 203 |
+
"path": "layers/layer-018.gguf",
|
| 204 |
+
"tensor_count": 13,
|
| 205 |
+
"tensor_bytes": 2066404352,
|
| 206 |
+
"artifact_bytes": 2074643744,
|
| 207 |
+
"sha256": "f188133b05f4cdce678da9c0d084c3eb62ff9321bdc49786fc940bc8a2450ae7"
|
| 208 |
+
},
|
| 209 |
+
{
|
| 210 |
+
"layer_index": 19,
|
| 211 |
+
"path": "layers/layer-019.gguf",
|
| 212 |
+
"tensor_count": 13,
|
| 213 |
+
"tensor_bytes": 2066404352,
|
| 214 |
+
"artifact_bytes": 2074643744,
|
| 215 |
+
"sha256": "45162c221cb406a7e1d2178e7accf318f328c8b2b15b420bbb80f60ca1d770d9"
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"layer_index": 20,
|
| 219 |
+
"path": "layers/layer-020.gguf",
|
| 220 |
+
"tensor_count": 13,
|
| 221 |
+
"tensor_bytes": 2066404352,
|
| 222 |
+
"artifact_bytes": 2074643744,
|
| 223 |
+
"sha256": "0db41a6216edddb9666bad6f896251fb700056aee3a883ada9f00706b8bc43ca"
|
| 224 |
+
},
|
| 225 |
+
{
|
| 226 |
+
"layer_index": 21,
|
| 227 |
+
"path": "layers/layer-021.gguf",
|
| 228 |
+
"tensor_count": 13,
|
| 229 |
+
"tensor_bytes": 2066404352,
|
| 230 |
+
"artifact_bytes": 2074643744,
|
| 231 |
+
"sha256": "2c034c16a013f25c275367a8f45d62e1864da924305af8477389aacaed8fd324"
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"layer_index": 22,
|
| 235 |
+
"path": "layers/layer-022.gguf",
|
| 236 |
+
"tensor_count": 13,
|
| 237 |
+
"tensor_bytes": 2066404352,
|
| 238 |
+
"artifact_bytes": 2074643744,
|
| 239 |
+
"sha256": "aeb260e2c7098c9e1a767ebf05ee6491e341b15444c388fa297523921393f5ef"
|
| 240 |
+
},
|
| 241 |
+
{
|
| 242 |
+
"layer_index": 23,
|
| 243 |
+
"path": "layers/layer-023.gguf",
|
| 244 |
+
"tensor_count": 13,
|
| 245 |
+
"tensor_bytes": 2066404352,
|
| 246 |
+
"artifact_bytes": 2074643744,
|
| 247 |
+
"sha256": "34f4da282ae973de897a4a2f81801e79140d38da6bbcab79579c5fe023401153"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"layer_index": 24,
|
| 251 |
+
"path": "layers/layer-024.gguf",
|
| 252 |
+
"tensor_count": 13,
|
| 253 |
+
"tensor_bytes": 2222904320,
|
| 254 |
+
"artifact_bytes": 2231143712,
|
| 255 |
+
"sha256": "2ddd023a16c9814a78e8bf123c3ecba569115dc7345f935375b88a0030ef0e75"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"layer_index": 25,
|
| 259 |
+
"path": "layers/layer-025.gguf",
|
| 260 |
+
"tensor_count": 13,
|
| 261 |
+
"tensor_bytes": 2217399296,
|
| 262 |
+
"artifact_bytes": 2225638688,
|
| 263 |
+
"sha256": "5516b17bf14ae9a5d4f50df64f6f67c363ff2919db077e813fa9930f193aec94"
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"layer_index": 26,
|
| 267 |
+
"path": "layers/layer-026.gguf",
|
| 268 |
+
"tensor_count": 13,
|
| 269 |
+
"tensor_bytes": 2066404352,
|
| 270 |
+
"artifact_bytes": 2074643744,
|
| 271 |
+
"sha256": "6d0ecbc224730b7a14bc1800410ba877b9448704014544a6002262d0f9d74d9d"
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"layer_index": 27,
|
| 275 |
+
"path": "layers/layer-027.gguf",
|
| 276 |
+
"tensor_count": 13,
|
| 277 |
+
"tensor_bytes": 2066404352,
|
| 278 |
+
"artifact_bytes": 2074643744,
|
| 279 |
+
"sha256": "0d12af34920e1b7e0bd17d251cd79a2641fcd4bcbe7248c29250e0713f08ddad"
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"layer_index": 28,
|
| 283 |
+
"path": "layers/layer-028.gguf",
|
| 284 |
+
"tensor_count": 13,
|
| 285 |
+
"tensor_bytes": 2066404352,
|
| 286 |
+
"artifact_bytes": 2074643744,
|
| 287 |
+
"sha256": "67b0681fb0e1ee68b7a5af1737a68be7d58474579c66a8a548d17b025aea3edb"
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"layer_index": 29,
|
| 291 |
+
"path": "layers/layer-029.gguf",
|
| 292 |
+
"tensor_count": 13,
|
| 293 |
+
"tensor_bytes": 2066404352,
|
| 294 |
+
"artifact_bytes": 2074643744,
|
| 295 |
+
"sha256": "ccca6837ad8098cb8a93d1ccd77dddeebb3126b6691bf4e76c37fd6e341235ad"
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"layer_index": 30,
|
| 299 |
+
"path": "layers/layer-030.gguf",
|
| 300 |
+
"tensor_count": 13,
|
| 301 |
+
"tensor_bytes": 2066404352,
|
| 302 |
+
"artifact_bytes": 2074643744,
|
| 303 |
+
"sha256": "194cc31cef2450d995bc2829421c02b00c3a52a90749f749b38bf6d72dc30d38"
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"layer_index": 31,
|
| 307 |
+
"path": "layers/layer-031.gguf",
|
| 308 |
+
"tensor_count": 13,
|
| 309 |
+
"tensor_bytes": 2066404352,
|
| 310 |
+
"artifact_bytes": 2074643744,
|
| 311 |
+
"sha256": "ed8b37a8ef4956595129de1fffb389add3c4663d3b0ea637f7d2839ffe740e68"
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"layer_index": 32,
|
| 315 |
+
"path": "layers/layer-032.gguf",
|
| 316 |
+
"tensor_count": 13,
|
| 317 |
+
"tensor_bytes": 2066404352,
|
| 318 |
+
"artifact_bytes": 2074643744,
|
| 319 |
+
"sha256": "e5d94422f69ff11b6e4608555374d67b67bdf5c79d9f886b84b9c2d554a44d2a"
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"layer_index": 33,
|
| 323 |
+
"path": "layers/layer-033.gguf",
|
| 324 |
+
"tensor_count": 13,
|
| 325 |
+
"tensor_bytes": 2066404352,
|
| 326 |
+
"artifact_bytes": 2074643744,
|
| 327 |
+
"sha256": "daa4e725d9efedeeb16116fe35662fc2a5af61aa7a18c5a9842ef397dfd11170"
|
| 328 |
+
},
|
| 329 |
+
{
|
| 330 |
+
"layer_index": 34,
|
| 331 |
+
"path": "layers/layer-034.gguf",
|
| 332 |
+
"tensor_count": 13,
|
| 333 |
+
"tensor_bytes": 2066404352,
|
| 334 |
+
"artifact_bytes": 2074643744,
|
| 335 |
+
"sha256": "be82eac6f9810d5e89830756b5800ef2a2a0a4fed28a2d17062aa9fc63762109"
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"layer_index": 35,
|
| 339 |
+
"path": "layers/layer-035.gguf",
|
| 340 |
+
"tensor_count": 13,
|
| 341 |
+
"tensor_bytes": 2217399296,
|
| 342 |
+
"artifact_bytes": 2225638688,
|
| 343 |
+
"sha256": "3883964ec9df3b168983827af5657ab61dd2a94d84be70e4a945ec6b4f8aa841"
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"layer_index": 36,
|
| 347 |
+
"path": "layers/layer-036.gguf",
|
| 348 |
+
"tensor_count": 13,
|
| 349 |
+
"tensor_bytes": 2066404352,
|
| 350 |
+
"artifact_bytes": 2074643744,
|
| 351 |
+
"sha256": "d3e742fcfbf6e4f96e4f3d3caefa0670689ce16a334fcc13ea099cd0efcf6670"
|
| 352 |
+
},
|
| 353 |
+
{
|
| 354 |
+
"layer_index": 37,
|
| 355 |
+
"path": "layers/layer-037.gguf",
|
| 356 |
+
"tensor_count": 13,
|
| 357 |
+
"tensor_bytes": 2066404352,
|
| 358 |
+
"artifact_bytes": 2074643744,
|
| 359 |
+
"sha256": "8ca5a966e5825aed53ecbfb8bb7a9a1fc3e7ba7e31c29439aee15c603b494bf0"
|
| 360 |
+
},
|
| 361 |
+
{
|
| 362 |
+
"layer_index": 38,
|
| 363 |
+
"path": "layers/layer-038.gguf",
|
| 364 |
+
"tensor_count": 13,
|
| 365 |
+
"tensor_bytes": 2217399296,
|
| 366 |
+
"artifact_bytes": 2225638688,
|
| 367 |
+
"sha256": "8e52c60063a0ae68b11f783529ac9f72359badd18a694cb1597b61731bb3fe03"
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"layer_index": 39,
|
| 371 |
+
"path": "layers/layer-039.gguf",
|
| 372 |
+
"tensor_count": 13,
|
| 373 |
+
"tensor_bytes": 2071909376,
|
| 374 |
+
"artifact_bytes": 2080148768,
|
| 375 |
+
"sha256": "da4adb06dcfc933fbb6aee19e7d934483c72a1440d40d00fa1a304a5c0fe7b11"
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"layer_index": 40,
|
| 379 |
+
"path": "layers/layer-040.gguf",
|
| 380 |
+
"tensor_count": 13,
|
| 381 |
+
"tensor_bytes": 2066404352,
|
| 382 |
+
"artifact_bytes": 2074643744,
|
| 383 |
+
"sha256": "176f8f9e2d1d0ebaec2e8c9eaa9099a6261ed4b022b8b3e696c24973b00bc005"
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"layer_index": 41,
|
| 387 |
+
"path": "layers/layer-041.gguf",
|
| 388 |
+
"tensor_count": 13,
|
| 389 |
+
"tensor_bytes": 2222904320,
|
| 390 |
+
"artifact_bytes": 2231143712,
|
| 391 |
+
"sha256": "341faa646170e3568238402245b27ace00150124a9b78e44900aeba59754af8c"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"layer_index": 42,
|
| 395 |
+
"path": "layers/layer-042.gguf",
|
| 396 |
+
"tensor_count": 13,
|
| 397 |
+
"tensor_bytes": 2066404352,
|
| 398 |
+
"artifact_bytes": 2074643744,
|
| 399 |
+
"sha256": "886457d0365959b2c720f01aaa44d4b3f1a283a002bce2c11bc21d9006fd2066"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"layer_index": 43,
|
| 403 |
+
"path": "layers/layer-043.gguf",
|
| 404 |
+
"tensor_count": 13,
|
| 405 |
+
"tensor_bytes": 2217399296,
|
| 406 |
+
"artifact_bytes": 2225638688,
|
| 407 |
+
"sha256": "b31a2014d817ac8132b2ef5045a4e6e7ca7e634575c810b298d4dab0be2566df"
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"layer_index": 44,
|
| 411 |
+
"path": "layers/layer-044.gguf",
|
| 412 |
+
"tensor_count": 13,
|
| 413 |
+
"tensor_bytes": 2066404352,
|
| 414 |
+
"artifact_bytes": 2074643744,
|
| 415 |
+
"sha256": "7c4b33778f0603139ec0e4aac52f37d276db1444331ac516be67be1219161aad"
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"layer_index": 45,
|
| 419 |
+
"path": "layers/layer-045.gguf",
|
| 420 |
+
"tensor_count": 13,
|
| 421 |
+
"tensor_bytes": 2066404352,
|
| 422 |
+
"artifact_bytes": 2074643744,
|
| 423 |
+
"sha256": "47054ad6c5c4cfffaea39e2affb88ec6ce154f9aec6af3a532ea5adb1e3f0440"
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"layer_index": 46,
|
| 427 |
+
"path": "layers/layer-046.gguf",
|
| 428 |
+
"tensor_count": 13,
|
| 429 |
+
"tensor_bytes": 2066404352,
|
| 430 |
+
"artifact_bytes": 2074643744,
|
| 431 |
+
"sha256": "51704031d412403f59f71e816d14e46df7ffd5f8d067796883ba6dc5e5d33203"
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"layer_index": 47,
|
| 435 |
+
"path": "layers/layer-047.gguf",
|
| 436 |
+
"tensor_count": 13,
|
| 437 |
+
"tensor_bytes": 2066404352,
|
| 438 |
+
"artifact_bytes": 2074643744,
|
| 439 |
+
"sha256": "099d98d660127a986bbfd2d554432c403c7a436e2c7ea329b42d4e818bfb9e46"
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"layer_index": 48,
|
| 443 |
+
"path": "layers/layer-048.gguf",
|
| 444 |
+
"tensor_count": 13,
|
| 445 |
+
"tensor_bytes": 2217399296,
|
| 446 |
+
"artifact_bytes": 2225638688,
|
| 447 |
+
"sha256": "9f5b041d5980411d6bf17f875035a7a356cfeb67fef3eba7a7064cd832cfa49f"
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"layer_index": 49,
|
| 451 |
+
"path": "layers/layer-049.gguf",
|
| 452 |
+
"tensor_count": 13,
|
| 453 |
+
"tensor_bytes": 2222265344,
|
| 454 |
+
"artifact_bytes": 2230504736,
|
| 455 |
+
"sha256": "0614e385e4c89b9c5ba43e96b58aaf49bc9e89309ae270890678e64533774963"
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"layer_index": 50,
|
| 459 |
+
"path": "layers/layer-050.gguf",
|
| 460 |
+
"tensor_count": 13,
|
| 461 |
+
"tensor_bytes": 2066404352,
|
| 462 |
+
"artifact_bytes": 2074643744,
|
| 463 |
+
"sha256": "a5c2695b0e6ac425d3068e7b4959673df2380f235edc7ee06ce2e83f87f1a3cf"
|
| 464 |
+
},
|
| 465 |
+
{
|
| 466 |
+
"layer_index": 51,
|
| 467 |
+
"path": "layers/layer-051.gguf",
|
| 468 |
+
"tensor_count": 13,
|
| 469 |
+
"tensor_bytes": 2066404352,
|
| 470 |
+
"artifact_bytes": 2074643744,
|
| 471 |
+
"sha256": "26d0955fb95d9edde69862b586e65bcbe3b907a70acfab5c25ae92dc3ab286bf"
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"layer_index": 52,
|
| 475 |
+
"path": "layers/layer-052.gguf",
|
| 476 |
+
"tensor_count": 13,
|
| 477 |
+
"tensor_bytes": 2071270400,
|
| 478 |
+
"artifact_bytes": 2079509792,
|
| 479 |
+
"sha256": "3a2e0559b47ff4fa1c1e581d8fc010131fea537064988fbc3cea9c86034e26ff"
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"layer_index": 53,
|
| 483 |
+
"path": "layers/layer-053.gguf",
|
| 484 |
+
"tensor_count": 13,
|
| 485 |
+
"tensor_bytes": 2071270400,
|
| 486 |
+
"artifact_bytes": 2079509792,
|
| 487 |
+
"sha256": "ca8deb5085037ff063798fcda535a71601ffae22ac0364b16b138127e53a8f6b"
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"layer_index": 54,
|
| 491 |
+
"path": "layers/layer-054.gguf",
|
| 492 |
+
"tensor_count": 13,
|
| 493 |
+
"tensor_bytes": 2066404352,
|
| 494 |
+
"artifact_bytes": 2074643744,
|
| 495 |
+
"sha256": "1673de1b6a4d410569050868092184aea467a6d1a7e45cbd98dd4dc7bb21da10"
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"layer_index": 55,
|
| 499 |
+
"path": "layers/layer-055.gguf",
|
| 500 |
+
"tensor_count": 13,
|
| 501 |
+
"tensor_bytes": 2071270400,
|
| 502 |
+
"artifact_bytes": 2079509792,
|
| 503 |
+
"sha256": "49c315bc0a955a87b1ca3ba57f16c2bd030d9e1f054cb302caddc64dc0085dd6"
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"layer_index": 56,
|
| 507 |
+
"path": "layers/layer-056.gguf",
|
| 508 |
+
"tensor_count": 13,
|
| 509 |
+
"tensor_bytes": 2066404352,
|
| 510 |
+
"artifact_bytes": 2074643744,
|
| 511 |
+
"sha256": "afac8da2bbcc1f688f7177b837e4da5c01dc546c0983dd005717ddd8eab983b4"
|
| 512 |
+
},
|
| 513 |
+
{
|
| 514 |
+
"layer_index": 57,
|
| 515 |
+
"path": "layers/layer-057.gguf",
|
| 516 |
+
"tensor_count": 13,
|
| 517 |
+
"tensor_bytes": 2217399296,
|
| 518 |
+
"artifact_bytes": 2225638688,
|
| 519 |
+
"sha256": "b7c2fcebcfad0657aa6caa3f498f8aae7ddaf658e920a3b2b63c1f5114f9c288"
|
| 520 |
+
},
|
| 521 |
+
{
|
| 522 |
+
"layer_index": 58,
|
| 523 |
+
"path": "layers/layer-058.gguf",
|
| 524 |
+
"tensor_count": 13,
|
| 525 |
+
"tensor_bytes": 2066404352,
|
| 526 |
+
"artifact_bytes": 2074643744,
|
| 527 |
+
"sha256": "598ae7a9a4055a81e77c4fdf2e2d57fa031f9b574f13b21ca5938fcf88fd806c"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"layer_index": 59,
|
| 531 |
+
"path": "layers/layer-059.gguf",
|
| 532 |
+
"tensor_count": 13,
|
| 533 |
+
"tensor_bytes": 2222904320,
|
| 534 |
+
"artifact_bytes": 2231143712,
|
| 535 |
+
"sha256": "31e5b358c48144a9a7e51a39f47c6e79f5ef99ae75dcc78cc6dd846589d47867"
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"layer_index": 60,
|
| 539 |
+
"path": "layers/layer-060.gguf",
|
| 540 |
+
"tensor_count": 13,
|
| 541 |
+
"tensor_bytes": 2222904320,
|
| 542 |
+
"artifact_bytes": 2231143712,
|
| 543 |
+
"sha256": "8012a12c536cf8e995337044550b367b0c31088a2e9422f8a47c728f0b9f6110"
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"layer_index": 61,
|
| 547 |
+
"path": "layers/layer-061.gguf",
|
| 548 |
+
"tensor_count": 13,
|
| 549 |
+
"tensor_bytes": 2222904320,
|
| 550 |
+
"artifact_bytes": 2231143712,
|
| 551 |
+
"sha256": "825d01d1bd77360e7feb7db1435012db8fea1b2f9548341149d511cfcbe8fb7e"
|
| 552 |
+
}
|
| 553 |
+
],
|
| 554 |
+
"skippy_abi_version": "0.1.24",
|
| 555 |
+
"created_at_unix_secs": 1779826484
|
| 556 |
+
}
|