<?xml version="1.0" encoding="UTF-8"?>
<!-- The published routes, on the canonical host play.phasmotic.studio.

     `html_handling: drop-trailing-slash` in wrangler.jsonc makes /privacy and
     /terms the canonical forms — the .html paths redirect to them — so those
     are what is listed. A <loc> pointing at a URL that redirects is a wasted
     crawl and a split signal.

     /404 is deliberately absent, and robots.txt disallows it: an error page
     has no content of its own.

     EVERY GAME ROUTE GETS AN ENTRY HERE, in the same commit that publishes the
     page, in the form https://play.phasmotic.studio/games/<slug> — no
     extension, no trailing slash. A game still under a robots.txt Disallow is
     the one exception, and it stays out until that line comes off.

     /template IS THAT EXCEPTION, PERMANENTLY, and its absence is
     asserted rather than assumed. It is the per-game route shape with no game
     in it — generated by tools/gen-games.mjs, registered in the other three
     registers, and carrying `noindex, follow` plus a robots.txt Disallow
     because there is nothing at it worth finding. tools/checks/routes.mjs
     checks that it is NOT listed here and IS disallowed; a deliberate
     omission that nothing asserts is indistinguishable from an oversight.

     Assert the <loc> entries specifically rather than the file as a substring.
     The main site recorded a CDN feature silently rewriting a served file that
     still CONTAINED the repository's own rules — second, under a second
     heading. A substring match passed that. -->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://play.phasmotic.studio/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://play.phasmotic.studio/privacy</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://play.phasmotic.studio/terms</loc>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
