diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..0e6c167bf04d1bf44f98767b6a32e4bbdbcd82b1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,6 @@ saved_model/**/* 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 +*.png filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..1a5b5db0576710f3ebb33a411953afe445180597 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.gradio +.vendor_cache +sozai_rooms.db +*.db-shm +*.db-wal \ No newline at end of file diff --git a/README.md b/README.md index 4fcb013cb46848b6ad025649e993d4ac4c41bc7b..6afcb9906016e842def6731bbf58265a4ea9849e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,17 @@ --- -title: Sozaitest -emoji: 🐨 -colorFrom: green -colorTo: pink +title: Sozai +emoji: 🎨 +colorFrom: yellow +colorTo: blue sdk: gradio sdk_version: 6.18.0 -python_version: '3.13' +python_version: '3.12' app_file: app.py pinned: false +preload_from_hub: + - openbmb/MiniCPM-V-4-gguf ggml-model-Q4_K_M.gguf,mmproj-model-f16.gguf + - Falconsai/nsfw_image_detection + - nvidia/nemotron-3.5-asr-streaming-0.6b --- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..c248ad244b0d3b01d088b7e5eac4332b77c8e249 --- /dev/null +++ b/app.py @@ -0,0 +1,2840 @@ +""" +Sozai β€” hybrid room collaboration, served with gradio.Server (Server mode). + +Gradio is used ONLY as the backend (FastAPI + Gradio's API engine). The whole +UI is custom and comes from these files: + + landing.html the "Sozai" splash (make a room / join by code / skip) + app.html the collaborative album app (the React port from before) + +What this adds on top of the previous version: + * SQLite database (created locally on first run -> sozai_rooms.db) holding + `rooms` and `participants`, matching the project spec. + * Hybrid room model: secure room_id (uuid4) + short human room code whose + LENGTH THE USER CHOOSES (4-12) on the splash screen. + * REST endpoints: create room, get room state, resolve join-by-code. + * A WebSocket endpoint /ws/{room_id} for real-time sync (presence, chat, + shared selection, captions, live cursors, ...). + * A background cleanup thread that expires idle (1h) and old (24h) rooms. + * A "continue without a room" path: /app runs the app solo, no collaboration. + +Run it: + pip install gradio + python app.py # -> http://localhost:7860 +Drop app.py, landing.html, app.html next to storybook_render.zip (or an +extracted public/ folder). Assets are read straight out of the zip. +""" + +from __future__ import annotations + +import os + +# --------------------------------------------------------------------------- # +# ZeroGPU process-start setup. These MUST be set before NeMo / torch are +# imported, because on Hugging Face ZeroGPU the GPU is not attached at process +# start and CUDA must NOT be initialized in the main process. NeMo's RNNT path +# (and numba) can otherwise trigger a low-level CUDA init during import/load, +# which surfaces as: "Low-level CUDA init (torch._C._cuda_init) reached. This +# means ZeroGPU's PyTorch CUDA emulation mode did not intercept a CUDA +# operation". This block mirrors NVIDIA's reference Nemotron/Parakeet Spaces. +# --------------------------------------------------------------------------- # +_omp = os.environ.get("OMP_NUM_THREADS", "") +if _omp and not _omp.isdigit(): + os.environ["OMP_NUM_THREADS"] = str( + max(1, int("".join(c for c in _omp if c.isdigit()) or "1")) + ) +# Stop NeMo's RNNT/numba path from initializing CUDA in the main process. +os.environ.setdefault("NUMBA_DISABLE_CUDA", "1") +# Help torch's allocator play nicely with ZeroGPU's stateless GPU. +os.environ.setdefault("PYTORCH_CUDA_ALLOC_CONF", "expandable_segments:True") + +import asyncio +import functools +import hashlib +import io +import json +import mimetypes +import re +import secrets +import sqlite3 +import threading +import time +import uuid + +from fastapi import HTTPException, Request, WebSocket, WebSocketDisconnect +from fastapi.responses import FileResponse, HTMLResponse, Response + +from gradio import Server + +# --------------------------------------------------------------------------- # +# ZeroGPU support. +# +# On Hugging Face *ZeroGPU* Spaces, a GPU is attached only while a function +# decorated with `@spaces.GPU` is running, and the runtime REFUSES TO START if +# it can't find at least one such function during startup (that is the +# "No @spaces.GPU function detected during startup" error). The `spaces` +# package is preinstalled in the Space image. +# +# Locally (and on any non-ZeroGPU box) the `spaces` package usually isn't +# installed. The decorator is documented to be effect-free off ZeroGPU, so we +# provide a tiny no-op fallback that simply returns the function unchanged. +# This lets the SAME code run both locally and in a Space with no branching: +# * In a ZeroGPU Space -> real `spaces.GPU` requests/releases the GPU. +# * Anywhere else -> `spaces.GPU` is a transparent pass-through. +try: + import spaces # provided by the HF ZeroGPU Space image + _ZEROGPU = True +except Exception: # not on ZeroGPU (e.g. local dev, CPU Space, plain GPU Space) + _ZEROGPU = False + + class _SpacesShim: + """Minimal stand-in for the `spaces` module off ZeroGPU. + + Supports both `@spaces.GPU` and `@spaces.GPU(...)` call styles and just + returns the wrapped function untouched.""" + + @staticmethod + def GPU(fn=None, **_kwargs): + if fn is None: # used as @spaces.GPU(duration=...) + def _wrap(f): + return f + return _wrap + return fn # used as @spaces.GPU + + spaces = _SpacesShim() # type: ignore + +# Load environment variables from a .env file (if present) so SOZAI_*, +# PHOENIX_*, and the Cesium ion token can be set without exporting them. +# Done early so every os.environ.get(...) below sees the values. +try: + from dotenv import load_dotenv + load_dotenv() +except Exception: # python-dotenv not installed β†’ rely on the real environment + pass + +BASE = os.path.dirname(os.path.abspath(__file__)) + +# --------------------------------------------------------------------------- # +# Frontend assets: read from a real public/ dir if present, else from the zip. +# --------------------------------------------------------------------------- # + +def _first_existing(paths): + return next((p for p in paths if p and os.path.exists(p)), None) + + +PUBLIC_DIR = _first_existing([ + os.environ.get("STORYBOOK_PUBLIC"), + os.path.join(BASE, "public"), + os.path.join(BASE, "storybook_render", "public"), + os.path.join(BASE, "src", "public"), +]) +ZIP_PATH = _first_existing([ + os.environ.get("STORYBOOK_ZIP"), + os.path.join(BASE, "storybook_render.zip"), +]) +_ZIP_PREFIX = None + + +@functools.lru_cache(maxsize=512) +def _read_from_zip(rel_path: str) -> bytes: + import zipfile + global _ZIP_PREFIX + with zipfile.ZipFile(ZIP_PATH) as z: + if _ZIP_PREFIX is None: + _ZIP_PREFIX = "" + for n in z.namelist(): + idx = n.find("public/") + if idx != -1: + _ZIP_PREFIX = n[:idx] + break + for name in (f"{_ZIP_PREFIX}public/{rel_path}", f"public/{rel_path}", rel_path): + try: + return z.read(name) + except KeyError: + continue + raise KeyError(rel_path) + + +if PUBLIC_DIR is None and ZIP_PATH is None: + raise SystemExit( + "Could not find frontend assets. Put storybook_render.zip next to " + "app.py, or extract its public/ folder alongside app.py." + ) + +# --------------------------------------------------------------------------- # +# Easter-egg pet sprites: the 2023 oneko-style icon library (76 animals, 32 +# sprites each). Served from a real folder if present, else from neko-main.zip. +# Each animal lives at /2023-icon-library//.png . +# --------------------------------------------------------------------------- # + +SPRITES_DIR = _first_existing([ + os.environ.get("SOZAI_SPRITES_DIR"), + os.path.join(BASE, "2023-icon-library"), + os.path.join(BASE, "public", "2023-icon-library"), + os.path.join(BASE, "sprites"), +]) +SPRITES_ZIP = _first_existing([ + os.environ.get("SOZAI_SPRITES_ZIP"), + os.path.join(BASE, "neko-main.zip"), +]) +_SPRITES_ZIP_PREFIX = None + +# The canonical sprite filenames shared by every animal in the library. +SPRITE_FILES = [ + "alert", "still", "sleep1", "sleep2", "wash", "yawn", "itch1", "itch2", + "nrun1", "nrun2", "nerun1", "nerun2", "erun1", "erun2", "serun1", "serun2", + "srun1", "srun2", "swrun1", "swrun2", "wrun1", "wrun2", "nwrun1", "nwrun2", + "nscratch1", "nscratch2", "escratch1", "escratch2", + "sscratch1", "sscratch2", "wscratch1", "wscratch2", +] + + +@functools.lru_cache(maxsize=1) +def list_sprite_animals(): + """Return the sorted list of available animal sprite-set names.""" + names = set() + if SPRITES_DIR and os.path.isdir(SPRITES_DIR): + for d in os.listdir(SPRITES_DIR): + if os.path.isdir(os.path.join(SPRITES_DIR, d)): + names.add(d) + elif SPRITES_ZIP: + import zipfile + try: + with zipfile.ZipFile(SPRITES_ZIP) as z: + for n in z.namelist(): + idx = n.find("2023-icon-library/") + if idx == -1: + continue + rest = n[idx + len("2023-icon-library/"):] + animal = rest.split("/", 1)[0] + if animal and "." not in animal: + names.add(animal) + except Exception: + pass + return sorted(names) + + +@functools.lru_cache(maxsize=4096) +def _read_sprite(animal: str, fname: str) -> bytes: + """Read a single sprite PNG for an animal from folder or zip.""" + safe_animal = "".join(ch for ch in animal if ch.isalnum() or ch in "-_") + safe_file = "".join(ch for ch in fname if ch.isalnum() or ch in "-_") + rel = f"2023-icon-library/{safe_animal}/{safe_file}.png" + if SPRITES_DIR and os.path.isdir(SPRITES_DIR): + fp = os.path.join(SPRITES_DIR, safe_animal, safe_file + ".png") + if os.path.isfile(fp): + with open(fp, "rb") as fh: + return fh.read() + if SPRITES_ZIP: + import zipfile + global _SPRITES_ZIP_PREFIX + with zipfile.ZipFile(SPRITES_ZIP) as z: + if _SPRITES_ZIP_PREFIX is None: + _SPRITES_ZIP_PREFIX = "" + for n in z.namelist(): + idx = n.find("2023-icon-library/") + if idx != -1: + _SPRITES_ZIP_PREFIX = n[:idx] + break + for name in (f"{_SPRITES_ZIP_PREFIX}{rel}", rel): + try: + return z.read(name) + except KeyError: + continue + raise KeyError(rel) + + +# --------------------------------------------------------------------------- # +# SQLite β€” created locally on first run. +# --------------------------------------------------------------------------- # + +DB_PATH = os.environ.get("SOZAI_DB", os.path.join(BASE, "sozai_rooms.db")) +DB_LOCK = threading.RLock() +_conn = sqlite3.connect(DB_PATH, check_same_thread=False) +_conn.row_factory = sqlite3.Row + + +def init_db(): + with DB_LOCK: + # auto_vacuum must be set BEFORE tables exist to take effect on a fresh + # DB; on an existing file it only applies after a full VACUUM (below). + # INCREMENTAL lets the cleanup loop reclaim freed pages to the OS so the + # file doesn't keep growing as rooms are created and deleted. + _conn.execute("PRAGMA auto_vacuum=INCREMENTAL;") + _conn.execute("PRAGMA journal_mode=WAL;") + _conn.executescript( + """ + CREATE TABLE IF NOT EXISTS rooms ( + room_id TEXT PRIMARY KEY, + share_code TEXT UNIQUE, + code_length INTEGER, + created_at REAL, + last_activity REAL, + owner_session_id TEXT, + is_active INTEGER DEFAULT 1, + metadata TEXT + ); + CREATE TABLE IF NOT EXISTS participants ( + participant_id TEXT PRIMARY KEY, + room_id TEXT, + session_id TEXT, + display_name TEXT, + joined_at REAL, + last_seen REAL + ); + CREATE TABLE IF NOT EXISTS room_state ( + room_id TEXT PRIMARY KEY, + state TEXT, + version INTEGER DEFAULT 0, + updated_at REAL + ); + CREATE INDEX IF NOT EXISTS idx_rooms_code ON rooms(share_code); + CREATE INDEX IF NOT EXISTS idx_rooms_activity ON rooms(last_activity); + CREATE INDEX IF NOT EXISTS idx_part_room ON participants(room_id); + """ + ) + _conn.commit() + # If this is an existing DB created without auto_vacuum, a one-time full + # VACUUM is needed for the INCREMENTAL setting to take hold. Cheap on a + # small/empty DB; safe to run on every startup. + try: + mode = _conn.execute("PRAGMA auto_vacuum;").fetchone()[0] + if mode != 2: # 2 == INCREMENTAL + _conn.execute("VACUUM;") + _conn.commit() + except Exception: + pass + + +init_db() + +# --------------------------------------------------------------------------- # +# Identifiers +# --------------------------------------------------------------------------- # + +# Unambiguous uppercase alphabet (no 0/O/1/I/L) -> ~4.9 bits/char. +CODE_ALPHABET = "23456789ABCDEFGHJKMNPQRSTVWXYZ" +MIN_CODE_LEN, MAX_CODE_LEN = 4, 12 +IDLE_TIMEOUT = int(os.environ.get("SOZAI_IDLE_TIMEOUT", str(60 * 60))) # 1 hour -> mark inactive +# Delete a room (and its photos/state) after this much inactivity. Keyed on +# last_activity, so the DB reflects live usage and doesn't bloat. Defaults to +# 1 hour + a 10-minute grace window; override with SOZAI_ROOM_DELETE_AFTER_IDLE. +ROOM_DELETE_AFTER_IDLE = int(os.environ.get("SOZAI_ROOM_DELETE_AFTER_IDLE", str(60 * 60 + 600))) +HARD_EXPIRATION = int(os.environ.get("SOZAI_HARD_EXPIRATION", str(24 * 60 * 60))) # absolute cap + + +def clamp_code_len(n) -> int: + try: + n = int(n) + except (TypeError, ValueError): + n = 6 + return max(MIN_CODE_LEN, min(MAX_CODE_LEN, n)) + + +def gen_share_code(length: int) -> str: + return "".join(secrets.choice(CODE_ALPHABET) for _ in range(length)) + + +def unique_share_code(length: int) -> str: + length = clamp_code_len(length) + with DB_LOCK: + for _ in range(40): + code = gen_share_code(length) + row = _conn.execute( + "SELECT 1 FROM rooms WHERE share_code=? AND is_active=1", (code,) + ).fetchone() + if row is None: + return code + # extremely unlikely fallback: widen the code + return gen_share_code(min(MAX_CODE_LEN, length + 2)) + + +def sanitize_name(name, default="Guest"): + name = (name or "").strip() + name = "".join(ch for ch in name if ch.isprintable()) + return name[:24] or default + + +def touch_room(room_id: str): + with DB_LOCK: + _conn.execute( + "UPDATE rooms SET last_activity=? WHERE room_id=?", (time.time(), room_id) + ) + _conn.commit() + + +def room_row(room_id: str): + with DB_LOCK: + return _conn.execute( + "SELECT * FROM rooms WHERE room_id=? AND is_active=1", (room_id,) + ).fetchone() + + +# --------------------------------------------------------------------------- # +# Gradio Server +# --------------------------------------------------------------------------- # + +app = Server() + + +# Kept from the previous version: a Gradio API endpoint the frontend can call +# through @gradio/client. Still works in collab mode. +@app.api(name="save_to_album") +def save_to_album(album: str = "", caption: str = "", tags: str = "") -> str: + """Save a photo + caption + tags to an album, returning a confirmation.""" + album = (album or "").strip() + if not album: + return "Select an album to save this photo." + return f'Added to "{album}".' + + +# --------------------------------------------------------------------------- # +# Auto-caption: a vision-language model that suggests a caption for a photo. +# The model (MiniCPM-V) is heavy, so it is loaded lazily on first use and +# cached. If transformers / llama.cpp / the model weights are unavailable, we +# fall back to a simple suggestion so the feature degrades gracefully instead +# of erroring. +# +# IMPORTANT: MiniCPM-V is a true VISION-LANGUAGE model. Both backends are wired +# to send the ACTUAL IMAGE to the model (not just alt-text), so the suggested +# title / caption / tags are grounded in what the photo actually shows. +# --------------------------------------------------------------------------- # + +AUTOCAPTION_MODEL_ID = os.environ.get("SOZAI_CAPTION_MODEL", "openbmb/MiniCPM-V-4") +# GGUF variant used when running inside a Hugging Face Space (where llama.cpp + +# a quantized GGUF is the practical way to run MiniCPM-V). Outside Spaces we use +# the normal transformers model above. Both are overridable via env. +# +# MiniCPM-V-4 is a vision-language model, so the GGUF build needs TWO files: the +# LM weights (CAPTION_GGUF_FILE) and the vision projector / CLIP encoder +# (CAPTION_GGUF_MMPROJ). Without the mmproj the model can't see images. Use the +# plain mmproj-model-f16.gguf β€” NOT the -IOS variant, which is iOS-only and +# fails to load in llama.cpp. +CAPTION_GGUF_REPO = os.environ.get("SOZAI_CAPTION_GGUF_REPO", "openbmb/MiniCPM-V-4-gguf") +CAPTION_GGUF_FILE = os.environ.get("SOZAI_CAPTION_GGUF_FILE", "ggml-model-Q4_K_M.gguf") +CAPTION_GGUF_MMPROJ = os.environ.get("SOZAI_CAPTION_GGUF_MMPROJ", "mmproj-model-f16.gguf") +_caption_lock = threading.Lock() +# backend: "" until loaded, then "gguf" or "transformers" +_caption_state = {"loaded": False, "ok": False, "model": None, "tokenizer": None, + "processor": None, "backend": "", + "gguf_model_path": None, "gguf_mmproj_path": None} + + +def _in_hf_space() -> bool: + """True when running inside a Hugging Face Space. HF sets SPACE_ID (and + related SPACE_* vars) automatically, so we use that to autoswitch to the + GGUF backend. Force on/off with SOZAI_USE_GGUF=1/0 if needed.""" + forced = os.environ.get("SOZAI_USE_GGUF", "").strip() + if forced in ("1", "true", "True", "yes"): + return True + if forced in ("0", "false", "False", "no"): + return False + return bool(os.environ.get("SPACE_ID") or os.environ.get("SPACE_HOST")) + + +def _load_caption_model_gguf() -> bool: + """Prepare the MiniCPM-V (vision) GGUF backend. Used inside HF Spaces. + + On ZeroGPU, CUDA must NOT be initialized in the main process β€” so this does + NOT build the llama.cpp model here. It only (a) checks the deps import, and + (b) downloads the LM + mmproj GGUF files (CPU/network only). The actual + `Llama(...)` construction happens lazily in `_ensure_gguf_model()`, which is + called from inside the @spaces.GPU worker where a GPU is attached. + """ + try: + from huggingface_hub import hf_hub_download + import llama_cpp # noqa: F401 (import check only) + from llama_cpp.llama_chat_format import MiniCPMv26ChatHandler # noqa: F401 + + model_path = hf_hub_download(repo_id=CAPTION_GGUF_REPO, filename=CAPTION_GGUF_FILE) + mmproj_path = hf_hub_download(repo_id=CAPTION_GGUF_REPO, filename=CAPTION_GGUF_MMPROJ) + # stash the resolved file paths; the model object is built later, lazily + _caption_state.update(model=None, tokenizer=None, processor=None, + gguf_model_path=model_path, gguf_mmproj_path=mmproj_path, + ok=True, backend="gguf") + print(f"[autocaption] GGUF vision backend ready " + f"({CAPTION_GGUF_REPO}: {CAPTION_GGUF_FILE} + {CAPTION_GGUF_MMPROJ}); " + f"model will load on first use inside the GPU worker") + return True + except Exception as exc: # llama_cpp/hub missing, download failed… + print(f"[autocaption] GGUF backend unavailable, will try transformers: {exc}") + return False + + +# Lock guarding the lazy in-worker GGUF build. On ZeroGPU each worker builds its +# own copy once; this prevents a double-build if two calls race. +_gguf_build_lock = threading.Lock() + + +def _ensure_gguf_model(): + """Build (once) and return the llama.cpp `Llama` model. MUST be called from + inside a @spaces.GPU context on ZeroGPU so the CUDA context is created while + a GPU is attached. Idempotent and thread-safe; caches into _caption_state. + Returns None on failure (caller falls back).""" + model = _caption_state.get("model") + if model is not None: + return model + with _gguf_build_lock: + model = _caption_state.get("model") + if model is not None: + return model + try: + from llama_cpp import Llama + from llama_cpp.llama_chat_format import MiniCPMv26ChatHandler + + model_path = _caption_state.get("gguf_model_path") + mmproj_path = _caption_state.get("gguf_mmproj_path") + if not model_path or not mmproj_path: + # files weren't resolved in the main-process prep step + from huggingface_hub import hf_hub_download + model_path = model_path or hf_hub_download( + repo_id=CAPTION_GGUF_REPO, filename=CAPTION_GGUF_FILE) + mmproj_path = mmproj_path or hf_hub_download( + repo_id=CAPTION_GGUF_REPO, filename=CAPTION_GGUF_MMPROJ) + chat_handler = MiniCPMv26ChatHandler(clip_model_path=mmproj_path, verbose=False) + llm = Llama( + model_path=model_path, + chat_handler=chat_handler, + n_ctx=4096, # vision tokens need a larger context window + n_gpu_layers=-1, # offload all layers (GPU is attached here) + verbose=False, + ) + _caption_state["model"] = llm + print(f"[autocaption] GGUF model built in worker ({CAPTION_GGUF_FILE})") + return llm + except Exception as exc: # noqa: BLE001 + print(f"[autocaption] GGUF in-worker build failed: {exc}") + return None + + +def _load_caption_model_transformers() -> bool: + """Load MiniCPM-V via transformers. Used outside HF Spaces. + + MiniCPM-V exposes a `.chat(image=..., msgs=...)` helper (trust_remote_code), + which we use so this path is ALSO image-grounded, not text-only. + """ + try: + import torch + from transformers import AutoModel, AutoTokenizer + + tokenizer = AutoTokenizer.from_pretrained(AUTOCAPTION_MODEL_ID, trust_remote_code=True) + model = AutoModel.from_pretrained( + AUTOCAPTION_MODEL_ID, + trust_remote_code=True, + attn_implementation="sdpa", + torch_dtype=torch.bfloat16, + ) + model = model.eval() + if torch.cuda.is_available(): + model = model.cuda() + _caption_state.update(model=model, tokenizer=tokenizer, processor=None, + ok=True, backend="transformers") + print(f"[autocaption] transformers vision backend ready ({AUTOCAPTION_MODEL_ID})") + return True + except Exception as exc: # transformers/torch/model missing, no GPU, etc. + print(f"[autocaption] transformers backend unavailable: {exc}") + return False + + +def _load_caption_model(): + """Load and cache the captioning model once. Returns True on success. + + Autoswitches backend: inside a Hugging Face Space we use the GGUF + (llama.cpp) build; everywhere else we use the normal transformers model. + If the preferred backend fails to load we fall back to the other one before + giving up, so the feature still works wherever it can. + """ + if _caption_state["loaded"]: + return _caption_state["ok"] + with _caption_lock: + if _caption_state["loaded"]: + return _caption_state["ok"] + try: + if _in_hf_space(): + ok = _load_caption_model_gguf() or _load_caption_model_transformers() + else: + ok = _load_caption_model_transformers() or _load_caption_model_gguf() + _caption_state["ok"] = ok + finally: + _caption_state["loaded"] = True + return _caption_state["ok"] + + +def _resolve_image_for_model(image_path: str): + """Resolve whatever the frontend sends into a real local file path the + vision model can open. Handles three cases: + 1. a base64 data URL (data:image/...;base64,...) β€” what room uploads send + 2. a bundled asset URL (/assets/...) or zip entry β€” sample photos + 3. an already-local file path + Returns a filesystem path, or None if nothing usable was provided. + + This is the key to image-grounded captions: room photos arrive as data URLs, + NOT /assets/ paths, so without case (1) the model would never see the pixels + and would fall back to filename/alt-based guesses. + """ + if not image_path: + return None + s = image_path.strip() + # 1) data URL β†’ write bytes to a temp file + if s.startswith("data:"): + try: + import base64 + import tempfile + header, b64 = (s.split(",", 1) if "," in s else ("", s)) + mime = "" + if header.startswith("data:") and ";" in header: + mime = header[len("data:"):header.index(";")] + ext = mimetypes.guess_extension(mime) or ".png" + raw = base64.b64decode(b64) + tmp = tempfile.NamedTemporaryFile(delete=False, suffix=ext) + tmp.write(raw) + tmp.close() + return tmp.name + except Exception as exc: # noqa: BLE001 + print(f"[autocaption] could not decode data URL: {exc}") + return None + # 2) asset / zip path + resolved = _resolve_asset_path(s) + if resolved: + return resolved + # 3) already a local file + if os.path.isfile(s): + return s + return None + + +def _resolve_asset_path(image_path: str): + """Map a frontend asset URL (/assets/...) to a real file or zip bytes.""" + if not image_path: + return None + rel = image_path.split("?")[0] + if rel.startswith("/assets/"): + rel = rel[len("/assets/"):] + rel = _safe_rel(rel) + if PUBLIC_DIR is not None: + fp = os.path.join(PUBLIC_DIR, *rel.split("/")) + if os.path.isfile(fp): + return fp + if ZIP_PATH is not None: + try: + import tempfile + + data = _read_from_zip(rel) + suffix = os.path.splitext(rel)[1] or ".png" + tmp = tempfile.NamedTemporaryFile(delete=False, suffix=suffix) + tmp.write(data) + tmp.close() + return tmp.name + except KeyError: + return None + return None + + +def _load_pil_image(local_img: str): + """Open a resolved asset path as an RGB PIL image, or None on failure.""" + if not local_img or not os.path.isfile(local_img): + return None + try: + from PIL import Image + return Image.open(local_img).convert("RGB") + except Exception as exc: # noqa: BLE001 + print(f"[autocaption] could not open image {local_img}: {exc}") + return None + + +def _image_data_uri(local_img: str): + """Encode a local image file as a data: URI for the GGUF chat handler.""" + if not local_img or not os.path.isfile(local_img): + return None + try: + import base64 + mime = mimetypes.guess_type(local_img)[0] or "image/png" + with open(local_img, "rb") as fh: + b64 = base64.b64encode(fh.read()).decode() + return f"data:{mime};base64,{b64}" + except Exception as exc: # noqa: BLE001 + print(f"[autocaption] could not encode image {local_img}: {exc}") + return None + + +def _fallback_caption(alt: str) -> str: + base = (alt or "A moment worth remembering").strip().rstrip(".") + return base[:1].upper() + base[1:] + "." + + +def _fallback_tags(alt: str) -> str: + """Comma-separated tag fallback derived from the alt text.""" + words = re.findall(r"[A-Za-z0-9]+", (alt or "").lower()) + stop = {"the", "a", "an", "of", "and", "in", "on", "at", "to", "with", "photo", "image"} + tags = [w for w in words if w not in stop and len(w) > 2][:6] + if not tags: + tags = ["memory", "moment"] + return ", ".join(dict.fromkeys(tags)) # de-dupe, keep order + + +def _normalize_tags(text: str) -> str: + """Coerce model output into clean comma-separated tags. Splits on commas, + newlines, semicolons or bullet markers; trims; de-dupes; lowercases. Returns + "" if nothing usable is found (caller treats that as an error).""" + if not text: + return "" + # split on common separators the model might emit + parts = re.split(r"[,\n;β€’Β·\-\u2022]+", text) + out = [] + seen = set() + for p in parts: + tag = re.sub(r"^[\s\d\.\)\(]+", "", p).strip().strip('"').strip("'").lower() + tag = re.sub(r"\s+", " ", tag) + if tag and tag not in seen and len(tag) <= 40: + seen.add(tag) + out.append(tag) + return ", ".join(out) + + +def _is_comma_separated(text: str) -> bool: + """A valid tag string has at least one tag and, if multiple, comma sep.""" + t = (text or "").strip() + if not t: + return False + # single tag (no spaces-as-separator confusion) or multiple comma-separated + if "," in t: + return all(seg.strip() for seg in t.split(",")) + return bool(t) + + +@app.api(name="caption_model") +def caption_model() -> str: + """Return the id of the vision-language model used for auto-captioning, + so the UI can show the user which model is currently in use.""" + return AUTOCAPTION_MODEL_ID + + +# --------------------------------------------------------------------------- # +# Observability with Arize Phoenix + OpenTelemetry (no API keys). +# +# Phoenix runs IN-PROCESS β€” it launches automatically when app.py starts, so +# there is no separate `phoenix serve` to run. Every model call (caption / NSFW +# / ASR) is emitted as an OpenTelemetry span with OpenInference semantic +# attributes and shows up in the Phoenix UI, which is embedded directly in the +# app's "LLM Trace" section (via iframe). We also keep a small in-memory ring +# buffer so the in-app list works even if Phoenix can't start. +# +# Port can be overridden with PHOENIX_PORT (default 6006). +# --------------------------------------------------------------------------- # +_trace_lock = threading.Lock() +_trace_buffer: list = [] # most-recent-last ring buffer of spans +_TRACE_MAX = 200 +_otel_tracer = None +_otel_loaded = False +_otel_provider = None +_phoenix_session = None +_phoenix_launched = False +_phoenix_lock = threading.Lock() +PHOENIX_PORT = int(os.environ.get("PHOENIX_PORT", "6006")) +PHOENIX_HOST = os.environ.get("PHOENIX_HOST", "localhost") +PHOENIX_PROJECT = os.environ.get("PHOENIX_PROJECT_NAME", "sozai") +# the collector endpoint OTel sends spans to (same in-process server) +PHOENIX_ENDPOINT = os.environ.get( + "PHOENIX_COLLECTOR_ENDPOINT", f"http://{PHOENIX_HOST}:{PHOENIX_PORT}" +) + + +def _launch_phoenix(): + """Start the Phoenix app in-process (once). Returns the UI base URL, or + None if Phoenix isn't installed / failed to start. Idempotent + thread-safe. + This means the trace UI is available the moment app.py is running β€” no + separate `phoenix serve` needed. + + Host/port are configured via the PHOENIX_HOST / PHOENIX_PORT environment + variables (the launch_app host/port kwargs are deprecated).""" + global _phoenix_session, _phoenix_launched + if _phoenix_launched: + return _phoenix_session_url() + with _phoenix_lock: + if _phoenix_launched: + return _phoenix_session_url() + _phoenix_launched = True + # Phoenix reads these at import/launch time β€” set them before importing. + os.environ.setdefault("PHOENIX_HOST", PHOENIX_HOST) + os.environ.setdefault("PHOENIX_PORT", str(PHOENIX_PORT)) + try: + import phoenix as px + # launch_app() picks up PHOENIX_HOST / PHOENIX_PORT from the env. + # If something is already serving on the port, it returns a session + # pointed at it. + _phoenix_session = px.launch_app() + print(f"[phoenix] in-process UI at {_phoenix_session_url()}") + except Exception as exc: # noqa: BLE001 + print(f"[phoenix] could not launch in-process app: {exc}") + _phoenix_session = None + return _phoenix_session_url() + + +def _phoenix_session_url(): + if _phoenix_session is not None: + try: + return _phoenix_session.url + except Exception: # noqa: BLE001 + pass + return f"http://{PHOENIX_HOST}:{PHOENIX_PORT}" + + +def _get_tracer(): + """Lazily launch in-process Phoenix, register the OTel tracer provider, and + return a tracer. Falls back to a raw OTLP/HTTP exporter, then to the local + buffer only. Returns None if OpenTelemetry isn't installed.""" + global _otel_tracer, _otel_loaded + if _otel_loaded: + return _otel_tracer + _otel_loaded = True + # make sure the embedded Phoenix collector is up first + _launch_phoenix() + # Preferred: phoenix.otel.register β€” Phoenix-aware OTel defaults, no keys. + try: + from phoenix.otel import register + tracer_provider = register( + project_name=PHOENIX_PROJECT, + endpoint=PHOENIX_ENDPOINT.rstrip("/") + "/v1/traces", + batch=True, # use a BatchSpanProcessor (recommended) + set_global_tracer_provider=True, + ) + # batched spans may still be queued at exit β€” flush them on shutdown. + global _otel_provider + _otel_provider = tracer_provider + try: + import atexit + atexit.register(lambda: _otel_provider and _otel_provider.shutdown()) + except Exception: # noqa: BLE001 + pass + _otel_tracer = tracer_provider.get_tracer(__name__) + print(f"[otel] Phoenix tracing enabled β†’ {PHOENIX_ENDPOINT} (project '{PHOENIX_PROJECT}')") + return _otel_tracer + except Exception as exc: # noqa: BLE001 + print(f"[otel] phoenix.otel unavailable ({exc}); trying raw OTLP exporter") + # Fallback: plain OpenTelemetry with an OTLP/HTTP exporter to Phoenix. + try: + from opentelemetry import trace as _t + from opentelemetry.sdk.trace import TracerProvider + from opentelemetry.sdk.trace.export import BatchSpanProcessor + from opentelemetry.sdk.resources import Resource + from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter + provider = TracerProvider(resource=Resource.create({"service.name": PHOENIX_PROJECT})) + provider.add_span_processor(BatchSpanProcessor( + OTLPSpanExporter(endpoint=PHOENIX_ENDPOINT.rstrip("/") + "/v1/traces"))) + _t.set_tracer_provider(provider) + _otel_tracer = _t.get_tracer(__name__) + print(f"[otel] OTLP tracing enabled β†’ {PHOENIX_ENDPOINT}") + return _otel_tracer + except Exception as exc: # noqa: BLE001 + print(f"[otel] OpenTelemetry unavailable, using local trace buffer only: {exc}") + _otel_tracer = None + return None + + +def _record_trace(event: dict): + """Append a trace event to the local ring buffer (newest last).""" + event = dict(event) + event.setdefault("ts", time.time()) + with _trace_lock: + _trace_buffer.append(event) + if len(_trace_buffer) > _TRACE_MAX: + del _trace_buffer[: len(_trace_buffer) - _TRACE_MAX] + + +# OpenInference semantic attribute keys (string fallbacks if the package that +# defines them isn't importable β€” keeps tracing working without it). These mirror +# the attributes Phoenix reads for its span detail + metrics. +_OI = { + "kind": "openinference.span.kind", + "input": "input.value", + "input_mime": "input.mime_type", + "output": "output.value", + "output_mime": "output.mime_type", + "model": "llm.model_name", + "provider": "llm.provider", + "system": "llm.system", + "invocation": "llm.invocation_parameters", + "finish": "llm.finish_reason", + "tok_prompt": "llm.token_count.prompt", + "tok_completion": "llm.token_count.completion", + "tok_total": "llm.token_count.total", + "metadata": "metadata", + "session": "session.id", +} +try: + from openinference.semconv.trace import SpanAttributes as _OISpan + _OI.update({ + "kind": _OISpan.OPENINFERENCE_SPAN_KIND, + "input": _OISpan.INPUT_VALUE, + "output": _OISpan.OUTPUT_VALUE, + "model": _OISpan.LLM_MODEL_NAME, + }) + for k, attr in (("input_mime", "INPUT_MIME_TYPE"), ("output_mime", "OUTPUT_MIME_TYPE"), + ("provider", "LLM_PROVIDER"), ("system", "LLM_SYSTEM"), + ("invocation", "LLM_INVOCATION_PARAMETERS"), ("finish", "LLM_FINISH_REASON"), + ("tok_prompt", "LLM_TOKEN_COUNT_PROMPT"), ("tok_completion", "LLM_TOKEN_COUNT_COMPLETION"), + ("tok_total", "LLM_TOKEN_COUNT_TOTAL"), ("metadata", "METADATA"), + ("session", "SESSION_ID")): + if hasattr(_OISpan, attr): + _OI[k] = getattr(_OISpan, attr) +except Exception: # noqa: BLE001 + pass +# back-compat aliases used elsewhere +_OI_KIND = _OI["kind"]; _OI_INPUT = _OI["input"]; _OI_OUTPUT = _OI["output"]; _OI_MODEL = _OI["model"] + + +def _provider_for(model_id: str) -> str: + """Best-effort provider label from a model id (for the trace 'provider').""" + m = (model_id or "").lower() + if m.startswith("nvidia/") or "nemotron" in m or "nemo" in m: + return "nvidia" + if "minicpm" in m or m.startswith("openbmb/"): + return "openbmb" + if "falconsai" in m or "nsfw" in m: + return "falconsai" + if "/" in m: + return m.split("/", 1)[0] + return "local" + + +def _count_tokens(text: str) -> int: + """Real token count using the caption model's tokenizer when available; + otherwise a clearly-approximate word-based estimate.""" + text = text or "" + if not text: + return 0 + tok = _caption_state.get("tokenizer") if isinstance(_caption_state, dict) else None + if tok is not None: + try: + return len(tok.encode(text)) + except Exception: # noqa: BLE001 + try: + return len(tok(text)["input_ids"]) + except Exception: # noqa: BLE001 + pass + return int(round(len(text.split()) / 0.75)) + + + +class traced: + """Context manager that times a model call, records it to the local buffer, + and emits an OpenTelemetry span (OpenInference 'LLM' kind) to Phoenix. + + Usage: + with traced("autocaption", model=MODEL_ID, file="x.jpg", + meta={"prompt": p}) as t: + ... + t.set_output(text) + """ + + def __init__(self, name, model="", file="", meta=None, invocation=None, system=""): + self.name = name + self.model = model + self.file = file + self.meta = meta or {} + self.invocation = invocation or {} # llm.invocation_parameters + self.system = system # llm.system (system prompt, if any) + self.output = None + self.finish_reason = "stop" + self.error = None + self._t0 = None + self._span_cm = None + self._span = None + self.trace_id = "" + self.span_id = "" + + def __enter__(self): + self._t0 = time.time() + tracer = _get_tracer() + if tracer is not None: + try: + self._span_cm = tracer.start_as_current_span(f"sozai.{self.name}") + self._span = self._span_cm.__enter__() + self._span.set_attribute(_OI["kind"], "LLM") + if self.model: + self._span.set_attribute(_OI["model"], self.model) + self._span.set_attribute(_OI["provider"], _provider_for(self.model)) + if self.system: + self._span.set_attribute(_OI["system"], str(self.system)[:1000]) + if self.invocation: + try: + self._span.set_attribute(_OI["invocation"], json.dumps(self.invocation)[:1000]) + except Exception: # noqa: BLE001 + pass + if self.file: + self._span.set_attribute("sozai.file", self.file) + # input value + mime for Phoenix display + try: + self._span.set_attribute(_OI["input"], json.dumps({"file": self.file, **self.meta})[:2000]) + self._span.set_attribute(_OI["input_mime"], "application/json") + except Exception: # noqa: BLE001 + pass + for k, v in self.meta.items(): + try: + self._span.set_attribute(f"sozai.{k}", str(v)[:500]) + except Exception: # noqa: BLE001 + pass + # capture the OTel trace/span ids so the in-app view can show them + try: + ctx = self._span.get_span_context() + self.trace_id = format(ctx.trace_id, "032x") + self.span_id = format(ctx.span_id, "016x") + except Exception: # noqa: BLE001 + pass + except Exception as exc: # noqa: BLE001 + print(f"[otel] span start failed: {exc}") + self._span = None + if not self.span_id: + self.span_id = uuid.uuid4().hex[:16] + if not self.trace_id: + self.trace_id = uuid.uuid4().hex + return self + + def set_output(self, output, finish_reason="stop"): + self.output = output + self.finish_reason = finish_reason + + def __exit__(self, exc_type, exc, tb): + t_end = time.time() + dur_ms = round((t_end - self._t0) * 1000.0, 1) if self._t0 else None + if exc is not None: + self.error = f"{exc_type.__name__}: {exc}" if exc_type else str(exc) + self.finish_reason = "error" + try: + input_payload = json.dumps({"file": self.file, **self.meta}) + except Exception: # noqa: BLE001 + input_payload = str({"file": self.file, **self.meta}) + out_str = str(self.output) if self.output is not None else "" + # real token counts via the model tokenizer when available, else estimate + tok_in = _count_tokens(input_payload) + tok_out = _count_tokens(out_str) + tok_total = tok_in + tok_out + tokens_per_sec = round(tok_out / (dur_ms / 1000.0), 1) if (dur_ms and tok_out) else 0 + provider = _provider_for(self.model) + _record_trace({ + "id": self.span_id, + "span_id": self.span_id, + "trace_id": self.trace_id, + "name": self.name, + "kind": "LLM", + "model": self.model, + "provider": provider, + "system": (str(self.system)[:400] if self.system else None), + "invocation": (self.invocation or None), + "finish_reason": self.finish_reason, + "file": self.file, + "meta": self.meta, + "input": input_payload[:2000], + "input_mime": "application/json", + "output": (out_str[:2000] if out_str else None), + "output_mime": "text/plain", + "error": self.error, + "duration_ms": dur_ms, + "started": self._t0, + "ended": t_end, + "tokens_in": tok_in, + "tokens_out": tok_out, + "tokens_total": tok_total, + "tokens_per_sec": tokens_per_sec, + "cost_usd": 0.0, # local open-source models β€” no API cost + "status": "error" if self.error else "ok", + }) + if self._span is not None: + try: + if self.output is not None: + self._span.set_attribute(_OI["output"], str(self.output)[:2000]) + self._span.set_attribute(_OI["output_mime"], "text/plain") + self._span.set_attribute(_OI["finish"], self.finish_reason) + if dur_ms is not None: + self._span.set_attribute("sozai.duration_ms", dur_ms) + self._span.set_attribute(_OI["tok_prompt"], tok_in) + self._span.set_attribute(_OI["tok_completion"], tok_out) + self._span.set_attribute(_OI["tok_total"], tok_total) + if self.error: + try: + from opentelemetry.trace import Status, StatusCode + self._span.set_status(Status(StatusCode.ERROR, self.error)) + except Exception: # noqa: BLE001 + pass + self._span.set_attribute("sozai.error", self.error) + except Exception: # noqa: BLE001 + pass + try: + self._span_cm.__exit__(exc_type, exc, tb) + except Exception: # noqa: BLE001 + pass + return False # never suppress exceptions + + +@app.get("/api/trace") +def get_trace(limit: int = 50): + """Return recent model-call traces plus summary stats for the in-app trace + view. Distributed traces also go to the in-process Phoenix UI.""" + tracer_ok = _get_tracer() is not None + with _trace_lock: + all_items = list(_trace_buffer) + items = _trace_buffer[-max(1, min(limit, _TRACE_MAX)):] + + # aggregate stats across everything in the buffer + total = len(all_items) + errors = sum(1 for e in all_items if e.get("status") == "error") + durations = [e["duration_ms"] for e in all_items if isinstance(e.get("duration_ms"), (int, float)) and e.get("duration_ms")] + avg_ms = round(sum(durations) / len(durations), 1) if durations else 0 + + def _pct(sorted_vals, q): + if not sorted_vals: + return 0 + return round(sorted_vals[min(len(sorted_vals) - 1, int(len(sorted_vals) * q))], 1) + s = sorted(durations) + p50_ms, p95_ms, p99_ms = _pct(s, 0.50), _pct(s, 0.95), _pct(s, 0.99) + + tokens_prompt = sum(int(e.get("tokens_in") or 0) for e in all_items) + tokens_completion = sum(int(e.get("tokens_out") or 0) for e in all_items) + tokens_total = tokens_prompt + tokens_completion + tps_vals = [e["tokens_per_sec"] for e in all_items if isinstance(e.get("tokens_per_sec"), (int, float)) and e.get("tokens_per_sec")] + avg_tps = round(sum(tps_vals) / len(tps_vals), 1) if tps_vals else 0 + cost_total = round(sum(float(e.get("cost_usd") or 0) for e in all_items), 4) + + by_type: dict = {} + by_kind: dict = {} + for e in all_items: + nm = e.get("name", "?") + b = by_type.setdefault(nm, {"count": 0, "errors": 0, "dur": [], "tok": 0}) + b["count"] += 1 + if e.get("status") == "error": + b["errors"] += 1 + if isinstance(e.get("duration_ms"), (int, float)) and e.get("duration_ms"): + b["dur"].append(e["duration_ms"]) + b["tok"] += int(e.get("tokens_total") or 0) + k = e.get("kind", "LLM") + by_kind[k] = by_kind.get(k, 0) + 1 + by_type_out = { + nm: { + "count": b["count"], + "errors": b["errors"], + "avg_ms": round(sum(b["dur"]) / len(b["dur"]), 1) if b["dur"] else 0, + "tokens": b["tok"], + } + for nm, b in by_type.items() + } + + return { + "phoenix": tracer_ok, + "phoenix_url": "/phoenix/" if _phoenix_session is not None else None, + "phoenix_direct": _phoenix_session_url() if _phoenix_session is not None else None, + "endpoint": PHOENIX_ENDPOINT if tracer_ok else None, + "project": PHOENIX_PROJECT, + "stats": { + "total": total, + "errors": errors, + "error_rate": round(errors / total, 3) if total else 0, + "avg_ms": avg_ms, + "p50_ms": p50_ms, + "p95_ms": p95_ms, + "p99_ms": p99_ms, + "tokens_total": tokens_total, + "tokens_prompt": tokens_prompt, + "tokens_completion": tokens_completion, + "avg_tokens_per_sec": avg_tps, + "cost_usd": cost_total, + "by_type": by_type_out, + "by_kind": by_kind, + }, + "events": list(reversed(items)), # newest first for display + } + + +# --- Same-origin reverse proxy for the embedded Phoenix UI ------------------ # +# Phoenix runs in-process on its own port (6006). To embed it in an iframe +# without cross-origin / X-Frame-Options problems, we proxy it under /phoenix/ +# on the app's own origin. Frame-blocking headers are stripped on the way back. +import urllib.request as _urlreq +import urllib.error as _urlerr + +_HOP_BY_HOP = { + "content-encoding", "content-length", "transfer-encoding", "connection", + "keep-alive", "proxy-authenticate", "proxy-authorization", "te", "trailers", + "upgrade", "x-frame-options", "content-security-policy", +} + + +_PHX_PREFIX = "/phoenix" + + +def _rewrite_phoenix_body(data: bytes, ctype: str) -> bytes: + """Phoenix's SPA references assets/APIs with root-absolute paths + (/assets/..., /graphql, /v1/...). Served under /phoenix/, those would + resolve against the app origin and 404 β€” leaving the iframe blank. Rewrite + HTML and JS so everything stays under the proxy prefix.""" + is_html = "text/html" in ctype + is_js = ("javascript" in ctype) or ("text/css" in ctype) + if not (is_html or is_js): + return data + try: + text = data.decode("utf-8") + except Exception: # noqa: BLE001 + return data # binary; leave untouched + + if is_html: + # 1) a so relative URLs resolve under /phoenix/ + if "]*>)", r'\1', + text, count=1, flags=re.IGNORECASE) + # 2) prefix root-absolute attribute URLs: href="/x" src="/x" + # (skip protocol-relative //, data:, and already-prefixed /phoenix) + text = re.sub(r'(\b(?:href|src)=")/(?!/|phoenix/)', + r"\1" + _PHX_PREFIX + "/", text) + + # 3) prefix root-absolute paths used in JS/CSS (fetch, websocket, url()). + # Phoenix hits "/graphql", "/v1/...", "/arize_phoenix_version", etc. + for p in ("/graphql", "/v1/", "/arize_phoenix_version", "/exports", + "/assets/", "/healthz", "/readyz"): + # in quotes: "/graphql" '/v1/...' + text = text.replace('"' + p, '"' + _PHX_PREFIX + p) + text = text.replace("'" + p, "'" + _PHX_PREFIX + p) + # css url(/assets/...) + text = text.replace("(" + p, "(" + _PHX_PREFIX + p) + return text.encode("utf-8") + + +async def _phoenix_proxy(request: Request, path: str): + base = _phoenix_session_url().rstrip("/") + target = base + "/" + path + if request.url.query: + target += "?" + request.url.query + body = await request.body() + method = request.method + headers = {k: v for k, v in request.headers.items() + if k.lower() not in ("host", "content-length", "accept-encoding")} + headers["accept-encoding"] = "identity" + req = _urlreq.Request(target, data=(body or None), method=method, headers=headers) + try: + with _urlreq.urlopen(req, timeout=30) as resp: + data = resp.read() + status = resp.status + ctype = resp.headers.get("Content-Type", "application/octet-stream") + out_headers = {} + for k, v in resp.headers.items(): + if k.lower() in _HOP_BY_HOP: + continue + out_headers[k] = v + data = _rewrite_phoenix_body(data, ctype) + return Response(content=data, status_code=status, media_type=ctype, headers=out_headers) + except _urlerr.HTTPError as e: + try: + err_body = e.read() + except Exception: # noqa: BLE001 + err_body = b"" + return Response(content=err_body, status_code=e.code, + media_type=e.headers.get("Content-Type", "text/plain")) + except Exception as exc: # noqa: BLE001 + return Response(content=f"Phoenix UI not reachable: {exc}".encode(), + status_code=502, media_type="text/plain") + + +@app.get("/phoenix") +@app.get("/phoenix/") +async def phoenix_root(request: Request): + return await _phoenix_proxy(request, "") + + +@app.get("/phoenix/{path:path}") +async def phoenix_proxy_get(request: Request, path: str): + return await _phoenix_proxy(request, path) + + +@app.post("/phoenix/{path:path}") +async def phoenix_proxy_post(request: Request, path: str): + return await _phoenix_proxy(request, path) + + +# Cesium ion access token. NEVER hardcode this in the HTML β€” it is read from +# the environment so it can be rotated without touching the frontend. Set it +# with: export SOZAI_CESIUM_ION_TOKEN="your-token" (or put it in a .env file). +from dotenv import load_dotenv +load_dotenv() +CESIUM_ION_TOKEN = os.environ.get("SOZAI_CESIUM_ION_TOKEN", "") + + +@app.get("/api/config") +def client_config(): + """Public, non-secret-ish runtime config for the frontend (e.g. whether a + Cesium ion token is configured, and the token itself if so). The token is + only as protected as the page that needs it; keeping it server-side env-only + means it can be rotated in one place.""" + import platform + return { + "cesiumIonToken": CESIUM_ION_TOKEN, + "cesiumEnabled": bool(CESIUM_ION_TOKEN), + "nsfwEnabled": True, # the gate always runs (open if model absent) + "asrEnabled": True, # the endpoint always exists (may be unavailable) + "asrModel": ASR_MODEL_ID, + "asrOsSupported": platform.system().lower() == "linux", + "asrLanguages": ASR_LANGUAGE_CHOICES, + "asrProfiles": list(ASR_CHUNK_PROFILES.keys()), + "asrDefaultProfile": ASR_DEFAULT_PROFILE, + "captionModel": AUTOCAPTION_MODEL_ID, + # "Proceed to Development" watercolour: the endpoint always exists; this + # only reports whether torch/diffusers are present (a CUDA-free check β€” + # the LoRA is optional, stage 1 runs base img2img). The ~14 GB pipeline + # still builds lazily on first use inside the GPU worker. + "img2imgEnabled": _img2img_prep(), + "img2imgModel": IMG2IMG_MODEL_ID, + "phoenix": _get_tracer() is not None, + } + + +# --------------------------------------------------------------------------- # +# NSFW image gate (item 1). Falconsai/nsfw_image_detection via transformers. +# If transformers/torch/model are missing, the gate is OPEN (score 0.0) so +# uploads are never blocked by a missing optional dependency. +# --------------------------------------------------------------------------- # +NSFW_THRESHOLD = float(os.environ.get("SOZAI_NSFW_THRESHOLD", "0.80")) +NSFW_MODEL_ID = "Falconsai/nsfw_image_detection" +_nsfw_lock = threading.Lock() +_nsfw_state = {"loaded": False, "pipe": None, "available": False} + + +def _get_nsfw_pipe(): + """Check that the NSFW classifier CAN be built, without initializing CUDA in + the main process (forbidden on ZeroGPU). This only verifies the import + + that transformers is present; the actual pipeline is constructed lazily + inside the @spaces.GPU worker by _ensure_nsfw_pipe(). Returns True when the + gate is available, None/False when it can't be (gate then fails OPEN).""" + if _nsfw_state["loaded"]: + return _nsfw_state["available"] + with _nsfw_lock: + if _nsfw_state["loaded"]: + return _nsfw_state["available"] + try: + import transformers # noqa: F401 (import check only β€” no CUDA here) + _nsfw_state["available"] = True + except Exception as exc: # noqa: BLE001 + print(f"[nsfw] transformers unavailable, gate open: {exc}") + _nsfw_state["available"] = False + finally: + _nsfw_state["loaded"] = True + return _nsfw_state["available"] + + +_nsfw_build_lock = threading.Lock() + + +def _ensure_nsfw_pipe(): + """Build (once) and return the transformers image-classification pipeline. + MUST run inside a @spaces.GPU context on ZeroGPU so CUDA initializes with a + GPU attached. Idempotent + thread-safe; caches into _nsfw_state. Returns the + pipeline, or None on failure (caller then treats the image as safe).""" + pipe = _nsfw_state.get("pipe") + if pipe is not None: + return pipe + with _nsfw_build_lock: + pipe = _nsfw_state.get("pipe") + if pipe is not None: + return pipe + try: + from transformers import pipeline + import torch + device = 0 if torch.cuda.is_available() else -1 + pipe = pipeline("image-classification", model=NSFW_MODEL_ID, device=device) + _nsfw_state["pipe"] = pipe + print(f"[nsfw] classifier built in worker (device={'cuda' if device == 0 else 'cpu'})") + return pipe + except Exception as exc: # noqa: BLE001 + print(f"[nsfw] classifier build failed, gate open: {exc}") + return None + + +@spaces.GPU(duration=30) +def _nsfw_infer(img): + """Score one PIL image for NSFW. Builds/uses the pipeline INSIDE this + @spaces.GPU context so CUDA is only touched with a GPU attached. The image + (picklable) crosses the boundary, never the model.""" + pipe = _ensure_nsfw_pipe() + if pipe is None: + return [] + return pipe(img.convert("RGB")) + + +def _nsfw_score_for(path_or_pil) -> float: + if not _get_nsfw_pipe(): + return 0.0 + try: + from PIL import Image + img = path_or_pil if hasattr(path_or_pil, "convert") else Image.open(path_or_pil) + for r in _nsfw_infer(img): + if str(r["label"]).lower() == "nsfw": + return float(r["score"]) + except Exception as exc: # noqa: BLE001 + print(f"[nsfw] scoring failed (treating as safe): {exc}") + return 0.0 + + +@app.api(name="nsfw_check") +def nsfw_check(image_path: str = "") -> dict: + """Score an uploaded image for NSFW content. Returns {score, blocked, + threshold, available}. Fails OPEN (never blocks) if the model is absent.""" + fp = _resolve_image_for_model(image_path) or image_path + available = bool(_get_nsfw_pipe()) + with traced("nsfw_check", model=NSFW_MODEL_ID, file=os.path.basename(image_path or "")) as t: + score = _nsfw_score_for(fp) if available else 0.0 + t.set_output({"score": round(score, 4)}) + return { + "score": round(score, 4), + "blocked": bool(score >= NSFW_THRESHOLD), + "threshold": NSFW_THRESHOLD, + "available": available, + } + + +@app.post("/api/nsfw") +async def nsfw_rest(request: Request): + """NSFW gate for client uploads sent as a base64 data URL. + Body: {data_url: "data:image/...;base64,...", name: "file.jpg"}. + Fails OPEN on any error so a missing model never blocks uploads.""" + import base64 + try: + body = await request.json() + except Exception: # noqa: BLE001 + return {"score": 0.0, "blocked": False, "available": bool(_get_nsfw_pipe()), "error": "bad request"} + data_url = (body or {}).get("data_url", "") + name = (body or {}).get("name", "upload") + available = bool(_get_nsfw_pipe()) + if not available or not data_url: + return {"score": 0.0, "blocked": False, "threshold": NSFW_THRESHOLD, "available": available} + try: + b64 = data_url.split(",", 1)[1] if "," in data_url else data_url + raw = base64.b64decode(b64) + from PIL import Image + img = Image.open(io.BytesIO(raw)) + with traced("nsfw_check", model=NSFW_MODEL_ID, file=str(name)[:60]) as t: + score = _nsfw_score_for(img) + t.set_output({"score": round(score, 4)}) + return {"score": round(score, 4), "blocked": bool(score >= NSFW_THRESHOLD), + "threshold": NSFW_THRESHOLD, "available": True} + except Exception as exc: # noqa: BLE001 + print(f"[nsfw] rest scoring failed (treating as safe): {exc}") + return {"score": 0.0, "blocked": False, "threshold": NSFW_THRESHOLD, "available": available, "error": str(exc)} + + +# --------------------------------------------------------------------------- # +# Develop β†’ watercolour via Flux.2-klein + a scene LoRA (in-process img2img). +# This is what "Proceed to Development" triggers: each photo is sent here and +# painted into a watercolour by Flux2KleinPipeline (the source is VAE-encoded +# and used as reference conditioning while the LoRA steers the watercolour +# style). +# +# ZeroGPU port notes (mirrors the caption/NSFW/ASR helpers in this file): +# * The pipeline is ~14 GB and lives ONLY on the GPU, so it must be built +# INSIDE a @spaces.GPU context β€” never in the main process, where CUDA must +# stay un-initialized. `_img2img_prep()` does the CUDA-free part (import + +# LoRA file check) so /config and the endpoint can report availability +# cheaply; `_ensure_img2img_pipe()` does the actual GPU build, lazily, the +# first time `_img2img_infer` runs in a worker. +# * @spaces.GPU pickles arguments to/from the worker. The Flux pipe is NOT +# picklable, so it is fetched from module state inside the worker and never +# crosses the boundary. Only the PIL image in and the PIL image out cross +# it (both picklable), exactly like `_nsfw_infer`. +# * This file is self-contained on the Space (no backend/ package), so the +# squaring + load + stylize logic from backend/hf/3_infer_img2img.py is +# inlined here rather than imported. +# +# STAGED ROLLOUT: the scene LoRA is OPTIONAL. Stage 1 (now) is "pure img2img" β€” +# the base Flux2Klein model develops the photo with a generic watercolour prompt, +# no .safetensors required. Stage 2 is dropping the LoRA file in (or setting +# SOZAI_IMG2IMG_LORA_REPO): it's detected automatically and the trained +# watercolour style + trigger prompt switch on. So a missing LoRA degrades to +# base img2img rather than disabling the feature. +# +# Fails CLOSED (available=false) only when torch/diffusers are absent, so a CPU +# Space or local Mac keeps the original photo instead of erroring/OOMing. +# --------------------------------------------------------------------------- # +IMG2IMG_MODEL_ID = os.environ.get("SOZAI_IMG2IMG_MODEL", "black-forest-labs/FLUX.2-klein-4B") +# Path to the watercolour scene LoRA .safetensors. OPTIONAL: ship the file in the +# repo at this path, or point SOZAI_IMG2IMG_LORA_REPO/_FILE at a Hub repo to have +# it downloaded (CPU/network only) at prep time. Absent = base img2img (stage 1). +IMG2IMG_LORA_PATH = os.environ.get( + "SOZAI_IMG2IMG_LORA", + os.path.join(BASE, "data/places/checkpoints/hf-spaces/scene_lora.safetensors"), +) +IMG2IMG_LORA_REPO = os.environ.get("SOZAI_IMG2IMG_LORA_REPO", "") +IMG2IMG_LORA_FILE = os.environ.get("SOZAI_IMG2IMG_LORA_FILE", "scene_lora.safetensors") +IMG2IMG_LORA_SCALE = float(os.environ.get("SOZAI_IMG2IMG_LORA_SCALE", "1.0")) +# Generation defaults (from backend/hf/3_infer_img2img.py). +IMG2IMG_TRIGGER = "wtrclr8" +# Prompt used WITH the LoRA (its trigger token), vs. the base-model fallback used +# in stage 1 when no LoRA is loaded β€” the trigger token means nothing without it. +IMG2IMG_PROMPT = os.environ.get("SOZAI_IMG2IMG_PROMPT", "WTRCLR8 watercolour painting") +IMG2IMG_BASE_PROMPT = os.environ.get( + "SOZAI_IMG2IMG_BASE_PROMPT", + "a soft watercolour painting of this scene, painterly, textured paper, gentle washes", +) +IMG2IMG_SIZE = int(os.environ.get("SOZAI_IMG2IMG_SIZE", "1024")) +IMG2IMG_STEPS = int(os.environ.get("SOZAI_IMG2IMG_STEPS", "8")) +IMG2IMG_GUIDANCE = float(os.environ.get("SOZAI_IMG2IMG_GUIDANCE", "3.5")) +IMG2IMG_SEED = int(os.environ.get("SOZAI_IMG2IMG_SEED", "42")) +_img2img_lock = threading.Lock() +_img2img_state = {"loaded": False, "available": False, "pipe": None, + "lora_path": None, "lora_loaded": False} + + +def _img2img_prep() -> bool: + """CUDA-free availability check, run in the main process. Verifies diffusers + (with Flux2KleinPipeline) imports; the LoRA is OPTIONAL β€” if a file is present + (or downloadable via SOZAI_IMG2IMG_LORA_REPO) its path is cached for stage 2, + otherwise we fall back to base img2img. Does NOT touch CUDA or build the + pipeline. Returns True whenever the base feature can run in a GPU worker.""" + if _img2img_state["loaded"]: + return _img2img_state["available"] + with _img2img_lock: + if _img2img_state["loaded"]: + return _img2img_state["available"] + try: + import torch # noqa: F401 (import check only β€” no CUDA here) + from diffusers import Flux2KleinPipeline # noqa: F401 + # Resolve the LoRA if we can, but its absence is NOT fatal. + lora_path = IMG2IMG_LORA_PATH if (IMG2IMG_LORA_PATH and + os.path.isfile(IMG2IMG_LORA_PATH)) else None + if lora_path is None and IMG2IMG_LORA_REPO: + try: + from huggingface_hub import hf_hub_download + lora_path = hf_hub_download(repo_id=IMG2IMG_LORA_REPO, + filename=IMG2IMG_LORA_FILE) + except Exception as lexc: # noqa: BLE001 + print(f"[img2img] LoRA download skipped ({lexc}); using base model") + lora_path = None + _img2img_state["lora_path"] = lora_path + _img2img_state["available"] = True + print(f"[img2img] available ({IMG2IMG_MODEL_ID}; " + f"LoRA={lora_path or 'none β€” base img2img (stage 1)'}); " + f"pipeline will build on first use inside the GPU worker") + except Exception as exc: # noqa: BLE001 + print(f"[img2img] unavailable, endpoint will report disabled: {exc}") + _img2img_state["available"] = False + finally: + _img2img_state["loaded"] = True + return _img2img_state["available"] + + +_img2img_build_lock = threading.Lock() + + +def _ensure_img2img_pipe(): + """Build (once) and return the Flux2KleinPipeline on the GPU, applying the + watercolour LoRA only if one was resolved (stage 2); otherwise it's plain + base img2img (stage 1). MUST be called from inside a @spaces.GPU context on + ZeroGPU so the CUDA context is created with a GPU attached. Idempotent + + thread-safe; caches into _img2img_state. Returns the pipe, or None on failure + (caller falls back).""" + pipe = _img2img_state.get("pipe") + if pipe is not None: + return pipe + with _img2img_build_lock: + pipe = _img2img_state.get("pipe") + if pipe is not None: + return pipe + try: + import torch + from diffusers import Flux2KleinPipeline + try: + from pillow_heif import register_heif_opener + register_heif_opener() # so HEIC/HEIF phone photos open + except Exception: # noqa: BLE001 + pass + lora_path = _img2img_state.get("lora_path") + device = "cuda" if torch.cuda.is_available() else "cpu" + print(f"[img2img] building {IMG2IMG_MODEL_ID} on {device} " + f"({'with LoRA' if lora_path else 'base, no LoRA'}) …") + pipe = Flux2KleinPipeline.from_pretrained( + IMG2IMG_MODEL_ID, torch_dtype=torch.bfloat16 + ).to(device) + if lora_path and os.path.isfile(lora_path): + from pathlib import Path as _Path + lf = _Path(lora_path) + pipe.load_lora_weights(str(lf.parent), weight_name=lf.name, + adapter_name=IMG2IMG_TRIGGER) + pipe.set_adapters([IMG2IMG_TRIGGER], adapter_weights=[IMG2IMG_LORA_SCALE]) + _img2img_state["lora_loaded"] = True + print("[img2img] pipeline ready (watercolour LoRA applied)") + else: + _img2img_state["lora_loaded"] = False + print("[img2img] pipeline ready (base model β€” stage 1, no LoRA)") + _img2img_state["pipe"] = pipe + return pipe + except Exception as exc: # noqa: BLE001 + print(f"[img2img] in-worker build failed: {exc}") + return None + + +def _img2img_square(img, size: int = IMG2IMG_SIZE): + """EXIF-normalise, flatten to RGB, and centre-crop a PIL image to sizeΓ—size β€” + the shape Klein expects (inlined from backend/hf/3_infer_img2img.py).""" + from PIL import Image as PILImage, ImageOps + src = ImageOps.exif_transpose(img).convert("RGB") + w, h = src.size + s = min(w, h) + src = src.crop(((w - s) // 2, (h - s) // 2, (w + s) // 2, (h + s) // 2)) + return src.resize((size, size), PILImage.LANCZOS) + + +@spaces.GPU(duration=120) +def _img2img_infer(src): + """Develop one PIL photo into a watercolour PIL image, inside a @spaces.GPU + context. Builds/reuses the pipeline here (never in the main process, never + pickled across the boundary). `src` and the returned image are PIL (both + picklable), the only things that cross the GPU boundary. Generous duration + because the FIRST call also pays the ~14 GB cold load; later calls reuse the + cached pipe and are fast.""" + import torch + pipe = _ensure_img2img_pipe() + if pipe is None: + raise RuntimeError("img2img pipeline could not be initialized") + sq = _img2img_square(src, size=IMG2IMG_SIZE) + # Trigger-token prompt only makes sense once the LoRA is loaded; otherwise + # use the generic base-model watercolour prompt (stage 1). + prompt = IMG2IMG_PROMPT if _img2img_state.get("lora_loaded") else IMG2IMG_BASE_PROMPT + device = getattr(pipe, "device", None) + generator = torch.Generator( + str(device) if device is not None else "cuda" + ).manual_seed(IMG2IMG_SEED) + result = pipe( + prompt=prompt, + image=sq, + height=IMG2IMG_SIZE, + width=IMG2IMG_SIZE, + num_inference_steps=IMG2IMG_STEPS, + guidance_scale=IMG2IMG_GUIDANCE, + generator=generator, + ) + return result.images[0] + + +def _pil_to_data_url(img, fmt: str = "PNG") -> str: + import base64 + buf = io.BytesIO() + img.save(buf, format=fmt) + b64 = base64.b64encode(buf.getvalue()).decode("ascii") + return f"data:image/{fmt.lower()};base64,{b64}" + + +@app.post("/api/img2img") +async def img2img_rest(request: Request): + """Develop one uploaded photo into a watercolour painting. + Body: {data_url: "data:image/...;base64,...", name?: str}. + Returns {available, image: , model}. When the pipeline can't + run on this host it returns {available: false, image: null} so the caller can + keep the original photo rather than treating it as an error.""" + import base64 + if not _img2img_prep(): + return {"available": False, "image": None, "model": IMG2IMG_MODEL_ID} + try: + body = await request.json() + except Exception: # noqa: BLE001 + raise HTTPException(status_code=400, detail="invalid JSON body") + data_url = (body or {}).get("data_url", "") + name = str((body or {}).get("name", "upload"))[:60] + if not data_url: + raise HTTPException(status_code=400, detail="missing data_url") + try: + b64 = data_url.split(",", 1)[1] if "," in data_url else data_url + raw = base64.b64decode(b64) + from PIL import Image + src = Image.open(io.BytesIO(raw)) + with traced("img2img", model=IMG2IMG_MODEL_ID, file=name) as t: + out = _img2img_infer(src) + t.set_output({"size": list(out.size)}) + return {"available": True, "image": _pil_to_data_url(out), "model": IMG2IMG_MODEL_ID} + except HTTPException: + raise + except Exception as exc: # noqa: BLE001 + print(f"[img2img] generation failed: {exc}") + raise HTTPException(status_code=500, detail=str(exc)) + + +# --------------------------------------------------------------------------- # +# Voice β†’ text via NVIDIA NeMo ASR (item 5). Streaming Nemotron model; needs a +# GPU to be practical. Loaded lazily; if NeMo/torch/GPU are missing the endpoint +# returns {available: false} so the UI can show a graceful message. +# --------------------------------------------------------------------------- # +ASR_MODEL_ID = os.environ.get("SOZAI_ASR_MODEL", "nvidia/nemotron-3.5-asr-streaming-0.6b") +ASR_SAMPLE_RATE = 16_000 +_asr_lock = threading.Lock() +_asr_state = {"loaded": False, "model": None, "unsupported_os": False} + +# --- ported from the reference Nemotron Spaces app.py (working logic) ------- # +# Cache-aware streaming "lookahead" contexts. Larger = more accurate, higher +# latency. Keys are shown in the UI; values are [left, right] att_context_size. +ASR_CHUNK_PROFILES = { + "Lowest latency - 80 ms": [56, 0], + "Fast - 160 ms": [56, 1], + "Balanced - 320 ms": [56, 3], + "Accurate - 560 ms": [56, 6], + "Most accurate - 1.12 s": [56, 13], +} +ASR_DEFAULT_PROFILE = "Most accurate - 1.12 s" # default per spec + +# Ordered (label, value) choices for the UI language picker. +ASR_LANGUAGE_CHOICES = [ + ["Auto-detect", "auto"], ["Arabic", "ar-AR"], ["Bulgarian", "bg-BG"], + ["Croatian", "hr-HR"], ["Czech", "cs-CZ"], ["Danish", "da-DK"], + ["Dutch", "nl-NL"], ["English (UK)", "en-GB"], ["English (US)", "en-US"], + ["Estonian", "et-EE"], ["Finnish", "fi-FI"], ["French (Canada)", "fr-CA"], + ["French (France)", "fr-FR"], ["German", "de-DE"], ["Greek", "el-GR"], + ["Hebrew", "he-IL"], ["Hindi", "hi-IN"], ["Hungarian", "hu-HU"], + ["Italian", "it-IT"], ["Japanese", "ja-JP"], ["Korean", "ko-KR"], + ["Latvian", "lv-LV"], ["Lithuanian", "lt-LT"], ["Maltese", "mt-MT"], + ["Mandarin", "zh-CN"], ["Norwegian Bokmal", "nb-NO"], ["Norwegian Nynorsk", "nn-NO"], + ["Polish", "pl-PL"], ["Portuguese (Brazil)", "pt-BR"], ["Portuguese (Portugal)", "pt-PT"], + ["Romanian", "ro-RO"], ["Russian", "ru-RU"], ["Slovak", "sk-SK"], + ["Slovenian", "sl-SI"], ["Spanish (Spain)", "es-ES"], ["Spanish (US)", "es-US"], + ["Swedish", "sv-SE"], ["Thai", "th-TH"], ["Turkish", "tr-TR"], + ["Ukrainian", "uk-UA"], ["Vietnamese", "vi-VN"], +] + +# 40 supported language-locales (value sent to set_inference_prompt). "auto" +# lets the model auto-detect. +ASR_LANGUAGE_CODES = { + "auto", "ar-AR", "bg-BG", "hr-HR", "cs-CZ", "da-DK", "nl-NL", "en-GB", + "en-US", "et-EE", "fi-FI", "fr-CA", "fr-FR", "de-DE", "el-GR", "he-IL", + "hi-IN", "hu-HU", "it-IT", "ja-JP", "ko-KR", "lv-LV", "lt-LT", "mt-MT", + "zh-CN", "nb-NO", "nn-NO", "pl-PL", "pt-BR", "pt-PT", "ro-RO", "ru-RU", + "sk-SK", "sl-SI", "es-ES", "es-US", "sv-SE", "th-TH", "tr-TR", "uk-UA", + "vi-VN", +} + + +def _asr_os_supported() -> bool: + """NeMo / Nemotron streaming ASR is only supported on Linux. On macOS and + Windows the dependency stack (and ZeroGPU pathways) don't work, so we report + 'not supported' rather than attempting a load that will error out.""" + import platform + return platform.system().lower() == "linux" + + +def _get_asr_model(): + if _asr_state["loaded"]: + return _asr_state["model"] + with _asr_lock: + if _asr_state["loaded"]: + return _asr_state["model"] + try: + if not _asr_os_supported(): + import platform + print(f"[asr] Nemotron is not supported on {platform.system()} " + f"(Linux only); ASR disabled.") + _asr_state["model"] = None + _asr_state["unsupported_os"] = True + else: + import nemo.collections.asr as nemo_asr + import torch + torch.set_grad_enabled(False) + torch.set_float32_matmul_precision("high") + # Load on CPU at process start. On ZeroGPU the GPU isn't attached + # yet, so the model must be created on CPU here and only moved to + # cuda INSIDE the @spaces.GPU call (see _asr_run). map_location + + # explicit .to("cpu") keep all weight init on CPU. + model = nemo_asr.models.ASRModel.from_pretrained( + model_name=ASR_MODEL_ID, + map_location=torch.device("cpu"), + ) + # Configure greedy RNNT/CTC decoding for cache-aware streaming, + # mirroring the reference Spaces app so conformer_stream_step works. + try: + from nemo.collections.asr.parts.submodules.ctc_decoding import CTCDecodingConfig + from nemo.collections.asr.parts.submodules.rnnt_decoding import RNNTDecodingConfig + if hasattr(model, "change_decoding_strategy") and hasattr(model, "decoding"): + if hasattr(model, "joint"): + decoding_cfg = RNNTDecodingConfig(fused_batch_size=-1) + decoding_cfg.greedy.use_cuda_graph_decoder = False + model.change_decoding_strategy(decoding_cfg) + else: + model.change_decoding_strategy(CTCDecodingConfig()) + except Exception as dexc: # noqa: BLE001 + print(f"[asr] decoding strategy setup skipped: {dexc}") + model = model.to(device="cpu", dtype=torch.float32) + model.eval() + _asr_state["model"] = model + except Exception as exc: # noqa: BLE001 + print(f"[asr] NeMo model unavailable: {exc}") + _asr_state["model"] = None + finally: + _asr_state["loaded"] = True + return _asr_state["model"] + + +def _prep_wav_16k_mono(src_path: str) -> str: + """Decode any uploaded audio to 16kHz mono WAV (what the ASR model expects).""" + import tempfile + out = tempfile.NamedTemporaryFile(delete=False, suffix=".wav") + out.close() + # Prefer soundfile+librosa; fall back to ffmpeg if present. + try: + import soundfile as sf + import numpy as np # noqa: F401 + try: + import librosa + audio, _sr = librosa.load(src_path, sr=16000, mono=True) + except Exception: + data, sr = sf.read(src_path) + if getattr(data, "ndim", 1) > 1: + data = data.mean(axis=1) + audio = data + if sr != 16000: + import numpy as np + # naive resample as a last resort + idx = (np.arange(int(len(audio) * 16000 / sr)) * sr / 16000).astype(int) + idx = idx[idx < len(audio)] + audio = audio[idx] + sf.write(out.name, audio, 16000, subtype="PCM_16") + return out.name + except Exception as exc: # noqa: BLE001 + # ffmpeg fallback + try: + import subprocess + subprocess.run(["ffmpeg", "-y", "-i", src_path, "-ar", "16000", "-ac", "1", out.name], + check=True, capture_output=True) + return out.name + except Exception as exc2: # noqa: BLE001 + print(f"[asr] audio prep failed: {exc} / {exc2}") + return src_path + + +def _detect_language(text: str) -> str: + """Best-effort language id of a transcript (graceful if langdetect absent).""" + text = (text or "").strip() + if not text: + return "" + try: + from langdetect import detect + return detect(text) + except Exception: # noqa: BLE001 + return "" + + +def _asr_configure(model, language: str, chunk_profile: str) -> None: + """Apply the chosen lookahead profile + language prompt to the model. + Ported from the reference Nemotron Spaces app.""" + att = ASR_CHUNK_PROFILES.get(chunk_profile, ASR_CHUNK_PROFILES[ASR_DEFAULT_PROFILE]) + if hasattr(model.encoder, "set_default_att_context_size"): + model.encoder.set_default_att_context_size(att_context_size=att) + lang = language if language in ASR_LANGUAGE_CODES else "auto" + if hasattr(model, "set_inference_prompt"): + try: + model.set_inference_prompt(lang) + if hasattr(model, "decoding") and hasattr(model.decoding, "set_strip_lang_tags"): + # auto mode emits a tag; strip it for a clean transcript + model.decoding.set_strip_lang_tags(True, lang_tag_pattern=None) + except Exception as exc: # noqa: BLE001 + print(f"[asr] inference-prompt setup skipped: {exc}") + + +def _asr_transcribe_stream(model, wav_path: str, language: str, chunk_profile: str) -> str: + """Cache-aware streaming transcription, ported from NVIDIA NeMo's + Apache-licensed streaming example (via the reference Spaces app.py). Returns + the final transcript text. Falls back to model.transcribe() on any issue.""" + import torch + from nemo.collections.asr.parts.utils.streaming_utils import CacheAwareStreamingAudioBuffer + from nemo.collections.asr.parts.utils.rnnt_utils import Hypothesis + + def _extract(hyps): + hyps = list(hyps) + if not hyps: + return [""] + if isinstance(hyps[0], Hypothesis): + return [h.text for h in hyps] + return [str(h) for h in hyps] + + def _drop_extra(step_num, pad_and_drop): + if step_num == 0 and not pad_and_drop: + return 0 + return model.encoder.streaming_cfg.drop_extra_pre_encoded + + _asr_configure(model, language, chunk_profile) + model_device = next(model.parameters()).device + + buf = CacheAwareStreamingAudioBuffer(model=model, online_normalization=False, + pad_and_drop_preencoded=False) + buf.append_audio_file(wav_path, stream_id=-1) + + cache_last_channel, cache_last_time, cache_last_channel_len = \ + model.encoder.get_initial_cache_state(batch_size=1) + previous_hypotheses = None + previous_pred_out = None + text = "" + for step_num, (chunk_audio, chunk_lengths) in enumerate(buf, start=1): + with torch.inference_mode(): + chunk_audio = chunk_audio.to(device=model_device, dtype=torch.float32) + chunk_lengths = chunk_lengths.to(device=model_device) + (previous_pred_out, transcribed_texts, cache_last_channel, cache_last_time, + cache_last_channel_len, previous_hypotheses) = model.conformer_stream_step( + processed_signal=chunk_audio, + processed_signal_length=chunk_lengths, + cache_last_channel=cache_last_channel, + cache_last_time=cache_last_time, + cache_last_channel_len=cache_last_channel_len, + keep_all_outputs=buf.is_buffer_empty(), + previous_hypotheses=previous_hypotheses, + previous_pred_out=previous_pred_out, + drop_extra_pre_encoded=_drop_extra(step_num - 1, False), + return_transcription=True, + ) + text = _extract(transcribed_texts)[0] + return (text or "").strip() + + +@spaces.GPU(duration=120) +def _asr_run(wav_path: str, language: str = "auto", + chunk_profile: str = ASR_DEFAULT_PROFILE) -> str: + """Transcribe one prepared 16k-mono wav. Tries the cache-aware streaming + path first (honors language + latency/accuracy profile); falls back to the + plain transcribe() API if streaming isn't available for this checkpoint. + + ZeroGPU specifics, mirroring NVIDIA's reference Nemotron Space: + * The model is fetched from module state HERE, not passed as an argument β€” + @spaces.GPU pickles arguments to the GPU worker, and we don't want to + ship the NeMo model across that boundary. + * The model lives on CPU between calls (loaded on CPU at startup). Inside + this @spaces.GPU context the GPU is attached, so we move it to cuda for + the call and back to cpu in `finally`, exactly like the reference app. + This is what keeps CUDA out of the main process. + """ + import torch + model = _asr_state.get("model") + if model is None: + return "" + device = "cuda" if torch.cuda.is_available() else "cpu" + if device == "cuda": + torch.backends.cuda.matmul.allow_tf32 = True + try: + model.to(device=device, dtype=torch.float32) + try: + return _asr_transcribe_stream(model, wav_path, language, chunk_profile) + except Exception as exc: # noqa: BLE001 + print(f"[asr] streaming path failed ({exc}); falling back to transcribe()") + try: + outputs = model.transcribe([wav_path]) + first = outputs[0] if outputs else None + return (getattr(first, "text", None) or (first if isinstance(first, str) else "") or "").strip() + except Exception as exc2: # noqa: BLE001 + print(f"[asr] transcribe() fallback also failed: {exc2}") + return "" + finally: + # release the GPU: move weights back to CPU and clear the cache so the + # next ZeroGPU request starts clean. + try: + if device != "cpu": + model.to(device="cpu", dtype=torch.float32) + if torch.cuda.is_available(): + torch.cuda.empty_cache() + except Exception: # noqa: BLE001 + pass + + +@app.api(name="transcribe") +def transcribe(audio_path: str = "", field: str = "") -> dict: + """Transcribe a short audio clip to text with NeMo ASR and detect its + language. Returns {text, language, available, field}. If the model can't be + loaded (no NeMo/GPU), returns available=false with empty text.""" + model = _get_asr_model() + if model is None: + _record_trace({"name": "transcribe", "model": ASR_MODEL_ID, + "file": os.path.basename(audio_path or ""), "status": "unavailable", + "error": "NeMo ASR model not loaded (needs nemo_toolkit + GPU)", + "meta": {"field": field}, "output": None, "duration_ms": 0}) + return {"text": "", "language": "", "available": False, "field": field} + + wav = _prep_wav_16k_mono(audio_path) + text = "" + with traced("transcribe", model=ASR_MODEL_ID, + file=os.path.basename(audio_path or ""), meta={"field": field}) as t: + try: + # Go through _asr_run so the actual inference runs inside a + # @spaces.GPU context on ZeroGPU (and a no-op context elsewhere). + text = _asr_run(wav).strip() + except Exception as exc: # noqa: BLE001 + t.error = f"transcribe failed: {exc}" + t.set_output(text) + lang = _detect_language(text) + return {"text": text, "language": lang, "available": True, "field": field} + + +@app.post("/api/transcribe") +async def transcribe_rest(request: Request): + """Transcribe recorder audio sent as a base64 data URL. + Body: {data_url: "data:audio/webm;base64,...", field: "caption"}. + Returns {text, language, available, field}.""" + import base64 + import tempfile + try: + body = await request.json() + except Exception: # noqa: BLE001 + return {"text": "", "language": "", "available": False, "field": ""} + data_url = (body or {}).get("data_url", "") + field = (body or {}).get("field", "") + language = (body or {}).get("language", "auto") or "auto" + chunk_profile = (body or {}).get("chunk_profile", ASR_DEFAULT_PROFILE) or ASR_DEFAULT_PROFILE + model = _get_asr_model() + unsupported = bool(_asr_state.get("unsupported_os")) + if model is None or not data_url: + if not data_url: + return {"text": "", "language": "", "available": model is not None, + "unsupported_os": unsupported, "field": field} + _record_trace({"name": "transcribe", "model": ASR_MODEL_ID, "file": "recording", + "status": "unavailable", + "error": ("Nemotron not supported on this OS (Linux only)" if unsupported + else "NeMo ASR model not loaded (needs nemo_toolkit + GPU)"), + "meta": {"field": field}, "output": None, "duration_ms": 0}) + return {"text": "", "language": "", "available": False, + "unsupported_os": unsupported, "field": field} + try: + header, b64 = (data_url.split(",", 1) if "," in data_url else ("", data_url)) + ext = ".webm" + if "ogg" in header: + ext = ".ogg" + elif "wav" in header: + ext = ".wav" + elif "mp4" in header or "m4a" in header: + ext = ".mp4" + raw = base64.b64decode(b64) + src = tempfile.NamedTemporaryFile(delete=False, suffix=ext) + src.write(raw) + src.close() + wav = _prep_wav_16k_mono(src.name) + text = "" + with traced("transcribe", model=ASR_MODEL_ID, file="recording", + meta={"field": field, "language": language, "chunk_profile": chunk_profile}) as t: + try: + text = _asr_run(wav, language=language, chunk_profile=chunk_profile) + except Exception as exc: # noqa: BLE001 + t.error = f"transcribe failed: {exc}" + t.set_output(text) + return {"text": text, "language": _detect_language(text), "available": True, + "unsupported_os": False, "field": field} + except Exception as exc: # noqa: BLE001 + print(f"[asr] rest transcribe failed: {exc}") + return {"text": "", "language": "", "available": True, "field": field, "error": str(exc)} + + +# --------------------------------------------------------------------------- # +# Auto-caption inference. MiniCPM-V is a vision model, so the heavy generation +# is isolated in a @spaces.GPU-decorated helper: on ZeroGPU this requests a GPU +# for the duration of the call and releases it after; off ZeroGPU it's a no-op. +# Both backends (gguf via llama.cpp, transformers via .chat) are image-grounded. +# --------------------------------------------------------------------------- # + +@spaces.GPU(duration=60) +def _caption_infer(local_img, base_instruction, full_prompt, reply_suffix, max_new): + """Run one vision generation and return raw model text. + + `full_prompt` already bundles the per-kind instruction + reply directive, so + the same helper produces a title, a caption, or tags depending on what the + caller passed in. The IMAGE is sent to the model in both backends. + + IMPORTANT (ZeroGPU): two rules shape this function. + 1. @spaces.GPU ships ARGUMENTS to the GPU worker via pickle, and the + llama.cpp `Llama` object is NOT picklable ("cannot pickle 'module' + object"). So the model is never an argument β€” only plain str/int cross + the boundary; the model is obtained here. + 2. CUDA must NOT be initialized in the main process on ZeroGPU (GPUs only + exist inside this decorated call). So for the GGUF backend the model is + BUILT HERE on first use, while the GPU is attached, and cached in the + worker β€” never constructed in the main process. + """ + backend = _caption_state.get("backend") or "transformers" + if backend == "gguf": + # Build (once) and reuse the llama.cpp model inside the GPU worker so the + # CUDA context is created with a GPU attached. _ensure_gguf_model() + # caches it in module state; on ZeroGPU that state lives in the worker. + model = _ensure_gguf_model() + if model is None: + raise RuntimeError("GGUF caption model could not be initialized") + # llama.cpp vision chat completion: send the real image as a data: URI + # plus the instruction text; the mmproj-backed handler makes visual + # tokens. + user_content = [{"type": "text", "text": full_prompt}] + data_uri = _image_data_uri(local_img) + if data_uri: + user_content.insert(0, {"type": "image_url", "image_url": {"url": data_uri}}) + messages = [ + {"role": "system", "content": base_instruction}, + {"role": "user", "content": user_content}, + ] + out = model.create_chat_completion( + messages=messages, max_tokens=max_new, temperature=0.3, + ) + return (out["choices"][0]["message"]["content"] or "").strip() + + # transformers backend: MiniCPM-V's .chat() helper takes the PIL image and a + # msgs list. This keeps the off-Spaces path image-grounded too. + model = _caption_state["model"] + tokenizer = _caption_state["tokenizer"] + pil = _load_pil_image(local_img) + msgs = [{"role": "user", "content": [pil, full_prompt] if pil is not None else [full_prompt]}] + answer = model.chat( + msgs=msgs, + image=pil, + tokenizer=tokenizer, + sampling=True, + temperature=0.3, + max_new_tokens=max_new, + ) + if isinstance(answer, (list, tuple)): + answer = answer[0] if answer else "" + return (str(answer) or "").strip() + + +@app.api(name="autocaption") +def autocaption(image_path: str = "", alt: str = "", prompt: str = "", kind: str = "caption") -> str: + """Generate a caption, title, or tag suggestion for a photo by LOOKING AT + the photo with MiniCPM-V. + + `kind` is "caption", "title", or "tags" β€” it selects the instruction, the + reply directive, the generation length, and the trace span name, so the one + function serves all three call sites (caption field, title field, tags + field) with image-grounded output. + + `prompt` is an optional user-supplied instruction (from Settings) that lets + people customize the style. When empty, a sensible default is used. + + On any failure (model missing, generation error) it returns a lightweight + fallback derived from the photo's alt text so the UI button always works. + """ + kind_l = str(kind).lower() + is_title = kind_l == "title" + is_tags = kind_l == "tags" + span_name = "autotags" if is_tags else ("autotitle" if is_title else "autocaption") + default_instruction = ( + "Look at this personal photo and list 3 to 6 short, lowercase tags " + "describing what is in it, separated by commas." + if is_tags else + "Look at this personal photo and write a very short, evocative title " + "(2–5 words) for it." + if is_title else + "Look at this personal photo and write a short, warm one-sentence caption " + "for a personal photo album." + ) + reply_suffix = ( + " Reply with only the comma-separated tags." if is_tags else + " Reply with only the title." if is_title else + " Reply with only the caption." + ) + max_new = 32 if is_tags else 24 if is_title else 128 + + if not _load_caption_model(): + if is_tags: + cap = _fallback_tags(alt) + else: + cap = _fallback_caption(alt) + _record_trace({"name": span_name, "kind": "LLM", "model": AUTOCAPTION_MODEL_ID, + "file": os.path.basename(image_path or ""), "status": "fallback", + "error": "caption model unavailable", "output": cap[:300], + "meta": {"prompt": (prompt or "")[:120], "for": kind}, "duration_ms": 0}) + return cap + + with traced(span_name, model=AUTOCAPTION_MODEL_ID, + file=os.path.basename(image_path or ""), + meta={"prompt": (prompt or "")[:120], "alt": (alt or "")[:120], "for": kind}, + invocation={"max_new_tokens": max_new, "temperature": 0.3}, + system=default_instruction) as t: + try: + local_img = _resolve_image_for_model(image_path) + # Some frontends pass the photo as a data URL in `alt`; if image_path + # didn't resolve to a real file, try alt as an image source too. + if local_img is None and alt and alt.strip().startswith("data:"): + local_img = _resolve_image_for_model(alt) + # If we DID get an image, don't pollute the prompt with the filename; + # the pixels are the context. Only fall back to an alt text hint when + # no image could be resolved. + hint = "" if local_img else (f' (context hint: {alt})' if alt else "") + base_instruction = (prompt or "").strip() or default_instruction + full_prompt = base_instruction + hint + reply_suffix + + text = _caption_infer(local_img, base_instruction, + full_prompt, reply_suffix, max_new) + + if is_tags: + # tags must come out comma-separated; normalize whatever the + # model produced, then validate. If it can't be made into a + # comma list, fall back (which is always comma-separated). + norm = _normalize_tags(text) + if not _is_comma_separated(norm): + norm = _fallback_tags(alt) + result = norm or _fallback_tags(alt) + else: + # tidy: first line only, strip surrounding quotes + text = (text.splitlines()[0].strip().strip('"').strip()) if text else "" + result = text or _fallback_caption(alt) + t.set_output(result) + return result + except Exception as exc: + print(f"[{span_name}] generation failed, using fallback: {exc}") + t.error = f"generation failed: {exc}" + fb = _fallback_tags(alt) if is_tags else _fallback_caption(alt) + t.set_output(fb) + return fb + + +# ----------------------------- Room REST API ------------------------------- # + +_JOIN_HITS: dict = {} + + +def rate_ok(ip: str, limit=20, window=60) -> bool: + now = time.time() + hits = _JOIN_HITS.setdefault(ip, []) + hits[:] = [t for t in hits if now - t < window] + if len(hits) >= limit: + return False + hits.append(now) + return True + + +@app.post("/api/rooms") +async def create_room(request: Request): + """Create a room. Body: { code_length?, display_name?, session_id? }.""" + try: + data = await request.json() + except Exception: + data = {} + code_length = clamp_code_len(data.get("code_length", 6)) + name = sanitize_name(data.get("display_name")) + session_id = (data.get("session_id") or secrets.token_hex(8))[:64] + + room_id = str(uuid.uuid4()) # secure, never sequential + share_code = unique_share_code(code_length) + now = time.time() + with DB_LOCK: + _conn.execute( + "INSERT INTO rooms (room_id, share_code, code_length, created_at, " + "last_activity, owner_session_id, is_active, metadata) " + "VALUES (?,?,?,?,?,?,1,?)", + (room_id, share_code, code_length, now, now, session_id, json.dumps({})), + ) + _conn.commit() + return { + "room_id": room_id, + "share_code": share_code, + "code_length": code_length, + "room_path": f"/room/{room_id}", + } + + +@app.get("/api/rooms/{room_id}") +def get_room(room_id: str): + row = room_row(room_id) + if row is None: + raise HTTPException(status_code=404, detail="Room not found or expired.") + return { + "room_id": row["room_id"], + "share_code": row["share_code"], + "code_length": row["code_length"], + "is_active": bool(row["is_active"]), + "participants": manager.presence(room_id), + } + + +@app.post("/api/join-by-code") +async def join_by_code(request: Request): + """Resolve a human room code to a room_id. Body: { code }.""" + ip = request.client.host if request.client else "?" + if not rate_ok(ip): + raise HTTPException(status_code=429, detail="Too many attempts. Slow down.") + try: + data = await request.json() + except Exception: + data = {} + code = (data.get("code") or "").strip().upper() + code = "".join(ch for ch in code if ch in CODE_ALPHABET) + if not (MIN_CODE_LEN <= len(code) <= MAX_CODE_LEN): + raise HTTPException(status_code=400, detail="Invalid code format.") + with DB_LOCK: + row = _conn.execute( + "SELECT room_id FROM rooms WHERE share_code=? AND is_active=1", (code,) + ).fetchone() + if row is None: + raise HTTPException(status_code=404, detail="No active room with that code.") + return {"room_id": row["room_id"], "room_path": f"/room/{row['room_id']}"} + + +# --------------------------- Room content persistence ---------------------- # +# A room's scrapbook (photos, captions, pins, transforms) is stored as one JSON +# blob with a monotonic version. The frontend PUTs on change (debounced) and +# GETs on join, so a returning user sees the room as it was left. Live edits +# still flow over the WebSocket; this is the durable backstop + late-join seed. + +# cap the stored blob so a room can't be used as unbounded storage (data URLs +# for images can be large; 8 MB is generous for a handful of photos) +MAX_ROOM_STATE_BYTES = int(os.environ.get("SOZAI_MAX_ROOM_STATE_BYTES", str(8 * 1024 * 1024))) + + +@app.get("/api/rooms/{room_id}/state") +def get_room_state(room_id: str): + """Return the persisted scrapbook state for a room: {state, version}. + state is null if nothing has been saved yet.""" + if room_row(room_id) is None: + raise HTTPException(status_code=404, detail="Room not found or expired.") + with DB_LOCK: + row = _conn.execute( + "SELECT state, version, updated_at FROM room_state WHERE room_id=?", (room_id,) + ).fetchone() + if row is None: + return {"state": None, "version": 0, "updated_at": None} + try: + state = json.loads(row["state"]) if row["state"] else None + except Exception: # noqa: BLE001 + state = None + return {"state": state, "version": row["version"], "updated_at": row["updated_at"]} + + +@app.post("/api/rooms/{room_id}/state") +async def put_room_state(room_id: str, request: Request): + """Persist the room's scrapbook state. Body: {state, base_version?}. + + Uses optimistic concurrency: if base_version is supplied and no longer + matches the stored version, the write is rejected with the current state so + the client can reconcile (last-writer is NOT blindly allowed to clobber a + newer save). Returns {version, conflict?, state?}. + """ + if room_row(room_id) is None: + raise HTTPException(status_code=404, detail="Room not found or expired.") + try: + body = await request.json() + except Exception: # noqa: BLE001 + raise HTTPException(status_code=400, detail="Invalid JSON.") + state = (body or {}).get("state") + base_version = (body or {}).get("base_version") + + blob = json.dumps(state, separators=(",", ":")) + if len(blob.encode("utf-8")) > MAX_ROOM_STATE_BYTES: + raise HTTPException(status_code=413, detail="Scrapbook state too large to save.") + + now = time.time() + with DB_LOCK: + cur = _conn.execute( + "SELECT state, version FROM room_state WHERE room_id=?", (room_id,) + ).fetchone() + current_version = cur["version"] if cur else 0 + # optimistic concurrency check + if base_version is not None and cur is not None and int(base_version) != int(current_version): + try: + current_state = json.loads(cur["state"]) if cur["state"] else None + except Exception: # noqa: BLE001 + current_state = None + return {"version": current_version, "conflict": True, "state": current_state} + new_version = current_version + 1 + _conn.execute( + "INSERT INTO room_state (room_id, state, version, updated_at) VALUES (?,?,?,?) " + "ON CONFLICT(room_id) DO UPDATE SET state=excluded.state, " + "version=excluded.version, updated_at=excluded.updated_at", + (room_id, blob, new_version, now), + ) + _conn.commit() + touch_room(room_id) + return {"version": new_version, "conflict": False} + + +# --------------------------- WebSocket sync -------------------------------- # + +_PALETTE = [ + "#7c5cff", "#e9698f", "#2bb673", "#f2994a", "#3aa0ff", + "#9b51e0", "#eb5757", "#27ae60", "#f2c94c", "#56ccf2", +] + + +def color_for(session_id: str) -> str: + h = int(hashlib.sha1(session_id.encode()).hexdigest(), 16) + return _PALETTE[h % len(_PALETTE)] + + +# Events the server relays verbatim to the other participants. +# +# Every collaborative interaction the frontend emits must be listed here, or the +# server silently drops it and collaborators never see the action. Rather than a +# brittle allow-list that has to be hand-updated whenever the frontend grows a +# new event, we relay ANY event that is NOT a server-owned/internal type +# (see NON_RELAY_EVENTS below). This keeps cursors, selections, field typing, +# polaroid drags, card edits, screen-follow, etc. all in sync. +RELAY_EVENTS = { + # object lifecycle + text field edits (title / caption / date / time) + "object_created", "object_updated", "object_deleted", + # chat + presence-style ephemera + "chat_message", "cursor_position", "selection", "interaction", + # the photo the editor is currently viewing (drives optional follow) + "active_image", + # darkroom / scrapbook card edits (time / location / note) + "dv_edit", + # polaroid pins on the map: drop, move, style (rotate/scale), reset + "photo_pinned", "photo_moved", "photo_props", "photos_reset", + # navigation that collaborators can optionally follow + "screen_changed", "variant_changed", +} + +# Types the server originates or manages itself β€” these must NEVER be relayed +# back out from a client (a client cannot, e.g., forge presence for others). +NON_RELAY_EVENTS = { + "init", "me", "presence", "presence_update", "status", + "user_joined", "user_left", "rename", "error", + "join_request", "join_pending", "join_declined", "admit_join", "decline_join", "cancel_join", +} + + +class Manager: + def __init__(self): + self.rooms = {} # room_id -> {ws: info} (admitted participants) + self.pending = {} # room_id -> {ws: info} (awaiting host approval) + + async def connect(self, room_id, ws, info): + await ws.accept() + self.rooms.setdefault(room_id, {})[ws] = info + + def admit(self, room_id, ws, info): + """Promote a pending socket to a full participant.""" + self.pending.get(room_id, {}).pop(ws, None) + self.rooms.setdefault(room_id, {})[ws] = info + + def add_pending(self, room_id, ws, info): + self.pending.setdefault(room_id, {})[ws] = info + + def remove_pending(self, room_id, ws): + p = self.pending.get(room_id) + if p and ws in p: + del p[ws] + if not p: + self.pending.pop(room_id, None) + + def find_pending(self, room_id, session_id): + """Return (ws, info) for a pending session_id, or (None, None).""" + for ws, info in list(self.pending.get(room_id, {}).items()): + if info["session_id"] == session_id: + return ws, info + return None, None + + def host_ws(self, room_id, owner_session_id): + """The socket that should approve joins: the owner if connected, else + the earliest-connected participant (so approval never deadlocks).""" + peers = self.rooms.get(room_id, {}) + if not peers: + return None + if owner_session_id: + for ws, info in peers.items(): + if info["session_id"] == owner_session_id: + return ws + # fall back to the first admitted participant + return next(iter(peers), None) + + def disconnect(self, room_id, ws): + peers = self.rooms.get(room_id) + if peers and ws in peers: + del peers[ws] + if not peers: + self.rooms.pop(room_id, None) + self.remove_pending(room_id, ws) + + def presence(self, room_id): + peers = self.rooms.get(room_id, {}) + seen, out = set(), [] + for info in peers.values(): + if info["session_id"] in seen: + continue + seen.add(info["session_id"]) + out.append({k: info[k] for k in ("session_id", "name", "participant_id", "color")}) + return out + + async def broadcast(self, room_id, message, exclude=None): + for ws in list(self.rooms.get(room_id, {})): + if ws is exclude: + continue + try: + await ws.send_json(message) + except Exception: + pass + + async def send_to(self, ws, message): + try: + await ws.send_json(message) + return True + except Exception: + return False + + +manager = Manager() + + +@app.websocket("/ws/{room_id}") +async def ws_room(ws: WebSocket, room_id: str): + if room_row(room_id) is None: + await ws.accept() + await ws.send_json({"type": "error", "message": "Room not found or expired."}) + await ws.close(code=4404) + return + + session_id = (ws.query_params.get("session_id") or secrets.token_hex(8))[:64] + info = { + "session_id": session_id, + "name": sanitize_name(ws.query_params.get("name")), + "participant_id": secrets.token_hex(6), + "color": color_for(session_id), + } + + # ---- join approval ---- + # The owner is auto-admitted. Anyone else needs the host to admit them. + # If no host is currently connected, we auto-admit (so a room is never + # un-joinable / approval never deadlocks). Returning sessions that the host + # already admitted earlier in this room are also let straight back in. + row = room_row(room_id) + owner_session = row["owner_session_id"] if row else None + is_owner = bool(owner_session) and session_id == owner_session + + await ws.accept() + host = manager.host_ws(room_id, owner_session) + needs_approval = (not is_owner) and (host is not None) + + if needs_approval: + decision = asyncio.Event() + info["_decision_event"] = decision + info["_admitted"] = False + manager.add_pending(room_id, ws, info) + # tell the joiner they're waiting + await manager.send_to(ws, {"type": "join_pending", "you": {k: info[k] for k in ("session_id", "name", "participant_id", "color")}}) + # ask the host to admit / decline + await manager.send_to(host, { + "type": "join_request", + "participant": {k: info[k] for k in ("session_id", "name", "participant_id", "color")}, + }) + # wait for the host's decision (with a timeout β†’ auto-decline) + try: + await asyncio.wait_for(decision.wait(), timeout=120) + except asyncio.TimeoutError: + pass + except Exception: + pass + if not info.get("_admitted"): + manager.remove_pending(room_id, ws) + await manager.send_to(ws, {"type": "join_declined"}) + try: + await ws.close(code=4403) + except Exception: + pass + return + manager.admit(room_id, ws, info) + else: + # owner, or no host present β†’ straight in + manager.rooms.setdefault(room_id, {})[ws] = info + + now = time.time() + with DB_LOCK: + _conn.execute( + "INSERT OR REPLACE INTO participants (participant_id, room_id, " + "session_id, display_name, joined_at, last_seen) VALUES (?,?,?,?,?,?)", + (info["participant_id"], room_id, session_id, info["name"], now, now), + ) + _conn.commit() + touch_room(room_id) + + await ws.send_json({"type": "init", "you": info, "participants": manager.presence(room_id)}) + await manager.broadcast(room_id, {"type": "user_joined", "participant": info}, exclude=ws) + await manager.broadcast(room_id, {"type": "presence_update", "participants": manager.presence(room_id)}) + + try: + while True: + data = await ws.receive_json() + t = data.get("type") + if t == "rename": + info["name"] = sanitize_name(data.get("name")) + with DB_LOCK: + _conn.execute( + "UPDATE participants SET display_name=?, last_seen=? WHERE participant_id=?", + (info["name"], time.time(), info["participant_id"]), + ) + _conn.commit() + await manager.broadcast(room_id, {"type": "presence_update", "participants": manager.presence(room_id)}) + continue + # ---- host approves / declines a pending joiner ---- + if t in ("admit_join", "decline_join"): + target_sid = data.get("session_id") + pend_ws, pend_info = manager.find_pending(room_id, target_sid) + if pend_info is not None: + pend_info["_admitted"] = (t == "admit_join") + ev = pend_info.get("_decision_event") + if ev is not None: + ev.set() + continue + # explicitly known (RELAY_EVENTS) or simply not a server-owned type + # (NON_RELAY_EVENTS) β€” this way the frontend can introduce new + # interaction events without the server silently dropping them. + if t and t not in NON_RELAY_EVENTS: + data["from"] = {k: info[k] for k in ("session_id", "name", "participant_id", "color")} + await manager.broadcast(room_id, data, exclude=ws) + # cursors + transient interaction pings are too chatty to keep + # the room alive on; everything else counts as real activity. + if t not in ("cursor_position", "interaction"): + touch_room(room_id) + except WebSocketDisconnect: + pass + except Exception: + pass + finally: + manager.disconnect(room_id, ws) + await manager.broadcast(room_id, {"type": "user_left", "participant": info}) + await manager.broadcast(room_id, {"type": "presence_update", "participants": manager.presence(room_id)}) + + +# ------------------------------ Assets ------------------------------------- # + +def _safe_rel(path: str) -> str: + rel = os.path.normpath(path).lstrip("/\\") + if rel.startswith("..") or os.path.isabs(rel): + raise HTTPException(status_code=400, detail="bad path") + return rel.replace("\\", "/") + + +@app.get("/assets/{path:path}") +async def assets(request: Request, path: str): + rel = _safe_rel(path) + if PUBLIC_DIR is not None: + fp = os.path.join(PUBLIC_DIR, *rel.split("/")) + if os.path.isfile(fp): + return FileResponse(fp) + if ZIP_PATH is not None: + try: + data = _read_from_zip(rel) + media = mimetypes.guess_type(rel)[0] or "application/octet-stream" + return Response(content=data, media_type=media) + except KeyError: + pass + # Not a Sozai asset β†’ it's almost certainly a Phoenix bundle asset (its JS + # requests /assets/vendor-*.js etc. with an absolute path). Proxy it to the + # in-process Phoenix server so the embedded trace UI loads correctly. + if _phoenix_session is not None: + return await _phoenix_proxy(request, "assets/" + rel) + raise HTTPException(status_code=404, detail=f"asset not found: {rel}") + + +@app.get("/favicon.ico") +def favicon(): + rel = "icon.svg" + if PUBLIC_DIR is not None: + fp = os.path.join(PUBLIC_DIR, rel) + if os.path.isfile(fp): + return FileResponse(fp) + if ZIP_PATH is not None: + try: + return Response(content=_read_from_zip(rel), media_type="image/svg+xml") + except KeyError: + pass + raise HTTPException(status_code=404, detail="favicon not found") + + +# ------------------------- Easter-egg sprite API --------------------------- # + +@app.get("/api/sprites") +def sprite_animals(): + """List the available pet sprite sets (animals) for the easter-egg picker.""" + return {"animals": list_sprite_animals(), "frames": SPRITE_FILES} + + +@app.get("/sprites/{animal}/{fname}") +def sprite_image(animal: str, fname: str): + """Serve one sprite PNG, e.g. /sprites/tabby/still or /sprites/dog/nrun1.""" + name = fname[:-4] if fname.lower().endswith(".png") else fname + try: + data = _read_sprite(animal, name) + except KeyError: + raise HTTPException(status_code=404, detail="sprite not found") + return Response(content=data, media_type="image/png") + + +# ------------------------- Vendored libraries ----------------------------- # +# Serve MapLibre GL JS (and CSS) from our OWN origin. On first request we fetch +# it once from a CDN and cache it to disk; thereafter it is served locally. +# This makes the map work even when the *browser* can't reach public CDNs +# (locked-down networks, offline kiosks, etc.) as long as the SERVER has +# outbound internet. Falls back to multiple CDNs in the page if this is empty. + +_VENDOR_DIR = os.path.join(BASE, ".vendor_cache") +_MAPLIBRE_VER = os.environ.get("SOZAI_MAPLIBRE_VER", "4.7.1") +_VENDOR_FILES = { + "maplibre-gl.js": [ + f"https://unpkg.com/maplibre-gl@{_MAPLIBRE_VER}/dist/maplibre-gl.js", + f"https://cdn.jsdelivr.net/npm/maplibre-gl@{_MAPLIBRE_VER}/dist/maplibre-gl.js", + f"https://cdnjs.cloudflare.com/ajax/libs/maplibre-gl/{_MAPLIBRE_VER}/maplibre-gl.js", + ], + "maplibre-gl.css": [ + f"https://unpkg.com/maplibre-gl@{_MAPLIBRE_VER}/dist/maplibre-gl.css", + f"https://cdn.jsdelivr.net/npm/maplibre-gl@{_MAPLIBRE_VER}/dist/maplibre-gl.css", + f"https://cdnjs.cloudflare.com/ajax/libs/maplibre-gl/{_MAPLIBRE_VER}/maplibre-gl.css", + ], +} +_vendor_lock = threading.Lock() + + +def _vendor_fetch(fname: str): + """Return cached bytes for a vendored file, downloading once if needed.""" + if fname not in _VENDOR_FILES: + return None + cache_path = os.path.join(_VENDOR_DIR, fname) + if os.path.isfile(cache_path) and os.path.getsize(cache_path) > 0: + with open(cache_path, "rb") as fh: + return fh.read() + with _vendor_lock: + if os.path.isfile(cache_path) and os.path.getsize(cache_path) > 0: + with open(cache_path, "rb") as fh: + return fh.read() + os.makedirs(_VENDOR_DIR, exist_ok=True) + import urllib.request + for url in _VENDOR_FILES[fname]: + try: + req = urllib.request.Request(url, headers={"User-Agent": "Mozilla/5.0 sozai"}) + with urllib.request.urlopen(req, timeout=20) as resp: + data = resp.read() + if data: + with open(cache_path, "wb") as fh: + fh.write(data) + print(f"[vendor] cached {fname} from {url} ({len(data)} bytes)") + return data + except Exception as exc: + print(f"[vendor] failed {url}: {exc}") + return None + + +@app.get("/vendor/{fname}") +def vendor_file(fname: str): + """Serve a vendored library (e.g. /vendor/maplibre-gl.js) from local cache.""" + data = _vendor_fetch(fname) + if data is None: + raise HTTPException(status_code=404, detail="vendor file unavailable") + media = "text/javascript" if fname.endswith(".js") else ("text/css" if fname.endswith(".css") else "application/octet-stream") + return Response(content=data, media_type=media) + + +# ------------------------------- Pages ------------------------------------- # + +def _read_html(name: str) -> str: + with open(os.path.join(BASE, name), "r", encoding="utf-8") as fh: + return fh.read() + + +def _inline_maplibre(html: str) -> str: + """Replace the marker in the page with the cached + MapLibre CSS + JS inlined directly. This is the most robust delivery: the + browser executes the library inline with no extra request, sidestepping any + routing/MIME/proxy issues. If the library can't be cached (server offline), + the marker is left as-is and the page's CDN fallback loader takes over. + """ + marker = "" + if marker not in html: + return html + js = _vendor_fetch("maplibre-gl.js") + css = _vendor_fetch("maplibre-gl.css") + if not js: + # leave the marker; the in-page CDN fallback will handle loading + return html + parts = [] + if css: + css_text = css.decode("utf-8", "replace").replace("\n" + css_text + "\n") + js_text = js.decode("utf-8", "replace").replace("\n" + js_text + "\n") + return html.replace(marker, "\n".join(parts), 1) + + +def _app_html() -> str: + return _inline_maplibre(_read_html("index.html")) + + +@app.get("/", response_class=HTMLResponse) +async def landing(): + return _read_html("landing.html") + + +@app.get("/app", response_class=HTMLResponse) +async def solo_app(): + return _app_html() + + +@app.get("/room/{room_id}", response_class=HTMLResponse) +async def room_app(room_id: str): + return _app_html() + + +# --------------------------- Cleanup daemon -------------------------------- # + +def _cleanup_loop(): + runs = 0 + while True: + time.sleep(300) # every 5 minutes + try: + now = time.time() + runs += 1 + with DB_LOCK: + # 1) flag rooms idle for > IDLE_TIMEOUT as inactive (so they + # can't be joined) β€” kept briefly for a grace window. + _conn.execute( + "UPDATE rooms SET is_active=0 WHERE is_active=1 AND ?-last_activity>?", + (now, IDLE_TIMEOUT), + ) + # 2) DELETE rooms (and their content) once they've been idle + # past the deletion window. This is keyed on last_activity, + # not creation time, so the DB tracks live usage and the + # heavy room_state blobs don't pile up. + _conn.execute( + "DELETE FROM rooms WHERE ?-last_activity>?", (now, ROOM_DELETE_AFTER_IDLE) + ) + # absolute safety cap: nothing survives past HARD_EXPIRATION + _conn.execute("DELETE FROM rooms WHERE ?-created_at>?", (now, HARD_EXPIRATION)) + # 3) cascade: drop orphaned participants + saved scrapbook state + _conn.execute( + "DELETE FROM participants WHERE room_id NOT IN (SELECT room_id FROM rooms)" + ) + _conn.execute( + "DELETE FROM room_state WHERE room_id NOT IN (SELECT room_id FROM rooms)" + ) + _conn.commit() + # 4) reclaim disk space. SQLite doesn't shrink the file on its + # own after deletes; incremental_vacuum returns freed pages to + # the OS. Run occasionally (hourly) to keep the file compact. + if runs % 12 == 0: + try: + _conn.execute("PRAGMA incremental_vacuum;") + _conn.commit() + except Exception: + pass + except Exception: + pass + + +threading.Thread(target=_cleanup_loop, daemon=True).start() + + +if __name__ == "__main__": + # Bring up the in-process Phoenix UI + OTel tracing immediately, so the + # embedded "LLM Trace" section is live as soon as the app starts β€” no + # separate `phoenix serve` required. + try: + _get_tracer() + print(f"[phoenix] embedded trace UI ready at {_phoenix_session_url()}") + except Exception as exc: # noqa: BLE001 + print(f"[phoenix] startup tracing init skipped: {exc}") + + # On Windows, asyncio's Proactor loop logs a noisy but harmless + # "ConnectionResetError: [WinError 10054]" whenever a client (browser tab, + # WebSocket, hot-reload) drops a connection abruptly. It's cosmetic β€” the + # connection simply closed β€” so we wrap the internal callback to ignore that + # one error. This affects nothing else and is a no-op off Windows. + import platform as _platform + if _platform.system() == "Windows": + try: + from asyncio.proactor_events import _ProactorBasePipeTransport + + _orig_ccl = _ProactorBasePipeTransport._call_connection_lost + + def _quiet_ccl(self, exc): + if isinstance(exc, ConnectionResetError): + return # ignore the benign 10054 reset + return _orig_ccl(self, exc) + + _ProactorBasePipeTransport._call_connection_lost = _quiet_ccl + except Exception: + pass # if internals change, just leave the default behavior + + app.launch(server_name="0.0.0.0", server_port=7860) \ No newline at end of file diff --git a/assets/hummingbird.png b/assets/hummingbird.png new file mode 100644 index 0000000000000000000000000000000000000000..1228c9cd7a78570e9b7e602cf738a18e03fe3ba8 --- /dev/null +++ b/assets/hummingbird.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9babf444b54768c4a7afb93928d3c6543dda2705c11deed2443d06a507887137 +size 228002 diff --git a/darkroom_preview.html b/darkroom_preview.html new file mode 100644 index 0000000000000000000000000000000000000000..f4f7747d2e4d4eb99d4ba2b5c90cb0f883d0be0b --- /dev/null +++ b/darkroom_preview.html @@ -0,0 +1,605 @@ + + + + + + Sozai Β· Darkroom preview + + + + + + + + +
+

+ Standalone preview β€” top-down baths, then drag a print left/right to shake it developed +

+
+
+ + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000000000000000000000000000000000000..fb9d6910041b8589d49b9e144f13c901ed37f1b5 --- /dev/null +++ b/index.html @@ -0,0 +1,6827 @@ + + + + + + Sozai Β· Add to Album + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + \ No newline at end of file diff --git a/landing.html b/landing.html new file mode 100644 index 0000000000000000000000000000000000000000..09efa6039bbd2e78935853fd20259df7c6c3fcea --- /dev/null +++ b/landing.html @@ -0,0 +1,283 @@ + + + + + + Sozai Β· build memories together + + + + + + + + + + + + + + + + + + +
+ + + + \ No newline at end of file diff --git a/packages.txt b/packages.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ba447515b593e532a9859d89d35a5e9c51821ae --- /dev/null +++ b/packages.txt @@ -0,0 +1 @@ +libheif-dev diff --git a/public/2023-icon-library/ace/alert.png b/public/2023-icon-library/ace/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..8039149aaa0353e6c71a11652bab261711a1b358 --- /dev/null +++ b/public/2023-icon-library/ace/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289b0468a0b300680e0347414e651c23f42036e241cbffb6ba8423219014491d +size 359 diff --git a/public/2023-icon-library/ace/erun1.png b/public/2023-icon-library/ace/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1a9e5888ef34f76b143fe3424977d78fe9287ef --- /dev/null +++ b/public/2023-icon-library/ace/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f109baf6ef9b9ba054c48039a5a274624d3c5b30b3067125a4b7c9d1318f79 +size 346 diff --git a/public/2023-icon-library/ace/erun2.png b/public/2023-icon-library/ace/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7c538e9a01cbff00951029d2a33ca7ae58fb30 --- /dev/null +++ b/public/2023-icon-library/ace/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd445c04582f624773ccff25824632491f6bb19cc6b56da20317ff68103aba8e +size 357 diff --git a/public/2023-icon-library/ace/escratch1.png b/public/2023-icon-library/ace/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4800eb6c34e6e1d9bff06559b671fe3dd941327 --- /dev/null +++ b/public/2023-icon-library/ace/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250b79b261f2bb1a485c7716df6c9a163af6e62c879f48ab1720330bd613e315 +size 325 diff --git a/public/2023-icon-library/ace/escratch2.png b/public/2023-icon-library/ace/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a07061b9d938537c51c44d99dac26875ca5fee --- /dev/null +++ b/public/2023-icon-library/ace/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e80b367a02fe7a246988279c30bdd8f29aec4e8b1912eaa7bc3bc64b7c6a60 +size 361 diff --git a/public/2023-icon-library/ace/itch1.png b/public/2023-icon-library/ace/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e49781b9b111fbff1c32705f3ff758f49875eb --- /dev/null +++ b/public/2023-icon-library/ace/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f9d0560d705539967bf2c8ef7a601d2de12482650e63fb663507219adb3bab +size 335 diff --git a/public/2023-icon-library/ace/itch2.png b/public/2023-icon-library/ace/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a9b4e8904e17d2873da190a4f0ad934082b55a --- /dev/null +++ b/public/2023-icon-library/ace/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ea3d93e047972ffd4891512243af1bb4ab1379b00cd576b5f9ead1ed800265 +size 314 diff --git a/public/2023-icon-library/ace/nerun1.png b/public/2023-icon-library/ace/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..603be9508c455b27768492d1c6b8aab60f119d9a --- /dev/null +++ b/public/2023-icon-library/ace/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e026ef3c9a00167ce43dac70eecda2444c767b93fa2d7f8601350c48d7de79e7 +size 331 diff --git a/public/2023-icon-library/ace/nerun2.png b/public/2023-icon-library/ace/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a91f4ac29aa1154eae5407b3755511c4c88d5149 --- /dev/null +++ b/public/2023-icon-library/ace/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4b48a3383fe0ae613b481c6ca3e63daa547ab8f5e3ceefcd621d1d57ed731e +size 343 diff --git a/public/2023-icon-library/ace/nrun1.png b/public/2023-icon-library/ace/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb0c31e90d2cbf8fcfbd4da2bf72d7d59af644f --- /dev/null +++ b/public/2023-icon-library/ace/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837ca78f587ebbfc17fe72abb2c24bdef6d98057d418d63e7f5799291a1b3a52 +size 343 diff --git a/public/2023-icon-library/ace/nrun2.png b/public/2023-icon-library/ace/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..50ace1ffcbe1579aa252564f82b76035b0a00108 --- /dev/null +++ b/public/2023-icon-library/ace/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f109e5e7faa17b278a12e5746fe858a5b15c885618904831ae536889da683e +size 350 diff --git a/public/2023-icon-library/ace/nscratch1.png b/public/2023-icon-library/ace/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c4accde81c69a39ec911216c66c0503add10c626 --- /dev/null +++ b/public/2023-icon-library/ace/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4274e632b18f77e48a912b565b79dfb725574226923cdc39a269519daaee6ef5 +size 366 diff --git a/public/2023-icon-library/ace/nscratch2.png b/public/2023-icon-library/ace/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7c2b559eef840562e4b81bdc9c706b546c14a616 --- /dev/null +++ b/public/2023-icon-library/ace/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1ad7251c959c441a6c7a1a513f8d120a6aa9e25c14b3353387454eedc5fc45 +size 357 diff --git a/public/2023-icon-library/ace/nwrun1.png b/public/2023-icon-library/ace/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..37cc2162a52c16513d34b977b2669f93585f2a68 --- /dev/null +++ b/public/2023-icon-library/ace/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ad439ad46b14edc5de25e8aed52b29a850901e6a60255e50a5089a96778f96 +size 333 diff --git a/public/2023-icon-library/ace/nwrun2.png b/public/2023-icon-library/ace/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e082d94981240a7109dcc4feb201fd8445c01e5f --- /dev/null +++ b/public/2023-icon-library/ace/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9b4cf80a95173b0348471be89292b5f57cf4500c5986767f482e2aa6482e5a +size 336 diff --git a/public/2023-icon-library/ace/serun1.png b/public/2023-icon-library/ace/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d33b00bf55210b8c912c26c9ccce578e8960be9a --- /dev/null +++ b/public/2023-icon-library/ace/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4f604dd938907f594ae741a67497caf0449237f3e07c944c60cf3aa84fe0bb +size 320 diff --git a/public/2023-icon-library/ace/serun2.png b/public/2023-icon-library/ace/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ffbc7c9d0769e97d950e1e864393156779b794a7 --- /dev/null +++ b/public/2023-icon-library/ace/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbe26eb237c495056e2cb7b5e051995cbe8916de4918b00b5894c47d24a8dd0 +size 332 diff --git a/public/2023-icon-library/ace/sleep1.png b/public/2023-icon-library/ace/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..fbdcdf3515c6bc559a585e70eb4643277c095e2b --- /dev/null +++ b/public/2023-icon-library/ace/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a540a0f87787c1579e42be6a84921c8d66a3a087bdb832fab7098903ab723707 +size 263 diff --git a/public/2023-icon-library/ace/sleep2.png b/public/2023-icon-library/ace/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..9ca2fb2f178ba73788f1e9ce36c0283065c30746 --- /dev/null +++ b/public/2023-icon-library/ace/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f962cd5fe4afad56fdb39ad8d9e9e36bcabca55b570a312e9345b15f5f344a +size 260 diff --git a/public/2023-icon-library/ace/srun1.png b/public/2023-icon-library/ace/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..083d1cbf71aca4a5543f9ddf6d75026e4f97d2f2 --- /dev/null +++ b/public/2023-icon-library/ace/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4419c263d9de3a1527d3135d6557a3da7e5a7cafe27e25deabd8ca26e5431c66 +size 315 diff --git a/public/2023-icon-library/ace/srun2.png b/public/2023-icon-library/ace/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ff2ee41508d20e5871f4e4e1e362ad9dc10634 --- /dev/null +++ b/public/2023-icon-library/ace/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbfaab5544e6e07f4938f7e60bd4df5e4155334d8bed7dd1de568f122ee79d7 +size 354 diff --git a/public/2023-icon-library/ace/sscratch1.png b/public/2023-icon-library/ace/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d20fd193378f337c19b3357a4a07e2fffb39fa36 --- /dev/null +++ b/public/2023-icon-library/ace/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3907b06d14349e1b44c1b943bc08a8332d5ceb0067df6966f1cf1e429c5ede5e +size 320 diff --git a/public/2023-icon-library/ace/sscratch2.png b/public/2023-icon-library/ace/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2a2357f7bdc6a2a11de6f2a43f3043d845f8c0a7 --- /dev/null +++ b/public/2023-icon-library/ace/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa3d0e8a166b4f9cf5aceed976655fab47d8c5ef1ad138855d1c1cc8f2be3ed +size 311 diff --git a/public/2023-icon-library/ace/still.png b/public/2023-icon-library/ace/still.png new file mode 100644 index 0000000000000000000000000000000000000000..8eba8796a90a6e1c909a54f65afc86574515e955 --- /dev/null +++ b/public/2023-icon-library/ace/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250ab97beff60cd55f04dfac47125daadb57e97ee2fa0bb1474c6df312039313 +size 327 diff --git a/public/2023-icon-library/ace/swrun1.png b/public/2023-icon-library/ace/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8267ef9c98325b016ae5fe748f8382fc0e29a457 --- /dev/null +++ b/public/2023-icon-library/ace/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7620b96b7baaaf29c2b7642130a30c256d0256ad9b2cd88bf8f97814f2735a +size 317 diff --git a/public/2023-icon-library/ace/swrun2.png b/public/2023-icon-library/ace/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3bbd07910abcb06dc588d4204c422a72c14ab6a0 --- /dev/null +++ b/public/2023-icon-library/ace/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c21b25143a1b83a43819a1e10364c27aaeb32f2872a66ff53cf2e6eba15d95 +size 336 diff --git a/public/2023-icon-library/ace/wash.png b/public/2023-icon-library/ace/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ce0a172a79f91980f16b5e315ce6b992f569c2 --- /dev/null +++ b/public/2023-icon-library/ace/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19f23dba3bd09329c0b9e9b69326a3b8fe33fafa97745268e0f531d15e54f27 +size 324 diff --git a/public/2023-icon-library/ace/wrun1.png b/public/2023-icon-library/ace/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f25479921519a04484c4dc9965d33a302602ee81 --- /dev/null +++ b/public/2023-icon-library/ace/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c6f3b657a01104f8460f6c2f8ef0f068dbb086831d228c6fff2a4c8bf7ae12 +size 345 diff --git a/public/2023-icon-library/ace/wrun2.png b/public/2023-icon-library/ace/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..011ea6b61c6f996167124e61b4593606b5129085 --- /dev/null +++ b/public/2023-icon-library/ace/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ac4b923622e89397b21afce574ec4e02ed390ed6927dc7cb24a7162157d72c +size 359 diff --git a/public/2023-icon-library/ace/wscratch1.png b/public/2023-icon-library/ace/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0293f538a06ceec445db106bc5562e77b080a1a --- /dev/null +++ b/public/2023-icon-library/ace/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b320a76052bfbac0b9788d1784ab95c522bcb44b829ed0ffcfeddc958ebfda9b +size 328 diff --git a/public/2023-icon-library/ace/wscratch2.png b/public/2023-icon-library/ace/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d513095935beec969b50ec80b210b3bfc7f65169 --- /dev/null +++ b/public/2023-icon-library/ace/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b39b39d3cdcc35ee5b87a5f94b8cea6641a13b1a8d04c576ccb5e4f7efe75a +size 363 diff --git a/public/2023-icon-library/ace/yawn.png b/public/2023-icon-library/ace/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..4c29a7e1e466048e87d76d5850d6ed32021a74e6 --- /dev/null +++ b/public/2023-icon-library/ace/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd4a8d7ad05327d037314ee3a2f89dbcf3b8b8e63be56e68079248772b858e1 +size 342 diff --git a/public/2023-icon-library/air/alert.png b/public/2023-icon-library/air/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..3d799c1bbc99a13fb88f055b10b61b3715811ccf --- /dev/null +++ b/public/2023-icon-library/air/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69f7fe0edf527bb6213a71dd0446593860fe22c1265b0d27554849b4010e660 +size 349 diff --git a/public/2023-icon-library/air/erun1.png b/public/2023-icon-library/air/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..02e67d4415ab79094ebeab49129ea37b517f23ed --- /dev/null +++ b/public/2023-icon-library/air/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746dd893655bc7ca38ddcc55f9cd7ac7cad137a9d96d5fdc85f0864b27b1b0aa +size 314 diff --git a/public/2023-icon-library/air/erun2.png b/public/2023-icon-library/air/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1678ab185a389af8cfd5b7746a34471dea5efd --- /dev/null +++ b/public/2023-icon-library/air/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba62aeab0b647d28431c7018da8552d6ca682c429be90d436d0474ef31e2a15 +size 306 diff --git a/public/2023-icon-library/air/escratch1.png b/public/2023-icon-library/air/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..e1237d0044ffb3b936dca8110a48238addcd4782 --- /dev/null +++ b/public/2023-icon-library/air/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ad0e121ea9147723562ee654cd6f8e3417b66eeac41dd5b0fc797bb7bc8d5c +size 306 diff --git a/public/2023-icon-library/air/escratch2.png b/public/2023-icon-library/air/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9a536132156b04173be9d3cb40e643418ddf8bd0 --- /dev/null +++ b/public/2023-icon-library/air/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2410550006b34e3a4ce11ae7a396a05ae9bced1ac9a2cd0d5b68dadf51613430 +size 290 diff --git a/public/2023-icon-library/air/itch1.png b/public/2023-icon-library/air/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8f9ef0180b3541d1e15dff8ab30633920c348d45 --- /dev/null +++ b/public/2023-icon-library/air/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e528a31358d93adbe177ac99624417bed081de2d7fef987faf3afb9114883b5 +size 335 diff --git a/public/2023-icon-library/air/itch2.png b/public/2023-icon-library/air/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..127846b696556ddbbab8361ff6d5adae296cb2dd --- /dev/null +++ b/public/2023-icon-library/air/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d94b8e5e2d925d87eed0bedb8a35833e5f8d41d6df70fb4c60bd1c62d0165c +size 324 diff --git a/public/2023-icon-library/air/nerun1.png b/public/2023-icon-library/air/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6ff98710fb38f5d81238797c519b0e33862bbf2b --- /dev/null +++ b/public/2023-icon-library/air/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c987c18f5008cea3e8392ab499abefcad67901c1096accd307f6e6e7cf155b +size 299 diff --git a/public/2023-icon-library/air/nerun2.png b/public/2023-icon-library/air/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..70cf23921e5c41a8cbe3dbc1afcfa851005a9bc2 --- /dev/null +++ b/public/2023-icon-library/air/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28807c7f29a7cb623a13d28ce5a6dda8997f5bd8031d342d980cb67e0bea047d +size 329 diff --git a/public/2023-icon-library/air/nrun1.png b/public/2023-icon-library/air/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6fb99a92e54a31178cad66384941b6d62db1ea --- /dev/null +++ b/public/2023-icon-library/air/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508095182e0cc3dd44060815b47ad76430941edadd5c37c5324f3abe2139f206 +size 289 diff --git a/public/2023-icon-library/air/nrun2.png b/public/2023-icon-library/air/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8b9a8d31408c46698ad81ddb6d25b4d1a4ea67 --- /dev/null +++ b/public/2023-icon-library/air/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1b27c1b080faeeff06be2b6c772741b4d35bc603363c38aff9081bf35c3247 +size 335 diff --git a/public/2023-icon-library/air/nscratch1.png b/public/2023-icon-library/air/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..3340c288e062ad0a6c1bcfcc65350635d8f9b128 --- /dev/null +++ b/public/2023-icon-library/air/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b1ae897ab27bbe0146c03105b6405435d5b6ce1e4954ee80838e6907169e91 +size 318 diff --git a/public/2023-icon-library/air/nscratch2.png b/public/2023-icon-library/air/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..db25e224865f7a7df0129e0ebb13820bc936e15a --- /dev/null +++ b/public/2023-icon-library/air/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f3e617efb470544de1c77c1cb0b481c9439168233c795933f2b5fe9a76c5ec +size 316 diff --git a/public/2023-icon-library/air/nwrun1.png b/public/2023-icon-library/air/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2787b17e64c042790684bdcdf8359c6085d58b67 --- /dev/null +++ b/public/2023-icon-library/air/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4138fc03d0da584bc9f88813c8984e9721ffc23c3686986ef31df3d550df41 +size 300 diff --git a/public/2023-icon-library/air/nwrun2.png b/public/2023-icon-library/air/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5fede84ea3faf882e9deb68a238528e302a4cb --- /dev/null +++ b/public/2023-icon-library/air/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cc1c7d253f1c6f5fd4634903cd646c1e470689fba4418c0a4243a6180e4da5 +size 325 diff --git a/public/2023-icon-library/air/serun1.png b/public/2023-icon-library/air/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..cd4b8f503f4a50933b55258133d871d10caaf40a --- /dev/null +++ b/public/2023-icon-library/air/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e97c72ea364a88cdad6e27ec56e77163f6980c0b2866d953b54e6b51648adf +size 331 diff --git a/public/2023-icon-library/air/serun2.png b/public/2023-icon-library/air/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc808cb9fd41caa58e0fb03b39e244dad24397b --- /dev/null +++ b/public/2023-icon-library/air/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4c9a34453fd59d0a7423751899785e4860fd5cfb740e376078662c0906c397 +size 322 diff --git a/public/2023-icon-library/air/sleep1.png b/public/2023-icon-library/air/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..fce3f3ccf910efb5595d12423477a94a061f2118 --- /dev/null +++ b/public/2023-icon-library/air/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0753c2a63bbc972802bf7dbe18df130a953ab94c98fb38e70ba269a271d405cd +size 258 diff --git a/public/2023-icon-library/air/sleep2.png b/public/2023-icon-library/air/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..9840ff7dedc6253bceeb090ff001461070b3962e --- /dev/null +++ b/public/2023-icon-library/air/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c4c1794b58b8645c83f3d83715014e39a02f5164a1494b3dd34c37d348d52f +size 253 diff --git a/public/2023-icon-library/air/srun1.png b/public/2023-icon-library/air/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a61ae4021c3cadf798cb1f02b36a6bbd202dff55 --- /dev/null +++ b/public/2023-icon-library/air/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fab4360454ae010bfc2ca187f4ef3a13666d4a4bf8410c6951b200c499084f3 +size 290 diff --git a/public/2023-icon-library/air/srun2.png b/public/2023-icon-library/air/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..301315b40d43614ca971d915eb2356f967e2de3e --- /dev/null +++ b/public/2023-icon-library/air/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dcf63408be2b2df037df3e6204400a129c8403692cb43c53be95ab7b40af229 +size 327 diff --git a/public/2023-icon-library/air/sscratch1.png b/public/2023-icon-library/air/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..11d7b53f900dafb805b3c5b122062144b393e9b1 --- /dev/null +++ b/public/2023-icon-library/air/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e272eb3a790b95f2aceab9055dea7acb3f8b32026cf26bf42555d7534f7234 +size 317 diff --git a/public/2023-icon-library/air/sscratch2.png b/public/2023-icon-library/air/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1c64e99585cf6ad0d9b7926a3f8753fc3dd41540 --- /dev/null +++ b/public/2023-icon-library/air/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad40c1983db958861255df15f078db310fe5cfe55ad30fdf60c270a844f3b31 +size 318 diff --git a/public/2023-icon-library/air/still.png b/public/2023-icon-library/air/still.png new file mode 100644 index 0000000000000000000000000000000000000000..f48077ae606b8d4c1dc90189c3512c88ec819a68 --- /dev/null +++ b/public/2023-icon-library/air/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d62401aadcf7368d1e3e764487f0bb90f0cd6e743d0b9a51a23764aa51cf6c4 +size 311 diff --git a/public/2023-icon-library/air/swrun1.png b/public/2023-icon-library/air/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..46e2148ebd41e1e1757832e3cc1a6dfefcaf5ead --- /dev/null +++ b/public/2023-icon-library/air/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7266a61f6abc28fd094b9ada1b788e1ae488edd64caad6ac7cbfa12a58d1a7a1 +size 315 diff --git a/public/2023-icon-library/air/swrun2.png b/public/2023-icon-library/air/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b50bf23bcd803154f26f92b47f2971e0d32d28b --- /dev/null +++ b/public/2023-icon-library/air/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee6198dc4f6d18924364e47ca2cc7f89a5f33d79da646b705bbd5d1a0cd5e79 +size 326 diff --git a/public/2023-icon-library/air/wash.png b/public/2023-icon-library/air/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..39954e54b29c1aa167cc57ec029f42fbe72f15b7 --- /dev/null +++ b/public/2023-icon-library/air/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9979ec5beea776e62c23fd80e34255e6e287b31f839d8fc799620225773f5a0f +size 331 diff --git a/public/2023-icon-library/air/wrun1.png b/public/2023-icon-library/air/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd97b6b8cdb1a139d35112b0c61da8fb68409b65 --- /dev/null +++ b/public/2023-icon-library/air/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8efddce5d21645f3fd8412bc1377422fbf484cf51cb32d82a757f98bbcc1a63 +size 313 diff --git a/public/2023-icon-library/air/wrun2.png b/public/2023-icon-library/air/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..6a71c75e0e81dad762e9049f19286deca2edf97c --- /dev/null +++ b/public/2023-icon-library/air/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccb7ac04623a14184cf33f2541ac2a55ce40cb96a0cf86329067f7cb32f5333 +size 307 diff --git a/public/2023-icon-library/air/wscratch1.png b/public/2023-icon-library/air/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..656b04416ac68b787af6ac18badd1d64da31670c --- /dev/null +++ b/public/2023-icon-library/air/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c0fce35d933fe02250da3b6fd9160a0a04d18399d3a70d2dead669032d555a +size 305 diff --git a/public/2023-icon-library/air/wscratch2.png b/public/2023-icon-library/air/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..69e0ef05bf4f66eb7c8f7e5320845464761056aa --- /dev/null +++ b/public/2023-icon-library/air/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14578c40700e165d3cec431828c8b121fca12a39645360c6e975b1b298f9de8e +size 285 diff --git a/public/2023-icon-library/air/yawn.png b/public/2023-icon-library/air/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..609ec4c25ec72a09db63d1ab841844e82ff3ba6a --- /dev/null +++ b/public/2023-icon-library/air/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae099ee421b3e39895cb15e044fe0b89ce4b2f07963b881285d7e4d8bb815010 +size 323 diff --git a/public/2023-icon-library/black/alert.png b/public/2023-icon-library/black/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..64e9bfe0b1536b80e45be3c351b9bf6c5c9fcad8 --- /dev/null +++ b/public/2023-icon-library/black/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9577eb9762c2e9752900955f2ed60d4a28c3a23996dc75a37ffa261ff7ba2c3 +size 305 diff --git a/public/2023-icon-library/black/erun1.png b/public/2023-icon-library/black/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..98401ec6b0a738531565209677467778bf6d0f71 --- /dev/null +++ b/public/2023-icon-library/black/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f19cbeb1cf4e53da2340039a76501473a09d088dad52dab4cc9f178109a07a69 +size 291 diff --git a/public/2023-icon-library/black/erun2.png b/public/2023-icon-library/black/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b88b36ff131a9e6e0e8518bf7d1853ef3b8369c --- /dev/null +++ b/public/2023-icon-library/black/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca457ae0488a06b8e2d698baa9427ed740c5c76bf4757008095d0c59a0d7216 +size 275 diff --git a/public/2023-icon-library/black/escratch1.png b/public/2023-icon-library/black/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..efa63d8e2021729f5aea18e68c6176b2ca7be272 --- /dev/null +++ b/public/2023-icon-library/black/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d4e3a3ec9841e960f1732b1e0fc6b99089e483fa6220d7862962355fc57fc8 +size 272 diff --git a/public/2023-icon-library/black/escratch2.png b/public/2023-icon-library/black/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..bbd8ebc83c7d3dabff5c6e1e0d1297985a255153 --- /dev/null +++ b/public/2023-icon-library/black/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e000c60a9a4f7eab647ed6e0641733ce11344157dd4df6a8c09c2f9c1e44c7e5 +size 268 diff --git a/public/2023-icon-library/black/itch1.png b/public/2023-icon-library/black/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d04a1ba835018ea731d2fb0fd403541581476e32 --- /dev/null +++ b/public/2023-icon-library/black/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a407457b3304d40699941806740bd33159f95f4e76c346bfff36775412d835 +size 280 diff --git a/public/2023-icon-library/black/itch2.png b/public/2023-icon-library/black/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a10b854a7755b1e5eb5353e1c8f2061731879736 --- /dev/null +++ b/public/2023-icon-library/black/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17ea6a170f186e79dd9afe84c6ef33ff839d23bef07c72ca9cbd7d5915a67c3 +size 266 diff --git a/public/2023-icon-library/black/nerun1.png b/public/2023-icon-library/black/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..77b401801af658cb187a4bff30cb3be328a192d8 --- /dev/null +++ b/public/2023-icon-library/black/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7acdcbeffc62b7476910b8f5be34b74e6bff4c63d937d56892cc77400943702 +size 267 diff --git a/public/2023-icon-library/black/nerun2.png b/public/2023-icon-library/black/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8ea4d65b8f0b8647a1a8bf8e71140c17cb1c33 --- /dev/null +++ b/public/2023-icon-library/black/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c880e935b46f1581468ca207344ed7744a461098fca4dfe7ca561c16ac4528ec +size 281 diff --git a/public/2023-icon-library/black/nrun1.png b/public/2023-icon-library/black/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ad16bc341f39e49875be145797ed1e7b51e9b9 --- /dev/null +++ b/public/2023-icon-library/black/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7db19c8a64ef3115826bc80400a8936aeb5d1b57e464970b6c49d776885a6a +size 245 diff --git a/public/2023-icon-library/black/nrun2.png b/public/2023-icon-library/black/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a0fefdc780a9fbb818d491f5df23c35e1e1cd463 --- /dev/null +++ b/public/2023-icon-library/black/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7257cb0149900911f9ece8395f429543cf7e4db506fa4d0b8600faa49cadd6c2 +size 269 diff --git a/public/2023-icon-library/black/nscratch1.png b/public/2023-icon-library/black/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..59d4904ec1b7cd753d36927cdee46efa691b4a76 --- /dev/null +++ b/public/2023-icon-library/black/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdce3e6235ec7f3a5995ed2bc57f8df836fef41b6a9d68cdf1e3103608f86769 +size 290 diff --git a/public/2023-icon-library/black/nscratch2.png b/public/2023-icon-library/black/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..b31aa7afdcb1cd68a463a48e9e064d88d4d26262 --- /dev/null +++ b/public/2023-icon-library/black/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574fc49d8f2dc0470edb582f73043f1ce24a22f7e27ed3cb42cb36e8004d90a5 +size 286 diff --git a/public/2023-icon-library/black/nwrun1.png b/public/2023-icon-library/black/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..245323c09d23abd1d7379e10bccde500848fc1b4 --- /dev/null +++ b/public/2023-icon-library/black/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8b5a5612fcb291ff24799393d56b0e3cc37a5bbf1fa0c11ec5309607340a0f +size 260 diff --git a/public/2023-icon-library/black/nwrun2.png b/public/2023-icon-library/black/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..98b2f215f950d9a43bc225171f8c7bcf7cc04910 --- /dev/null +++ b/public/2023-icon-library/black/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e8950421dace6b1be6cbbc69fe7e889e6b0d76ccc1b48544458ab3c772067a +size 287 diff --git a/public/2023-icon-library/black/serun1.png b/public/2023-icon-library/black/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..29d3962351facd6e38a2a540f40363c6c978e205 --- /dev/null +++ b/public/2023-icon-library/black/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96c3e7599bd49d2a93a76f47ca43eb361bd5fb17b555139c6c069a74cd6c492 +size 273 diff --git a/public/2023-icon-library/black/serun2.png b/public/2023-icon-library/black/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..897b38003d3ac5648ac846f552e292b345347ea1 --- /dev/null +++ b/public/2023-icon-library/black/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0a74c4546883fd3d2469dae52de7e194ef4cd1eb9f759a4709c25d34d5bd41 +size 291 diff --git a/public/2023-icon-library/black/sleep1.png b/public/2023-icon-library/black/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..b54aacf4bba79fc9249d4606407d9307c1fb8c2d --- /dev/null +++ b/public/2023-icon-library/black/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11049f2cf409a90fc80c82a359a4bf94d4cae537d87fff6de35fab6d1157799 +size 239 diff --git a/public/2023-icon-library/black/sleep2.png b/public/2023-icon-library/black/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..854ea857a894a7f1ef49d7b0d4322953999a2f45 --- /dev/null +++ b/public/2023-icon-library/black/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b20e5498ab28a0a43a7f07d3edd1dc17a3db3fe28b5058b9a911008cf875247 +size 241 diff --git a/public/2023-icon-library/black/srun1.png b/public/2023-icon-library/black/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..760bf40d2169682bf47d021ec6a6b8aaba27c81a --- /dev/null +++ b/public/2023-icon-library/black/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b664f179c5c274cc70fb6841d3abc231476581e14959b57d3d2c51d3b0300642 +size 267 diff --git a/public/2023-icon-library/black/srun2.png b/public/2023-icon-library/black/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f6db9f987bb8ea752cdc5232ea121ae339d54ab --- /dev/null +++ b/public/2023-icon-library/black/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82511d390d4ce556ee7130fe7713a79c14c8475e0531de4dd22fc50700fb958 +size 286 diff --git a/public/2023-icon-library/black/sscratch1.png b/public/2023-icon-library/black/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea22dd95503d3e864e7bee303e6de6c6f6e96e8 --- /dev/null +++ b/public/2023-icon-library/black/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f87df4890ad8d934b38d694c16cb608b8b53c6a84640cc57fe64b80ca2be53 +size 270 diff --git a/public/2023-icon-library/black/sscratch2.png b/public/2023-icon-library/black/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5cfe2fbbb057e96c93863223335e1b2344d4cca6 --- /dev/null +++ b/public/2023-icon-library/black/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c4c6ee9dbd3d22ad9af24d197a58123525911de2beefa7f011d434bd2ce9e7 +size 271 diff --git a/public/2023-icon-library/black/still.png b/public/2023-icon-library/black/still.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe35272188b623611c4996672a246e126c18bb6 --- /dev/null +++ b/public/2023-icon-library/black/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0597da91e025e9cf97f4bcd2547948000f98e81383bb2ac8a90d6b9f5fecc7a2 +size 260 diff --git a/public/2023-icon-library/black/swrun1.png b/public/2023-icon-library/black/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c8412970baebe44c4721a76a3f7653cafc46e102 --- /dev/null +++ b/public/2023-icon-library/black/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee933e7ef2bbbb8b817603fabd94ba32c6ece86ba1ffc47e83a4c33015aa827 +size 265 diff --git a/public/2023-icon-library/black/swrun2.png b/public/2023-icon-library/black/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..07ae7ea9b96c3f1d86f578a006bfcb382fa3ae84 --- /dev/null +++ b/public/2023-icon-library/black/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6eaa103b7ce265b2b9f3b1529a6b35756673ab4badeb84a4fb67e28abec538 +size 294 diff --git a/public/2023-icon-library/black/wash.png b/public/2023-icon-library/black/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..9761dc1646cdedf154f6ba64e74530920c3b8be9 --- /dev/null +++ b/public/2023-icon-library/black/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604e43e3f434d65b0d57aa22dee7cd89bb67d0762e648d007c161d80f98e4a51 +size 238 diff --git a/public/2023-icon-library/black/wrun1.png b/public/2023-icon-library/black/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e1cfec16cede9676e8134ac6bb99b0fa6264c03 --- /dev/null +++ b/public/2023-icon-library/black/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1cd8810523a4bb45c87cd1e13d834613ccf71618e7364be404c83250ef95a9 +size 283 diff --git a/public/2023-icon-library/black/wrun2.png b/public/2023-icon-library/black/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8cdbe9088455c2f24f6dc4b118799738a2bad61f --- /dev/null +++ b/public/2023-icon-library/black/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863caa68be80cd000edaeded764710f86e0a5d70847d345afde4ac4e152f98b0 +size 270 diff --git a/public/2023-icon-library/black/wscratch1.png b/public/2023-icon-library/black/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..00a5976d150fc5e9ffe91a5cd781d766c6d9a4df --- /dev/null +++ b/public/2023-icon-library/black/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65d930063077cf3d33d6ffd30705b0455685169dd5bf5429f616f1ab45ebdd3 +size 281 diff --git a/public/2023-icon-library/black/wscratch2.png b/public/2023-icon-library/black/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf4ddfb2f4441dc0365f762c62c58c6c98a5285 --- /dev/null +++ b/public/2023-icon-library/black/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a396e5db62f6f669513834cd626edc18816e4bf1d3bdc694a4b5e18bc7a2c75f +size 260 diff --git a/public/2023-icon-library/black/yawn.png b/public/2023-icon-library/black/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..4069c97b0dd472276ee0394be1fc86053bac1690 --- /dev/null +++ b/public/2023-icon-library/black/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2dc4cd02ccab3a1d030eb481a70c82c410ce26c03a2dac0a14db9adb096ab2 +size 286 diff --git a/public/2023-icon-library/black2/alert.png b/public/2023-icon-library/black2/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..d6656cc61d970433b5ce07d987237e2fe1ab2777 --- /dev/null +++ b/public/2023-icon-library/black2/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655700799c18b8aed0263678facfa3ac236c91892c7c860873ab61c728632cd5 +size 258 diff --git a/public/2023-icon-library/black2/erun1.png b/public/2023-icon-library/black2/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..080e6277d8ca27026d8eedaaf71031be1f2b945b --- /dev/null +++ b/public/2023-icon-library/black2/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bbd1ffd354c2e50b50302461d19f4d1debbf545aa98d0f1cb2dd4df34110ce +size 244 diff --git a/public/2023-icon-library/black2/erun2.png b/public/2023-icon-library/black2/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8394073382072ce7e8f23409f9a96740afcc2543 --- /dev/null +++ b/public/2023-icon-library/black2/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0faf3561687882995a48ba294191534ac5a5178345f34fd1e7c9ec1ecbf30956 +size 239 diff --git a/public/2023-icon-library/black2/escratch1.png b/public/2023-icon-library/black2/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8b637588f0ecc8572c2196c86b04e86768f14436 --- /dev/null +++ b/public/2023-icon-library/black2/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903e9b8f9e0a6dd76454e948139a4d9482e26d5cf9789e0d7ba99f55c0a81858 +size 230 diff --git a/public/2023-icon-library/black2/escratch2.png b/public/2023-icon-library/black2/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e9ac376bb8f4a1ad46ddb81a6b03b812acb2ae0 --- /dev/null +++ b/public/2023-icon-library/black2/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc2656bb6ed1062e886be5820aaaadbf1769de3865e2d6f15dba1870488c1c9 +size 242 diff --git a/public/2023-icon-library/black2/itch1.png b/public/2023-icon-library/black2/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..325ed73bd3f8901b251a3f36151d8c9a3962c8f6 --- /dev/null +++ b/public/2023-icon-library/black2/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a6588899599bf4c6b5562ae528278e714399da064f0e5320923514a15e5a53 +size 235 diff --git a/public/2023-icon-library/black2/itch2.png b/public/2023-icon-library/black2/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0b2ba7b6c55c4ea1612a8b46ab37b6416bf920 --- /dev/null +++ b/public/2023-icon-library/black2/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db37532b4e31037bef1978750e120fcb51fbc5fa64351642d410bcb5a5c6f985 +size 223 diff --git a/public/2023-icon-library/black2/nerun1.png b/public/2023-icon-library/black2/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..43d6d75acfdb5118bc58f36d06db118eaf57dee3 --- /dev/null +++ b/public/2023-icon-library/black2/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3ea95dacc00993e55ef2ee71f612db91e89f987e4db680fa8408c92ad7d984 +size 232 diff --git a/public/2023-icon-library/black2/nerun2.png b/public/2023-icon-library/black2/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f26179579e7c0dbb2aab9a499d530e20bf94a046 --- /dev/null +++ b/public/2023-icon-library/black2/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d13c6b84e254b55fd8a8b4eb42d38ad85975148df51167df9bb58bec96588e +size 254 diff --git a/public/2023-icon-library/black2/nrun1.png b/public/2023-icon-library/black2/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..19c146a9dce50e772d118d068fe5584ee0a44e30 --- /dev/null +++ b/public/2023-icon-library/black2/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0471e871f92c1657363fe12850de74513a16461a903d6360260dfcc9022a5515 +size 231 diff --git a/public/2023-icon-library/black2/nrun2.png b/public/2023-icon-library/black2/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..691dc928883b4b1ea2af6b81c994b8200893483d --- /dev/null +++ b/public/2023-icon-library/black2/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7644887d5009036a6c20aae44d76f9c903993250e392c9a21f7a5cd3b646c5 +size 247 diff --git a/public/2023-icon-library/black2/nscratch1.png b/public/2023-icon-library/black2/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf75a3d5fcbcec354a160ada78ef771a46df33b8 --- /dev/null +++ b/public/2023-icon-library/black2/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b1d642612ff89789bd94ba116d91a88c30ab9422cb5186dda6a8a891382aba +size 253 diff --git a/public/2023-icon-library/black2/nscratch2.png b/public/2023-icon-library/black2/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..3abf44ab3c5076212a338074f51ab21ea35c0ab1 --- /dev/null +++ b/public/2023-icon-library/black2/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd3cba3e4e003ddddedae3726d062f6e3b014a34029c1cd70239146fe7e0455 +size 249 diff --git a/public/2023-icon-library/black2/nwrun1.png b/public/2023-icon-library/black2/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3a43b5fc972037c9571674d37c3c5016248c103b --- /dev/null +++ b/public/2023-icon-library/black2/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39c7161bd309fc479b2874b5ae26ad794c2ca54fe01d71478829815abd94360 +size 228 diff --git a/public/2023-icon-library/black2/nwrun2.png b/public/2023-icon-library/black2/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..32d29404768844178a1273d15a5e9660d5be35eb --- /dev/null +++ b/public/2023-icon-library/black2/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fd51fb2824049eee7c22befb4de6e719a0364eb4bc93b18d702d9e8b8c2636 +size 253 diff --git a/public/2023-icon-library/black2/serun1.png b/public/2023-icon-library/black2/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf5b554ba53073be7333a239dd82ed1dd71576c1 --- /dev/null +++ b/public/2023-icon-library/black2/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b0cc9e4b1a1f458435701c4c2e9a2cfd0b0b120d061bbf1347a9752fe15f2a +size 247 diff --git a/public/2023-icon-library/black2/serun2.png b/public/2023-icon-library/black2/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b0d7166813a454fba07bb706c1427454f863652 --- /dev/null +++ b/public/2023-icon-library/black2/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd8d088dab41ac006647154850a9d19f434ecdd906f4bb84ebb5eda0d6a0bdf +size 250 diff --git a/public/2023-icon-library/black2/sleep1.png b/public/2023-icon-library/black2/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..b312b2629f689127e563a51546f3f3b7164cda59 --- /dev/null +++ b/public/2023-icon-library/black2/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc1950e086e6ddde1905f59d6c508a9932446b6d8881cbaa88057fe0c0fd781 +size 206 diff --git a/public/2023-icon-library/black2/sleep2.png b/public/2023-icon-library/black2/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..e314a06fc0a035f20a1a755f9714e5b2ca77c724 --- /dev/null +++ b/public/2023-icon-library/black2/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee408cc5f7a1ba9597db8afc5661e09a795dbecaa0844d18a93d61d0689581b3 +size 205 diff --git a/public/2023-icon-library/black2/srun1.png b/public/2023-icon-library/black2/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..22a45e08fa4e5135fc0632f6a281d2ee01927502 --- /dev/null +++ b/public/2023-icon-library/black2/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761fc782ea7d20e8dbfd5df27f46a3c6ad85acd527936cb165d3b8ea0d2dd095 +size 224 diff --git a/public/2023-icon-library/black2/srun2.png b/public/2023-icon-library/black2/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6bb51f863f4ee8cb9f63686deab77bf3b8e73ec --- /dev/null +++ b/public/2023-icon-library/black2/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e9046841c48b849a58a4b5f9840c2fcc2967b9f4d6884e1194cac329827c64 +size 250 diff --git a/public/2023-icon-library/black2/sscratch1.png b/public/2023-icon-library/black2/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a3eae9de014797a17d5ad59d7d936c4036171bd6 --- /dev/null +++ b/public/2023-icon-library/black2/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7873592e37c53a6dab29e2fe651a0a8f55c3f9ad8e27f53d34ac9c2068744d4 +size 233 diff --git a/public/2023-icon-library/black2/sscratch2.png b/public/2023-icon-library/black2/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..bb708fece489b330ad40dcf40f8fd9448b0b2483 --- /dev/null +++ b/public/2023-icon-library/black2/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa3d7b1600ee72c28219e74fe0af8734c3d1e32f953eb283b489621eb23d805 +size 228 diff --git a/public/2023-icon-library/black2/still.png b/public/2023-icon-library/black2/still.png new file mode 100644 index 0000000000000000000000000000000000000000..72ad260fedeb96e23e6d4f7448f548be69c8b57a --- /dev/null +++ b/public/2023-icon-library/black2/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b80a7b29718f1fdc43ccd536554bd0209addb56608f3aebc7a7e1f8aebe7856 +size 232 diff --git a/public/2023-icon-library/black2/swrun1.png b/public/2023-icon-library/black2/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f7e075f75d7ead60481f20bcb7800d90fc60a798 --- /dev/null +++ b/public/2023-icon-library/black2/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39cd1ccc5faa962f4cad48e58833b7c98e790e36e7c57d042fdd7cae57efb2b +size 247 diff --git a/public/2023-icon-library/black2/swrun2.png b/public/2023-icon-library/black2/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f00f34ca9aa431345db2616fd71c9cef9845c33f --- /dev/null +++ b/public/2023-icon-library/black2/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa74d5ae27836b7e3ac8a4dc3c25a9d75f769b5d0e8d66caa872f760dd86bbba +size 254 diff --git a/public/2023-icon-library/black2/wash.png b/public/2023-icon-library/black2/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..1dcdc7439d764a5d9a4cae864b64a56afe95fc10 --- /dev/null +++ b/public/2023-icon-library/black2/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7604ebb5b13812c403f872bd50b491ae57f289e29b8a6da74cd63be4516003ec +size 249 diff --git a/public/2023-icon-library/black2/wrun1.png b/public/2023-icon-library/black2/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..250532e2cbf34566c50c8b8e7e9aa3f0b18ab2d8 --- /dev/null +++ b/public/2023-icon-library/black2/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868212d0921b2b176422f5dc84406d100fbe637d798fcdbef7c3366f9c8da39c +size 245 diff --git a/public/2023-icon-library/black2/wrun2.png b/public/2023-icon-library/black2/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..02f0dfc351363c584644ef53e0babccd50eac0be --- /dev/null +++ b/public/2023-icon-library/black2/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93eb802c96e0e2404fa3a234d5048e4af6c1e2596de3e1bab3caf923cc564783 +size 230 diff --git a/public/2023-icon-library/black2/wscratch1.png b/public/2023-icon-library/black2/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e391a2df3abcbc46d5d4c32ced0a7330c514f1 --- /dev/null +++ b/public/2023-icon-library/black2/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc2a7dbef9d0c2d2da26f81061941b896ffc4efd82a47dbd227c6054d561b58 +size 231 diff --git a/public/2023-icon-library/black2/wscratch2.png b/public/2023-icon-library/black2/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..510a98a8eb5cd2aace1248eb9308af04b13b09bd --- /dev/null +++ b/public/2023-icon-library/black2/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf505b488e450d6352dd6e8cbe075764aa55ffd820ca83573a9674658de5e80 +size 242 diff --git a/public/2023-icon-library/black2/yawn.png b/public/2023-icon-library/black2/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..9855c1f0b28502a891f401892df770e222f8a276 --- /dev/null +++ b/public/2023-icon-library/black2/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad32cdd31eb66a7952e49b36384f019fb6c34595f8fbbc99a8939ac1e4280bf +size 253 diff --git a/public/2023-icon-library/blue-tabby/alert.png b/public/2023-icon-library/blue-tabby/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..3fb8fdf6f25104c4cbf0ef5826fed83ed77febb1 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733c521da27f373df225f059c70402a3f8b4960ddb6b14b2636c952b96d7e04a +size 254 diff --git a/public/2023-icon-library/blue-tabby/erun1.png b/public/2023-icon-library/blue-tabby/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3706a3db429c4bc1923872c9f36ffca888aacc36 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b10c7cce6fa1ea2fada2df533c229945c74add9eb6e29b0e0bd888224c2bc0b +size 249 diff --git a/public/2023-icon-library/blue-tabby/erun2.png b/public/2023-icon-library/blue-tabby/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d2723619d7c0c226b85b0d4d8e09c4f9300156e --- /dev/null +++ b/public/2023-icon-library/blue-tabby/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d24a62a41d83f222cabeeaf359e87745df6e848f28390ab4ac7c6132bd41a6 +size 247 diff --git a/public/2023-icon-library/blue-tabby/escratch1.png b/public/2023-icon-library/blue-tabby/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0c40ccf0115b75fe114cb60011528674cd72055f --- /dev/null +++ b/public/2023-icon-library/blue-tabby/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185f43b8da7fd671a6f9fb2e132443d14e5f83149accefca6f1d57f62fc84794 +size 240 diff --git a/public/2023-icon-library/blue-tabby/escratch2.png b/public/2023-icon-library/blue-tabby/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd06bfcaf90e8ee529e3a8106e37fde8067e9c4d --- /dev/null +++ b/public/2023-icon-library/blue-tabby/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2d42e77acd5d21aa5896265c46c8cb64457e0e5c1474c93fc668962d4f2a6d +size 239 diff --git a/public/2023-icon-library/blue-tabby/itch1.png b/public/2023-icon-library/blue-tabby/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a3d691622dfd2ba8a836782ab2b4392306611ba2 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9818cf2d46946969b82ad6a1cc327fdb2b5b0229c943843ed228c1deca3a81f7 +size 244 diff --git a/public/2023-icon-library/blue-tabby/itch2.png b/public/2023-icon-library/blue-tabby/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..37db98cb53c61b2867452960ba9ae5933cde8810 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c0b662508fc514430446d1ddb1a7889acdf2268255aa0c748ff77b872d3395 +size 230 diff --git a/public/2023-icon-library/blue-tabby/nerun1.png b/public/2023-icon-library/blue-tabby/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f58b949a18c153ca555264cded799baf9dba7797 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa2f74aa12e71c36975ada115617c0e6ddef85e6d5bdaa9e530298be94896f5 +size 245 diff --git a/public/2023-icon-library/blue-tabby/nerun2.png b/public/2023-icon-library/blue-tabby/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0737db987db1451ac5933c7cfe68dbc5ecc6d0bf --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e7d948e108168975e180d3dde4028e6c90ff99b8a812e6ce756371d88b77bf +size 255 diff --git a/public/2023-icon-library/blue-tabby/nrun1.png b/public/2023-icon-library/blue-tabby/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..faba14b341f894ba2f6ea962eb9e619e08b52cb6 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64bee7fd08872b46c881c4300b383e7a09be656210ac3874f4ec6051e4c28c00 +size 236 diff --git a/public/2023-icon-library/blue-tabby/nrun2.png b/public/2023-icon-library/blue-tabby/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..afcad960e0e3e4ce359ea59b9177489dcd961713 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247226a4ececa0d0a17011976082eeac6758643d11d766157cbda774574d68a5 +size 236 diff --git a/public/2023-icon-library/blue-tabby/nscratch1.png b/public/2023-icon-library/blue-tabby/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f2fd7e3f38e8aaf091615eba96edeae07a854dd --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e5d55c7b7807a728b0bd148d99f65424551e1629043ed97cb5e632ded61a6f +size 254 diff --git a/public/2023-icon-library/blue-tabby/nscratch2.png b/public/2023-icon-library/blue-tabby/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9b8e4209e45f54781c88e495a8978c656da57fe5 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f25f73acc53874192a3eed4b1a842f21c8a8050f8bfba0edcb96ff25ff4d9f +size 245 diff --git a/public/2023-icon-library/blue-tabby/nwrun1.png b/public/2023-icon-library/blue-tabby/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..24d8a34bd73736c549f769ba79bf79fea94ee172 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d12512e31593e7ba173dddad6299dad1df173ea7ff6556fe010b412faadff372 +size 244 diff --git a/public/2023-icon-library/blue-tabby/nwrun2.png b/public/2023-icon-library/blue-tabby/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0336ba6154858b42befe64390a43a5a9ddf2d657 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e214fdeff54e1913817dd5bc1ee35e359b7350b5d3e35cbf4e60c4626ad03b3a +size 256 diff --git a/public/2023-icon-library/blue-tabby/serun1.png b/public/2023-icon-library/blue-tabby/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d851baa1ec16cd9f50f4f884b54d6617bae68029 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7e997b523c6498f717c873acc10b74139ae9580c85cbbc3b165f5ecc00b04c +size 249 diff --git a/public/2023-icon-library/blue-tabby/serun2.png b/public/2023-icon-library/blue-tabby/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..41e37085b0227c33619d9b7ffb4df58d67216b8e --- /dev/null +++ b/public/2023-icon-library/blue-tabby/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f2856ee43a9f4c71d47d63b826d2a384942c5ff11a509f21401ec0845f2f92 +size 239 diff --git a/public/2023-icon-library/blue-tabby/sleep1.png b/public/2023-icon-library/blue-tabby/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..3edc609137b23620afee20cf2d0af65ff4fbad7c --- /dev/null +++ b/public/2023-icon-library/blue-tabby/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe685d1770fe68cf4070ee03c06c41c23517c92970059eb84ef23c38b94f5b81 +size 252 diff --git a/public/2023-icon-library/blue-tabby/sleep2.png b/public/2023-icon-library/blue-tabby/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..c87a86534d58bc1ca7ffba96e7138c5bf6fdaa29 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4757cc0288fa1d9a32b7abc9e0115e9b8a89e2eeff760ba47c00907e9dc0ab92 +size 244 diff --git a/public/2023-icon-library/blue-tabby/srun1.png b/public/2023-icon-library/blue-tabby/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd2cfd1fdfe64e66f589fa1d93b32ec40079fb2 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b81f260c4a9aa74d32dc230478d0b83f6303d1cd079679f70138e0d81295282 +size 231 diff --git a/public/2023-icon-library/blue-tabby/srun2.png b/public/2023-icon-library/blue-tabby/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..caeb84fa36c2abc5825982399e8b16f512937e56 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df81aae031e6766d625bd60e716dd63b57cd8ce36a9c8e0781caadd691dd24e4 +size 247 diff --git a/public/2023-icon-library/blue-tabby/sscratch1.png b/public/2023-icon-library/blue-tabby/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe1e0d086d1de06d0e4ee06354ba81681ff73ff3 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a306391822c45ae60d903a80f7b8e6db8ae8cc54e1a17e3434a5d0f234a9d82e +size 239 diff --git a/public/2023-icon-library/blue-tabby/sscratch2.png b/public/2023-icon-library/blue-tabby/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d926d8d0a270e978a8c93991e146c834a68f63a --- /dev/null +++ b/public/2023-icon-library/blue-tabby/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd9e0f5be57f8acadeeab22a802269c1b7ad4b200c76e546bb106e90f5850d9 +size 233 diff --git a/public/2023-icon-library/blue-tabby/still.png b/public/2023-icon-library/blue-tabby/still.png new file mode 100644 index 0000000000000000000000000000000000000000..764603972cc564613a03d149bb3e8849c1aabdd9 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06a5ae454d71ea693ea55e79e26680ef582b2730dde069bce77d5e96cf8162a +size 226 diff --git a/public/2023-icon-library/blue-tabby/swrun1.png b/public/2023-icon-library/blue-tabby/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..66a7ff67651d315afe3ea2dcd6c423c5542cfaae --- /dev/null +++ b/public/2023-icon-library/blue-tabby/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:824ae121bc25c9ee7f623d266cbc736fa1c9dc72c5b5dc4fef65ff6d36d56554 +size 254 diff --git a/public/2023-icon-library/blue-tabby/swrun2.png b/public/2023-icon-library/blue-tabby/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..368228a939040ed6d59be7d86521a99cba3c827d --- /dev/null +++ b/public/2023-icon-library/blue-tabby/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f97abf28d3080a3e2dd8a05008750f5409241df5fb096eda09e5e683b443b2c +size 243 diff --git a/public/2023-icon-library/blue-tabby/wash.png b/public/2023-icon-library/blue-tabby/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..aa779688176bf347b9c2dbf424902388f76b6093 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fef69b20dd56700dfe19e699d7d35d06736daf6c90cc3985b0cbd019f6f0bd5 +size 236 diff --git a/public/2023-icon-library/blue-tabby/wrun1.png b/public/2023-icon-library/blue-tabby/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6d70ac8293c7b0eb06101b39a95e529a9b691932 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b364e6b96ae7d24677bd630b0147fb3fa1f4cc08af8a6d96dc013c0430773a9 +size 247 diff --git a/public/2023-icon-library/blue-tabby/wrun2.png b/public/2023-icon-library/blue-tabby/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a018ed90a7be1b53c3643036954403ff31a75c5 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e32da1751d4237da8d755a3b0f29c8141639392cb7238e21c1bf3a61a7f176 +size 245 diff --git a/public/2023-icon-library/blue-tabby/wscratch1.png b/public/2023-icon-library/blue-tabby/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d9956adccb07b21c585901291cc23643e6206fe9 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a90aa96f22d158be3cda0adc959658b67f3b534db5ec97010c081eabfdf1f0 +size 239 diff --git a/public/2023-icon-library/blue-tabby/wscratch2.png b/public/2023-icon-library/blue-tabby/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c848617e360a94a48fed0531029a9ae78f2d412f --- /dev/null +++ b/public/2023-icon-library/blue-tabby/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:148bb08a8d5881b6c34db1b6b93dc32b74733263ada78611496edc8fed89128e +size 249 diff --git a/public/2023-icon-library/blue-tabby/yawn.png b/public/2023-icon-library/blue-tabby/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..7f09a0e336e817a5e7cb13ace7b6eadc0378a9a2 --- /dev/null +++ b/public/2023-icon-library/blue-tabby/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1952f417a718a38bba271808eece2af5148f6dfbc3f93620abf3add47a5b5d0 +size 246 diff --git a/public/2023-icon-library/blue/alert.png b/public/2023-icon-library/blue/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..431334729c7e742d9954d5bd786359e1523d8cd0 --- /dev/null +++ b/public/2023-icon-library/blue/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1624ea719fcb8e3d53956010c5c2bc3de363eb3cb1654ce74bfa08b149a8216a +size 308 diff --git a/public/2023-icon-library/blue/erun1.png b/public/2023-icon-library/blue/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..35d6e7b1ddab68de2c232263837e48159bfe6284 --- /dev/null +++ b/public/2023-icon-library/blue/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefa06d5818b0360642f7bce41d53dd00b6ade473afc28bdd0bcc1ab8a8e93d7 +size 286 diff --git a/public/2023-icon-library/blue/erun2.png b/public/2023-icon-library/blue/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..59d7dbbfe223761fbf74313b08701da8d90572ab --- /dev/null +++ b/public/2023-icon-library/blue/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe5e34b2e322b0b3b7a0ccf9cec0bf21afa520ac076c7182e0d66469f334095 +size 287 diff --git a/public/2023-icon-library/blue/escratch1.png b/public/2023-icon-library/blue/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..86e1c6f275fefa2c08c628007cae7f0dc2fc2d7c --- /dev/null +++ b/public/2023-icon-library/blue/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5151547d34d06cd50524c624220062f1759882477248e0b4594aafcae2456bc1 +size 294 diff --git a/public/2023-icon-library/blue/escratch2.png b/public/2023-icon-library/blue/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4771116ff58f90276591316f7d047b6bbbbbef --- /dev/null +++ b/public/2023-icon-library/blue/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb89a8a1110193b6336ec345f780f59065b768ddd2fa458a3b64e1088a8f8e6 +size 275 diff --git a/public/2023-icon-library/blue/itch1.png b/public/2023-icon-library/blue/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..87e1528cc845c44b28aaab4fd04d3194bc72a485 --- /dev/null +++ b/public/2023-icon-library/blue/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4390b908da7e1be5401c9061c2a930c77e68c19c8e9690b30820bdee9b6d9bb7 +size 290 diff --git a/public/2023-icon-library/blue/itch2.png b/public/2023-icon-library/blue/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..ce0d3bc4a9140bc19feb77ffa486004a735fbaf3 --- /dev/null +++ b/public/2023-icon-library/blue/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ab1d75f41e608feb915d12699657cf0c5e4bffd5f75ed71bcdf3936de048e0 +size 278 diff --git a/public/2023-icon-library/blue/nerun1.png b/public/2023-icon-library/blue/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4786464db15810221209ccc27c37917f240d4671 --- /dev/null +++ b/public/2023-icon-library/blue/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3881a05b5b4900ed9092ea512691e5c9686d2e27611aca479edc9c70883d660 +size 273 diff --git a/public/2023-icon-library/blue/nerun2.png b/public/2023-icon-library/blue/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..560703ee625d88648f46acd5011d0676b0807c57 --- /dev/null +++ b/public/2023-icon-library/blue/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4242ab0c41d0f6952308c208366c561e7cbf5bd0fe9c60f0c3cd65dfdb24d1dd +size 284 diff --git a/public/2023-icon-library/blue/nrun1.png b/public/2023-icon-library/blue/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f6ce456e761feb96bdc90a59db1ce1c704aa9d5f --- /dev/null +++ b/public/2023-icon-library/blue/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3c8eda7623c50976c0811d807415e74d9b5a1c58678b5285962900be575954 +size 253 diff --git a/public/2023-icon-library/blue/nrun2.png b/public/2023-icon-library/blue/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ecc0944b771f76b85608a23788b263dd0be00c --- /dev/null +++ b/public/2023-icon-library/blue/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085240fa94c2fd2b5dcdcf23f3293e2bbb91903760119eaa962c9ff65e327766 +size 287 diff --git a/public/2023-icon-library/blue/nscratch1.png b/public/2023-icon-library/blue/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..03e03e4d149088f56b96300bd096047718582be0 --- /dev/null +++ b/public/2023-icon-library/blue/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0601463f65149db866b1700fd1337887ac33f58d7d543a04e65ca82538a832 +size 285 diff --git a/public/2023-icon-library/blue/nscratch2.png b/public/2023-icon-library/blue/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e91e7edc912f1016add87d5ae324e650088ab41f --- /dev/null +++ b/public/2023-icon-library/blue/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67a99317b4e35ce38a303e5c12af9d9392af113c190fe17e83c42f94eecfebc +size 273 diff --git a/public/2023-icon-library/blue/nwrun1.png b/public/2023-icon-library/blue/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b13b6301d512994439cf628645c28be69b11f0f --- /dev/null +++ b/public/2023-icon-library/blue/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26207f3e5f038f26b23f96e47943b662788d90ae85815e6db3a3a02fa2b54cbd +size 272 diff --git a/public/2023-icon-library/blue/nwrun2.png b/public/2023-icon-library/blue/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c25be480ab6ae08b4d6df2e987896b98fd12c38e --- /dev/null +++ b/public/2023-icon-library/blue/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2be99a28ba35953003e7e6082522cb25ba799de5aa0848bea51212d98990c0 +size 291 diff --git a/public/2023-icon-library/blue/serun1.png b/public/2023-icon-library/blue/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2af35aa22bac676e7d0a31e231177475d06ff5f4 --- /dev/null +++ b/public/2023-icon-library/blue/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300e8465c4be3da87da15f3d6763c591681b11ea0444ccb83893a062846c1daf +size 290 diff --git a/public/2023-icon-library/blue/serun2.png b/public/2023-icon-library/blue/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd2659d6257baea3f49c015f334ae2ac3e8eea2 --- /dev/null +++ b/public/2023-icon-library/blue/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5164661aa14dd1a227f3c7ded77cf375291f9e1fd0887c4ce721f076e04a80f +size 296 diff --git a/public/2023-icon-library/blue/sleep1.png b/public/2023-icon-library/blue/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..c09404d82687194aa4152c62e357f89480fa45cb --- /dev/null +++ b/public/2023-icon-library/blue/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31861a3ff34daa99260cf02e6901b428221afe75d5264db28341cd62bd0de4aa +size 252 diff --git a/public/2023-icon-library/blue/sleep2.png b/public/2023-icon-library/blue/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c588574b49dba28b083f4adabcc822a76d3fd1 --- /dev/null +++ b/public/2023-icon-library/blue/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ecc23fb51bae4b0eeaed12517f8c69904689d1cf4296beca0c03e64062604d +size 254 diff --git a/public/2023-icon-library/blue/srun1.png b/public/2023-icon-library/blue/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..45cbc7e4ae754fb51346fdf7f9ed6f5e6f28402d --- /dev/null +++ b/public/2023-icon-library/blue/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6224bd8c2632ddd5818312890b6b4be188b26614c9becf0c3a668a3a0ef547be +size 275 diff --git a/public/2023-icon-library/blue/srun2.png b/public/2023-icon-library/blue/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8948df10096b5fcf929ebcf28ea7d32d009f4a30 --- /dev/null +++ b/public/2023-icon-library/blue/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2e2ed80dd46622da308d3ba89e32a2b84f9f3d2314a8c7f2b4ea4aaa0837b3 +size 288 diff --git a/public/2023-icon-library/blue/sscratch1.png b/public/2023-icon-library/blue/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..e806006bd4ff415a9870c8eb3a4b616358e2579c --- /dev/null +++ b/public/2023-icon-library/blue/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96af710bdecc0f028b7e7921da917f1e98186fe4b8de1cd1d4b4eb2d2f213028 +size 276 diff --git a/public/2023-icon-library/blue/sscratch2.png b/public/2023-icon-library/blue/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4539f5ff46acc64c1a1308c709f2efc455a2d537 --- /dev/null +++ b/public/2023-icon-library/blue/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed1a4326d8eb9f748faf19ebc8e10b3fd9acb93fda2fd38f0acc196097be253 +size 274 diff --git a/public/2023-icon-library/blue/still.png b/public/2023-icon-library/blue/still.png new file mode 100644 index 0000000000000000000000000000000000000000..61b5d8a555a58676badb2294a824c187efdaddc1 --- /dev/null +++ b/public/2023-icon-library/blue/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7cfd48d3dd20b10de9e837fce458c294de291895b443d545d48d9be1297082 +size 267 diff --git a/public/2023-icon-library/blue/swrun1.png b/public/2023-icon-library/blue/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1ce4deb3b6cc7f374739076736578b15e4f2de0d --- /dev/null +++ b/public/2023-icon-library/blue/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1790d400840af01b77b75e447e872a3d123cf2f99ec5a365e2f359165b734c1 +size 277 diff --git a/public/2023-icon-library/blue/swrun2.png b/public/2023-icon-library/blue/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e7d8d43cf0e6efdd46abe6623a2f4f5954d2d15 --- /dev/null +++ b/public/2023-icon-library/blue/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8ee3a845b8b1843babadb532cb7a3032e66619986d4363d95220e38563e64a +size 290 diff --git a/public/2023-icon-library/blue/wash.png b/public/2023-icon-library/blue/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..50673038a02e6550b90e98b556a37956b11fc76b --- /dev/null +++ b/public/2023-icon-library/blue/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0614a7b4530b880de5e719f49c0d2bd9e87032bd07c41c1a28a1b4067f50c0e +size 292 diff --git a/public/2023-icon-library/blue/wrun1.png b/public/2023-icon-library/blue/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..33913ea6421bc68b2cb71215349eb429e63f5859 --- /dev/null +++ b/public/2023-icon-library/blue/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be65bbaa54762484146ae543007de60fb324ad1d6a791fa92f5640bfa059bb3 +size 287 diff --git a/public/2023-icon-library/blue/wrun2.png b/public/2023-icon-library/blue/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4f69b3be9a8261014bf9f18e99dd4970c8d99f4d --- /dev/null +++ b/public/2023-icon-library/blue/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f166b6c213194f33c82a42aaaf347a6759cab73723b08500fbb8fae4747a50fd +size 272 diff --git a/public/2023-icon-library/blue/wscratch1.png b/public/2023-icon-library/blue/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5a02d9f1f7f4b02888746769fa5c45992a4a1fe2 --- /dev/null +++ b/public/2023-icon-library/blue/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16c1e0a3d4a4c34e60dc85e78e017df5bba8ea464cceb3fd99906d82a1fd089 +size 290 diff --git a/public/2023-icon-library/blue/wscratch2.png b/public/2023-icon-library/blue/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..978747d28d28f5d4c67703baf9050dab4fe2dcd2 --- /dev/null +++ b/public/2023-icon-library/blue/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae046f2955d1f468601a256d55c43b1eb7fbff0259c605f120737a1c4f34b711 +size 283 diff --git a/public/2023-icon-library/blue/yawn.png b/public/2023-icon-library/blue/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..d84fa7e9af038e35d063df47aef44f8f135b746f --- /dev/null +++ b/public/2023-icon-library/blue/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d20bbb4aedec11ed471e138344d0d9272b87e9632cfb40c67027fc85013ac4 +size 291 diff --git a/public/2023-icon-library/boobookitty/alert.png b/public/2023-icon-library/boobookitty/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..108d9637a6f39164acf618c4cf3ca9361e70478f --- /dev/null +++ b/public/2023-icon-library/boobookitty/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f589ed9eaddb8acb60602d5c3cb06f7f0a210d03b0c37740392542a236c557 +size 274 diff --git a/public/2023-icon-library/boobookitty/erun1.png b/public/2023-icon-library/boobookitty/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2e748af433c0e8026b4b5762f3c2f9a2e3ee7f --- /dev/null +++ b/public/2023-icon-library/boobookitty/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e313499e91fd1df2e29ea51a652aa1e33ca3f44b7178be01a5525f3563309af4 +size 252 diff --git a/public/2023-icon-library/boobookitty/erun2.png b/public/2023-icon-library/boobookitty/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ddbebebb1884665dfe26350242b7ff37868930f1 --- /dev/null +++ b/public/2023-icon-library/boobookitty/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af50e59cedcd114e1fef27d388aece21732fbd5f489858b1efa0c9b33203de1 +size 238 diff --git a/public/2023-icon-library/boobookitty/escratch1.png b/public/2023-icon-library/boobookitty/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4c5f4c817b091891114bd01a121bcd390c187a18 --- /dev/null +++ b/public/2023-icon-library/boobookitty/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a1e83a2849738502ab7ddccdc57faa65fe33ecb6862736c4ee73c2543f5542 +size 227 diff --git a/public/2023-icon-library/boobookitty/escratch2.png b/public/2023-icon-library/boobookitty/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..954d93bbea3678cbad376c5ff124e0d4d2f71961 --- /dev/null +++ b/public/2023-icon-library/boobookitty/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59884286078b7ffe60559c85f4d2e58f9db554cf7c546e3296e42c615aa3e4d +size 244 diff --git a/public/2023-icon-library/boobookitty/itch1.png b/public/2023-icon-library/boobookitty/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..906f3eeed836d6d2d8fd5b4cc5c8a18e9ad0c92d --- /dev/null +++ b/public/2023-icon-library/boobookitty/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db01569c191e6155deb7d0ee7771a31b1429a62e2e6df5a1bc4d53c8ffa1efdc +size 260 diff --git a/public/2023-icon-library/boobookitty/itch2.png b/public/2023-icon-library/boobookitty/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..95d5deb9983e82304b57988840e9d4447f399aaa --- /dev/null +++ b/public/2023-icon-library/boobookitty/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ec4997b26bf18a8839a94ef391ef7bf41080b0e28170c01a9704fc04ffc006 +size 245 diff --git a/public/2023-icon-library/boobookitty/nerun1.png b/public/2023-icon-library/boobookitty/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..43d6d75acfdb5118bc58f36d06db118eaf57dee3 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3ea95dacc00993e55ef2ee71f612db91e89f987e4db680fa8408c92ad7d984 +size 232 diff --git a/public/2023-icon-library/boobookitty/nerun2.png b/public/2023-icon-library/boobookitty/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..74b7e38ae78acd794c75228d752fe9b8acd42b09 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56de53e329006df5d55bf9238796d1ff4c7d7d63fabcb99a1fada831b9659fdd +size 250 diff --git a/public/2023-icon-library/boobookitty/nrun1.png b/public/2023-icon-library/boobookitty/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..84619287d92d018203200ead201a2bff0ec12cf9 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eb3ed004a236f31d97d2c5da2dd174c516cc61904762e5f6162d7ac2909ddd +size 225 diff --git a/public/2023-icon-library/boobookitty/nrun2.png b/public/2023-icon-library/boobookitty/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b81de4fc3644b97b499a1963d60b36b2787a206 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1518913d16e60742219e29782f5ec5bb5bca047bfbef4c925cd5915d1d2229ec +size 241 diff --git a/public/2023-icon-library/boobookitty/nscratch1.png b/public/2023-icon-library/boobookitty/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c48bd761dc47f4d0aa7ee240b0cf67a8a0ce55f4 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714bf0017c1169a0ac07787a9a75866b6ac109cef7397710e787c96c483b37ff +size 248 diff --git a/public/2023-icon-library/boobookitty/nscratch2.png b/public/2023-icon-library/boobookitty/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7036d743fdacac0c3befcb37e5a69012e91d47d0 --- /dev/null +++ b/public/2023-icon-library/boobookitty/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dea131c87d2e5f8fbd92307737aff2d313efec702e228ad5ce072e3e3608ca0 +size 242 diff --git a/public/2023-icon-library/boobookitty/nwrun1.png b/public/2023-icon-library/boobookitty/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3a43b5fc972037c9571674d37c3c5016248c103b --- /dev/null +++ b/public/2023-icon-library/boobookitty/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39c7161bd309fc479b2874b5ae26ad794c2ca54fe01d71478829815abd94360 +size 228 diff --git a/public/2023-icon-library/boobookitty/nwrun2.png b/public/2023-icon-library/boobookitty/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f064fd1bff99861d30c4507d0853510bdee761de --- /dev/null +++ b/public/2023-icon-library/boobookitty/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97bd056174107fb18259e1c2a608732bb670c52c0edb50d06e4d8f4ecb5d180a +size 248 diff --git a/public/2023-icon-library/boobookitty/serun1.png b/public/2023-icon-library/boobookitty/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..766d94ab06e6416b9882a33d7e777d47d7a2b8f2 --- /dev/null +++ b/public/2023-icon-library/boobookitty/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacda40006177fdaff427d4564df544bde87b4df8f47d4b013ab08da5620180b +size 253 diff --git a/public/2023-icon-library/boobookitty/serun2.png b/public/2023-icon-library/boobookitty/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0c510320cebced18a5e6cdf0ab940692dbedc556 --- /dev/null +++ b/public/2023-icon-library/boobookitty/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66674c6c4e57bb203e0106185e9318c990da29996b2eaf15da18d550527b7f51 +size 253 diff --git a/public/2023-icon-library/boobookitty/sleep1.png b/public/2023-icon-library/boobookitty/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..b312b2629f689127e563a51546f3f3b7164cda59 --- /dev/null +++ b/public/2023-icon-library/boobookitty/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc1950e086e6ddde1905f59d6c508a9932446b6d8881cbaa88057fe0c0fd781 +size 206 diff --git a/public/2023-icon-library/boobookitty/sleep2.png b/public/2023-icon-library/boobookitty/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..619f5b89056c11202db0021bb78f96c97e5c8b63 --- /dev/null +++ b/public/2023-icon-library/boobookitty/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451d7bdaab3df09954bbeafa41a9bf98f54bb3b05df70fab24343c13fc33d7a2 +size 210 diff --git a/public/2023-icon-library/boobookitty/srun1.png b/public/2023-icon-library/boobookitty/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b9476874d333cdfa697a4614d807425626612f0f --- /dev/null +++ b/public/2023-icon-library/boobookitty/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cfbdc1bed96c1a0b4cfc9cd69953fdc6ddec71c2451dc7ee5103376d5edb97 +size 226 diff --git a/public/2023-icon-library/boobookitty/srun2.png b/public/2023-icon-library/boobookitty/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b59319f3d3e681b6b7594599e21daa4feee7cfc9 --- /dev/null +++ b/public/2023-icon-library/boobookitty/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3866ad65932543884903665ae0f140d2da034c97025b464ed94862d24221de35 +size 251 diff --git a/public/2023-icon-library/boobookitty/sscratch1.png b/public/2023-icon-library/boobookitty/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..83521bc9b60aeaa90793d78a43171ec1eee9ab69 --- /dev/null +++ b/public/2023-icon-library/boobookitty/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf1826af8329e7547721348ff3df9b57e32fe9668258e4c5f08df73a50de71c +size 233 diff --git a/public/2023-icon-library/boobookitty/sscratch2.png b/public/2023-icon-library/boobookitty/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9859a6d502b78d7b2b698afd60c8a39643415f70 --- /dev/null +++ b/public/2023-icon-library/boobookitty/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e740ab0cf5bc1f18ebb755629504d94e90c88ca5f753d6b882d24aafeb2988 +size 228 diff --git a/public/2023-icon-library/boobookitty/still.png b/public/2023-icon-library/boobookitty/still.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed42307635804bc50e80cb76b76bcf5154a185f --- /dev/null +++ b/public/2023-icon-library/boobookitty/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa490a8bb7e4439de5a7d2dd1bf6ac35cd7d2946945cca7914dd99be6ea32d4 +size 247 diff --git a/public/2023-icon-library/boobookitty/swrun1.png b/public/2023-icon-library/boobookitty/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..28285465691d9bd81af6588130734dde88d8a49a --- /dev/null +++ b/public/2023-icon-library/boobookitty/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c1502d401edb0ad7239d6a6daa878702dc18c7c2b60eaa18f6bb7d2f2baf40 +size 250 diff --git a/public/2023-icon-library/boobookitty/swrun2.png b/public/2023-icon-library/boobookitty/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..699e591302d1e94512d341a5e674cea8f12003a4 --- /dev/null +++ b/public/2023-icon-library/boobookitty/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caca14e820ab5651bec278d630ac30a8a8beaccd8e9af176cb69891a88688a42 +size 257 diff --git a/public/2023-icon-library/boobookitty/wash.png b/public/2023-icon-library/boobookitty/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..39fbecd22e2c13aee763875026d864c38e92b38f --- /dev/null +++ b/public/2023-icon-library/boobookitty/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d87866c5f468f5a78852150a7c940ffbef8cd835405924e001f9fc85271784f +size 257 diff --git a/public/2023-icon-library/boobookitty/wrun1.png b/public/2023-icon-library/boobookitty/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f3efb67c7822b3b87d6990ac82b167f5f76aa7 --- /dev/null +++ b/public/2023-icon-library/boobookitty/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829a5db90c0ac4ad27e0b5bbf30b2bc73477f61bba103f6c9b32c6d9513104f1 +size 252 diff --git a/public/2023-icon-library/boobookitty/wrun2.png b/public/2023-icon-library/boobookitty/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b19b6b2227da42ec765a859af022ff4193b3bc46 --- /dev/null +++ b/public/2023-icon-library/boobookitty/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99725ca436c2f8b8d9347a00bf0e95f5e98c8ad3d5970ec4296ff8408b1950b5 +size 232 diff --git a/public/2023-icon-library/boobookitty/wscratch1.png b/public/2023-icon-library/boobookitty/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..129745ece87ea82c7b5b035098dda2a12c802dcc --- /dev/null +++ b/public/2023-icon-library/boobookitty/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac66c5817302899fd877d6b020895b2945af40556ff2de1a6b2e296aa7b7562 +size 226 diff --git a/public/2023-icon-library/boobookitty/wscratch2.png b/public/2023-icon-library/boobookitty/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..688cd7e3b79c0619f20b3405f7e99b0c75783a07 --- /dev/null +++ b/public/2023-icon-library/boobookitty/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09987a8277fd136da328cb3a23f8823a2ce30a5bb162b80ab58a6a5010507aec +size 241 diff --git a/public/2023-icon-library/boobookitty/yawn.png b/public/2023-icon-library/boobookitty/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..85035e28765ec6db9985747b8ce82d5dec529437 --- /dev/null +++ b/public/2023-icon-library/boobookitty/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71bb0cc0c8bf47e645ec07c1b27e6124737ff70b288024772f9569ff0fe7e66 +size 266 diff --git a/public/2023-icon-library/brown-dog/alert.png b/public/2023-icon-library/brown-dog/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5199f67417ca2d3cfefd1bafb78a6720645c03 --- /dev/null +++ b/public/2023-icon-library/brown-dog/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1913e322daff21d16f68e7cd131c5e0ac6f32d6970bc4938a262877656516dd6 +size 261 diff --git a/public/2023-icon-library/brown-dog/erun1.png b/public/2023-icon-library/brown-dog/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a635c8a157e7480ed9da004f976be3f28d61aa96 --- /dev/null +++ b/public/2023-icon-library/brown-dog/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d45c9f180abb81e782eff5ce1928b8e6ebd3a85510343670fcd1121c229b9f +size 225 diff --git a/public/2023-icon-library/brown-dog/erun2.png b/public/2023-icon-library/brown-dog/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..001665526164959c33b4938935eb6fca3529731d --- /dev/null +++ b/public/2023-icon-library/brown-dog/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84006560c35458b8070d2f89e029442ccc94efab2ecb25937ca09fe8bbb5c912 +size 238 diff --git a/public/2023-icon-library/brown-dog/escratch1.png b/public/2023-icon-library/brown-dog/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c192a1e94826c5bf8dd76fa8efc61819836f1bfc --- /dev/null +++ b/public/2023-icon-library/brown-dog/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d7f26fd3d40c25f3fd0df89c5998066c4dfd317da86489f25ce9716e91acda +size 231 diff --git a/public/2023-icon-library/brown-dog/escratch2.png b/public/2023-icon-library/brown-dog/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..f8b41707e2d5aef388f78c363137753c04f7d9b7 --- /dev/null +++ b/public/2023-icon-library/brown-dog/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57813a1d66d76edf9818a4443d41c651578914613609fee8c87b46332beb2f25 +size 230 diff --git a/public/2023-icon-library/brown-dog/itch1.png b/public/2023-icon-library/brown-dog/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6fcf0dd7acdbef703ad22353d4ce39c689ff4f1b --- /dev/null +++ b/public/2023-icon-library/brown-dog/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bed3bdda6cdd8a0231740fc5b5e0360aa0348d869d168c40998c86670c3384c +size 234 diff --git a/public/2023-icon-library/brown-dog/itch2.png b/public/2023-icon-library/brown-dog/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5872c133f989cc373ef67da884ca8b9df4be0d85 --- /dev/null +++ b/public/2023-icon-library/brown-dog/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f12ec55d9ce86ef371fa312b001636ff58bb088ad77dab0db6dabe0fb5db92 +size 240 diff --git a/public/2023-icon-library/brown-dog/nerun1.png b/public/2023-icon-library/brown-dog/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..170bc8fd13615051bf238d805e28690eefbceb3b --- /dev/null +++ b/public/2023-icon-library/brown-dog/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229af55763e9b84f34d40c63acc81b07537af3f4b6008daf7037cb5d9fda24bd +size 239 diff --git a/public/2023-icon-library/brown-dog/nerun2.png b/public/2023-icon-library/brown-dog/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2a8556a5c7c08f4dd7cfd2f8cb5778f8fb16a15c --- /dev/null +++ b/public/2023-icon-library/brown-dog/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969e1989323637526d5ef017916e57f99a28da5110a4450e1d0c6e7ed7ac480a +size 247 diff --git a/public/2023-icon-library/brown-dog/nrun1.png b/public/2023-icon-library/brown-dog/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e9c571d66f3b1111839364f7d53d594a7b06ede8 --- /dev/null +++ b/public/2023-icon-library/brown-dog/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8878f96b73eb63a43c1e5e88ad42595619e2365f801d55208855afe4486cf343 +size 216 diff --git a/public/2023-icon-library/brown-dog/nrun2.png b/public/2023-icon-library/brown-dog/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..61a04e9ab1895d2c01b3c28ace9054d2d906e6ea --- /dev/null +++ b/public/2023-icon-library/brown-dog/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8381235a60e98e9bb483a6b6ce9a9f1607551a274c8021d44eea2ea2fe46753 +size 225 diff --git a/public/2023-icon-library/brown-dog/nscratch1.png b/public/2023-icon-library/brown-dog/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff73b4e545028b2b577d0fe5cad105407d25d85 --- /dev/null +++ b/public/2023-icon-library/brown-dog/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e59e5bef71b22406b5a628275e9cee19401d247004ef435bfb7ef7469bd15a3 +size 236 diff --git a/public/2023-icon-library/brown-dog/nscratch2.png b/public/2023-icon-library/brown-dog/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e403cf002cb588483ecdd9ca72e95349c518e924 --- /dev/null +++ b/public/2023-icon-library/brown-dog/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3cec6375e10776084e66f65311cfbd03e4f4d81a8756d9a4f6e47f4224f483 +size 233 diff --git a/public/2023-icon-library/brown-dog/nwrun1.png b/public/2023-icon-library/brown-dog/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ee23d9ca994d5ff9bb96e96f681d43fc30ca1726 --- /dev/null +++ b/public/2023-icon-library/brown-dog/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4236e3a66e78a386d2bd753be7030069d923e465f8a536592632d31b05362aa1 +size 235 diff --git a/public/2023-icon-library/brown-dog/nwrun2.png b/public/2023-icon-library/brown-dog/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..de659191ac2d6c3ea4e00c25be74969a5e527556 --- /dev/null +++ b/public/2023-icon-library/brown-dog/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5650347dd6ff6d430e952b37abcf2fabcad5b1a9fc5c60adfba660214b867a6 +size 243 diff --git a/public/2023-icon-library/brown-dog/serun1.png b/public/2023-icon-library/brown-dog/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7b18694bf994a9301d85808e5c227983afc11d5e --- /dev/null +++ b/public/2023-icon-library/brown-dog/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1a73b2fa724be46808e106c983dbab2473b7bd769020929e26ffea23021740 +size 238 diff --git a/public/2023-icon-library/brown-dog/serun2.png b/public/2023-icon-library/brown-dog/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d145de199ed28ff79775b31c41df0042acff01f --- /dev/null +++ b/public/2023-icon-library/brown-dog/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3be3fdf2899ed58ece82014e80dd99ddad72cc87e28b47ced6c3af4fd0169f +size 239 diff --git a/public/2023-icon-library/brown-dog/sleep1.png b/public/2023-icon-library/brown-dog/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..dc1f07ee2d827209b0acd4b9224f58e109061870 --- /dev/null +++ b/public/2023-icon-library/brown-dog/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6cc4f36e91ce7f45fe506e8cb60d26b822cef18a5fa556a5b288fa2367eb602 +size 202 diff --git a/public/2023-icon-library/brown-dog/sleep2.png b/public/2023-icon-library/brown-dog/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..2724e274a2968be7959d3ee3b1fac5e9ed76bb39 --- /dev/null +++ b/public/2023-icon-library/brown-dog/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ca7941916848d286bbdb3f00a661ea1d44193b0c0a68557691b9d513bd520f +size 201 diff --git a/public/2023-icon-library/brown-dog/srun1.png b/public/2023-icon-library/brown-dog/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6eb09f9674343ebb3015a4064e0a4c4b2996fc --- /dev/null +++ b/public/2023-icon-library/brown-dog/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe91a97a5d2d6f3a3bab7d6b767cd1e7ed66d6d05320f29695701bbb31fbff1 +size 224 diff --git a/public/2023-icon-library/brown-dog/srun2.png b/public/2023-icon-library/brown-dog/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3aa44d9730c2ac632a3f81487324ec6a6e757274 --- /dev/null +++ b/public/2023-icon-library/brown-dog/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3343beb00acdf30e458827725c40d860850294f370727623080d9d1fd427b3 +size 227 diff --git a/public/2023-icon-library/brown-dog/sscratch1.png b/public/2023-icon-library/brown-dog/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b881c0f2e1799c561a5a4cef93b8ebe7c8b36665 --- /dev/null +++ b/public/2023-icon-library/brown-dog/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d2ce02980aef4225b2a2a98d75dc2d664daa31f7259083fe83f8bfcfac8c8e +size 230 diff --git a/public/2023-icon-library/brown-dog/sscratch2.png b/public/2023-icon-library/brown-dog/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..decb6123e4ac19092cbda9ec4c64a9f263e9efec --- /dev/null +++ b/public/2023-icon-library/brown-dog/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7e9fdf46cfa20d393115e03588a2de749cc112aa01f8ec7edb65e7c84db0ff +size 238 diff --git a/public/2023-icon-library/brown-dog/still.png b/public/2023-icon-library/brown-dog/still.png new file mode 100644 index 0000000000000000000000000000000000000000..79691426f80f138a15987a7db785abc9d0d4d775 --- /dev/null +++ b/public/2023-icon-library/brown-dog/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbabda29a5fdbf4d2894f5e3f8254fe79d151c2ee5ee468012efbaf1231106a8 +size 235 diff --git a/public/2023-icon-library/brown-dog/swrun1.png b/public/2023-icon-library/brown-dog/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb926776244c56d3dbc74138886f7e1634c1d2b --- /dev/null +++ b/public/2023-icon-library/brown-dog/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613afa6f6ba2d1d0b63b300284b983d7e14232233418b9b32c53ca82e40e1a02 +size 242 diff --git a/public/2023-icon-library/brown-dog/swrun2.png b/public/2023-icon-library/brown-dog/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf57a10558b399ae1d1150bf522b37ea59278929 --- /dev/null +++ b/public/2023-icon-library/brown-dog/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc79cf03de1d4d57da7021e974798aea02bdb5e018c44ea2428e70096c9a646d +size 240 diff --git a/public/2023-icon-library/brown-dog/wash.png b/public/2023-icon-library/brown-dog/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..35e3006f426f0e925e4e200e3abd855a2d29b929 --- /dev/null +++ b/public/2023-icon-library/brown-dog/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b319d93c33b613ae8b60d3e34e7843ce98d362b80043e50726c16d32aeca48c +size 220 diff --git a/public/2023-icon-library/brown-dog/wrun1.png b/public/2023-icon-library/brown-dog/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..af5f47d4ab868f99bb74cdc0b6297658ca762c01 --- /dev/null +++ b/public/2023-icon-library/brown-dog/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8609472d1637f002975fbafa3f0fd8598cc6db9e9d35e98360b74ac67dfbeb +size 227 diff --git a/public/2023-icon-library/brown-dog/wrun2.png b/public/2023-icon-library/brown-dog/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a839f1d1b9987ccf45b57fa0741ee361efb07538 --- /dev/null +++ b/public/2023-icon-library/brown-dog/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50291854dec95cf86058967c12fef3641be9f778647cc2aa9654be5ccb315d2 +size 233 diff --git a/public/2023-icon-library/brown-dog/wscratch1.png b/public/2023-icon-library/brown-dog/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e67d45ceafe2cbfac98e1163f8e54b55cbe4726 --- /dev/null +++ b/public/2023-icon-library/brown-dog/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6d2f2cf2bba94a5192bc7cb444b59ad74177aaeb002c6349320ddf4fb99b52 +size 234 diff --git a/public/2023-icon-library/brown-dog/wscratch2.png b/public/2023-icon-library/brown-dog/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1eeac5c167b16b458b6cd0e307a29d3db2897230 --- /dev/null +++ b/public/2023-icon-library/brown-dog/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f150be817681aca663762b1e3c1a6ee0d05a36faeac2428bb6b573c0cdbfcf99 +size 228 diff --git a/public/2023-icon-library/brown-dog/yawn.png b/public/2023-icon-library/brown-dog/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..e5051ee2c30d4432f7fefd75d1247c5642b18019 --- /dev/null +++ b/public/2023-icon-library/brown-dog/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fdf87d69134307b08278d9123649be793c4d748cfeb1d15ca78c6c9ddb64942 +size 240 diff --git a/public/2023-icon-library/calico-tabby/alert.png b/public/2023-icon-library/calico-tabby/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..07526c83a7474b8dacc62abf439f470299c523ec --- /dev/null +++ b/public/2023-icon-library/calico-tabby/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e088a03e3c5399c233111e1883b03517c0c71dd976293e2d62945c2d9cba671b +size 284 diff --git a/public/2023-icon-library/calico-tabby/erun1.png b/public/2023-icon-library/calico-tabby/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4302cd98e9bdb04a043d61fa0a5b08331fb3c4b4 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f1cd0b06e85923d590ba313c307573c827ef09d9c7a214ea941d9f1119dc46 +size 269 diff --git a/public/2023-icon-library/calico-tabby/erun2.png b/public/2023-icon-library/calico-tabby/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5c749d2b69076791579ce855cda133e5ca12551e --- /dev/null +++ b/public/2023-icon-library/calico-tabby/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14875224d408323278c5b8a9028a2aa5c6b21d92db61d1eaa97f8b2133c81ffd +size 262 diff --git a/public/2023-icon-library/calico-tabby/escratch1.png b/public/2023-icon-library/calico-tabby/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e7c1d161a1a3d92c85ca01a9495d7a65421ac27 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78706140253eb6b54e8177972cac1d2b86f8768dc084d2d492a693fb2e8e6109 +size 243 diff --git a/public/2023-icon-library/calico-tabby/escratch2.png b/public/2023-icon-library/calico-tabby/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e831ea8a82d58642777675f5bfab5a9052da6644 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:064b1728d804f703419cd21ae31b0c7ef75df4b71edbe82b9f30a100d26d961b +size 243 diff --git a/public/2023-icon-library/calico-tabby/itch1.png b/public/2023-icon-library/calico-tabby/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..761083b61a0318af8d15f1ccae43f523b4b43b91 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0567bfd664b1115f5c831a5364dc62712587eebca2b5198f20549da54f6ac1 +size 259 diff --git a/public/2023-icon-library/calico-tabby/itch2.png b/public/2023-icon-library/calico-tabby/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..b5fa8f505a0b055b4a2fd4db46e9cd09bb881219 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1e269102ade61d5515f76bd9d58499e819a0019805d1e345ab8aa9ddeca150 +size 255 diff --git a/public/2023-icon-library/calico-tabby/nerun1.png b/public/2023-icon-library/calico-tabby/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..02e9dd5e15a4a2638d07dcde460317e9af4a23f2 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1954482895d5f89eac1f649fd01e6a714767ee53aeea50814361d5766bafbb5a +size 268 diff --git a/public/2023-icon-library/calico-tabby/nerun2.png b/public/2023-icon-library/calico-tabby/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..74d75a1d853893b9934289c04637f12099fa523e --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8eb71ffff77651ae668a4cc7cbe1ceea486d58c36454a0ef9942082225b8d7 +size 274 diff --git a/public/2023-icon-library/calico-tabby/nrun1.png b/public/2023-icon-library/calico-tabby/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f8254ecabc6f529d556709ea234d567e8cc9158 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320553f4409373ee434c52b4beb3b643db703d036c79e7805a64f902594971a5 +size 260 diff --git a/public/2023-icon-library/calico-tabby/nrun2.png b/public/2023-icon-library/calico-tabby/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d61440c0a14db9ef63ce5d0002bbdefffde9c72f --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f457be075f2d1fb09d10be9026c7bfa88031754112ebdeda80dcadeadda3f613 +size 261 diff --git a/public/2023-icon-library/calico-tabby/nscratch1.png b/public/2023-icon-library/calico-tabby/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..1cadcd8ae2fe937acbb9de59d51e07848b72ab8a --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfcddee185e24ebdfb692d92cbde36e0c53697a63825f44b050b029d7e4a46b6 +size 275 diff --git a/public/2023-icon-library/calico-tabby/nscratch2.png b/public/2023-icon-library/calico-tabby/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..eeffff2b3b804f5cc51966032699116f5e88750d --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35324d3a40fb06a2ab0ccf5e239c5b665d28089f4f9f0dfcf1df17599d37d20c +size 274 diff --git a/public/2023-icon-library/calico-tabby/nwrun1.png b/public/2023-icon-library/calico-tabby/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3c25c838fdac3ecca2743d9518a16ad76326f1a8 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e3e1911b48b5730b4b7f226981a3c420afccf2462bf0904eaba985beee47c4 +size 258 diff --git a/public/2023-icon-library/calico-tabby/nwrun2.png b/public/2023-icon-library/calico-tabby/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..65ec7e90b7a758bfc2fa7222ded5f418a2705d14 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231706fb11c208925b48042c73fe1c77b70e459729577d6c3494f596a5132222 +size 269 diff --git a/public/2023-icon-library/calico-tabby/serun1.png b/public/2023-icon-library/calico-tabby/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..246561a63e486d987e65169bb3d4103b36eb2573 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7735964245aa37f7a36a338c0d5a4a4fbf1803833ea2dbac998e981b6173fa9c +size 274 diff --git a/public/2023-icon-library/calico-tabby/serun2.png b/public/2023-icon-library/calico-tabby/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..87fee21251e04ce4f2107d509ce46bdb8a4d31a2 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44565d4b70e93c580ffd993b38c554ddf78a3243f82d9c474138d7e6dec4294 +size 270 diff --git a/public/2023-icon-library/calico-tabby/sleep1.png b/public/2023-icon-library/calico-tabby/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..0b5943a811dda5eef52deec54ff01345b931757b --- /dev/null +++ b/public/2023-icon-library/calico-tabby/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68201de13f392ee7b0abb2b761084894024bfb547c762e0ad6c7a853056012ee +size 264 diff --git a/public/2023-icon-library/calico-tabby/sleep2.png b/public/2023-icon-library/calico-tabby/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..1eeb68bd2340545ed612478ca6b0c9762a1b8b7e --- /dev/null +++ b/public/2023-icon-library/calico-tabby/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ec3a616c78192e19de8383347e3ea4407f71981147afde135c0cd22d1b4ea8 +size 252 diff --git a/public/2023-icon-library/calico-tabby/srun1.png b/public/2023-icon-library/calico-tabby/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..afeb526e8ee98f8928012a3d4264f7e4a39e30cb --- /dev/null +++ b/public/2023-icon-library/calico-tabby/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f8a4f263e19b0d977c8e1b37088b3a5698e456034747d25b7e91aac8badcd6 +size 256 diff --git a/public/2023-icon-library/calico-tabby/srun2.png b/public/2023-icon-library/calico-tabby/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..85f69cf435d5d18fe97f89296c34c399e615cdd9 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e481318c670b5b03ebceff0117796f593e2221e41fbe0146f9dfba0c7c3b686 +size 268 diff --git a/public/2023-icon-library/calico-tabby/sscratch1.png b/public/2023-icon-library/calico-tabby/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9c09488538f7848757cce64d9f4ef4793bef9d3a --- /dev/null +++ b/public/2023-icon-library/calico-tabby/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cc32a57efa35f255435b7ccfbcb8c2a012e64db77241875e2822bfea11eed2 +size 267 diff --git a/public/2023-icon-library/calico-tabby/sscratch2.png b/public/2023-icon-library/calico-tabby/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..0be43b6a57d192636d1a0ddfdf3fa5da1ab7d8dc --- /dev/null +++ b/public/2023-icon-library/calico-tabby/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b94a5adb1e4d06b2ef12c3cc6d792f0bb899af54f5bce7b5a6552d7de645fd +size 258 diff --git a/public/2023-icon-library/calico-tabby/still.png b/public/2023-icon-library/calico-tabby/still.png new file mode 100644 index 0000000000000000000000000000000000000000..18aea9058560de2033f158b99ff9d251148a53d1 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fed0d6eea41cc0a616d03426a267d699be9dc46c2d9f4de7d9cee447b1c4ee +size 251 diff --git a/public/2023-icon-library/calico-tabby/swrun1.png b/public/2023-icon-library/calico-tabby/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..518c60b469c54c7b6cfd991884476dfa51c60fda --- /dev/null +++ b/public/2023-icon-library/calico-tabby/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abee28082d181c0b9dce11fa9ab9b4d5b9c80c065a34a97cba545fcfcbab4f02 +size 272 diff --git a/public/2023-icon-library/calico-tabby/swrun2.png b/public/2023-icon-library/calico-tabby/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..669d83c1afa68d2bef7f2d7813af4536c6c4e48b --- /dev/null +++ b/public/2023-icon-library/calico-tabby/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a8511df66824a559b8d819fa668aeb8936d53ca34c973a050d10257b9f6edd +size 265 diff --git a/public/2023-icon-library/calico-tabby/wash.png b/public/2023-icon-library/calico-tabby/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..589aa0e0b02c6469a8fb5c880091d78ddd9578a4 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1f049046532f7cf829f6216b7c9e400d0dc4b6999e2b2f9d7db6d9d00b9c0c +size 261 diff --git a/public/2023-icon-library/calico-tabby/wrun1.png b/public/2023-icon-library/calico-tabby/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0803cee54f55ebf4e12052d92303a1305bd75cb7 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4ec0767034febbbea8a6f0e0f9726f0bc56d01e8ddb6e495fba3afbadcdf26 +size 262 diff --git a/public/2023-icon-library/calico-tabby/wrun2.png b/public/2023-icon-library/calico-tabby/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..95c81258323daddf115fda60fbbeba5bde6fd7d1 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5671081038ab903375105676a5dc04fbd9bc4c0e93544dcc0855974acd560975 +size 267 diff --git a/public/2023-icon-library/calico-tabby/wscratch1.png b/public/2023-icon-library/calico-tabby/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8cec93e1d45a7f1f3c187af7f5f3afdc401ee75c --- /dev/null +++ b/public/2023-icon-library/calico-tabby/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b4382e816558453525e6adc7545b8a4cb4807106aee2df8eb0d9803a81b0ca +size 255 diff --git a/public/2023-icon-library/calico-tabby/wscratch2.png b/public/2023-icon-library/calico-tabby/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2b74e950004316896c5c3cfcb10c2f6b54623256 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac28d606f35ad66d50d649ccc23d023a0f140214ad975bfbc0483e2519b33457 +size 261 diff --git a/public/2023-icon-library/calico-tabby/yawn.png b/public/2023-icon-library/calico-tabby/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..9e9ff8c4226ab11b163535093cc5dbfa3b014e81 --- /dev/null +++ b/public/2023-icon-library/calico-tabby/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cffeeac7f41c6d8682559a40a319dc3c2bd5e9f60227cb51d68768c2acb60cd1 +size 254 diff --git a/public/2023-icon-library/calico/alert.png b/public/2023-icon-library/calico/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..f83c96ddad7fd39463f0f87957f43c98ac1b7ecc --- /dev/null +++ b/public/2023-icon-library/calico/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efe7c1f8e5cf6db46eccf4fe76acea96a23ecd84069268a806565fdba09ec4a +size 325 diff --git a/public/2023-icon-library/calico/erun1.png b/public/2023-icon-library/calico/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..143a3940dcfeb365f059b018c64400773787ba80 --- /dev/null +++ b/public/2023-icon-library/calico/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4feec84102272c21384547ddd379a60ee961d106d67d92dc432b2d96524cb0ab +size 302 diff --git a/public/2023-icon-library/calico/erun2.png b/public/2023-icon-library/calico/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b00cdadaee3cba6c20e6e371bce96eb7b2576814 --- /dev/null +++ b/public/2023-icon-library/calico/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d592ea1bb674b50415f1d67c2cd7f05d99f5c1cba3fe1089b49b84314d29574 +size 299 diff --git a/public/2023-icon-library/calico/escratch1.png b/public/2023-icon-library/calico/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..7ed41a7de6ae44216c750d0dd983bab58ffba9f0 --- /dev/null +++ b/public/2023-icon-library/calico/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec468ccf8f7da7c13fdd7d670dd79b5d0c2c6794a442ee045cad9fa75c13f158 +size 285 diff --git a/public/2023-icon-library/calico/escratch2.png b/public/2023-icon-library/calico/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c48729d7b68353cf6e00301df77ee4986265bc9 --- /dev/null +++ b/public/2023-icon-library/calico/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e27b7997a112d6c222a4f7cacd9a50141abdec9269300727a76d3b312908973 +size 271 diff --git a/public/2023-icon-library/calico/itch1.png b/public/2023-icon-library/calico/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0ee83e881963da8ee6bc2c1bfa6a6b2097487985 --- /dev/null +++ b/public/2023-icon-library/calico/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435ce044f145d7b34f645c431040fd6139af498a1e3510fe3226e8d18d598dae +size 307 diff --git a/public/2023-icon-library/calico/itch2.png b/public/2023-icon-library/calico/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2200978e4857935acfdf1e6439dfacae8a8dcc --- /dev/null +++ b/public/2023-icon-library/calico/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c2b79eddd2dae3c34f1105dd4cf4b9290f0cecaf443f9d61c36ef80f1bcfb7 +size 306 diff --git a/public/2023-icon-library/calico/nerun1.png b/public/2023-icon-library/calico/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5015b5ec98943814fefc9a386c5a0fbb0a802bdd --- /dev/null +++ b/public/2023-icon-library/calico/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8236c84817194fc60b6f76958e74269b47d34c6e637906874387876be011c8 +size 298 diff --git a/public/2023-icon-library/calico/nerun2.png b/public/2023-icon-library/calico/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7766213422f09fc1639369b71e73c318ae9b280f --- /dev/null +++ b/public/2023-icon-library/calico/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a32b8115af19ab3c9892cd8b400fbaed9f540b6aa4773f7d79a6ef70ee0f89 +size 316 diff --git a/public/2023-icon-library/calico/nrun1.png b/public/2023-icon-library/calico/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3f1332f8bd97bd045dc5492b817b7868bf8daf --- /dev/null +++ b/public/2023-icon-library/calico/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a22b33799c9ae47c61e06a3e9317d91112f040288550a9e33889051f74e50c4 +size 284 diff --git a/public/2023-icon-library/calico/nrun2.png b/public/2023-icon-library/calico/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..10d055a79200f2370fafec7f0504e5ff931e1944 --- /dev/null +++ b/public/2023-icon-library/calico/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccdf5aee1600bdb3a010ca0dabd8e312b23bf6d86b49b49a40c82b513ffc017 +size 307 diff --git a/public/2023-icon-library/calico/nscratch1.png b/public/2023-icon-library/calico/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..637119540187d8cab2c38d98c71ebc3393c469f9 --- /dev/null +++ b/public/2023-icon-library/calico/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f20230796272db245afb114a7acc7ad2e638291fc4dc8a754a3f03c956fd0d +size 310 diff --git a/public/2023-icon-library/calico/nscratch2.png b/public/2023-icon-library/calico/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1e114ab0d5b01a25be34f4ece72d985ce537f8f1 --- /dev/null +++ b/public/2023-icon-library/calico/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd31120b0674d659f211d54d17cf92524ff3137f847552bb6601af39c114308b +size 311 diff --git a/public/2023-icon-library/calico/nwrun1.png b/public/2023-icon-library/calico/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f135cd318d668c7768d0d0785980315b18d54d75 --- /dev/null +++ b/public/2023-icon-library/calico/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41ffdc3e9a59dbeae1db52a17824ba059fd2aaab9d6096c5fbbb5b3cc047da9 +size 285 diff --git a/public/2023-icon-library/calico/nwrun2.png b/public/2023-icon-library/calico/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5ce2bbb4e9d18df5b6ad798e9ede0f8da6b305ce --- /dev/null +++ b/public/2023-icon-library/calico/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cac7da511a22d9b399ae8a3862657738f9530edfa708cc91e2d2c6b1d9f3199 +size 315 diff --git a/public/2023-icon-library/calico/serun1.png b/public/2023-icon-library/calico/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d07e5701cf016322c4c39fa4fadf8d6de23bb375 --- /dev/null +++ b/public/2023-icon-library/calico/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c445a89ca0241692b78d35c5228ed78c3451f8b33a1f1000e5c1c427249fa1a7 +size 302 diff --git a/public/2023-icon-library/calico/serun2.png b/public/2023-icon-library/calico/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c517438dfa00be72e907ad061d8fac3065db7bc8 --- /dev/null +++ b/public/2023-icon-library/calico/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb68fc77175edd86d0d2a3b42c79e2d6cee2de7face7a112e6fade2db8caa9c +size 311 diff --git a/public/2023-icon-library/calico/sleep1.png b/public/2023-icon-library/calico/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..ef01cb96cfc4a58e9c67d57e7f1ad522a48e06d3 --- /dev/null +++ b/public/2023-icon-library/calico/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47cdd89bbf70cb422d55cde10bfcd295ee7f867642aa1189757175c068e0d4ff +size 289 diff --git a/public/2023-icon-library/calico/sleep2.png b/public/2023-icon-library/calico/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..71cd9da2131e1c4aba4e7ef5fab31a99daa3ad10 --- /dev/null +++ b/public/2023-icon-library/calico/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e87af6480de72edd444e02029d7eb64c0b2e83ad51f81493753988291cb4a3 +size 286 diff --git a/public/2023-icon-library/calico/srun1.png b/public/2023-icon-library/calico/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..38dce41a6479acadeaf9c68186925b4b7967d17d --- /dev/null +++ b/public/2023-icon-library/calico/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf615f091dedaac4831a5e4be26a7db39c4b9df045fb34470e61a825c48201a +size 289 diff --git a/public/2023-icon-library/calico/srun2.png b/public/2023-icon-library/calico/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..9329929aa71df8e8adb63cca479391101cecaa8a --- /dev/null +++ b/public/2023-icon-library/calico/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2450c8006276bd0f7280dbb5e274f0922b6add3fd1a65f2ea496851f8ce22e71 +size 321 diff --git a/public/2023-icon-library/calico/sscratch1.png b/public/2023-icon-library/calico/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..079db64fb0b688cc78819584074f8b69969fb696 --- /dev/null +++ b/public/2023-icon-library/calico/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfec878d70a8c59d883cd28d0172a9b5743c92c1acc09d8060536ebb407c5f3 +size 296 diff --git a/public/2023-icon-library/calico/sscratch2.png b/public/2023-icon-library/calico/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec1012b8a3f1787fded4b31f013bb3bee86f861 --- /dev/null +++ b/public/2023-icon-library/calico/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8843599898eb18576bb5f95c7b82c542d7ee3434b2628d1f3edb314d745e1db +size 298 diff --git a/public/2023-icon-library/calico/still.png b/public/2023-icon-library/calico/still.png new file mode 100644 index 0000000000000000000000000000000000000000..29afeed5512a8d603fc1298612bf29c4e46d9d01 --- /dev/null +++ b/public/2023-icon-library/calico/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec0294ffc49d878e864d4a0f4e4d5705240ce0048a2acee5fe279eabf58aafb +size 276 diff --git a/public/2023-icon-library/calico/swrun1.png b/public/2023-icon-library/calico/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f454c2e03f209925e04091c7434a60ddb1e5b12c --- /dev/null +++ b/public/2023-icon-library/calico/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a048a14f83b185b35c4831e092ee783d031ed0af6486416d7be58430140d50 +size 307 diff --git a/public/2023-icon-library/calico/swrun2.png b/public/2023-icon-library/calico/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..26d37388b5b20223c2cbe9433e11d6a8fb67931f --- /dev/null +++ b/public/2023-icon-library/calico/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b21d9f03255907c8c12b24c39fc944e85ad0efc98bebcfcdade8c3a5fb78369 +size 307 diff --git a/public/2023-icon-library/calico/wash.png b/public/2023-icon-library/calico/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..7a0cad63138134c89391f44f6b9c7eea3cb51a2b --- /dev/null +++ b/public/2023-icon-library/calico/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71de13a47cb0ac1c6b3dbee74ca0ee1ca6f7bc6baa39f06c05ad425604be7a85 +size 301 diff --git a/public/2023-icon-library/calico/wrun1.png b/public/2023-icon-library/calico/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b56b9a24a38fb32f9816e359eaf52fe0bed3bb93 --- /dev/null +++ b/public/2023-icon-library/calico/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637c977181027bb1242bcfe0e82b8f81eb34a5037405b120cda8b981453cd50d +size 301 diff --git a/public/2023-icon-library/calico/wrun2.png b/public/2023-icon-library/calico/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..95231bec40f6860550e5d8e2c2fd547e0fc12cd1 --- /dev/null +++ b/public/2023-icon-library/calico/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35318633a9322a45a6faa682350079dce3d31e11dbb855a0fec81d5e0c196a3a +size 300 diff --git a/public/2023-icon-library/calico/wscratch1.png b/public/2023-icon-library/calico/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc27c4bb5f7f0e3e8db7141d24553e636bea3bd6 --- /dev/null +++ b/public/2023-icon-library/calico/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f1d21056978c02cfdde278c442f9adabe9b8463bd97f652da4a8566731d30a +size 290 diff --git a/public/2023-icon-library/calico/wscratch2.png b/public/2023-icon-library/calico/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..de1d6b06922d50b93bcaab6cfc54d4b89ea0c7a1 --- /dev/null +++ b/public/2023-icon-library/calico/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2fffa97a3bc0314bb56d9f7d2ce0973db435ac557058894b32e7ebce0b3124 +size 281 diff --git a/public/2023-icon-library/calico/yawn.png b/public/2023-icon-library/calico/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..ccc4dbccf7db76f06d0eb5a8350ce862a2be2abd --- /dev/null +++ b/public/2023-icon-library/calico/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aceb78b730404d404f1247ce703cd3813238916a3693c1e175adf37d426db3fe +size 298 diff --git a/public/2023-icon-library/captain-goodnight/alert.png b/public/2023-icon-library/captain-goodnight/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..668bbebbcbb88fb99982427b473061db8af2df82 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848459d35654e1e9958ae665b3316216d8b3e65fa333225878654469d597d66f +size 205 diff --git a/public/2023-icon-library/captain-goodnight/erun1.png b/public/2023-icon-library/captain-goodnight/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5b22ae33467a2f3f066ca1b7fe511f5fcb179d67 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ae3fa3c5a29e206eb413e7a5f3ea83f5e6b09843f2d2a39fe335777a612eea +size 203 diff --git a/public/2023-icon-library/captain-goodnight/erun2.png b/public/2023-icon-library/captain-goodnight/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e907850377b51d1f11a3365286787a2e3689b9ba --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b3552bcd3de9620c86c89402427534fc23686180f349075ff8d36c336972d5 +size 222 diff --git a/public/2023-icon-library/captain-goodnight/escratch1.png b/public/2023-icon-library/captain-goodnight/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4d915c647da6bce38cf281277a9a7640630a2f62 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457c052d6c734c5de5a4d1e2b951b965353d7d5894831aa47e977e97373d0f99 +size 209 diff --git a/public/2023-icon-library/captain-goodnight/escratch2.png b/public/2023-icon-library/captain-goodnight/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..69a30aebc258577713c1ff417754a5de83e923d5 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d50dfd8426d55bab61e4e571d4ff3bdd6a0967729c07fd1a68b7ef51a8b3b3 +size 209 diff --git a/public/2023-icon-library/captain-goodnight/itch1.png b/public/2023-icon-library/captain-goodnight/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cb34e02c22adaddb1c477163ad7286255635594 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf334b85f6be8f5f722cc5398eede8850a591d428739fdd2efc80f472640c5a +size 227 diff --git a/public/2023-icon-library/captain-goodnight/itch2.png b/public/2023-icon-library/captain-goodnight/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..70d63bcfedf9301039577f85cebc5815ed031602 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494c3e1466f467e3759ab717d9633eb8419cb9e2395647dc2fdb84c1dd39a95c +size 228 diff --git a/public/2023-icon-library/captain-goodnight/nerun1.png b/public/2023-icon-library/captain-goodnight/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8bc9f75df701013bc2caff85e406ab665e1e9c --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f27f8063e36321a01e4e9eee3d13d3140ca2d994307857c12a7b81b413f021f +size 201 diff --git a/public/2023-icon-library/captain-goodnight/nerun2.png b/public/2023-icon-library/captain-goodnight/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e772ee571b602db4a520faf92570443be3a2193 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5b24bb0a009d2eef312cbc542c527a0ba53ad07afcbf19ce79ec8718772e5 +size 208 diff --git a/public/2023-icon-library/captain-goodnight/nrun1.png b/public/2023-icon-library/captain-goodnight/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d3d76b162e1b7def1d4431b3412bf1fb7e8538e0 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ba0dee84ea62d41ceaf83561aeece0de733ca05b23e2d5836729c5db98fe98 +size 200 diff --git a/public/2023-icon-library/captain-goodnight/nrun2.png b/public/2023-icon-library/captain-goodnight/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..45f095a95c72965ff91525aa472a3c3eafa1be96 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f958645bb6f078da890f3bd4c87d27a6d0d008fdaca8a1551e5a39cf7007fdc9 +size 200 diff --git a/public/2023-icon-library/captain-goodnight/nscratch1.png b/public/2023-icon-library/captain-goodnight/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c34c3cea837e6f80b41ad4cdc45e34f704035a --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8e77ecefa4503ae3608568e77710dde9ef778983ff7358edcb74ec3bee225f +size 218 diff --git a/public/2023-icon-library/captain-goodnight/nscratch2.png b/public/2023-icon-library/captain-goodnight/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..36cdf831106331ed59ed6b6d867529bf59315dd4 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245b972907e2c67077e676049ec9600a26f9f410a17ecc4ef8cba50813f89513 +size 219 diff --git a/public/2023-icon-library/captain-goodnight/nwrun1.png b/public/2023-icon-library/captain-goodnight/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..beafed2b9e1b09f7dbab8ef14ccfcd6a4040e09e --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161637ddd0cb60f6e44aeee975e75684c96de0cb644958d36ed6927067d31a62 +size 202 diff --git a/public/2023-icon-library/captain-goodnight/nwrun2.png b/public/2023-icon-library/captain-goodnight/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..df0f0acab84d2098e9f30c26b33d75d42b4e02bf --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5f350e6247b7bd8c53ebdd6d4c6cb0835b79210a616b50602b5620918cc89c +size 208 diff --git a/public/2023-icon-library/captain-goodnight/serun1.png b/public/2023-icon-library/captain-goodnight/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2eed6d59d6a082ea25336dddb7eb48f6da8f0d54 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f7ad7605b44c9dd32d1d4d3412689ff50f3f4730e4ae0028243b7bcd6433df +size 200 diff --git a/public/2023-icon-library/captain-goodnight/serun2.png b/public/2023-icon-library/captain-goodnight/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..65bcfbbb0bf4697db30c1fee379c3c4dfd5ea319 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b049eec97cbdbd04254fd42506609283486e965f0f2a2f2863ab73a54a10c22 +size 210 diff --git a/public/2023-icon-library/captain-goodnight/sleep1.png b/public/2023-icon-library/captain-goodnight/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..d141e4a8c67dd9295abb4d77ab9bd60a8efa57e5 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44576ae5f35af26749969a844c123be042afff2c6bcd65dd767b5f95c91e706d +size 230 diff --git a/public/2023-icon-library/captain-goodnight/sleep2.png b/public/2023-icon-library/captain-goodnight/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..96a603001ee2a57137b303d56081f15d2563be29 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325dc030c5e2f8ed7efe75ecc26da8fca12170806d098d54b5af5feb7fb0533d +size 228 diff --git a/public/2023-icon-library/captain-goodnight/srun1.png b/public/2023-icon-library/captain-goodnight/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..844773d6760d0139cc4a4071e71bd08f653a0ca5 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec953cfb0eb8e70fa3efae2d65537ffe3326d3184866897e9a9bff0d11511c2 +size 205 diff --git a/public/2023-icon-library/captain-goodnight/srun2.png b/public/2023-icon-library/captain-goodnight/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..13db21327583e6942eb012504edac81295afa861 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfea0c72ace20d76ec72ac629324df4557282a4880bc43ab34f5cfaec6e61941 +size 198 diff --git a/public/2023-icon-library/captain-goodnight/sscratch1.png b/public/2023-icon-library/captain-goodnight/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..098ef3e1195c338b69d13259df5fb3e523442b26 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16d4fa598a19a81386ae30f7d40e107a84e06389574951d60a42fb70b72c1a3 +size 218 diff --git a/public/2023-icon-library/captain-goodnight/sscratch2.png b/public/2023-icon-library/captain-goodnight/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5b97f0a6bb0e72b4ddafa35a27f03c9454a6f787 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865aeee9c625369358d5bb93d589d79a21e9fc468227bd9ac619f3bc8d8058d4 +size 220 diff --git a/public/2023-icon-library/captain-goodnight/still.png b/public/2023-icon-library/captain-goodnight/still.png new file mode 100644 index 0000000000000000000000000000000000000000..281765762529793d9547e1a743d3aaab9c5eba9d --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f946d69cd047dcbb0d8e3a762df0fc619a68d1de2fbbdc51faa439669606e85 +size 210 diff --git a/public/2023-icon-library/captain-goodnight/swrun1.png b/public/2023-icon-library/captain-goodnight/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2f05333ed3d658cc4ff5bdcd46d9977d8898b912 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f693491849b9bfefbfd4b2b092ec663057147859a4c7ada79bf7c614333320 +size 203 diff --git a/public/2023-icon-library/captain-goodnight/swrun2.png b/public/2023-icon-library/captain-goodnight/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..26b47d62af3972e143cf4789697bf9581ab50216 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5179fde7f0020d3765fd7d62bd7044484773f9cb348e690b0c824f4914d3039b +size 213 diff --git a/public/2023-icon-library/captain-goodnight/wash.png b/public/2023-icon-library/captain-goodnight/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..d141e4a8c67dd9295abb4d77ab9bd60a8efa57e5 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44576ae5f35af26749969a844c123be042afff2c6bcd65dd767b5f95c91e706d +size 230 diff --git a/public/2023-icon-library/captain-goodnight/wrun1.png b/public/2023-icon-library/captain-goodnight/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bad9ac4790d3cd46b1bca750c9cb58521eaf94c1 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f3c75fa5c844855d4011f7beb28c47d29a027b3fd0e954998a6014d2a4da53 +size 203 diff --git a/public/2023-icon-library/captain-goodnight/wrun2.png b/public/2023-icon-library/captain-goodnight/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e56302a7ca93c273f61f260415efcea29d966834 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4072b456bf588b77399a8961a5c15030d36fb7db58af486ef17fb438c6822d +size 224 diff --git a/public/2023-icon-library/captain-goodnight/wscratch1.png b/public/2023-icon-library/captain-goodnight/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b4fa0979e4b686a8b4579e865eb11ed00f33568d --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6129d3384d0cda39594f62f7867c674cfb00d682fb964974033dfd5af20a2e +size 211 diff --git a/public/2023-icon-library/captain-goodnight/wscratch2.png b/public/2023-icon-library/captain-goodnight/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..30df7580b82b6b90e2ee2e980d7c517679b034f9 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfe69289a49f508fec619350d6571fcc18551ac50aab0a13e84c24367ab4162 +size 207 diff --git a/public/2023-icon-library/captain-goodnight/yawn.png b/public/2023-icon-library/captain-goodnight/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..c106adf39aef5171db84d90e0de9672efffd7980 --- /dev/null +++ b/public/2023-icon-library/captain-goodnight/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c155d390af5fe136996070bcd7283fa45d994b382f48585085ec6ed9e5d942 +size 225 diff --git a/public/2023-icon-library/colourful/alert.png b/public/2023-icon-library/colourful/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..e3efbf0fdcd24ab3a6a8d078e90ccf1e2fb83c91 --- /dev/null +++ b/public/2023-icon-library/colourful/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbc9b0a5b49868638f33dab29e42f113ce9b197a8abd54d8c78ee8b79dfb832 +size 331 diff --git a/public/2023-icon-library/colourful/erun1.png b/public/2023-icon-library/colourful/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e788a011118f290a3b97d69b58e6d46c3ea2e78 --- /dev/null +++ b/public/2023-icon-library/colourful/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce37e01b821a8ac95cb1e85f8c12343a039d3c71a28bbb56a3aab5094b530a5 +size 319 diff --git a/public/2023-icon-library/colourful/erun2.png b/public/2023-icon-library/colourful/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a346a378850672c392b074d2bd3efbb9907ca79 --- /dev/null +++ b/public/2023-icon-library/colourful/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff20da31a4c7aaea654e081ce2d43b689c2f4469c4b58b253f8a8103f7df501 +size 295 diff --git a/public/2023-icon-library/colourful/escratch1.png b/public/2023-icon-library/colourful/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b3541b92cab88bbcd2a01520deb989716e4b9a4 --- /dev/null +++ b/public/2023-icon-library/colourful/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe33600f39ca4eb36e894e3fc91b3e0fea85f7654b8265832ed2b01e703579fa +size 301 diff --git a/public/2023-icon-library/colourful/escratch2.png b/public/2023-icon-library/colourful/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..57e68c31b1db2c241174bfd6ec8f13e083e47789 --- /dev/null +++ b/public/2023-icon-library/colourful/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61f821e90b00473eb2adf045a3f6222f3f5bdfc46983e7e54ea49bc5d18c8fd +size 287 diff --git a/public/2023-icon-library/colourful/itch1.png b/public/2023-icon-library/colourful/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..41d2a8c240962c891b517160584cbaefde8f1b5e --- /dev/null +++ b/public/2023-icon-library/colourful/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d995ae0b42c4056baa4e80835d084561e90ddc2f2c35d3bde3006c6a27ffa5 +size 308 diff --git a/public/2023-icon-library/colourful/itch2.png b/public/2023-icon-library/colourful/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7f24a30d466c91c553156b7eb1ef168e061726f6 --- /dev/null +++ b/public/2023-icon-library/colourful/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4aa3537aee92e9890c92095a4390b02dc10f368d0f1dfb9cdbd3bf6da205e81 +size 303 diff --git a/public/2023-icon-library/colourful/nerun1.png b/public/2023-icon-library/colourful/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1786b767fc4af631bf81ae16bfd2eb99f6619e42 --- /dev/null +++ b/public/2023-icon-library/colourful/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a322c25bad06624765198a369412363142a446bebb656a779e95bc418ec591 +size 300 diff --git a/public/2023-icon-library/colourful/nerun2.png b/public/2023-icon-library/colourful/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..80eff1dd187cab94c4ac7ca5f927aa1f38807e95 --- /dev/null +++ b/public/2023-icon-library/colourful/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dc041cb073e8173a19f335fcfce8cb36f36080222a8a04bbaa4993cb432dbe +size 332 diff --git a/public/2023-icon-library/colourful/nrun1.png b/public/2023-icon-library/colourful/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..17ea5dcc2fa8d5669aa64646ab0afa4bb01dabeb --- /dev/null +++ b/public/2023-icon-library/colourful/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4993cd00f7b85b36465361d4b123ab71194e01cfac02f774d4d6057f35693090 +size 287 diff --git a/public/2023-icon-library/colourful/nrun2.png b/public/2023-icon-library/colourful/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..76afc036112b14a143f9562a528d8f58f3ebfae5 --- /dev/null +++ b/public/2023-icon-library/colourful/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1a6f9ff6e777553febb82d91049936b2abe258880dee773b159a24ea9c845b +size 313 diff --git a/public/2023-icon-library/colourful/nscratch1.png b/public/2023-icon-library/colourful/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a52aa54812a638237708e1e7c300b203ec41045f --- /dev/null +++ b/public/2023-icon-library/colourful/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d133d18b82bd0d1b09738f07d673dc88756577dc0a114cce75e60382ba148c1a +size 315 diff --git a/public/2023-icon-library/colourful/nscratch2.png b/public/2023-icon-library/colourful/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a33f9cc5dad8b49d84fe89734eff22a1d0be941c --- /dev/null +++ b/public/2023-icon-library/colourful/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9a6cf8640a1b07bde57461012ef9709c9d195a6ff90b7d79921294d1bcb99c +size 313 diff --git a/public/2023-icon-library/colourful/nwrun1.png b/public/2023-icon-library/colourful/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..325f2188cd202763ff6b7208d662befb28486fd6 --- /dev/null +++ b/public/2023-icon-library/colourful/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f41bdde95683d2c87a8ffe55929e3a16697b90b14f8b1d91290b0ed9090627 +size 293 diff --git a/public/2023-icon-library/colourful/nwrun2.png b/public/2023-icon-library/colourful/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..afc1f25916fe091292ba923e9726a7fa72304272 --- /dev/null +++ b/public/2023-icon-library/colourful/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9742f9e00c003502702f2dc8339b59ed5b80542b7ad54a17f09623d6f03e5fe +size 323 diff --git a/public/2023-icon-library/colourful/serun1.png b/public/2023-icon-library/colourful/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3213deace153b3d0de7f65a1654fc8c8d8a333ec --- /dev/null +++ b/public/2023-icon-library/colourful/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff761297f0e677dbadc8c21e62b0d906a410cfbc0f7b9a08c01c3f2a51f6be27 +size 307 diff --git a/public/2023-icon-library/colourful/serun2.png b/public/2023-icon-library/colourful/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a334caee1efde1e96d7cd540a8ce851cfcd549e4 --- /dev/null +++ b/public/2023-icon-library/colourful/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d21def93059be48ccf6d1e19ba3e89143c341434f00a545fa74408ed57da728 +size 323 diff --git a/public/2023-icon-library/colourful/sleep1.png b/public/2023-icon-library/colourful/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..81207ec5fb141dac6fd2d9682c580696726df70c --- /dev/null +++ b/public/2023-icon-library/colourful/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:274965cb26ebf66d40e9335b52e41df91c3770960b821061fafb3d916b9f6072 +size 261 diff --git a/public/2023-icon-library/colourful/sleep2.png b/public/2023-icon-library/colourful/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..0f629f41f1ff750c984daba5ec493ed659ffeef4 --- /dev/null +++ b/public/2023-icon-library/colourful/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e33ddc09643d37b2892c47f1c4dd5bd842ff051a4e3a0f62b3c9eeff16ffb97 +size 267 diff --git a/public/2023-icon-library/colourful/srun1.png b/public/2023-icon-library/colourful/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3875125ef3c3d1152f635cb51d46bf57630fea45 --- /dev/null +++ b/public/2023-icon-library/colourful/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49f480e63db0f8dce09e05cd48637e8dfa34caf552a68a7a7594a74cd1a098d +size 299 diff --git a/public/2023-icon-library/colourful/srun2.png b/public/2023-icon-library/colourful/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7df67427a9e2a72a88faad84d809f3560f593c8a --- /dev/null +++ b/public/2023-icon-library/colourful/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f46402faa7e1ec73d85bf3f373b373086c11e5bc6e5efc46bfd39cce226f41 +size 322 diff --git a/public/2023-icon-library/colourful/sscratch1.png b/public/2023-icon-library/colourful/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0ceacc7bd0596c8ca98775e4cd62df07483f0111 --- /dev/null +++ b/public/2023-icon-library/colourful/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098802681c5537cf27dcfedab96c0960f51bc3f2fb2c7c9deb76b7638607dd86 +size 305 diff --git a/public/2023-icon-library/colourful/sscratch2.png b/public/2023-icon-library/colourful/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..485a17892ff601d93d1e251775c35ffcdcb44c6d --- /dev/null +++ b/public/2023-icon-library/colourful/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4cec3cddefa743fcefa43bb99b7448cf0d6658a6e2d0946fbdab5a611d2172 +size 297 diff --git a/public/2023-icon-library/colourful/still.png b/public/2023-icon-library/colourful/still.png new file mode 100644 index 0000000000000000000000000000000000000000..fa52f9ee0481eddd5d47cf933b8490b41b509519 --- /dev/null +++ b/public/2023-icon-library/colourful/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887f4b4d485f73d097b74b14d242e13965efc320fe488edb8f2711d72df26437 +size 287 diff --git a/public/2023-icon-library/colourful/swrun1.png b/public/2023-icon-library/colourful/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a09094c4e938cedc5c203cd12ce3667d2cac5e3 --- /dev/null +++ b/public/2023-icon-library/colourful/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6164dfc9c371e7acc3a5501042c49e5da1eb62a7e7b80357886c0998984117a1 +size 311 diff --git a/public/2023-icon-library/colourful/swrun2.png b/public/2023-icon-library/colourful/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d001054de09d358224e1cd1cda6acd334be615f --- /dev/null +++ b/public/2023-icon-library/colourful/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239cf4b20c821c3a0083c65333976eef4e578ccc51a5a84b2995707f1b50c357 +size 325 diff --git a/public/2023-icon-library/colourful/wash.png b/public/2023-icon-library/colourful/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..45b2b0668c7f4790450909582fd04a1415af9ac5 --- /dev/null +++ b/public/2023-icon-library/colourful/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4f6123ae468e4fbcdc7af61ebc80b4da8db3af466fd8638ad548e7370e46ec +size 309 diff --git a/public/2023-icon-library/colourful/wrun1.png b/public/2023-icon-library/colourful/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6f255bcb2104afadc2df40b7a103a2de25ff969c --- /dev/null +++ b/public/2023-icon-library/colourful/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd9640ef6c7281e2f0505e34d0a59b74430d78b6f8d7711f0e2183d1b7eb5d1 +size 319 diff --git a/public/2023-icon-library/colourful/wrun2.png b/public/2023-icon-library/colourful/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d93bd07fb01ed1e1d8a8460b4ca9ff475ddceba6 --- /dev/null +++ b/public/2023-icon-library/colourful/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea760cd971886496d072122b14f590cb9cc2545364ff8979ba8c2fcb2b7d29c8 +size 292 diff --git a/public/2023-icon-library/colourful/wscratch1.png b/public/2023-icon-library/colourful/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6ddad2fcd0c5acf792d3124fc558627133935d2d --- /dev/null +++ b/public/2023-icon-library/colourful/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bd9b42a7ebcb2dd56d6177e1d21945c32481bc3e5814632eb5a3af3e0a4618 +size 300 diff --git a/public/2023-icon-library/colourful/wscratch2.png b/public/2023-icon-library/colourful/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72c55970173b123aab5b0d5137d773ffe003ca2 --- /dev/null +++ b/public/2023-icon-library/colourful/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e82b70708499bec0a3a7170e2cbb1ee7f7490efc6bb4c1a0672559ec73c2ad3 +size 289 diff --git a/public/2023-icon-library/colourful/yawn.png b/public/2023-icon-library/colourful/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..f6ae22703d5bb873e53caccb997178c4d4145d5b --- /dev/null +++ b/public/2023-icon-library/colourful/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e986fd155fe034de79d4e736f8eb8a915f0cdc0023ade3d5f93c584dc54bb1ec +size 319 diff --git a/public/2023-icon-library/deedee/alert.png b/public/2023-icon-library/deedee/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..9ef5679dee13af073ae1746cb1b193f613de8239 --- /dev/null +++ b/public/2023-icon-library/deedee/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddaf710ff2acd968faa8e26b2e5d96b529e9e412312d23040902d1c5ba9c0c3 +size 257 diff --git a/public/2023-icon-library/deedee/erun1.png b/public/2023-icon-library/deedee/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8681edde1ba43c3782e94dba1492f5fc1160f4b9 --- /dev/null +++ b/public/2023-icon-library/deedee/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1aff2bc7e59479a3e77dc9f75b9dd1636af0675fd96637730c750826d0110a +size 245 diff --git a/public/2023-icon-library/deedee/erun2.png b/public/2023-icon-library/deedee/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1c662ffdd8dbf809f71cec2d3c5909c484c521e1 --- /dev/null +++ b/public/2023-icon-library/deedee/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e58beaef7852d540515354700236d981c1ae95d2640c8cb60a4f8e94b3c663 +size 238 diff --git a/public/2023-icon-library/deedee/escratch1.png b/public/2023-icon-library/deedee/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf753d566d761e4181079bd2988cd1c2f80c8d0f --- /dev/null +++ b/public/2023-icon-library/deedee/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42043d2985b6c4b8c7171ac92151e3e1ca591da15c1c9b2f6e78ae715ea854e +size 243 diff --git a/public/2023-icon-library/deedee/escratch2.png b/public/2023-icon-library/deedee/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9ee28bdae134a0e90aa792d1503e9eb9ea77feb5 --- /dev/null +++ b/public/2023-icon-library/deedee/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81c0c6221d44dac813614194eba38537b398c12dc1824a0dd25e4200ee43009 +size 230 diff --git a/public/2023-icon-library/deedee/itch1.png b/public/2023-icon-library/deedee/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b2af836648484311e1285c689c08729dea420195 --- /dev/null +++ b/public/2023-icon-library/deedee/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e76720ae82b59381994d1ee7580bc0c2e89beef44169ce9585b13bce153138 +size 233 diff --git a/public/2023-icon-library/deedee/itch2.png b/public/2023-icon-library/deedee/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a4b8f1bf84f319c6cadb79067d85f09e424fa0f4 --- /dev/null +++ b/public/2023-icon-library/deedee/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7636a8039e62c6f92db10313052af0afcb7669872d13c7287afdf7921575ad8 +size 231 diff --git a/public/2023-icon-library/deedee/nerun1.png b/public/2023-icon-library/deedee/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7936ebb6f29a97a43072dc269772c407e28beea0 --- /dev/null +++ b/public/2023-icon-library/deedee/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ece0c4b6cef0fe69f7f9954f4aa7d5699ba8272387422bb6791522926fc8315 +size 232 diff --git a/public/2023-icon-library/deedee/nerun2.png b/public/2023-icon-library/deedee/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7fabdfae0787af925238ce31d8464fcf7ce896cf --- /dev/null +++ b/public/2023-icon-library/deedee/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196314f3616ef2629f30f8369ccae81b2b45afd1a110eae59e0a322b55ff369b +size 243 diff --git a/public/2023-icon-library/deedee/nrun1.png b/public/2023-icon-library/deedee/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7efecec34c12d1f74376a68f964bafd3a2f75345 --- /dev/null +++ b/public/2023-icon-library/deedee/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939f385789cb359d34a5c75179750c91115793ad02a1e22b06563adef6f7a9c6 +size 223 diff --git a/public/2023-icon-library/deedee/nrun2.png b/public/2023-icon-library/deedee/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f9e3c28579b162b24ddbcd9802c26004e3a4f964 --- /dev/null +++ b/public/2023-icon-library/deedee/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddd7c486137c5fbb08909b44d8376221a9a8ef35779e469d1dff335492ec615 +size 243 diff --git a/public/2023-icon-library/deedee/nscratch1.png b/public/2023-icon-library/deedee/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c18c47ac0e02f6952aef00dde1e8d04d736143 --- /dev/null +++ b/public/2023-icon-library/deedee/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4165690d7b0892ac6fa0f0e4dd67baa4e6134e27090c777e90fdf4086e88ffa4 +size 251 diff --git a/public/2023-icon-library/deedee/nscratch2.png b/public/2023-icon-library/deedee/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..0d630b4a30177c096715a6945ac7d1d2c8f3fa3b --- /dev/null +++ b/public/2023-icon-library/deedee/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa8468ba528cc1cd3e41a89d4471442685a2b619c87c2240ecc9bf8adbe6449 +size 248 diff --git a/public/2023-icon-library/deedee/nwrun1.png b/public/2023-icon-library/deedee/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..11643659a91ea7ebd299d8c4ae251e916a7243be --- /dev/null +++ b/public/2023-icon-library/deedee/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fdcaab0d135ce956b33bb8d37004396dee024cdde1794c77053e39566c3709 +size 231 diff --git a/public/2023-icon-library/deedee/nwrun2.png b/public/2023-icon-library/deedee/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..33f47e52655125c63d00e198fda05e38645f86c4 --- /dev/null +++ b/public/2023-icon-library/deedee/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d84f87f0fad0498cc6dcb28fe11b3df374492335c28a65120c73d301f9ddc66 +size 245 diff --git a/public/2023-icon-library/deedee/serun1.png b/public/2023-icon-library/deedee/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..fef087fb4ff2c3c7ee33316a047cce0f9f0596e4 --- /dev/null +++ b/public/2023-icon-library/deedee/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1946a71dbd08c19c46f44ed3e96e63a0e8e509136946ae9824c7bf06b46b0d14 +size 243 diff --git a/public/2023-icon-library/deedee/serun2.png b/public/2023-icon-library/deedee/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..77eb2a1cd53e712c251fefa36b4f33181b806e6e --- /dev/null +++ b/public/2023-icon-library/deedee/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25614a576fed53a2a18551d244af47d1707dede0315432febb659382e4177871 +size 243 diff --git a/public/2023-icon-library/deedee/sleep1.png b/public/2023-icon-library/deedee/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..e226cf6627256793c631862d0dd8b07481bfa644 --- /dev/null +++ b/public/2023-icon-library/deedee/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda86a46b7ebf1fa41bec098e859cc74a8a771fbe5d5b24fbea2960e581be9b3 +size 248 diff --git a/public/2023-icon-library/deedee/sleep2.png b/public/2023-icon-library/deedee/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..10d0e4c93af3f448bd23113c150748dcbbc1d6d1 --- /dev/null +++ b/public/2023-icon-library/deedee/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029eb9d0b8673f25d6fa19183a536ab3af317a6811485afd9418e36bc3b8d6d0 +size 234 diff --git a/public/2023-icon-library/deedee/srun1.png b/public/2023-icon-library/deedee/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b3a3d741fa5436fe75b5b0677ff716ed55ad7221 --- /dev/null +++ b/public/2023-icon-library/deedee/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc8aca3631a6c8b23963032337d436566b26229642a0ebfcd137de647aca5c1 +size 220 diff --git a/public/2023-icon-library/deedee/srun2.png b/public/2023-icon-library/deedee/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2dd669fc363cde677bc777d2461ecf7b7d4ffeee --- /dev/null +++ b/public/2023-icon-library/deedee/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b76b1c7b9ec636609c322043071fd32a3135b2f62d59e18fb91911d977554fe +size 242 diff --git a/public/2023-icon-library/deedee/sscratch1.png b/public/2023-icon-library/deedee/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..15cf16d9a245b88cac52240435790a85a60f8081 --- /dev/null +++ b/public/2023-icon-library/deedee/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42a3b454327773e242203994c99137fc43a9a3f6a048a4b9b6877b014652b3c +size 246 diff --git a/public/2023-icon-library/deedee/sscratch2.png b/public/2023-icon-library/deedee/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4499186f7645fe78e3e3195161c8daaea3dcd92e --- /dev/null +++ b/public/2023-icon-library/deedee/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64dd1524128a6d255a0c84b07e2e1f39491731e5fe55ec920ce75e10929249 +size 248 diff --git a/public/2023-icon-library/deedee/still.png b/public/2023-icon-library/deedee/still.png new file mode 100644 index 0000000000000000000000000000000000000000..66d1d174a49d1f602bb22bf5c3b0c9757d7be94f --- /dev/null +++ b/public/2023-icon-library/deedee/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ee76a00d956544e2e50b10e1bb99a20d8fec51a18a68e167c33724290d5195 +size 233 diff --git a/public/2023-icon-library/deedee/swrun1.png b/public/2023-icon-library/deedee/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c10eb964e4deb1271041fb3a4b8d9009066051d8 --- /dev/null +++ b/public/2023-icon-library/deedee/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bb17d568d48664e77324e290419b51ab849e22d2927b76a91dd228576faa45 +size 247 diff --git a/public/2023-icon-library/deedee/swrun2.png b/public/2023-icon-library/deedee/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..72b5d0130dd1bc1db0e81bfb82bf5b2e878852e2 --- /dev/null +++ b/public/2023-icon-library/deedee/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d336690b4f7f1bf114c919926017ff770920d897d8bf2fa4d8ca9f38bb6c9e76 +size 242 diff --git a/public/2023-icon-library/deedee/wash.png b/public/2023-icon-library/deedee/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..e7807b81ac97d38f39f1bcaf6431f8b025e1e3b2 --- /dev/null +++ b/public/2023-icon-library/deedee/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8e3474685bcc8dd7d85fe2b539c54fe09893be547b0b6f4300f0a6bf9fe7c1 +size 246 diff --git a/public/2023-icon-library/deedee/wrun1.png b/public/2023-icon-library/deedee/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..07b4f84017aef4ea115106dd6465a138c2610e30 --- /dev/null +++ b/public/2023-icon-library/deedee/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac0c5c6b8c938c6f8e667daa45646888681a1571620fded480a478d1ef9d0c0 +size 243 diff --git a/public/2023-icon-library/deedee/wrun2.png b/public/2023-icon-library/deedee/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..05891fe09f16a2ce2d76acdcda52a3484a6cc894 --- /dev/null +++ b/public/2023-icon-library/deedee/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78460626ca61ec34e0502c5f991cfef0763156ca43efae100d8cf259eb88204b +size 233 diff --git a/public/2023-icon-library/deedee/wscratch1.png b/public/2023-icon-library/deedee/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9388a1998dcd0c142facc50fdda2683921d0ecfd --- /dev/null +++ b/public/2023-icon-library/deedee/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf4733279ae9fc7b9ac0fc82ccddb8a42cce6f405920d5940bdc963edea2ced +size 243 diff --git a/public/2023-icon-library/deedee/wscratch2.png b/public/2023-icon-library/deedee/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e1426ead27a461eefa5db3612ed3f1ab7c61ba --- /dev/null +++ b/public/2023-icon-library/deedee/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec78220f8b0ca3745e5e5137b74b7daba0c3113cdfda9b9fe8c8c6ad12a09096 +size 231 diff --git a/public/2023-icon-library/deedee/yawn.png b/public/2023-icon-library/deedee/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..f56d0978fb47bed5ec9fcd90983446abb2859f3a --- /dev/null +++ b/public/2023-icon-library/deedee/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a5d0983f2c9e1df6e6273b9c5fc03508a7585d87dd89272eb01f8b32a12345 +size 244 diff --git a/public/2023-icon-library/dog/alert.png b/public/2023-icon-library/dog/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..5037a61367ca2db4acb0ba3bcd96ffefdd6e46da --- /dev/null +++ b/public/2023-icon-library/dog/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bae0a687e61b594b74fecfba8280ccdead2d6e4d55a85d171a5d00593ec0951 +size 263 diff --git a/public/2023-icon-library/dog/erun1.png b/public/2023-icon-library/dog/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..45c30627bea62d5efa65ddd5abb12a3408ce54b5 --- /dev/null +++ b/public/2023-icon-library/dog/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f3211acec2daf5fb119d55fe89f02945e089ac7d414c188063424da9de5868 +size 235 diff --git a/public/2023-icon-library/dog/erun2.png b/public/2023-icon-library/dog/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ce52d4a41fd2a5af2101382dabb9cf4424021827 --- /dev/null +++ b/public/2023-icon-library/dog/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740d5385506c7d54667a5b8d21c8110f4170022060c1eb018e6eaeff93136887 +size 229 diff --git a/public/2023-icon-library/dog/escratch1.png b/public/2023-icon-library/dog/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..df558d2014adbc8b5e360b73bf268b7ebf9a6a17 --- /dev/null +++ b/public/2023-icon-library/dog/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd32fdd6e0859130287d5e24e1fd225b6ba8dcb14581926beedcf800d6f8acb +size 230 diff --git a/public/2023-icon-library/dog/escratch2.png b/public/2023-icon-library/dog/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..f0841b2c82dee84107e8be661559268d7c873435 --- /dev/null +++ b/public/2023-icon-library/dog/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097e03428b90cfd77b4fdf3e98aac7b8e992be1e6fdc381150208e94e00ff277 +size 245 diff --git a/public/2023-icon-library/dog/itch1.png b/public/2023-icon-library/dog/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..927657a2baf8e6350762e54f0b0b22cb967e795a --- /dev/null +++ b/public/2023-icon-library/dog/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb64ff9d82d64cea9b3bf433775603b125b4075d3837fb797de9909db458ecd6 +size 234 diff --git a/public/2023-icon-library/dog/itch2.png b/public/2023-icon-library/dog/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..53c31c12ac849a5a44ed010e92b594430e442968 --- /dev/null +++ b/public/2023-icon-library/dog/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40285446446d256fe95e0b5fd87b2e49a55123a6b56c4a9c45d7841466fbad0c +size 227 diff --git a/public/2023-icon-library/dog/nerun1.png b/public/2023-icon-library/dog/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f492d0f363d63d2f08b136d2b290c1d0be33bdde --- /dev/null +++ b/public/2023-icon-library/dog/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd2c510f50da4eb79417ac2e808335d48929c01d86b1fc6a296bea71f15347a +size 240 diff --git a/public/2023-icon-library/dog/nerun2.png b/public/2023-icon-library/dog/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..71925be74509cb903056b4692d43dc2a956fa897 --- /dev/null +++ b/public/2023-icon-library/dog/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba09b9f026b839180d4e854f02dae5100d8717b630cf25658c3cc239c89e249e +size 246 diff --git a/public/2023-icon-library/dog/nrun1.png b/public/2023-icon-library/dog/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5488d60a3186fe6c9f2d7aef1c24cbbeab1cb1bd --- /dev/null +++ b/public/2023-icon-library/dog/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd3cd0fd4e320de22d805451095fe8b34f165085b87b48278885bb1f6e039c1 +size 227 diff --git a/public/2023-icon-library/dog/nrun2.png b/public/2023-icon-library/dog/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..32ae336453cfeb47c5449a57f5bc7b2a4b974529 --- /dev/null +++ b/public/2023-icon-library/dog/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac0fe72ae5b7baece5dbaed7d11afa03864174600ebf38f1000731a80c146b0 +size 238 diff --git a/public/2023-icon-library/dog/nscratch1.png b/public/2023-icon-library/dog/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..147e7475f763aaf931145ac75536d277ce9903c9 --- /dev/null +++ b/public/2023-icon-library/dog/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e41919e6035a0149645147d0855e9c601591bbe3b4232dbf7c791c4ecddfc8 +size 240 diff --git a/public/2023-icon-library/dog/nscratch2.png b/public/2023-icon-library/dog/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d0754f8c6d0184781f5017007d1c349bb338f613 --- /dev/null +++ b/public/2023-icon-library/dog/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba00042c1ede3e8ea31b18d11f00a42b23402a921ff37819f7036985b5b1e7d7 +size 237 diff --git a/public/2023-icon-library/dog/nwrun1.png b/public/2023-icon-library/dog/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1c52cd1dce798e4e7847bbab8c04f626133d2d8 --- /dev/null +++ b/public/2023-icon-library/dog/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23dafd03c4d86b6722b394d33e304dcd09b965e2b3f31d3514fe2844051374e +size 239 diff --git a/public/2023-icon-library/dog/nwrun2.png b/public/2023-icon-library/dog/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..172b2a2e984ed04c1eea6bb3abdc4c074e41bf01 --- /dev/null +++ b/public/2023-icon-library/dog/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f1f9a72ff7243839b6270b37292059f3f885152d9e102589a49de919b5c13d +size 243 diff --git a/public/2023-icon-library/dog/serun1.png b/public/2023-icon-library/dog/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4c9af71cac7e874b042b046130dd08fb992f816c --- /dev/null +++ b/public/2023-icon-library/dog/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c433b52b3d696aadd8a0eaebf8b11d6d5461889991e82ccd0cb757acecef6e0 +size 242 diff --git a/public/2023-icon-library/dog/serun2.png b/public/2023-icon-library/dog/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..28b9461bc51aa61f392e8ffed96b09d4cf2b01c0 --- /dev/null +++ b/public/2023-icon-library/dog/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e272bc9bc64e82ea89e40cfc91a6531d6a28419619307fb856b43352df8988 +size 265 diff --git a/public/2023-icon-library/dog/sleep1.png b/public/2023-icon-library/dog/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7633ad708963db5a9b05f82bd7e7d00ec2f9f7e --- /dev/null +++ b/public/2023-icon-library/dog/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a680d5418c9a97ed8ce5873329fcac675943daa7389971bb5b8222d358ac47e +size 228 diff --git a/public/2023-icon-library/dog/sleep2.png b/public/2023-icon-library/dog/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..2b5de3dee7260cbe5e5f44e6b9444026f79aec6e --- /dev/null +++ b/public/2023-icon-library/dog/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5646d14ee16fb6f843cc3722bcd3d3d9a381f1f497f47dde432c1c46646ae0ce +size 220 diff --git a/public/2023-icon-library/dog/srun1.png b/public/2023-icon-library/dog/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2b3c66c96b4648292406dfe5a5be0c28aee3b98e --- /dev/null +++ b/public/2023-icon-library/dog/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159e29f4de6d9a530a46bdf7bf144716823054cf23ca74b874aa23e3cd752d3f +size 251 diff --git a/public/2023-icon-library/dog/srun2.png b/public/2023-icon-library/dog/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..157ec6c0015fc08fc124d1f29bb2b3bd134eed7f --- /dev/null +++ b/public/2023-icon-library/dog/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f534cabe6647b367026567c6c22cbd4b6e1a256154c5d806be6a6d45c382c4e8 +size 250 diff --git a/public/2023-icon-library/dog/sscratch1.png b/public/2023-icon-library/dog/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..73455173bb0214ac246f53476c1effc977d3300a --- /dev/null +++ b/public/2023-icon-library/dog/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6f6fc10ebbcf1729d979aa95ca910323ba376664fa6811e7b104e53d2d5b1a +size 258 diff --git a/public/2023-icon-library/dog/sscratch2.png b/public/2023-icon-library/dog/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e4254d2d688eacd419f9d9be3d3fe93367076bbe --- /dev/null +++ b/public/2023-icon-library/dog/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ee2155a275baac8b334236dddc75cbbc6bae798606fa9ce62d9778ed765f2a +size 262 diff --git a/public/2023-icon-library/dog/still.png b/public/2023-icon-library/dog/still.png new file mode 100644 index 0000000000000000000000000000000000000000..4d63effc585e71201492420b03a1523a3c154239 --- /dev/null +++ b/public/2023-icon-library/dog/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf2109046dfc5858722270efd9010b4aa89fcd83c79d427bf85a8a7549c9b00 +size 243 diff --git a/public/2023-icon-library/dog/swrun1.png b/public/2023-icon-library/dog/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe5a22f04181711878345358f3236ed1f224cc5 --- /dev/null +++ b/public/2023-icon-library/dog/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bdc25a95135edce7eef70180bff7199cbf14e9c5a7270395e8331cd8eb3d990 +size 241 diff --git a/public/2023-icon-library/dog/swrun2.png b/public/2023-icon-library/dog/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5420a87fb13d8e5cbfdddbde604a8aace5c27a0c --- /dev/null +++ b/public/2023-icon-library/dog/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a507fa74d9e799b0157cff7c2bb6f69840717bca201a7d1e6692738fd13632f9 +size 263 diff --git a/public/2023-icon-library/dog/wash.png b/public/2023-icon-library/dog/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..f727b5dff657560122aeec4887e0987286f5c7a1 --- /dev/null +++ b/public/2023-icon-library/dog/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5c3f71ba4bd9fbbf46f66f71ea50caaff1e5bc991c0705cb7634796a5b6294 +size 246 diff --git a/public/2023-icon-library/dog/wrun1.png b/public/2023-icon-library/dog/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e9a3becc10b2c42c732fd603fd6610a90a985e --- /dev/null +++ b/public/2023-icon-library/dog/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a70e35275f0257f76c50a0120224253ab0594725eae1bf19b995a192a787f3 +size 239 diff --git a/public/2023-icon-library/dog/wrun2.png b/public/2023-icon-library/dog/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..351014364107db3e1462ff731fb9a1581241f58f --- /dev/null +++ b/public/2023-icon-library/dog/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f7e5bd5bb30f6bd72f2c5f637aa9c2ae3d0e8d9f483193760e832822729087 +size 230 diff --git a/public/2023-icon-library/dog/wscratch1.png b/public/2023-icon-library/dog/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5988b1d4582d315fcb653c6d84e93b6c0ef01a14 --- /dev/null +++ b/public/2023-icon-library/dog/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dada457efbbb28f9f9205798f5290f883d24f3d596c96d739dd8f0dc7b684bba +size 229 diff --git a/public/2023-icon-library/dog/wscratch2.png b/public/2023-icon-library/dog/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..13c41d71f519b803f29e55080247504e88e0bef1 --- /dev/null +++ b/public/2023-icon-library/dog/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa508e9558df11c00d85bb312a29a73d6ffb216bdc6f471ca9529f7c08e59df2 +size 245 diff --git a/public/2023-icon-library/dog/yawn.png b/public/2023-icon-library/dog/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..5c7d88ef5b1f8fb931f707a0801d2143bfd98afe --- /dev/null +++ b/public/2023-icon-library/dog/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff2b66d55d8b0a1215535c2999a94ef6116f57d717b1ebb694d1a02edc79d53 +size 253 diff --git a/public/2023-icon-library/fancy/alert.png b/public/2023-icon-library/fancy/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..3fdd15435fdd03df8d8818eddaebed9f69217faa --- /dev/null +++ b/public/2023-icon-library/fancy/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59429b277c5557770c6cebbbc9fdc49669feca664fe2da8264a7a42ad2a91254 +size 275 diff --git a/public/2023-icon-library/fancy/erun1.png b/public/2023-icon-library/fancy/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa3d8de9a2b5d4075254f7db6bf6f99268930648 --- /dev/null +++ b/public/2023-icon-library/fancy/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b7d4d2ac766546984246ed177c46e61c776d90c1e16eee5d5887438bbd8be5 +size 259 diff --git a/public/2023-icon-library/fancy/erun2.png b/public/2023-icon-library/fancy/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c5e26c50f71074505cff74cd26d83afcaa18fced --- /dev/null +++ b/public/2023-icon-library/fancy/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8207eaf83e1faab0a46a58d2d349dc62cbfcb52872cf04b86fed9d7927321afc +size 259 diff --git a/public/2023-icon-library/fancy/escratch1.png b/public/2023-icon-library/fancy/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f28bca36bd531e191973b418eb5475b463d4ae03 --- /dev/null +++ b/public/2023-icon-library/fancy/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69c05e5ed2001a5729665401c22bc15c13120b45186463314ed9ee5fb1d8349 +size 235 diff --git a/public/2023-icon-library/fancy/escratch2.png b/public/2023-icon-library/fancy/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a2575e296b05da6ff599748ad300673b0102c609 --- /dev/null +++ b/public/2023-icon-library/fancy/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bc4a6de36ab31ceb98acd165b213f4801a032a164f539f37b8b12bb129e42a +size 212 diff --git a/public/2023-icon-library/fancy/itch1.png b/public/2023-icon-library/fancy/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..aff80036bea28ac94e77c81170af7ff252d9fd8a --- /dev/null +++ b/public/2023-icon-library/fancy/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfe13d7eb0f18479b7666f65e0250e726680a99f2408a385172e8b5c945bbc4 +size 277 diff --git a/public/2023-icon-library/fancy/itch2.png b/public/2023-icon-library/fancy/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..051fb9b07d01b7f0b2bd845c0a426f9e72dd2e30 --- /dev/null +++ b/public/2023-icon-library/fancy/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16cd25f3315ae881e337d73ca446b6cf85bb4a7ed39bb31ebc2466d6c636b33 +size 239 diff --git a/public/2023-icon-library/fancy/nerun1.png b/public/2023-icon-library/fancy/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..929d16db962fb4032db2f0053ba4f431a9ebc45e --- /dev/null +++ b/public/2023-icon-library/fancy/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f3574dfbd570af92d6c1ad63623a0b028e36cbca130b54e093f378b8bbf008 +size 232 diff --git a/public/2023-icon-library/fancy/nerun2.png b/public/2023-icon-library/fancy/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..256d1fed436c221e01686dc5fe10562301a9325b --- /dev/null +++ b/public/2023-icon-library/fancy/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61c534be4d7443cacd2df79fa136d43339b2d327fff92a428837b06f1b20cdb +size 253 diff --git a/public/2023-icon-library/fancy/nrun1.png b/public/2023-icon-library/fancy/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..257334f1cdebada1f929cae681b1da36d74a08b4 --- /dev/null +++ b/public/2023-icon-library/fancy/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2d3df151b8d5f1ccdab44cbbbaf8d736aee5dc0d456a61514e26f47fa599e4 +size 209 diff --git a/public/2023-icon-library/fancy/nrun2.png b/public/2023-icon-library/fancy/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e3bdecf17c2a8c465929a66b469dedcc057fe9f5 --- /dev/null +++ b/public/2023-icon-library/fancy/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0a6ed134da1aa9b8896afcdac221c6565087ff86ccd7774b54e5ba5edc3edc +size 222 diff --git a/public/2023-icon-library/fancy/nscratch1.png b/public/2023-icon-library/fancy/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..79cebbd4db742262347089bbaba0fc76a5398cc7 --- /dev/null +++ b/public/2023-icon-library/fancy/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a824ccd55a7c051111c3e956da60a863399492f843d8b231f7838a6458845a2 +size 245 diff --git a/public/2023-icon-library/fancy/nscratch2.png b/public/2023-icon-library/fancy/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d5a14d3d86e4fbda0ec45b4a0ea01dabbaf110d --- /dev/null +++ b/public/2023-icon-library/fancy/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbb08189c12321c75443c283dc42fa67eab19c7241d87ffa88507aae93d698e +size 242 diff --git a/public/2023-icon-library/fancy/nwrun1.png b/public/2023-icon-library/fancy/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e60104d0f0fbf90a60f64c619444265830574b6 --- /dev/null +++ b/public/2023-icon-library/fancy/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c319685dc33120eace8a696b61fa03baca7ea964411beca2c30cb35cc85688bc +size 231 diff --git a/public/2023-icon-library/fancy/nwrun2.png b/public/2023-icon-library/fancy/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ae08c04c1b64f6753caf8608df60a9ff0b987e --- /dev/null +++ b/public/2023-icon-library/fancy/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814b2f25d5f2fd791efc459221d33d72dc33f5e7564d2d28a72565067c7bec97 +size 249 diff --git a/public/2023-icon-library/fancy/serun1.png b/public/2023-icon-library/fancy/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ce96388a6462fff37221583102169be49bd2f8 --- /dev/null +++ b/public/2023-icon-library/fancy/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7c586b83ae51ef640a90e29fc53a76fa33a4b908979b151147b0807685d18c +size 227 diff --git a/public/2023-icon-library/fancy/serun2.png b/public/2023-icon-library/fancy/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..33f4b228f466f72e9f74154ecfb5beeb66ea5e23 --- /dev/null +++ b/public/2023-icon-library/fancy/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bccb1729381925f69117deaf36b04401e4695ba974eb5bfa04e4e77757877f0 +size 246 diff --git a/public/2023-icon-library/fancy/sleep1.png b/public/2023-icon-library/fancy/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..346bbe21402b07d5372ecc72c975659638525e20 --- /dev/null +++ b/public/2023-icon-library/fancy/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d173739859cf9cc2d8f3718337b3f24d32e81e9688c75ea4a62224627df2eb +size 239 diff --git a/public/2023-icon-library/fancy/sleep2.png b/public/2023-icon-library/fancy/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..8737baa8ac6c30710ff0de5dd913d8dd923977f8 --- /dev/null +++ b/public/2023-icon-library/fancy/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63477014dcb3f557539ddc81dd2092d42e4ec21b8b2b62f560dc3ef6c1fe9e7 +size 239 diff --git a/public/2023-icon-library/fancy/srun1.png b/public/2023-icon-library/fancy/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3d26c60482d2f6dd23cffe86e94f816ac1ea9e --- /dev/null +++ b/public/2023-icon-library/fancy/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341df463f451409508238f0ef1a76926825faaaa5266c2815a740bb8c843086a +size 205 diff --git a/public/2023-icon-library/fancy/srun2.png b/public/2023-icon-library/fancy/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ba836173e90779e8b904d5ca3afd1982d7f404a1 --- /dev/null +++ b/public/2023-icon-library/fancy/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad95d1a7990f90d49426033aa37e3b24109dd1fabaae2aadd7996d20b2de943 +size 225 diff --git a/public/2023-icon-library/fancy/sscratch1.png b/public/2023-icon-library/fancy/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..3eba1e17cd4e099b461e81fe3d0735bd9461e476 --- /dev/null +++ b/public/2023-icon-library/fancy/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d00b0f744d05d34e7df69351c4bc64d7252f3b893e3f16b160cb57416afb98 +size 246 diff --git a/public/2023-icon-library/fancy/sscratch2.png b/public/2023-icon-library/fancy/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..657e02706cbd715b78df4f1f46fc27c41ba6e1d1 --- /dev/null +++ b/public/2023-icon-library/fancy/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d400f27e2dae6d7132a4e37ae526999724b73dfbfaf769ff88f2e09d01cb42 +size 249 diff --git a/public/2023-icon-library/fancy/still.png b/public/2023-icon-library/fancy/still.png new file mode 100644 index 0000000000000000000000000000000000000000..8f8735582b8667aa9cfded2e8c42275dff11ee10 --- /dev/null +++ b/public/2023-icon-library/fancy/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c416d814fe1589288864b79b3335baf20f3cd6dafdf0a88b2f7503b736e54eaa +size 235 diff --git a/public/2023-icon-library/fancy/swrun1.png b/public/2023-icon-library/fancy/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b045c20d06164eaa0ebee30dbc18cbc73231c549 --- /dev/null +++ b/public/2023-icon-library/fancy/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8071314155c90a0341712dd11f7c2f66b549b7d00b99f4fe1a40a21893c90226 +size 214 diff --git a/public/2023-icon-library/fancy/swrun2.png b/public/2023-icon-library/fancy/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a62beec50ac821345fe5657f6fa183d8856ab078 --- /dev/null +++ b/public/2023-icon-library/fancy/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213edb099e0b703d306edf353ec112656cf46cb79704006e7997428f44741213 +size 249 diff --git a/public/2023-icon-library/fancy/wash.png b/public/2023-icon-library/fancy/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..b2d4466ee3809da348db7e713900197558e55fbf --- /dev/null +++ b/public/2023-icon-library/fancy/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bedefbae4594897912e354effe4a273ca454d4c15047c4bb02e8a9dfe4f511 +size 277 diff --git a/public/2023-icon-library/fancy/wrun1.png b/public/2023-icon-library/fancy/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3f0dba772c3a5a983db8faf3d8ca96915f1cb000 --- /dev/null +++ b/public/2023-icon-library/fancy/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eabb1f0066999f1972168382a66622c8214761c847374c7b938abdd116ffdc8 +size 262 diff --git a/public/2023-icon-library/fancy/wrun2.png b/public/2023-icon-library/fancy/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e158a1058dbc942768089b695e415cfded53e2b3 --- /dev/null +++ b/public/2023-icon-library/fancy/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d529b89e20e0887bf669939f76e63e65eeb5ba966535115731ffc7a631d7fb57 +size 256 diff --git a/public/2023-icon-library/fancy/wscratch1.png b/public/2023-icon-library/fancy/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8301f19be185bb9cb5eeee2d92df95d5b8db0d1e --- /dev/null +++ b/public/2023-icon-library/fancy/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd9cec35e60566070e35b722c2c8a7673984b79808cea290386578c8647e559 +size 235 diff --git a/public/2023-icon-library/fancy/wscratch2.png b/public/2023-icon-library/fancy/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..8887337eaadc77973c85f4a2e4232587701ff59d --- /dev/null +++ b/public/2023-icon-library/fancy/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67313bd9014fd0bbc4a9630f8d3a2c69c458fac3f5d37b243985f7e827ddef4d +size 214 diff --git a/public/2023-icon-library/fancy/yawn.png b/public/2023-icon-library/fancy/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..530066bc91f2260d58a83cfa09108fa2a9db77db --- /dev/null +++ b/public/2023-icon-library/fancy/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4c5e098050edd534d0aea409f85060aa91241c80e303b336eee225d7272594 +size 285 diff --git a/public/2023-icon-library/ghost/alert.png b/public/2023-icon-library/ghost/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..c622d3a548616e37fc964726a7e39600f1f2c09d --- /dev/null +++ b/public/2023-icon-library/ghost/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec338317a04ffe4860db811f0e493c26d0e67eee53fc0bdf543569b3272ebec9 +size 429 diff --git a/public/2023-icon-library/ghost/erun1.png b/public/2023-icon-library/ghost/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..dcfe897ad47610dc571999f6f81dbc1050027aa9 --- /dev/null +++ b/public/2023-icon-library/ghost/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c5f1a3b39d760f0bd301a21038472a8710820b8e54ccdfc8e3d9daaf17494b +size 420 diff --git a/public/2023-icon-library/ghost/erun2.png b/public/2023-icon-library/ghost/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a4405b9043616cdd7aa7eea8f2568175550d47 --- /dev/null +++ b/public/2023-icon-library/ghost/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ed1ccfc44ced58cc075dba48ada85b30f4ca58723079ebb6482b31a5c10f3b +size 400 diff --git a/public/2023-icon-library/ghost/escratch1.png b/public/2023-icon-library/ghost/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5abd61f89014f4fb12977f30658d85a0b06d49af --- /dev/null +++ b/public/2023-icon-library/ghost/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01575e40b7566af6656c269e21b617ab28fcf283b965c3ce8c1c6cde48280b46 +size 414 diff --git a/public/2023-icon-library/ghost/escratch2.png b/public/2023-icon-library/ghost/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e0577ac92b4b1f000b042b6a2f8d0d2c7a2289 --- /dev/null +++ b/public/2023-icon-library/ghost/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e8ad5907784d0d546991a37f97f81abebd1c27245c8f96834e16f9ca7880a9 +size 412 diff --git a/public/2023-icon-library/ghost/itch1.png b/public/2023-icon-library/ghost/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d06ed92f3d9e456aa01f39670b7655004eb0ed31 --- /dev/null +++ b/public/2023-icon-library/ghost/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4bfb736a3b1d714319769fa0e7fcd03b2dd09bb948191de1003a449011fb1f5 +size 420 diff --git a/public/2023-icon-library/ghost/itch2.png b/public/2023-icon-library/ghost/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5f24c453854ee1a98b2e318fa30af5df856314 --- /dev/null +++ b/public/2023-icon-library/ghost/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cfac301e4575f05e52876503f3e7f425db7b72520cafad21b823e1fc726b714 +size 402 diff --git a/public/2023-icon-library/ghost/nerun1.png b/public/2023-icon-library/ghost/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..76f4149484dbf7cf106b0227499f437039ddefcc --- /dev/null +++ b/public/2023-icon-library/ghost/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a878d88fed84b72ac3dd568d64e768c23821f7ae5ec7f6f7bd285fbf874d7cd +size 413 diff --git a/public/2023-icon-library/ghost/nerun2.png b/public/2023-icon-library/ghost/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb7ebf78cddc197345b21058370a97067444972 --- /dev/null +++ b/public/2023-icon-library/ghost/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f8d06b2529643aa379421c91a517e81f43242725496ddc9c2a9d7da2c9440a +size 436 diff --git a/public/2023-icon-library/ghost/nrun1.png b/public/2023-icon-library/ghost/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e02c07fcb331aa4d347d18b87002f0a9d28f6a8a --- /dev/null +++ b/public/2023-icon-library/ghost/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840f87698491a000b9c8cb303e75ea6ce7bc430956c7a8e95cfc3ddfba641275 +size 394 diff --git a/public/2023-icon-library/ghost/nrun2.png b/public/2023-icon-library/ghost/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b7c88bc0cb5890b30eade6eccb98faa3436880f4 --- /dev/null +++ b/public/2023-icon-library/ghost/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0322a394d8a6daf9d2f2a72c69127e6f0e052b3170d09fea70141cdb25f93f79 +size 444 diff --git a/public/2023-icon-library/ghost/nscratch1.png b/public/2023-icon-library/ghost/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2064fa4144b3a2571bf7c4b48e6683b8900f882d --- /dev/null +++ b/public/2023-icon-library/ghost/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63fc0c406c1c8b64951b831babb6f63b8b8740845eeea923695162b2d31ef16 +size 429 diff --git a/public/2023-icon-library/ghost/nscratch2.png b/public/2023-icon-library/ghost/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..35c73434213bf67dba1d3739ae4c9c4289c26def --- /dev/null +++ b/public/2023-icon-library/ghost/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31153fe68f9615ca8c883f1b332f1c94118d5f27756d0d8c4e8fbc9c37f4ca95 +size 426 diff --git a/public/2023-icon-library/ghost/nwrun1.png b/public/2023-icon-library/ghost/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d66f619d0ed45a6470b5ac2e4a1c7406b4c721c --- /dev/null +++ b/public/2023-icon-library/ghost/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292ea16a704a4cec095e9847a0623df2744f90b32d9ece3992946018034e1792 +size 411 diff --git a/public/2023-icon-library/ghost/nwrun2.png b/public/2023-icon-library/ghost/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8a02dedb9be28b02b02db0b75726efa426f93e79 --- /dev/null +++ b/public/2023-icon-library/ghost/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210cf5e85b07586d717e652fcb7e5a7b10e8234cbbbf32e4a431d03367a0a0bc +size 437 diff --git a/public/2023-icon-library/ghost/serun1.png b/public/2023-icon-library/ghost/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..390a1305afce961ccdb56cdf67af5f2b75cdc777 --- /dev/null +++ b/public/2023-icon-library/ghost/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3ca64442882e829b455e69fe03c1c6ede48b0072d3c8b841931be7c0bfae21 +size 404 diff --git a/public/2023-icon-library/ghost/serun2.png b/public/2023-icon-library/ghost/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d348d2bd97ecaf0456c70b326402f2bf792f007 --- /dev/null +++ b/public/2023-icon-library/ghost/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56941ebf4a580e807fdadfef24c79effae3d174199d5a3a55aefc31ae7fbf90e +size 428 diff --git a/public/2023-icon-library/ghost/sleep1.png b/public/2023-icon-library/ghost/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5dc2a42418fcb7d1824cecafa5babf12900f860 --- /dev/null +++ b/public/2023-icon-library/ghost/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86245eb89c52b34a39209c19ac8a20cf446de6171adc6289290d65e4b6d4f57 +size 340 diff --git a/public/2023-icon-library/ghost/sleep2.png b/public/2023-icon-library/ghost/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..40069f0f1657cd3978c6456a17e5cb29a564d2f4 --- /dev/null +++ b/public/2023-icon-library/ghost/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb80421282d6ccc8a6c440ccb9970c2ff0800229e7f65a2a2ac1211b73adf7f +size 335 diff --git a/public/2023-icon-library/ghost/srun1.png b/public/2023-icon-library/ghost/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0131359915b315a4473c937e9288ea4096c7c492 --- /dev/null +++ b/public/2023-icon-library/ghost/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51adcebaef51b37463e63d4c94944a76c7524d3f9e6b3d21068cf02e0fae0fa9 +size 404 diff --git a/public/2023-icon-library/ghost/srun2.png b/public/2023-icon-library/ghost/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..79d9b960c0aeb52ca526ef4fce14567c70547df3 --- /dev/null +++ b/public/2023-icon-library/ghost/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0778bb3be7998b1dd018be3b0c9e8b3af4622b435ccffc4a76f1a601cb2b05 +size 436 diff --git a/public/2023-icon-library/ghost/sscratch1.png b/public/2023-icon-library/ghost/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..dad763030cbfc6dc622e3bd6c4c1bc12bd244d29 --- /dev/null +++ b/public/2023-icon-library/ghost/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d68417b88d7dd9eff0579b9408c7cbdc711d233e55614bc4d2a33d427467a4 +size 405 diff --git a/public/2023-icon-library/ghost/sscratch2.png b/public/2023-icon-library/ghost/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..3794bf3a608776ae7d53b1707ede50d20652e596 --- /dev/null +++ b/public/2023-icon-library/ghost/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2796969c0d7959224395a1ccf8016e26a4c6828914fc7c8fe0cc4951ed24906d +size 402 diff --git a/public/2023-icon-library/ghost/still.png b/public/2023-icon-library/ghost/still.png new file mode 100644 index 0000000000000000000000000000000000000000..dea945332015d7a4256854898fbfd102e52c7400 --- /dev/null +++ b/public/2023-icon-library/ghost/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece03926487d3238938e061a53778edeccc0d6f81908d254f0b5489edcee66ae +size 382 diff --git a/public/2023-icon-library/ghost/swrun1.png b/public/2023-icon-library/ghost/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..41dec90204d1d0ddba8bd3edb865bd2402251de3 --- /dev/null +++ b/public/2023-icon-library/ghost/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7cd3191748ace926924c01dc6e4d5dc2763468b2d9d1e20aa2b154a5377d3b +size 401 diff --git a/public/2023-icon-library/ghost/swrun2.png b/public/2023-icon-library/ghost/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3ef053b393e05e24cd55b5cdeee9781978a40393 --- /dev/null +++ b/public/2023-icon-library/ghost/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c0380a9e115be02a4a828b8e6b1a466fa3848fd71fa6d20d5d09f575e31a90 +size 428 diff --git a/public/2023-icon-library/ghost/wash.png b/public/2023-icon-library/ghost/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..c23d82a8f8dc0f00eb675cc66fa9f0aeb73dcdbd --- /dev/null +++ b/public/2023-icon-library/ghost/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55596e75f3487ebce54e73dba7f12df9d0c3f5b6c3a673d399335f59f095ee1d +size 417 diff --git a/public/2023-icon-library/ghost/wrun1.png b/public/2023-icon-library/ghost/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e3aea3ab6610b23cf47f7658248a44adbde40616 --- /dev/null +++ b/public/2023-icon-library/ghost/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bd6a8f9d10971f12de4c36d5c70bdd6e6887bb0cf3812b9e96dee9646d8c0a +size 424 diff --git a/public/2023-icon-library/ghost/wrun2.png b/public/2023-icon-library/ghost/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..78dce32f529d7f72fec983b943ac696876ee9541 --- /dev/null +++ b/public/2023-icon-library/ghost/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee3bf36fa900ad4861ee6bc10ea202ab3b2e61b13b4083a1ac48960ddbf9ddf +size 392 diff --git a/public/2023-icon-library/ghost/wscratch1.png b/public/2023-icon-library/ghost/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b223553969f3979cebaf5730bc43f3a8ad96cbb8 --- /dev/null +++ b/public/2023-icon-library/ghost/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d1fe5f214f614e3891097b06f848853b28f234ff2dcab2627a669c6586fb73 +size 418 diff --git a/public/2023-icon-library/ghost/wscratch2.png b/public/2023-icon-library/ghost/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7efb30c3a1783fb0aeda581c20c80f060484512e --- /dev/null +++ b/public/2023-icon-library/ghost/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ab56b5b808dc512dedf510f870750eb5c056d915bb4018a0f8a5b3699470a2 +size 412 diff --git a/public/2023-icon-library/ghost/yawn.png b/public/2023-icon-library/ghost/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..5c60f3c1e49f194ae4cbccb9fa3d1a29e500658d --- /dev/null +++ b/public/2023-icon-library/ghost/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0f69bbcc0e88e18e276a5922a2d1dc88e58c06c7783034f22bc4d0a9fbda0f +size 391 diff --git a/public/2023-icon-library/gray/alert.png b/public/2023-icon-library/gray/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..6e26aba3174dfc2edfce190d88b00e49a8fbcedc --- /dev/null +++ b/public/2023-icon-library/gray/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38a61d1b3020224fcfa0dbec3da685f3056867073cb26db106e920588635b64 +size 298 diff --git a/public/2023-icon-library/gray/erun1.png b/public/2023-icon-library/gray/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..06905871adc2b6fed0b138f5ebe04adac4ea83c5 --- /dev/null +++ b/public/2023-icon-library/gray/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfec7129aeefb15809e9a8bf9fc8adc25b0b53494cb23ee2a03a4b4c348300b2 +size 280 diff --git a/public/2023-icon-library/gray/erun2.png b/public/2023-icon-library/gray/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1df5592b1054ef06e76ad96d122711e8b1c04e8 --- /dev/null +++ b/public/2023-icon-library/gray/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9141a4d2ccfb50375626b2182fbc9987a710736716d21d28eae143bbcca287 +size 274 diff --git a/public/2023-icon-library/gray/escratch1.png b/public/2023-icon-library/gray/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..790c9e8172cd7ea583b64092695ad4b14f6fb294 --- /dev/null +++ b/public/2023-icon-library/gray/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242cb87f8327b075ad4753c2bf2b4ef5c285cb593001e63e21072f853a195bce +size 278 diff --git a/public/2023-icon-library/gray/escratch2.png b/public/2023-icon-library/gray/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..26bef3c09e610ba608382035bd44383abd1e4bbb --- /dev/null +++ b/public/2023-icon-library/gray/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99237e557db954889ad137ab7bfe5b8d1633d6480624a11d4ef1872132830751 +size 261 diff --git a/public/2023-icon-library/gray/itch1.png b/public/2023-icon-library/gray/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..bd4c0d8bca8ff626a8eb16fbb29abd62fe6f37ec --- /dev/null +++ b/public/2023-icon-library/gray/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4a9b4e1fcf4edff0e63eb034a95fb50e3044841465e454545364d2fb28fecd +size 267 diff --git a/public/2023-icon-library/gray/itch2.png b/public/2023-icon-library/gray/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec7b7842db57d7c6b9d4c8d7507eda631cb9afb --- /dev/null +++ b/public/2023-icon-library/gray/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4858e01ea8d89a5806330510625679b28d71e8bc08f832761a925ceef4cb34 +size 262 diff --git a/public/2023-icon-library/gray/nerun1.png b/public/2023-icon-library/gray/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..74d3158533b6b4961201992765f942652d2168dc --- /dev/null +++ b/public/2023-icon-library/gray/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d3b8aab0acc39f043d14cf5dd97511d8a9a7138319eccb620c3847cb5d13a4 +size 268 diff --git a/public/2023-icon-library/gray/nerun2.png b/public/2023-icon-library/gray/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..307528c30d8aac63bd876a4481a8603a25a75847 --- /dev/null +++ b/public/2023-icon-library/gray/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c64c3839923a5ec7165e229d87f77b6987751f8b234dcb34a0b8fa79dab5526a +size 280 diff --git a/public/2023-icon-library/gray/nrun1.png b/public/2023-icon-library/gray/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..48cde5339c709494c4c37fa16fff826b17293e28 --- /dev/null +++ b/public/2023-icon-library/gray/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c7399a887d4bf39d97f74f34449b553bf0e05310693176e5046f55fd8e7729 +size 245 diff --git a/public/2023-icon-library/gray/nrun2.png b/public/2023-icon-library/gray/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..53e1eea3c3724f65ea95be4c9e39eb6ba1c1d2db --- /dev/null +++ b/public/2023-icon-library/gray/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b18f7e38a7ba15f449f00e6b038f75bc75d3e1715f51d7fc608cfff19318b8f +size 279 diff --git a/public/2023-icon-library/gray/nscratch1.png b/public/2023-icon-library/gray/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..72b44b10917da5dd5d397db4c89e4ffbc4f48641 --- /dev/null +++ b/public/2023-icon-library/gray/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6472ad2f429aa38a71f35812e93a8a72e9a07be7c23558ba3e9c60b48bed0337 +size 289 diff --git a/public/2023-icon-library/gray/nscratch2.png b/public/2023-icon-library/gray/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3edb6a8c57a92f33cae0974d56ffeee98506e4b --- /dev/null +++ b/public/2023-icon-library/gray/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152b17d7b1199a1377e95adb2f1ec6f69a6dd989e8dc584540c143f76bdcc100 +size 287 diff --git a/public/2023-icon-library/gray/nwrun1.png b/public/2023-icon-library/gray/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b83c71ba4ff8c93b5b641b1c9248e0eda2fd21 --- /dev/null +++ b/public/2023-icon-library/gray/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f1d86206eb94951040ff00755bb8f09947ae31a716a610a6075fb362a577de +size 265 diff --git a/public/2023-icon-library/gray/nwrun2.png b/public/2023-icon-library/gray/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..99cd2a55b272e50fcc14e74d2af8c0d09fbdb6d4 --- /dev/null +++ b/public/2023-icon-library/gray/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bd6e604af591044e4fc3fad7ba4538af0943907669faa5fd1bde1689f4324c +size 283 diff --git a/public/2023-icon-library/gray/serun1.png b/public/2023-icon-library/gray/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..98783ba8eaf3ae81f42f8bf5a903fb8843253d71 --- /dev/null +++ b/public/2023-icon-library/gray/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca80690710852809a7271ddb82cf0227bddeda712d9cc21ba290ba2a9f97be4 +size 279 diff --git a/public/2023-icon-library/gray/serun2.png b/public/2023-icon-library/gray/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..60e8befd803fc9c267e94e33e32da4960fbaeeea --- /dev/null +++ b/public/2023-icon-library/gray/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05f5c7ef25b1173ed2aab61ca2753345d0e5efec53e2096e6830d24c5b128d2 +size 278 diff --git a/public/2023-icon-library/gray/sleep1.png b/public/2023-icon-library/gray/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a1bd4ab2c0c7dd4ebb288a9aa31032bcb1ad3f9 --- /dev/null +++ b/public/2023-icon-library/gray/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f7dbd824d9dd56b838a1401f69277868194f8b8faf9c6bbf801979843bd582 +size 276 diff --git a/public/2023-icon-library/gray/sleep2.png b/public/2023-icon-library/gray/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..21f771cad6a0db5b52bee7f0ed8fc8773005dae2 --- /dev/null +++ b/public/2023-icon-library/gray/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772f6935c4ccba9b11fedfef6ea9d6c4c80902518516ea186c2818df8bcfde88 +size 270 diff --git a/public/2023-icon-library/gray/srun1.png b/public/2023-icon-library/gray/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9dcfb8f0e270dbf6a6ecf9765bf467097f78db1e --- /dev/null +++ b/public/2023-icon-library/gray/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2382dbda6b53dafe65b792134908afa435cfdd812dd23a533d4e645022b5c620 +size 244 diff --git a/public/2023-icon-library/gray/srun2.png b/public/2023-icon-library/gray/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b913d1248f6b00eb0bf245b0a88027045760f93 --- /dev/null +++ b/public/2023-icon-library/gray/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ac19c7c5dc2085f965926359d2ac3305606a94424d4c5dd60050ecf7245708 +size 280 diff --git a/public/2023-icon-library/gray/sscratch1.png b/public/2023-icon-library/gray/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a7a61c7bab78e548c4f818d94ee83f3c82980e --- /dev/null +++ b/public/2023-icon-library/gray/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1f9a8d35fea5aab61cf293a703612b57ab8f2fa13d3741c97b783be733052b +size 287 diff --git a/public/2023-icon-library/gray/sscratch2.png b/public/2023-icon-library/gray/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a87acc3603dd39a6f148ee9f058e1a6513b9203f --- /dev/null +++ b/public/2023-icon-library/gray/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b28708cbb6bd953cc01effeb3ad51e551e3440fe6fd197e2b55b350964937eb3 +size 278 diff --git a/public/2023-icon-library/gray/still.png b/public/2023-icon-library/gray/still.png new file mode 100644 index 0000000000000000000000000000000000000000..42fa9c950284f667d954efdf2231be13b7e7ab90 --- /dev/null +++ b/public/2023-icon-library/gray/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f943c68b863088659271938bc2089c7bf5bb999afd8f84d53fc59916525c868b +size 263 diff --git a/public/2023-icon-library/gray/swrun1.png b/public/2023-icon-library/gray/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b796f54f505e443cefdc6bb1059e36760438e5 --- /dev/null +++ b/public/2023-icon-library/gray/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a944fa33253757eab593a7f276d1016cf2789b119b6621e9ae28b80c3c54a212 +size 278 diff --git a/public/2023-icon-library/gray/swrun2.png b/public/2023-icon-library/gray/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e56cb0e036ce7cec534b3b929e20702c4dae2a5 --- /dev/null +++ b/public/2023-icon-library/gray/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595b0e61cb8df0a1533c3fb665b0f852d7f29bb091afe9429e80890bf1b9efb0 +size 298 diff --git a/public/2023-icon-library/gray/wash.png b/public/2023-icon-library/gray/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..ac297a728f21bfda2dd5912d658f6418d1e919d1 --- /dev/null +++ b/public/2023-icon-library/gray/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd3855f252c114b6132de10c452cffda81286fd31297c3ff47d040b81bb2b58 +size 278 diff --git a/public/2023-icon-library/gray/wrun1.png b/public/2023-icon-library/gray/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..184f8f6f8ab5b4ce0318a468b7781512f9626902 --- /dev/null +++ b/public/2023-icon-library/gray/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c47bc59d8ae38a2a5c16abf1e12980524525550f791caa6b0ee472891d7be9 +size 286 diff --git a/public/2023-icon-library/gray/wrun2.png b/public/2023-icon-library/gray/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb8053c26c72607d1ffea42f25384c1682a52ea --- /dev/null +++ b/public/2023-icon-library/gray/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbcbb547d04491d64c9d6c2847b2b3465c27397a8e6360ba70dc57c1f8a57f3 +size 273 diff --git a/public/2023-icon-library/gray/wscratch1.png b/public/2023-icon-library/gray/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..1eb7b0552a845c88eb9af902e3994e5d724f52c5 --- /dev/null +++ b/public/2023-icon-library/gray/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93aa675ba00c8272c21e135047cb5ef2d20972ed472c5adf9ff2f174c920838e +size 264 diff --git a/public/2023-icon-library/gray/wscratch2.png b/public/2023-icon-library/gray/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..99604542fcdc05de640b03e3cd8d8103fed1f1e5 --- /dev/null +++ b/public/2023-icon-library/gray/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1f03f625b6c68d1e1cffe36b97534205887bbd5b678a289e356a01f88ab7c42 +size 271 diff --git a/public/2023-icon-library/gray/yawn.png b/public/2023-icon-library/gray/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c547c3a5e9394417af2c2e352bfd179b390f5a --- /dev/null +++ b/public/2023-icon-library/gray/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e17705b5c086ea23702a9cce432c45ee60579ba5d907b4021d66c3a21604a43 +size 278 diff --git a/public/2023-icon-library/holiday/alert.png b/public/2023-icon-library/holiday/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..fb13b6001eb280527625fc065e590857a3378ff2 --- /dev/null +++ b/public/2023-icon-library/holiday/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6512e0807428226636878f1618a18b4644e3c6f60748314f340c85ee2e847d99 +size 348 diff --git a/public/2023-icon-library/holiday/erun1.png b/public/2023-icon-library/holiday/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4a7c3cb07dc28592db7aeb73ece815f165cd7b15 --- /dev/null +++ b/public/2023-icon-library/holiday/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89d59cec13bba7e151a6e937d56e7e5c37a5a21118724c4492de29db1fbc388 +size 329 diff --git a/public/2023-icon-library/holiday/erun2.png b/public/2023-icon-library/holiday/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..cd8961e0799013c841691b018eda75b8a7a7db34 --- /dev/null +++ b/public/2023-icon-library/holiday/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25afeb436162439c70aceeec1bcb25af8ba7f82d5cb89f168f21bc671c1b4475 +size 321 diff --git a/public/2023-icon-library/holiday/escratch1.png b/public/2023-icon-library/holiday/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdc5cd04ece3a04aaa782518fbc0d627f96bead --- /dev/null +++ b/public/2023-icon-library/holiday/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a77ba2d9de90b233ea5e900727da5d2f2b4eb9497ffa2a80db6f291b25ceceb +size 315 diff --git a/public/2023-icon-library/holiday/escratch2.png b/public/2023-icon-library/holiday/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7230d374b9a8753e237254ae294dff7cb75f3521 --- /dev/null +++ b/public/2023-icon-library/holiday/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053cce33bdb682bee93a1ef864b7d506512d6ee7d1510db99cc19aaf46b38ee8 +size 308 diff --git a/public/2023-icon-library/holiday/itch1.png b/public/2023-icon-library/holiday/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..7b5d9445a142241c6f847895f396247bcb469fa3 --- /dev/null +++ b/public/2023-icon-library/holiday/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694f8c2f1ab22d945c5e314da90baa17eb37c9e9383a31dccbc40a3d972ff088 +size 329 diff --git a/public/2023-icon-library/holiday/itch2.png b/public/2023-icon-library/holiday/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cbf73a206c56874e1501709bd7620c92d53feb8 --- /dev/null +++ b/public/2023-icon-library/holiday/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21a79a8ff6bb7bc417f5d996a8f55a39a5f9deb1cb7ab1d92446bcf9bede817 +size 316 diff --git a/public/2023-icon-library/holiday/nerun1.png b/public/2023-icon-library/holiday/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..856fbd901dfdc21eaf88dac42777f5ee4935a90a --- /dev/null +++ b/public/2023-icon-library/holiday/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ec9ac0fa5794cd1e20f04ef5996681cec8fef314b1bea70fd3de12c3229caf +size 319 diff --git a/public/2023-icon-library/holiday/nerun2.png b/public/2023-icon-library/holiday/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3c46c7b055030eb60695df1613c41f331cb65d4e --- /dev/null +++ b/public/2023-icon-library/holiday/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49368c9b8ed9c89af787b1de56770bd6aa82d5de284749f96a9a04ae85dfbb69 +size 322 diff --git a/public/2023-icon-library/holiday/nrun1.png b/public/2023-icon-library/holiday/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8e454b4f3cead998418a5b795cfe46ecd5dad197 --- /dev/null +++ b/public/2023-icon-library/holiday/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee48d928873f65ebeb4409920d998f4af22dcfdc5f4a3c691666c52a8314607a +size 297 diff --git a/public/2023-icon-library/holiday/nrun2.png b/public/2023-icon-library/holiday/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4fd12f9c8fcb7eb4f3a8146de3f68aad9f4d25 --- /dev/null +++ b/public/2023-icon-library/holiday/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73faee432242535f873b8921ff5b1d7b4211ea57a3ba2b28d6ee2eb582a55152 +size 326 diff --git a/public/2023-icon-library/holiday/nscratch1.png b/public/2023-icon-library/holiday/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..cd0bab227cf963bf0833779fe5f3a6d49876b47a --- /dev/null +++ b/public/2023-icon-library/holiday/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4859c10fc11dd7c68c4b44e713573c4dce5e2f67d093c55f2572b46fb9b2bd5a +size 322 diff --git a/public/2023-icon-library/holiday/nscratch2.png b/public/2023-icon-library/holiday/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..058bceb5b5b13b877dd9df94df4d37577fdb1516 --- /dev/null +++ b/public/2023-icon-library/holiday/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56076525a4e48bab4f3d8b852d98b314c4d06197f02ba55351280175a8b1f57 +size 322 diff --git a/public/2023-icon-library/holiday/nwrun1.png b/public/2023-icon-library/holiday/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7086c1d332fff426e069ddab8834c44f93088591 --- /dev/null +++ b/public/2023-icon-library/holiday/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f462a69cf1bc9277affcc2cafe9ff4cfcdd7a1d9a4de674942f86c127a130f9 +size 312 diff --git a/public/2023-icon-library/holiday/nwrun2.png b/public/2023-icon-library/holiday/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e23d6a0e07a8ff754adaea0282110a659aa3c4b9 --- /dev/null +++ b/public/2023-icon-library/holiday/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d6bd2e0b474e917dd9a29ac0092f7626ef763d31d186d61e24c69c71bd9f87 +size 335 diff --git a/public/2023-icon-library/holiday/serun1.png b/public/2023-icon-library/holiday/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a69a84eec24b6dbb6c865426a6740ea4d8505201 --- /dev/null +++ b/public/2023-icon-library/holiday/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a0b62a6df506970a206b7bdcab31537c7add9cf8ee12a75f40cefba18818a9 +size 327 diff --git a/public/2023-icon-library/holiday/serun2.png b/public/2023-icon-library/holiday/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4481ad2bc0b841f2f43c7c952a6d602616e2f643 --- /dev/null +++ b/public/2023-icon-library/holiday/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defc86d63806f1889c05c46edbcad20bed2de6fa0a0b0834c47e9cb697da40f6 +size 317 diff --git a/public/2023-icon-library/holiday/sleep1.png b/public/2023-icon-library/holiday/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..69570188312762c94945c7f5008b4806f401e11f --- /dev/null +++ b/public/2023-icon-library/holiday/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4b99dd8010c7ebf0de00424203f431c0fc4e4cfe78e03ae9870364dbe29fb1 +size 341 diff --git a/public/2023-icon-library/holiday/sleep2.png b/public/2023-icon-library/holiday/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..68759898be26f4de06e642bb98babaccb034eb9d --- /dev/null +++ b/public/2023-icon-library/holiday/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d411639eafa8914e68214c085724832f2c650d788e19c9a92ba70d373bbc67f8 +size 357 diff --git a/public/2023-icon-library/holiday/srun1.png b/public/2023-icon-library/holiday/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec049e84d50af577ec57eeb7b71868962df79a7 --- /dev/null +++ b/public/2023-icon-library/holiday/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7622d669af1d244aec7d62b457aa567335c1bd54231c9647b322850537bebc45 +size 301 diff --git a/public/2023-icon-library/holiday/srun2.png b/public/2023-icon-library/holiday/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..37f4b63162d06aee6e1368e8ac0f254648361ba8 --- /dev/null +++ b/public/2023-icon-library/holiday/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990d3858b5bd32e330bc9156dbf5f7a8578ae8b76a335409abba4ff90140ccc8 +size 312 diff --git a/public/2023-icon-library/holiday/sscratch1.png b/public/2023-icon-library/holiday/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2bde7b6147017ad4cb9cb488b77f1535815e6068 --- /dev/null +++ b/public/2023-icon-library/holiday/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e92610817a92a2ea02105ed55c9f2807a6956856aae8c68b9a67a146b2bcc0 +size 308 diff --git a/public/2023-icon-library/holiday/sscratch2.png b/public/2023-icon-library/holiday/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d0709d2fde7575462f08ab4e280630d02cd70676 --- /dev/null +++ b/public/2023-icon-library/holiday/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0850c451c160ba44589b0859561711557beb9b2df854e2c424d25970e3468a74 +size 305 diff --git a/public/2023-icon-library/holiday/still.png b/public/2023-icon-library/holiday/still.png new file mode 100644 index 0000000000000000000000000000000000000000..d5605e93c2cfb76299aa1fdaeb2448b7a8442f20 --- /dev/null +++ b/public/2023-icon-library/holiday/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7b02d0abd92b5de24ffd9a7714a17bca2fda983c211508c858af7bf5b7a8dc +size 301 diff --git a/public/2023-icon-library/holiday/swrun1.png b/public/2023-icon-library/holiday/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5a644fc77d00ac58db0e3fbe7f382c43b44b629a --- /dev/null +++ b/public/2023-icon-library/holiday/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8105aa553de80cc58b234cd11e99e2a2a928f20f3bd2e749b7ba6b2799d5ed6e +size 323 diff --git a/public/2023-icon-library/holiday/swrun2.png b/public/2023-icon-library/holiday/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a97caeae62f41a94f98cb5ed465d5a4f3070a5f9 --- /dev/null +++ b/public/2023-icon-library/holiday/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cb9f2816c380f861d926c4795c381756f91bfd977fedeb67556ee99972693e +size 324 diff --git a/public/2023-icon-library/holiday/wash.png b/public/2023-icon-library/holiday/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..6f37824fd3b9d6d3fb77feacdcba0ed6f8c8867c --- /dev/null +++ b/public/2023-icon-library/holiday/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c316cfb909f9379f74a79a9c96087054252a70e1d4d7447c9a63d5ab84e46040 +size 324 diff --git a/public/2023-icon-library/holiday/wrun1.png b/public/2023-icon-library/holiday/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..53b62d2d25211b34055e5e2b9bc59e6aa7e8ec3f --- /dev/null +++ b/public/2023-icon-library/holiday/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cfb3145ab4608b0b3d8d414b63aaa97be6794312630d26f621154b7c5a3210 +size 334 diff --git a/public/2023-icon-library/holiday/wrun2.png b/public/2023-icon-library/holiday/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..37e65e95e0646034bd34c332b62b03bb633e96c7 --- /dev/null +++ b/public/2023-icon-library/holiday/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63fe4e78e85defa6cc2f86e5cabdc7e999758be5f99f5417bed479962496461 +size 311 diff --git a/public/2023-icon-library/holiday/wscratch1.png b/public/2023-icon-library/holiday/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a89cfea4eda4f5c32780c6cf8bd9782b1ef13bb --- /dev/null +++ b/public/2023-icon-library/holiday/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63167bdb9f06ddf9e04dbbfbab3bd523919b1d036f1961316490681b1e6a4562 +size 319 diff --git a/public/2023-icon-library/holiday/wscratch2.png b/public/2023-icon-library/holiday/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6f1fcdd32fc98d54d5d44fc46ae2a3fad107c2d0 --- /dev/null +++ b/public/2023-icon-library/holiday/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359848ac3a3a429b42dd2e080d256abc07f3ca3f8c01e6e6f75206e2b9bc1e49 +size 302 diff --git a/public/2023-icon-library/holiday/yawn.png b/public/2023-icon-library/holiday/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..91b461a7a48459668bab7846e60502c56133eaac --- /dev/null +++ b/public/2023-icon-library/holiday/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e803b3d9f505bde1b357bc8f37670251886c94a3713b6784e9a6addc0c4241 +size 324 diff --git a/public/2023-icon-library/jess/alert.png b/public/2023-icon-library/jess/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..b8a004a6c9db79aa66ae6707d1d41ddef34dc9d4 --- /dev/null +++ b/public/2023-icon-library/jess/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfc6904052a76f3045e32925b9e26c9e4676f83a4bd0936b92888d787179b8c +size 318 diff --git a/public/2023-icon-library/jess/erun1.png b/public/2023-icon-library/jess/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a429169924d9d7ee204397d192f1067273de9a37 --- /dev/null +++ b/public/2023-icon-library/jess/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435934950ca15683c7ca30e6b68936fe73f5de662e392ed58d7ae2a19ec2d35e +size 303 diff --git a/public/2023-icon-library/jess/erun2.png b/public/2023-icon-library/jess/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e99a9def516e878fbedfb5ac7e4af5ae34e194 --- /dev/null +++ b/public/2023-icon-library/jess/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a9e222f5772054fc2edf71a34efbbe33ddb99c264ed545e55b0a8cbe047f7d +size 308 diff --git a/public/2023-icon-library/jess/escratch1.png b/public/2023-icon-library/jess/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..694f6fd5b2e2f61c8b7a6c66c7ba036bbf7640b4 --- /dev/null +++ b/public/2023-icon-library/jess/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa798dfa62eebbb1ac898a54097638881d17fd3dffcd26df75811f0a83d838d +size 301 diff --git a/public/2023-icon-library/jess/escratch2.png b/public/2023-icon-library/jess/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1e56370a58ca345eb38f2b0ac675aff8008716b0 --- /dev/null +++ b/public/2023-icon-library/jess/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f659d1d28ef9ac9b962ee86f95515b838278193baf6306fef600174b46ff0182 +size 284 diff --git a/public/2023-icon-library/jess/itch1.png b/public/2023-icon-library/jess/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f4b4f3aa0227173e53aa2a5f4cdfc2a0d46a8f3 --- /dev/null +++ b/public/2023-icon-library/jess/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daabab50cb55014ab924ea973650540f74760353f2a38b630fdd1b2978a175be +size 314 diff --git a/public/2023-icon-library/jess/itch2.png b/public/2023-icon-library/jess/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a5f0a93274949612949e0d4cd8514f10e4c830b9 --- /dev/null +++ b/public/2023-icon-library/jess/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2086b77e33f10979cde36ff7dd3161ae40fb3c9b0e265bc4eeab2f75f700ce76 +size 298 diff --git a/public/2023-icon-library/jess/nerun1.png b/public/2023-icon-library/jess/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f078228edab7299d3d845dcb02a538ee2c4d4965 --- /dev/null +++ b/public/2023-icon-library/jess/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509cfea47b719fab84a1337f0d5c2ba3af71a4bc59908e7303d698c60c631dd5 +size 289 diff --git a/public/2023-icon-library/jess/nerun2.png b/public/2023-icon-library/jess/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a2296704d3aac25b177ced7cabae7c0bdd298914 --- /dev/null +++ b/public/2023-icon-library/jess/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1d1e2b1227032fd57f9ee7ea3551e701f05ec6e86c4055b47933545f06c676 +size 315 diff --git a/public/2023-icon-library/jess/nrun1.png b/public/2023-icon-library/jess/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4031a884207be0995e63b362910b0dae170e9dde --- /dev/null +++ b/public/2023-icon-library/jess/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0232e258f33816b0bddef4e12f07729be9a9551cabe5d6888d1f5f97cc5ed34 +size 260 diff --git a/public/2023-icon-library/jess/nrun2.png b/public/2023-icon-library/jess/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a05a5ab7e277fc3be3ba5e507779b1af3f97af22 --- /dev/null +++ b/public/2023-icon-library/jess/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f58b270461ed745e6ba4bfcd8e7f4064b2b0b48d0852e02e5849288844ec8b +size 304 diff --git a/public/2023-icon-library/jess/nscratch1.png b/public/2023-icon-library/jess/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f468d8963839e912bfd713424b3ff19c316df274 --- /dev/null +++ b/public/2023-icon-library/jess/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb9e82835245f1d0a283a4370d7aefd11400f9a1819b96862445bb07b15858f +size 314 diff --git a/public/2023-icon-library/jess/nscratch2.png b/public/2023-icon-library/jess/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..019227c4dc516eb492fbc11880ddeab9c88b3bfd --- /dev/null +++ b/public/2023-icon-library/jess/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef146ed120dd79c5237bc6e9dce89cd7b17d58abe6d05f5975a6cfd1b1809ac +size 308 diff --git a/public/2023-icon-library/jess/nwrun1.png b/public/2023-icon-library/jess/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..eedfc6048a3686983448b3f8921faa0da07293df --- /dev/null +++ b/public/2023-icon-library/jess/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287438a134d7b8489f93f6d56b62a385aeda03f1fd374d8bf7e355af3474f1dc +size 280 diff --git a/public/2023-icon-library/jess/nwrun2.png b/public/2023-icon-library/jess/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5660938722360454f1e9f3b018dcfc9533dda152 --- /dev/null +++ b/public/2023-icon-library/jess/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6f58d07c83a9acf1fa03c871ab63a695fef67f39c9d1613a8195447c9bbb2b +size 315 diff --git a/public/2023-icon-library/jess/serun1.png b/public/2023-icon-library/jess/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..45d8ee1e8e448a5dee114811b11c8c27acbf2452 --- /dev/null +++ b/public/2023-icon-library/jess/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055c616c82583fa138b37c08710430c2f1c2db472cb103e36c5f0ec2808ff93e +size 300 diff --git a/public/2023-icon-library/jess/serun2.png b/public/2023-icon-library/jess/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf963b8453fc90e0e2857888f44353bf67cbaee --- /dev/null +++ b/public/2023-icon-library/jess/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb2ff31783652f0e2b246e01664c9e5c6c4e2c9b55568b97971528d0ef86321 +size 309 diff --git a/public/2023-icon-library/jess/sleep1.png b/public/2023-icon-library/jess/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..e5073006397264ae9a5ec1cb22591ab840a8f279 --- /dev/null +++ b/public/2023-icon-library/jess/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6dbe91a1eca7fd0d367956caba232fee2c0208448b9bbe1650b413ae0d96e82 +size 243 diff --git a/public/2023-icon-library/jess/sleep2.png b/public/2023-icon-library/jess/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..5918d9bfa766327c8dd0ebf0a5f2fb449d55979e --- /dev/null +++ b/public/2023-icon-library/jess/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec495ea874b694fb403476e36ccc112813b039b5c81d2640c7f21781958a4ae +size 250 diff --git a/public/2023-icon-library/jess/srun1.png b/public/2023-icon-library/jess/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a6260da6f6cadce132d451bd7ca03a5e2389f298 --- /dev/null +++ b/public/2023-icon-library/jess/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf34758689fd7a64d2859339617a981f8da3471fc9e40434f10bfbe246f7aec9 +size 293 diff --git a/public/2023-icon-library/jess/srun2.png b/public/2023-icon-library/jess/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..259f1ca49a48e472b64dac8e06d24e71fab94d96 --- /dev/null +++ b/public/2023-icon-library/jess/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abf951642fa13de6b05d646faea0cb781c697528740e41c5734ef1f24b54297 +size 301 diff --git a/public/2023-icon-library/jess/sscratch1.png b/public/2023-icon-library/jess/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..35a53a7bcbe5458eb84cfff5e7e80bd13671d824 --- /dev/null +++ b/public/2023-icon-library/jess/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1cfa4fe7787a3f5145fd37c2a9b854048c960838669195718b806547f45205 +size 297 diff --git a/public/2023-icon-library/jess/sscratch2.png b/public/2023-icon-library/jess/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..717105723031f56cc2e68ce4abef9bb60099d180 --- /dev/null +++ b/public/2023-icon-library/jess/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f973d7997c168b7a2b017f37ba9c0799223be484eac2145d8a66aa2ffe766d8 +size 294 diff --git a/public/2023-icon-library/jess/still.png b/public/2023-icon-library/jess/still.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f00eefe81205758a2fa4ee3005fabd305ceccc --- /dev/null +++ b/public/2023-icon-library/jess/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb7f86e2c6913b2afbbc6b9fa96da4f519fa11bea29d23bac6f2e5c7622c589 +size 276 diff --git a/public/2023-icon-library/jess/swrun1.png b/public/2023-icon-library/jess/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..aabeb8f7991e85b656f28240f3cafb4b6a2a4c7e --- /dev/null +++ b/public/2023-icon-library/jess/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf9805a90bbf0eb721bf95a178f762920e6d930d37ff6fc225c12a93ce39825 +size 299 diff --git a/public/2023-icon-library/jess/swrun2.png b/public/2023-icon-library/jess/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f33350e542169d6319d6de003bdd14171f5092d6 --- /dev/null +++ b/public/2023-icon-library/jess/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0d239ddcabbc98334893179415a30c13ba83d22e1bc3dd3866f2dbdb9e27d6 +size 318 diff --git a/public/2023-icon-library/jess/wash.png b/public/2023-icon-library/jess/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..2d328572ef43e5b0307212734ddf1eebb2d090fb --- /dev/null +++ b/public/2023-icon-library/jess/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f7c1ef8c193ea1ef522fff6bcf051f2d8ed6cb532800ec43b5699c4fb43baf +size 320 diff --git a/public/2023-icon-library/jess/wrun1.png b/public/2023-icon-library/jess/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..25489b29fd072acbe8a1b94fb97d6c0d95112a82 --- /dev/null +++ b/public/2023-icon-library/jess/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a48f7d03a431271c520e7e99ec4663a1155d24c8bb28598dda75a9629d2b505a +size 300 diff --git a/public/2023-icon-library/jess/wrun2.png b/public/2023-icon-library/jess/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..596c5f99ed6866c014fdc9821e2bf3ba83f7a1ab --- /dev/null +++ b/public/2023-icon-library/jess/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a9cfec82dbdca9428f2a0cbd9600cbc8e41f827a9bd6343452868b4e9b162a +size 288 diff --git a/public/2023-icon-library/jess/wscratch1.png b/public/2023-icon-library/jess/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac876234fa3b71c219350a255a2587237aa5db45 --- /dev/null +++ b/public/2023-icon-library/jess/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbc30cf4afd381772873631fbbea50581c4dc96bc2369bd3ba83459774d005c +size 300 diff --git a/public/2023-icon-library/jess/wscratch2.png b/public/2023-icon-library/jess/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d1bc8197e27e6167e009b43cbc433c63af90bb81 --- /dev/null +++ b/public/2023-icon-library/jess/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d27350dddf6fc376b9a5072da9d07516eae16203ddf608e9a94a3529145e99 +size 290 diff --git a/public/2023-icon-library/jess/yawn.png b/public/2023-icon-library/jess/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..60baad4f3fa410934b057f83baf35c9bd82ec3bb --- /dev/null +++ b/public/2023-icon-library/jess/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15294b7159d70f500b4b703b5f762983288033e62c1027055cfccb2b1e6f4b16 +size 314 diff --git a/public/2023-icon-library/kina/alert.png b/public/2023-icon-library/kina/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..453f6bc09501ac7dd608de416720017589511527 --- /dev/null +++ b/public/2023-icon-library/kina/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa702b766fcb7babb5095b285b42e872146221a46c0f09a5e72241a3ebae158 +size 399 diff --git a/public/2023-icon-library/kina/erun1.png b/public/2023-icon-library/kina/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..eb64de2673a434a3cbc83d0593b8e4599566adae --- /dev/null +++ b/public/2023-icon-library/kina/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26a5fe144400df8142d606498f2af9376af493cc8f5f15b1ad113c33e523ec7 +size 364 diff --git a/public/2023-icon-library/kina/erun2.png b/public/2023-icon-library/kina/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e746c30a0dcb25366be54faa0c7bb378af252ecd --- /dev/null +++ b/public/2023-icon-library/kina/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f173be1d4a81cd03898efb241d4e17c337235112c8159b25faa3729949be59 +size 375 diff --git a/public/2023-icon-library/kina/escratch1.png b/public/2023-icon-library/kina/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6f40c75b459beef5c172171030cd18e6da899226 --- /dev/null +++ b/public/2023-icon-library/kina/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247e3d8dde64c24a129e5b42663f625df606497682d93ca1caecef718754c20c +size 376 diff --git a/public/2023-icon-library/kina/escratch2.png b/public/2023-icon-library/kina/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..f486979febf289e5e777a1bc4f7b489d7de3a626 --- /dev/null +++ b/public/2023-icon-library/kina/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f28928718fbaa233e81631b2534b0bd52a3fc6533c61ce3ffb60ea6095e63b2 +size 351 diff --git a/public/2023-icon-library/kina/itch1.png b/public/2023-icon-library/kina/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9067154c647fc2e22ee45b96a4d195c54b0ddc71 --- /dev/null +++ b/public/2023-icon-library/kina/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4c17c08652d2403eb9a66795d1c34e65946a76b7a556f6ede79c715ef52255 +size 375 diff --git a/public/2023-icon-library/kina/itch2.png b/public/2023-icon-library/kina/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7f3a86d6863b3e722043495b541fb28e17cda45a --- /dev/null +++ b/public/2023-icon-library/kina/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7fb69daf37a0412baa6e898e0433a25e8a5f54f8b7711f7aa24393ee34323c +size 351 diff --git a/public/2023-icon-library/kina/nerun1.png b/public/2023-icon-library/kina/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0af66c8c446d8e1d7658476fb36a7c7becdc8043 --- /dev/null +++ b/public/2023-icon-library/kina/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc733eccfff2eac69c6c8b04c47665a411dc9cc05125084dd46e8a50559b41b +size 365 diff --git a/public/2023-icon-library/kina/nerun2.png b/public/2023-icon-library/kina/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f0f5360c70dc6e117f869f8dbce8dec98c47190d --- /dev/null +++ b/public/2023-icon-library/kina/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6803329f48277f39082e7c73430a45d042f57be87eec361295fd1cda387621cf +size 375 diff --git a/public/2023-icon-library/kina/nrun1.png b/public/2023-icon-library/kina/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c82be1a4a36dc47af6f0e5e2349fb455252ad99 --- /dev/null +++ b/public/2023-icon-library/kina/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a22768598fe8f0728ef19c5ad6fa39de07e4d31218ecb65f74eba33c273fe36 +size 361 diff --git a/public/2023-icon-library/kina/nrun2.png b/public/2023-icon-library/kina/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ddabb52756ce3aecd5cd820ee610019478ad5556 --- /dev/null +++ b/public/2023-icon-library/kina/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704fa92d33b81fce9728a74a47ffea9272bf56a513f4f774c1df63b3292ca3ce +size 357 diff --git a/public/2023-icon-library/kina/nscratch1.png b/public/2023-icon-library/kina/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c3d4a5e227efd2dfe834e4738b262c5cc1705b --- /dev/null +++ b/public/2023-icon-library/kina/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15d7d509d18ea44aabada5799d09cd087e037130fadcef00fcc2a8c8c751ec7 +size 382 diff --git a/public/2023-icon-library/kina/nscratch2.png b/public/2023-icon-library/kina/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..19c7c38ecaa69ffc9bf6f44d4aa84373d1c80221 --- /dev/null +++ b/public/2023-icon-library/kina/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcd4c97045080c1b917e3fb0b7f2b0f616f0e132041fe154e8a263fd8f60442 +size 383 diff --git a/public/2023-icon-library/kina/nwrun1.png b/public/2023-icon-library/kina/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..81e53db9e3ff07340dd7131b369af8c18e0ab64c --- /dev/null +++ b/public/2023-icon-library/kina/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efbdf5f5168fd0c8a080197ff8efead8ce265b92b03dfadb68bf8ad29bf6171 +size 365 diff --git a/public/2023-icon-library/kina/nwrun2.png b/public/2023-icon-library/kina/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..efc3af57254978479d59973eb759d8620f0cbfd1 --- /dev/null +++ b/public/2023-icon-library/kina/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f408fc7b375be9aaaa86464d002044cbb8f0392041648d614bf9a0c6741233e +size 371 diff --git a/public/2023-icon-library/kina/serun1.png b/public/2023-icon-library/kina/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7122b5b6dbfe75364808452533d6eb6b930d0a1 --- /dev/null +++ b/public/2023-icon-library/kina/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f17947f55dcccc34ac2d56b2e8d635838eb2b16d71e0bce9b727923f77196d +size 375 diff --git a/public/2023-icon-library/kina/serun2.png b/public/2023-icon-library/kina/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..766015e20f80bcdac614a61b6f69d0452e7df820 --- /dev/null +++ b/public/2023-icon-library/kina/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8099a16d4fa860efa2117ee22c177ac6b5c48afa962b4fc701f957573c59c80 +size 329 diff --git a/public/2023-icon-library/kina/sleep1.png b/public/2023-icon-library/kina/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..4bd7676a97688db40577e64219287eb36851a2cf --- /dev/null +++ b/public/2023-icon-library/kina/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10a15e3d1048a46804c7bd2e92a769016b8544a402861635c0f52565051af78 +size 397 diff --git a/public/2023-icon-library/kina/sleep2.png b/public/2023-icon-library/kina/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2b0e870c611e7551778dbd6257bca7eec4ebf1 --- /dev/null +++ b/public/2023-icon-library/kina/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567670fb379a4818d810613359d967daa78b7da34e5d93f8a77b92b592ebdfaf +size 389 diff --git a/public/2023-icon-library/kina/srun1.png b/public/2023-icon-library/kina/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..aca81264c6143305be99034fb37476d4ea4a249e --- /dev/null +++ b/public/2023-icon-library/kina/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d749b9aee5995622c799bd40e55dcc1d8c93c66d53ba4ee5211ccdaf8cc947 +size 343 diff --git a/public/2023-icon-library/kina/srun2.png b/public/2023-icon-library/kina/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5c9c5104a5f374fe434effdfabba47d47033e927 --- /dev/null +++ b/public/2023-icon-library/kina/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15880828a0129c39b637b4733a9c2a539ed11094443f5ec555a90220453401f0 +size 401 diff --git a/public/2023-icon-library/kina/sscratch1.png b/public/2023-icon-library/kina/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..261aee6f555b69197373e00253da5225a6f90342 --- /dev/null +++ b/public/2023-icon-library/kina/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25984b85d99116d077af256196fb0acf65691390abaf6280bbebcc7e6e5a86f1 +size 322 diff --git a/public/2023-icon-library/kina/sscratch2.png b/public/2023-icon-library/kina/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..62786833e2a4a9d683e2998599d7e7f47fd5492c --- /dev/null +++ b/public/2023-icon-library/kina/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0c69cef484766fe5e162e27dc902761f1d0105b60e0c556fb954408eff257f +size 319 diff --git a/public/2023-icon-library/kina/still.png b/public/2023-icon-library/kina/still.png new file mode 100644 index 0000000000000000000000000000000000000000..9e442f8af0bdb23eff0e395d404133f497305727 --- /dev/null +++ b/public/2023-icon-library/kina/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129f2182ad5b3a9b3b15ca1d8f48de958134372ad6437442d717cba5353ed42f +size 323 diff --git a/public/2023-icon-library/kina/swrun1.png b/public/2023-icon-library/kina/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..66c4bcdbe5725b0b09f7e46942726bcf820786b7 --- /dev/null +++ b/public/2023-icon-library/kina/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41694563b640aa70d8dfc8f988662fb4735b7f2696ca386ee28a739796793af +size 373 diff --git a/public/2023-icon-library/kina/swrun2.png b/public/2023-icon-library/kina/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..9a97d11ce4be8239007915bc03deafc4d06387b5 --- /dev/null +++ b/public/2023-icon-library/kina/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9d2a1c3ad63f15131908d7b57e586ff332e6c7e38148d3fd7481d6b4b3891c +size 333 diff --git a/public/2023-icon-library/kina/wash.png b/public/2023-icon-library/kina/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4e612285aa498bbbe01253642f8c25d8bda7c2 --- /dev/null +++ b/public/2023-icon-library/kina/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db945f5021ca6e34e59cbcda2a9faba79fd8d31308bfb71c1cc160ccfcc850e +size 383 diff --git a/public/2023-icon-library/kina/wrun1.png b/public/2023-icon-library/kina/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..112fdd41b0d27cdecc691870479c12619c42bd72 --- /dev/null +++ b/public/2023-icon-library/kina/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ff8eac295fbac9bc9e1c878df7fce68bc83429ca2d3c09e27a05a9c5a6c02a +size 363 diff --git a/public/2023-icon-library/kina/wrun2.png b/public/2023-icon-library/kina/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..271fd8aa36bc97893f86fa62d55163d1d4103029 --- /dev/null +++ b/public/2023-icon-library/kina/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43035f18d718ea19673e94fa1c7b67e52a94b4cb354b05989470d2535a7b6649 +size 358 diff --git a/public/2023-icon-library/kina/wscratch1.png b/public/2023-icon-library/kina/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..3fa9a87fcfad3528476edfa51b5140bcfcc3069c --- /dev/null +++ b/public/2023-icon-library/kina/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56100b875a1bb6325120db1eeb5254103cb9b20c0ef3a0b365e10c14ac63deb7 +size 368 diff --git a/public/2023-icon-library/kina/wscratch2.png b/public/2023-icon-library/kina/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..1f26d553ac4791f37dfefbacf2962befb7ad79d5 --- /dev/null +++ b/public/2023-icon-library/kina/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17d4ed99b23cef7aa479ebb62d75a8c276d81b6058d7fb9391b79562f16d77c +size 344 diff --git a/public/2023-icon-library/kina/yawn.png b/public/2023-icon-library/kina/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..0120efe0f903433ab6d801fd60b109405f7a7cab --- /dev/null +++ b/public/2023-icon-library/kina/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62912d17ef74d631de824ee9fc6bb5f53be94f78c6b126026070547ab9e02312 +size 378 diff --git a/public/2023-icon-library/kuramecha/alert.png b/public/2023-icon-library/kuramecha/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f3006383bb93b700f0fa90772a54b54a855c93 --- /dev/null +++ b/public/2023-icon-library/kuramecha/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88af7aa7c022326f40e3a60bc6109fbb6ceb5f41022bbbad5418118216031d71 +size 314 diff --git a/public/2023-icon-library/kuramecha/erun1.png b/public/2023-icon-library/kuramecha/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..69af4cddbebeae620ae8de9d3bb7267376e604d6 --- /dev/null +++ b/public/2023-icon-library/kuramecha/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d825c9a1157b45fb0fbff44106fcb2c817c553dcac5da4e885e776b92e07febb +size 305 diff --git a/public/2023-icon-library/kuramecha/erun2.png b/public/2023-icon-library/kuramecha/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..09743c134924490dba21f5dd71dfa1227b93941f --- /dev/null +++ b/public/2023-icon-library/kuramecha/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39aba2079d823d7144d19d1ec005524e50d1955e086fe1afbf880e797ba6734 +size 293 diff --git a/public/2023-icon-library/kuramecha/escratch1.png b/public/2023-icon-library/kuramecha/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ab9f804b643c238acbd0c5fa7ad0043a19b2a9 --- /dev/null +++ b/public/2023-icon-library/kuramecha/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9ff41434b994945bd02e0df935ddd0acd99ed65602030bfa5a70bbdeacfbb3 +size 297 diff --git a/public/2023-icon-library/kuramecha/escratch2.png b/public/2023-icon-library/kuramecha/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6c291ce06b3879e197f29ab1458bd0b86ef8d850 --- /dev/null +++ b/public/2023-icon-library/kuramecha/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:031a86691b79594e13adfe53ca0e92379e406879008ce0965c5c51b87df9cb85 +size 287 diff --git a/public/2023-icon-library/kuramecha/itch1.png b/public/2023-icon-library/kuramecha/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f32266caed1bdf83fe48ff670e03288e7a0c3ecd --- /dev/null +++ b/public/2023-icon-library/kuramecha/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741550d974895039ecf93e923d4bc91a4ab8ad728177712ba0135b6603e1ae59 +size 294 diff --git a/public/2023-icon-library/kuramecha/itch2.png b/public/2023-icon-library/kuramecha/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad47b40aea4b7d03aeee9ced86d5fa88c61e8a14 --- /dev/null +++ b/public/2023-icon-library/kuramecha/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f480a579421bbd0828cb9a461bdf968274308ca57178fa944c19212260b531f0 +size 290 diff --git a/public/2023-icon-library/kuramecha/nerun1.png b/public/2023-icon-library/kuramecha/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5a2707a0ebcc3cb48460bd7be9c2e6370bad6075 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6edb679eecc7a49677ecaaa64e0b2640b6a38bfd2a835399f1a804064837110 +size 298 diff --git a/public/2023-icon-library/kuramecha/nerun2.png b/public/2023-icon-library/kuramecha/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..15d4903ff14f7c8ccc5d906c2e411eac2516a686 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a87d99e9edc5d0570b1822e6d557b2a6f336b748844fa3aef300a3729b9e13 +size 307 diff --git a/public/2023-icon-library/kuramecha/nrun1.png b/public/2023-icon-library/kuramecha/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ea46feeaee0849ac9a5bf8cece5ae2a86e1f301 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fced95cb4bb9eebca9ce635058bf6b61e2948d713c764a26e125ba4cb0c88315 +size 269 diff --git a/public/2023-icon-library/kuramecha/nrun2.png b/public/2023-icon-library/kuramecha/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ed39ddc4bc9325e76a0aa5bbab1bbfe3d10028e6 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb2778c858fb3bd9134a81781a75a20079c59a5a53868944ec3047cfb83bc32 +size 306 diff --git a/public/2023-icon-library/kuramecha/nscratch1.png b/public/2023-icon-library/kuramecha/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5864171c217eec4900e3e4f265acfc88c6d99619 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec39be8f6e0770fc88202b3dd811b4a4187f1bbeb10634f317aeac1c98be88f +size 315 diff --git a/public/2023-icon-library/kuramecha/nscratch2.png b/public/2023-icon-library/kuramecha/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..10271dfdca65ec1b10db87a46fa8c08b660a7b05 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72098504e37a43e385677cffc20c90b74a4dac8c269b8df69c73ee1e5753475 +size 307 diff --git a/public/2023-icon-library/kuramecha/nwrun1.png b/public/2023-icon-library/kuramecha/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8034fb62631257190239254ff4565809f07d9f3a --- /dev/null +++ b/public/2023-icon-library/kuramecha/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dcc52b3cb49a4e625f9eb1aa5c9e93ab235cb898ce9f2d8d7451f3e4ec5d9b2 +size 265 diff --git a/public/2023-icon-library/kuramecha/nwrun2.png b/public/2023-icon-library/kuramecha/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..197571c70ed5604858a12550c5c01a9531abcf90 --- /dev/null +++ b/public/2023-icon-library/kuramecha/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d29efe81dd393548b5a9a1d51319db8400f2a3b921d861e6f4efbcfdcaa590d +size 308 diff --git a/public/2023-icon-library/kuramecha/serun1.png b/public/2023-icon-library/kuramecha/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..680d23e7a38cc76596aefbd167bec17fdb0a9f99 --- /dev/null +++ b/public/2023-icon-library/kuramecha/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5b7e77ec36bef49295db9b1fd5893765f72dd89566da499ca6c29571c68711 +size 299 diff --git a/public/2023-icon-library/kuramecha/serun2.png b/public/2023-icon-library/kuramecha/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b0203f0c702b94e4f51c234ff11fa1086cc8bc10 --- /dev/null +++ b/public/2023-icon-library/kuramecha/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df21f26c671146344d1f11cac1c7727eb132936653e3319c33294b4621018c6 +size 293 diff --git a/public/2023-icon-library/kuramecha/sleep1.png b/public/2023-icon-library/kuramecha/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..899b20d39a4b3f4eaaae9b2780ebdf2b15744400 --- /dev/null +++ b/public/2023-icon-library/kuramecha/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99601fb47debb6f0c9642b1109c5182786a9431a9e4822005be8fd19723b8ba1 +size 264 diff --git a/public/2023-icon-library/kuramecha/sleep2.png b/public/2023-icon-library/kuramecha/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..6243a0fe4917de8e8f0c9d76ca7899391a3d53c9 --- /dev/null +++ b/public/2023-icon-library/kuramecha/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aefc736ed0725c88c341cd4611102f5cafa97d25a190d8ccb2034459f0507fb2 +size 265 diff --git a/public/2023-icon-library/kuramecha/srun1.png b/public/2023-icon-library/kuramecha/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ce03ad8924c20e9f9fd00e810e9c90a8c0147199 --- /dev/null +++ b/public/2023-icon-library/kuramecha/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0c11dd4c067d01e72828cff0e23fcf15ed33065d076c2edebf6959237a3904 +size 282 diff --git a/public/2023-icon-library/kuramecha/srun2.png b/public/2023-icon-library/kuramecha/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..52da102ab077d92567de216d671e13b6d59a7285 --- /dev/null +++ b/public/2023-icon-library/kuramecha/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64690ea76d533f8a9c7a578c94df2fa60c3c6499ddc01ec3b036c808241bae8b +size 299 diff --git a/public/2023-icon-library/kuramecha/sscratch1.png b/public/2023-icon-library/kuramecha/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..aba4369555c6b68539cae19734ecbd1650ff109b --- /dev/null +++ b/public/2023-icon-library/kuramecha/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4002a4b7136dea96bf637dd800f1fd669706ea222e925edfd83a8ee1a960d295 +size 292 diff --git a/public/2023-icon-library/kuramecha/sscratch2.png b/public/2023-icon-library/kuramecha/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4379fa665e9487912e576d96c03b5ac347c16a16 --- /dev/null +++ b/public/2023-icon-library/kuramecha/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd58f61431e5256d1a3ad735ab14d5f6ab60b329214b7354eee7daf17476969a +size 291 diff --git a/public/2023-icon-library/kuramecha/still.png b/public/2023-icon-library/kuramecha/still.png new file mode 100644 index 0000000000000000000000000000000000000000..e83992e7abd03c6dc3a08918a46b9a5fff79f908 --- /dev/null +++ b/public/2023-icon-library/kuramecha/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a55a6504b01aeed4474a60e264e34bc55af98889faff886b10c4b2ae7abf57b +size 275 diff --git a/public/2023-icon-library/kuramecha/swrun1.png b/public/2023-icon-library/kuramecha/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f177da3f107f6b549f5d75092c0582cadd3bf85 --- /dev/null +++ b/public/2023-icon-library/kuramecha/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad8afb1ebc0a8ea831e90f7e3620a51b59bb98c7bd996d93f956528a9682ac1 +size 283 diff --git a/public/2023-icon-library/kuramecha/swrun2.png b/public/2023-icon-library/kuramecha/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..302b980ea1065a90f4f000c2c2f238f8363f969b --- /dev/null +++ b/public/2023-icon-library/kuramecha/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ed325cad5e08b0467e114700a7188612df18dbfc527fe37be6ddb0d48b3c0c +size 298 diff --git a/public/2023-icon-library/kuramecha/wash.png b/public/2023-icon-library/kuramecha/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..b9efab1193497d487a841dd87b5d9f0e5d13e5cf --- /dev/null +++ b/public/2023-icon-library/kuramecha/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8887be0846dd6599e8932d064241e44fcbcc6e08901a678c80c1cb664339da +size 298 diff --git a/public/2023-icon-library/kuramecha/wrun1.png b/public/2023-icon-library/kuramecha/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..06be460cde91df913d3af7cfb0330b70e3787e10 --- /dev/null +++ b/public/2023-icon-library/kuramecha/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a2323edc7076fc827046671144fe20dfb7b75c85ed5c44bff6da98c2e26c8b +size 278 diff --git a/public/2023-icon-library/kuramecha/wrun2.png b/public/2023-icon-library/kuramecha/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3fcff1e26fb79e067140a02fc163a6eed53efec6 --- /dev/null +++ b/public/2023-icon-library/kuramecha/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d408654428a7e34a00c459f398016f2968c6bdb35eb53b170401f03e7be25bc1 +size 269 diff --git a/public/2023-icon-library/kuramecha/wscratch1.png b/public/2023-icon-library/kuramecha/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..047f1fd217f60baa6ac9df486c3f6e8847e847c7 --- /dev/null +++ b/public/2023-icon-library/kuramecha/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea5e721e6c4ca80b5fc601016f1ae1826157f19e20364a8c6c06ba042069c1f +size 271 diff --git a/public/2023-icon-library/kuramecha/wscratch2.png b/public/2023-icon-library/kuramecha/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4bc7ae06da6112a0a550ba299de3fda46054b9c8 --- /dev/null +++ b/public/2023-icon-library/kuramecha/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289632cc755d7acb0e516099c843ee4aae5101996126cf7430dff50384db1a67 +size 266 diff --git a/public/2023-icon-library/kuramecha/yawn.png b/public/2023-icon-library/kuramecha/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..04c0443fe0abfa5cd16857710ac2507b7f286915 --- /dev/null +++ b/public/2023-icon-library/kuramecha/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09ab2100d38586bc24ea95ab4db56ed663580e1178159f155108547090055df +size 293 diff --git a/public/2023-icon-library/lucky/alert.png b/public/2023-icon-library/lucky/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..686bb6c572e8c0555baa49286899260a29b9f758 --- /dev/null +++ b/public/2023-icon-library/lucky/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd394c037bd89d8feaccc01840fdeb02bb556abece251be1bead757e7222a1b +size 329 diff --git a/public/2023-icon-library/lucky/erun1.png b/public/2023-icon-library/lucky/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b61ca1b9bb5dd4c10a0f04f93c817294437d0ff6 --- /dev/null +++ b/public/2023-icon-library/lucky/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a86da3800c41ce470947e371f13e69c1f71493c9ae38d470949bcca07c0182 +size 321 diff --git a/public/2023-icon-library/lucky/erun2.png b/public/2023-icon-library/lucky/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d03d1e0c5e9e6fc802953ea8ef18d59bf6f106a --- /dev/null +++ b/public/2023-icon-library/lucky/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b105799d657c3175cb59f33504ac8d38330739e01b83c17514b98c1afb4bba +size 301 diff --git a/public/2023-icon-library/lucky/escratch1.png b/public/2023-icon-library/lucky/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4841c1258d6cf670a3daf00e8f05991c1e97d14f --- /dev/null +++ b/public/2023-icon-library/lucky/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fabecbf4872c18ab92246796767ea708312b1860f2b7478fae2e4492dbfdcc5 +size 280 diff --git a/public/2023-icon-library/lucky/escratch2.png b/public/2023-icon-library/lucky/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4841c1258d6cf670a3daf00e8f05991c1e97d14f --- /dev/null +++ b/public/2023-icon-library/lucky/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fabecbf4872c18ab92246796767ea708312b1860f2b7478fae2e4492dbfdcc5 +size 280 diff --git a/public/2023-icon-library/lucky/itch1.png b/public/2023-icon-library/lucky/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6c380ee7cc08d6cadbc190b4b037464ff67c384c --- /dev/null +++ b/public/2023-icon-library/lucky/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec601bcc316aa7b346edfc78b787bb38a37b5223b04d828eaf38e96dd52eac8a +size 308 diff --git a/public/2023-icon-library/lucky/itch2.png b/public/2023-icon-library/lucky/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9097ce3b36c24eb085a4334eb079a7fa371f9432 --- /dev/null +++ b/public/2023-icon-library/lucky/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aacce1e801df86a0344fa45f3b4dfc6832f43374940bcbe5cdfa1a74011834f +size 294 diff --git a/public/2023-icon-library/lucky/nerun1.png b/public/2023-icon-library/lucky/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd37e445da4a213b6cb9dc914be05cb40aac183 --- /dev/null +++ b/public/2023-icon-library/lucky/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910f1f639ee223ba4268c61d870ab523a729839d3258842ebca60a21cda7b7ff +size 290 diff --git a/public/2023-icon-library/lucky/nerun2.png b/public/2023-icon-library/lucky/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5843475fac95635294264a98dae28500b609ba97 --- /dev/null +++ b/public/2023-icon-library/lucky/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b27e251bf38ee34a58fb637e8d183537ef473cee7c9b8d981e698120c0c4cd +size 314 diff --git a/public/2023-icon-library/lucky/nrun1.png b/public/2023-icon-library/lucky/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b88d03c8b6255b00710612e8cf52b3e4a0f3e380 --- /dev/null +++ b/public/2023-icon-library/lucky/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304e257353783fcf0bae53db3ac6b0be7be8a083cff8c1cec3a3827cb7e7db13 +size 255 diff --git a/public/2023-icon-library/lucky/nrun2.png b/public/2023-icon-library/lucky/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..650a3579b70ac68a853397445827402ab42ebdbf --- /dev/null +++ b/public/2023-icon-library/lucky/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8aa7b7356a23795918a266063b017571d4c58d83da21e586deab9c69cd73501 +size 295 diff --git a/public/2023-icon-library/lucky/nscratch1.png b/public/2023-icon-library/lucky/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0ae80c9c390f8169a308af20d8034d6eff7fe7 --- /dev/null +++ b/public/2023-icon-library/lucky/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c281fa58020913f8349ef6972386c3b1f7b23cd258244245da492663c0470f +size 332 diff --git a/public/2023-icon-library/lucky/nscratch2.png b/public/2023-icon-library/lucky/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..439eac985d09d4b722bc7a3f2a312cdeda4cd104 --- /dev/null +++ b/public/2023-icon-library/lucky/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c703d7201cbf5b6e460a41115db6b71964b52ac6c643ba2b8869396f40175eeb +size 325 diff --git a/public/2023-icon-library/lucky/nwrun1.png b/public/2023-icon-library/lucky/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..43464394a4e2be136cbdeb222e8df59bb670f69b --- /dev/null +++ b/public/2023-icon-library/lucky/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71b5f00f2e303073db3450a2e700c5bcb7acb51917a8d5938a3aa9f7b83dd85 +size 291 diff --git a/public/2023-icon-library/lucky/nwrun2.png b/public/2023-icon-library/lucky/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1df6f22e49a9c026965f7fda5e47f2855df0ad2d --- /dev/null +++ b/public/2023-icon-library/lucky/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053f4fe529b62925ad1ee58286628237632418fbf60ce3fcb21e4fea982d2c04 +size 296 diff --git a/public/2023-icon-library/lucky/serun1.png b/public/2023-icon-library/lucky/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b47f09bb4493862b1c02670bc92bca9d934cc2d7 --- /dev/null +++ b/public/2023-icon-library/lucky/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7e5f5fc12f28addd4038bce8b4a543cd7c17ea35d1ebf23a2886ff63f1f671 +size 298 diff --git a/public/2023-icon-library/lucky/serun2.png b/public/2023-icon-library/lucky/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4f619d27cfa4cc5ba88bec3885c31aaeb1221e --- /dev/null +++ b/public/2023-icon-library/lucky/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf132e9804abfcd0842b645d076334b8d7ff8f9ec1a580b5edba89aa1f587ba +size 310 diff --git a/public/2023-icon-library/lucky/sleep1.png b/public/2023-icon-library/lucky/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..12253cd29c19a74d7fb67871dfbe5875d40c744e --- /dev/null +++ b/public/2023-icon-library/lucky/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb9c0d5fdc5f18642f1539cd398da5afea64774880531e313480eb30b99e40a +size 308 diff --git a/public/2023-icon-library/lucky/sleep2.png b/public/2023-icon-library/lucky/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..3085a4a6d36a970b8a154ff76044e1e654ddda06 --- /dev/null +++ b/public/2023-icon-library/lucky/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1971bff30a4b9c7d62ef8c98a3244b95a01c6c6edd0c28dac3b8170bf83662bb +size 310 diff --git a/public/2023-icon-library/lucky/srun1.png b/public/2023-icon-library/lucky/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba5111f481c2daeec6eb8b0e9455f17168806c6 --- /dev/null +++ b/public/2023-icon-library/lucky/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde0941ceb897d78062f4dc2c8b3abe418b36863a4e636a66bfeb2f85968a069 +size 278 diff --git a/public/2023-icon-library/lucky/srun2.png b/public/2023-icon-library/lucky/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f901f0d90e8b6413ff8b1ddde97862ab5ec1dadb --- /dev/null +++ b/public/2023-icon-library/lucky/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c4c2fe8b37ec17b51371649096c8f3e6ad2b6854b8277ac75d11ad873955ad +size 310 diff --git a/public/2023-icon-library/lucky/sscratch1.png b/public/2023-icon-library/lucky/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..71ffe5e67ff1e80252756f59734f71a5bb5c69e7 --- /dev/null +++ b/public/2023-icon-library/lucky/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72902080acd87c6752241b2e5cc763a65fb770f88f224900b7abef74fb8bd1dc +size 281 diff --git a/public/2023-icon-library/lucky/sscratch2.png b/public/2023-icon-library/lucky/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2b32336ab82dd6022b157708c16143e6ecb44e7d --- /dev/null +++ b/public/2023-icon-library/lucky/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b4308b557c675cd706de629fe41f14c19d8d6c16d7a089fd69dfd851d2d12f +size 296 diff --git a/public/2023-icon-library/lucky/still.png b/public/2023-icon-library/lucky/still.png new file mode 100644 index 0000000000000000000000000000000000000000..fe096d13d1d8f7ddfe97885b96fee2315d51e5c0 --- /dev/null +++ b/public/2023-icon-library/lucky/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4061c4754c0b6c0ba5a01968b503d7fbddd2e99aa24a5f1c2aa9a879cf615872 +size 285 diff --git a/public/2023-icon-library/lucky/swrun1.png b/public/2023-icon-library/lucky/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5ddfd5a5539a0e5e9f1dafae2194a47e4dd1ffad --- /dev/null +++ b/public/2023-icon-library/lucky/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabe44c2e3f9cc2641c1d6da45d87a514f195f6dec579879351eaff35ec4367e +size 281 diff --git a/public/2023-icon-library/lucky/swrun2.png b/public/2023-icon-library/lucky/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c5a2cc8c8b781645bb930eb8446a998e001c71 --- /dev/null +++ b/public/2023-icon-library/lucky/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbefe02d04b02d919cf98067f749f21e1e5a157c938064642a9b0727abd018e +size 303 diff --git a/public/2023-icon-library/lucky/wash.png b/public/2023-icon-library/lucky/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..57afa2171c12c5c1613038c24404c115c05ac317 --- /dev/null +++ b/public/2023-icon-library/lucky/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4a788f5cb21212c451d369f4743943686dd4af157e62af14e86307840df9e2 +size 306 diff --git a/public/2023-icon-library/lucky/wrun1.png b/public/2023-icon-library/lucky/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..93d20c7156b85d3d7f6d9c0660b9e6a8cfad6820 --- /dev/null +++ b/public/2023-icon-library/lucky/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6ce1bca40cba930a1fb76fae1a222da72db058dc18ba68d141e433008507e4 +size 306 diff --git a/public/2023-icon-library/lucky/wrun2.png b/public/2023-icon-library/lucky/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2b8cba449e831bf36153b74d2ab9dbca51b06c63 --- /dev/null +++ b/public/2023-icon-library/lucky/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4eec01aef86ea1ede3fda00341034e0900966d0b588ea3bb15b50bb18fbe805 +size 290 diff --git a/public/2023-icon-library/lucky/wscratch1.png b/public/2023-icon-library/lucky/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e9ae767a12d568ab02ef7dfad368dfcdae04551 --- /dev/null +++ b/public/2023-icon-library/lucky/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d20e71cd7fd5556b8fe19631971294459a23d3bb72c663ec58add1f5a81b424 +size 291 diff --git a/public/2023-icon-library/lucky/wscratch2.png b/public/2023-icon-library/lucky/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..ead0d97f1d1245219ccfe2d8b5f5caef314a39a9 --- /dev/null +++ b/public/2023-icon-library/lucky/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57760fb0532df9b5cf5dcc41299a9a99bf1f2e66eeb66de51f288b25a67ed6ae +size 282 diff --git a/public/2023-icon-library/lucky/yawn.png b/public/2023-icon-library/lucky/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..58c84b7a5a4ee6b0e9ad83638d20db9db843f996 --- /dev/null +++ b/public/2023-icon-library/lucky/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc2e926e956535077c2b2ce218901ebecc0c747fc36f38c508f8d86a2f146ba +size 316 diff --git a/public/2023-icon-library/lucy-dog/alert.png b/public/2023-icon-library/lucy-dog/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..faf13024562eb57a966e0985344d5121b9b8606c --- /dev/null +++ b/public/2023-icon-library/lucy-dog/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9681b84c46ad8cda6dbb89543d5a54cf87236a290037dcca72572cd78942edf4 +size 316 diff --git a/public/2023-icon-library/lucy-dog/erun1.png b/public/2023-icon-library/lucy-dog/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..276561225ee7f82b165ee422f12f15df38f2f7f0 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4e5f7abdf17e078f0d5a202ad6efc4f2eb2eefc6912e9b33e5608ccece6996 +size 277 diff --git a/public/2023-icon-library/lucy-dog/erun2.png b/public/2023-icon-library/lucy-dog/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b74623cbc2ed083cb5643bdca0bca1e8b3bfd8f0 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6b8251bf8cb8a7ca73ae19e95382b9b567fcdf314a0d85f410d334d9530abb +size 284 diff --git a/public/2023-icon-library/lucy-dog/escratch1.png b/public/2023-icon-library/lucy-dog/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a596c86dbe522d987931bd22f015d55db71488e5 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebacd9c50f4a94cea34827fe9ff17ada7789182d6f8364ca24c5609fd81de0e +size 277 diff --git a/public/2023-icon-library/lucy-dog/escratch2.png b/public/2023-icon-library/lucy-dog/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..57dd3b9e85f11a1ef549f5df415ba29512c8472c --- /dev/null +++ b/public/2023-icon-library/lucy-dog/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93eba6816c270eb789c27539bae51c3b4d131b3af41a52ea415a964b2d30493c +size 264 diff --git a/public/2023-icon-library/lucy-dog/itch1.png b/public/2023-icon-library/lucy-dog/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b742ea65e6819850027efa97d1f69a609d729426 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c4754784ce95f5693d5c156995b0045e915b58ef40c48b5c2d0509065644035 +size 283 diff --git a/public/2023-icon-library/lucy-dog/itch2.png b/public/2023-icon-library/lucy-dog/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..46410bef27e506d89af19ca8a5fe90ce529c016c --- /dev/null +++ b/public/2023-icon-library/lucy-dog/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3654feda60b3863cb09628b19e012cf17ecae9a5da7dc57924d3d5e878d3839 +size 288 diff --git a/public/2023-icon-library/lucy-dog/nerun1.png b/public/2023-icon-library/lucy-dog/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1ebd9ec756b74adfd0e609e8064b793e6c518b --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431474c2c2ecda3e1c497daa2c27d867730dad4981c19152b89acd851371081c +size 284 diff --git a/public/2023-icon-library/lucy-dog/nerun2.png b/public/2023-icon-library/lucy-dog/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..86e1b535cf745216f819bf07c1a827c66e5616ad --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d99c9f6b1f5a99fb836da4c1a9fa67661d409417c4f5f2de8146c14deb52906 +size 297 diff --git a/public/2023-icon-library/lucy-dog/nrun1.png b/public/2023-icon-library/lucy-dog/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2d08efcfba83cd774180986babeca75378e1dfa3 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4302eeefce0151d019522b41ca6268f2c07a830d18918cfc5bd2935910972bf +size 260 diff --git a/public/2023-icon-library/lucy-dog/nrun2.png b/public/2023-icon-library/lucy-dog/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..89ee95f7c1bc50fd75a1fc1a4c1bbb98e4709cf7 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e320486427e91b3c7e257db1a0fa42568f478b86a80cbb541ebe3b6cd1460f +size 281 diff --git a/public/2023-icon-library/lucy-dog/nscratch1.png b/public/2023-icon-library/lucy-dog/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5cd54deae32164a9c8b0cea35e281858b0975c8 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce36ecdd070583eec6d3278434b78ab532c739dce9df6ee24f2ee08603ac090 +size 285 diff --git a/public/2023-icon-library/lucy-dog/nscratch2.png b/public/2023-icon-library/lucy-dog/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c9e1ca7a6082fb71faec6678f01c6412d4c531 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff5620cefff58a4e24179a637ce746735da2a0de389236aa4cca9c43a646a3e +size 271 diff --git a/public/2023-icon-library/lucy-dog/nwrun1.png b/public/2023-icon-library/lucy-dog/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..18482628ee66391c2106be5edb77b00585945b8e --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b40a89a845914ce3514587a16d06a354667572c075b5839ba5dc968eb10828 +size 279 diff --git a/public/2023-icon-library/lucy-dog/nwrun2.png b/public/2023-icon-library/lucy-dog/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..82b964f02bed75d3a5cfeef987b3e56fd51a3493 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617254866a1d26012e53ccaa040127f9544f55f87532768fc37d19d68171ee85 +size 299 diff --git a/public/2023-icon-library/lucy-dog/serun1.png b/public/2023-icon-library/lucy-dog/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..68426b57fb72e5c20eab3a9f5b9356f50379532b --- /dev/null +++ b/public/2023-icon-library/lucy-dog/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5dd9c8ef47c24ca144445bbeef6aa477597f240108c93f171e48905a072188e +size 292 diff --git a/public/2023-icon-library/lucy-dog/serun2.png b/public/2023-icon-library/lucy-dog/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..fcca2ca17690f4ea28cd041fd23c208e8cbe25e2 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9b5ac9b762238b1d39839fc0c9b088da9eda3dcbf5aa73821096a9aa769d52 +size 294 diff --git a/public/2023-icon-library/lucy-dog/sleep1.png b/public/2023-icon-library/lucy-dog/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..9b3fe1ca722054e93ea22d6613ef73c3715e9339 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e4eab8474d07c4efcb3455e057ee5c589d5b0fd77354ac082ba96284c460ac +size 254 diff --git a/public/2023-icon-library/lucy-dog/sleep2.png b/public/2023-icon-library/lucy-dog/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..0523b8eb463496b364b6c2ad54a963488aa49a97 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05ca97c7e56997d5765b189a1fd2adc69546b9680c4bacb0529e641d453e013 +size 253 diff --git a/public/2023-icon-library/lucy-dog/srun1.png b/public/2023-icon-library/lucy-dog/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..69ad7e89199bd8ca539ba5c6c08c9d1d878e1361 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ae7df547a19391827e1434732f9d0e229d1e8e55b69a3c1906849e5812ea6a +size 276 diff --git a/public/2023-icon-library/lucy-dog/srun2.png b/public/2023-icon-library/lucy-dog/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0a0b1e5c5be396d069e6803ca3c7e5a964b911 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9ac3b737a01d349d768f48f81e0c83e78cc25aa2c006b4ce949108ac73acd6 +size 295 diff --git a/public/2023-icon-library/lucy-dog/sscratch1.png b/public/2023-icon-library/lucy-dog/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..92b344695e78556b588b0ce9534fac895a8e616e --- /dev/null +++ b/public/2023-icon-library/lucy-dog/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf58be5f3fbead9442260ad7501e5f9e70516dce69f7d751410e0d39bfd3487 +size 279 diff --git a/public/2023-icon-library/lucy-dog/sscratch2.png b/public/2023-icon-library/lucy-dog/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..97b138346a89e2bd02eb00805ee9220900e0fa5d --- /dev/null +++ b/public/2023-icon-library/lucy-dog/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27e6c40020a11c435b7832d0eadfe384ac14e05228e4af875ac8300102d0a75 +size 280 diff --git a/public/2023-icon-library/lucy-dog/still.png b/public/2023-icon-library/lucy-dog/still.png new file mode 100644 index 0000000000000000000000000000000000000000..f94d17974418b82833c8a7b2d0938e7b633ac842 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49cd63ea2adf36f3867aaf3854adb4b364e1480d1d971c03ac2d81b0e7a00911 +size 279 diff --git a/public/2023-icon-library/lucy-dog/swrun1.png b/public/2023-icon-library/lucy-dog/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d7007fa007e75ab6e449533609f5be77374838e4 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e105354fccbab82cbacff6625c0842143fabcafbb57aace178beafaec46129 +size 296 diff --git a/public/2023-icon-library/lucy-dog/swrun2.png b/public/2023-icon-library/lucy-dog/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..380a4b02a1f124a84826af32c67bfa732b6d8821 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8185461a453a1975cd10a417f46dcf11618289c9687c7d4378a9cb2a30ed8b80 +size 292 diff --git a/public/2023-icon-library/lucy-dog/wash.png b/public/2023-icon-library/lucy-dog/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..2e21a6dad5e6eecf732cc990e59a055c41cf8bcc --- /dev/null +++ b/public/2023-icon-library/lucy-dog/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08171c83b93880a95a39892a29b827c6e7b6cacbb6eae562293fb452f70fe8f +size 267 diff --git a/public/2023-icon-library/lucy-dog/wrun1.png b/public/2023-icon-library/lucy-dog/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc36c4b37f0f440638eccb2f1a5395dd5965d6c --- /dev/null +++ b/public/2023-icon-library/lucy-dog/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa79a55d56970b52bfca0c785b8102d46721af220c381f0040768c4af9831281 +size 276 diff --git a/public/2023-icon-library/lucy-dog/wrun2.png b/public/2023-icon-library/lucy-dog/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4c8da89dcc17ee1af0143e80e2b2f0bfd1ab640a --- /dev/null +++ b/public/2023-icon-library/lucy-dog/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4970e07cebb603fd4fa1b8cb23dd735c3c964d928858b22ff18826fe537dc31e +size 287 diff --git a/public/2023-icon-library/lucy-dog/wscratch1.png b/public/2023-icon-library/lucy-dog/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c690d25afab55bfebf3240f588ef4aefa57e4c25 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e87f1b4a583608ce188bf19cb0ae6a5f0278cf047eb1a9c493a91dd1ba662b +size 277 diff --git a/public/2023-icon-library/lucy-dog/wscratch2.png b/public/2023-icon-library/lucy-dog/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..07ba25b8e1039311483d4bbc1edd3812f9d3cca8 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bacf25f84c2373a7a706476894b21d2e7e8143e168f4fd26cf86068c98d67f0d +size 265 diff --git a/public/2023-icon-library/lucy-dog/yawn.png b/public/2023-icon-library/lucy-dog/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..08a837d0ea02ed5eac22c2a3add78667dce4b245 --- /dev/null +++ b/public/2023-icon-library/lucy-dog/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df8e462ddd3a5270fe2d9b4549bfad1f1ea2ac0e047592f340dddf52df32cef +size 277 diff --git a/public/2023-icon-library/lucy/alert.png b/public/2023-icon-library/lucy/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..29652f4fa409445990605485afbbed254198b73a --- /dev/null +++ b/public/2023-icon-library/lucy/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4890f07f356fb6887f3997b6372c1c273ec6c2fc1227bf808733a783f3cecc2a +size 310 diff --git a/public/2023-icon-library/lucy/erun1.png b/public/2023-icon-library/lucy/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..60344c1dc9d7805144ee8a6e32d191409723d4ca --- /dev/null +++ b/public/2023-icon-library/lucy/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c853a4b78a54583fe2215b6cc78d9ce92e13431b9bd6a79ad95241121894799e +size 305 diff --git a/public/2023-icon-library/lucy/erun2.png b/public/2023-icon-library/lucy/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..654e0ffaee0eac55c6154cb05b9b4d916a098527 --- /dev/null +++ b/public/2023-icon-library/lucy/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63292b8925c7320a4b3a1bc91743fa8cb3cf4c3f37806ece82dc8de1998150ba +size 289 diff --git a/public/2023-icon-library/lucy/escratch1.png b/public/2023-icon-library/lucy/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..be461ae869d0ceea3b6ed5410babd0ec07042ecc --- /dev/null +++ b/public/2023-icon-library/lucy/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70240c0eb674ced3f42ce8cb9c02cf4f4c9c8bcf83d41663c98e1ea70b323f89 +size 297 diff --git a/public/2023-icon-library/lucy/escratch2.png b/public/2023-icon-library/lucy/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe05280bbb548e83a5e93d6b4360b28f02df8e7 --- /dev/null +++ b/public/2023-icon-library/lucy/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe131bcb0c6fe779df933cf4c8b2d0b137a95e3e7073164ee6cadf426b59cb95 +size 283 diff --git a/public/2023-icon-library/lucy/itch1.png b/public/2023-icon-library/lucy/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea1569f403c591483bcbbbb2efb044aa3764fdb --- /dev/null +++ b/public/2023-icon-library/lucy/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e2b80e4a557987cb9bb83cf2833646d375b21da7420b561bde836156b48746 +size 289 diff --git a/public/2023-icon-library/lucy/itch2.png b/public/2023-icon-library/lucy/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..b150ffaa9549fa455aecb505c0830fe599f5f77e --- /dev/null +++ b/public/2023-icon-library/lucy/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3973db428315f896882ffac1b7842a8ad71806ee464269d1f63b96f0716c5c8 +size 275 diff --git a/public/2023-icon-library/lucy/nerun1.png b/public/2023-icon-library/lucy/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..120106984486d27f59135fe85dfbb358adbcbd4b --- /dev/null +++ b/public/2023-icon-library/lucy/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8351121c228a3e309233ef0c4dc88baf7fd16909fbcd388c761ccafc2c51cb69 +size 299 diff --git a/public/2023-icon-library/lucy/nerun2.png b/public/2023-icon-library/lucy/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0715e7eaf86247b28864c366431cc0874adf068e --- /dev/null +++ b/public/2023-icon-library/lucy/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d641e28aabb80a12e814159bc023f85b47b13e24709fc5c246cc743299ee239e +size 306 diff --git a/public/2023-icon-library/lucy/nrun1.png b/public/2023-icon-library/lucy/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c8d1c591016d894762f76e9f2a142d315b9965fd --- /dev/null +++ b/public/2023-icon-library/lucy/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc43d425795b84873bc40456715afa2e9cf6127d129ababfc228aca2975dca42 +size 272 diff --git a/public/2023-icon-library/lucy/nrun2.png b/public/2023-icon-library/lucy/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3dc115bded32bfe32cd06090bfb86527de7d222c --- /dev/null +++ b/public/2023-icon-library/lucy/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39db5792e83ad502b31ace5fb0f82a7430d5cb3bb84a71388486b28c7267f395 +size 292 diff --git a/public/2023-icon-library/lucy/nscratch1.png b/public/2023-icon-library/lucy/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..37202ccc3a5f5c0675969028fcb5f05bc441b885 --- /dev/null +++ b/public/2023-icon-library/lucy/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b9da7a35663692446a537572fafb163521802704acde154443d31750037f49 +size 292 diff --git a/public/2023-icon-library/lucy/nscratch2.png b/public/2023-icon-library/lucy/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd12d2343ff92e9ab8e07ff63c56d0e570301bb --- /dev/null +++ b/public/2023-icon-library/lucy/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bcdc737b0e1990126938a01cfd51aea7f51b720fb317debf8036976c7af14a +size 295 diff --git a/public/2023-icon-library/lucy/nwrun1.png b/public/2023-icon-library/lucy/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ccd97921b08ac33905233d4d769623f7f7031f5b --- /dev/null +++ b/public/2023-icon-library/lucy/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c654adc3661fb84a48b9c5bd68c3b5f339bc9d614832ee5a995e927803c8b08d +size 299 diff --git a/public/2023-icon-library/lucy/nwrun2.png b/public/2023-icon-library/lucy/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..96ab050ff284a77a3e9b63c9f68fc2f4fb98a9de --- /dev/null +++ b/public/2023-icon-library/lucy/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b8887e4da05cae95db434f454878375ffbdd1a06982a0e15e06ac8aaee0053 +size 302 diff --git a/public/2023-icon-library/lucy/serun1.png b/public/2023-icon-library/lucy/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..25d2b7f9b19163cf52a279d26ec3bc025dc1cb24 --- /dev/null +++ b/public/2023-icon-library/lucy/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e53e42ad5165bbd41a7dae2b2d865512c5a601099386c47493cf9def41cf477 +size 297 diff --git a/public/2023-icon-library/lucy/serun2.png b/public/2023-icon-library/lucy/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ae8d48471fb8e48264f7eda202529c71c2f2c5d9 --- /dev/null +++ b/public/2023-icon-library/lucy/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce10f4a46a7e659aa9bc89d2c1c72470ff50a439c169da011c3f95337566745 +size 310 diff --git a/public/2023-icon-library/lucy/sleep1.png b/public/2023-icon-library/lucy/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..780fc04ed759c0831a5b869112d0815c14e461d8 --- /dev/null +++ b/public/2023-icon-library/lucy/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e861fe0a6f97795836d41f43ed6738418651f17941b36ad5fb145de2efd120df +size 245 diff --git a/public/2023-icon-library/lucy/sleep2.png b/public/2023-icon-library/lucy/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8925f32d951bece3fa05d8696a3e1682e56e1e --- /dev/null +++ b/public/2023-icon-library/lucy/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7594678cdcd974899abec9b5fdd5cc8dba48241c25592fcbc9bf8acc6c45dbdf +size 242 diff --git a/public/2023-icon-library/lucy/srun1.png b/public/2023-icon-library/lucy/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ca77212c41e456673b94cf6776eb0c23ed23cb --- /dev/null +++ b/public/2023-icon-library/lucy/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135bdb16c585bd8a27bda9d4eca1d3982be6f07998c2c4e23f4f94428996c52b +size 267 diff --git a/public/2023-icon-library/lucy/srun2.png b/public/2023-icon-library/lucy/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..90cc574b000bc3e0f7091da9da32e75cab585952 --- /dev/null +++ b/public/2023-icon-library/lucy/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84cac70678015e4fb3cd14740fca091166f5a28d997b9281de8c8e5a45523349 +size 287 diff --git a/public/2023-icon-library/lucy/sscratch1.png b/public/2023-icon-library/lucy/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..23b456119aca43e46b49c1419e7008666a83e12a --- /dev/null +++ b/public/2023-icon-library/lucy/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0023c0d9233605151d5acb4ea0ab84bed09fcb37eeab251f89200aa8caa239bf +size 273 diff --git a/public/2023-icon-library/lucy/sscratch2.png b/public/2023-icon-library/lucy/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..825fcfa67e78dfce3905de7ab65063049d240f37 --- /dev/null +++ b/public/2023-icon-library/lucy/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d32499763545f52d13ae9b91017cdb695c4e4f2b440fe66fa4fb56ac3600ecb +size 268 diff --git a/public/2023-icon-library/lucy/still.png b/public/2023-icon-library/lucy/still.png new file mode 100644 index 0000000000000000000000000000000000000000..8121f3ae9f255bdc949dea98c8d33cb8de71414d --- /dev/null +++ b/public/2023-icon-library/lucy/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fa5d6e6215e838c165d56f39007cd86ddf793c4a1841d194100702b5b3d48f +size 270 diff --git a/public/2023-icon-library/lucy/swrun1.png b/public/2023-icon-library/lucy/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f32abe78a986145d84a6939023e72e2aeba52fe4 --- /dev/null +++ b/public/2023-icon-library/lucy/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43396dd5195214f759cd0d2e6e5bd0276b81a55ac037ec271bfdfc217736a673 +size 298 diff --git a/public/2023-icon-library/lucy/swrun2.png b/public/2023-icon-library/lucy/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b617743a0ec2e05f677642802b18e77943d4638f --- /dev/null +++ b/public/2023-icon-library/lucy/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61875043a3b0a518be8874151b811baa9cc6872a7c8e6c4538d807f26ec5e80 +size 311 diff --git a/public/2023-icon-library/lucy/wash.png b/public/2023-icon-library/lucy/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0b7768f75b46d085d5525e95c8fd8dd258b5a0 --- /dev/null +++ b/public/2023-icon-library/lucy/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5db27e3cb94ce169741308cc8045a61f00687b6fa96ca065d904f67477c333f +size 291 diff --git a/public/2023-icon-library/lucy/wrun1.png b/public/2023-icon-library/lucy/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..624f292b8fe066855c084b8e4af5e793b4262409 --- /dev/null +++ b/public/2023-icon-library/lucy/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6fdabaafc93e3d18fa440ecfe2d735b0914e991863bed972a50f3b745f8468 +size 317 diff --git a/public/2023-icon-library/lucy/wrun2.png b/public/2023-icon-library/lucy/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c27e63f5e3f79a43fe944538b20c66b20e2b49e5 --- /dev/null +++ b/public/2023-icon-library/lucy/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0555a700b75775ba60ad01816a213806af703f7d4644e27046de12a8ff6c1b05 +size 281 diff --git a/public/2023-icon-library/lucy/wscratch1.png b/public/2023-icon-library/lucy/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8dbda0e0850293af894c89bf34c87894315f82 --- /dev/null +++ b/public/2023-icon-library/lucy/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7baeb5662e9bb8054c6e8b6a19baa4cc557053e2b6a26c2393df4a9cab090e7 +size 300 diff --git a/public/2023-icon-library/lucy/wscratch2.png b/public/2023-icon-library/lucy/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6c20bf66786068d18cdfb8c4df9ee3506793e44 --- /dev/null +++ b/public/2023-icon-library/lucy/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ef37816004c12cfa7c52a6815a09606e61da7363c7a28f77a7d3b3ed83a914 +size 284 diff --git a/public/2023-icon-library/lucy/yawn.png b/public/2023-icon-library/lucy/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..53c99a7ae247fd981d160f0cb00b868b66ad0c11 --- /dev/null +++ b/public/2023-icon-library/lucy/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039cafd993a770de713c87b1c9730beada58e4f2856b4d79956f5125c7c53824 +size 297 diff --git a/public/2023-icon-library/marmalade/alert.png b/public/2023-icon-library/marmalade/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3d99ff9217a3baa660b33cb0cb0b910b62724a --- /dev/null +++ b/public/2023-icon-library/marmalade/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b46f3bc20861e4b6a23fdf1c9eea8c68b8e61723913aa2bec0db0465ac88e3 +size 361 diff --git a/public/2023-icon-library/marmalade/erun1.png b/public/2023-icon-library/marmalade/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..711df450aee8bf91aa5fae545e8e82b70a972ca7 --- /dev/null +++ b/public/2023-icon-library/marmalade/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020b2fec88c029b8916718fcc3d5830a8a146d4827e131bfe5714611ec085e6b +size 368 diff --git a/public/2023-icon-library/marmalade/erun2.png b/public/2023-icon-library/marmalade/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..45b57846984a3fd2ef1d1a143af44ef1e853ff1e --- /dev/null +++ b/public/2023-icon-library/marmalade/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4a9bebc94f880d4a1254ef3531fff332a446257f1f1dfb282c5b29bad937bb +size 353 diff --git a/public/2023-icon-library/marmalade/escratch1.png b/public/2023-icon-library/marmalade/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d4269fd400615a13b94e013c6d6ea2d4aa9db2a --- /dev/null +++ b/public/2023-icon-library/marmalade/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d1e85498fef95b134290abafffdce021232e9af2d9b841c45375d1e1f87836 +size 350 diff --git a/public/2023-icon-library/marmalade/escratch2.png b/public/2023-icon-library/marmalade/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba3ca54cb4c82d8c7845294d0ce20ed021dcee1 --- /dev/null +++ b/public/2023-icon-library/marmalade/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81262477c67258bf40926edbf8c787dd0010ed97ca4e15cab5db2cc34db3f4f +size 342 diff --git a/public/2023-icon-library/marmalade/itch1.png b/public/2023-icon-library/marmalade/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4589b9f6370c8250afab714810d24d8084f6a47e --- /dev/null +++ b/public/2023-icon-library/marmalade/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a658638bf9eaf440321b018ab1a817fdebb000616641e9d1b409bfb278702400 +size 352 diff --git a/public/2023-icon-library/marmalade/itch2.png b/public/2023-icon-library/marmalade/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5774fec6af084c9325950a3662e19d81475ba31a --- /dev/null +++ b/public/2023-icon-library/marmalade/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2e6c117cf08f6b6bb73b8974481c6bde5d4de553f80b2a0be454e000f73f87 +size 337 diff --git a/public/2023-icon-library/marmalade/nerun1.png b/public/2023-icon-library/marmalade/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa6a5f4e50218840e07c508d0ceeccdee1323189 --- /dev/null +++ b/public/2023-icon-library/marmalade/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945bd2d7609f4d8d5fd74457b87eed50e9fb4e3e1168d3a682984a0bc9461267 +size 353 diff --git a/public/2023-icon-library/marmalade/nerun2.png b/public/2023-icon-library/marmalade/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e46b02c85053a1aff164d0267658cb7f0e44b6 --- /dev/null +++ b/public/2023-icon-library/marmalade/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618e2564fd8319cd799fd3e77760c2af27a585babd8e660167a19e80c15f7b24 +size 386 diff --git a/public/2023-icon-library/marmalade/nrun1.png b/public/2023-icon-library/marmalade/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b38606e1d5277002aef16b686570fbe51c78f053 --- /dev/null +++ b/public/2023-icon-library/marmalade/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bdbf584c1b629131696f9267a636e1d4a72c4108712d46b90aaf31ad1bcf84 +size 300 diff --git a/public/2023-icon-library/marmalade/nrun2.png b/public/2023-icon-library/marmalade/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ffe5fd0bc4e9547edb27452f408225d26802862e --- /dev/null +++ b/public/2023-icon-library/marmalade/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9d55837352bde09c2548d52325e03e3ec415a3d2bedc596eed62943cbe1ca6 +size 353 diff --git a/public/2023-icon-library/marmalade/nscratch1.png b/public/2023-icon-library/marmalade/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..7d34509535cad63c637488cf427114dd2fe19ab5 --- /dev/null +++ b/public/2023-icon-library/marmalade/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad505c62ace131e6d33c754fc52ea07421d9fa89f0342765dba029127c30cba +size 347 diff --git a/public/2023-icon-library/marmalade/nscratch2.png b/public/2023-icon-library/marmalade/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..246082faf5322c9a3040c4b05e78f6f66f081e5c --- /dev/null +++ b/public/2023-icon-library/marmalade/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f901eb91c7dcb6a096b786cf86634591b50cda7342fb8a540f2d7146909128 +size 341 diff --git a/public/2023-icon-library/marmalade/nwrun1.png b/public/2023-icon-library/marmalade/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1320ebcd415df6cf5bd2abdc90355f72d0e6e02a --- /dev/null +++ b/public/2023-icon-library/marmalade/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cb17e145d6431eb23127635ccb9d82a49c3d75b90237965e505da4f622a5bf +size 340 diff --git a/public/2023-icon-library/marmalade/nwrun2.png b/public/2023-icon-library/marmalade/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec701fd5aa1d3a94940854ff22430a5d9bb44c1 --- /dev/null +++ b/public/2023-icon-library/marmalade/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f807eaf1b04edea880de7f8828107b888af6a45f4b191b6e739440b7a7fc5f27 +size 368 diff --git a/public/2023-icon-library/marmalade/serun1.png b/public/2023-icon-library/marmalade/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e6643869872e16fe45762a8cbe99aa7ef3d7ab6 --- /dev/null +++ b/public/2023-icon-library/marmalade/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0958e43ebe285a71b4b86c1156fa3054f2226d4b4f21ef182cba15da697693 +size 350 diff --git a/public/2023-icon-library/marmalade/serun2.png b/public/2023-icon-library/marmalade/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3173bc2d74abbd4ee45254631a56fa5f7513f291 --- /dev/null +++ b/public/2023-icon-library/marmalade/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93889d8c843987cc8247d391c8719fdbb586ccbdf841745a9446fb63413f3bb +size 363 diff --git a/public/2023-icon-library/marmalade/sleep1.png b/public/2023-icon-library/marmalade/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..336e86014a420dbdb9088032ada203a8ae20036b --- /dev/null +++ b/public/2023-icon-library/marmalade/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d71cbf699d90ec7a995d2293e2d559e18b62d06a1f043679a196ba95048b0de +size 293 diff --git a/public/2023-icon-library/marmalade/sleep2.png b/public/2023-icon-library/marmalade/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..596266d50bddfe404df6974c7bb33a10f72e850b --- /dev/null +++ b/public/2023-icon-library/marmalade/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184fcd75485442621ddeb3bfb098370c004720e418843477325960a8414f67a6 +size 301 diff --git a/public/2023-icon-library/marmalade/srun1.png b/public/2023-icon-library/marmalade/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2875386f54cdf04343deb1080440351c4e13ecee --- /dev/null +++ b/public/2023-icon-library/marmalade/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363a6d3059da6d8375e7d2956428a603eea443f52d01f0d4fd610b716e006d74 +size 334 diff --git a/public/2023-icon-library/marmalade/srun2.png b/public/2023-icon-library/marmalade/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..341be3bbbfcd2e1bcb5b8913222addfca0a2b55c --- /dev/null +++ b/public/2023-icon-library/marmalade/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d8fcc50b6a87d54038c3ee6c755aa10d7b12d23905d0c38b0847d655ef4ab2 +size 341 diff --git a/public/2023-icon-library/marmalade/sscratch1.png b/public/2023-icon-library/marmalade/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..84647fc784f75ce02cf4f734f92e97c8c6cc84b3 --- /dev/null +++ b/public/2023-icon-library/marmalade/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f257c0a3b91950f7fd09e6e3ce1ac2301b8f68bed5ebb06727bc896d01cac15 +size 347 diff --git a/public/2023-icon-library/marmalade/sscratch2.png b/public/2023-icon-library/marmalade/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..daa4d54800a0324f452d02f6aca05dbd8db068e8 --- /dev/null +++ b/public/2023-icon-library/marmalade/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f192a98fa056d0bb2b737a6f1b644b72e37cdbc8c5c02d25eaef16b7933e6d +size 335 diff --git a/public/2023-icon-library/marmalade/still.png b/public/2023-icon-library/marmalade/still.png new file mode 100644 index 0000000000000000000000000000000000000000..8797b0e84fc412882cebbd72c0929987cff6305e --- /dev/null +++ b/public/2023-icon-library/marmalade/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0137520b04903d491d127d7263a940fc6c4ad3b9db283b6a376abefa17f83c +size 318 diff --git a/public/2023-icon-library/marmalade/swrun1.png b/public/2023-icon-library/marmalade/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..729531d745719898edd808cd24f04dd1b490dc22 --- /dev/null +++ b/public/2023-icon-library/marmalade/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a37143a0635a007eb50f7832540623e47999447c4a78d7bfb23fc7ee004c5d +size 335 diff --git a/public/2023-icon-library/marmalade/swrun2.png b/public/2023-icon-library/marmalade/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0985c617b9556157e33d67d9063b672437549aab --- /dev/null +++ b/public/2023-icon-library/marmalade/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958c95964adca6adb338ea8b2aa14529b40d03716d165f0cb5fcf4de2c9eb86b +size 363 diff --git a/public/2023-icon-library/marmalade/wash.png b/public/2023-icon-library/marmalade/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..ab807b44bc0ba2766d9d4b63f5f41116334b0cfe --- /dev/null +++ b/public/2023-icon-library/marmalade/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04958fbe0634cdd7e6cd5f220c35ce2ed80b5161e02c477e2f9220bb628c6fbd +size 348 diff --git a/public/2023-icon-library/marmalade/wrun1.png b/public/2023-icon-library/marmalade/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e39ea549910dd60a6b1ee994000893685692205 --- /dev/null +++ b/public/2023-icon-library/marmalade/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31c91f02c25847232e3054131d21f95e36979da41feda4249f5ca7e91b0d9d2 +size 359 diff --git a/public/2023-icon-library/marmalade/wrun2.png b/public/2023-icon-library/marmalade/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7bf69de46720091bbe2308d1360dc6c08176d1ca --- /dev/null +++ b/public/2023-icon-library/marmalade/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd0a54967bf86d367ce5e370aee558eba9a441ae62ddbcc318dd4c2b3fbace3 +size 338 diff --git a/public/2023-icon-library/marmalade/wscratch1.png b/public/2023-icon-library/marmalade/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec8759bead3630ee001a20110de33e300f6404f --- /dev/null +++ b/public/2023-icon-library/marmalade/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4ff5ac8dcf7b730dc83dd5f8aba10b0af7b4bd1b17939376d60672470bad1f +size 337 diff --git a/public/2023-icon-library/marmalade/wscratch2.png b/public/2023-icon-library/marmalade/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6506745743d3d5360a1d38e180cdd551d188df3a --- /dev/null +++ b/public/2023-icon-library/marmalade/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267fa49238bcef2b47029fcbe5e0259276384379ff46cf1bc15449f1b057f28f +size 333 diff --git a/public/2023-icon-library/marmalade/yawn.png b/public/2023-icon-library/marmalade/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..84d1bcd9d9335582664bfc727a977048b8f5091d --- /dev/null +++ b/public/2023-icon-library/marmalade/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543694e4a56cc39e78b6efa30fa37894084942d36eea1ba2302461b4a0ddb6ed +size 353 diff --git a/public/2023-icon-library/mermaid/alert.png b/public/2023-icon-library/mermaid/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..dd48abf957032237e3a4b33ca974c83617459b6c --- /dev/null +++ b/public/2023-icon-library/mermaid/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b140d0e401c7382306f999468d51f7f032f20b01429ecdb3eb7db3494743ecaa +size 378 diff --git a/public/2023-icon-library/mermaid/erun1.png b/public/2023-icon-library/mermaid/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..743c97b6ec6bc04113ab3a0b97c4a0d3764e29fa --- /dev/null +++ b/public/2023-icon-library/mermaid/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896ed365345df0417e8204bb1f1ddde88b9f4ac5dbe071ceb8e2c002a19fc9f9 +size 353 diff --git a/public/2023-icon-library/mermaid/erun2.png b/public/2023-icon-library/mermaid/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..298a58d560720e6e0571f1d31523ec4ef4b4c1a1 --- /dev/null +++ b/public/2023-icon-library/mermaid/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9154dcc9cee4568129b2efed8c9b0a4f010479f355685aa7f784c80f5dd3c6c7 +size 348 diff --git a/public/2023-icon-library/mermaid/escratch1.png b/public/2023-icon-library/mermaid/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2ae1284ab4e6f60417c7a08fa757f28157e03f --- /dev/null +++ b/public/2023-icon-library/mermaid/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7611b21e17989695acbeb5115d65cf8e078c062633d2cd42ebad911f704e55 +size 349 diff --git a/public/2023-icon-library/mermaid/escratch2.png b/public/2023-icon-library/mermaid/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..67f6134e7f58c6f5c091000c8949f860f30067cf --- /dev/null +++ b/public/2023-icon-library/mermaid/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbc5682e18f37be8b2ee8a1fb8e8cf292d6ed287753e7528b0e33708284d46f +size 343 diff --git a/public/2023-icon-library/mermaid/itch1.png b/public/2023-icon-library/mermaid/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..55eb30f5da4273aa09bea13d5ecf5a47738eb7bc --- /dev/null +++ b/public/2023-icon-library/mermaid/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a0e57d7ae96f9f18b45e1ca16e7a656d357bb8f8fbbc2a6588b247971f9348 +size 358 diff --git a/public/2023-icon-library/mermaid/itch2.png b/public/2023-icon-library/mermaid/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..21d151e5864081157e17835059b9fe2d7a8f6bb3 --- /dev/null +++ b/public/2023-icon-library/mermaid/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89416821fed522cb846b77d1e505389100a0eb37216d28ef5fd0a4287a6f48f5 +size 355 diff --git a/public/2023-icon-library/mermaid/nerun1.png b/public/2023-icon-library/mermaid/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7c90f52dcd0a28e4c72fe1288027fe2147790d9c --- /dev/null +++ b/public/2023-icon-library/mermaid/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b3565e8ab7ba17e3b90474b095d21f9bd75134eb9a0bf91e84da60cb8c29d3 +size 345 diff --git a/public/2023-icon-library/mermaid/nerun2.png b/public/2023-icon-library/mermaid/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..232cc7211245dfb672b5f1cb9ff5caa75f13d3a1 --- /dev/null +++ b/public/2023-icon-library/mermaid/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184f275965ec61fcb41bdbf7fb0e4f8b3af218bbd1494e197af1d5c120b033d7 +size 354 diff --git a/public/2023-icon-library/mermaid/nrun1.png b/public/2023-icon-library/mermaid/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0f1eaf751ac7784a355a380c72a8aa65e8c8fd --- /dev/null +++ b/public/2023-icon-library/mermaid/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47c2c47154e3a6a4b4514970cfdc9d4cdc2b3b17385253b838abc23012743bb +size 312 diff --git a/public/2023-icon-library/mermaid/nrun2.png b/public/2023-icon-library/mermaid/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3c3d1996ed9d0d47c267a6a9fe4ebf3e59bbfd2a --- /dev/null +++ b/public/2023-icon-library/mermaid/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff80e86c0ddb64bc7d0a8c4e45316edcfeb8e5c519c15645d9aac913436f23e0 +size 354 diff --git a/public/2023-icon-library/mermaid/nscratch1.png b/public/2023-icon-library/mermaid/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2ae1e1997664a022cbbbe3d411b931093683a40e --- /dev/null +++ b/public/2023-icon-library/mermaid/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfceee7e9f3a2ebaa027b4418a7941b8e5e2977be0f38d00bbc46ad0b93faaf +size 347 diff --git a/public/2023-icon-library/mermaid/nscratch2.png b/public/2023-icon-library/mermaid/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..41da25bd7f09f2b663addfae1efd666084adfef9 --- /dev/null +++ b/public/2023-icon-library/mermaid/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a154bfbb7dd0f02b6125665268b5c902333ae68638a699a939abc9d88ef21470 +size 341 diff --git a/public/2023-icon-library/mermaid/nwrun1.png b/public/2023-icon-library/mermaid/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..400505c0eafe55b6d8941e5a7ac34325081e7ca4 --- /dev/null +++ b/public/2023-icon-library/mermaid/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ade7b551e7918fa4fd0e4f173276034c541242ee620cc40c485dcf4c55486b1 +size 346 diff --git a/public/2023-icon-library/mermaid/nwrun2.png b/public/2023-icon-library/mermaid/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..6d116e5d6251acbd8fd5bd87918b050c2467f0d9 --- /dev/null +++ b/public/2023-icon-library/mermaid/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7181207508ddd954b191ad0edd0209e28747930186c495a166f8fa8fa4a2cb5b +size 346 diff --git a/public/2023-icon-library/mermaid/serun1.png b/public/2023-icon-library/mermaid/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d54a363efe8cf04c5500eb5fa2321939d27561d --- /dev/null +++ b/public/2023-icon-library/mermaid/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ab35035302027aba1c703fd29498c9676cc1f62c8b73fbc069bb103875b5bc +size 343 diff --git a/public/2023-icon-library/mermaid/serun2.png b/public/2023-icon-library/mermaid/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..699db221227a1560d119ad87dd4a43f76e0f6364 --- /dev/null +++ b/public/2023-icon-library/mermaid/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5748aeee28c3ffb07041ed5eec87d29e7b22ff784bd6b2df44bef1292560af +size 343 diff --git a/public/2023-icon-library/mermaid/sleep1.png b/public/2023-icon-library/mermaid/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..becdf66e740797cb616114f7c06d3eb2fc91dc64 --- /dev/null +++ b/public/2023-icon-library/mermaid/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9aea0e62c0575662ea24e854d11e774d89b20d37d5e84d6fcf97ab312afa6af +size 720 diff --git a/public/2023-icon-library/mermaid/sleep2.png b/public/2023-icon-library/mermaid/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..a37ec18e4d14f93df49a6a569b83576b66a53db3 --- /dev/null +++ b/public/2023-icon-library/mermaid/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5ca8f9bfe80321d8a2478866ce9e767fc7ed9e547d9bd294c22c4afb9f1c2c +size 805 diff --git a/public/2023-icon-library/mermaid/srun1.png b/public/2023-icon-library/mermaid/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..93e201773c4ebb3b85e156da88a9c8d31c2f5b25 --- /dev/null +++ b/public/2023-icon-library/mermaid/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b5c8db1d49c68771e0ee2f1b229a2f9dbfbe8a671c2372b53256707181a0f4 +size 338 diff --git a/public/2023-icon-library/mermaid/srun2.png b/public/2023-icon-library/mermaid/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..9ef10f8511c9ed60f1ec8da3f524318494b99664 --- /dev/null +++ b/public/2023-icon-library/mermaid/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3161b426adc5a36a14d700cc8e276445f4737d2d35babbb76cb2b0c5cbc89866 +size 338 diff --git a/public/2023-icon-library/mermaid/sscratch1.png b/public/2023-icon-library/mermaid/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0437d6e19b98590ae6e3293ba189667fc587740c --- /dev/null +++ b/public/2023-icon-library/mermaid/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7948384a1f79ed31d76880f2ac604cc8060e330e82f6aa23d2ccefcb67ffc6c +size 324 diff --git a/public/2023-icon-library/mermaid/sscratch2.png b/public/2023-icon-library/mermaid/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..229f736bc9a91ebf9e5181edfae3658f8ea905e5 --- /dev/null +++ b/public/2023-icon-library/mermaid/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272e8e2b0925f1e873adf3750cdb0be73eeb5e3044b81b4dcdfff34acdb71813 +size 324 diff --git a/public/2023-icon-library/mermaid/still.png b/public/2023-icon-library/mermaid/still.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd0bcd22fa3954206ba09bae2c8a8e6276de3df --- /dev/null +++ b/public/2023-icon-library/mermaid/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76aeb5b0935ea5f09a608a0edc32787c7dfe90b2bfcb82a327c23b7daaffb9e6 +size 335 diff --git a/public/2023-icon-library/mermaid/swrun1.png b/public/2023-icon-library/mermaid/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..84cc60fe451cdfe5b6a400dc6e3f4cef79b66119 --- /dev/null +++ b/public/2023-icon-library/mermaid/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adccabdfc79dc89c686c2fc1eb9bbf1add26a8914a3fc492a65e465d1fb9c17 +size 339 diff --git a/public/2023-icon-library/mermaid/swrun2.png b/public/2023-icon-library/mermaid/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ccc17030235fb61d8ab44d4a86aa811aa8d27ed9 --- /dev/null +++ b/public/2023-icon-library/mermaid/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73051d914062aae0b4f20a8a8dced7d279db22898028c2e8c61eabf0ec1da38 +size 350 diff --git a/public/2023-icon-library/mermaid/wash.png b/public/2023-icon-library/mermaid/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..cae9d5e9e35c4bfae80069482f67dc7387b583b1 --- /dev/null +++ b/public/2023-icon-library/mermaid/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11918e93fb9e2db150fc4787dbec75db6dfb2acbe6cef006d2517854c2c165a7 +size 358 diff --git a/public/2023-icon-library/mermaid/wrun1.png b/public/2023-icon-library/mermaid/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..42d9cc2d5acb78ab0409e0ac8f1798712e76f9f6 --- /dev/null +++ b/public/2023-icon-library/mermaid/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecd6e518b0f912704e8a9665d480a1d1c29c0ade5dcd0ae19666667952bf861 +size 347 diff --git a/public/2023-icon-library/mermaid/wrun2.png b/public/2023-icon-library/mermaid/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..adaf2f4dff56dd99663f8d6d8173452373a4781e --- /dev/null +++ b/public/2023-icon-library/mermaid/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf7aecc624cecae70127d1f41195c4bf08f27abed520a21aaf552b925456af0 +size 349 diff --git a/public/2023-icon-library/mermaid/wscratch1.png b/public/2023-icon-library/mermaid/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c4ed121958ced40c4e7e7500939f29a4754e5760 --- /dev/null +++ b/public/2023-icon-library/mermaid/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f485fd4c202a706effd20d2505cab4f01c2096445d8ce84583831bbcd2b40343 +size 338 diff --git a/public/2023-icon-library/mermaid/wscratch2.png b/public/2023-icon-library/mermaid/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5b754f3e8d752835755b7dc36531f4a983c66642 --- /dev/null +++ b/public/2023-icon-library/mermaid/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5c9694d96cda37b67df48de336f352169af833e5c9ac7dfc0275f79a0256ba +size 335 diff --git a/public/2023-icon-library/mermaid/yawn.png b/public/2023-icon-library/mermaid/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..ca0fd96f0f4c676c2d790842e8bf4092705cfcbe --- /dev/null +++ b/public/2023-icon-library/mermaid/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276ccbe6617f07b37e55b566e11f830af48a29823ca2f0f95d6f4d3ab0019686 +size 365 diff --git a/public/2023-icon-library/mike/alert.png b/public/2023-icon-library/mike/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..0ac4dd77d1cc46fa5fb2dda93f01832c5a3551cb --- /dev/null +++ b/public/2023-icon-library/mike/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b58914ea4ea930d238e93396fdded9247f903dac2357199f36d77ccb2ffacff +size 313 diff --git a/public/2023-icon-library/mike/erun1.png b/public/2023-icon-library/mike/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bddc4588fab558d1b4d009689ea3d563c136ee0b --- /dev/null +++ b/public/2023-icon-library/mike/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1382483406d86e2a9841acb130843633e4c98050de086ae3cdf18803eba45ac +size 308 diff --git a/public/2023-icon-library/mike/erun2.png b/public/2023-icon-library/mike/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f11bd54427a1bb1e8f1e54b665dc0449979542a9 --- /dev/null +++ b/public/2023-icon-library/mike/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4208f767946800a0fdb41eae14d79b9d649634c8e364b97236551e111e436da0 +size 296 diff --git a/public/2023-icon-library/mike/escratch1.png b/public/2023-icon-library/mike/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..164431e8d0ea0696957d9c5598c8394887b222c2 --- /dev/null +++ b/public/2023-icon-library/mike/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5a716d1914cbf9cd586fc4edfc6ef0c03fdb052723eaad17745bac45c8df36 +size 305 diff --git a/public/2023-icon-library/mike/escratch2.png b/public/2023-icon-library/mike/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..820c65f379c9c63ae1c26f3240ced6d0f3c07d5f --- /dev/null +++ b/public/2023-icon-library/mike/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c4f9a1214b17925cf95500a2eafd6e82584d1e1a27763351cc8850287054ca +size 297 diff --git a/public/2023-icon-library/mike/itch1.png b/public/2023-icon-library/mike/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e922cdeb1f8c921ba341da85d4b4c7cfcc2460f --- /dev/null +++ b/public/2023-icon-library/mike/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40b8b543d99149a43e72f81c88aa22f6630b4c9278964640a546fdc932c7494 +size 290 diff --git a/public/2023-icon-library/mike/itch2.png b/public/2023-icon-library/mike/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec7b7842db57d7c6b9d4c8d7507eda631cb9afb --- /dev/null +++ b/public/2023-icon-library/mike/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4858e01ea8d89a5806330510625679b28d71e8bc08f832761a925ceef4cb34 +size 262 diff --git a/public/2023-icon-library/mike/nerun1.png b/public/2023-icon-library/mike/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..572972f50b9b7d4949d2ba92ff0c266088c42aaf --- /dev/null +++ b/public/2023-icon-library/mike/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a6045592f62a51505dc4d1fbd3325ceaf0c495e28c4c3fbb76c7e518b1e0ce +size 319 diff --git a/public/2023-icon-library/mike/nerun2.png b/public/2023-icon-library/mike/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..cbfea2731adebc2f32f9140e5c5d9f657da1ba1b --- /dev/null +++ b/public/2023-icon-library/mike/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396ebc700164add8513d850687e72ddc488b2f768f0b38338d35ffa8d8067c28 +size 323 diff --git a/public/2023-icon-library/mike/nrun1.png b/public/2023-icon-library/mike/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..146fc2182469d1b5726721839386c586245920ea --- /dev/null +++ b/public/2023-icon-library/mike/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92f41fa90c88ddde34282c0bcb37677d398e275ebec0baad6e776691456bdc3 +size 262 diff --git a/public/2023-icon-library/mike/nrun2.png b/public/2023-icon-library/mike/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8c9068ec208bf882ddde318e21b2a3de745fd47e --- /dev/null +++ b/public/2023-icon-library/mike/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff3f8f54c4f3caf98316c3ffe6cce5082880755de1b0277106d78490556c286 +size 294 diff --git a/public/2023-icon-library/mike/nscratch1.png b/public/2023-icon-library/mike/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7856c3c53684db3ddc6599566780a6056b4677 --- /dev/null +++ b/public/2023-icon-library/mike/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc59cdac92e571306f8bedf0ec63972f839fd8f46e03b61754fda76b5974b77 +size 300 diff --git a/public/2023-icon-library/mike/nscratch2.png b/public/2023-icon-library/mike/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..95de2f516224613296108b2bd033ad32e6bec5f5 --- /dev/null +++ b/public/2023-icon-library/mike/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb166f38643ba4a69f4574338c53b98aa4d5ad8e60639e9e88b45075e8c0959 +size 302 diff --git a/public/2023-icon-library/mike/nwrun1.png b/public/2023-icon-library/mike/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4c92513c5574c509473b18572b9925aabfcc7a --- /dev/null +++ b/public/2023-icon-library/mike/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc9a1b85b9e4c7d6cf7e3e59de720cfb4556dc09d6f78691e6678e41124a0d5 +size 305 diff --git a/public/2023-icon-library/mike/nwrun2.png b/public/2023-icon-library/mike/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..79cbb829c7781d1d37113f155d58672141f8b0fa --- /dev/null +++ b/public/2023-icon-library/mike/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16733624e3ce12d91193820b642bdf8e17487ec64ddf1784f4a094e32756ac41 +size 320 diff --git a/public/2023-icon-library/mike/serun1.png b/public/2023-icon-library/mike/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5ea0de12a6978588a2381c4e316abc36e1e47c --- /dev/null +++ b/public/2023-icon-library/mike/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59435f8b13345bb4a20bfb42ad8a407b4c3b30e7573b62a3ffb7cee3c3a94a7 +size 579 diff --git a/public/2023-icon-library/mike/serun2.png b/public/2023-icon-library/mike/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..046a5945875a5b2b9730a090f3fd8042e494c298 --- /dev/null +++ b/public/2023-icon-library/mike/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cc666ed2bc268f053365ca25b15900e78438cca2994dc2b3e393ad894439fb +size 305 diff --git a/public/2023-icon-library/mike/sleep1.png b/public/2023-icon-library/mike/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..86581f7bdce4ab1ba99cdbccd3328ed67575c28c --- /dev/null +++ b/public/2023-icon-library/mike/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93012053cc5640bbcb628f6c84ca21b7ef40055daacab827bd12c7231cfcaab8 +size 285 diff --git a/public/2023-icon-library/mike/sleep2.png b/public/2023-icon-library/mike/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..e77897e84f56a358f27706ca50016c7170fcc0cb --- /dev/null +++ b/public/2023-icon-library/mike/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c57bc6ea0b6f52e7f9db6c20f0abb8bd23fb37cfada805dc85c534a3dbe3ba +size 279 diff --git a/public/2023-icon-library/mike/srun1.png b/public/2023-icon-library/mike/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..86be7326b9dae83d0cec3b6903de97d059cde9eb --- /dev/null +++ b/public/2023-icon-library/mike/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade92aca561b44178d158a9ffa81141f045e7f92c827dff35dbd645394e431de +size 263 diff --git a/public/2023-icon-library/mike/srun2.png b/public/2023-icon-library/mike/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..84024bb6098c95eb7071774b48cd81b7d4f7154a --- /dev/null +++ b/public/2023-icon-library/mike/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c99d290a2dcf1e844f0fce7d87e83e27f4df999835541775d7744d030f65e0 +size 303 diff --git a/public/2023-icon-library/mike/sscratch1.png b/public/2023-icon-library/mike/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..755a5c9457ddab9d0e617f9af0142191a1e8b8de --- /dev/null +++ b/public/2023-icon-library/mike/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6289dc904d9914cbeaf26b7b8df3ac0e939b33ec090728424560a719453db8ab +size 297 diff --git a/public/2023-icon-library/mike/sscratch2.png b/public/2023-icon-library/mike/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..80283f366e9cb10f34d77919974bfcb44c49d441 --- /dev/null +++ b/public/2023-icon-library/mike/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6c933c663539f45af2d0c23a04c4c82034fdeb5ca2a7703f90dff520adce31 +size 292 diff --git a/public/2023-icon-library/mike/still.png b/public/2023-icon-library/mike/still.png new file mode 100644 index 0000000000000000000000000000000000000000..a31fba0b7f865f158237736c5d4e75f438965752 --- /dev/null +++ b/public/2023-icon-library/mike/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f80bcd4f1d0257cf1e94160f56567f1168d611cd266b6a8c27cd98935cab4e +size 272 diff --git a/public/2023-icon-library/mike/swrun1.png b/public/2023-icon-library/mike/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e873d2bba039c6f92fd12708a6cead4a0aa8569 --- /dev/null +++ b/public/2023-icon-library/mike/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d4537d2f1dabd7396e13fe6e67cdbea3daa4d98698dae41f14a2d9b8df40f4 +size 582 diff --git a/public/2023-icon-library/mike/swrun2.png b/public/2023-icon-library/mike/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..316761ff6f82dc1535bad57186002d79bbd55bb9 --- /dev/null +++ b/public/2023-icon-library/mike/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ccb66b0d6c7dc5dcce74e100251471936ec81ee3816880288f8766062181c5 +size 320 diff --git a/public/2023-icon-library/mike/wash.png b/public/2023-icon-library/mike/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd0c805ce726e1af540c73e5c5bf7f4198934d5 --- /dev/null +++ b/public/2023-icon-library/mike/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62affd133906af3036ad9acc0ed119973231baa29731af256027fcec8c65157d +size 294 diff --git a/public/2023-icon-library/mike/wrun1.png b/public/2023-icon-library/mike/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..83a8e6c6944012f2d9fb9e976cede606e239892c --- /dev/null +++ b/public/2023-icon-library/mike/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a89c348fa856ae3ac754185124c123700b1c13e769751a072a3b138be9390aa +size 310 diff --git a/public/2023-icon-library/mike/wrun2.png b/public/2023-icon-library/mike/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..41871b93b35a1623fd6f2e41a431c1e3c73b197d --- /dev/null +++ b/public/2023-icon-library/mike/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f710c7d4452bd4dc9b5a45cd92a28bb77acc1d37141bac75a8da5111c16a7a1 +size 299 diff --git a/public/2023-icon-library/mike/wscratch1.png b/public/2023-icon-library/mike/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7f71e720aa18a5df88c6ba308605137fbd4354 --- /dev/null +++ b/public/2023-icon-library/mike/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472304b821d37a196f622146f9841a014c2447a50f883264fb730fc88dff9ae3 +size 309 diff --git a/public/2023-icon-library/mike/wscratch2.png b/public/2023-icon-library/mike/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..b4dd5ab906fb1efd94d4f9ac1dc5628e8e2bfdf0 --- /dev/null +++ b/public/2023-icon-library/mike/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fecedb549ef4bfc2d704cfa7a0c21186f301186bf752e89590a1d3bbb3440ff9 +size 300 diff --git a/public/2023-icon-library/mike/yawn.png b/public/2023-icon-library/mike/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..78339d0c5b3f7ca7f580d76b1bd7de173977c21a --- /dev/null +++ b/public/2023-icon-library/mike/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992ebb805f8784b1a78368111aa7c37329e02e971c88cd4e67580aea1d1f86c9 +size 290 diff --git a/public/2023-icon-library/mini/alert.png b/public/2023-icon-library/mini/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..1975c7da72faacb63676af1d2a55172bdfcbaa0e --- /dev/null +++ b/public/2023-icon-library/mini/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04226c03b4e3986bb86d78a9034bc6d8332c29d11021c4efeeddb6f73bc50ca +size 307 diff --git a/public/2023-icon-library/mini/erun1.png b/public/2023-icon-library/mini/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a5afbbb08762fa51742112ca06dfaa0014f1cbac --- /dev/null +++ b/public/2023-icon-library/mini/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87006cd4a7772dedc6b9d414bcbe78aeb591bed4607bf8ad9d2e65b78ec64098 +size 242 diff --git a/public/2023-icon-library/mini/erun2.png b/public/2023-icon-library/mini/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..90ebea433980062ff55570c78a0768a2821ecbb1 --- /dev/null +++ b/public/2023-icon-library/mini/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b650c6fc251d04c15a1e041e2584238bccbbe3144cc7cc96835074998ad0266a +size 255 diff --git a/public/2023-icon-library/mini/escratch1.png b/public/2023-icon-library/mini/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..9474466eb5f8a36fbacbf50478f25d029e7769eb --- /dev/null +++ b/public/2023-icon-library/mini/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316e1b9900c761066480c5edc381a690326d95e520c0daced1641cc101c842cb +size 259 diff --git a/public/2023-icon-library/mini/escratch2.png b/public/2023-icon-library/mini/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c62fc807ff24a3d8d5de0269b53dbeb79f8680f8 --- /dev/null +++ b/public/2023-icon-library/mini/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53a12515d05206675eb12fba14a6d29bd920e2a09a302d14dafaa63681bacd2 +size 224 diff --git a/public/2023-icon-library/mini/itch1.png b/public/2023-icon-library/mini/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..e09402aff9de5bebe5302c998d12de70405a0f84 --- /dev/null +++ b/public/2023-icon-library/mini/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c71234b6721659264e00b3adec489a95b4b7c6cbee1d1b6a627dd5245a3ae2b +size 344 diff --git a/public/2023-icon-library/mini/itch2.png b/public/2023-icon-library/mini/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..95ab5fa236752b55b680b5db509754db3c491cbf --- /dev/null +++ b/public/2023-icon-library/mini/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3364e189be3ce3faccd10203765ef1b6fb6d748201981a609d1d74ca4821b2 +size 355 diff --git a/public/2023-icon-library/mini/nerun1.png b/public/2023-icon-library/mini/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4e7f2e6702e1377835451594b1de77329d4e95be --- /dev/null +++ b/public/2023-icon-library/mini/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8699e6608805ceb5b71dbba0bb00225101c847ae583f3b042ff12854c9b1d7 +size 282 diff --git a/public/2023-icon-library/mini/nerun2.png b/public/2023-icon-library/mini/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1944ead9045883c326d7ff1ce451c55d4e48bae --- /dev/null +++ b/public/2023-icon-library/mini/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9d33b0d8f778f607edaa9a0b3018597bae7348c23d6037f124bb4f056d7020 +size 259 diff --git a/public/2023-icon-library/mini/nrun1.png b/public/2023-icon-library/mini/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..29fea13c7ccf6c7aef88ae97258b7f18aecff60b --- /dev/null +++ b/public/2023-icon-library/mini/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead71363c0b72c00ffef3dfc96767e911cf81f5d39fddf3b993ad07522dcd9d8 +size 233 diff --git a/public/2023-icon-library/mini/nrun2.png b/public/2023-icon-library/mini/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..3301c8a4edda3c621575eba9ec4c2afb9a9a24d0 --- /dev/null +++ b/public/2023-icon-library/mini/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667f27ea6ae74fbe0f1d0410606d11c0a2b8e9a561da70bc4e420a39fb45e6a3 +size 231 diff --git a/public/2023-icon-library/mini/nscratch1.png b/public/2023-icon-library/mini/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac0114ecbf940c5a159f4877663a1b9c1568d1c9 --- /dev/null +++ b/public/2023-icon-library/mini/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407f50c47239c3d2cd51ab28103331780617d9d525a68b2ea819d7d38b5e30d8 +size 229 diff --git a/public/2023-icon-library/mini/nscratch2.png b/public/2023-icon-library/mini/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..65e6b69e8e78f1c5e330bd3d0bdcda5c20d48df1 --- /dev/null +++ b/public/2023-icon-library/mini/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90177a9ef49693152533b8afc7ec638e22f4d6de16441003131b96e96a0c9490 +size 230 diff --git a/public/2023-icon-library/mini/nwrun1.png b/public/2023-icon-library/mini/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..dfb2ec13988f3858eb72ba8722e11ade34f46997 --- /dev/null +++ b/public/2023-icon-library/mini/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ba4f36026a8aacb0ec1243bbe7d181bed4d4476e0ac7475c1b6d38dc1f97c7 +size 285 diff --git a/public/2023-icon-library/mini/nwrun2.png b/public/2023-icon-library/mini/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2c543392de88e1b8943747f7aa8afb680bcde52f --- /dev/null +++ b/public/2023-icon-library/mini/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271d183b45e87bfcea720d54a89934b5c9d79b09244d575213aa4506ffd5c587 +size 262 diff --git a/public/2023-icon-library/mini/serun1.png b/public/2023-icon-library/mini/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3efda79c137632c120efa4a26b0e886d998b50ce --- /dev/null +++ b/public/2023-icon-library/mini/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12157289fd43543db7656aaad8ed774b930d8e0f111169c9d6bf69b6e3a5a8ef +size 282 diff --git a/public/2023-icon-library/mini/serun2.png b/public/2023-icon-library/mini/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ddbc9d3bfbb2275d83c550034e175c23d110a729 --- /dev/null +++ b/public/2023-icon-library/mini/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072cc619e61bf96cf059ce5c50fb0cfba6dc9c4ffec536e8e9547187a8e1bf66 +size 266 diff --git a/public/2023-icon-library/mini/sleep1.png b/public/2023-icon-library/mini/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..327f002325165be12b5e42fcb8aa5a6e3ecd4e62 --- /dev/null +++ b/public/2023-icon-library/mini/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:661ca57e842fecf845005fea686d7b3dc049ff4702bed65a6d0c0098c48f1ed0 +size 287 diff --git a/public/2023-icon-library/mini/sleep2.png b/public/2023-icon-library/mini/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..532f76dbcfcfd0efbcbc2dbbc5f356efc10722d8 --- /dev/null +++ b/public/2023-icon-library/mini/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a94f3b93ad7d236424c9841ac89db2eac1da5b2880b404505062f54a620d21 +size 288 diff --git a/public/2023-icon-library/mini/srun1.png b/public/2023-icon-library/mini/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e32420b188aa754455102e3181e54dae02e0c2e --- /dev/null +++ b/public/2023-icon-library/mini/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f56d4a263d69e26d7224583a1bf315e07f8ea9d3a65fafd4541c3e42311a11 +size 237 diff --git a/public/2023-icon-library/mini/srun2.png b/public/2023-icon-library/mini/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a8c1e05b356fda003be9ab241d0ded3db175d570 --- /dev/null +++ b/public/2023-icon-library/mini/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7f21dcadb9e21b561efa0883adf440c11be1169ab551bf2efc9482ee1fc3e1 +size 232 diff --git a/public/2023-icon-library/mini/sscratch1.png b/public/2023-icon-library/mini/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..519b7ec97e276c9c49d3ddcfaaf710b77668757f --- /dev/null +++ b/public/2023-icon-library/mini/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4c7e64f72a73ff4a57bdc583761a37d26234e2743811a4a8caa7ef75287b5f +size 230 diff --git a/public/2023-icon-library/mini/sscratch2.png b/public/2023-icon-library/mini/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2ae0d2e4101331adbdc072b7b3ff73aa00026a9c --- /dev/null +++ b/public/2023-icon-library/mini/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eaa98f31fd74d2699f09308f672d464e9f965ade1ee3d723abcf38cbf6723fc +size 228 diff --git a/public/2023-icon-library/mini/still.png b/public/2023-icon-library/mini/still.png new file mode 100644 index 0000000000000000000000000000000000000000..cc649f5d94c4465f6f83a5c19a546ce23050aa62 --- /dev/null +++ b/public/2023-icon-library/mini/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94cfb4d22bc0e934ac273975877d0f134d1b63133a30bcd77d3e5deafce0a19 +size 292 diff --git a/public/2023-icon-library/mini/swrun1.png b/public/2023-icon-library/mini/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b1e8fbc259d8cf6e72a96bbd6ff7e6d83511b246 --- /dev/null +++ b/public/2023-icon-library/mini/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714ac856181141894c37d28fc9aa9e29fc6f78c8c85fc547c401c6bf4a3aaf28 +size 283 diff --git a/public/2023-icon-library/mini/swrun2.png b/public/2023-icon-library/mini/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0793f3fd30baf15c06624646d022a37c5fa0282e --- /dev/null +++ b/public/2023-icon-library/mini/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7f8a3d669bcd65295e9cc2e4a3881826457111e114cb4c571e187506009407 +size 258 diff --git a/public/2023-icon-library/mini/wash.png b/public/2023-icon-library/mini/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..c8521d85be8afb983dde0a9c867244b9f6ebd852 --- /dev/null +++ b/public/2023-icon-library/mini/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5755ae96df825079b264e1135c0bfbdac9978adc7e87f4d4660836a1f3bb81dd +size 294 diff --git a/public/2023-icon-library/mini/wrun1.png b/public/2023-icon-library/mini/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ce292068417e3c5f8f7455780d1c45a6cdd359ef --- /dev/null +++ b/public/2023-icon-library/mini/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136388e5240a94e57ba9d8e8eba4f7588a8814308f7ee3862fbd3151f7168177 +size 252 diff --git a/public/2023-icon-library/mini/wrun2.png b/public/2023-icon-library/mini/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..da43240ff0760baf34e3e1bf28625126f6684d60 --- /dev/null +++ b/public/2023-icon-library/mini/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12558d1a6a52d4da59ec9822d31f371ec37d0d12d05fe756daf651b66f777ca7 +size 261 diff --git a/public/2023-icon-library/mini/wscratch1.png b/public/2023-icon-library/mini/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b80a2d9d0cfd99c322dd1dcd8d2312e9773e97c6 --- /dev/null +++ b/public/2023-icon-library/mini/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89c20356096d9c5e5c79c82e1ca71ef8a321fbbaa2ecc955556f863f5103151 +size 264 diff --git a/public/2023-icon-library/mini/wscratch2.png b/public/2023-icon-library/mini/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..43f1656505191df7f35fe8f3dfc4e349d68397f8 --- /dev/null +++ b/public/2023-icon-library/mini/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ba9b45afa8e0a23d2bc87e37e4d1a221979149d2befbb15fca809b43ad8dc4 +size 229 diff --git a/public/2023-icon-library/mini/yawn.png b/public/2023-icon-library/mini/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..f02d2f48638f767ccb64399d098b479a735446e6 --- /dev/null +++ b/public/2023-icon-library/mini/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f510f2c96de3a6d7ae184027d0c9885c44f8082cc988690ba73eaddd519f8b +size 347 diff --git a/public/2023-icon-library/orange/alert.png b/public/2023-icon-library/orange/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..18ad2a4ecf34e7e264db41cdadaba440072565be --- /dev/null +++ b/public/2023-icon-library/orange/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d661fd535041a3d470185d30aaa7c3cd6f4d8ead0a3f34c6c78b145b52870648 +size 309 diff --git a/public/2023-icon-library/orange/erun1.png b/public/2023-icon-library/orange/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ad4de63aeafc8126a5e1189aa3861a6beb2c0c --- /dev/null +++ b/public/2023-icon-library/orange/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2165f73a7bdd3e66534173027d1b6c8f9448a133575a304d770cdf2248c19159 +size 307 diff --git a/public/2023-icon-library/orange/erun2.png b/public/2023-icon-library/orange/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..476fd8b515fff10fdb8b854fc3a81b5ad9a3bd7b --- /dev/null +++ b/public/2023-icon-library/orange/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b606101bfded8c3b86d37c1e500aaaad952ae17ad57e3e8eff0052932c8dcb2 +size 309 diff --git a/public/2023-icon-library/orange/escratch1.png b/public/2023-icon-library/orange/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a010ef0b148f0bdc3209b2a9da0279aa6bea952a --- /dev/null +++ b/public/2023-icon-library/orange/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21263bfd91ec750fd879f67ce8a1da3e81c2c3240e6e64c4fe965ef04dca74a +size 309 diff --git a/public/2023-icon-library/orange/escratch2.png b/public/2023-icon-library/orange/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a57f8c4a2106f002640f6b200e62c1fe249eae18 --- /dev/null +++ b/public/2023-icon-library/orange/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c40353808c948d637ee56f5e253ad7181d550fa39be468fa1455930cc780ac6 +size 303 diff --git a/public/2023-icon-library/orange/itch1.png b/public/2023-icon-library/orange/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..02a83d49911ae75d7ea4ce35a1ff94673496ee10 --- /dev/null +++ b/public/2023-icon-library/orange/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8f8db0a4cd01b803fe97cdf3f0225ed22c87ba866dfce20a69258e40520323 +size 305 diff --git a/public/2023-icon-library/orange/itch2.png b/public/2023-icon-library/orange/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..22f2d0e3b1cbb35519aa5be12735b45522eba591 --- /dev/null +++ b/public/2023-icon-library/orange/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea10f1b8d06ccd8cb5c856819ce2035a58bdeb50d2fbb5f4a1e1d2d7fd3c9040 +size 287 diff --git a/public/2023-icon-library/orange/nerun1.png b/public/2023-icon-library/orange/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..84574801d1e6d5dd43cd78a3ddffc18e8734c713 --- /dev/null +++ b/public/2023-icon-library/orange/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7d4e78966a5ed62a3946e1b9a2b1109bdcf3fff2dba9b3e6a2e4c0c1f9695f +size 307 diff --git a/public/2023-icon-library/orange/nerun2.png b/public/2023-icon-library/orange/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad565641c4198aca6a4e67273cfed156b4a8f2f --- /dev/null +++ b/public/2023-icon-library/orange/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9bb53ec9f70828e981ac2f89b0c0f62653574a2823afa1de82cd4e0b61a42c +size 325 diff --git a/public/2023-icon-library/orange/nrun1.png b/public/2023-icon-library/orange/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f7d5b184027513fe922e36ecc0d24376dfa3d368 --- /dev/null +++ b/public/2023-icon-library/orange/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2d98a7d57bef8f68456bb870e3c59a29b767cb332d8e99d97e2f47db538d22 +size 274 diff --git a/public/2023-icon-library/orange/nrun2.png b/public/2023-icon-library/orange/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..226bced4f1743ceec19fec898aceb266e2f32db6 --- /dev/null +++ b/public/2023-icon-library/orange/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e83c3e2c5efbf20c86f30ecf4cc2ccca0b0eb453b0bf0e13215748cb40c10ab +size 309 diff --git a/public/2023-icon-library/orange/nscratch1.png b/public/2023-icon-library/orange/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..7d6d63d3315c65271e2a6e29c87f70342558f673 --- /dev/null +++ b/public/2023-icon-library/orange/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c5b86c270a773657b5fc02933cd63d0131319eed9af69a703f1ebe681820a7 +size 326 diff --git a/public/2023-icon-library/orange/nscratch2.png b/public/2023-icon-library/orange/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..13dc5dde544bf6818e4ff3c848cab4ea5d8934b3 --- /dev/null +++ b/public/2023-icon-library/orange/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70408a9dbe6e83fd8ec6b0b4cef506285bd3996a84e5a8cc12089fb2f2c8822 +size 319 diff --git a/public/2023-icon-library/orange/nwrun1.png b/public/2023-icon-library/orange/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b2504cd36ebeec4abd25122d5a776cac8d8b02e0 --- /dev/null +++ b/public/2023-icon-library/orange/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90a6fed91b4125186c15adc98dde419a41e34cd4030fb5929222fa7b5ab47bd +size 299 diff --git a/public/2023-icon-library/orange/nwrun2.png b/public/2023-icon-library/orange/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..755b5fa01431c342dd744b77caccdc823735721a --- /dev/null +++ b/public/2023-icon-library/orange/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b464e858643268cb13346df7035b31640b61d69cd35718aceff8462d6dc4534 +size 304 diff --git a/public/2023-icon-library/orange/serun1.png b/public/2023-icon-library/orange/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..7119960c0c0b0a112c6e877effaef9257fed6c9b --- /dev/null +++ b/public/2023-icon-library/orange/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b8a9e11721fc6f998c59eb0385b5201e53246bee4072829fb4d59b34021dcb +size 311 diff --git a/public/2023-icon-library/orange/serun2.png b/public/2023-icon-library/orange/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d538d4ed5a1d705360692655e47e9e67d467bc8a --- /dev/null +++ b/public/2023-icon-library/orange/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c09c347dc3af534000bb904e13f434fd641d95444b1358ee7ef55250cdf252 +size 316 diff --git a/public/2023-icon-library/orange/sleep1.png b/public/2023-icon-library/orange/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..9636bcbc383f5d40df86928bf4d6f8752b9fdad0 --- /dev/null +++ b/public/2023-icon-library/orange/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2b0a7292668054d8343a050f4a411fa7a8e7b97c9656c8cdebece5de392ea0 +size 300 diff --git a/public/2023-icon-library/orange/sleep2.png b/public/2023-icon-library/orange/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..0420b2030f5758b8de7e922648a47971e5df6304 --- /dev/null +++ b/public/2023-icon-library/orange/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a716614f306c7be43a5db0288374d1e78ec8f805b0e3553729e18ac3acb35a6 +size 297 diff --git a/public/2023-icon-library/orange/srun1.png b/public/2023-icon-library/orange/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e0de325560d64ca4857a76132885c2cef1d86c94 --- /dev/null +++ b/public/2023-icon-library/orange/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd46ab5ce63d6848cb01a7b98321d3c60f0bbc4a9e50cb92ce5bfb00901b627 +size 294 diff --git a/public/2023-icon-library/orange/srun2.png b/public/2023-icon-library/orange/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e498ad05a47c7553e8eceb897b2fe13df482fd76 --- /dev/null +++ b/public/2023-icon-library/orange/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55edb59e4bc7115f02919e132fdd355f6f093399d3b0dce4cf4e51cd258a4715 +size 322 diff --git a/public/2023-icon-library/orange/sscratch1.png b/public/2023-icon-library/orange/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a359a832ebcce74738d0699b6c2c3c870c34a25 --- /dev/null +++ b/public/2023-icon-library/orange/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04639f1167288e72694228e7da46d5ee26f1b74ab397bd6432986b756d619835 +size 296 diff --git a/public/2023-icon-library/orange/sscratch2.png b/public/2023-icon-library/orange/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..91bebf2221f763aa51e53c672a0185208eaf29b5 --- /dev/null +++ b/public/2023-icon-library/orange/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd1647cde08f7b748b3da1e02310677ccfb3350f83750327c8c8622ffa21b63e +size 303 diff --git a/public/2023-icon-library/orange/still.png b/public/2023-icon-library/orange/still.png new file mode 100644 index 0000000000000000000000000000000000000000..a8ea8e59ab30c197a53df02c86501201fbde0362 --- /dev/null +++ b/public/2023-icon-library/orange/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6eab24af7a34a8529cf61de04e57f59bc7f57617c08c59196ef1fde23cb18e8 +size 279 diff --git a/public/2023-icon-library/orange/swrun1.png b/public/2023-icon-library/orange/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..4aade26e1571860f7f1fd5af7ee88f2243eaf24e --- /dev/null +++ b/public/2023-icon-library/orange/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99641c75ee14a86a5215e7e2b471322f7b1b3d01a0a76c126bb1ba7f9d0e3b6d +size 319 diff --git a/public/2023-icon-library/orange/swrun2.png b/public/2023-icon-library/orange/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e150414dac3bad6f70c81dbff136252e5e57068 --- /dev/null +++ b/public/2023-icon-library/orange/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e3ae213a40fa655e71d98b5ab6839f27fcb5cb614fa441f82d8cb92987acd9 +size 328 diff --git a/public/2023-icon-library/orange/wash.png b/public/2023-icon-library/orange/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..d92dcfc683a153cf9acb192e35a694bc0280c2b1 --- /dev/null +++ b/public/2023-icon-library/orange/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3500a6bb94912999a4aae7ade0ac4816838fa44a9b1c0a0b14d95f323a9c797 +size 296 diff --git a/public/2023-icon-library/orange/wrun1.png b/public/2023-icon-library/orange/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b8370404d5fdfa68b59d612084d104284659ad3b --- /dev/null +++ b/public/2023-icon-library/orange/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cde11908cad387460c82ef479d1184e7bf0c2afc5bbfb6a4b35cd17c6fb2978 +size 311 diff --git a/public/2023-icon-library/orange/wrun2.png b/public/2023-icon-library/orange/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..997221cc19ae815764fbe6c54562938c72705a06 --- /dev/null +++ b/public/2023-icon-library/orange/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8413eaa31eedca2b593e489927c77aff5151fc7d6badc26c7ab846b68cc4edd +size 307 diff --git a/public/2023-icon-library/orange/wscratch1.png b/public/2023-icon-library/orange/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4f87eadb6ef6f4b9b7aac459179d81849da61a31 --- /dev/null +++ b/public/2023-icon-library/orange/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce9e86e0e6d289149078253b854786a1538d1db3a5d9bff31518fce015e1837 +size 313 diff --git a/public/2023-icon-library/orange/wscratch2.png b/public/2023-icon-library/orange/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..9e02b24a143a167f17983e4432faac4cd1f0643b --- /dev/null +++ b/public/2023-icon-library/orange/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522a9292200e8236a462ed6da9a18457a50c4b0ffd895ce79f5e999613f5cc17 +size 304 diff --git a/public/2023-icon-library/orange/yawn.png b/public/2023-icon-library/orange/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..70d139725022d2aacc34edd17f7bdd843f6d01a7 --- /dev/null +++ b/public/2023-icon-library/orange/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c13357d0840ca42c7c34b00962389cceda806b5e2747b71e8b83ba4527db85 +size 292 diff --git a/public/2023-icon-library/peach/alert.png b/public/2023-icon-library/peach/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..68d1836655074cd06de80c14d78c513e10d7ca13 --- /dev/null +++ b/public/2023-icon-library/peach/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059e765bf525a10cf4a7239693210c81f69de64496905bafa94c45ae3d23dc65 +size 414 diff --git a/public/2023-icon-library/peach/erun1.png b/public/2023-icon-library/peach/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a58033a5c6afd4a29dde6c7b4cd1300b7895211 --- /dev/null +++ b/public/2023-icon-library/peach/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd8c259ba0d8e011e548145efe9313b96e8674f174a15c84260eb1154a3e6b3 +size 410 diff --git a/public/2023-icon-library/peach/erun2.png b/public/2023-icon-library/peach/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ca65760436afeb82b8447bc4ba209edcc0726324 --- /dev/null +++ b/public/2023-icon-library/peach/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7558782d929306405f09fd4b7e7d9c2c7a2a82632e4143208a39a500bfa6ea75 +size 388 diff --git a/public/2023-icon-library/peach/escratch1.png b/public/2023-icon-library/peach/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f1a42907425608ee57019759a1b757262956c8 --- /dev/null +++ b/public/2023-icon-library/peach/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909f7ce894304a08649cdf7db30a94bbc09296566c16b91468abd8e322232c6e +size 399 diff --git a/public/2023-icon-library/peach/escratch2.png b/public/2023-icon-library/peach/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..dad7fb6205310eceb2c8088c644c31b6dc02625a --- /dev/null +++ b/public/2023-icon-library/peach/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f90dbbb8b338a2d184a6572b9a0495f4f7d26cc39a6cb67aae0436c5a4c9d5 +size 398 diff --git a/public/2023-icon-library/peach/itch1.png b/public/2023-icon-library/peach/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..ef9872e051af12062c8f04c57063d5720809e04f --- /dev/null +++ b/public/2023-icon-library/peach/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53fb2028864595920bcf760848ac86cad362c900549428b6cb46c6eca516d8fd +size 403 diff --git a/public/2023-icon-library/peach/itch2.png b/public/2023-icon-library/peach/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..04c6bac78004f96bc6acc5d0565a61716fc78254 --- /dev/null +++ b/public/2023-icon-library/peach/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53812f0d8aefd9bf7afd123bb60dd2ab01acf9e2e11849a73e9ae0ae91549d74 +size 394 diff --git a/public/2023-icon-library/peach/nerun1.png b/public/2023-icon-library/peach/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b7806d02115d94b411f6042bedc280df1d7905b --- /dev/null +++ b/public/2023-icon-library/peach/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea58ccc6de0006fe34be5419a04fab70ae7eb51a569a660beafa54227232620 +size 399 diff --git a/public/2023-icon-library/peach/nerun2.png b/public/2023-icon-library/peach/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0478cbcc28aa29a1bccb7639e9e3efcce1c4f740 --- /dev/null +++ b/public/2023-icon-library/peach/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179b8f1936e15005113e8688eebac8633b8227d9f72dc385d11894387ed149f9 +size 421 diff --git a/public/2023-icon-library/peach/nrun1.png b/public/2023-icon-library/peach/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9de73b186444a7fd63dbb94309fc739c5e4a1218 --- /dev/null +++ b/public/2023-icon-library/peach/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd01e165a483e819d3f56bb32a5851a48e3b3857a7ddb949f6845495a086c00 +size 378 diff --git a/public/2023-icon-library/peach/nrun2.png b/public/2023-icon-library/peach/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..08a5ffad17b15a2c03f4c3bb104b6ea5ef152b6f --- /dev/null +++ b/public/2023-icon-library/peach/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e340f1948a45da4a86901d295d2bf5561653329f64b508e0a6b5340e9640bfe7 +size 428 diff --git a/public/2023-icon-library/peach/nscratch1.png b/public/2023-icon-library/peach/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c1b38d9414eece5732b783d62dce0f616043c75a --- /dev/null +++ b/public/2023-icon-library/peach/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ba0d658fa2fe9ca01acfbfe5ac28eb99315505a8708f11da7f90b728dafa2a +size 420 diff --git a/public/2023-icon-library/peach/nscratch2.png b/public/2023-icon-library/peach/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..01540e344d19bd35da03ef93c4c3b9dd86b22c03 --- /dev/null +++ b/public/2023-icon-library/peach/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e6cb7640ee3e0b28ab2c8de3619644da27ca994408b171a479914168166986 +size 411 diff --git a/public/2023-icon-library/peach/nwrun1.png b/public/2023-icon-library/peach/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..93913ff03583d7fd107708fe903f86680d243670 --- /dev/null +++ b/public/2023-icon-library/peach/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d60a721313e7044820ad10ed58d706b491058088c8d15449f721bfaaa66800 +size 400 diff --git a/public/2023-icon-library/peach/nwrun2.png b/public/2023-icon-library/peach/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..6060f6cf35ae9ad4e56add2c1da5e3a9b2934904 --- /dev/null +++ b/public/2023-icon-library/peach/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8424cbd6b00e7a05cc22b8c9515eec9d3ea31469964372e910128eaf4b04ad45 +size 424 diff --git a/public/2023-icon-library/peach/serun1.png b/public/2023-icon-library/peach/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0221bb3194d649c68e4a8a9bb785c2280136977a --- /dev/null +++ b/public/2023-icon-library/peach/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ee42c97b48a59887cbc8a36cd704c386a7d75c1acaa00937fca3cd47067e66 +size 393 diff --git a/public/2023-icon-library/peach/serun2.png b/public/2023-icon-library/peach/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..39fc4734cac90a3c6c3348c51fa23decaeb16d26 --- /dev/null +++ b/public/2023-icon-library/peach/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd946a1478b852d0967517d508cc02f4ad07f2f1ab078b4f4bfc53820ed0abfd +size 411 diff --git a/public/2023-icon-library/peach/sleep1.png b/public/2023-icon-library/peach/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6e03be6db3f56cd26248d1b127b9e5dd25ffee --- /dev/null +++ b/public/2023-icon-library/peach/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0993adf835a526e0077919179323db44c84431c191515c46fee52c8b60d7ab39 +size 331 diff --git a/public/2023-icon-library/peach/sleep2.png b/public/2023-icon-library/peach/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecfb6014266926a130e4fbfacca39caec62f985 --- /dev/null +++ b/public/2023-icon-library/peach/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442042998b4819103632f5d939a8f1c0b90170228c9438b8743446c3723191d4 +size 321 diff --git a/public/2023-icon-library/peach/srun1.png b/public/2023-icon-library/peach/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bda7c9ba15137e5a958bd0576109b78223cd5fc9 --- /dev/null +++ b/public/2023-icon-library/peach/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636e469819ecd68110441c639d54dedca96edd430498903128e93440efb3ee4a +size 391 diff --git a/public/2023-icon-library/peach/srun2.png b/public/2023-icon-library/peach/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..12eeb3b9e5dd9346f79bf77b24275c5535f4b62c --- /dev/null +++ b/public/2023-icon-library/peach/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bf754ced140eb074792163c30be419cea2b95f829be1bc11780e9564625387 +size 418 diff --git a/public/2023-icon-library/peach/sscratch1.png b/public/2023-icon-library/peach/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5d6386cddb26175af0830cb0dfdfc32e9e6ca4b7 --- /dev/null +++ b/public/2023-icon-library/peach/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3960df77ff0a7056893896c11d4b0948cb60efc1add21f4fec64689fe8e89ec9 +size 390 diff --git a/public/2023-icon-library/peach/sscratch2.png b/public/2023-icon-library/peach/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..22cf585ab0fb235d8b487cbaea582acfc4c18599 --- /dev/null +++ b/public/2023-icon-library/peach/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6560da179725d2fe19420bdc4a444fee7a944ef741d81bc7bcbb85d858840d4d +size 388 diff --git a/public/2023-icon-library/peach/still.png b/public/2023-icon-library/peach/still.png new file mode 100644 index 0000000000000000000000000000000000000000..337b7299e6b9f212d83bd1ae13268becc0aad1b4 --- /dev/null +++ b/public/2023-icon-library/peach/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50272b795ce3a97c877abcb7936da22d4686a339a2106982e602938bd36a98a +size 371 diff --git a/public/2023-icon-library/peach/swrun1.png b/public/2023-icon-library/peach/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6dca768b0bc18139a6fb6e356c35a19c1cbf8258 --- /dev/null +++ b/public/2023-icon-library/peach/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a488aa47bd4e0ac259f3f03eaa2465758d3cc16f26baa8206b159e48bd1d7b6 +size 389 diff --git a/public/2023-icon-library/peach/swrun2.png b/public/2023-icon-library/peach/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9fb8aba51009b4918cf96405ad8b153a894a71 --- /dev/null +++ b/public/2023-icon-library/peach/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d676ecbc74b1a18f32620b231bf72a0c12dfbe3f354d04f4f78c6575e959a4 +size 419 diff --git a/public/2023-icon-library/peach/wash.png b/public/2023-icon-library/peach/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0de2b1e68b5973b0da74103ba37fc701c3f5d8 --- /dev/null +++ b/public/2023-icon-library/peach/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6418f2583bf3093a1cf4c38b63ddfe8397cae85fa7bc8f2d5f6b18baef06b4fc +size 406 diff --git a/public/2023-icon-library/peach/wrun1.png b/public/2023-icon-library/peach/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c456a97156d0d03e4ef6f1142a0d2730ec281d7c --- /dev/null +++ b/public/2023-icon-library/peach/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614d2fb75dc117cbee6cee7faac68c8dac637b8ff057a57a7e95355e52b570bb +size 408 diff --git a/public/2023-icon-library/peach/wrun2.png b/public/2023-icon-library/peach/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..fd41ac5495e3833eab3180c6bfca9463463f253b --- /dev/null +++ b/public/2023-icon-library/peach/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5cc113021930504a6a57230d801af8e02f2a185d4e23895d984afbb412f3788 +size 382 diff --git a/public/2023-icon-library/peach/wscratch1.png b/public/2023-icon-library/peach/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..be1369722eeaaa7693403c37033e340ed4459393 --- /dev/null +++ b/public/2023-icon-library/peach/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbfd748661f003def04598e3245496ea9d7e7e183a9683d892ef0dd11377e74 +size 407 diff --git a/public/2023-icon-library/peach/wscratch2.png b/public/2023-icon-library/peach/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d63b2a75e876005d6c15de9270e6202e40ad2dfb --- /dev/null +++ b/public/2023-icon-library/peach/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48032cc0fd9681ad915815de036326559aebfad32cdc4701f16ababbe8ff27b3 +size 401 diff --git a/public/2023-icon-library/peach/yawn.png b/public/2023-icon-library/peach/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..81c37cfd75b44ecf5ff056d8227f5e6231aa8492 --- /dev/null +++ b/public/2023-icon-library/peach/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f4e2fb5aa7cd97c6f5070d63e23043329c641ace7127194b485264feef313a +size 382 diff --git a/public/2023-icon-library/pink/alert.png b/public/2023-icon-library/pink/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..501c8ed866691d4a149a669affb88d00ecf9653e --- /dev/null +++ b/public/2023-icon-library/pink/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6406d8e5a8fc02fcf140cb776ffc950b6176161081468d1f1978383d029676a +size 416 diff --git a/public/2023-icon-library/pink/erun1.png b/public/2023-icon-library/pink/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a323c83f39a60f76e01a93ed4929428f1dabd135 --- /dev/null +++ b/public/2023-icon-library/pink/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16787be66f833c4b9803ff0908c7c1759488b51f15bf4b163122a37cea3954ee +size 411 diff --git a/public/2023-icon-library/pink/erun2.png b/public/2023-icon-library/pink/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..60efe2766ebc5a9e34cb031ab31f3398df6880b4 --- /dev/null +++ b/public/2023-icon-library/pink/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bee94c9de8751cf02f42c2fb158801f371eee5ecb944ea2db03f6c3e48d045 +size 389 diff --git a/public/2023-icon-library/pink/escratch1.png b/public/2023-icon-library/pink/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..d458f45ce9f529ac9fd242fa997ef4355f354391 --- /dev/null +++ b/public/2023-icon-library/pink/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faae0065ccddeace2b5575d77c6256ecff65b6a10ea2420b023fe8f401ee3c98 +size 398 diff --git a/public/2023-icon-library/pink/escratch2.png b/public/2023-icon-library/pink/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d34af22fc40994dec0f910aa9358f4601b8d6e --- /dev/null +++ b/public/2023-icon-library/pink/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10cfb3355b079b75d1d0029dddf02d470e9fde97b7c023ae1647582ab0fef8e +size 398 diff --git a/public/2023-icon-library/pink/itch1.png b/public/2023-icon-library/pink/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..a25dc6a6210f04815537c5bc8e8f1b0ba4db1fc3 --- /dev/null +++ b/public/2023-icon-library/pink/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e2cc99120a3d387ea216cc3a8a75d47644c369bc494459c6c161f72d67ee5e +size 404 diff --git a/public/2023-icon-library/pink/itch2.png b/public/2023-icon-library/pink/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f531b0abeac67fe328c0db6ae9d5bf1558520f6 --- /dev/null +++ b/public/2023-icon-library/pink/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608f5605701a48d094e60057f76c874572465481896e65093c082cb596289c44 +size 394 diff --git a/public/2023-icon-library/pink/nerun1.png b/public/2023-icon-library/pink/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f1250a5686758183b8118d753563f0abd95061e0 --- /dev/null +++ b/public/2023-icon-library/pink/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257d1745709241dca3a468c05ecfb9331829c5aa243a44875ffad125527da49e +size 399 diff --git a/public/2023-icon-library/pink/nerun2.png b/public/2023-icon-library/pink/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad066e5f136734858e4e08000fb14d73d09b3d58 --- /dev/null +++ b/public/2023-icon-library/pink/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69954122252c1c1e0668c99e47514c9807cc1a777d82afcaed4e161f3ffd68c0 +size 421 diff --git a/public/2023-icon-library/pink/nrun1.png b/public/2023-icon-library/pink/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c875cc6721431937cb4df971a356c8ac80933bdf --- /dev/null +++ b/public/2023-icon-library/pink/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8de394db23f0a58e436cfd8f443c7529aecc624c294f92feb53b9899a3d4682 +size 379 diff --git a/public/2023-icon-library/pink/nrun2.png b/public/2023-icon-library/pink/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4b488530bb52ad8beaf13b6b382180e1740e7101 --- /dev/null +++ b/public/2023-icon-library/pink/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401c40df1aff878d50644cefc75eacf0155cf298e8b2e3aa66fa5c1d0f45f687 +size 427 diff --git a/public/2023-icon-library/pink/nscratch1.png b/public/2023-icon-library/pink/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e83b481738a9d84451343f775578c8a5bd46139 --- /dev/null +++ b/public/2023-icon-library/pink/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3147cb38a5cdf6e604dd66b38ce157ed1f40c4ebca7faa5602b75b6a682872e8 +size 418 diff --git a/public/2023-icon-library/pink/nscratch2.png b/public/2023-icon-library/pink/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..705e5915a0864cf8e8b9220777857ed7fd2dd647 --- /dev/null +++ b/public/2023-icon-library/pink/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc5f4c3afdfe705995c1a5b9e9b4b4d24ede8818305af5e4b4b12e0f1ff5fcf +size 411 diff --git a/public/2023-icon-library/pink/nwrun1.png b/public/2023-icon-library/pink/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..15c020c38c4c6efc3e30edaa6b3f86904b295764 --- /dev/null +++ b/public/2023-icon-library/pink/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3fe1e75ee2828660164175a705163134b2d8ad9e9d5d0910f69aefa890bdf3c +size 398 diff --git a/public/2023-icon-library/pink/nwrun2.png b/public/2023-icon-library/pink/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..97915c20a943a636c58de36f5be03596cbc2e736 --- /dev/null +++ b/public/2023-icon-library/pink/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1014f29747ee5f454e7c86072006c73a40c9a75d62d6ecfae5aba6c39774df7a +size 421 diff --git a/public/2023-icon-library/pink/serun1.png b/public/2023-icon-library/pink/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe5e0d6134bc1bfb3c6951481fe38f7fa3d9cda5 --- /dev/null +++ b/public/2023-icon-library/pink/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5eaa64436056a848458ec12aef36e84e69aed0ab544a9a8fe33c4cbacf66bb +size 391 diff --git a/public/2023-icon-library/pink/serun2.png b/public/2023-icon-library/pink/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..66b7e3639c074d880c498dde907f70a1067e0540 --- /dev/null +++ b/public/2023-icon-library/pink/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f65e27ed304eb2e66d92b4d70f70d639a3f27a760c33c128fea1594d2a57ef7 +size 412 diff --git a/public/2023-icon-library/pink/sleep1.png b/public/2023-icon-library/pink/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..db2fdf0800c9146d16b2c8b80bf8342a1f94206f --- /dev/null +++ b/public/2023-icon-library/pink/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bec84e88764ef4828d2d02e115a6cbd6f603ffeaa47de7d803dea94ab284862 +size 334 diff --git a/public/2023-icon-library/pink/sleep2.png b/public/2023-icon-library/pink/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..d92d6bf1cf848ce0922729b8fa93a04684b857f8 --- /dev/null +++ b/public/2023-icon-library/pink/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374108d3c0583d68c4a12939e3306f27435568d315bb8ca9bec67d0eac0ebaf7 +size 324 diff --git a/public/2023-icon-library/pink/srun1.png b/public/2023-icon-library/pink/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e35d4e00814cdc2c3fe35baa28e82d29903813f1 --- /dev/null +++ b/public/2023-icon-library/pink/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418318066083b7107d6805adf9c5d315ffa7595feed7f62038822636e92c7640 +size 391 diff --git a/public/2023-icon-library/pink/srun2.png b/public/2023-icon-library/pink/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..be8165adff40d3fe55ccf611f7157dae9bff0c59 --- /dev/null +++ b/public/2023-icon-library/pink/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa593ca9d8aae6a6a8ca19d107e0ccc54ee2c29b7204ad2d1e3f5261e327871 +size 419 diff --git a/public/2023-icon-library/pink/sscratch1.png b/public/2023-icon-library/pink/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..266b611c1c8f51adf8bf482717e7f5665c3dd94f --- /dev/null +++ b/public/2023-icon-library/pink/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a282bb5af2e0cc81312695037f2c58b299e2ddf9c70ee715773f2f9b47a3886a +size 391 diff --git a/public/2023-icon-library/pink/sscratch2.png b/public/2023-icon-library/pink/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..999bf6efd99b9d6dcd9cc5cdc8b9587e66232792 --- /dev/null +++ b/public/2023-icon-library/pink/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395166bfc66b54cc82e93a6cccf688b69a55a583538dda7fa19c6da4b2c26eba +size 389 diff --git a/public/2023-icon-library/pink/still.png b/public/2023-icon-library/pink/still.png new file mode 100644 index 0000000000000000000000000000000000000000..2723c6603de6d8dbbf191c7a22e28c25da435a63 --- /dev/null +++ b/public/2023-icon-library/pink/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c6fb4febd79e08a90ff55a15f54ab3fe481dfb5ce89791b3f3d8d63b46b95c +size 373 diff --git a/public/2023-icon-library/pink/swrun1.png b/public/2023-icon-library/pink/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4d6f6611a1994d42e3767db44cbd8d69bbb0fd3 --- /dev/null +++ b/public/2023-icon-library/pink/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015f85b77a29eb9ba3418e731fdf34ffb04c390e1c118eca6fa82850327d381e +size 391 diff --git a/public/2023-icon-library/pink/swrun2.png b/public/2023-icon-library/pink/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d766bdf0d615ad17fb9d3a2180e9ade7018c07d0 --- /dev/null +++ b/public/2023-icon-library/pink/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54cb8f08a969a9cd3dd68f6222a8bd1e2205bb908663724099e8977a329fc54 +size 419 diff --git a/public/2023-icon-library/pink/wash.png b/public/2023-icon-library/pink/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..19f4507ef160eac23cdef13472f171e391de297b --- /dev/null +++ b/public/2023-icon-library/pink/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111666bfd861f1658e76917d67edfbf8cb702c3b4ab2379f5c8832ff00db55cd +size 406 diff --git a/public/2023-icon-library/pink/wrun1.png b/public/2023-icon-library/pink/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..10a4d5794d7d2a7a9f8ab4f5dc48c615f0dfb1b1 --- /dev/null +++ b/public/2023-icon-library/pink/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf9c3efffda1dc4514427e71ce7e11512ee01451fc337b062fbf5206826cf7a +size 408 diff --git a/public/2023-icon-library/pink/wrun2.png b/public/2023-icon-library/pink/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..99af58c1eaecd9f1e6f67e4701a0879d8d1c1db2 --- /dev/null +++ b/public/2023-icon-library/pink/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041c140cb9d29352d427461521917939844d26afc5ff8c206c93340ed7c1f818 +size 382 diff --git a/public/2023-icon-library/pink/wscratch1.png b/public/2023-icon-library/pink/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..cef33a30fa4cf93513be5336724545ef391165c7 --- /dev/null +++ b/public/2023-icon-library/pink/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5773052042df14143b0a911095f7eb19e8f55cc18c918616daa88e49ba68c43e +size 406 diff --git a/public/2023-icon-library/pink/wscratch2.png b/public/2023-icon-library/pink/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a1fcdd4520b385bf6dcad1984e2fa94cb09d35e --- /dev/null +++ b/public/2023-icon-library/pink/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b689b51fd9d910dd0e96a9e5bdd74b2934d2ad4e8acf867503d791d558406722 +size 400 diff --git a/public/2023-icon-library/pink/yawn.png b/public/2023-icon-library/pink/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..cdc5ecddad625c400f16fa30cbb5e42aa650e5b0 --- /dev/null +++ b/public/2023-icon-library/pink/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8bb9b5c4ed88398a29ad004fd1b29e89e38e36b36d6d5fbd19dfcfcd0999cf1 +size 384 diff --git a/public/2023-icon-library/readme.md b/public/2023-icon-library/readme.md new file mode 100644 index 0000000000000000000000000000000000000000..0c3c74d0b822098a13d5b51b9cb732e6eb6e4bea --- /dev/null +++ b/public/2023-icon-library/readme.md @@ -0,0 +1,28 @@ +# Icon library + +This is a collection of Neko variants found in the wild. + +They have been converted from `.ico` and `.gif` into `.png` format. + +Every variant has the following actions. + +- Alert: `alert` +- Run + - North: `nrun1`, `nrun2` + - North-East: `nerun1`, `nerun1` + - East: `erun1`, `erun2` + - South-East: `serun1`, `serun2` + - South: `srun1`, `srun2` + - South-West: `swrun1`, `swrun2` + - West: `wrun1`, `wrun2` + - North-West: `nwrun1`, `nwrun2` +- Scratch + - North: `nscratch1`, `nscratch2` + - East: `escratch1`, `escratch2` + - West: `wscratch1`, `wscratch2` + - South: `sscratch1`, `sscratch2` +- Wash: `wash` +- Itch: `itch1`, `itch2` +- Still: `still` +- Yawn: `yawn` +- Sleep: `sleep1`, `sleep2` diff --git a/public/2023-icon-library/robot/alert.png b/public/2023-icon-library/robot/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..4ae39a5154e129958e57b8ff6089a9f78fd50f0c --- /dev/null +++ b/public/2023-icon-library/robot/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22215b501e05515eb1669047e01dad6c83d420113acd1c74e25cfbfe67fc764 +size 399 diff --git a/public/2023-icon-library/robot/erun1.png b/public/2023-icon-library/robot/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..49830d0e1eb9f4a1c6a7d78fb10cb50c5f9ea42c --- /dev/null +++ b/public/2023-icon-library/robot/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00eaf057042e3a428e7defada51cd9bdb88da849d2fd5004e7e5a749ec759a9 +size 323 diff --git a/public/2023-icon-library/robot/erun2.png b/public/2023-icon-library/robot/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f823984eeb68c26a36acb320fa8765cd42e68a6 --- /dev/null +++ b/public/2023-icon-library/robot/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7787cfa4cb71d2443e6dd88351ad63c9cf9bdf730547b234584f6faa22520b4d +size 310 diff --git a/public/2023-icon-library/robot/escratch1.png b/public/2023-icon-library/robot/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..61196b2f5e10a629b96b64bb648c1db71a7d34d7 --- /dev/null +++ b/public/2023-icon-library/robot/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3993af33b360b7738989434e2671925d016d2e9db008d0f03fe7bc4dfbb71077 +size 309 diff --git a/public/2023-icon-library/robot/escratch2.png b/public/2023-icon-library/robot/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..61a14838a7f7fe8cf810ffc87f755aa05eeea3b7 --- /dev/null +++ b/public/2023-icon-library/robot/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a185e61c759ec17eb6e3fa841bb8eca92cd814545803c7f64f920ed76e69a33d +size 293 diff --git a/public/2023-icon-library/robot/itch1.png b/public/2023-icon-library/robot/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..95666fa498435e5074c7367034c67a15f5be0087 --- /dev/null +++ b/public/2023-icon-library/robot/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62dbd9b2af3d3fa40d430685277b472cfadb443329627656a36c49ef4356efb +size 314 diff --git a/public/2023-icon-library/robot/itch2.png b/public/2023-icon-library/robot/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..196693adcb9fd45849dc32c91c7e192ae9d913aa --- /dev/null +++ b/public/2023-icon-library/robot/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d346ff957e3f09fc5e3e3eb80974031c40d5f45742fcc6fea235f848fa5ec179 +size 300 diff --git a/public/2023-icon-library/robot/nerun1.png b/public/2023-icon-library/robot/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac656dceccc42878af3ba606c650a2b4821afb7f --- /dev/null +++ b/public/2023-icon-library/robot/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dea347b9160caba3dc7d9b5d9d6f8bcefe392c3d596f95776b4aed6d51cff0 +size 302 diff --git a/public/2023-icon-library/robot/nerun2.png b/public/2023-icon-library/robot/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..698621268ab2f293586ecb1cd463cff946e55348 --- /dev/null +++ b/public/2023-icon-library/robot/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5633253eb885cda2b01e1997871f855c2b9a6c71507a485641317376b08427a +size 333 diff --git a/public/2023-icon-library/robot/nrun1.png b/public/2023-icon-library/robot/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..795f4109d935debfc6d963b552364f33e2c390ef --- /dev/null +++ b/public/2023-icon-library/robot/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80964e3d967c4f7b3fa42a466eb1e313d8d8855ea801a3662cfea72a4d72446 +size 289 diff --git a/public/2023-icon-library/robot/nrun2.png b/public/2023-icon-library/robot/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5d306221fbf5d9a6e7b015a88cea5940fbfcebe0 --- /dev/null +++ b/public/2023-icon-library/robot/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc88b4d9cae4ef8e6b7dc5166f0515820534e6e8c65e6e14fe4405d696bcce0 +size 326 diff --git a/public/2023-icon-library/robot/nscratch1.png b/public/2023-icon-library/robot/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..aa28d6801e2601c7a6121fff8185c66f15849e06 --- /dev/null +++ b/public/2023-icon-library/robot/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01aa9bf7cda6cb0dcb92b9706deafd06cf7f40db038f093c5254b24bc74a903 +size 352 diff --git a/public/2023-icon-library/robot/nscratch2.png b/public/2023-icon-library/robot/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e1432c016208a6a7967221c1f183ac01efa80ad5 --- /dev/null +++ b/public/2023-icon-library/robot/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7fa6f87b62a1edd9e823eb3bf4a001f479725dfdfa414cb9bc76901dadd9c5 +size 347 diff --git a/public/2023-icon-library/robot/nwrun1.png b/public/2023-icon-library/robot/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..446a1adf21e24525195b1db365d4d1e72bcc4e22 --- /dev/null +++ b/public/2023-icon-library/robot/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3c6b08f466fb614b8c39a3d7b3fafbd2dc727dc778780b7d80a13719c43d1f +size 289 diff --git a/public/2023-icon-library/robot/nwrun2.png b/public/2023-icon-library/robot/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..29a03415dac458287acf91e988f4fa771d44b293 --- /dev/null +++ b/public/2023-icon-library/robot/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cc4073f5fc6b3c198baa180ea45963b44a1ad66eddb20a5f35af8cc71937d2 +size 328 diff --git a/public/2023-icon-library/robot/serun1.png b/public/2023-icon-library/robot/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b141c2a8bcfe659c2a1dbcfe6136c791947c5698 --- /dev/null +++ b/public/2023-icon-library/robot/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca22f97d1147769f5dbc8cdcbe5007c48a25ad73f47664532276fa6e227a7a8 +size 323 diff --git a/public/2023-icon-library/robot/serun2.png b/public/2023-icon-library/robot/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2976b32da0d0634b34a522d6f4be09341313c7be --- /dev/null +++ b/public/2023-icon-library/robot/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4270229f3a9a7e98d703a7cadab5e1b20f17f96e99919d1fd97dfb5a101880ad +size 318 diff --git a/public/2023-icon-library/robot/sleep1.png b/public/2023-icon-library/robot/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..01d5c88de11fa04ca7b8474c2c5b6aee742d616d --- /dev/null +++ b/public/2023-icon-library/robot/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aecb8b33898d3ec20e6460674f25351f0d7dd7914326c94af4f382ec3d11175 +size 261 diff --git a/public/2023-icon-library/robot/sleep2.png b/public/2023-icon-library/robot/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..0179fff6d345bd66e735548dc03de77fc00b621f --- /dev/null +++ b/public/2023-icon-library/robot/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb85fd165c247d4c2fa9c1988e0b6653dda697829f7c51b303df4aa916658aeb +size 258 diff --git a/public/2023-icon-library/robot/srun1.png b/public/2023-icon-library/robot/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..283ba8c4ad13ed426010005279d86a286aaa1bde --- /dev/null +++ b/public/2023-icon-library/robot/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c5a0dce159cc871a4477e0ac8edd32d2b30b11a2f51341a08549df208ac110 +size 309 diff --git a/public/2023-icon-library/robot/srun2.png b/public/2023-icon-library/robot/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ba945e9d47eb3c10b4fe91b8298db4692ea5a13d --- /dev/null +++ b/public/2023-icon-library/robot/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3160d2a565ed273ad77675f27683d0adb663a1f7862ab3f4ac6f1ee95e9acc9b +size 319 diff --git a/public/2023-icon-library/robot/sscratch1.png b/public/2023-icon-library/robot/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4a8b887f08b19e2f950f79b784bf69a772e52d --- /dev/null +++ b/public/2023-icon-library/robot/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad560452733ca671e8bd60f6950758a79f23f11293fea51cb6102975b1d369b +size 313 diff --git a/public/2023-icon-library/robot/sscratch2.png b/public/2023-icon-library/robot/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..15727e6cc4627d3b1941cca3cd1f606e910ddeb8 --- /dev/null +++ b/public/2023-icon-library/robot/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b07fa458ff272d09a381fc02441e88a8381e4e18cea8cb904eb2a5c4851a8d1 +size 309 diff --git a/public/2023-icon-library/robot/still.png b/public/2023-icon-library/robot/still.png new file mode 100644 index 0000000000000000000000000000000000000000..01287b0db9f5f401de32c6ef646881633b4038e2 --- /dev/null +++ b/public/2023-icon-library/robot/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe27b7ef34f546ff9c7dfd3cdd732c76f51aa167ed1db35dcbba8c76c194ce31 +size 328 diff --git a/public/2023-icon-library/robot/swrun1.png b/public/2023-icon-library/robot/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e416eaa457767e1c60cd19a71a3a93c4eef25c --- /dev/null +++ b/public/2023-icon-library/robot/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8879344cf4bf9bb28ab93c55d31acecfaf2964ddfac7bd6a16b31c4424805bb6 +size 293 diff --git a/public/2023-icon-library/robot/swrun2.png b/public/2023-icon-library/robot/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..43fe9d4d8ac143127800270c25aad0c39feb4eda --- /dev/null +++ b/public/2023-icon-library/robot/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96d31509eea195f730fb930c2ae0d8d9c5f11576e6588bfb411bdd24e61e01c +size 323 diff --git a/public/2023-icon-library/robot/wash.png b/public/2023-icon-library/robot/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..a0469b4b385e33985a28b440ce8da86a25511334 --- /dev/null +++ b/public/2023-icon-library/robot/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51746a6153a363a10ec570d229f037a9d9a315ddc052abd10a00a8e3497c0bab +size 324 diff --git a/public/2023-icon-library/robot/wrun1.png b/public/2023-icon-library/robot/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1232491d07ac29b5c9fc0e2cb432223756ff0160 --- /dev/null +++ b/public/2023-icon-library/robot/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b536cc12abb41c28df7fca9e9589e00e405ca5eeb4d6ca59cae1f320a1655e +size 317 diff --git a/public/2023-icon-library/robot/wrun2.png b/public/2023-icon-library/robot/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..306087803b86023a707c8e97e13907e0eab7bb6f --- /dev/null +++ b/public/2023-icon-library/robot/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630596c08bbf2bc01b04ec4c6e9226757900c1e949370bd0c67640558d2669d2 +size 301 diff --git a/public/2023-icon-library/robot/wscratch1.png b/public/2023-icon-library/robot/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..43c601171412baa777bb4f94b2916e8c0af3f979 --- /dev/null +++ b/public/2023-icon-library/robot/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58def9d8250f4811799e26c918c0204a8c93e7ea5b3bc9ffec5df2733d6a821c +size 306 diff --git a/public/2023-icon-library/robot/wscratch2.png b/public/2023-icon-library/robot/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1bd5130f830c250c6076c7829b6ffb4b6aef48 --- /dev/null +++ b/public/2023-icon-library/robot/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0767e7c93b9d1d9e3bef84ba462a840d60471b80ab52e81305657457832a6f5 +size 292 diff --git a/public/2023-icon-library/robot/yawn.png b/public/2023-icon-library/robot/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..b5274a2407595d40704d77ef88db1358f580fd05 --- /dev/null +++ b/public/2023-icon-library/robot/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fdf3ef6b5377c1d89b8b7e63cd644eab80c86970b0f7af784735bc6db7de4b +size 321 diff --git a/public/2023-icon-library/silversky/alert.png b/public/2023-icon-library/silversky/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..87180967a13aa36ae774be45a9977d9eed2de56f --- /dev/null +++ b/public/2023-icon-library/silversky/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6cebdea942cd792a0e47064cc35bdbee3f0bedc60461470c919b84476f62a4 +size 337 diff --git a/public/2023-icon-library/silversky/erun1.png b/public/2023-icon-library/silversky/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e8cd9098b2abc2a703c3971588fc11f4b1671942 --- /dev/null +++ b/public/2023-icon-library/silversky/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8858af34fae110382af9a48922dcc94550fc927e98af276d87bd8c7844dfc33 +size 306 diff --git a/public/2023-icon-library/silversky/erun2.png b/public/2023-icon-library/silversky/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..51ebf51a405287e598a7323e5d05ed1742cef5c7 --- /dev/null +++ b/public/2023-icon-library/silversky/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915db4f57f27a44f7403f2e1f814f1c8d3ea8dac275cec8d183d8a91b6992064 +size 311 diff --git a/public/2023-icon-library/silversky/escratch1.png b/public/2023-icon-library/silversky/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4be437c5f7a65769073e6c8bc1abff87fc6fb84f --- /dev/null +++ b/public/2023-icon-library/silversky/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cca0eed42e797284dccfbb9d159d10ac883952fd3ca5e82c1de83de4c72eb64 +size 315 diff --git a/public/2023-icon-library/silversky/escratch2.png b/public/2023-icon-library/silversky/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a29955a7c4f48d60f5e79ee9ffacfc35718ae30e --- /dev/null +++ b/public/2023-icon-library/silversky/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98800183fd0e1aef7015a9d8db417025091430eb1b7f6a12e3e8026f1498ec89 +size 299 diff --git a/public/2023-icon-library/silversky/itch1.png b/public/2023-icon-library/silversky/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0a6f3263229dcda81cd41cff96d2220dcb5fc55c --- /dev/null +++ b/public/2023-icon-library/silversky/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d94d42a142bfc3b95252e11647af619058453b3230e02243cf11d174b83dee6 +size 319 diff --git a/public/2023-icon-library/silversky/itch2.png b/public/2023-icon-library/silversky/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2295a745a4d3eeb4c7a2298b9551610097a9257f --- /dev/null +++ b/public/2023-icon-library/silversky/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d56b4986f7efb6f509dd23a090ebff648589162f0fa7ac7ebb4892aaab0d8b4 +size 304 diff --git a/public/2023-icon-library/silversky/nerun1.png b/public/2023-icon-library/silversky/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5028fcafd41c8ce8cd246e9f3e6e4d71c9b358b4 --- /dev/null +++ b/public/2023-icon-library/silversky/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bde0468ad954a5f3638280b3ca72ec16a6d7b0dfc0ea392837f460e90811458 +size 301 diff --git a/public/2023-icon-library/silversky/nerun2.png b/public/2023-icon-library/silversky/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7aa8e110e6c523ced6aadb5dcb0786131acb08b6 --- /dev/null +++ b/public/2023-icon-library/silversky/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5fd14ca8ac02c016cb8bfd769b4a69d81b634a5fbc2aba2ee7d0e0e9a3dfbb +size 329 diff --git a/public/2023-icon-library/silversky/nrun1.png b/public/2023-icon-library/silversky/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bfc6c04e2ad26c36763ad902ef90474c44386699 --- /dev/null +++ b/public/2023-icon-library/silversky/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8245a0abaad1bf0d70060edfd8a93c0fe74c4580bff271c664cb91407814cd3 +size 263 diff --git a/public/2023-icon-library/silversky/nrun2.png b/public/2023-icon-library/silversky/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f6dda18365929fc273c82978592a87b7260a821e --- /dev/null +++ b/public/2023-icon-library/silversky/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b181016f2c01777375a6fb7d665fb72cf94ab20244b21f93452968d3af2e7f84 +size 310 diff --git a/public/2023-icon-library/silversky/nscratch1.png b/public/2023-icon-library/silversky/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..0373c4ae1c1a513e5094a4edb2613e3e3b80546d --- /dev/null +++ b/public/2023-icon-library/silversky/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e65bd35e5053ac674a7b1c6434b1f271544a5d60d23672a76ebf767a9bf6ebb +size 318 diff --git a/public/2023-icon-library/silversky/nscratch2.png b/public/2023-icon-library/silversky/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..2bceeda3c893af99b187c40316c85a3d1714b7e4 --- /dev/null +++ b/public/2023-icon-library/silversky/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7774ff86356822a28a142ed3140d50bb63126d1c2b20cd3a6ae3dfacab50ae1c +size 306 diff --git a/public/2023-icon-library/silversky/nwrun1.png b/public/2023-icon-library/silversky/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ab85c1711ac56c605bd1e27f39651fb0aab74705 --- /dev/null +++ b/public/2023-icon-library/silversky/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f335b71a01f85a2dfad4166c966889154532d81cc5cf168e401af96e76d7f8 +size 303 diff --git a/public/2023-icon-library/silversky/nwrun2.png b/public/2023-icon-library/silversky/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..8ec3c6c200406a9f0fa4f8b9f61d79e9304474d3 --- /dev/null +++ b/public/2023-icon-library/silversky/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050e9c2e5166961f55b2c7456bfde500d451199596c14e30344d1d1265148b39 +size 320 diff --git a/public/2023-icon-library/silversky/serun1.png b/public/2023-icon-library/silversky/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..9da4445c1ecc76abdf30e3aaafb597385f7d802a --- /dev/null +++ b/public/2023-icon-library/silversky/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1643c87d981a6540bbcd25a36e3dfd1ce6da97fa995e9fc270d2979b5a23c545 +size 315 diff --git a/public/2023-icon-library/silversky/serun2.png b/public/2023-icon-library/silversky/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e09acd66a2692ed50d70cf61be8720e6ec7aa3a --- /dev/null +++ b/public/2023-icon-library/silversky/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46c4f798db8b75433fda62458036622df89463b13951dcf3b8643b317ce4cf0 +size 323 diff --git a/public/2023-icon-library/silversky/sleep1.png b/public/2023-icon-library/silversky/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..13f54b738f4b4b65dee1c30eb1ef11aed8414f4a --- /dev/null +++ b/public/2023-icon-library/silversky/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b3d96063369ee7f08b93479982c8237b0ee6e6444a1fc8c937b093e92318d6 +size 311 diff --git a/public/2023-icon-library/silversky/sleep2.png b/public/2023-icon-library/silversky/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..0e593ae1830d1b96d582ecbd1632f942513b700d --- /dev/null +++ b/public/2023-icon-library/silversky/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17cf2c7e675939cde764469b9fe9049798f17620dddac8ef03e43a5e644b2e5e +size 321 diff --git a/public/2023-icon-library/silversky/srun1.png b/public/2023-icon-library/silversky/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ddf9bee0afdcd6702269607bc67890eeff879312 --- /dev/null +++ b/public/2023-icon-library/silversky/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2278f7971fd2b76adb9276807399e8cec457a8867029ec37f0fc37cb59c0c9e +size 305 diff --git a/public/2023-icon-library/silversky/srun2.png b/public/2023-icon-library/silversky/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4693a4ccfdc53c5b132769f8d3c598bf54da93e7 --- /dev/null +++ b/public/2023-icon-library/silversky/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76922bb37d057a44e6ab27b560f229bca8a8979a7170b9abe935f8f027df42f5 +size 323 diff --git a/public/2023-icon-library/silversky/sscratch1.png b/public/2023-icon-library/silversky/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6278ff7e4b248bcdbd59b620c9b693403fcdbf19 --- /dev/null +++ b/public/2023-icon-library/silversky/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e815046dd154f89d1e5d972a274645b15f659c1ae79410ef073097c966b3103d +size 304 diff --git a/public/2023-icon-library/silversky/sscratch2.png b/public/2023-icon-library/silversky/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd7fd3f0b53acf840c0dad643dd1f6a9b0e01b1 --- /dev/null +++ b/public/2023-icon-library/silversky/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0057bfe84bc5702e3a5dcbedd22fdabceacd4aeb5df43eb55f0f431adf40837 +size 301 diff --git a/public/2023-icon-library/silversky/still.png b/public/2023-icon-library/silversky/still.png new file mode 100644 index 0000000000000000000000000000000000000000..46e81290aed9598953aecf0069b9b311a216c6d8 --- /dev/null +++ b/public/2023-icon-library/silversky/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2e8900db10cd96e84212aeee74d6b3a2f50c528a455642a9daab1bc0775789 +size 295 diff --git a/public/2023-icon-library/silversky/swrun1.png b/public/2023-icon-library/silversky/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ae208a696c8c5ae0030b1da08173ef014145cfb2 --- /dev/null +++ b/public/2023-icon-library/silversky/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c644421b6f97e26094f76c6f2b835451b6882e2dfc7c8b8c41d4eb1bf9fd10c9 +size 299 diff --git a/public/2023-icon-library/silversky/swrun2.png b/public/2023-icon-library/silversky/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..813bc7c830a33f6e48ff95a03fb7f4647fd481b3 --- /dev/null +++ b/public/2023-icon-library/silversky/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910007852461814afd8dc7868c63fcbf51e092994b4ae430bf6571371b92f6d2 +size 332 diff --git a/public/2023-icon-library/silversky/wash.png b/public/2023-icon-library/silversky/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..32e0d975acae2e770bec64097588190691e1ff05 --- /dev/null +++ b/public/2023-icon-library/silversky/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ca204fe2dc2dd2f56b22d3c0525f3513f169418f8479e4a6515b06e1274e58 +size 321 diff --git a/public/2023-icon-library/silversky/wrun1.png b/public/2023-icon-library/silversky/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa585af96ecaf24dd2409ce87eacdc746eb3a54 --- /dev/null +++ b/public/2023-icon-library/silversky/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9adb2f2183befa37e9b04658140678b7c5044ddd4757de0375ea80510b861d74 +size 308 diff --git a/public/2023-icon-library/silversky/wrun2.png b/public/2023-icon-library/silversky/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..2e60a6f9485550d516caefc729d49374b7d62072 --- /dev/null +++ b/public/2023-icon-library/silversky/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e895fdc8f3d5d718cb6334dd450bd0811bb5f6bd5e1ad6a5966936e3ad0fae3 +size 312 diff --git a/public/2023-icon-library/silversky/wscratch1.png b/public/2023-icon-library/silversky/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4df30596a33ae76aefa8932557d36c67555b41f9 --- /dev/null +++ b/public/2023-icon-library/silversky/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f099bcbc8c6c4be26259dccb35979c45cdf4245663a08563bbf7811d66387c47 +size 317 diff --git a/public/2023-icon-library/silversky/wscratch2.png b/public/2023-icon-library/silversky/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7a8a5542484529c5a59be70ba750affa15f0d790 --- /dev/null +++ b/public/2023-icon-library/silversky/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b7f26ac526cc69c0a37ca50b25dda612215ab0454e30f26ea0ed208fed4e47 +size 300 diff --git a/public/2023-icon-library/silversky/yawn.png b/public/2023-icon-library/silversky/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..218dec8a9219172d1c244be6284dc9398b830bc5 --- /dev/null +++ b/public/2023-icon-library/silversky/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1d0eaa7fcf31130e5ca62dab09d0d5b27ddc0ea58b5522fc1a3d3e5fa2d13d +size 312 diff --git a/public/2023-icon-library/socks/alert.png b/public/2023-icon-library/socks/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..7468d7a355b74408405bf2566818d6283eac6be6 --- /dev/null +++ b/public/2023-icon-library/socks/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241f56927f098a60402d5b87de60e33b8268f023804c43ed1d8ab55bc67e0cfa +size 403 diff --git a/public/2023-icon-library/socks/erun1.png b/public/2023-icon-library/socks/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cc176be0d2d4f1c57da6f5df59cd2dad08b79e --- /dev/null +++ b/public/2023-icon-library/socks/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce5b8b866162120f71045c16e83ba5542738fdc05eaa184706f9325b481b511 +size 372 diff --git a/public/2023-icon-library/socks/erun2.png b/public/2023-icon-library/socks/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb4984355ba7fecaf70127dc2eb300936454ade --- /dev/null +++ b/public/2023-icon-library/socks/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7400963a147e9417d9c58e7de523a4a0725ba5b3469ec64c2ce80979ae164bdd +size 340 diff --git a/public/2023-icon-library/socks/escratch1.png b/public/2023-icon-library/socks/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..ad371dfd957309d6406a7a1033b43a91143f8550 --- /dev/null +++ b/public/2023-icon-library/socks/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c815e15557f5985d24445614e6364b2111436fe8e59529d51ad49bd19fe7ea7 +size 367 diff --git a/public/2023-icon-library/socks/escratch2.png b/public/2023-icon-library/socks/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6310f1e8f8081ccde86a7ab40a68ee40e7f471a8 --- /dev/null +++ b/public/2023-icon-library/socks/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8946a9e81a543c405b64487104a141c23b170623b36e80b6b68e159c27a2fa9c +size 334 diff --git a/public/2023-icon-library/socks/itch1.png b/public/2023-icon-library/socks/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..334dc788733e0c1f4f0eb514e52303f4a34bd98c --- /dev/null +++ b/public/2023-icon-library/socks/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e8034fafab1e2fb5d9036623cea2ad48943b8898ea9eb5f3f0e1cc10edfc12 +size 389 diff --git a/public/2023-icon-library/socks/itch2.png b/public/2023-icon-library/socks/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..75ea71415d352327917eb1ec4c8f41b2f4281ca7 --- /dev/null +++ b/public/2023-icon-library/socks/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0e0f5d10306afc2852ad24e056525e85e1addf4116e7655b16988368dd7394 +size 364 diff --git a/public/2023-icon-library/socks/nerun1.png b/public/2023-icon-library/socks/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1e2900d194f5fbbc063f008dac5319e008bbbf --- /dev/null +++ b/public/2023-icon-library/socks/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfb0c3038be6680288a78483c98b7447b5adf10047c17e8762d1941e19ae837 +size 348 diff --git a/public/2023-icon-library/socks/nerun2.png b/public/2023-icon-library/socks/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e983af06eed635fdb5748fe03b2927294e491a --- /dev/null +++ b/public/2023-icon-library/socks/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047c7fe3db6ad812c565c69570e1e4375934faaa8b228185bf687efc8e39717e +size 349 diff --git a/public/2023-icon-library/socks/nrun1.png b/public/2023-icon-library/socks/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..65d163998d22699f4b0e58bb0158de65f07225f7 --- /dev/null +++ b/public/2023-icon-library/socks/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b6abf523bb276c300222060530d89b99ed313649bdf7b21e933d2f3ca01c79 +size 287 diff --git a/public/2023-icon-library/socks/nrun2.png b/public/2023-icon-library/socks/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..18018a56978ef5ef4c087666e7d3bb3c678c120d --- /dev/null +++ b/public/2023-icon-library/socks/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a58f5a9c575dae18c552990ca94182ffbd0fe18dc414bcce01ed8dc5a899977 +size 430 diff --git a/public/2023-icon-library/socks/nscratch1.png b/public/2023-icon-library/socks/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..36fe7326ebf43f2d7ea873d84f05a6cad7136033 --- /dev/null +++ b/public/2023-icon-library/socks/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dee5dd68ac20b208afffbcfb5f8a554b86fdff650d813be275e1ec773589d67 +size 373 diff --git a/public/2023-icon-library/socks/nscratch2.png b/public/2023-icon-library/socks/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..632bb9477259e4c0a6517cea9828d291c8d338d5 --- /dev/null +++ b/public/2023-icon-library/socks/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781c52f0a856fdd0c72f9da4d5b1a15e4e8cfd14c0d6133a154735042e405413 +size 337 diff --git a/public/2023-icon-library/socks/nwrun1.png b/public/2023-icon-library/socks/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..06bd5545bd1983440742e1a6a9ca48828d48f3e4 --- /dev/null +++ b/public/2023-icon-library/socks/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24fb012a5fe6b0700b4356d600c38eee3e81a8d56abd2498234f8baa3dd4dd9c +size 342 diff --git a/public/2023-icon-library/socks/nwrun2.png b/public/2023-icon-library/socks/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c11a7e4f800336d7e3afe0c1d809eb1c2f5d811b --- /dev/null +++ b/public/2023-icon-library/socks/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97732d94373758aec3eb7954d98cc741057bb0bc243fc9c9919b1f0b1cc0a90 +size 352 diff --git a/public/2023-icon-library/socks/serun1.png b/public/2023-icon-library/socks/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a007714e31d95741b23ee5e58cf1661362527f38 --- /dev/null +++ b/public/2023-icon-library/socks/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b7b1b7cbc0bf1f64bf455b449d2e77d09fde5bd27ee856d57db4546406c552 +size 329 diff --git a/public/2023-icon-library/socks/serun2.png b/public/2023-icon-library/socks/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5dc69be9a164fc40ad2b7724aa0c865c48aef62f --- /dev/null +++ b/public/2023-icon-library/socks/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5430cc6d6ce9fd3d6ce94e5ed0e77259464ce91771ac17fc6fe1be2a9da5360 +size 377 diff --git a/public/2023-icon-library/socks/sleep1.png b/public/2023-icon-library/socks/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..90f5329699ead5e93656c187be8a3bd024b9c984 --- /dev/null +++ b/public/2023-icon-library/socks/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8266d24da97c06229b3d1c358c7a1276204b88a2e0b56beb68f4639022c047a +size 316 diff --git a/public/2023-icon-library/socks/sleep2.png b/public/2023-icon-library/socks/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..39f791da5d9cebf73eb19727e3d0eb43853610d9 --- /dev/null +++ b/public/2023-icon-library/socks/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65a786e167b66a020c10d442949ce02764c1e787456c146470162e0bd644a79 +size 309 diff --git a/public/2023-icon-library/socks/srun1.png b/public/2023-icon-library/socks/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f3dddefaea06edc62eb44c94311909af2a2955 --- /dev/null +++ b/public/2023-icon-library/socks/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb28a2286281c7db3105c527f7f4a8150611405d29aefc313d1ff4cda7d22cba +size 384 diff --git a/public/2023-icon-library/socks/srun2.png b/public/2023-icon-library/socks/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4dc4b609e6a349b80b5cf4f8154c332b3f4de852 --- /dev/null +++ b/public/2023-icon-library/socks/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76536ed7c39726a13be2f5c760c899fc542a6d82248944e7b7a8ec9a082cc73 +size 376 diff --git a/public/2023-icon-library/socks/sscratch1.png b/public/2023-icon-library/socks/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe869dbce15239732c662ed271aa17fd73a5a31a --- /dev/null +++ b/public/2023-icon-library/socks/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ab31b231cce397c79e879267004476f69e1a7e8421ce82e473aeaec173d1e9 +size 370 diff --git a/public/2023-icon-library/socks/sscratch2.png b/public/2023-icon-library/socks/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b36fda6c6cf0dc316a1c24c17487e35a90a7b6 --- /dev/null +++ b/public/2023-icon-library/socks/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbea3aa0ceff500e532110f05bf3f8b938f7079eaee1e6be1dd0ea1aad39e26e +size 339 diff --git a/public/2023-icon-library/socks/still.png b/public/2023-icon-library/socks/still.png new file mode 100644 index 0000000000000000000000000000000000000000..9802c83f76197a37949f5ee713b5d46175eeabb0 --- /dev/null +++ b/public/2023-icon-library/socks/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56aa058ca7f6c2f1fec73a0156df0c88dda6cfbaea7ed556f2a2dbd5456a913 +size 402 diff --git a/public/2023-icon-library/socks/swrun1.png b/public/2023-icon-library/socks/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ea418a1fa298ca5b2a6506893355e2ba7b7a5c --- /dev/null +++ b/public/2023-icon-library/socks/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e04a48b1265e948e29aa52f963fcd50503225f78fe2e15f8381afe884674999 +size 306 diff --git a/public/2023-icon-library/socks/swrun2.png b/public/2023-icon-library/socks/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e2645398d2ff7137b245c38966053e3b143098b6 --- /dev/null +++ b/public/2023-icon-library/socks/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e375c7338fc89b1d3d7f7dbc9b63afae9073cd2fbd5b0b57aa2fe16cf9e9796 +size 324 diff --git a/public/2023-icon-library/socks/wash.png b/public/2023-icon-library/socks/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1916002de88c85846dacd4b9a88a11201efc08 --- /dev/null +++ b/public/2023-icon-library/socks/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b681d9604c8054c75c67f99a62e7b366a646843b82402b968b677cfe70a9aad2 +size 375 diff --git a/public/2023-icon-library/socks/wrun1.png b/public/2023-icon-library/socks/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b619fd91d20c97ad8d427aa23539f72d8736fcbf --- /dev/null +++ b/public/2023-icon-library/socks/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974ffc7bff72c19134a67c436533ca49b881820c468483f3ab196db6a9a74893 +size 323 diff --git a/public/2023-icon-library/socks/wrun2.png b/public/2023-icon-library/socks/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5440b8a6a24808fe9e627ffaf04c2394d8eff7e7 --- /dev/null +++ b/public/2023-icon-library/socks/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0073bd6d0f77dca3f11bb2ec47df195c2b79f0273b5ceba1786f452a5988b8f0 +size 311 diff --git a/public/2023-icon-library/socks/wscratch1.png b/public/2023-icon-library/socks/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..52d10e2e6c64ba6da239769a971f8b03e8c57d18 --- /dev/null +++ b/public/2023-icon-library/socks/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67a59f0b1e274f61376eb56d887524ef2801a90dd5f81abc6cb151c26ed8d02 +size 301 diff --git a/public/2023-icon-library/socks/wscratch2.png b/public/2023-icon-library/socks/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..09626c0a54a36fa837d27cd0f11acce291484b6f --- /dev/null +++ b/public/2023-icon-library/socks/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04c399165a030b21f18eb47bb2ccaaee2a9aec194142afc7705b6f377f87c9d +size 291 diff --git a/public/2023-icon-library/socks/yawn.png b/public/2023-icon-library/socks/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..f4d63f332551dffb929101d7d4cdfd3a23bafb59 --- /dev/null +++ b/public/2023-icon-library/socks/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e37f07491b1239944f345dc2af9db78f71503167998f54581e8084b568d37a +size 325 diff --git a/public/2023-icon-library/spirit/alert.png b/public/2023-icon-library/spirit/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..648363c6f3975a5b86c846be7a42dac0a3d3f334 --- /dev/null +++ b/public/2023-icon-library/spirit/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88407ce9b7aec20a73894d37f18277fc5b49077a97cda472e0d9ff31f47b4599 +size 349 diff --git a/public/2023-icon-library/spirit/erun1.png b/public/2023-icon-library/spirit/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..248d33e2a3f666b0e53d3ac9270a2d3ab2d1610d --- /dev/null +++ b/public/2023-icon-library/spirit/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51a5975cea8205c76b2f118b013be2e35ff6b2eb77d5af024867717e941d25f +size 320 diff --git a/public/2023-icon-library/spirit/erun2.png b/public/2023-icon-library/spirit/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b9ba1c99ce6642e4b25fa4a3acbcc5f75aa1069 --- /dev/null +++ b/public/2023-icon-library/spirit/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542663b1b86e5e7c31bc5f623762ccb3b29a644d9d96cb6c2a842cdc45b695f2 +size 309 diff --git a/public/2023-icon-library/spirit/escratch1.png b/public/2023-icon-library/spirit/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c395ece3ed8a0bf6a2d160f0a634ed9254f8e2b9 --- /dev/null +++ b/public/2023-icon-library/spirit/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee86605f0a3f2fe428e60bfc9d4f679e550a8870936b6a459b92ff697a2d52bd +size 309 diff --git a/public/2023-icon-library/spirit/escratch2.png b/public/2023-icon-library/spirit/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..6239f44689c266a00dd172caacef3819470616c8 --- /dev/null +++ b/public/2023-icon-library/spirit/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7bcdc918c48db6dba04f8d723b3aa092a51d03a9edaad3d24c43e15cc0176 +size 296 diff --git a/public/2023-icon-library/spirit/itch1.png b/public/2023-icon-library/spirit/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca1641b5298a86876343c8ad7775cde72ce0fb8 --- /dev/null +++ b/public/2023-icon-library/spirit/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ab987b6ffe117a78bae2debefe3f91bb772184f9932c25e20afafe22463bd7 +size 334 diff --git a/public/2023-icon-library/spirit/itch2.png b/public/2023-icon-library/spirit/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..fd8659abf084f8fcf200737e1a1ff1e169c0624c --- /dev/null +++ b/public/2023-icon-library/spirit/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb27a80abe31353bc1e6398f2d3b14f7311e81701d0a8f6bcd90fe98abae0ae4 +size 327 diff --git a/public/2023-icon-library/spirit/nerun1.png b/public/2023-icon-library/spirit/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5b83374afd2bdc9289a90ceeedfb32bfb8a39f1c --- /dev/null +++ b/public/2023-icon-library/spirit/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3602b5a4e975065801a32548a63deb153b60864db0e4fdc818c62283be69300 +size 305 diff --git a/public/2023-icon-library/spirit/nerun2.png b/public/2023-icon-library/spirit/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d76170fb6a6a23c38b8bfce677de16f34aaa03be --- /dev/null +++ b/public/2023-icon-library/spirit/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffa0878c35171c7f67c5566efd7edd85bbbdc548dedae9d8ca07157a6964005 +size 339 diff --git a/public/2023-icon-library/spirit/nrun1.png b/public/2023-icon-library/spirit/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..16654513006cc81c98d734baa5cc650127038b3f --- /dev/null +++ b/public/2023-icon-library/spirit/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a181eb5389123e1b2de198d6ca2fcdce4744f348cfba7f45e0326de9fb594b +size 295 diff --git a/public/2023-icon-library/spirit/nrun2.png b/public/2023-icon-library/spirit/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5acc6d34c83e30f36e1ab163e63c6d51562b4359 --- /dev/null +++ b/public/2023-icon-library/spirit/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243c37f0374a45ca6f3cd1988d827458b4ba2d93d4720880b1960c99bfd49e4e +size 347 diff --git a/public/2023-icon-library/spirit/nscratch1.png b/public/2023-icon-library/spirit/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..625707a0a44ea8e95d261ebe6fe04f57ff08b384 --- /dev/null +++ b/public/2023-icon-library/spirit/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07c372c02b4912298dede9e2b40ce2e777b9fd5a695e350d8fb81b176a87140 +size 323 diff --git a/public/2023-icon-library/spirit/nscratch2.png b/public/2023-icon-library/spirit/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..bf1e948291695b9fc04e0354f1af0479dcc2ca08 --- /dev/null +++ b/public/2023-icon-library/spirit/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c6e3fe9a9c0a84fc844b7a1373f0d5dca3a6bf8f850413360fb93939e4517a +size 324 diff --git a/public/2023-icon-library/spirit/nwrun1.png b/public/2023-icon-library/spirit/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..17b7fc66fd78da1aa9231dac1378eaddd0003fab --- /dev/null +++ b/public/2023-icon-library/spirit/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1ceb4704363a4486ee3aa36d0b7867621341bd4dd11a052f5b697a3d470d85 +size 306 diff --git a/public/2023-icon-library/spirit/nwrun2.png b/public/2023-icon-library/spirit/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef45acfbe34a59833050af9f323fc2a9a8ec05c --- /dev/null +++ b/public/2023-icon-library/spirit/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607f1608734dee9d2ee9bb10b423526b12ebd0c1b8d5a811e2491cc8a792982b +size 329 diff --git a/public/2023-icon-library/spirit/serun1.png b/public/2023-icon-library/spirit/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..181f06335adea65f76034b850e7eb60171719db4 --- /dev/null +++ b/public/2023-icon-library/spirit/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7445e3181026b471dc9d8448e7508896d295f9b2b64db582b389974e03daf6f2 +size 336 diff --git a/public/2023-icon-library/spirit/serun2.png b/public/2023-icon-library/spirit/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e4e207d46f73781b90b3672616082774ba4ac302 --- /dev/null +++ b/public/2023-icon-library/spirit/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8995b39d16a54372bb0013f9d0e808f15fe3a832eb63d27611a062590a507967 +size 325 diff --git a/public/2023-icon-library/spirit/sleep1.png b/public/2023-icon-library/spirit/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..22035a5bd97b8e9b85b42f578f7afc8eb62c2657 --- /dev/null +++ b/public/2023-icon-library/spirit/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26606e302c1b810288834a6845f8daec842bca286d624f65c304befe9512ee0 +size 265 diff --git a/public/2023-icon-library/spirit/sleep2.png b/public/2023-icon-library/spirit/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..c322706e8a6bfe3d0cb8b3f30552ecdd01b9efca --- /dev/null +++ b/public/2023-icon-library/spirit/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb729bd096f0dc2c4b7f87db123d585807d61e72cab9efd78510ceb77126906 +size 259 diff --git a/public/2023-icon-library/spirit/srun1.png b/public/2023-icon-library/spirit/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1fdecb34f9cdb3027372569cb5d3ce32b557d38a --- /dev/null +++ b/public/2023-icon-library/spirit/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2689157f4aec8e9774dd44db7fe4899ddfdb82a9659e3adea805ffc9e51a3b2 +size 295 diff --git a/public/2023-icon-library/spirit/srun2.png b/public/2023-icon-library/spirit/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ec51af81cb50a5e03b50e398c9a911f50bc7dc36 --- /dev/null +++ b/public/2023-icon-library/spirit/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7840ef8a9db06e7f4043671b4178cde3f574e803c47fcbd13bd654d8e7b6c0 +size 333 diff --git a/public/2023-icon-library/spirit/sscratch1.png b/public/2023-icon-library/spirit/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..b0b79846b2b1851a709f4c26e9a11b450a45d9c6 --- /dev/null +++ b/public/2023-icon-library/spirit/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f96a77e9bd9f3e3a5fcf7564fd7a69acfbcd3d469e6ffdab5b8196ebbac6bb +size 323 diff --git a/public/2023-icon-library/spirit/sscratch2.png b/public/2023-icon-library/spirit/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..714d428de8c6a7589d65a7fa5497f96d5c909483 --- /dev/null +++ b/public/2023-icon-library/spirit/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf50659902bbf332444906b137799f9c185ddff6cc43f3328908c649206da52 +size 324 diff --git a/public/2023-icon-library/spirit/still.png b/public/2023-icon-library/spirit/still.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf0535527070bf4f5a27083c1da86832b55120b --- /dev/null +++ b/public/2023-icon-library/spirit/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8eebd3d32e942d999b4d6fda3db9b934a72b3a0e61809dd2c3643bf04ac3cb +size 313 diff --git a/public/2023-icon-library/spirit/swrun1.png b/public/2023-icon-library/spirit/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf606c878159c983a71a97323a1ca96f4dbe8634 --- /dev/null +++ b/public/2023-icon-library/spirit/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d96155c4a4ada53314253e27181dd7ffbe5d8a8d3d489c7139cacf5360f0fd2 +size 325 diff --git a/public/2023-icon-library/spirit/swrun2.png b/public/2023-icon-library/spirit/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..ddb3942e4cf4980534dd76208413168a50988c10 --- /dev/null +++ b/public/2023-icon-library/spirit/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b322d7bbc80e44b92f668a5c95a93683ba3435f6de97df52293db7fd753257c3 +size 332 diff --git a/public/2023-icon-library/spirit/wash.png b/public/2023-icon-library/spirit/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c2353a58d776d29dbf8bc83e57afe17a38a146 --- /dev/null +++ b/public/2023-icon-library/spirit/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de6b5f241870dcaaca85842339bd3ab7eae9f92a64890eb0e266dba534b527e +size 332 diff --git a/public/2023-icon-library/spirit/wrun1.png b/public/2023-icon-library/spirit/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4d9ada29d055d3a959261d33cc8529c4a02f33 --- /dev/null +++ b/public/2023-icon-library/spirit/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb05a396d3cbfc71c4cf9fc871bbadc0c2350cd1dbe8c1e376f5dcdf23ff063 +size 316 diff --git a/public/2023-icon-library/spirit/wrun2.png b/public/2023-icon-library/spirit/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..1611304d6e8f683491166344ae5e8097b45c7bf0 --- /dev/null +++ b/public/2023-icon-library/spirit/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c471841a10d5d25c166f27f9e4a94ca77dd231b93499ae818ff63e843d28a52 +size 309 diff --git a/public/2023-icon-library/spirit/wscratch1.png b/public/2023-icon-library/spirit/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..30a80f98f575c4c3c345e690c9931aa55d532ac4 --- /dev/null +++ b/public/2023-icon-library/spirit/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4584d0e0c7af3e5ed59975607fe50455151af15daaf32b8fb252ba1a0d637721 +size 313 diff --git a/public/2023-icon-library/spirit/wscratch2.png b/public/2023-icon-library/spirit/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..14b9c76d3547e0c11aa6e360c2684705eff5beae --- /dev/null +++ b/public/2023-icon-library/spirit/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1e84a4ed0fe7955dec94e61d7f99cdd0540b511cd2ecd4aad7418646641db4 +size 293 diff --git a/public/2023-icon-library/spirit/yawn.png b/public/2023-icon-library/spirit/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..06b5ee6245a05ef161e516c26d01b9a8514d21a0 --- /dev/null +++ b/public/2023-icon-library/spirit/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1f373be729a2440fd3ed4dfa35747aa6eca5e87620accd6466bcb2784cca40 +size 327 diff --git a/public/2023-icon-library/spooky/alert.png b/public/2023-icon-library/spooky/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..05b001c90bf9f63e92d922f2a2e03b4685190c94 --- /dev/null +++ b/public/2023-icon-library/spooky/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd4d64791c6a79b1372238616cef6774732faace1d68fc988737e0eb36fe565 +size 326 diff --git a/public/2023-icon-library/spooky/erun1.png b/public/2023-icon-library/spooky/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a570102ce9c3c1777dfe85c2f719d083f219550a --- /dev/null +++ b/public/2023-icon-library/spooky/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e686a1bda973e8427fa71c8788bc0f38b5cf829e63e2210254daddb730391f +size 299 diff --git a/public/2023-icon-library/spooky/erun2.png b/public/2023-icon-library/spooky/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e2cf3042c7978d05ddd155251f25a028bbd4c32d --- /dev/null +++ b/public/2023-icon-library/spooky/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cff7f44c187c7aa0802b593642f8f6a43d3821054050d0dffc1f7ed8957a4f +size 292 diff --git a/public/2023-icon-library/spooky/escratch1.png b/public/2023-icon-library/spooky/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6839227048bb669339c3ac1f81f75414bada4eb9 --- /dev/null +++ b/public/2023-icon-library/spooky/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9f44b463a8bbe119fd18a591733e6b1f2dcfe798703a238e68c947d82e2d43 +size 281 diff --git a/public/2023-icon-library/spooky/escratch2.png b/public/2023-icon-library/spooky/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..335a7bb76cfea7ed14be1fe9aa004627b5bc79b9 --- /dev/null +++ b/public/2023-icon-library/spooky/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763e0b25d3f771672303168314f7923fb74ec254fb510591882d6c8b4dd6f220 +size 277 diff --git a/public/2023-icon-library/spooky/itch1.png b/public/2023-icon-library/spooky/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c488eb4f289f35baea05ed3751d884897c6c7636 --- /dev/null +++ b/public/2023-icon-library/spooky/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36e0b01cb6daa0bfd6725ecaa951d117c14634efe786465325c767d73f422b6 +size 300 diff --git a/public/2023-icon-library/spooky/itch2.png b/public/2023-icon-library/spooky/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..47954e2dbe46546df67ee77a2301eee0e3efdec0 --- /dev/null +++ b/public/2023-icon-library/spooky/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1328b0485af6640a55e57bd8387758c7eba780275204439d2c832c3124783e3c +size 285 diff --git a/public/2023-icon-library/spooky/nerun1.png b/public/2023-icon-library/spooky/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e07eb51e28f2d7e3cfb297a3ce47896c9f13a808 --- /dev/null +++ b/public/2023-icon-library/spooky/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2100c9dbf1dc76852c2895aae1846e6c60e89269dfa5a88d9da707e5f51bd87 +size 273 diff --git a/public/2023-icon-library/spooky/nerun2.png b/public/2023-icon-library/spooky/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..610e3f1fdb6398abac15a167ba3f89c0bfff9a31 --- /dev/null +++ b/public/2023-icon-library/spooky/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b164ab4d2708d9b33e5abaa16f89f9d4a3eb8b216b158371edde998df06121b +size 286 diff --git a/public/2023-icon-library/spooky/nrun1.png b/public/2023-icon-library/spooky/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..f713fb5890c72566feee95425c3a8204a760c45d --- /dev/null +++ b/public/2023-icon-library/spooky/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec67a8944e999135badb62b700c73c0b1234d627c17022ca46a92ff5d7e385f5 +size 265 diff --git a/public/2023-icon-library/spooky/nrun2.png b/public/2023-icon-library/spooky/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..60a7e709ea0b95385ede6fd04e67e8cfa46ff307 --- /dev/null +++ b/public/2023-icon-library/spooky/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334c5bccbd9dbbd415b084b241cbb5997e14c8945263e625f75a4cd8899add19 +size 298 diff --git a/public/2023-icon-library/spooky/nscratch1.png b/public/2023-icon-library/spooky/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf6553f18b57d2b65de1b7b5b05a1a6fa5708228 --- /dev/null +++ b/public/2023-icon-library/spooky/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edd549695be53d5df574a26d4fd941e7ad271512b4d446cae184ed984f7a42f +size 309 diff --git a/public/2023-icon-library/spooky/nscratch2.png b/public/2023-icon-library/spooky/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d0e00c030ab68a04056642f5a5f88b3dab18f7 --- /dev/null +++ b/public/2023-icon-library/spooky/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e5e6dd8c9b40a845e261aa9c0139ae7db98463a9031aa5a06f818c15714ee9 +size 294 diff --git a/public/2023-icon-library/spooky/nwrun1.png b/public/2023-icon-library/spooky/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..af06f2bd40f997d180241eb0c65b630c5266e2ab --- /dev/null +++ b/public/2023-icon-library/spooky/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ecccf808355bcdcaff59e2fb3693116bd0db71f3d9c2304bebc4532f616165 +size 278 diff --git a/public/2023-icon-library/spooky/nwrun2.png b/public/2023-icon-library/spooky/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..216d741f858ed041138c12232961f0daca8648b1 --- /dev/null +++ b/public/2023-icon-library/spooky/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458ed8a7f48e80fea61639df2f23814460c98fc9e69f6106843f7c9f8bb1f096 +size 295 diff --git a/public/2023-icon-library/spooky/serun1.png b/public/2023-icon-library/spooky/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8567af66b77c543603147bade9d87d0b62f68c --- /dev/null +++ b/public/2023-icon-library/spooky/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420dc127875a9aeec5c851278e0cb923923ec57e4729d17a5f6096a419ad471b +size 296 diff --git a/public/2023-icon-library/spooky/serun2.png b/public/2023-icon-library/spooky/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..da2eaf1bdfc7bb31431bc1141466f86d9de7c515 --- /dev/null +++ b/public/2023-icon-library/spooky/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cde2b88faad413857a0eb60471c1863eb16d7fc9a6f9bc73a5cefb320395963 +size 298 diff --git a/public/2023-icon-library/spooky/sleep1.png b/public/2023-icon-library/spooky/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..157f640d4deca1b180531e7fbc61cd78673ed22f --- /dev/null +++ b/public/2023-icon-library/spooky/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cd47e311cc529f99255d9e80e752eb18f615dec965a43ee49e939061576869 +size 308 diff --git a/public/2023-icon-library/spooky/sleep2.png b/public/2023-icon-library/spooky/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9b444f2f91e348067ef29b65b674eead5cc50c3 --- /dev/null +++ b/public/2023-icon-library/spooky/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6083edbe9a22e1ba526def6c36f38fdcb84066dec549550ca9348c3b0696d196 +size 300 diff --git a/public/2023-icon-library/spooky/srun1.png b/public/2023-icon-library/spooky/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..fda477037e3ba668fe3e36ba649af912272f0d4b --- /dev/null +++ b/public/2023-icon-library/spooky/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8bf5146aa42dd0dfdb37369d4d0291543c65f128bebb2502c97be187ca3662e +size 279 diff --git a/public/2023-icon-library/spooky/srun2.png b/public/2023-icon-library/spooky/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..561770eac42ed1a972d3de74de040e210d4d3413 --- /dev/null +++ b/public/2023-icon-library/spooky/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb38d9651735f6030400c91550d3a8295436bd5392b669400c49beb9557ffe84 +size 301 diff --git a/public/2023-icon-library/spooky/sscratch1.png b/public/2023-icon-library/spooky/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..35e6f8ce70a3c4d1b7a820d1ffc7ba1ad002c5e8 --- /dev/null +++ b/public/2023-icon-library/spooky/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d820a373d03505d3eb3237682716f7e004a423fca168f7093d2f8cb006ffe4 +size 279 diff --git a/public/2023-icon-library/spooky/sscratch2.png b/public/2023-icon-library/spooky/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..a91b453e2fb297f1ad36c5452a6922e0fdca0371 --- /dev/null +++ b/public/2023-icon-library/spooky/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107dccd9a1615b84d3e4281958cc1fc8bc637a648d958f68104b918b5f37a06d +size 273 diff --git a/public/2023-icon-library/spooky/still.png b/public/2023-icon-library/spooky/still.png new file mode 100644 index 0000000000000000000000000000000000000000..b21e068132e760f425e9b395be3fcc60ed1122cb --- /dev/null +++ b/public/2023-icon-library/spooky/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2f6f73bfde1a5998eb8218daadee783d6b1a25ceadae4d936c464a6d9a7387 +size 280 diff --git a/public/2023-icon-library/spooky/swrun1.png b/public/2023-icon-library/spooky/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d911bf4ad54914ad26f50f87e96d015afca1b7cb --- /dev/null +++ b/public/2023-icon-library/spooky/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932e7e767668989ab51dc196be43a8e18a3bbbd550f960d3cb2f3daa099dd573 +size 278 diff --git a/public/2023-icon-library/spooky/swrun2.png b/public/2023-icon-library/spooky/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e720746baae6e4d2fb8caa80e616f47d9a60c51b --- /dev/null +++ b/public/2023-icon-library/spooky/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e51780b780933b33deab1002262b9f9ee6d7a599f7b6e9aa060db3809a77767d +size 300 diff --git a/public/2023-icon-library/spooky/wash.png b/public/2023-icon-library/spooky/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..b1dc0b41427c647b36b97f072cb117d3993c6814 --- /dev/null +++ b/public/2023-icon-library/spooky/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0f74fa17fab1ce1d3315e9ec7006dae6ec2392d45120d5b4ee23b788178622 +size 297 diff --git a/public/2023-icon-library/spooky/wrun1.png b/public/2023-icon-library/spooky/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbbb5120eeb9eed067f1e4e90bc1c2d7d83321b --- /dev/null +++ b/public/2023-icon-library/spooky/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fed245bcc2d86f7400ddddfcda9adb738738dd66c4aa8c2208c4bc1b5bceb4b +size 298 diff --git a/public/2023-icon-library/spooky/wrun2.png b/public/2023-icon-library/spooky/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..919023ed65f55aa88617d63fef3915d13cd1d7c8 --- /dev/null +++ b/public/2023-icon-library/spooky/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a23d823bf12241629c75ad3442576daa22d5cd78e78568604bb9d4651cfd6c +size 282 diff --git a/public/2023-icon-library/spooky/wscratch1.png b/public/2023-icon-library/spooky/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..033c3418528fa5b8faeb28a7a6640d8caf2fe382 --- /dev/null +++ b/public/2023-icon-library/spooky/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6639a14d67b21d48f2c59658dcf2d62777fbbde16640562958458f2502645012 +size 286 diff --git a/public/2023-icon-library/spooky/wscratch2.png b/public/2023-icon-library/spooky/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..64e8e7c09380e4075118ea96bd3364fca6be026d --- /dev/null +++ b/public/2023-icon-library/spooky/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac11f9b046f1b7a19f407d460a427878cf8c5e0f53dcdb51e0842428b7b4dff +size 272 diff --git a/public/2023-icon-library/spooky/yawn.png b/public/2023-icon-library/spooky/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..ffddc6557ce94226a8fc54c7ca2068dcab97229e --- /dev/null +++ b/public/2023-icon-library/spooky/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943d07b384ba018acdc5216e73ffcec9a1af08820424d9faa0e04ac487dedb7e +size 301 diff --git a/public/2023-icon-library/tabby/alert.png b/public/2023-icon-library/tabby/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..4fb54be3ef39fc94bf6a42c12cee8283030f6ac5 --- /dev/null +++ b/public/2023-icon-library/tabby/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef93dbc6e469003708ecb39f2064ed63e18ed656b9490796399877bff8f0cdc2 +size 254 diff --git a/public/2023-icon-library/tabby/erun1.png b/public/2023-icon-library/tabby/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..ef61de28b4ad5bd2b79a4632defcb8edd19effcf --- /dev/null +++ b/public/2023-icon-library/tabby/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea63cf3f840d73f3eb11b39e984ed57bfbae628f8acafc197247e68822deef6 +size 249 diff --git a/public/2023-icon-library/tabby/erun2.png b/public/2023-icon-library/tabby/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0a3543b276024deeb44a2fb640f4d676535e9f8a --- /dev/null +++ b/public/2023-icon-library/tabby/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c771de5e495c5cb90b84cbb7acbf8a690a56eda668deb5313a2ce78671500df5 +size 247 diff --git a/public/2023-icon-library/tabby/escratch1.png b/public/2023-icon-library/tabby/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..1a9194063667071c441d606ac3f95e8540ee3563 --- /dev/null +++ b/public/2023-icon-library/tabby/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c5d43e12d05cbc0f81ccff62f5b0795eaa22da1b107d19bdc3500747bb00ab +size 240 diff --git a/public/2023-icon-library/tabby/escratch2.png b/public/2023-icon-library/tabby/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7123250990dbd16fb064a6afe556c03b576130bf --- /dev/null +++ b/public/2023-icon-library/tabby/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d9cf62a86029161ce5d5f4ad5561415f4f1143ba3341fd3a46711ea09dd305 +size 239 diff --git a/public/2023-icon-library/tabby/itch1.png b/public/2023-icon-library/tabby/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..4b2c291ad15d2ddb453ff0a07e863f2a4231aa3b --- /dev/null +++ b/public/2023-icon-library/tabby/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2da8ddf7a2c13b4c1bfa5e38de05935e41ce9b1a191a887f0fbda6b9f70e075 +size 244 diff --git a/public/2023-icon-library/tabby/itch2.png b/public/2023-icon-library/tabby/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c935193c7300b468fd0cdb8bc77a939f92856fb2 --- /dev/null +++ b/public/2023-icon-library/tabby/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7349a709730c6045dfa64779fe880e0fb3a9cfe9b9a6aeed225a086b39386e8b +size 230 diff --git a/public/2023-icon-library/tabby/nerun1.png b/public/2023-icon-library/tabby/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c02dd48edbf8bd3e6ff504fe6c3fef80161e6832 --- /dev/null +++ b/public/2023-icon-library/tabby/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9883f51c4bcdef77fa7537806b048b5ed4ed87364c05af7edc7f51501ca10d43 +size 245 diff --git a/public/2023-icon-library/tabby/nerun2.png b/public/2023-icon-library/tabby/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..f2bc98aecfe17eda3f0690727734cc0f0ea002c8 --- /dev/null +++ b/public/2023-icon-library/tabby/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a041674e25f1d44c528fb2c7c35ede491b0df95ecd320f310d6c7a3eed7e84a +size 255 diff --git a/public/2023-icon-library/tabby/nrun1.png b/public/2023-icon-library/tabby/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b28a581ff480cf728fa781d3b9fc490e4cc14d --- /dev/null +++ b/public/2023-icon-library/tabby/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225d73485460a44111a3fe4bf7b83cb5da4ea2684f7dec86e5d041709da29d6b +size 236 diff --git a/public/2023-icon-library/tabby/nrun2.png b/public/2023-icon-library/tabby/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b813f5b19d6384136768776e34c35290bb60f8d0 --- /dev/null +++ b/public/2023-icon-library/tabby/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f5b4cb302192686824f8d93b66303a84067ca49586e3cacdc5810f82d64094 +size 236 diff --git a/public/2023-icon-library/tabby/nscratch1.png b/public/2023-icon-library/tabby/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..114c72f405020a4591bf76fb01f5f1fef88bcc11 --- /dev/null +++ b/public/2023-icon-library/tabby/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42932b3be43ffb57e71773bbb918344a2e6896fbad796f40731a3addd15d2758 +size 254 diff --git a/public/2023-icon-library/tabby/nscratch2.png b/public/2023-icon-library/tabby/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf03ea956f713f315a59a8b21aaa8b2d6128a04 --- /dev/null +++ b/public/2023-icon-library/tabby/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c511c5169e2f2ef2abbbfba5473311d6168a5ebab75e8eb78b330f156305542b +size 245 diff --git a/public/2023-icon-library/tabby/nwrun1.png b/public/2023-icon-library/tabby/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c21cbadc6ffc8f107515b80e5997ec792299748c --- /dev/null +++ b/public/2023-icon-library/tabby/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a7927f61b091815012c9bb71a27e6da9bbd504cc98e090df694ea153c71a12 +size 244 diff --git a/public/2023-icon-library/tabby/nwrun2.png b/public/2023-icon-library/tabby/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..457a319ac4197db17d5ccfcb90c4bb3201fdac93 --- /dev/null +++ b/public/2023-icon-library/tabby/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e85a2166d1e1001da113cf3b0a4ef0ed948d591de5297a5af5067225c4b3a10 +size 256 diff --git a/public/2023-icon-library/tabby/serun1.png b/public/2023-icon-library/tabby/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..1bf3f42ae5dc95dff2702b7f39e86cb49debd1f5 --- /dev/null +++ b/public/2023-icon-library/tabby/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1631d83411847f9d3224afbce3a4ef4314fcdfb5dd21b29819682958d7f32596 +size 249 diff --git a/public/2023-icon-library/tabby/serun2.png b/public/2023-icon-library/tabby/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4458f2524b61a3a71abbbf46cd23bf4baf1385e8 --- /dev/null +++ b/public/2023-icon-library/tabby/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a31d6c769572cd8732223c44d29a8f5eaffb525c79a33a3dd2acf97a8924cbe +size 242 diff --git a/public/2023-icon-library/tabby/sleep1.png b/public/2023-icon-library/tabby/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..89a559b3aaa04bdc359c0e22a72a61d44fbfeb12 --- /dev/null +++ b/public/2023-icon-library/tabby/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e7f0912f4f5030d04e0aa10ad56499f45c76a5b1b71af9a43fb209beb2a9c8 +size 209 diff --git a/public/2023-icon-library/tabby/sleep2.png b/public/2023-icon-library/tabby/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..d110e4dc7c7128c037709fbe9b4c20ffc45237ef --- /dev/null +++ b/public/2023-icon-library/tabby/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48be1e91a442dcfb49e11974692f088a0f701fa8ac01d4109e5c7755cca6d527 +size 213 diff --git a/public/2023-icon-library/tabby/srun1.png b/public/2023-icon-library/tabby/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b910e7f600ed4c5a02014adf477f58a6f77d55 --- /dev/null +++ b/public/2023-icon-library/tabby/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b41af1e2b2044237815ec520655d9ef347b2b276ff7b2216ed3c03a0fa5358d +size 231 diff --git a/public/2023-icon-library/tabby/srun2.png b/public/2023-icon-library/tabby/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..fdeb9513a70cc70463042e4db070fe88460742e0 --- /dev/null +++ b/public/2023-icon-library/tabby/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a9ffa7a1664ee2b6eee8b1ab111673d4d36c92ac195ff8d9c04eb9a2bbe8498 +size 247 diff --git a/public/2023-icon-library/tabby/sscratch1.png b/public/2023-icon-library/tabby/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c7a2f3023b77b7fe350473ca63d3b2c6fb792c --- /dev/null +++ b/public/2023-icon-library/tabby/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bde816a426c83866e8d864a5fae82a31bd9f0cbcc192a05ca22538210bdcb3a +size 239 diff --git a/public/2023-icon-library/tabby/sscratch2.png b/public/2023-icon-library/tabby/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..c8663e4af061863f19b845fb186fe4f8db801def --- /dev/null +++ b/public/2023-icon-library/tabby/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50235c2990ba8378224fbe0c3c8093a85a07adaf64cd19540caa05281635e5c4 +size 233 diff --git a/public/2023-icon-library/tabby/still.png b/public/2023-icon-library/tabby/still.png new file mode 100644 index 0000000000000000000000000000000000000000..325724faaf175733418d5791fe59a41e9be71abf --- /dev/null +++ b/public/2023-icon-library/tabby/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12c058c845e0607e54a4ce2ca6bfd928d0f331cb66f437d221b471f23d2b136 +size 226 diff --git a/public/2023-icon-library/tabby/swrun1.png b/public/2023-icon-library/tabby/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a09ae703245b4b276faf3811bdb159bb651fcb --- /dev/null +++ b/public/2023-icon-library/tabby/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4185a03c2fc9eebb74aa29dce215c7547abcf41d781bd2c260e84f79010a13d8 +size 254 diff --git a/public/2023-icon-library/tabby/swrun2.png b/public/2023-icon-library/tabby/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..06ab78e73ad10094bc33796268cac84f6fbe7caa --- /dev/null +++ b/public/2023-icon-library/tabby/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f6856e4817d8e25e9ed9094fddf143a1a214304dbf3009c6699e3888fc1ade +size 243 diff --git a/public/2023-icon-library/tabby/wash.png b/public/2023-icon-library/tabby/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..29ac822a7d98f2037812e002036efaabe7064688 --- /dev/null +++ b/public/2023-icon-library/tabby/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a3bb96eb8112e1d234a8a9add7e806d25cce88e29c55485daff7d5e6f1460b +size 236 diff --git a/public/2023-icon-library/tabby/wrun1.png b/public/2023-icon-library/tabby/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..90eebd9b74c1e8f8fcac27d7eb7bcfc1cb7ca86f --- /dev/null +++ b/public/2023-icon-library/tabby/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700c55af5864e621088007c4a35873e21bff5c41a6d4dcd3130974a27e518b62 +size 247 diff --git a/public/2023-icon-library/tabby/wrun2.png b/public/2023-icon-library/tabby/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..a9673c8813bbc9eee88b9195e2050a206c19be6d --- /dev/null +++ b/public/2023-icon-library/tabby/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81dcf31246fd957fb82c36fe7e851f3f71e23779e5ca82b8b43378ed43c580f6 +size 245 diff --git a/public/2023-icon-library/tabby/wscratch1.png b/public/2023-icon-library/tabby/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..496b90c1ec01b0333848cd93d492388e81ce059e --- /dev/null +++ b/public/2023-icon-library/tabby/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05e7564ba113ecc486eda1b9b57bde7a2b314219baf3cbf362f49028d0e260b +size 239 diff --git a/public/2023-icon-library/tabby/wscratch2.png b/public/2023-icon-library/tabby/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..e175bd2623c5847476ce9d0f6b709d93e7882c8f --- /dev/null +++ b/public/2023-icon-library/tabby/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0fc7e33338106aeb8c532b7e871155aaa5f09c8289616240ccb10dec452bdc +size 249 diff --git a/public/2023-icon-library/tabby/yawn.png b/public/2023-icon-library/tabby/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..1a5b5485067335f6a17893d5aef26417d9c285cd --- /dev/null +++ b/public/2023-icon-library/tabby/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beaef2913d2c7140195e83b2db76d57be1922621f3ca417b1f5921208b102a33 +size 246 diff --git a/public/2023-icon-library/valentine/alert.png b/public/2023-icon-library/valentine/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..acc1e8d896bf458781319b2c85963495dccbd26d --- /dev/null +++ b/public/2023-icon-library/valentine/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2961ced1acef8be873cd64b6521c0b353340096c80a6d6ad01bf9f602c3985ab +size 355 diff --git a/public/2023-icon-library/valentine/erun1.png b/public/2023-icon-library/valentine/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..d32b8f5cf1358475924bbaeef185dfe850bb3396 --- /dev/null +++ b/public/2023-icon-library/valentine/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10c1dffdbf081583f3bd6a08e3000516690fec534f5b627203b6f80ecaf642a +size 329 diff --git a/public/2023-icon-library/valentine/erun2.png b/public/2023-icon-library/valentine/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a7c295c013dea125a01d32f21be3e6085e4f49 --- /dev/null +++ b/public/2023-icon-library/valentine/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4838875d517f6541f0a11b02de8d3167ba19cd0a4ebe4dc290c5a8cbda2a896 +size 329 diff --git a/public/2023-icon-library/valentine/escratch1.png b/public/2023-icon-library/valentine/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..5e3c855aab37fb81aefde1d88e46bea231ae658d --- /dev/null +++ b/public/2023-icon-library/valentine/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd3ad25b4cb76f8d13b6ee859f2ed1f989cf6472f21f9a267c63a3a4fe29c41 +size 321 diff --git a/public/2023-icon-library/valentine/escratch2.png b/public/2023-icon-library/valentine/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..41bf929368ce3f3c996e03a543a5461d7358821d --- /dev/null +++ b/public/2023-icon-library/valentine/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9291b29352fef82504e935c0f0b9fe52d5bec47ff894f86369f7b63c5d951880 +size 308 diff --git a/public/2023-icon-library/valentine/itch1.png b/public/2023-icon-library/valentine/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..025ff21e80ff95b524d493aad29cac1bbfb22867 --- /dev/null +++ b/public/2023-icon-library/valentine/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42187161c7ba9f00569bdb6de6bceb4c02cc9ab796dfa30e06ea0d96ef0f4198 +size 336 diff --git a/public/2023-icon-library/valentine/itch2.png b/public/2023-icon-library/valentine/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d93dcea96a5f4e79260c0659a17e158d15593c7 --- /dev/null +++ b/public/2023-icon-library/valentine/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4007b75d2e0d3bf20ee3187f771ef7179c0c640a90aeb6ce6357a3ea4c534fb +size 309 diff --git a/public/2023-icon-library/valentine/nerun1.png b/public/2023-icon-library/valentine/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..8d3bd22e8a18e6078adb6e4a87d446c4634f7117 --- /dev/null +++ b/public/2023-icon-library/valentine/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c08027419d4ad1c7e8751abe9dc068dcc7be20dad6219941fd270fc76ee2cf +size 318 diff --git a/public/2023-icon-library/valentine/nerun2.png b/public/2023-icon-library/valentine/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..be17a2a51141de35daa17f7516d8cdeb7bd08633 --- /dev/null +++ b/public/2023-icon-library/valentine/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34f84fe07e4c5b166d79cba93206550a9b5b03f87a5901f4eefc45ef6ed2444 +size 338 diff --git a/public/2023-icon-library/valentine/nrun1.png b/public/2023-icon-library/valentine/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..848d754797259467f1f8b9a3c1dda629158df547 --- /dev/null +++ b/public/2023-icon-library/valentine/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67767942c509e84780120f852b53ee8582bcfc4d9c6da8057f4aaff39c1a7baf +size 295 diff --git a/public/2023-icon-library/valentine/nrun2.png b/public/2023-icon-library/valentine/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..d915346152fc18b7466f7a32d9cf0a09e55ec7c5 --- /dev/null +++ b/public/2023-icon-library/valentine/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d148d9e523f1fdd6233838776b95974e1453a54eaae645b780524a3468cec904 +size 328 diff --git a/public/2023-icon-library/valentine/nscratch1.png b/public/2023-icon-library/valentine/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..6080ae2433148b94ce35697a84c41b12efea7446 --- /dev/null +++ b/public/2023-icon-library/valentine/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8614c9d1c910f9758ba8dae8bafc6e12695146b2a998eedbea2d7baf0ed61bb +size 317 diff --git a/public/2023-icon-library/valentine/nscratch2.png b/public/2023-icon-library/valentine/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..968532fda9375705f62639bbee083a858791950a --- /dev/null +++ b/public/2023-icon-library/valentine/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34f12540975d856f38a2f074b83eafbd236a86a10b0006a23b4611827f78b24 +size 311 diff --git a/public/2023-icon-library/valentine/nwrun1.png b/public/2023-icon-library/valentine/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..5c26e1b7779dc9ca7fa17c692302ba17bc9aa83e --- /dev/null +++ b/public/2023-icon-library/valentine/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382202ca35c0cee5731d79f1d5d1d714f0460e9b59a9851f8a096210d8097d04 +size 321 diff --git a/public/2023-icon-library/valentine/nwrun2.png b/public/2023-icon-library/valentine/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..63bc4d735a84f3bec85b90a94260ea7b0a0b31c2 --- /dev/null +++ b/public/2023-icon-library/valentine/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e7a96727116c04b779f37df48fda6d15e3ebc8e3d4d4c35e576be30564bf8d +size 340 diff --git a/public/2023-icon-library/valentine/serun1.png b/public/2023-icon-library/valentine/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..6fad2f711cb77804d4723aa62e620fd8ec3f9e5e --- /dev/null +++ b/public/2023-icon-library/valentine/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d5308ab65f19f9f84b54357ced7c329611db667b8ab0ac775ddc95217880142 +size 323 diff --git a/public/2023-icon-library/valentine/serun2.png b/public/2023-icon-library/valentine/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..0e44b3e4e2746ed8e4a4dbd9b9c18d899be7637d --- /dev/null +++ b/public/2023-icon-library/valentine/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3359f3189d2d687c40979f19f7f2fcb84896bfa374cc7c404c08c45fc0d58a8 +size 337 diff --git a/public/2023-icon-library/valentine/sleep1.png b/public/2023-icon-library/valentine/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..98cf3f7c9e989f023311227523ffaa558396a3a7 --- /dev/null +++ b/public/2023-icon-library/valentine/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aee51da8e8a9f36a51a4e393211384ccff54d701053553a0e50bc2ca27786cb9 +size 371 diff --git a/public/2023-icon-library/valentine/sleep2.png b/public/2023-icon-library/valentine/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..171fda314d38f802c14a7c4b2266b4e41f981a0a --- /dev/null +++ b/public/2023-icon-library/valentine/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2249b056e759bf8866066a7d6d94cdf3484617b474ce2fba013c24086b46dff9 +size 357 diff --git a/public/2023-icon-library/valentine/srun1.png b/public/2023-icon-library/valentine/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe96c2c7ad32a16295ab668748d337b551cb609 --- /dev/null +++ b/public/2023-icon-library/valentine/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1049a021a2cd12694eae4c58413193d239095c69b562ebd2df7647e54e9d8e88 +size 309 diff --git a/public/2023-icon-library/valentine/srun2.png b/public/2023-icon-library/valentine/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..e10d82819c062dfd6fff18c8bff141128c551720 --- /dev/null +++ b/public/2023-icon-library/valentine/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8570a4bfee4943834f20a2e2e8c6fc361b003147603ed2b96615700b274aa3 +size 319 diff --git a/public/2023-icon-library/valentine/sscratch1.png b/public/2023-icon-library/valentine/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..cda59981b14e06fb4190d5c408b10c06742afdf9 --- /dev/null +++ b/public/2023-icon-library/valentine/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722e5ef40512f5c8378ccb33b4450271e1b3ae497a8c1d5caa7a4c3204c647e2 +size 300 diff --git a/public/2023-icon-library/valentine/sscratch2.png b/public/2023-icon-library/valentine/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..74358a5e717cda71ad17b8e2a900bc4a4b8a383d --- /dev/null +++ b/public/2023-icon-library/valentine/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a36f1cdd08aaac070ca67bee57b0545f5a12e7cd8feac77540c6563ec2a67be +size 301 diff --git a/public/2023-icon-library/valentine/still.png b/public/2023-icon-library/valentine/still.png new file mode 100644 index 0000000000000000000000000000000000000000..6616e8388053ca18b5c49fa6f4c80abd25989d36 --- /dev/null +++ b/public/2023-icon-library/valentine/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b905d2b2bec1fb1fd13ce4ee64c70bda51527c9e35bef93e2aae9398d7f9fb +size 303 diff --git a/public/2023-icon-library/valentine/swrun1.png b/public/2023-icon-library/valentine/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..902ca9b0c65b044920b1f30aaac3f309574d6e62 --- /dev/null +++ b/public/2023-icon-library/valentine/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4ca8b0d8795b53bf41d208b416de523258b59f690da4a950e62ccb16e8eeb8 +size 314 diff --git a/public/2023-icon-library/valentine/swrun2.png b/public/2023-icon-library/valentine/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..79ae16868ef561815f5c64c476a7feaeddc20cad --- /dev/null +++ b/public/2023-icon-library/valentine/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a73ae19bc4a90210b713e8f6571b58f85cd656ac8944edd1eaf49b15bdb93d7 +size 335 diff --git a/public/2023-icon-library/valentine/wash.png b/public/2023-icon-library/valentine/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..7dcc845d85c313ceb0db78161867d7f51f3440db --- /dev/null +++ b/public/2023-icon-library/valentine/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379e96f980b2008da382041f27654e46085c418afebc48667ff21e7b8f168659 +size 318 diff --git a/public/2023-icon-library/valentine/wrun1.png b/public/2023-icon-library/valentine/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..904aef4ce0131c4aafef58ba75fe509eda24c00b --- /dev/null +++ b/public/2023-icon-library/valentine/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f98a4ff49d46e0d75618025e76cc712938b81e29061ba110f827de9b0a8e3de +size 335 diff --git a/public/2023-icon-library/valentine/wrun2.png b/public/2023-icon-library/valentine/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..58b2d7d86cda511f76ca6bb288a98bd7a92b0809 --- /dev/null +++ b/public/2023-icon-library/valentine/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57baa96d4ed6781be5afadf75c2989219fc068c144c3f8ffb4f82fb9f9313299 +size 314 diff --git a/public/2023-icon-library/valentine/wscratch1.png b/public/2023-icon-library/valentine/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff99a950e43778a71763e321c5b5855b9bf7e2c --- /dev/null +++ b/public/2023-icon-library/valentine/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b5bc6c82f19693cf7ecea02c2edf567e9ba35238416ea12da9bbfb60c5fa84 +size 329 diff --git a/public/2023-icon-library/valentine/wscratch2.png b/public/2023-icon-library/valentine/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..55a0581a46766b842f1b5a6bd9f0b7408b0e8040 --- /dev/null +++ b/public/2023-icon-library/valentine/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccfce4d707aaa24d17ca33640973973e376454b5bac3c930815e04090dacf879 +size 309 diff --git a/public/2023-icon-library/valentine/yawn.png b/public/2023-icon-library/valentine/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..9f3d1bf80a324f62cefeffad2ed70d0c46d0f5ff --- /dev/null +++ b/public/2023-icon-library/valentine/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbb064aae71b8d620ad90cc7c4bd79df43789293b068fac7acfdb2e83921dc1 +size 328 diff --git a/public/2023-icon-library/white/alert.png b/public/2023-icon-library/white/alert.png new file mode 100644 index 0000000000000000000000000000000000000000..ad693d04401c8c4640085b85ba9013ba857fc2e1 --- /dev/null +++ b/public/2023-icon-library/white/alert.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129bf791cad603fafd91eeeecb06695d74b62352fbf664a1e404f9373736a871 +size 285 diff --git a/public/2023-icon-library/white/erun1.png b/public/2023-icon-library/white/erun1.png new file mode 100644 index 0000000000000000000000000000000000000000..835b2128a7761e9d30d049131990d90d9cdd6ddb --- /dev/null +++ b/public/2023-icon-library/white/erun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0855f8b965f7278ff2316eca98742d006b4f0374ebac4729024458a4b97aabaf +size 271 diff --git a/public/2023-icon-library/white/erun2.png b/public/2023-icon-library/white/erun2.png new file mode 100644 index 0000000000000000000000000000000000000000..4f89949113e2f1c531d2990fbf885fe4928e781d --- /dev/null +++ b/public/2023-icon-library/white/erun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26e7dedf6fc1d3d4cdde57d3774356985597b19424e088d14874174a545b3e5 +size 267 diff --git a/public/2023-icon-library/white/escratch1.png b/public/2023-icon-library/white/escratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a41d8bc386cd4575b9c01bccfb768cfec9f6892 --- /dev/null +++ b/public/2023-icon-library/white/escratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe4876007d78f3ff5e684b80347566b641fe44c96c3151e092f5320570e8c0c +size 272 diff --git a/public/2023-icon-library/white/escratch2.png b/public/2023-icon-library/white/escratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e2ab4c42147a6c31a8a2addcaec37589a2a19f7 --- /dev/null +++ b/public/2023-icon-library/white/escratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d80528a04b41799e3992fea12611d41174664dd0f908e2ca88e9bea56a41a3b +size 254 diff --git a/public/2023-icon-library/white/itch1.png b/public/2023-icon-library/white/itch1.png new file mode 100644 index 0000000000000000000000000000000000000000..09bfe1003ef6dc8357d175f859dd5ead36e67e30 --- /dev/null +++ b/public/2023-icon-library/white/itch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97978c182c702bc91ba34afaa2431d94ce4d17063a763cdb66dcecfe171834df +size 266 diff --git a/public/2023-icon-library/white/itch2.png b/public/2023-icon-library/white/itch2.png new file mode 100644 index 0000000000000000000000000000000000000000..01697f9418c95ea32a5de0ee8a0bd33be316715c --- /dev/null +++ b/public/2023-icon-library/white/itch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9fb3e2d49ad08ed806f15810f7f402006d5cfd419bc07d52ecbafbf3953fd9 +size 265 diff --git a/public/2023-icon-library/white/nerun1.png b/public/2023-icon-library/white/nerun1.png new file mode 100644 index 0000000000000000000000000000000000000000..e4582ae90c2851280c3cda3f53faaebd8352a8de --- /dev/null +++ b/public/2023-icon-library/white/nerun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efa9986a4ee6b3aa8377611b449c120ff1c8fa32fb12140e585cd9970b6eeec +size 258 diff --git a/public/2023-icon-library/white/nerun2.png b/public/2023-icon-library/white/nerun2.png new file mode 100644 index 0000000000000000000000000000000000000000..df3f271e866c1087b9ba1a828a9383f6522dbe99 --- /dev/null +++ b/public/2023-icon-library/white/nerun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d50a95ccd4494a46efd8cebe6fc3222d66df710123b4e8a848778f916fba148 +size 277 diff --git a/public/2023-icon-library/white/nrun1.png b/public/2023-icon-library/white/nrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..a56eee1b49a67f788a21d17be04d89fbebadae9f --- /dev/null +++ b/public/2023-icon-library/white/nrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7601c6579bb12d1243c7c872eb5d831bf372ea3bbe58e38da7cb0460bbbe769 +size 236 diff --git a/public/2023-icon-library/white/nrun2.png b/public/2023-icon-library/white/nrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b6844437b9676f37482727858f449cdca43bac76 --- /dev/null +++ b/public/2023-icon-library/white/nrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de6d194e6c4797d9a2be5f0557e8dc2287d7406971fe65c6f2219fed286ed07 +size 266 diff --git a/public/2023-icon-library/white/nscratch1.png b/public/2023-icon-library/white/nscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..652c11cd77f703973d569d7e8fcab44598f64af7 --- /dev/null +++ b/public/2023-icon-library/white/nscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6ce4de2f79ac8af78fb79f250e1b114f31f8c26042fcbe393cff0372689b5c +size 267 diff --git a/public/2023-icon-library/white/nscratch2.png b/public/2023-icon-library/white/nscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..5504668cae77fcf611ae876f075c7548e7d536df --- /dev/null +++ b/public/2023-icon-library/white/nscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae58b6ebba363034eb2696eb5306ba710cf6ed63b1d04bb649b0f3d854c4eef +size 268 diff --git a/public/2023-icon-library/white/nwrun1.png b/public/2023-icon-library/white/nwrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..36c3d0fb371407abb47e44d4abe2c0b7c1a3f9c0 --- /dev/null +++ b/public/2023-icon-library/white/nwrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392c5dd6fe8e5741e1b8bc279c50df769ac85d2cc263944ae27ad598165caac3 +size 249 diff --git a/public/2023-icon-library/white/nwrun2.png b/public/2023-icon-library/white/nwrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf37f473904cf09a048a45602c8cf4341fc53ec8 --- /dev/null +++ b/public/2023-icon-library/white/nwrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276189cfd4abfc71f76587965492552efa35b9f59cb8e6264bb8def9f39a0d6f +size 273 diff --git a/public/2023-icon-library/white/serun1.png b/public/2023-icon-library/white/serun1.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f13d3d7d6237c452601e7f6db38304b152800d --- /dev/null +++ b/public/2023-icon-library/white/serun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6d83d86a39ac16cea39f0faed4c7f65431ec653af6b69ffa963432e9ea0425 +size 268 diff --git a/public/2023-icon-library/white/serun2.png b/public/2023-icon-library/white/serun2.png new file mode 100644 index 0000000000000000000000000000000000000000..c7ba0c1478593602964a110c17211cb8d0d54142 --- /dev/null +++ b/public/2023-icon-library/white/serun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed47d3778b39926eb692a1208f7815add18ab4f32185830df16e0442b841f0e4 +size 279 diff --git a/public/2023-icon-library/white/sleep1.png b/public/2023-icon-library/white/sleep1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d20a5ccd2b196d26bdecb25fbccd6b615878149 --- /dev/null +++ b/public/2023-icon-library/white/sleep1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bea499608a85c9a1df7123fd68344c8a22ad6022361a6006de541cefbba23a +size 236 diff --git a/public/2023-icon-library/white/sleep2.png b/public/2023-icon-library/white/sleep2.png new file mode 100644 index 0000000000000000000000000000000000000000..d08825026a3ee2bd5114a5d681bbf4802a46f7a8 --- /dev/null +++ b/public/2023-icon-library/white/sleep2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d216075bdbd13d7491caaec7711319a3c0b1ffed71f2d7cbfc4eb4425ec0c0ff +size 233 diff --git a/public/2023-icon-library/white/srun1.png b/public/2023-icon-library/white/srun1.png new file mode 100644 index 0000000000000000000000000000000000000000..08e809eaf6db8a2599de849297e5c9d2617e7930 --- /dev/null +++ b/public/2023-icon-library/white/srun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37c4cbd6d2f03e2699efe9a7afbdb42f381d38ab70bcd62eac0d8232bb19abe +size 254 diff --git a/public/2023-icon-library/white/srun2.png b/public/2023-icon-library/white/srun2.png new file mode 100644 index 0000000000000000000000000000000000000000..35ef9e2ac6729ff4bcd84d82aaf1c026c0f2fc7e --- /dev/null +++ b/public/2023-icon-library/white/srun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3275a9d5611dce5b9d4c772da6c04abaef5aed39246aee06c99b34aa8a18196 +size 276 diff --git a/public/2023-icon-library/white/sscratch1.png b/public/2023-icon-library/white/sscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..887db033fe7c0ee12acb388770c9187f4b4dd2f3 --- /dev/null +++ b/public/2023-icon-library/white/sscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33db424c7903aa95bac95417073fd0535a2a20304438438c78536763968f21a8 +size 257 diff --git a/public/2023-icon-library/white/sscratch2.png b/public/2023-icon-library/white/sscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..73fd500a41b49373a9286dff486deadba01111b7 --- /dev/null +++ b/public/2023-icon-library/white/sscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4fed0c81225c85a524e05a6f25e4489a8230aacd3a0f49f549f1b73b96251f7 +size 255 diff --git a/public/2023-icon-library/white/still.png b/public/2023-icon-library/white/still.png new file mode 100644 index 0000000000000000000000000000000000000000..a0451b9e7e4862e9efc1ee831dd918fc7a72ed95 --- /dev/null +++ b/public/2023-icon-library/white/still.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83202def1dc7e0e337c0a6e54dac84050453b91a194e3d7eca19a263dd219734 +size 251 diff --git a/public/2023-icon-library/white/swrun1.png b/public/2023-icon-library/white/swrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..51841e6c2f4764fc98d84e80734389f2c3f9b298 --- /dev/null +++ b/public/2023-icon-library/white/swrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba8877b45a7d144b67ece0d5af45af418062b029933cc03d5fc8988c0010180 +size 260 diff --git a/public/2023-icon-library/white/swrun2.png b/public/2023-icon-library/white/swrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..b37d0e8a4fc641c9a22e50c562e6d809f4d9cfd3 --- /dev/null +++ b/public/2023-icon-library/white/swrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147f3a7f36b079240d61c16cc01110c57e87de76689691bbe4f87ca9b0da525b +size 269 diff --git a/public/2023-icon-library/white/wash.png b/public/2023-icon-library/white/wash.png new file mode 100644 index 0000000000000000000000000000000000000000..fd52bc90303fc386e2c54a4e17815c10c93ff679 --- /dev/null +++ b/public/2023-icon-library/white/wash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2de21f09b822b7e420f82727710f04dc49fd63da7bf0484b55e51f2b5338e0 +size 273 diff --git a/public/2023-icon-library/white/wrun1.png b/public/2023-icon-library/white/wrun1.png new file mode 100644 index 0000000000000000000000000000000000000000..cea42b72861a3116e5fa413f2b9cc4147d3fc1d9 --- /dev/null +++ b/public/2023-icon-library/white/wrun1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5995234294346aa6c8374d25c4894a5dba948257a2f5debb18128a0f9d69eed +size 279 diff --git a/public/2023-icon-library/white/wrun2.png b/public/2023-icon-library/white/wrun2.png new file mode 100644 index 0000000000000000000000000000000000000000..5f29fb4c2d42703d62ac4c913d5d12b350c07878 --- /dev/null +++ b/public/2023-icon-library/white/wrun2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ca1d0b62cd7313f2ccad4a0031d7a695b261c269cc9bcb6906c09b3e534ffa +size 259 diff --git a/public/2023-icon-library/white/wscratch1.png b/public/2023-icon-library/white/wscratch1.png new file mode 100644 index 0000000000000000000000000000000000000000..64fe45c24ce857cc55052599ebd2aa5e9d3522b9 --- /dev/null +++ b/public/2023-icon-library/white/wscratch1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafd0fe05726b5901725fcc0d53fe3ee731bc243317ae3398b78740f1087287b +size 270 diff --git a/public/2023-icon-library/white/wscratch2.png b/public/2023-icon-library/white/wscratch2.png new file mode 100644 index 0000000000000000000000000000000000000000..da3b53a1bbae31cd14e6db924ba28eb0e16fb613 --- /dev/null +++ b/public/2023-icon-library/white/wscratch2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00bd001fe7c2dd7f017169eb6c94a09542af9a820e3209b2709e94a9dde3148 +size 259 diff --git a/public/2023-icon-library/white/yawn.png b/public/2023-icon-library/white/yawn.png new file mode 100644 index 0000000000000000000000000000000000000000..71974dfaae11356e2f6db96dfb77687346e1afa0 --- /dev/null +++ b/public/2023-icon-library/white/yawn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cee870b01955f5ca6461ea7e77f660f900cb30e9c868b10d1f21b5789afb08 +size 276 diff --git a/public/apple-icon.png b/public/apple-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b17549b308eaa9325f48786e3319434c1cfae5fc --- /dev/null +++ b/public/apple-icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da678942d4656a903f61000551cc51c09464d7a223faaae304e8210e1ca19257 +size 2626 diff --git a/public/birdanimation.mp4 b/public/birdanimation.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..db82d09d3e4170407d98439edc83fb0a8f83c588 --- /dev/null +++ b/public/birdanimation.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b05c084725995b308dd5ff7f0e3ad5fc7ca1a315c22f9ad1ee7ebc85a0f721a +size 1908931 diff --git a/public/icon-dark-32x32.png b/public/icon-dark-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..263ac9fd03a68ea0b84b6ebff85b8dcb6e726c08 --- /dev/null +++ b/public/icon-dark-32x32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1570b2955c3748b6844356a7487d88c60f9f1e699e870a3452a3decd1ba03c +size 585 diff --git a/public/icon-light-32x32.png b/public/icon-light-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..1465df2c3b684d0b42839f021aa71d4d8eb4a931 --- /dev/null +++ b/public/icon-light-32x32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83145e5bb033ace23cd8e7fbb63e7c39733aaf58f8a7280d7800995cced6f7c2 +size 566 diff --git a/public/icon.svg b/public/icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c11e6c50d2df379c5018d3bca984c866097ad58 --- /dev/null +++ b/public/icon.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/hummingbird.svg b/public/images/hummingbird.svg new file mode 100644 index 0000000000000000000000000000000000000000..8a01b7a34bf086e9d53fc93cb73004dc18f8669f --- /dev/null +++ b/public/images/hummingbird.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/liecio-water-bubbles-257594.mp3 b/public/liecio-water-bubbles-257594.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f059fdeea4c0829ceb6e4edd4b023c37461921a8 --- /dev/null +++ b/public/liecio-water-bubbles-257594.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505384fe48b0885272a4520ddab80ac22d4fec8c5ccbc3baacabd876706f88a2 +size 1089201 diff --git a/public/photos/album-coffee.png b/public/photos/album-coffee.png new file mode 100644 index 0000000000000000000000000000000000000000..8a20fa178bea4116d3c3c8ccb25c3fc0df9ca7ae --- /dev/null +++ b/public/photos/album-coffee.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e234b6a883096d6e3ade848f4c0a9be4efc026e916a2eb38485b58fba77f87 +size 1537752 diff --git a/public/photos/album-ottawa.png b/public/photos/album-ottawa.png new file mode 100644 index 0000000000000000000000000000000000000000..b5045940fb57d96e4e5832b3dada06742ae0627d --- /dev/null +++ b/public/photos/album-ottawa.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d522bec2ea64dd9be12ee9c674d31535b26ae59b812e93abf2ab8270bed2b174 +size 2020041 diff --git a/public/photos/album-road-trip.png b/public/photos/album-road-trip.png new file mode 100644 index 0000000000000000000000000000000000000000..8efafa0f4a802f2d4ce62406b22e42d645700041 --- /dev/null +++ b/public/photos/album-road-trip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d31cc178b80e3a67d7a96e62617236745410c71558abd4393d7d4b45137b2b2 +size 1558858 diff --git a/public/photos/album-sketchbook.png b/public/photos/album-sketchbook.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5f8ad2b97166ce8a1c5f8a503e9dc0f0b5aa43 --- /dev/null +++ b/public/photos/album-sketchbook.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e8e1efb6013bccf8841713cab22e03e7ed980d1f0c5de157ef310dd3da2472 +size 1960492 diff --git a/public/photos/library-of-parliament.png b/public/photos/library-of-parliament.png new file mode 100644 index 0000000000000000000000000000000000000000..ba0cb5b40132e4e48efda71ee70df8c9189eaed2 --- /dev/null +++ b/public/photos/library-of-parliament.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097e235d3fa3517c6f61dc0b6437eff8e6a63a703b288d5fe80134456b10a28b +size 1885207 diff --git a/public/photos/moment-canal.png b/public/photos/moment-canal.png new file mode 100644 index 0000000000000000000000000000000000000000..8c1df1a86c819d54c25e782c46eda551a82f0350 --- /dev/null +++ b/public/photos/moment-canal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d3f606f7d404c5a1dc87a29f0042f42bdfe606203dd3250b3e99207c189adb +size 1888079 diff --git a/public/photos/moment-cathedral.png b/public/photos/moment-cathedral.png new file mode 100644 index 0000000000000000000000000000000000000000..136269a3b7b92305c350146c6f1c3b5bb9050545 --- /dev/null +++ b/public/photos/moment-cathedral.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09114d00224e5454e5529295fa1f855dd0abd8fd733c5054b1c8d3ca41b69198 +size 1824414 diff --git a/public/photos/moment-market.png b/public/photos/moment-market.png new file mode 100644 index 0000000000000000000000000000000000000000..aa39f9a28cad60a4bfc706ac0234d204b4340d0a --- /dev/null +++ b/public/photos/moment-market.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13ebb0c801b18815b3e83dcdb22e1162f5098feacd5b05044617dedd8fcbcbd +size 1743966 diff --git a/public/photos/moment-museum.png b/public/photos/moment-museum.png new file mode 100644 index 0000000000000000000000000000000000000000..f1761cf1225489a11d7a091abc5cc426d82df96c --- /dev/null +++ b/public/photos/moment-museum.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd2d8dd73cf8e587c5c9a869d02e2ec1ff4649a6d937b42a7db13f6ff5490b2 +size 1275698 diff --git a/public/photos/scrapbook-map.png b/public/photos/scrapbook-map.png new file mode 100644 index 0000000000000000000000000000000000000000..83c1c79a2aa5257ac136ee2ce82c676e2ca999bf --- /dev/null +++ b/public/photos/scrapbook-map.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2270b70c853377cf3564532d326d59edcbc31d9a950bc32bb574ff73f72aa364 +size 1937844 diff --git a/public/placeholder-logo.png b/public/placeholder-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..be0850a11e7c82816506126cc165191c289482de --- /dev/null +++ b/public/placeholder-logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c39d978af643ba9525de6fb8171e0f834882db4110c82ecad0df3f4f69551a +size 568 diff --git a/public/placeholder-logo.svg b/public/placeholder-logo.svg new file mode 100644 index 0000000000000000000000000000000000000000..b1695aafcd5925a0b3eb122b9e553b8a0f4a0d47 --- /dev/null +++ b/public/placeholder-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/placeholder-user.jpg b/public/placeholder-user.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fa7543d38ed8fdb38f03b5c0f40ad2d66827d4a Binary files /dev/null and b/public/placeholder-user.jpg differ diff --git a/public/placeholder.jpg b/public/placeholder.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bfe96336dbe567f5f1e9129f5bccdc78b114bba Binary files /dev/null and b/public/placeholder.jpg differ diff --git a/public/placeholder.svg b/public/placeholder.svg new file mode 100644 index 0000000000000000000000000000000000000000..e763910b27fdd9ac872f56baede51bc839402347 --- /dev/null +++ b/public/placeholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ce0ad9c33c26d2284c24d762042068572a96c20 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,31 @@ +gradio +uvicorn[standard] +transformers +# Flux2KleinPipeline (img2img watercolour develop) is not in a released diffusers +# yet β€” it must come from git main. See backend/hf/3_infer_img2img.py. +diffusers @ git+https://github.com/huggingface/diffusers.git +accelerate +pillow-heif # HEIC/HEIF source photos for the img2img develop step +hf_xet +huggingface_hub +soundfile>=0.12 +librosa>=0.10 +langdetect>=1.0.9 +arize-phoenix>=7.0 # the local Phoenix server + UI (run: phoenix serve) +arize-phoenix-otel>=0.16.0 # register() helper + OpenInference semconv re-exports +opentelemetry-sdk>=1.24 +opentelemetry-exporter-otlp-proto-http>=1.24 # raw OTLP/HTTP fallback exporter +openinference-semantic-conventions>=0.1.9 +#llama cpp +--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu122 +spaces +nvidia-cuda-runtime-cu12 +nvidia-cublas-cu12 +nvidia-cuda-nvrtc-cu12 +llama-cpp-python +# nemotron +cython +packaging +nemo_toolkit[asr] @ git+https://github.com/NVIDIA/NeMo.git@main +#for local only +python-dotenv \ No newline at end of file