<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">document.addEventListener("DOMContentLoaded", function () {
	const NSFWARMY_AGE_COOKIE_NAME = typeof ageCheckCookieName !== "undefined" ? ageCheckCookieName : "nsfwarmy_age_check";
	const NSFWARMY_AGE_PRIVACY_PAGE = typeof ageCheckPrivacyPolicy !== "undefined" ? ageCheckPrivacyPolicy : "privacy-notice/";
	const NSFWARMY_AGE_TERMS_PAGE = typeof ageCheckTerms !== "undefined" ? ageCheckTerms : "terms-conditions/";

	// Check if the user has already accepted the warning
	if (localStorage.getItem(NSFWARMY_AGE_COOKIE_NAME) === "true") {
		return; // User has already accepted, do nothing
	}

	// Create warning popup HTML structure
	const warningPopup = document.createElement("div");
	warningPopup.id = "warningpopup";
	warningPopup.style.display = "none"; // Hide initially

	warningPopup.innerHTML = `
		&lt;div class="warning-bg"&gt;&lt;/div&gt;
		&lt;div class="warning-vertical-center"&gt;
			&lt;div class="warning-box"&gt;
				&lt;div class="warning-wrapper"&gt;
					&lt;div class="warning-msg"&gt;
						&lt;p&gt;&lt;span class="bigger"&gt;18+&lt;/span&gt; This site contains sexually explicit material.&lt;/p&gt;
						&lt;p&gt;Enter ONLY if you are over 18.&lt;/p&gt;
					&lt;/div&gt;
					&lt;div class="warning-buttons"&gt;
						&lt;a href="#" id="btn-enter" class="btn-enter"&gt;
							&lt;span class="btn-span-big"&gt;ENTER&lt;/span&gt;
							&lt;span class="btn-span-small"&gt;I am over 18.&lt;/span&gt;
						&lt;/a&gt;
						&lt;a href="https://google.com/" class="btn-exit"&gt;
							&lt;span class="btn-span-medium"&gt;I am under 18.&lt;/span&gt;
						&lt;/a&gt;
					&lt;/div&gt;
					&lt;div class="warning-footer"&gt;
						&lt;p&gt;
							By using the site I accept the
							&lt;a href="` + NSFWARMY_AGE_PRIVACY_PAGE + `" target="_blank"&gt;Privacy Policy&lt;/a&gt; and
							&lt;a href="` + NSFWARMY_AGE_TERMS_PAGE + `" target="_blank"&gt;Terms and Conditions&lt;/a&gt;.
						&lt;/p&gt;
					&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	`;

	// Add styles dynamically
	const styles = document.createElement("style");
	styles.textContent = `
		#warningpopup { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:999999; text-align:center; overflow:auto; color:#FFF !important; }
		#warningpopup p { color:#FFF !important; }
		#warningpopup a { text-decoration:none; color:#FFF; }
		#warningpopup .warning-bg { display:block; width:100%; height:100%; background:rgba(0,0,0,0.95); position:fixed; top:0; left:0; z-index:10; overflow:auto; }
		#warningpopup .warning-box { display:inline-block; width:660px; padding:20px; text-align:center; color:#FFF; position:relative; z-index:100; }
		#warningpopup .warning-vertical-center { position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); z-index:100; width:100%; }
		#warningpopup .warning-box .warning-wrapper { display:inline-block; width:600px; margin:0 auto; }

		#warningpopup .warning-box .warning-buttons { display:inline-block; width:100%; margin:30px 0; }
		#warningpopup .warning-box .warning-buttons a { display:inline-block; color:#FFF; font-weight:700; text-decoration:none; }
		#warningpopup .warning-box .warning-buttons a span { display:block; }
		#warningpopup .warning-box .warning-buttons a span.btn-span-big { font-size:2em; line-height:120%; }
		#warningpopup .warning-box .warning-buttons a span.btn-span-medium { font-size:1.4em; font-weight:400; }
		#warningpopup .warning-box .warning-buttons a span.btn-span-small { font-size:0.8em; font-weight:400; }
		#warningpopup .warning-box .warning-buttons a.btn-enter { padding:8px 50px; border-radius:50px; margin-bottom:10px; border:0; background-color:#51af51; }
		#warningpopup .warning-box .warning-buttons a:hover.btn-enter { background-color:#FFF; color:#51af51; }
		#warningpopup .warning-box .warning-buttons a.btn-exit { width:100%; text-decoration:underline; }
		#warningpopup .warning-box .warning-buttons a:hover.btn-exit { color:#FFF; text-decoration:none; }

		#warningpopup .warning-box .warning-msg { display:inline-block; width:100%; color:#FFF; font-size:1.1em; }
		#warningpopup .warning-box .warning-msg .bigger { font-size:2.2em; }

		#warningpopup .warning-box .warning-footer { display:inline-block; width:100%; text-align:center; }
		#warningpopup .warning-box .warning-footer a { color:#FFF; text-decoration:underline; }
		#warningpopup .warning-box .warning-footer a:hover { color:#FFF; text-decoration:none; }

		@media only screen and (max-width: 1200px) {
			#warningpopup .warning-box { width:100%; }
			#warningpopup .warning-box .warning-wrapper { width:100%; }
		}

		@media only screen and (max-width: 479px) {
			#warningpopup .warning-vertical-center { top:10%; transform:translate(-50%, -10%); }
		}
	`;

	// Append styles and popup to the document
	document.head.appendChild(styles);
	document.body.appendChild(warningPopup);

	// Show the warning popup
	setTimeout(() =&gt; {
		warningPopup.style.display = "block";
	}, 100);

	// Handle button clicks
	document.getElementById("btn-enter").addEventListener("click", function (event) {
		event.preventDefault();

		// Save the choice in localStorage
		localStorage.setItem(NSFWARMY_AGE_COOKIE_NAME, "true");

		// Smooth fade-out effect
		warningPopup.style.transition = "opacity 0.5s ease";
		warningPopup.style.opacity = "0";

		setTimeout(() =&gt; {
			warningPopup.remove();
		}, 500);
	});
});</pre></body></html>