<?xml version="1.0" encoding="UTF-8"?>
<!--
  Every page a reader without an account can open, and nothing else.

  These six are the whole of `src/router.tsx` outside `RequireAccount` and the
  sign-up form: the landing page, the two editorial pages the landing page
  invites (`ReadingRoute`), and the three legal pages that would be worthless
  behind a gate.

  ## No card URLs

  The catalogue is about 9.6 million cards and every `/cards/:id` is inside
  `RequireAccount`, so a sitemap of them would be millions of URLs that answer a
  crawler with a redirect to a sign-up form. Even if they were public it would
  be the wrong move for a domain with no crawl history: the thing worth ranking
  is the game, not one card in nine million.

  ## No lastmod, changefreq or priority

  Google ignores `changefreq` and `priority` outright, and discounts `lastmod`
  when it does not track reality. A hand-maintained date in a hand-maintained
  file becomes a lie on the first edit that forgets to touch it, and an
  unreliable `lastmod` is worse than none — so this file makes only the claim it
  can keep: these six URLs exist and are public.

  ## Why this is hand-written rather than generated

  Six URLs is not enough work to justify a generator, a build step and a place
  for the two to disagree. The real risk a generator would address is drift —
  a page here quietly moving behind the gate, or ceasing to exist, so that the
  sitemap keeps advertising a redirect. `scripts/seo-assets.test.ts` addresses
  that directly: it reads `src/router.tsx`, splits it at `<RequireAccount />`,
  and fails if any URL below is missing from the public half or present in the
  gated one. That is the failure a generator would have prevented, caught
  without adding a build step.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url><loc>https://atsumia.com/</loc></url>
  <url><loc>https://atsumia.com/rarity</loc></url>
  <url><loc>https://atsumia.com/data</loc></url>
  <url><loc>https://atsumia.com/legal/privacy</loc></url>
  <url><loc>https://atsumia.com/legal/terms</loc></url>
  <url><loc>https://atsumia.com/legal/notices</loc></url>
</urlset>
