2026-01-20 09:59:20 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
{
|
2026-01-20 14:35:20 +00:00
|
|
|
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
|
2026-01-20 14:42:21 +00:00
|
|
|
# Create symlink from home to storage
|
|
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
|
"L+ /home/fred/storage - - - - /mnt/storage"
|
|
|
|
|
];
|
2026-01-20 09:59:20 +00:00
|
|
|
|
2026-01-20 14:42:21 +00:00
|
|
|
# Basic system packages
|
2026-01-20 14:35:20 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
mergerfs
|
|
|
|
|
wget
|
|
|
|
|
util-linux
|
2026-01-25 16:01:40 +00:00
|
|
|
javaPackages.compiler.temurin-bin.jre-25
|
2026-01-25 16:06:34 +00:00
|
|
|
unzip
|
2026-01-25 16:40:19 +00:00
|
|
|
screen
|
2026-01-26 15:22:01 +00:00
|
|
|
yt-dlp
|
2026-04-09 10:07:38 +01:00
|
|
|
ghostty.terminfo
|
2026-04-20 11:19:11 +01:00
|
|
|
usbutils
|
2026-04-20 11:34:49 +01:00
|
|
|
lm_sensors
|
2026-04-15 10:25:36 +01:00
|
|
|
(pkgs.writeShellScriptBin "transcode-hevc" ''
|
2026-04-15 19:31:37 +01:00
|
|
|
export PATH="${pkgs.jellyfin-ffmpeg}/bin:${pkgs.coreutils}/bin:${pkgs.findutils}/bin:${pkgs.gnugrep}/bin:${pkgs.gawk}/bin:${pkgs.bc}/bin:${pkgs.curl}/bin:$PATH"
|
2026-04-15 10:25:36 +01:00
|
|
|
exec ${pkgs.bash}/bin/bash ${../scripts/transcode-hevc.sh} "$@"
|
|
|
|
|
'')
|
2026-04-16 20:58:19 +01:00
|
|
|
(pkgs.writeShellScriptBin "record-update" ''
|
|
|
|
|
export PATH="${pkgs.nvd}/bin:${pkgs.coreutils}/bin:${pkgs.gnugrep}/bin:${pkgs.gnused}/bin:$PATH"
|
|
|
|
|
exec ${pkgs.bash}/bin/bash ${../scripts/record-update.sh} "$@"
|
|
|
|
|
'')
|
2026-07-28 20:32:43 +01:00
|
|
|
# Stats stream for the quickshell server monitor on the desktops:
|
|
|
|
|
# `ssh mediaserver qs-stats` = top's 2s batch stream, interleaved with
|
|
|
|
|
# one @STAT line per tick (hottest coretemp across both sockets, WAN
|
|
|
|
|
# byte rates from eno1). Everything rides one SSH connection.
|
|
|
|
|
(pkgs.writeShellScriptBin "qs-stats" ''
|
2026-07-28 20:47:39 +01:00
|
|
|
# Single writer: the loop re-emits top's lines itself and injects a
|
|
|
|
|
# @STAT line at each frame header. top writing the pipe directly in
|
|
|
|
|
# parallel raced the injected lines (pipe writes aren't line-atomic)
|
|
|
|
|
# and spliced @STAT mid-frame, where the client parser never saw it.
|
2026-07-28 20:32:43 +01:00
|
|
|
C=${pkgs.coreutils}/bin
|
|
|
|
|
export LC_ALL=C
|
|
|
|
|
prev_rx=""
|
2026-07-28 20:47:39 +01:00
|
|
|
${pkgs.procps}/bin/top -b -d 2 -w 512 | while IFS= read -r line; do
|
|
|
|
|
printf '%s\n' "$line"
|
|
|
|
|
case $line in
|
|
|
|
|
"top - "*)
|
|
|
|
|
t=0
|
|
|
|
|
for h in /sys/class/hwmon/*; do
|
|
|
|
|
[ "$($C/cat "$h/name" 2>/dev/null)" = coretemp ] || continue
|
|
|
|
|
for f in "$h"/temp*_input; do
|
|
|
|
|
v=$($C/cat "$f" 2>/dev/null || echo 0)
|
|
|
|
|
[ "$v" -gt "$t" ] && t=$v
|
|
|
|
|
done
|
2026-07-28 20:32:43 +01:00
|
|
|
done
|
2026-07-28 20:47:39 +01:00
|
|
|
read -r rx tx < <(${pkgs.gawk}/bin/awk '$1 == "eno1:" {print $2, $10}' /proc/net/dev)
|
|
|
|
|
if [ -n "$prev_rx" ]; then
|
|
|
|
|
printf '@STAT temp=%s rxbps=%s txbps=%s\n' "$((t / 1000))" "$(( (rx - prev_rx) / 2 ))" "$(( (tx - prev_tx) / 2 ))"
|
|
|
|
|
fi
|
|
|
|
|
prev_rx=$rx
|
|
|
|
|
prev_tx=$tx
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2026-07-28 20:32:43 +01:00
|
|
|
done
|
|
|
|
|
'')
|
2026-08-01 17:14:04 +01:00
|
|
|
# Instant-answer backend for the quickshell launcher on the desktops:
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
# `printf '%s' "question" | ssh mediaserver qs-ask`.
|
|
|
|
|
#
|
|
|
|
|
# Runs through Claude Code so it draws on fred's existing subscription —
|
|
|
|
|
# no API key, no separate billing. The trade is latency: Claude Code boots
|
|
|
|
|
# a Node process per question, so this takes ~6s against the raw API's
|
|
|
|
|
# ~1s. The launcher therefore shows its Wikipedia answer first and lets
|
|
|
|
|
# this one supersede it when it lands.
|
2026-08-01 17:14:04 +01:00
|
|
|
#
|
|
|
|
|
# Reads the question from stdin — passing it as an ssh argv element would
|
|
|
|
|
# send it through the remote shell for a second round of word splitting.
|
|
|
|
|
#
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
# Every flag here is either isolation or trimming the invocation:
|
|
|
|
|
# --safe-mode no CLAUDE.md, skills, hooks, plugins, MCP or
|
|
|
|
|
# custom agents. Critical for correctness, not
|
|
|
|
|
# just speed: fred's ~/.claude/CLAUDE.md tells
|
|
|
|
|
# Claude to answer in caveman mode, which would
|
|
|
|
|
# otherwise leak into launcher answers. Auth
|
|
|
|
|
# keeps working normally, which is what makes
|
|
|
|
|
# the subscription usable here.
|
|
|
|
|
# --no-session-persistence writes no transcript, so launcher questions
|
|
|
|
|
# never appear in /resume or any project history
|
|
|
|
|
# --tools "" no tools at all: nothing to load, and it
|
|
|
|
|
# cannot touch the filesystem or network
|
|
|
|
|
# --disable-slash-commands no skill resolution
|
|
|
|
|
# --strict-mcp-config ignore every MCP config (none supplied)
|
|
|
|
|
# --system-prompt replaces the full Claude Code system prompt
|
|
|
|
|
# with one line, rather than appending to it
|
|
|
|
|
# --permission-mode dontAsk never block waiting on a prompt nobody sees
|
|
|
|
|
# --model claude-haiku-4-5 smallest model — a one-line fact needs no more
|
2026-08-01 17:14:04 +01:00
|
|
|
#
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
# NOT --bare, which looks like the right flag and is a trap: it skips even
|
|
|
|
|
# more, but its auth is "strictly ANTHROPIC_API_KEY or apiKeyHelper (OAuth
|
|
|
|
|
# and keychain are never read)" — i.e. it cannot use the subscription.
|
2026-08-01 17:14:04 +01:00
|
|
|
#
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
# STDOUT is the launcher's channel: the answer, or nothing at all if the
|
|
|
|
|
# call fails or the model doesn't know — silence is what the launcher
|
|
|
|
|
# reads as "keep the Wikipedia answer". Every reason for that silence goes
|
|
|
|
|
# to STDERR instead, which the launcher discards and a human running
|
|
|
|
|
# `qs-ask` by hand can read.
|
2026-08-01 17:14:04 +01:00
|
|
|
(pkgs.writeShellScriptBin "qs-ask" ''
|
|
|
|
|
q=$(${pkgs.coreutils}/bin/cat)
|
2026-08-01 17:21:05 +01:00
|
|
|
[ -z "$q" ] && { echo "qs-ask: no question on stdin" >&2; exit 0; }
|
2026-08-01 17:14:04 +01:00
|
|
|
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
# Claude Code derives its project state (transcripts, auto-memory) from
|
|
|
|
|
# the working directory, so run from a dedicated empty one. Combined with
|
|
|
|
|
# --no-session-persistence and --safe-mode, a launcher question leaves no
|
|
|
|
|
# trace in the real projects' history or memory.
|
|
|
|
|
work="$HOME/.cache/qs-ask"
|
|
|
|
|
${pkgs.coreutils}/bin/mkdir -p "$work" || { echo "qs-ask: cannot create $work" >&2; exit 0; }
|
|
|
|
|
cd "$work" || { echo "qs-ask: cannot enter $work" >&2; exit 0; }
|
2026-08-01 17:21:05 +01:00
|
|
|
|
2026-08-01 17:49:44 +01:00
|
|
|
# MAX_THINKING_TOKENS=0 is the single biggest win here, worth ~2.4x.
|
|
|
|
|
# Measured: Haiku defaults to extended thinking, and it spent 225 output
|
|
|
|
|
# tokens and 1.9s deliberating before emitting an 80-character answer
|
|
|
|
|
# about the height of a tower. With thinking off: 43 output tokens,
|
|
|
|
|
# time-to-first-text 2657ms -> 1122ms, wall clock 5.7s -> 2.4s, same
|
|
|
|
|
# answer. A one-line lookup has nothing to reason about.
|
|
|
|
|
#
|
2026-08-01 17:56:36 +01:00
|
|
|
# --name is not cosmetic: without it Claude Code fires a second,
|
|
|
|
|
# concurrent `source=generate_session_title` request to invent a title
|
|
|
|
|
# for a session --no-session-persistence then throws away. It costs no
|
|
|
|
|
# wall time (both requests dispatch ~1ms apart), but it spent 507 input
|
|
|
|
|
# tokens against 153 for the real question. Naming the session up front
|
|
|
|
|
# removes it: one request instead of two, 660 input tokens -> 153.
|
|
|
|
|
#
|
2026-08-01 17:49:44 +01:00
|
|
|
# For the record, two things that are NOT the bottleneck, both measured:
|
|
|
|
|
# process startup (0.12s boot + 28ms to fire the request, so keeping a
|
|
|
|
|
# warm process saves nothing) and prompt size (184 input tokens).
|
|
|
|
|
ans=$(printf '%s' "$q" | ${pkgs.coreutils}/bin/env MAX_THINKING_TOKENS=0 \
|
|
|
|
|
${pkgs.claude-code}/bin/claude -p \
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
--safe-mode \
|
|
|
|
|
--no-session-persistence \
|
|
|
|
|
--tools "" \
|
|
|
|
|
--disable-slash-commands \
|
|
|
|
|
--strict-mcp-config \
|
|
|
|
|
--permission-mode dontAsk \
|
|
|
|
|
--output-format text \
|
|
|
|
|
--model claude-haiku-4-5 \
|
2026-08-01 17:56:36 +01:00
|
|
|
--name qs-ask \
|
2026-08-02 10:46:55 +01:00
|
|
|
--system-prompt 'Answer the question in one or two short sentences, under 240 characters. Lead with the specific fact asked for, including units. The query is often bare keywords rather than a question ("shadow hunter knife classic wow"); treat that as a request for the key facts about that thing, not as unanswerable. No preamble, no caveats, no markdown, no follow-up offers. Reply with exactly UNKNOWN only when you genuinely do not know, or the answer depends on live data you do not have.' \
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
2>/dev/null) \
|
|
|
|
|
|| { echo "qs-ask: claude exited non-zero (auth expired? run 'claude' once to log in)" >&2; exit 0; }
|
2026-08-01 17:21:05 +01:00
|
|
|
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
ans=$(printf '%s' "$ans" | ${pkgs.coreutils}/bin/tr -d '\r' | ${pkgs.gnused}/bin/sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
|
2026-08-01 17:21:05 +01:00
|
|
|
|
|
|
|
|
case "$ans" in
|
qs-ask: answer via Claude Code on the subscription, not an API key
No API key and no separate billing: qs-ask now shells out to `claude -p`,
which draws on the existing subscription already authenticated on this
host. The trade is latency — Claude Code boots a Node process per
question, ~6s measured against the raw API's ~1s — so the launcher now
races Wikipedia and Claude instead of chaining them. Wikipedia fills the
card in under a second and Claude supersedes it on arrival; chaining
would have left the card blank for six seconds on every question.
Isolation, verified: --safe-mode drops CLAUDE.md, skills, hooks, plugins
and MCP while leaving auth working, which matters for correctness and not
just speed — the global CLAUDE.md here asks for caveman-mode replies and
that would have leaked into answers. --no-session-persistence writes no
transcript, and a dedicated empty cwd keeps launcher questions out of any
project's history or auto-memory. Confirmed no project namespace, no
transcript and no memory write after a run.
Not --bare, which looks right and is a trap: its auth is strictly
ANTHROPIC_API_KEY, so it cannot use the subscription at all.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-01 17:34:50 +01:00
|
|
|
"") echo "qs-ask: empty answer" >&2; exit 0 ;;
|
|
|
|
|
UNKNOWN*) echo "qs-ask: model replied UNKNOWN" >&2; exit 0 ;;
|
2026-08-01 17:21:05 +01:00
|
|
|
esac
|
2026-08-01 17:14:04 +01:00
|
|
|
printf '%s' "$ans"
|
|
|
|
|
'')
|
2026-01-20 14:35:20 +00:00
|
|
|
];
|
2026-01-20 09:59:20 +00:00
|
|
|
|
2026-01-20 14:42:21 +00:00
|
|
|
# Basic networking
|
2026-05-22 09:27:10 +01:00
|
|
|
networking.useDHCP = lib.mkForce false;
|
2026-01-20 14:42:21 +00:00
|
|
|
|
2026-05-14 12:54:19 +01:00
|
|
|
# Allow fred to act as a remote Nix builder (trusted users can import
|
|
|
|
|
# unsigned store paths sent by the build client).
|
|
|
|
|
nix.settings.trusted-users = [ "root" "fred" ];
|
|
|
|
|
|
2026-05-19 17:10:17 +01:00
|
|
|
# Automatic daily system updates
|
|
|
|
|
system.autoUpgrade = {
|
|
|
|
|
enable = true;
|
|
|
|
|
flake = "git+https://forg.gregersen.it/rope/nixos";
|
2026-06-01 09:34:29 +01:00
|
|
|
dates = "05:15";
|
2026-05-19 17:10:17 +01:00
|
|
|
allowReboot = true;
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-11 10:00:02 +01:00
|
|
|
# WAN exposure is controlled by nftables in services/router.nix +
|
|
|
|
|
# ports.toml (networking.firewall is disabled on this host).
|
2026-01-20 14:42:21 +00:00
|
|
|
services.openssh = {
|
|
|
|
|
enable = true;
|
2026-04-06 21:48:08 +01:00
|
|
|
settings = {
|
|
|
|
|
PermitRootLogin = "no";
|
|
|
|
|
PasswordAuthentication = false;
|
|
|
|
|
};
|
2026-01-20 14:42:21 +00:00
|
|
|
};
|
2026-01-20 14:35:20 +00:00
|
|
|
};
|
2026-01-20 09:59:20 +00:00
|
|
|
}
|