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="#1d6f7d" cx="102.3" cy="194.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="102.3;612.1;612.1;102.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="194.2;130.0;130.0;194.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="249.0" cy="74.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="249.0;609.3;609.3;249.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="74.9;141.8;141.8;74.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="265.5" cy="142.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="265.5;601.4;601.4;265.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="142.3;152.7;152.7;142.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="425.2" cy="49.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="425.2;588.9;588.9;425.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="49.3;162.2;162.2;49.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="166.4" cy="67.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="166.4;572.9;572.9;166.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="67.1;169.7;169.7;67.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="324.1" cy="53.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="324.1;554.8;554.8;324.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="53.1;175.0;175.0;53.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="416.9" cy="69.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="416.9;535.8;535.8;416.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="69.5;178.1;178.1;69.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="480.5" cy="228.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="480.5;517.3;517.3;480.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="228.0;179.3;179.3;228.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="40.7" cy="174.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="40.7;500.2;500.2;40.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="174.0;179.1;179.1;174.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="366.9" cy="36.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="366.9;485.4;485.4;366.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="36.8;178.1;178.1;36.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="241.1" cy="224.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="241.1;472.9;472.9;241.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="224.9;177.2;177.2;224.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="289.3" cy="148.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="289.3;462.6;462.6;289.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="148.3;176.9;176.9;148.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="394.5" cy="218.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="394.5;454.0;454.0;394.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="218.1;177.8;177.8;218.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="469.9" cy="25.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="469.9;446.2;446.2;469.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="25.0;180.2;180.2;25.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="42.2" cy="92.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="42.2;438.1;438.1;42.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="92.1;184.2;184.2;92.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="596.3" cy="67.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="596.3;429.0;429.0;596.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="67.1;189.5;189.5;67.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="754.1" cy="181.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="754.1;417.8;417.8;754.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="181.4;195.7;195.7;181.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="822.4" 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="822.4;404.3;404.3;822.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="225.1;202.1;202.1;225.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="250.5" cy="141.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="250.5;388.2;388.2;250.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="141.0;207.9;207.9;141.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="707.0" cy="189.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="707.0;369.9;369.9;707.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="189.5;212.3;212.3;189.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="624.6" cy="194.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.6;350.2;350.2;624.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="194.1;214.6;214.6;194.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="123.2" 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="123.2;330.1;330.1;123.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.5;214.4;214.4;171.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="646.4" cy="111.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="646.4;311.0;311.0;646.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.1;211.2;211.2;111.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="471.3" cy="38.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="471.3;294.2;294.2;471.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="38.8;205.2;205.2;38.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="628.4" 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="628.4;280.8;280.8;628.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="176.0;196.7;196.7;176.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="585.8" cy="208.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="585.8;271.9;271.9;585.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="208.5;186.2;186.2;208.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="577.0" 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="577.0;267.9;267.9;577.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="186.3;174.5;174.5;186.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="498.9" cy="198.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="498.9;269.0;269.0;498.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="198.3;162.2;162.2;198.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="379.0" cy="170.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="379.0;274.8;274.8;379.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="170.8;150.3;150.3;170.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="515.5" cy="104.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="515.5;284.5;284.5;515.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="104.3;139.4;139.4;104.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="451.6" cy="234.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="451.6;296.9;296.9;451.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="234.6;130.0;130.0;234.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="550.9" cy="102.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="550.9;310.8;310.8;550.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="102.2;122.3;122.3;102.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="125.8" cy="20.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="125.8;324.8;324.8;125.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="20.3;116.3;116.3;20.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="774.6" cy="215.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="774.6;337.7;337.7;774.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="215.6;111.6;111.6;215.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="217.1" cy="182.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="217.1;348.7;348.7;217.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="182.1;107.8;107.8;182.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="616.9" cy="126.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="616.9;357.3;357.3;616.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="126.6;104.4;104.4;126.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="118.9" cy="71.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="118.9;363.4;363.4;118.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="71.5;100.5;100.5;71.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="570.8" cy="144.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="570.8;367.5;367.5;570.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="144.4;95.7;95.7;144.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="239.5" cy="110.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="239.5;370.2;370.2;239.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="110.3;89.5;89.5;110.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="588.9" cy="31.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="588.9;372.6;372.6;588.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="31.1;81.9;81.9;31.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="695.1" cy="217.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="695.1;375.7;375.7;695.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="217.6;72.8;72.8;217.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="395.4" cy="147.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="395.4;380.6;380.6;395.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="147.0;62.7;62.7;147.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="65.7" cy="65.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="65.7;388.2;388.2;65.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="65.5;52.1;52.1;65.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="737.8" cy="37.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="737.8;398.8;398.8;737.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="37.0;41.9;41.9;37.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="84.6" cy="160.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="84.6;412.5;412.5;84.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="160.7;32.8;32.8;160.7"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="473.2" cy="87.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="473.2;429.0;429.0;473.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="87.1;25.7;25.7;87.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="538.2" cy="82.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="538.2;447.4;447.4;538.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="82.3;21.3;21.3;82.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="477.8" cy="212.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="477.8;466.7;466.7;477.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="212.6;20.0;20.0;212.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="531.4" cy="227.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="531.4;485.5;485.5;531.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="227.6;22.0;22.0;227.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="638.3" cy="161.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="638.3;502.7;502.7;638.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="161.6;27.3;27.3;161.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="391.0" cy="160.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="391.0;517.1;517.1;391.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="160.1;35.3;35.3;160.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="496.5" cy="143.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="496.5;527.8;527.8;496.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="143.9;45.6;45.6;143.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="250.0" cy="33.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="250.0;534.4;534.4;250.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="33.3;57.4;57.4;33.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="602.5" 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="602.5;536.9;536.9;602.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="91.2;69.7;69.7;91.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="101.2" cy="90.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="101.2;535.8;535.8;101.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="90.5;81.9;81.9;90.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="302.7" cy="67.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="302.7;531.9;531.9;302.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="67.4;93.2;93.2;67.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="659.2" cy="201.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="659.2;526.3;526.3;659.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="201.8;103.1;103.1;201.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="773.5" cy="164.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="773.5;520.2;520.2;773.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="164.6;111.6;111.6;164.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="275.1" cy="165.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="275.1;514.9;514.9;275.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="165.3;118.7;118.7;165.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="424.0" cy="34.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="424.0;511.2;511.2;424.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="34.0;124.6;124.6;34.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="446.8" cy="35.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="446.8;510.0;510.0;446.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="35.1;130.0;130.0;35.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="322.7" cy="93.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="322.7;511.2;511.2;322.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="93.0;135.4;135.4;93.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="769.4" cy="143.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="769.4;514.9;514.9;769.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="143.4;141.3;141.3;143.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="583.0" cy="157.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="583.0;520.2;520.2;583.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="157.5;148.4;148.4;157.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="622.1" cy="117.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="622.1;526.3;526.3;622.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="117.1;156.9;156.9;117.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="23.1" cy="36.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="23.1;531.9;531.9;23.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="36.0;166.8;166.8;36.0"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="568.6" cy="58.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="568.6;535.8;535.8;568.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="58.9;178.1;178.1;58.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="634.2" cy="146.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="634.2;536.9;536.9;634.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="146.6;190.3;190.3;146.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="835.0" cy="226.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="835.0;534.4;534.4;835.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="226.6;202.6;202.6;226.6"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="161.6" cy="176.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="161.6;527.8;527.8;161.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.5;214.4;214.4;176.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="117.4" cy="91.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="117.4;517.1;517.1;117.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.0;224.7;224.7;91.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="349.5" cy="155.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="349.5;502.7;502.7;349.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="155.8;232.7;232.7;155.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="682.1" cy="62.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="682.1;485.5;485.5;682.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.9;238.0;238.0;62.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="280.1" cy="227.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="280.1;466.7;466.7;280.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.5;240.0;240.0;227.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="440.0" cy="190.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="440.0;447.4;447.4;440.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="190.5;238.7;238.7;190.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="752.7" cy="48.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="752.7;429.0;429.0;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="48.5;234.3;234.3;48.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="707.4" cy="208.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.4;412.5;412.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="208.2;227.2;227.2;208.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="599.7" cy="108.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="599.7;398.8;398.8;599.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="108.1;218.1;218.1;108.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="70.2" cy="51.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="70.2;388.2;388.2;70.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="51.1;207.9;207.9;51.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="712.3" cy="193.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="712.3;380.6;380.6;712.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="193.7;197.3;197.3;193.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="517.7" cy="175.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="517.7;375.7;375.7;517.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="175.7;187.2;187.2;175.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="108.8" cy="235.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="108.8;372.6;372.6;108.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="235.1;178.1;178.1;235.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="154.3" cy="103.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="154.3;370.2;370.2;154.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="103.9;170.5;170.5;103.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="606.5" cy="138.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="606.5;367.5;367.5;606.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="138.8;164.3;164.3;138.8"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="412.7" cy="239.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="412.7;363.4;363.4;412.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="239.3;159.5;159.5;239.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="177.3" cy="199.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="177.3;357.3;357.3;177.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="199.2;155.6;155.6;199.2"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="711.8" cy="48.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="711.8;348.7;348.7;711.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="48.4;152.2;152.2;48.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="708.0" cy="144.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="708.0;337.7;337.7;708.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="144.3;148.4;148.4;144.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="62.8" cy="222.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="62.8;324.8;324.8;62.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="222.3;143.7;143.7;222.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="482.1" cy="169.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="482.1;310.8;310.8;482.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="169.1;137.7;137.7;169.1"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="275.3" 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="275.3;296.9;296.9;275.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="24.4;130.0;130.0;24.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="407.7" cy="91.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="407.7;284.5;284.5;407.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="91.9;120.6;120.6;91.9"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="799.9" cy="179.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="799.9;274.8;274.8;799.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="179.9;109.7;109.7;179.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="395.6" cy="168.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="395.6;269.0;269.0;395.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="168.3;97.8;97.8;168.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="136.9" cy="179.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="136.9;267.9;267.9;136.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="179.8;85.5;85.5;179.8"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="684.4" cy="178.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="684.4;271.9;271.9;684.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="178.9;73.8;73.8;178.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="301.6" cy="118.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="301.6;280.8;280.8;301.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="118.5;63.3;63.3;118.5"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="602.3" cy="136.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="602.3;294.2;294.2;602.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="136.0;54.8;54.8;136.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="857.8" cy="152.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="857.8;311.0;311.0;857.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="152.9;48.8;48.8;152.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="103.6" cy="188.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="103.6;330.1;330.1;103.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="188.0;45.6;45.6;188.0"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="211.9" cy="105.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="211.9;350.2;350.2;211.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="105.3;45.4;45.4;105.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="570.5" cy="75.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="570.5;369.9;369.9;570.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="75.2;47.7;47.7;75.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="71.4" cy="146.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="71.4;388.2;388.2;71.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="146.7;52.1;52.1;146.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="802.8" cy="103.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="802.8;404.3;404.3;802.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="103.7;57.9;57.9;103.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="328.7" cy="57.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="328.7;417.8;417.8;328.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="57.6;64.3;64.3;57.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="172.8" cy="83.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="172.8;429.0;429.0;172.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="83.9;70.5;70.5;83.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="86.6" cy="27.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="86.6;438.1;438.1;86.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="27.3;75.8;75.8;27.3"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="333.0" cy="36.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="333.0;446.2;446.2;333.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="36.7;79.8;79.8;36.7"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="69.7" cy="187.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="69.7;454.0;454.0;69.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="187.9;82.2;82.2;187.9"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="115.3" cy="173.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="115.3;462.6;462.6;115.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="173.3;83.1;83.1;173.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="656.4" cy="132.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="656.4;472.9;472.9;656.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="132.4;82.8;82.8;132.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="229.3" cy="40.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="229.3;485.4;485.4;229.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="40.4;81.9;81.9;40.4"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="446.8" cy="114.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="446.8;500.2;500.2;446.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="114.4;80.9;80.9;114.4"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="796.5" cy="129.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="796.5;517.3;517.3;796.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="129.5;80.7;80.7;129.5"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="682.2" cy="51.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="682.2;535.8;535.8;682.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="51.6;81.9;81.9;51.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="301.1" cy="33.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="301.1;554.8;554.8;301.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="33.1;85.0;85.0;33.1"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="411.3" cy="149.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="411.3;572.9;572.9;411.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="149.6;90.3;90.3;149.6"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="754.7" cy="207.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="754.7;588.9;588.9;754.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="207.3;97.8;97.8;207.3"/></circle>
|
||||
<circle r="3" fill="#4dd4e8" cx="343.4" cy="155.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="343.4;601.4;601.4;343.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="155.2;107.3;107.3;155.2"/></circle>
|
||||
<circle r="3" fill="#1d6f7d" cx="389.9" cy="222.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="389.9;609.3;609.3;389.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="222.9;118.2;118.2;222.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": 55,
|
||||
"demons": 1,
|
||||
"last_sorted_at": "2026-07-08T02:02:03+00:00"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue