<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<!--<![endif]-->
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>Private Site</title>
	<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//widgets.wp.com' />
<link rel='dns-prefetch' href='//jetpack.wordpress.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//public-api.wordpress.com' />
<link rel='dns-prefetch' href='//0.gravatar.com' />
<link rel='dns-prefetch' href='//1.gravatar.com' />
<link rel='dns-prefetch' href='//2.gravatar.com' />
<link rel='stylesheet' id='dashicons-css' href='https://maxbounty.com/wp-includes/css/dashicons.min.css?ver=6.8.1' media='all' />
<link rel='stylesheet' id='buttons-css' href='https://maxbounty.com/wp-includes/css/buttons.min.css?ver=6.8.1' media='all' />
<link rel='stylesheet' id='forms-css' href='https://maxbounty.com/wp-admin/css/forms.min.css?ver=6.8.1' media='all' />
<link rel='stylesheet' id='l10n-css' href='https://maxbounty.com/wp-admin/css/l10n.min.css?ver=6.8.1' media='all' />
<link rel='stylesheet' id='login-css' href='https://maxbounty.com/wp-admin/css/login.min.css?ver=6.8.1' media='all' />
<link rel="icon" href="https://maxbounty.com/wp-content/uploads/2025/04/maxbounty_512x512-150x150.png" sizes="32x32" />
<link rel="icon" href="https://maxbounty.com/wp-content/uploads/2025/04/maxbounty_512x512-300x300.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://maxbounty.com/wp-content/uploads/2025/04/maxbounty_512x512-300x300.png" />
<meta name="msapplication-TileImage" content="https://maxbounty.com/wp-content/uploads/2025/04/maxbounty_512x512-300x300.png" />

</head>
<body class="login wp-core-ui  locale-en-us">
<div id="login">
	<h1><a href="https://maxbounty.com/wp-login.php?redirect_to=https://maxbounty.com/news.xml" tabindex="-1">Private Site</a></h1>
	<div class="message" style="overflow: auto;">
		<p>
			You need to be logged in as a user who has permission to view this site.<br>
			<br>
			<a class="button-primary" href="https://maxbounty.com/wp-login.php?redirect_to=https://maxbounty.com/news.xml">Log in</a>
		</p>
	</div>
	<!-- wpcom_wp_footer -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/hello-elementor\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<meta id="bilmur" property="bilmur:data" content="" data-customproperties="{&quot;woo_active&quot;:&quot;0&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;hello-elementor&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="atomic"  data-site-tz="America/New_York" >
<script defer src="https://s0.wp.com/wp-content/js/bilmur.min.js?m=202524"></script>
    <script>
    document.addEventListener("DOMContentLoaded", function () {
      const closeButton = document.querySelector(".close-banner");
      const banner = document.querySelector(".hideable-banner");
      const header = document.querySelector(".sticky-header");

      // Verifica se o cookie existe e aplica a classe para ocultar antes da renderização
      if (banner) {
        if (getCookie("hideBanner") === "true") {
          banner.style.display = "none";
        } else {
          banner.classList.remove("hidden-by-default"); // Remove a ocultação se não houver cookie
        }
      }

      function updateTriggerHeight() {
        if (header) {
          return header.getBoundingClientRect().top + window.scrollY;
        }
        return 0;
      }

      let triggerHeight = updateTriggerHeight();

      if (closeButton && banner) {
        closeButton.addEventListener("click", function () {
          banner.style.display = "none";
          setCookie("hideBanner", "true", 20); // Salva por 20 segundos

          setTimeout(() => {
            triggerHeight = updateTriggerHeight();
          }, 300);
        });
      }

      if (header) {
        window.addEventListener("scroll", function () {
          if (window.scrollY > triggerHeight) {
            header.classList.add("is-sticky");
          } else {
            header.classList.remove("is-sticky");
          }
        });
      }

      function setCookie(name, value, seconds) {
        const expires = new Date();
        expires.setTime(expires.getTime() + seconds * 1000);
        document.cookie = `${name}=${value};expires=${expires.toUTCString()};path=/`;
      }

      function getCookie(name) {
        const cookies = document.cookie.split("; ");
        for (let i = 0; i < cookies.length; i++) {
          const [key, value] = cookies[i].split("=");
          if (key === name) {
            return value;
          }
        }
        return null;
      }
    });
    </script>
    			<script>
				const lazyloadRunObserver = () => {
					const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
					const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
						entries.forEach( ( entry ) => {
							if ( entry.isIntersecting ) {
								let lazyloadBackground = entry.target;
								if( lazyloadBackground ) {
									lazyloadBackground.classList.add( 'e-lazyloaded' );
								}
								lazyloadBackgroundObserver.unobserve( entry.target );
							}
						});
					}, { rootMargin: '200px 0px 200px 0px' } );
					lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
						lazyloadBackgroundObserver.observe( lazyloadBackground );
					} );
				};
				const events = [
					'DOMContentLoaded',
					'elementor/lazyload/observe',
				];
				events.forEach( ( event ) => {
					document.addEventListener( event, lazyloadRunObserver );
				} );
			</script>
			</div>
</body>
</html>
<!--
	generated in 0.377 seconds
	6968 bytes batcached for 0 seconds
-->
