Compare commits
No commits in common. "output" and "main" have entirely different histories.
13 changed files with 827 additions and 2 deletions
62
.github/workflows/demon.yml
vendored
Normal file
62
.github/workflows/demon.yml
vendored
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
name: Maxwell's Demon
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
concurrency:
|
||||
group: demon-state
|
||||
cancel-in-progress: false
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
sort:
|
||||
if: "startsWith(github.event.issue.title, 'demon: sort 12 bits')"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Sort 12 bits into the lattice
|
||||
run: |
|
||||
python3 - <<'EOF'
|
||||
import datetime
|
||||
import json
|
||||
|
||||
path = "state/demon.json"
|
||||
with open(path) as fh:
|
||||
state = json.load(fh)
|
||||
state["bits_sorted"] += 12
|
||||
state["generation"] += 1
|
||||
state["demons"] += 1
|
||||
state["last_sorted_at"] = datetime.datetime.now(
|
||||
datetime.timezone.utc
|
||||
).isoformat(timespec="seconds")
|
||||
with open(path, "w") as fh:
|
||||
json.dump(state, fh, indent=2)
|
||||
fh.write("\n")
|
||||
EOF
|
||||
python3 engine/generate_entropy_svg.py
|
||||
|
||||
- name: Commit lowered entropy
|
||||
env:
|
||||
AUTHOR: ${{ github.event.issue.user.login }}
|
||||
run: |
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898470+github-actions[bot]@users.noreply.github.com"
|
||||
git add state/demon.json assets/entropy.svg
|
||||
git commit -m "chore: demon sorted 12 bits (S lowered by @${AUTHOR})"
|
||||
git pull --rebase origin "${GITHUB_REF_NAME}"
|
||||
git push
|
||||
|
||||
- name: Thank the demon and close the gate
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
ISSUE: ${{ github.event.issue.number }}
|
||||
run: |
|
||||
gh issue comment "$ISSUE" --repo "$GITHUB_REPOSITORY" --body \
|
||||
"12 bits sorted. Entropy of this README decreased by 34.4 zJ (12 × kT ln 2 at 300 K). The second law remains statistical. Thank you, demon."
|
||||
gh issue edit "$ISSUE" --repo "$GITHUB_REPOSITORY" --add-label demon
|
||||
gh issue close "$ISSUE" --repo "$GITHUB_REPOSITORY"
|
||||
37
.github/workflows/nightly.yml
vendored
Normal file
37
.github/workflows/nightly.yml
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
name: Nightly Telemetry
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "17 6 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: demon-state
|
||||
cancel-in-progress: false
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
refresh:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Refresh feed, stats, featured cards, entropy field
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
run: python3 engine/nightly.py
|
||||
|
||||
- name: Commit if changed
|
||||
run: |
|
||||
if git diff --quiet; then
|
||||
echo "no changes"
|
||||
exit 0
|
||||
fi
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "41898470+github-actions[bot]@users.noreply.github.com"
|
||||
git add README.md state/demon.json assets/entropy.svg
|
||||
git commit -m "chore: nightly telemetry refresh"
|
||||
git pull --rebase origin "${GITHUB_REF_NAME}"
|
||||
git push
|
||||
31
.github/workflows/snake.yml
vendored
Normal file
31
.github/workflows/snake.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: Generate Snake
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# Runs every 12 hours
|
||||
- cron: "0 */12 * * *"
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
generate:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Generate Snake
|
||||
uses: Platane/snk/svg-only@v3
|
||||
with:
|
||||
github_user_name: developtheweb
|
||||
outputs: |
|
||||
dist/github-contribution-grid-snake.svg
|
||||
dist/github-contribution-grid-snake-dark.svg?palette=github-dark
|
||||
|
||||
- name: Push to output branch
|
||||
uses: crazy-max/ghaction-github-pages@v4
|
||||
with:
|
||||
target_branch: output
|
||||
build_dir: dist
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.DS_Store
|
||||
__pycache__/
|
||||
*.pyc
|
||||
36
CLAUDE.md
Normal file
36
CLAUDE.md
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# CLAUDE.md
|
||||
|
||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||
|
||||
## Repository Overview
|
||||
|
||||
This is the GitHub profile repository for @developtheweb. Its README renders on the profile page and is a live system, not a static page: an animated entropy-reversal SVG whose state is lowered by visitors ("Maxwell's demon"), plus nightly-refreshed telemetry. Do not reintroduce third-party rendering services (capsule-render, readme-typing-svg, komarev, vercel stats/quotes apps) — everything renders from this repo, GitHub, or stevenmilanese.com assets.
|
||||
|
||||
## Architecture
|
||||
|
||||
```
|
||||
README.md profile page; contains marker-fenced generated sections
|
||||
engine/generate_entropy_svg.py SMIL-animated assets/entropy.svg from state/demon.json (stdlib only)
|
||||
engine/nightly.py refreshes README marker sections + bumps entropy generation (stdlib only)
|
||||
state/demon.json bits_sorted / generation / demons / last_sorted_at
|
||||
assets/entropy.svg generated — never hand-edit; regenerate via the engine
|
||||
.github/workflows/demon.yml issues:opened, title "demon: sort 12 bits" → +12 bits, regen SVG, commit, comment, close
|
||||
.github/workflows/nightly.yml cron 17 6 * * * → engine/nightly.py, commit if changed
|
||||
.github/workflows/snake.yml cron every 12h → contribution snake SVGs on the `output` branch
|
||||
```
|
||||
|
||||
## README marker sections (machine-written — edit the generators, not the sections)
|
||||
|
||||
- `<!-- FEED:START/END -->` — 4 newest Strange Quarks articles (RSS `/feed.xml` if populated, else parsed from https://stevenmilanese.com/blog HTML)
|
||||
- `<!-- STATS:START/END -->` — telemetry row with live star/repo totals
|
||||
- `<!-- FEATURED:START/END -->` — featured cards (anthropic-certs, slTrain, meowchi-releases, mpl) with live star counts
|
||||
|
||||
`engine/nightly.py` is fail-safe per section: on fetch/parse failure it leaves that section untouched and exits 0.
|
||||
|
||||
## Conventions
|
||||
|
||||
- Conventional commit messages (`feat:`, `fix:`, `chore:`, `ci:`). No attribution footers of any kind.
|
||||
- Contact is `rev@moonfactory.dev` only — the old Telegram link and the old level-host email address are retired and must not reappear.
|
||||
- Entropy formula: `S = max(12.7, 100 − 0.0002·bits_sorted)`; 12 bits per demon click = 34.4 zJ (12 × kT ln 2 at 300 K).
|
||||
- SVG regeneration is deterministic for a given `generation` — diffs stay reviewable.
|
||||
- Test locally with `python3 engine/generate_entropy_svg.py` and `GITHUB_TOKEN=$(gh auth token) python3 engine/nightly.py` (both stdlib-only; no pip installs).
|
||||
142
README.md
Normal file
142
README.md
Normal file
|
|
@ -0,0 +1,142 @@
|
|||
<div align="center">
|
||||
|
||||
# Reversing the irreversible
|
||||
|
||||
*Rev. Steven Milanese — the second law is statistical, not sacred. The demon pays its bills in bits.*
|
||||
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
<img src="assets/entropy.svg" width="100%" alt="Entropy-reversal field: particles converging from chaos into a (2,5) torus-knot lattice"/>
|
||||
|
||||
[⚡ Be the demon — sort 12 bits](https://github.com/developtheweb/developtheweb/issues/new?title=demon%3A+sort+12+bits&body=One+tap.+Submit+to+sort.)
|
||||
|
||||
<sub>Each click opens a one-tap issue; an Action sorts the field, recommits the SVG, closes the issue. This README's state is community-lowered entropy.</sub>
|
||||
</div>
|
||||
|
||||
## About the Reverend
|
||||
|
||||
```
|
||||
Reverend ≔ Physicist ⊗ Minister ⊗ Systems_Alchemist
|
||||
domain : ℝ³·¹ ⊗ CY₃(χ = ±6)
|
||||
axiom : complexity ⟼ elegance
|
||||
method : ∀ p ∈ Inconceivable — solve(p) ∨ pose(better_p)
|
||||
runtime : Arch Linux, btw
|
||||
```
|
||||
|
||||
*Written in MPL — the author's own language. Ordained minister, autodidactic polymath, natural philosopher. The ministry and the physics are the same inquiry conducted at different energy scales.*
|
||||
|
||||
## The mission — goals inconceivable by design
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td width="50%" valign="top">
|
||||
|
||||
**Reverse the irreversible**
|
||||
|
||||
Maxwell's demon on GitHub's own infrastructure, funded in Landauer's currency. *(running above)*
|
||||
|
||||
</td>
|
||||
<td width="50%" valign="top">
|
||||
|
||||
**Derive the three generations**
|
||||
|
||||
Calabi–Yau compactifications, χ = ±6. [ORCID](https://orcid.org/0009-0008-0442-208X) · [OSF](https://osf.io/3tsd4/) · [companion essays](https://stevenmilanese.com/blog/tag/calabi-yau-manifolds)
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%" valign="top">
|
||||
|
||||
**Cognitive universality**
|
||||
|
||||
[MPL](https://github.com/developtheweb/mpl): if you can write the equation, you can run it.
|
||||
|
||||
</td>
|
||||
<td width="50%" valign="top">
|
||||
|
||||
**Planetary intelligence**
|
||||
|
||||
Earth as information processor, argued in full on [Strange Quarks](https://stevenmilanese.com/blog/planetary-intelligence-earth-as-information-processor).
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- STATS:START -->
|
||||
<div align="center">
|
||||
|
||||
`10¹⁰⁶ yr until heat death — the deadline` · `2.9 zJ of order per bit sorted (kT ln 2, 300 K)` · `★ 27 stars across 14 public repos`
|
||||
|
||||
</div>
|
||||
<!-- STATS:END -->
|
||||
|
||||
## Beneath the physics — the verified inventory
|
||||
|
||||
<!-- FEATURED:START -->
|
||||
<div align="center">
|
||||
<table>
|
||||
<tr>
|
||||
<td width="50%" valign="top">
|
||||
<h3 align="center"><a href="https://github.com/developtheweb/anthropic-certs">anthropic-certs</a></h3>
|
||||
<p align="center"><code>★ 11</code></p>
|
||||
<p align="center">Verified Anthropic certifications — Claude, API, Claude Code CLI, MCP.</p>
|
||||
</td>
|
||||
<td width="50%" valign="top">
|
||||
<h3 align="center"><a href="https://github.com/developtheweb/slTrain">slTrain</a></h3>
|
||||
<p align="center"><code>★ 4</code></p>
|
||||
<p align="center">A steam locomotive for your terminal, smoke trail included.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%" valign="top">
|
||||
<h3 align="center"><a href="https://github.com/developtheweb/meowchi-releases">meowchi-releases</a></h3>
|
||||
<p align="center"><code>★ 4</code></p>
|
||||
<p align="center">A desktop pet that evolves when you actually get work done.</p>
|
||||
</td>
|
||||
<td width="50%" valign="top">
|
||||
<h3 align="center"><a href="https://github.com/developtheweb/mpl">mpl</a></h3>
|
||||
<p align="center"><code>★ 2</code></p>
|
||||
<p align="center">Mathematics Programming Language — write the equation, run the equation.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- FEATURED:END -->
|
||||
|
||||
## Latest from Strange Quarks
|
||||
|
||||
<!-- FEED:START -->
|
||||
| Article | |
|
||||
|:---|---:|
|
||||
| [THE MAJORITY THAT VOTED FOR HEMLOCK - Plato's Republic, Exegesis and Judgment](https://stevenmilanese.com/blog/the-majority-that-voted-for-hemlock-platos-republic-exegesis-and-judgment) | Sep 15, 2026 · 204 min read |
|
||||
| [What Survives the Reset](https://stevenmilanese.com/blog/what-survives-the-reset) | Aug 31, 2026 · 12 min read |
|
||||
| [The Invisible Hand's Blind Spot: A Demand Externality in Competitive Automation](https://stevenmilanese.com/blog/the-invisible-hands-blind-spot-a-demand-externality-in-competitive-automation) | Aug 19, 2026 · 61 min read |
|
||||
| [Mathematical Programming Language: A Vision for Cognitive Universality Through Unicode-Based Syntax](https://stevenmilanese.com/blog/mathematical-programming-language-a-vision-for-cognitive-universality-through-unicode-based-syntax) | Jul 28, 2025 · 19 min read |
|
||||
<!-- FEED:END -->
|
||||
|
||||
<div align="center">
|
||||
<br>
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/developtheweb/developtheweb/output/github-contribution-grid-snake-dark.svg" />
|
||||
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/developtheweb/developtheweb/output/github-contribution-grid-snake.svg" />
|
||||
<img alt="Snake animation" src="https://raw.githubusercontent.com/developtheweb/developtheweb/output/github-contribution-grid-snake.svg" />
|
||||
</picture>
|
||||
</div>
|
||||
|
||||
---
|
||||
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align="left">
|
||||
|
||||
*Founder, [MoonFactory](https://moonfactory.dev) — development and consulting.*
|
||||
|
||||
</td>
|
||||
<td align="right">
|
||||
|
||||
[stevenmilanese.com](https://stevenmilanese.com) · [Strange Quarks](https://stevenmilanese.com/blog) · [X](https://x.com/developtheweb) · [LinkedIn](https://www.linkedin.com/in/stevenmilanese/) · [ORCID](https://orcid.org/0009-0008-0442-208X) · [OSF](https://osf.io/3tsd4/) · [rev@moonfactory.dev](mailto:rev@moonfactory.dev)
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
126
assets/entropy.svg
Normal file
126
assets/entropy.svg
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="880" height="260" viewBox="0 0 880 260" role="img" aria-label="Entropy-reversal field: S = 100.0 k-bits">
|
||||
<rect x="0.5" y="0.5" width="879" height="259" rx="8" fill="#010409" stroke="#21262d"/>
|
||||
<circle r="3" fill="#4dd4e8" cx="39.3" cy="54.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="39.3;612.1;612.1;39.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="54.4;130.0;130.0;54.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="26.1" cy="156.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="26.1;609.3;609.3;26.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="156.0;141.8;141.8;156.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="553.1" cy="192.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="553.1;601.4;601.4;553.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="192.8;152.7;152.7;192.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="257.2" cy="61.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="257.2;588.9;588.9;257.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="61.2;162.2;162.2;61.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="842.4" cy="194.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="842.4;572.9;572.9;842.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="194.0;169.7;169.7;194.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="752.7" cy="188.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="752.7;554.8;554.8;752.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="188.3;175.0;175.0;188.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="254.5" cy="102.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="254.5;535.8;535.8;254.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="102.7;178.1;178.1;102.7"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="123.8" cy="125.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="123.8;517.3;517.3;123.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="125.7;179.3;179.3;125.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="631.8" cy="89.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="631.8;500.2;500.2;631.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="89.0;179.1;179.1;89.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="483.0" cy="102.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="483.0;485.4;485.4;483.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="102.1;178.1;178.1;102.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="499.5" cy="169.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="499.5;472.9;472.9;499.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="169.5;177.2;177.2;169.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="203.4" cy="72.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="203.4;462.6;462.6;203.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="72.0;176.9;176.9;72.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="650.1" cy="84.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="650.1;454.0;454.0;650.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="84.9;177.8;177.8;84.9"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="642.3" cy="220.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="642.3;446.2;446.2;642.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="220.2;180.2;180.2;220.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="44.8" cy="217.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="44.8;438.1;438.1;44.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="217.2;184.2;184.2;217.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="390.6" cy="91.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="390.6;429.0;429.0;390.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="91.2;189.5;189.5;91.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="350.7" cy="118.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="350.7;417.8;417.8;350.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="118.6;195.7;195.7;118.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="509.4" cy="173.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="509.4;404.3;404.3;509.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="173.7;202.1;202.1;173.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="170.3" cy="77.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="170.3;388.2;388.2;170.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="77.6;207.9;207.9;77.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="371.8" cy="207.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="371.8;369.9;369.9;371.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="207.0;212.3;212.3;207.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="563.1" cy="110.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="563.1;350.2;350.2;563.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="110.1;214.6;214.6;110.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="727.0" cy="236.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="727.0;330.1;330.1;727.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="236.2;214.4;214.4;236.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="727.7" cy="59.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="727.7;311.0;311.0;727.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="59.1;211.2;211.2;59.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="445.4" cy="235.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="445.4;294.2;294.2;445.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="235.4;205.2;205.2;235.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="22.2" cy="111.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="22.2;280.8;280.8;22.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="111.3;196.7;196.7;111.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="490.4" cy="72.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="490.4;271.9;271.9;490.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="72.8;186.2;186.2;72.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="740.3" cy="74.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="740.3;267.9;267.9;740.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="74.2;174.5;174.5;74.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="35.3" cy="36.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="35.3;269.0;269.0;35.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="36.5;162.2;162.2;36.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="382.8" cy="174.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="382.8;274.8;274.8;382.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="174.7;150.3;150.3;174.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="707.4" cy="171.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="707.4;284.5;284.5;707.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="171.8;139.4;139.4;171.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="624.9" cy="59.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="624.9;296.9;296.9;624.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="59.1;130.0;130.0;59.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="597.6" cy="150.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="597.6;310.8;310.8;597.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="150.0;122.3;122.3;150.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="253.8" cy="169.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="253.8;324.8;324.8;253.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="169.4;116.3;116.3;169.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="501.2" cy="118.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="501.2;337.7;337.7;501.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="118.9;111.6;111.6;118.9"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="44.4" cy="111.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="44.4;348.7;348.7;44.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="111.3;107.8;107.8;111.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="54.5" cy="87.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="54.5;357.3;357.3;54.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="87.3;104.4;104.4;87.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="405.3" cy="74.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="405.3;363.4;363.4;405.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="74.3;100.5;100.5;74.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="127.6" cy="189.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="127.6;367.5;367.5;127.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="189.0;95.7;95.7;189.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="369.4" cy="232.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="369.4;370.2;370.2;369.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="232.1;89.5;89.5;232.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="59.3" cy="175.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="59.3;372.6;372.6;59.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="175.5;81.9;81.9;175.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="318.5" cy="137.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="318.5;375.7;375.7;318.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="137.0;72.8;72.8;137.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="616.1" cy="223.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="616.1;380.6;380.6;616.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="223.5;62.7;62.7;223.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="358.5" cy="166.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="358.5;388.2;388.2;358.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="166.1;52.1;52.1;166.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="508.4" cy="109.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="508.4;398.8;398.8;508.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="109.3;41.9;41.9;109.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="49.9" cy="163.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="49.9;412.5;412.5;49.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="163.7;32.8;32.8;163.7"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="323.2" cy="225.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="323.2;429.0;429.0;323.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="225.1;25.7;25.7;225.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="258.0" cy="20.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="258.0;447.4;447.4;258.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="20.9;21.3;21.3;20.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="507.4" cy="161.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="507.4;466.7;466.7;507.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="161.1;20.0;20.0;161.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="373.8" cy="192.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="373.8;485.5;485.5;373.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="192.0;22.0;22.0;192.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="107.9" cy="229.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="107.9;502.7;502.7;107.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="229.0;27.3;27.3;229.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="814.1" cy="153.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="814.1;517.1;517.1;814.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="153.2;35.3;35.3;153.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="234.6" cy="235.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="234.6;527.8;527.8;234.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="235.4;45.6;45.6;235.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="572.8" cy="38.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="572.8;534.4;534.4;572.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="38.4;57.4;57.4;38.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="135.3" cy="32.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="135.3;536.9;536.9;135.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="32.5;69.7;69.7;32.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="330.5" cy="67.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="330.5;535.8;535.8;330.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="67.8;81.9;81.9;67.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="634.7" cy="115.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="634.7;531.9;531.9;634.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="115.1;93.2;93.2;115.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="845.1" cy="203.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="845.1;526.3;526.3;845.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="203.7;103.1;103.1;203.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="47.4" cy="24.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="47.4;520.2;520.2;47.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="24.9;111.6;111.6;24.9"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="233.1" cy="194.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="233.1;514.9;514.9;233.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="194.7;118.7;118.7;194.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="32.2" cy="77.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="32.2;511.2;511.2;32.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="77.3;124.6;124.6;77.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="707.1" cy="229.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="707.1;510.0;510.0;707.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="229.2;130.0;130.0;229.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="416.0" cy="228.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="416.0;511.2;511.2;416.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="228.6;135.4;135.4;228.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="331.4" cy="91.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="331.4;514.9;514.9;331.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="91.4;141.3;141.3;91.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="188.7" cy="45.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="188.7;520.2;520.2;188.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="45.7;148.4;148.4;45.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="153.0" cy="146.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="153.0;526.3;526.3;153.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="146.8;156.9;156.9;146.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="568.2" cy="171.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="568.2;531.9;531.9;568.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="171.2;166.8;166.8;171.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="421.3" cy="65.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="421.3;535.8;535.8;421.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="65.0;178.1;178.1;65.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="474.1" cy="176.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="474.1;536.9;536.9;474.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="176.0;190.3;190.3;176.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="503.8" cy="98.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="503.8;534.4;534.4;503.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="98.7;202.6;202.6;98.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="823.3" cy="63.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="823.3;527.8;527.8;823.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="63.1;214.4;214.4;63.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="515.7" cy="59.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="515.7;517.1;517.1;515.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="59.7;224.7;224.7;59.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="624.2" cy="238.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="624.2;502.7;502.7;624.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="238.7;232.7;232.7;238.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="32.9" cy="146.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="32.9;485.5;485.5;32.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="146.0;238.0;238.0;146.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="378.6" cy="199.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="378.6;466.7;466.7;378.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="199.3;240.0;240.0;199.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="830.6" cy="208.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="830.6;447.4;447.4;830.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="208.0;238.7;238.7;208.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="191.7" cy="120.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="191.7;429.0;429.0;191.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="120.2;234.3;234.3;120.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="187.2" cy="161.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="187.2;412.5;412.5;187.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="161.2;227.2;227.2;161.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="100.4" cy="24.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="100.4;398.8;398.8;100.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="24.3;218.1;218.1;24.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="382.9" cy="28.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="382.9;388.2;388.2;382.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="28.6;207.9;207.9;28.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="564.4" cy="39.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="564.4;380.6;380.6;564.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="39.1;197.3;197.3;39.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="392.3" cy="235.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="392.3;375.7;375.7;392.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="235.2;187.2;187.2;235.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="185.8" cy="219.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="185.8;372.6;372.6;185.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="219.6;178.1;178.1;219.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="170.5" cy="47.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="170.5;370.2;370.2;170.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="47.8;170.5;170.5;47.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="36.5" cy="69.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="36.5;367.5;367.5;36.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="69.0;164.3;164.3;69.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="846.2" cy="233.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="846.2;363.4;363.4;846.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="233.1;159.5;159.5;233.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="94.6" cy="39.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="94.6;357.3;357.3;94.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="39.9;155.6;155.6;39.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="321.3" cy="104.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="321.3;348.7;348.7;321.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="104.1;152.2;152.2;104.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="110.3" cy="187.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="110.3;337.7;337.7;110.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="187.8;148.4;148.4;187.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="173.6" cy="57.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="173.6;324.8;324.8;173.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="57.8;143.7;143.7;57.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="34.4" cy="228.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="34.4;310.8;310.8;34.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="228.3;137.7;137.7;228.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="153.8" cy="193.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="153.8;296.9;296.9;153.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="193.9;130.0;130.0;193.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="594.3" cy="92.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="594.3;284.5;284.5;594.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="92.3;120.6;120.6;92.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="806.7" cy="226.7"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="806.7;274.8;274.8;806.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="226.7;109.7;109.7;226.7"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="465.8" cy="86.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="465.8;269.0;269.0;465.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="86.2;97.8;97.8;86.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="97.5" cy="53.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="97.5;267.9;267.9;97.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="53.5;85.5;85.5;53.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="357.3" cy="53.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="357.3;271.9;271.9;357.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="53.2;73.8;73.8;53.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="848.1" cy="227.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="848.1;280.8;280.8;848.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="227.3;63.3;63.3;227.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="77.5" cy="220.1"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="77.5;294.2;294.2;77.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="220.1;54.8;54.8;220.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="748.2" cy="175.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="748.2;311.0;311.0;748.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="175.3;48.8;48.8;175.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="283.4" cy="24.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="283.4;330.1;330.1;283.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="24.4;45.6;45.6;24.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="289.1" cy="32.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="289.1;350.2;350.2;289.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="32.4;45.4;45.4;32.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="843.3" cy="124.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="843.3;369.9;369.9;843.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="124.3;47.7;47.7;124.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="302.6" cy="176.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="302.6;388.2;388.2;302.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="176.9;52.1;52.1;176.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="442.3" cy="63.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="442.3;404.3;404.3;442.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="63.0;57.9;57.9;63.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="623.8" cy="232.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="623.8;417.8;417.8;623.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="232.2;64.3;64.3;232.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="288.1" cy="171.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="288.1;429.0;429.0;288.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="171.5;70.5;70.5;171.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="708.3" cy="71.4"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="708.3;438.1;438.1;708.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="71.4;75.8;75.8;71.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="765.7" cy="98.0"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="765.7;446.2;446.2;765.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="98.0;79.8;79.8;98.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="46.1" cy="174.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="46.1;454.0;454.0;46.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="174.3;82.2;82.2;174.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="856.8" cy="61.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="856.8;462.6;462.6;856.8"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="61.3;83.1;83.1;61.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="411.0" cy="216.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="411.0;472.9;472.9;411.0"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="216.8;82.8;82.8;216.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="333.4" cy="84.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="333.4;485.4;485.4;333.4"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="84.9;81.9;81.9;84.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="145.7" cy="200.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="145.7;500.2;500.2;145.7"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="200.6;80.9;80.9;200.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="272.1" cy="62.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="272.1;517.3;517.3;272.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="62.8;80.7;80.7;62.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="245.3" cy="188.5"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="245.3;535.8;535.8;245.3"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="188.5;81.9;81.9;188.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="773.9" cy="220.2"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="773.9;554.8;554.8;773.9"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="220.2;85.0;85.0;220.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="384.5" cy="219.6"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="384.5;572.9;572.9;384.5"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="219.6;90.3;90.3;219.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="346.2" cy="186.3"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="346.2;588.9;588.9;346.2"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="186.3;97.8;97.8;186.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="73.1" cy="86.8"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="73.1;601.4;601.4;73.1"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="86.8;107.3;107.3;86.8"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="543.6" cy="174.9"><animate attributeName="cx" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="543.6;609.3;609.3;543.6"/><animate attributeName="cy" dur="11s" repeatCount="indefinite" calcMode="spline" keyTimes="0;0.64;0.82;1" keySplines="0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1" values="174.9;118.2;118.2;174.9"/></circle>
|
||||
<text x="16" y="26" font-family="ui-monospace,SFMono-Regular,Menlo,monospace" font-size="14" fill="#4dd4e8">S = 100.0 k·bits</text>
|
||||
<text x="864" y="26" text-anchor="end" font-family="ui-monospace,SFMono-Regular,Menlo,monospace" font-size="14" fill="#7ee2a8">dS/dt < 0</text>
|
||||
<text x="864" y="246" text-anchor="end" font-family="ui-monospace,SFMono-Regular,Menlo,monospace" font-size="11" fill="#8b949e">bits sorted by visitors: 12</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 52 KiB |
BIN
banner.jpeg
Normal file
BIN
banner.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
120
engine/generate_entropy_svg.py
Normal file
120
engine/generate_entropy_svg.py
Normal file
|
|
@ -0,0 +1,120 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Generate assets/entropy.svg — a SMIL-animated entropy-reversal field.
|
||||
|
||||
120 particles loop from a seeded chaos cloud into a (2,5) torus-knot
|
||||
lattice, hold, and scatter back. State (bits sorted by visitors, chaos
|
||||
generation) comes from state/demon.json. Stdlib only; deterministic for
|
||||
a given generation so regenerated output is diffable.
|
||||
"""
|
||||
|
||||
import hashlib
|
||||
import json
|
||||
import math
|
||||
import os
|
||||
import sys
|
||||
|
||||
ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
STATE_PATH = os.path.join(ROOT, "state", "demon.json")
|
||||
OUT_PATH = os.path.join(ROOT, "assets", "entropy.svg")
|
||||
|
||||
WIDTH, HEIGHT = 880, 260
|
||||
MARGIN = 20
|
||||
N_PARTICLES = 120
|
||||
KNOT_R, KNOT_r = 150, 58
|
||||
DUR = "11s"
|
||||
KEY_TIMES = "0;0.64;0.82;1"
|
||||
KEY_SPLINES = "0.25 0.1 0.25 1;0 0 1 1;0.55 0 0.45 1"
|
||||
|
||||
BG = "#010409"
|
||||
BORDER = "#21262d"
|
||||
CYAN = "#4dd4e8"
|
||||
DEEP = "#1d6f7d"
|
||||
GREEN = "#7ee2a8"
|
||||
MUTED = "#8b949e"
|
||||
|
||||
|
||||
def seeded_unit(index, generation, channel):
|
||||
"""Deterministic float in [0, 1) from particle index + generation."""
|
||||
digest = hashlib.sha256(f"{index}:{generation}:{channel}".encode()).digest()
|
||||
return int.from_bytes(digest[:8], "big") / 2**64
|
||||
|
||||
|
||||
def knot_points(n):
|
||||
"""(2,5) torus knot sampled at n points, scaled/centered to the canvas."""
|
||||
raw = []
|
||||
for i in range(n):
|
||||
t = 2 * math.pi * i / n
|
||||
rad = KNOT_R + KNOT_r * math.cos(5 * t)
|
||||
raw.append((rad * math.cos(2 * t), 0.62 * rad * math.sin(2 * t)))
|
||||
xs, ys = [p[0] for p in raw], [p[1] for p in raw]
|
||||
span_x, span_y = max(xs) - min(xs), max(ys) - min(ys)
|
||||
scale = min((WIDTH - 2 * MARGIN) / span_x, (HEIGHT - 2 * MARGIN) / span_y)
|
||||
cx, cy = (max(xs) + min(xs)) / 2, (max(ys) + min(ys)) / 2
|
||||
return [
|
||||
(WIDTH / 2 + (x - cx) * scale, HEIGHT / 2 + (y - cy) * scale)
|
||||
for x, y in raw
|
||||
]
|
||||
|
||||
|
||||
def main():
|
||||
with open(STATE_PATH) as fh:
|
||||
state = json.load(fh)
|
||||
bits = int(state.get("bits_sorted", 0))
|
||||
generation = int(state.get("generation", 0))
|
||||
entropy = max(12.7, 100 - 0.0002 * bits)
|
||||
s_label = f"{entropy:.1f}"
|
||||
|
||||
lattice = knot_points(N_PARTICLES)
|
||||
parts = [
|
||||
f'<svg xmlns="http://www.w3.org/2000/svg" width="{WIDTH}" height="{HEIGHT}" '
|
||||
f'viewBox="0 0 {WIDTH} {HEIGHT}" role="img" '
|
||||
f'aria-label="Entropy-reversal field: S = {s_label} k-bits">',
|
||||
f'<rect x="0.5" y="0.5" width="{WIDTH - 1}" height="{HEIGHT - 1}" '
|
||||
f'rx="8" fill="{BG}" stroke="{BORDER}"/>',
|
||||
]
|
||||
|
||||
for i, (lx, ly) in enumerate(lattice):
|
||||
chaos_x = MARGIN + seeded_unit(i, generation, "x") * (WIDTH - 2 * MARGIN)
|
||||
chaos_y = MARGIN + seeded_unit(i, generation, "y") * (HEIGHT - 2 * MARGIN)
|
||||
fill = DEEP if seeded_unit(i, generation, "depth") < 0.3 else CYAN
|
||||
cxv = f"{chaos_x:.1f};{lx:.1f};{lx:.1f};{chaos_x:.1f}"
|
||||
cyv = f"{chaos_y:.1f};{ly:.1f};{ly:.1f};{chaos_y:.1f}"
|
||||
parts.append(
|
||||
f'<circle r="3" fill="{fill}" cx="{chaos_x:.1f}" cy="{chaos_y:.1f}">'
|
||||
f'<animate attributeName="cx" dur="{DUR}" repeatCount="indefinite" '
|
||||
f'calcMode="spline" keyTimes="{KEY_TIMES}" keySplines="{KEY_SPLINES}" '
|
||||
f'values="{cxv}"/>'
|
||||
f'<animate attributeName="cy" dur="{DUR}" repeatCount="indefinite" '
|
||||
f'calcMode="spline" keyTimes="{KEY_TIMES}" keySplines="{KEY_SPLINES}" '
|
||||
f'values="{cyv}"/>'
|
||||
f'</circle>'
|
||||
)
|
||||
|
||||
font = 'font-family="ui-monospace,SFMono-Regular,Menlo,monospace"'
|
||||
parts.append(
|
||||
f'<text x="16" y="26" {font} font-size="14" fill="{CYAN}">'
|
||||
f'S = {s_label} k·bits</text>'
|
||||
)
|
||||
parts.append(
|
||||
f'<text x="{WIDTH - 16}" y="26" text-anchor="end" {font} '
|
||||
f'font-size="14" fill="{GREEN}">dS/dt < 0</text>'
|
||||
)
|
||||
parts.append(
|
||||
f'<text x="{WIDTH - 16}" y="{HEIGHT - 14}" text-anchor="end" {font} '
|
||||
f'font-size="11" fill="{MUTED}">bits sorted by visitors: {bits}</text>'
|
||||
)
|
||||
parts.append("</svg>")
|
||||
|
||||
svg = "\n".join(parts) + "\n"
|
||||
os.makedirs(os.path.dirname(OUT_PATH), exist_ok=True)
|
||||
with open(OUT_PATH, "w") as fh:
|
||||
fh.write(svg)
|
||||
size = os.path.getsize(OUT_PATH)
|
||||
print(f"wrote {OUT_PATH} ({size} bytes, S={s_label}, bits={bits}, gen={generation})")
|
||||
if size > 200 * 1024:
|
||||
print("error: SVG exceeds 200 KB budget", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
264
engine/nightly.py
Normal file
264
engine/nightly.py
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Nightly telemetry refresh for the profile README.
|
||||
|
||||
Updates the marker-fenced sections of README.md:
|
||||
FEED — 4 newest Strange Quarks articles (RSS if populated, else the
|
||||
server-rendered blog HTML)
|
||||
STATS — telemetry row with live star/repo totals
|
||||
FEATURED — star counts on the featured project cards
|
||||
and bumps the entropy field's chaos generation so the field differs daily.
|
||||
|
||||
Every section is fail-safe: if a fetch or parse fails, that section is left
|
||||
untouched and the script still exits 0. Stdlib only.
|
||||
"""
|
||||
|
||||
import datetime
|
||||
import html as htmllib
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import urllib.request
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
README = os.path.join(ROOT, "README.md")
|
||||
STATE_PATH = os.path.join(ROOT, "state", "demon.json")
|
||||
|
||||
SITE = "https://stevenmilanese.com"
|
||||
# The real feed. /feed.xml was a guess that 404'd for weeks while the HTML
|
||||
# fallback silently matched nothing, so the FEED table quietly froze; it now
|
||||
# also 301s here, but point at the canonical URL rather than lean on that.
|
||||
FEED_URL = f"{SITE}/rss.xml"
|
||||
BLOG_URL = f"{SITE}/blog"
|
||||
# The site publishes read-time in its own namespace — valid for strict parsers,
|
||||
# unambiguous for this one.
|
||||
MANUSCRIPT_NS = "https://stevenmilanese.com/ns/manuscript"
|
||||
|
||||
FEATURED_REPOS = [
|
||||
("anthropic-certs", "Verified Anthropic certifications — Claude, API, Claude Code CLI, MCP."),
|
||||
("slTrain", "A steam locomotive for your terminal, smoke trail included."),
|
||||
("meowchi-releases", "A desktop pet that evolves when you actually get work done."),
|
||||
("mpl", "Mathematics Programming Language — write the equation, run the equation."),
|
||||
]
|
||||
|
||||
|
||||
def fetch(url, accept=None):
|
||||
req = urllib.request.Request(url, headers={"User-Agent": "developtheweb-nightly/1.0"})
|
||||
if accept:
|
||||
req.add_header("Accept", accept)
|
||||
token = os.environ.get("GITHUB_TOKEN")
|
||||
if token and url.startswith("https://api.github.com"):
|
||||
req.add_header("Authorization", f"Bearer {token}")
|
||||
with urllib.request.urlopen(req, timeout=30) as resp:
|
||||
return resp.read().decode("utf-8", errors="replace")
|
||||
|
||||
|
||||
def gh_api(path):
|
||||
return json.loads(fetch(f"https://api.github.com{path}", accept="application/vnd.github+json"))
|
||||
|
||||
|
||||
def replace_section(text, marker, body):
|
||||
start, end = f"<!-- {marker}:START -->", f"<!-- {marker}:END -->"
|
||||
if start not in text or end not in text:
|
||||
raise ValueError(f"missing {marker} markers")
|
||||
pre = text.split(start)[0]
|
||||
post = text.split(end)[1]
|
||||
return f"{pre}{start}\n{body}\n{end}{post}"
|
||||
|
||||
|
||||
def articles_from_rss():
|
||||
"""Primary source: the site's real feed.
|
||||
|
||||
The feed carries read-time in the site's own namespace, so the meta column
|
||||
comes from the publisher rather than being scraped back out of a page.
|
||||
"""
|
||||
root = ET.fromstring(fetch(FEED_URL))
|
||||
items = []
|
||||
for item in root.iter("item"):
|
||||
title = (item.findtext("title") or "").strip()
|
||||
link = (item.findtext("link") or "").strip()
|
||||
pub = (item.findtext("pubDate") or "").strip()
|
||||
date = None
|
||||
try:
|
||||
date = datetime.datetime.strptime(pub[:16].strip(), "%a, %d %b %Y")
|
||||
except ValueError:
|
||||
pass
|
||||
mins = (item.findtext(f"{{{MANUSCRIPT_NS}}}readingMinutes") or "").strip()
|
||||
meta = f"{mins} min read" if mins.isdigit() else ""
|
||||
if title and link:
|
||||
items.append({"title": title, "url": link, "date": date, "meta": meta})
|
||||
return items
|
||||
|
||||
|
||||
def articles_from_html():
|
||||
"""Fallback: parse the blog index.
|
||||
|
||||
Written against the Manuscript's markup, which is regular enough not to
|
||||
need heuristics — each entry is a `row` div holding one anchor and one
|
||||
`meta` span:
|
||||
|
||||
<div class="row">
|
||||
<a href="/blog/<slug>">Title</a>
|
||||
<span class="meta"> JUL 28, 2025 · 19 MIN </span>
|
||||
</div>
|
||||
|
||||
The previous version looked for a thumbnail `alt=` attribute and a
|
||||
Title-Case date. The redesign has neither — no feature images on the index
|
||||
and uppercase abbreviated months — so it matched nothing and silently
|
||||
returned an empty list for weeks.
|
||||
"""
|
||||
page = fetch(BLOG_URL)
|
||||
skip = ("/blog/tag/", "/blog/author/")
|
||||
articles, seen = [], set()
|
||||
|
||||
row_re = re.compile(
|
||||
r'<a[^>]+href="(/blog/[a-z0-9][a-z0-9-]*)"[^>]*>(.*?)</a>'
|
||||
r'.{0,400}?<span[^>]*class="meta"[^>]*>(.*?)</span>',
|
||||
re.S,
|
||||
)
|
||||
for m in row_re.finditer(page):
|
||||
slug, raw_title, raw_meta = m.group(1), m.group(2), m.group(3)
|
||||
if slug.startswith(skip) or slug in seen:
|
||||
continue
|
||||
|
||||
title = htmllib.unescape(re.sub(r"<[^>]+>", "", raw_title)).strip()
|
||||
meta_text = htmllib.unescape(re.sub(r"<[^>]+>", " ", raw_meta))
|
||||
meta_text = re.sub(r"\s+", " ", meta_text).strip()
|
||||
|
||||
# "JUL 28, 2025" — uppercase, abbreviated month.
|
||||
date_m = re.search(r"([A-Za-z]{3,}) (\d{1,2}), (\d{4})", meta_text)
|
||||
if not (title and date_m):
|
||||
continue
|
||||
month, day, year = date_m.groups()
|
||||
date = None
|
||||
for fmt in ("%b %d %Y", "%B %d %Y"):
|
||||
try:
|
||||
date = datetime.datetime.strptime(f"{month.title()} {day} {year}", fmt)
|
||||
break
|
||||
except ValueError:
|
||||
continue
|
||||
if date is None:
|
||||
continue
|
||||
|
||||
mins_m = re.search(r"(\d+)\s*MIN", meta_text, re.I)
|
||||
seen.add(slug)
|
||||
articles.append({
|
||||
"title": title,
|
||||
"url": f"{SITE}{slug}",
|
||||
"date": date,
|
||||
"meta": f"{mins_m.group(1)} min read" if mins_m else "",
|
||||
})
|
||||
return articles
|
||||
|
||||
|
||||
def update_feed(text):
|
||||
articles = []
|
||||
try:
|
||||
articles = articles_from_rss()
|
||||
except Exception as exc:
|
||||
print(f"::warning title=nightly FEED rss::rss unusable ({exc}); falling back to html")
|
||||
if not articles:
|
||||
print("::warning title=nightly FEED fallback::rss yielded nothing; scraping /blog")
|
||||
articles = articles_from_html()
|
||||
dated = [a for a in articles if a["date"]]
|
||||
dated.sort(key=lambda a: a["date"], reverse=True)
|
||||
newest = dated[:4]
|
||||
if len(newest) < 4:
|
||||
raise ValueError(f"only {len(newest)} parseable articles")
|
||||
rows = ["| Article | |", "|:---|---:|"]
|
||||
for a in newest:
|
||||
title = a["title"].replace("|", "\\|")
|
||||
when = a["date"].strftime("%b %d, %Y").replace(" 0", " ")
|
||||
meta = f"{when} · {a['meta']}" if a["meta"] else when
|
||||
rows.append(f"| [{title}]({a['url']}) | {meta} |")
|
||||
return replace_section(text, "FEED", "\n".join(rows))
|
||||
|
||||
|
||||
def update_stats(text):
|
||||
repos = gh_api("/users/developtheweb/repos?per_page=100&type=owner")
|
||||
public = [r for r in repos if not r["private"]]
|
||||
stars = sum(r["stargazers_count"] for r in public)
|
||||
line = (
|
||||
"<div align=\"center\">\n\n"
|
||||
"`10¹⁰⁶ yr until heat death — the deadline` · "
|
||||
"`2.9 zJ of order per bit sorted (kT ln 2, 300 K)` · "
|
||||
f"`★ {stars} stars across {len(public)} public repos`\n\n"
|
||||
"</div>"
|
||||
)
|
||||
return replace_section(text, "STATS", line)
|
||||
|
||||
|
||||
def update_featured(text):
|
||||
cards = []
|
||||
for name, blurb in FEATURED_REPOS:
|
||||
repo = gh_api(f"/repos/developtheweb/{name}")
|
||||
cards.append(
|
||||
f'<td width="50%" valign="top">\n'
|
||||
f'<h3 align="center"><a href="{repo["html_url"]}">{name}</a></h3>\n'
|
||||
f'<p align="center"><code>★ {repo["stargazers_count"]}</code></p>\n'
|
||||
f'<p align="center">{blurb}</p>\n'
|
||||
f'</td>'
|
||||
)
|
||||
table = (
|
||||
'<div align="center">\n<table>\n'
|
||||
f'<tr>\n{cards[0]}\n{cards[1]}\n</tr>\n'
|
||||
f'<tr>\n{cards[2]}\n{cards[3]}\n</tr>\n'
|
||||
'</table>\n</div>'
|
||||
)
|
||||
return replace_section(text, "FEATURED", table)
|
||||
|
||||
|
||||
def bump_entropy():
|
||||
with open(STATE_PATH) as fh:
|
||||
state = json.load(fh)
|
||||
state["generation"] += 1
|
||||
with open(STATE_PATH, "w") as fh:
|
||||
json.dump(state, fh, indent=2)
|
||||
fh.write("\n")
|
||||
subprocess.run(
|
||||
[sys.executable, os.path.join(ROOT, "engine", "generate_entropy_svg.py")],
|
||||
check=True,
|
||||
)
|
||||
|
||||
|
||||
def warn(label, exc):
|
||||
"""Fail-safe, but never quiet.
|
||||
|
||||
Every section still degrades to 'leave it alone and exit 0' — a broken
|
||||
fetch must not wedge the profile. What changed is visibility: a section
|
||||
that stops updating now announces itself as a GitHub Actions warning
|
||||
annotation, which surfaces in the run summary instead of scrolling past in
|
||||
a log nobody opens. The FEED table sat frozen for 37 days precisely
|
||||
because a silent skip and a successful run looked identical.
|
||||
"""
|
||||
print(f"::warning title=nightly {label} skipped::{label} left untouched — {exc}")
|
||||
print(f"{label}: left untouched ({exc})", file=sys.stderr)
|
||||
|
||||
|
||||
def main():
|
||||
with open(README) as fh:
|
||||
text = fh.read()
|
||||
failures = 0
|
||||
for label, fn in (("FEED", update_feed), ("STATS", update_stats), ("FEATURED", update_featured)):
|
||||
try:
|
||||
text = fn(text)
|
||||
print(f"{label}: updated")
|
||||
except Exception as exc:
|
||||
failures += 1
|
||||
warn(label, exc)
|
||||
with open(README, "w") as fh:
|
||||
fh.write(text)
|
||||
try:
|
||||
bump_entropy()
|
||||
print("ENTROPY: regenerated")
|
||||
except Exception as exc:
|
||||
failures += 1
|
||||
warn("ENTROPY", exc)
|
||||
if failures:
|
||||
print(f"::warning title=nightly incomplete::{failures} of 4 sections did not update")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 62 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 62 KiB |
6
state/demon.json
Normal file
6
state/demon.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"bits_sorted": 12,
|
||||
"generation": 56,
|
||||
"demons": 1,
|
||||
"last_sorted_at": "2026-07-08T02:02:03+00:00"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue