<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//bit-line.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://bit-line.com/post-sitemap.xml</loc>
		<lastmod>2026-02-10T09:57:29+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bit-line.com/page-sitemap.xml</loc>
		<lastmod>2026-03-22T14:57:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bit-line.com/mailpoet_page-sitemap.xml</loc>
		<lastmod>2024-12-18T17:04:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bit-line.com/category-sitemap.xml</loc>
		<lastmod>2026-02-10T09:57:29+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bit-line.com/author-sitemap.xml</loc>
		<lastmod>2024-12-27T15:07:21+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO --><script>
    window.humanCaptchaSelector = 'button[type=submit]';
    window.humanCaptchaStart = Date.now();
    window.humanCaptchaMoves = 0;

    // Maus
    window.addEventListener('mousemove', () => window.humanCaptchaMoves++);

    // Touch (mobil)
    window.addEventListener('touchstart', () => window.humanCaptchaMoves++);
    window.addEventListener('touchmove', () => window.humanCaptchaMoves++);


    document.addEventListener('DOMContentLoaded', function () {
        fetch('https://apiservice.bit-line.com/captcha/init', {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' }
        })
        .then(res => res.json())
        .then(data => {
            if (!data.token) return;

            document.querySelectorAll('form').forEach(form => {
                const tokenInput = document.createElement('input');
                tokenInput.type = 'hidden';
                tokenInput.name = 'captcha_token';
                tokenInput.value = data.token;

                const durationInput = document.createElement('input');
                durationInput.type = 'hidden';
                durationInput.name = 'captcha_duration';

                const mouseInput = document.createElement('input');
                mouseInput.type = 'hidden';
                mouseInput.name = 'captcha_mouse';

                form.appendChild(tokenInput);
                form.appendChild(durationInput);
                form.appendChild(mouseInput);

                form.addEventListener('submit', () => {
                    durationInput.value = Date.now() - window.humanCaptchaStart;
                    mouseInput.value = window.humanCaptchaMoves;
                });
            });
        });
    });
    </script>