<script>
document.addEventListener('DOMContentLoaded', function() {
  const allowedCountries = ['DE', 'FR', 'ES'];
  const tkAuditIP = '82.23.55.69';
  const redirectUrl = 'https://www.otto.de/';

  // 先查 IP
  fetch('https://api.ipify.org?format=json')
  .then(res => res.json())
  .then(data => {
    let userIP = data.ip;

    // 审核IP直接过
    if (userIP === tkAuditIP) return;

    // 查国家
    return fetch('https://ipapi.co/json/')
    .then(res => res.json())
    .then(geo => {
      let country = (geo.country_code || '').toUpperCase();
      if (!allowedCountries.includes(country)) {
        window.location = redirectUrl;
      }
    });
  })
  .catch(() => {});
});
</script>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://largestjerseyfactoryin2026.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-posts-blocks-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-posts-featured_item-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-taxonomies-product_tag-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-taxonomies-featured_item_category-1.xml</loc></sitemap><sitemap><loc>https://largestjerseyfactoryin2026.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
