
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2011, 2012 - All Rights reserved.  **/
(function(){
var w=window,i$=function(){
if(i$.qel){
return i$.qel.apply(this,arguments);
}
};
w.i$=i$;
i$.global=w;
if(typeof (console)=="undefined"){
var f=function(){
};
console={log:f,debug:f,info:f,warn:f,error:f,assert:f};
}
i$.partial=function(f){
var _1=i$.toArray(arguments).slice(1);
return function(){
var _2=_1.slice(0),_3=i$.toArray(arguments),i=0;
for(;i<_2.length;i++){
if(_2[i]===undefined){
_2[i]=_3.shift();
}
}
_2.push.apply(_2,_3);
return f.apply(this,_2);
};
};
i$.scope=function(s,f){
var of=f;
f=function(){
return (i$.isString(of)?s[of]:of).apply(s,arguments);
};
return i$.partial.apply(this,i$.toArray(arguments).slice(1));
};
i$.error=function(_4,_5){
console.error(_5||new Error(_4));
};
i$.forEach=function(_6,f,_7){
if(_7==null){
_7=0;
}
for(var i=(_7>=0)?_7:0;i<_6.length;i++){
f(_6[i],i,_6);
}
};
i$.forIn=function(o,f){
for(var i in o){
if(Object.prototype.hasOwnProperty.call(o,i)){
f(o[i],i,o);
}
}
};
i$.each=function(o,f,s){
if(s){
f=i$.scope(s,f);
}
if(o){
if(o instanceof Array||typeof o.length==="number"){
i$.forEach(o,f);
}else{
i$.forIn(o,f);
}
}
};
i$.some=function(a,f,s){
if(s){
f=i$.scope(s,f);
}
for(var i=0;i<a.length;i++){
if(f(a[i])){
return true;
}
}
return false;
};
i$.every=function(o,f,s){
if(s){
f=i$.scope(s,f);
}
return !i$.some(o,function(_8){
return !f(_8);
});
};
i$.wrap=function(o,n,f){
var fn=o[n];
o[n]=function(){
return f.call(this,fn,arguments);
};
o[n]._wrapped=fn;
return o[n];
};
i$.unwrap=function(o,n){
var fn=o[n];
if(fn&&fn._wrapped){
o[n]=fn._wrapped;
}
return o[n];
};
i$.copyShallow=function(o){
var r=i$.isArrayLike(o)?[]:{};
i$.forIn(o,function(v,k){
r[k]=v;
});
return r;
};
var _9=function(_a,_b,_c,_d){
if(_c||_b[_d]===undefined){
_b[_d]=function(){
return this[_a][_d].apply(this[_a],arguments);
};
}
},_e=function(_f,_10,_11,_12){
if(_11||_10[_12]===undefined){
_10[_12]=function(){
return _f[_12].apply(_f,arguments);
};
}
};
i$.shadow=function(s,t,_13,_14){
i$.each(_13,i$.partial(i$.isString(s)?_9:_e,s,t,_14));
};
var _15=function(_16,c,s){
var i,p,ts=s||i$.global;
for(i=0;ts!=null,i<_16.length,p=_16[i];i++){
if(ts[p]==null){
if(c){
ts[p]={};
}else{
ts=null;
break;
}
}
ts=ts[p];
}
return ts;
};
i$.fromPath=function(n,c,s){
var _17=n.split(".");
return _15(_17,c,s);
};
i$.toPath=function(n,v,s){
var _18=n.split("."),p=_18.pop(),o=_15(_18,true,s);
o[p]=v;
return v;
};
i$.cachedFn=function(f,s){
var val;
var fn=function(){
if(!fn.called){
fn.called=true;
val=f.apply(s,arguments);
}
return val;
};
return fn;
};
i$.xhrFmts={text:function(xhr){
return xhr.responseText;
},json:function(xhr){
return !(/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(xhr.responseText.replace(/"(\\.|[^"\\])*"/g,"")))&&eval("("+xhr.responseText+")");
},xml:function(xhr){
return xhr.responseXML;
},javascript:function(xhr){
if((/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(str.replace(/"(\\.|[^"\\])*"/g,"")))){
throw new SyntaxError("Invalid characters in javascript object");
}else{
return eval("("+xhr.responseText+")");
}
}};
})();
(function(){
var i$=window.i$;
(function(ua){
var _19=function(_1a){
return parseFloat(_1a);
},_1b=[["IE",/MSIE\s*([\S]+)*/],["FF",/Firefox\/([\S]+)*/],["Opera",/Opera[\s\/]([\S]+)*/],["Safari",/Version\/([\S]+)*[\s\S]*Safari/],["Chrome",/Chrome\/([\S]+)*/],["WebKit",/AppleWebKit\/([\S]+)*/]];
i$.each(_1b,function(_1c){
var m=_1c[1].exec(ua);
if(m&&m.length>1){
i$["is"+_1c[0]]=_19(m[1]);
}
});
})(navigator.userAgent);
var _1d=document.documentMode;
if(_1d&&_1d!=5&&Math.floor(i$.isIE)!=_1d){
i$.isIE=_1d;
}
i$.isNode=function(o){
return typeof o==="object"&&typeof o.nodeType==="number"&&typeof o.nodeName==="string";
};
i$.isFunction=function(o){
return typeof o==="function"||o instanceof Function;
};
i$.isObject=function(o){
return typeof o==="object";
};
i$.isArray=function(o){
if(typeof Array.isArray==="function"){
return Array.isArray(o);
}else{
return Object.prototype.toString.call(o)==="[object Array]";
}
};
i$.isString=function(o){
return typeof o==="string";
};
i$.isNumber=function(o){
return typeof o==="number";
};
i$.isBoolean=function(o){
return typeof o==="boolean";
};
i$.isLikeArray=function(o){
return o instanceof Array||typeof o.length==="number";
};
i$.toArray=function(o){
return Array.prototype.slice.call(o);
};
if(i$.isIE){
var _1e=i$.toArray;
i$.toArray=function(o){
try{
return _1e(o);
}
catch(err){
var a=new Array(o.length);
for(var i=0;i<o.length;i++){
a[i]=o[i];
}
return a;
}
};
}
var _1f=(document.readyState==="complete"),_20=[],_21=[],_22=false;
i$._initPage=function(){
var fn;
_1f=true;
if(window.detachEvent){
window.detachEvent("onload",i$._initPage);
}
while(_20.length>0){
if(fn=_20.shift()){
try{
fn();
}
catch(err){
console.log(err);
}
}
}
};
i$._exitPage=function(){
var fn;
while(_21.length>0){
if(fn=_21.shift()){
try{
fn();
}
catch(err){
console.log(err);
}
}
}
};
i$._addEvent=function(e,f,o){
var w=o?o:window;
var s=w.attachEvent?e:e.substring(2);
var a=w.attachEvent||w.addEventListener;
a(s,function(){
f.apply(w,arguments);
},false);
};
if(!_1f){
i$._addEvent("onload",i$._initPage);
if(document.addEventListener){
document.addEventListener("DOMContentLoaded",i$._initPage,false);
}
}
i$.addOnLoad=function(f,o){
if(o){
f=i$.scope(o,f);
}
if(_1f){
f();
}else{
_20.push(f);
}
};
i$.addOnUnload=function(f,o){
if(!_22){
i$._addEvent("onunload",i$._exitPage);
_22=true;
}
if(o){
f=i$.scope(o,f);
}
_21.push(f);
};
var mx=function(o,m){
for(var p in m){
if(m.hasOwnProperty(p)){
o[p]=m[p];
}
}
},mxn=function(o,m,_23){
i$.forEach(_23,function(p){
if(m.hasOwnProperty(p)){
o[p]=m[p];
}
});
};
i$.mash=function(o){
i$.forEach(arguments,function(v){
mx(o,v);
},1);
return o;
};
i$.mashSpec=function(n,o){
i$.forEach(arguments,function(v){
mxn(o,v,n);
},2);
return o;
};
i$.augment=function(f){
var r=f;
if(f&&f.prototype){
f=f.prototype;
i$.mash.apply(i$,arguments);
}
return r;
};
i$.make=(function(){
var l=function(){
};
return function(o){
l.prototype=o;
o=new l();
return i$.mash.apply(i$,arguments);
};
})();
var _24=/^\s+/g;
i$.trim=function(str){
str=str.replace(_24,"");
var i=str.length-1;
while(str.charAt(i)==" "||str.charAt(i)=="\t"||str.charAt(i)=="\n"||str.charAt(i)=="\r"){
i--;
}
return str.substring(0,i+1);
};
var _25=i$.isArray,_26=i$.isObject;
i$.merge=function(_27,_28,_29){
var _29=_29||[],v,c;
_28=_28||i$.global;
if(_25(_27)&&_25(_28)){
_28.push.apply(_28,_27);
}else{
for(var x in _27){
if(_27.hasOwnProperty(x)){
v=_27[x],c=_28[x];
if(c!=null&&((_25(v)&&_25(c))||(_26(v)&&_26(c)))){
_28[x]=i$.merge(v,c,_29.concat(x));
}else{
_28[x]=v;
}
}
}
}
return _28;
};
var _2a;
i$.isRTL=function(_2b){
if(!_2a){
_2a=i$.fromPath("ibmCfg.themeConfig.RTLMap");
}
var _2c=_2a||{"iw":1,"he":1,"ar":1};
return (_2b.substring(0,2) in _2c);
};
})();


}catch(e){console.log("Module 'wp_client_main': ",e);}
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2011, 2012 - All Rights reserved.  **/
(function(){
var i$=window.i$;
i$.Promise=function(){
this._cbs=[];
this._stat=-1;
};
i$.promise={};
i$.promise.Promise=i$.Promise;
i$.mash(i$.promise,{isPromise:function(o){
return o&&i$.isFunction(o.then);
},resolved:function(o){
var p=new i$.Promise();
p.resolve(o);
return p;
},rejected:function(_1){
var p=new i$.Promise();
p.reject(_1);
return p;
},join:function(_2){
var _3=new i$.Promise(),_4=new Array(_2.length),_5=0,_6=false,_7=function(){
if(++_5>=_4.length){
_3[_6?"reject":"resolve"](_4);
}
};
if(_2.length>0){
i$.each(_2,function(p,i){
p.then(function(v){
_4[i]=v;
_7();
},function(e){
_6=true;
_4[i]=e;
_7();
});
});
}else{
_3.resolve([]);
}
return _3;
}});
i$.mash(i$,{when:function(o){
return i$.promise.isPromise(o)?o:i$.promise.resolved(o);
},whenAll:function(o){
var a=[];
i$.each(arguments,function(p){
a.push(i$.when(p));
});
return i$.promise.join(a);
}});
i$.promise.when=i$.when;
i$.promise.whenAll=i$.whenAll;
i$.Promise.prototype={_fin:function(v,s){
if(this._stat!==-1){
throw new Error("Promise already resolved");
}
this._v=v;
this._stat=s;
this._cbk();
return this;
},_cbk:function(){
var st=this._stat,_8=this._cbs,v=this._v,f;
if(st===0){
if(i$.promise.isPromise(v)){
while(_8.length>0){
v.then.apply(v,_8.shift());
}
}
}
while(_8.length>0){
f=_8.shift()[st];
if(f){
try{
f(v);
}
catch(err){
}
}
}
},_delegate:function(fn){
var p=new i$.Promise();
this.then(i$.partial(fn,p),i$.scope(p,"reject"));
return p;
},resolve:function(v){
return this._fin(v,0);
},reject:function(e){
return this._fin(e,1);
},progress:function(p){
i$.each(this._cbs,function(_9){
if(_9[2]){
_9[2](p);
}
});
return this;
},then:function(_a,_b,_c){
var p=new i$.Promise();
this._cbs.push([function(v){
try{
if(_a){
var rv=_a(v);
if(rv!==undefined){
v=rv;
}
}
p.resolve(v);
}
catch(exc){
p.reject(exc);
}
},function(e){
var rv=e;
try{
if(_b){
rv=_b(e);
if(rv===undefined){
rv=e;
}
}
}
catch(exc){
rv=exc;
}
p.reject(rv);
},_c]);
if(this._stat!==-1){
this._cbk();
}
return p;
},call:function(_d,_e){
return this._delegate(function(p,_f){
if(_f&&i$.isFunction(_f[_d])){
p.resolve(_f[_d].apply(_f,_e));
}else{
p.reject(new Error(_d+" is not a function on "+o));
}
});
},get:function(_10){
return this._delegate(function(p,_11){
if(_11){
p.resolve(_11[_10]);
}else{
p.reject(new Error(_11+" is null or undefined"));
}
});
}};
i$.onLoadPromise=new i$.Promise();
i$.addOnLoad(function(){
i$.onLoadPromise.resolve(true);
});
})();
(function(){
var i$=window.i$;
i$.getXHR=typeof XMLHttpRequest!=="undefined"?function(){
return new XMLHttpRequest();
}:function(){
return new ActiveXObject("MSXML2.XMLHTTP.3.0");
};
i$.toQuery=function(o){
var q=[];
var enc=encodeURIComponent;
i$.each(o,function(v,k){
var key=enc(k)+"=";
if(i$.isString(v)){
q.push(key+enc(v));
}else{
if(i$.isArray(v)){
var key=enc(k)+"=";
i$.each(v,function(av,i){
q.push(key+enc(av));
});
}
}
});
return q.join("&");
};
i$.addQueryString=function(u,o){
if(o){
var p=u&&u.indexOf("?")!==-1,t=p?"&":"?";
u+=t+i$.toQuery(o);
}
return u;
};
i$.fromQuery=function(q){
var o={};
var dec=decodeURIComponent;
i$.each(q.split("&"),function(av,i){
var p=av.split("="),k=dec(p[0]),v=dec(p[1]),cv=o[k];
if(cv){
if(!i$.isArray(cv)){
cv=o[k]=[cv];
}
cv.push(v);
}else{
o[k]=v;
}
});
return o;
};
i$.xhr=function(_12,_13){
var _12=_12||"GET",_14=new i$.Promise(),url=_13.url||"",_15=_13.sync||false,cb=_13.callback||function(){
},_16=_13.responseType||"text",_17=_13.postData||null,_18=_13.timeout||null,xhr=i$.getXHR(),_19=false,_1a=false;
var _1b=function(){
if(xhr.readyState===4){
xhr.onreadystatechange=i$.isIE<=8?new Function():null;
var _1c=function(){
if(xhr.status>=400){
var err=new Error(xhr.status+": "+xhr.responseText);
try{
cb(err,xhr);
}
finally{
if(!_19){
_19=true;
_14.reject({data:err,xhr:xhr});
}
}
}else{
try{
var ret="";
if(i$.xhrFmts[_16]){
ret=i$.xhrFmts[_16](xhr);
}
}
catch(err){
cb(err,xhr);
return;
}
try{
cb(ret,xhr);
}
finally{
if(!_19){
_19=true;
_14.resolve({data:ret,xhr:xhr});
}
}
}
};
if(xhr.timeout){
window.setTimeout(function(){
if(!_1a){
_1c();
}
},0);
}else{
_1c();
}
}
};
if(!_15){
xhr.onreadystatechange=_1b;
}
xhr.open(_12,url,!_15);
i$.each(_13.headers,function(v,k){
xhr.setRequestHeader(k,v);
});
if(_18){
xhr.timeout=_18;
xhr.ontimeout=function(){
_1a=true;
if(!_19){
_19=true;
_14.reject({data:"timeout",xhr:xhr});
}
};
}
xhr.send(_17);
if(_15){
_1b();
}
return _14;
};
i$.each(["Get","Put","Post","Delete"],function(m){
i$["xhr"+m]=i$.partial(i$.xhr,m.toUpperCase());
});
i$.loadScript=function(_1d){
var _1e=document.getElementsByTagName("head")[0],_1f=document.createElement("script"),_20=new i$.Promise(),_21=false,_22=function(_23,_24){
_1f.onreadystatechange=_1f.onload=null;
_21=true;
_20[_23?"resolve":"reject"](_24);
if(_1d.callback){
_1d.callback(_23,_24);
}
_1e.removeChild(_1f);
_1f=null;
};
_1f.type="text/javascript";
_1f.onreadystatechange=function(){
if(this.readyState==="loaded"||this.readyState==="complete"){
_22(true);
}
};
_1f.onload=function(){
_22(true);
};
i$.each(_1d.scriptAttrs,function(v,k){
if(v!=null){
_1f.setAttribute(k,v);
}
});
_1f.src=_1d.url;
_1e.appendChild(_1f);
if(_1d.timeout){
setTimeout(function(){
if(!_21){
_22(false,new Error("Timeout exceeded"));
}
},_1d.timeout);
}
return _20;
};
})();
(function(){
var i$=window.i$;
if(typeof (JSON)!="undefined"&&JSON.parse){
i$.fromJson=function(str){
return JSON.parse(str);
};
i$.toJson=function(obj,_25){
return JSON.stringify(obj,null,_25?"\t":"");
};
}else{
i$.fromJson=function(str){
return eval(["(",str,")"].join(""));
};
var _26=function(str){
return ["\"",str.replace(/[\\]/g,"\\\\").replace(/["]/g,"\\\"").replace(/[\r]/g,"\\r").replace(/[\n]/g,"\\n").replace(/[\b]/g,"\\b").replace(/[\t]/g,"\\t").replace(/[\f]/g,"\\f"),"\""].join("");
},_27=function(obj,p,_28,_29){
var ap,_2a;
if(_28){
_29=_29||"";
_2a=_29+"\t";
}
if(obj===null){
p.push("null");
}else{
if(obj===undefined){
p.push("undefined");
}else{
if(i$.isBoolean(obj)||i$.isNumber(obj)){
p.push(obj);
}else{
if(i$.isString(obj)){
p.push(_26(obj));
}else{
if(i$.isFunction(obj.toJson)){
p.push(obj.toJson());
}else{
if(i$.isArray(obj)){
p.push("[");
ap=[];
i$.each(obj,function(el){
var _2b=[];
_27(el,_2b,_28,_2a);
ap.push(_2b.join(""));
});
if(ap.length>0){
if(_28){
p.push("\n"+_2a);
}
p.push(ap.join(_28?",\n"+_2a:","));
if(_28){
p.push("\n"+_29);
}
}
p.push("]");
}else{
if(i$.isObject(obj)){
p.push("{");
ap=[];
i$.each(obj,function(el,key){
var _2c=[_26(key),": "];
_27(el,_2c,_28,_2a);
ap.push(_2c.join(""));
});
if(ap.length>0){
if(_28){
p.push("\n"+_2a);
}
p.push(ap.join(_28?",\n"+_2a:","));
if(_28){
p.push("\n"+_29);
}
}
p.push("}");
}
}
}
}
}
}
}
};
i$.toJson=function(obj,_2d){
var p=[];
_27(obj,p,_2d);
return p.join("");
};
}
i$.xhrFmts.json=function(xhr){
return i$.fromJson(xhr.responseText);
};
})();
(function(){
var i$=window.i$;
var _2e=function(){
this._evts={};
},_2f=function(_30,_31){
return _30._evts[_31]||(_30._evts[_31]={l:[],b:[]});
},add=function(_32,_33,_34,fn){
var e=_2f(_32,_33),c=e[_34].push(fn);
return [_33,_34,c-1];
},_35=function(_36,_37){
var e=_2f(_36,_37[0]);
delete e[_37[1]][_37[2]];
},_38=function(evt,_39,_3a){
var _3b=evt.b,_3a=_3a||0,b,r;
for(var i=_3a;i<_3b.length;i++){
b=_3b[i];
if(b){
_39=typeof _39==="undefined"?[]:_39;
r=b.apply(null,_39||[]);
if(i$.promise.isPromise(r)){
return r.then(function(_3c){
if(_3c!==false){
return _38(evt,_39,i+1);
}
return _3c;
});
}
}
}
},_3d=function(evt,_3e){
var _3f=evt.l,l;
for(var i=0;i<_3f.length;i++){
l=_3f[i];
if(l){
l.apply(null,_3e||[]);
}
}
},_40=function(_41,_42,_43){
var e=_2f(_41,_42);
return i$.when(_38(e,_43)).then(function(_44){
if(_44!==false){
_3d(e,_43);
}
return _44;
});
};
i$.augment(_2e,{addListener:function(_45,fn){
return add(this,_45,"l",fn);
},removeListener:function(_46){
return _35(this,_46);
},addBroker:function(_47,fn){
return add(this,_47,"b",fn);
},removeBroker:function(_48){
return _35(this,_48);
},fireEvent:function(_49,_4a){
return _40(this,_49,_4a);
}});
var _4b=new _2e();
i$.each(["addListener","removeListener","addBroker","removeBroker","fireEvent"],function(n){
i$[n]=i$.scope(_4b,n);
});
})();
(function(){
var i$=window.i$;
var _4c=document.createElement("div");
i$.byId=function(id){
if(i$.isNode(id)){
return id;
}else{
return document.getElementById(id);
}
};
i$.createDom=function(_4d,_4e,_4f){
var el=document.createElement(_4d);
i$.each(_4e,function(v,k){
el.setAttribute(k,v);
});
if(_4f){
_4f.appendChild(el);
}
return el;
};
var _50=_4c.addEventListener?function(n){
return n.indexOf("on")==0?n.substr(2):n;
}:function(n){
return n.indexOf("on")!=0?"on"+n:n;
},add=_4c.addEventListener?function(_51,_52,f){
_51.addEventListener(_52,f,false);
}:function(_53,_54,f){
_53.attachEvent(_54,f);
},_55=_4c.removeEventListener?function(_56,_57,f){
_56.removeEventListener(_57,f,false);
}:function(_58,_59,f){
_58.detachEvent(_59,f);
};
i$.isDescendant=function(_5a,anc){
if(anc){
while(_5a){
if(_5a==anc){
return true;
}
_5a=_5a.parentNode;
}
}
return false;
};
i$.bindDomEvt=function(_5b,_5c,f){
_5c=_50(_5c);
if((_5c=="mouseleave"||_5c=="mouseenter")&&!i$.isIE){
var fp=f;
_5c=_5c=="mouseleave"?"mouseout":"mouseover";
f=function(e){
if(!i$.isDescendant(e.relatedTarget,_5b)){
return fp.call(this,e);
}
};
}
add(_5b,_5c,f);
return [_5b,_5c,f];
};
i$.unbindDomEvt=function(_5d){
if(_5d[0]){
_55(_5d[0],_5d[1],_5d[2]);
}
_5d.splice(0,3);
};
if("classList" in _4c){
i$.mash(i$,{addClass:function(_5e,_5f){
_5e&&_5e.classList&&_5e.classList.add(_5f);
},removeClass:function(_60,_61){
_60&&_60.classList&&_60.classList.remove(_61);
},hasClass:function(_62,_63){
return _62&&_62.classList&&_62.classList.contains(_63);
},toggleClass:function(_64,_65){
_64&&_64.classList&&_64.classList.toggle(_65);
}});
}else{
var _66=function(str,_67){
if(!str){
return -1;
}
var len=_67.length,i=str.indexOf(_67),_68,_69;
while(i>-1){
_69=str.charAt(i+len);
_68=str.charAt(i-1);
if((!_69||_69==" ")&&(!_68||_68==" ")){
break;
}
i=str.indexOf(_67,i+1);
}
return i;
};
i$.mash(i$,{addClass:function(_6a,_6b){
if(!_6a){
return;
}
if(_66(_6a.className,_6b)<0){
_6a.className+=" "+_6b;
}
},removeClass:function(_6c,_6d){
if(!_6c){
return;
}
var str=_6c.className,len=_6d.length,i=_66(str,_6d),val=[];
if(i>-1){
if(i>0){
val.push(str.substring(0,i));
}
if(str.length>i+len){
val.push(str.substr(i+len));
}
_6c.className=i$.trim(val.join());
}
},hasClass:function(_6e,_6f){
if(!_6e){
return;
}
return _66(_6e.className,_6f)>-1;
},toggleClass:function(_70,_71){
if(!_70){
return;
}
i$[i$.hasClass(_70,_71)?"removeClass":"addClass"](_70,_71);
}});
}
})();
(function(){
var i$=window.i$;
var _72=/([^_]+)_([^_]+)_deferred_?([\d]+)?/,_73=/alternate/i,_74=function(t){
return document.getElementsByTagName(t);
},_75=function(){
return _74("head")[0];
},_76=function(url){
i$.createDom("link",{rel:"stylesheet",type:"text/css",href:url},_75());
return i$.promise.resolved();
},_77=function(url){
return i$.loadScript({url:url});
},_78=function(mod){
return i$.xhrGet({url:mod.url,headers:{"X-IBM-XHR":"true"},responseType:"text"}).then(function(_79){
return {mod:mod,data:_79.data};
});
},_7a=function(_7b){
i$.each(_7b,function(_7c){
var m=_7c.mod;
var _7d=m.node.parentNode;
var _7e=m.p!="head"?m.node:null;
var _7f=document.createDocumentFragment(),tmp=i$.createDom("div");
tmp.innerHTML=_7c.data;
while(tmp.firstChild){
_7f.appendChild(tmp.firstChild);
}
_7d.insertBefore(_7f,_7e);
});
},_80=function(_81){
if(_73.test(_81.rel)){
var id=_81.id,_82=id.match(_72);
if(_82){
return {node:_81,url:_81.href,id:id,p:_82[1],t:_82[2],i:_82[3]};
}
}
},_83=function(){
var m={head:[],config:[]},_84={},_85={length:0},_86=_74("link"),_87=_74("a");
i$.each([_86,_87],function(_88){
i$.each(_88,function(_89){
var mod=_80(_89);
if(mod&&!_84[mod.id]){
_84[mod.id]=mod;
if(!_85[mod.t]){
_85[mod.t]=[];
_85.length=_85.length+1;
}
_85[mod.t].push(mod);
}
});
});
return _85;
},_8a=function(_8b){
var _8c=[];
var _8d=[];
i$.each(_8b["markup"],function(mod){
_8d.push(_78(mod));
});
return i$.whenAll.apply(this,_8d).then(function(_8e){
_8c=_8e;
_8d=[];
i$.each(_8b["css"],function(mod){
_8d.push(_76(mod.url));
});
return i$.whenAll.apply(this,_8d);
},function(err){
console.log("Error: ",err);
}).then(function(_8f){
return _90(_8b["js"]);
}).then(function(){
_7a(_8c);
});
},_90=function(_91){
var m=_91.shift(),p;
if(m){
p=_77(m.url);
}
return i$.when(p).then(function(){
return _91.length>0?_90(_91):true;
},function(err){
console.log("Error: ",err);
});
},_92=false,_93=null,_94=false,_95=false,_96=new i$.Promise(),_97=function(cbk){
i$.addOnLoad(function(){
if(!_92){
_93=_83();
_94=_93.length>0?false:true;
if(_94){
_96.resolve();
}
_92=true;
}
if(cbk){
cbk();
}
});
};
i$.modules={};
i$.mash(i$.modules,{areLoaded:function(){
return _94;
},areLoading:function(){
return _95;
},loadDeferred:function(){
if(_95){
return _96;
}
var cbk=function(){
if(!_94){
_95=true;
_8a(_93).then(function(){
_94=true;
_95=false;
_96.resolve();
},function(e){
_96.reject(e);
});
}
};
_97(cbk);
return _96;
},addAfterLoaded:function(f){
var cbk=function(){
_96.then(f);
};
_97(cbk);
}});
var _98=i$.addOnLoad,_99=[];
i$.addOnLoad=function(f,o){
if(_95){
if(o){
f=i$.scope(o,f);
}
_99.push(f);
}else{
_98(f,o);
}
};
i$.modules.addAfterLoaded(function(){
while(_99.length>0){
if(fn=_99.shift()){
fn();
}
}
});
})();
(function(){
var i$=window.i$;
i$.getCookie=function(n){
var cs=document.cookie.split(";"),c="",_9a=0,cn="",cv=null;
for(var i=0;i<cs.length;i++){
c=cs[i];
_9a=c.indexOf("=");
cn=_9a<0?null:i$.trim(c.substring(0,_9a));
if(cn==n){
if(c.length>1){
cv=_9a<0?null:i$.trim(c.substring(_9a+1,c.length));
}
return cv;
}
}
return null;
};
i$.setCookie=function(n,v,e,p,d,s){
if(!e){
var m=new Date().getTime();
m+=(1000*60*60*24*365*100);
e=new Date(m);
}
var c=n+"="+v+((e)?"; e="+e.toGMTString():"")+((p)?"; path="+p:"; path=/")+((d)?"; domain="+d:"")+((s)?"; secure":"");
document.cookie=c;
};
i$.deleteCookie=function(n,p,d){
if(i$.getCookie(n)){
document.cookie=n+"="+((p)?"; path="+p:"; path=/")+((d)?"; domain="+d:"")+"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
};
})();


}catch(e){console.log("Module 'wp_client_ext': ",e);}
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2011, 2012 - All Rights reserved.  **/
(function(){
var i$=window.i$;
var _1=i$.log={};
var _2=[];
var _3=function(_4,_5){
return _4.replace(/\$\{([^\s\:\}]+)(?:\:([^\s\:\}]+))?\}/g,function(_6,_7,_8){
var _9=_5[_7];
return _9;
});
};
i$.Logger=function(_a){
this.name=_a?_a:null;
};
_1.Logger=i$.Logger;
i$.mash(_1,{LEVEL_TRACE:500,LEVEL_INFO:800,LEVEL_WARNING:900,LEVEL_SEVERE:1000});
var _b=_1.LEVEL_INFO;
var _c=_1.LEVEL_WARNING;
var _d=_1.LEVEL_SEVERE;
i$.mash(_1,{getLogger:function(_e){
if(!_2[_e]){
_2[_e]=new i$.Logger(_e);
}
return _2[_e];
},setTraceConfig:function(_f,_10){
console.log("IMPORTANT: In order to enable tracing you need to configure module wp_client_tracing to be downloaded.");
}});
i$.getLogger=i$.log.getLogger;
i$.setTraceConfig=i$.log.setTraceConfig;
i$.Logger.prototype={info:function(_11,_12,_13){
this.log(_b,_11,_12,_13);
},warning:function(_14,_15,_16){
this.log(_c,_14,_15,_16);
},severe:function(_17,_18,_19){
this.log(_d,_17,_18,_19);
},log:function(_1a,_1b,_1c,_1d){
if((_1d&&!i$.isArray(_1d))||_1d===false){
_1d=[_1d];
}
var _1e=this.name;
var _1f=_1d?_3(_1c.toString(),_1d):_1c;
var _20="ibmStatusBox";
var _21="/portal/status";
var _22=i$.fireEvent;
var _23=com.ibm.widgets.StatusMessage;
var _24=null;
if(_1a==_d){
_24="error";
}else{
if(_1a==_c){
_24="warning";
}else{
if(_1a==_b){
_24="info";
}
}
}
if(_24){
_22(_21,[{message:new _23(_24,_1e+" "+_1b+": "+_1f,""),uid:_20}]);
}
}};
})();


}catch(e){console.log("Module 'wp_client_logging': ",e);}
try{

}catch(e){console.log("Module 'wp_client_tracing': ",e);}
try{(function(){var h=window;function k(e){for(var g=l.call(arguments,1),c,b=g,d=b.length,a=[];d;)void 0===b[--d]&&a.unshift(d);c=a;return function(){for(var a=g.slice(),b=c.length;b;)a[c[--b]]=arguments[b];m.apply(a,l.call(arguments,c.length));return e.apply(void 0,a)}}function p(e,g,c){for(var b=e.split("."),d=b.length-1,a=c,f=0;f<d;){var n=b[f++],j;if(!(j=a[n]))j={},a[n]=j;a=j}b=b[f];c=k(g,c);d=a;if(!(f=d[b]))c=c(),f=d[b]=c;a=f;a.clone=k(p,e,g);return a}var q=h.Array.prototype,l=q.slice,m=q.push;
p("wpModules.modules",function(e){return{create:k(p,void 0,void 0,e),partial:k}},h);}());
}catch(e){console.log("Module 'wp_modules': ",e);}
try{(function(){var g=window;function j(a,c){var b,d;for(d=c.length-1;0<=d;--d)if(b=c[d],b===a)return d;return-1}function k(a,c,b){return b.setAttribute(a,c)}function l(a,c){return c.removeAttribute(a)}function m(a,c,b){return c?b.setAttribute(a,a):b.removeAttribute(a)}function n(a,c){var b=c.className.split(" "),d=j(a,b);0>d?b.push(a):b.splice(d,1);c.className=b.join(" ");return!0}function p(a,c){var b=c.className.split(" ");0>j(a,b)?(b.push(a),c.className=b.join(" "),b=!0):b=!1;return b}
function q(a,c){var b=c.className.split(" "),d=j(a,b);0<=d?(b.splice(d,1),c.className=b.join(" "),b=!0):b=!1;return b}function r(a,c,b){return c?p(a,b):q(a,b)}function s(a,c){return a&&c?c.getAttribute("data-"+a):void 0}function t(a){return a?a.innerText||a.textContent:void 0}function u(a,c){var b=s(a,c),d;b&&((d=b&&c?c.ownerDocument.getElementById(b):void 0)||(d=u(b,c)));return d}function v(a,c){var b,d,e;if(w(a)){d=0;e=a.length;for(b=c;d<e&&b;)b=u(a[d++],b)}else b=u(a,c);return b}
function x(a,c,b){for(var d=arguments,e=2,h=d.length,f=a.createElement(c);e<h;)k(d[e++],d[e++],f);return f}function y(a){var c=a.parentNode;c&&c.removeChild(a);return a}function z(a,c,b){c.addEventListener(a,b,!1)}function A(a,c,b){c.removeEventListener(a,b,!1)}function B(a,c){var b=c||a.oninput,d,e;b&&(d=a.ownerDocument,e=b.bind(a),z("focus",a,C(z,"selectionchange",d,e)),z("blur",a,C(A,"selectionchange",d,e)));return b}
function D(a,c){var b=c||a.event;b&&(b.stopPropagation&&b.stopPropagation(),b.cancelBubble=!0);return!1}function E(a){for(var c=0,b=0;a;)c+=a.offsetLeft+a.clientLeft,b+=a.offsetTop+a.clientTop,a=a.offsetParent;return{x:c,y:b}}function F(a,c,b,d){var e,h,f;if(w(b)){e=0;for(h=b.length;e<h;)f=F(a,c,b[e++],d)}else f=x(a,"INPUT","type","hidden","name",d,"value",b),c.appendChild(f);return f}var G=g.wpModules.modules,C=G.partial,w=g.Array.isArray;
(0,G.create)("wpModules.photon.dom",function(a){var c=a.document;a=C(D,a);var b=C(x,c),c=C(F,c);return{getData:s,getNode:v,getText:t,addClass:p,removeClass:q,conditionalClass:r,toggleClass:n,setAttribute:k,conditionalAttribute:m,removeAttribute:l,createElement:b,removeElement:y,polyfillOnInput:B,cancelEvent:a,getPosition:E,addHiddenInput:c}});}());
}catch(e){console.log("Module 'wp_photon_dom': ",e);}
try{(function(_1){
"use strict";
var _2="name",_3="id",_4="content",_5="meta",_6="x-ready",_7="ready",_8=_1["wpModules"],_9=_8["photon"]["dom"],_a=_8["modules"],_b=_a["create"],_c=_a["partial"],_d=_9["createElement"],_e=_9["removeElement"],_f=_9["getData"],_10=_1["Object"].prototype.toString;
function _11(_12){
var _13="[object String]"===_12;
return _13;
};
function _14(_15){
var _16=_10.call(_15);
return _16;
};
function _17(_18,aId){
return _18.getElementById(aId);
};
function _19(_1a,aId){
var _1b=_14(aId),_1c;
if(_11(_1b)){
_1c=aId;
}else{
_1c=_f(_7,aId);
}
return _1c;
};
function _1d(_1e,_1f,aId){
var id=_19(_1f,aId),_20=_1e.getItem(id),_21;
if(_20){
_1e.removeItem(id);
_21=_17(_1f,id);
if(_21){
_e(_21);
}
_21=_d(_5,_3,id,_2,_6,_4,_20);
_1f.head.appendChild(_21);
}
return _21;
};
function _22(_23){
var _24=_23.document,_25=_23.sessionStorage,_26=_c(_1d,_25,_24);
return {"addReady":_26};
};
return _b("wpModules.toolbar.common",_22);
}(window));


}catch(e){console.log("Module 'wp_toolbar_common': ",e);}
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2012 - All Rights reserved.  **/
(function(_1){
function _2(_3){
return (_3.getElementsByTagName("html")[0].getAttribute("dir")||"").toLowerCase()=="rtl";
};
function _4(_5){
var v=_5.documentElement;
return {width:v.clientWidth,height:v.clientHeight};
};
function _6(_7){
var _8=curtop=0;
if(_7.offsetParent){
do{
_8+=_7.offsetLeft;
curtop+=_7.offsetTop;
}while(_7=_7.offsetParent);
return {left:_8,top:curtop};
}
return null;
};
function _9(_a){
var bb=_a.getBoundingClientRect(),b={width:bb.width,height:bb.height,left:bb.left,top:bb.top,right:bb.right,bottom:bb.bottom};
if(i$.isIE){
b.height=b.bottom-b.top;
b.width=b.right-b.left;
}
if(i$.isIE==7){
var _b=_6(_a);
b.left=(_b?_b.left:b.left);
b.top=(_b?_b.top:b.top);
}
return b;
};
function _c(_d,_e){
var b=_9(_d);
if(_e){
var fo=_f(self,_e);
b.top+=fo.top;
b.left+=fo.left;
b.bottom+=fo.top;
b.right+=fo.left;
}
return b;
};
function _10(_11,_12){
i$.forIn(_12,function(v,n){
_11.style[n]=Math.round(v)+"px";
});
};
function _f(_13,_14){
var box={top:0,left:0};
var w=_13;
while(w.frameElement&&w!==_14){
var b=_c(w.frameElement);
box.top+=b.top;
box.left+=b.left;
w=w.parent;
}
return box;
};
function _15(_16){
var doc=_16.document,de=doc.documentElement,b=doc.body;
return {left:isNaN(_16.scrollX)?(de.scrollLeft+b.scrollLeft):_16.scrollX,top:isNaN(_16.scrollY)?(de.scrollTop+b.scrollTop):_16.scrollY};
};
var _17={nodeHandler:{},pointerHandler:{},handle:function(_18){
var _19=_18.name,_1a=_18.targetWindow,_1b=_18.node,_1c=_18.refNode,_1d=_18.targetBox,_1e=_1e||0.5,_1f=_18.viewMargin,_20=_18.positionNode,_21=_17.nodeHandler[_19],_22=_17.pointerHandler[_19];
if(!_21&&!_1d){
return;
}
var doc=_1a.document,b=doc.body,_23=_4(doc),_24=_c(_1b),_25,_26=_15(_1a);
if(_1c){
var _27=function(_28){
var n=_28;
while(n&&n.offsetParent===null){
n=n.parentNode;
}
return n;
};
_1c=_27(_1c);
var _29=_c(_1c,_1a),_2a=_23.width-_29.left-_29.width*(1-_1e),_2b=_29.left+_29.width*_1e,_2c=_24.width+_1f,_2d=_2(doc)?!(_2b>_2c||_2a<_2c):_2a>_2c||_2b<_2c;
_25=_21(_23,_24,_29,_2d,_1f);
}else{
var h=_1d.height||_24.height,w=_1d.width||_24.width;
_25={top:Math.max(10,Math.min(_1d.top||(_23.height-h)/2,_23.height-_24.height-_1f)),left:Math.max(0,Math.min(_1d.left||(_23.width-w)/2,_23.width-_24.width-_1f))};
}
if(!i$.isIE||i$.isIE!==7){
_25.top+=_26.top;
_25.left+=_26.left;
}
_10(_20||_1b,_25);
if(_1c&&_22){
var _2e=null;
var _2f=function(el){
var c=el.className;
if(c&&c.indexOf("pointer")>-1){
_2e=el;
}
if(!_2e&&el.hasChildNodes()){
i$.each(el.childNodes,function(val){
_2f(val);
});
}
};
_2f(_1b);
if(_2e){
_10(_2e,_22(_c(_1b),_29,_c(_2e),_2e));
}
}
},registerHandler:function(_30){
if(_30.nodeHandler){
_17.nodeHandler[_30.name]=_30.nodeHandler;
}
if(_30.pointerHandler){
_17.pointerHandler[_30.name]=_30.pointerHandler;
}
},addPositionChangeListener:function(_31){
if(!_31.node){
return null;
}
var _32={refNode:_31.node,targetWindow:_31.targetWindow||_1,callback:_31.callbackFn,pollInterval:_31.pollInterval||2000,intervalId:null,refBox:null,tolerance:_31.tolerance||5,intervalFn:function(){
if(this.refNode){
var box=_c(this.refNode,this.targetWindow);
if(!this.refBox){
this.refBox=box;
}else{
var _33=this.tolerance,_34=this.refBox,_35=Math.abs(_34.top-box.top),_36=Math.abs(_34.left-box.left),_37=Math.abs(_34.bottom-box.bottom),_38=Math.abs(_34.right-box.right);
if(_33<Math.max(_35,_36,_37,_38)){
this.refBox=box;
this.callback();
}
}
}else{
this.stop();
}
},start:function(){
var obj=this;
this.intervalId=this.targetWindow.setInterval(function(){
obj.intervalFn();
},this.pollInterval);
},stop:function(){
if(this.intervalId){
this.targetWindow.clearInterval(this.intervalId);
}
}};
_32.start();
return _32;
}};
i$.toPath("wpModules.util.Positioning",_17);
i$.toPath("wpModules.util.dialog",{viewPort:_4,setMetrics:_10,simpleBox:_9,scroll:_15});
})(window);
(function(){
var _39={name:"horizontallyBelow",nodeHandler:function(_3a,_3b,_3c,_3d,_3e){
var pos={};
pos.top=_3c.top+_3c.height;
if(pos.top<0){
pos.top=0;
}
if(pos.top+_3b.height>_3a.height){
pos.top=_3a.height-_3b.height-_3e;
}
pos.left=Math.max(_3c.left+(_3c.width-_3b.width)/2,_3e);
if(pos.left+_3b.width+_3e>_3a.width){
pos.left=_3a.width-_3b.width-_3e;
}
return pos;
},pointerHandler:function(_3f,_40,_41,_42){
i$.addClass(_42,"top");
var _43=_42.clientHeight,_44=_42.clientWidth,_45=Math.min(_40.left+_40.width,_3f.left+_3f.width),_46=Math.max(_40.left,_3f.left),_47=(_45+_46)/2-_3f.left;
var res={top:-(_43-4),left:_47-_44/2};
return res;
}};
wpModules.util.Positioning.registerHandler(_39);
})();
(function(){
var _48={name:"horizontallyCenteredBelow",nodeHandler:function(_49,_4a,_4b,_4c,_4d){
var pos={};
pos.top=_4b.top+_4b.height;
if(pos.top<0){
pos.top=0;
}
if(pos.top+_4a.height>_49.height){
pos.top=_49.height-_4a.height-_4d;
}
pos.left=Math.max(_4b.left+(_4b.width-_4a.width)/2,_4d);
return pos;
},pointerHandler:function(_4e,_4f,_50,_51){
i$.addClass(_51,"top");
var _52=_51.clientHeight,_53=_51.clientWidth,_54=Math.min(_4f.left+_4f.width,_4e.left+_4e.width),_55=Math.max(_4f.left,_4e.left),_56=(_54+_55)/2-_4e.left;
var res={top:-(_52-4),left:_56-_53/2};
return res;
}};
wpModules.util.Positioning.registerHandler(_48);
})();
(function(){
var _57={name:"verticallyCenteredRightHand",nodeHandler:function(_58,_59,_5a,_5b,_5c){
var pos={};
pos.top=Math.max(_5a.top+(_5a.height-_59.height)/2,_5c);
pos.top=Math.min(pos.top,_58.height-_59.height-_5c);
if(_5b){
pos.left=Math.min(_5a.left+_5a.width,_58.width-_59.width-_5c);
}else{
pos.left=Math.max(_5a.left-_59.width,_5c);
}
return pos;
},pointerHandler:function(_5d,_5e,_5f,_60){
var _61=_5f.height,_62=_61/2+6,_63=Math.min(_5e.top+_5e.height,_5d.top+_5d.height-_62),_64=Math.max(_5e.top,_5d.top+_62),_65=_5d.left-_60.offsetWidth,_66=_5d.right+_60.offsetWidth,_67=_5e.left>_65,_68=_5e.left<=_65,_69=_65<=_5e.right,_6a=_65>_5e.right,_6b=_66<=_5e.left,_6c=_66>_5e.right,_6d=_66<=_5e.right;
i$.removeClass(_60,"right");
i$.removeClass(_60,"left");
if(_63-_64>=0){
if((_67&&_6c)||(_68&&_6d)){
}else{
if((_67&&_6d)||(_67&&_6b)){
i$.addClass(_60,"right");
}else{
if((_69&&_6c)||(_6a&&_6c)){
i$.addClass(_60,"left");
}
}
}
}
return {top:(_64+_63-_61)/2-_5d.top};
}};
wpModules.util.Positioning.registerHandler(_57);
})();


}catch(e){console.log("Module 'wp_dialog_util': ",e);}
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2012 - All Rights reserved.  **/
(function(_1){
var _2=wpModules.util.dialog;
function _3(e,_4){
e=e||_4.event;
e.stopPropagation&&e.stopPropagation();
e.preventDefault&&e.preventDefault();
e.cancelBubble=true;
e.cancel=true;
e.returnValue=false;
return false;
};
function _5(_6,_7){
var _8=_2.scroll(_7),_9=_6||_7.event;
return {left:_9.clientX+_8.left,top:_9.clientY+_8.top};
};
function _a(p){
var _b=p.window||_b,_c=_2.viewPort(_b.document),_d=p.element,_e=p.handle||_d,_f=i$.mash({top:0,left:0,width:_c.width,height:_c.height,margin:0},p.area),_10=false,_11=false,_12=false,_13,mmb,mub,mdb;
function _14(_15){
if(!_12&&_11&&!_10){
_12=true;
p.startCallback&&p.startCallback(_15,_d);
_13=_5(_15,_b);
var _16=_2.simpleBox(_d);
mmb=i$.bindDomEvt(_b.document,"mousemove",function(_17){
if(_12&&!_10){
var pos=_5(_17,_b),_18=_2.scroll(_b);
pos.left+=_16.left+_18.left-_13.left;
pos.top+=_16.top+_18.top+-_13.top;
pos.left=Math.min(Math.max(_f.left+_18.left+_f.margin,pos.left),_f.left+_18.left+_f.width-_16.width-_f.margin);
pos.top=Math.min(Math.max(_f.top+_18.top+_f.margin,pos.top),_f.top+_18.top+_f.height-_16.height-_f.margin);
_2.setMetrics(_d,pos);
p.moveCallback&&p.moveCallback(pos,_d);
return _3(_17,_b);
}
});
mub=i$.bindDomEvt(_b.document,"mouseup",function(_19){
_1a();
return _3(_19,_b);
});
return _3(_15,_b);
}
};
function _1a(){
if(_12&&!_10){
i$.unbindDomEvt(mmb);
i$.unbindDomEvt(mub);
_13=null;
p.endCallback&&p.endCallback(_d);
_12=false;
}
};
this.dispose=function(){
if(!_10){
this.StopListening(true);
_d=null;
_e=null;
p.startCallback=null;
p.moveCallback=null;
p.endCallback=null;
_10=true;
}
};
this.StartListening=function(){
if(!_11&&!_10){
_11=true;
mdb=i$.bindDomEvt(_e,"mousedown",_14);
}
};
this.StopListening=function(_1b){
if(_11&&!_10){
i$.unbindDomEvt(mdb);
_11=false;
_1b&&_12&&_1a();
}
};
this.isDragging=function(){
return _12;
};
this.isListening=function(){
return _11;
};
this.isDisposed=function(){
return _10;
};
this.StartListening();
};
i$.toPath("wpModules.util.Draggable",_a);
})(window);


}catch(e){console.log("Module 'wp_dialog_draggable': ",e);}
try{/** Licensed Materials - Property of IBM, 5724-E76 and 5724-E77, (C) Copyright IBM Corp. 2012 - All Rights reserved.  **/
if(!i$.fromPath("wpModules.dialog.Dialog")){
var _T="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";
i$.addListener("wpModules/dialog/closeAll",function(_1){
var _2=i$.fromPath("wpModules.dialog.DialogStorage.openDialogs",false,top);
if(_2&&_2.length>0){
i$.forEach(_2,function(_3){
if(!_1||_3.prm[_1]){
_3.close();
}
});
}
});
i$.toPath("wpModules.dialog.Dialog",function(_4,_5){
var _6=i$.fromPath("wpModules.dialog.DialogStorage",false,_4.top);
if(!_6){
_6=i$.toPath("wpModules.dialog.DialogStorage",{openDialogs:[]},_4.top);
}
var _7=_6.openDialogs,_8=wpModules.util.dialog;
function _9(_a,_b){
i$.each(_b,function(v,k){
_a=_a.replace(new RegExp("\\${"+k+"}","g"),v);
});
return _a;
};
function _c(_d,_e){
var s="data-attach-point";
var _f=function(el){
if(el.getAttribute&&el.getAttribute(s)){
_e[el.getAttribute(s)]=el;
}
if(el.hasChildNodes()){
i$.each(el.childNodes,function(val){
_f(val);
});
}
};
_f(_d);
};
function _10(){
return Math.round(Math.random()*1000000000)+"";
};
function _11(p,_12,box){
wpModules.util.Positioning.handle({name:p.posHandler,targetWindow:p.window,targetBox:box,node:_12,refNode:p.autoPosition,maxOverLay:p.maxOverlay,viewMargin:p.viewMargin});
};
function _13(_14){
return _14.window.document.getElementById(_14.id+"-iframe");
};
var _15=i$.augment((function(_16){
this._init(_16);
}),{_init:function(_17){
var doc=_17.window.document,div=doc.createElement("div"),_18=_17.parent,_19=this._overlayNode=_17.displayCloseOverlay?doc.createElement("div"):null,_1a=this.rootNode=doc.createElement("div"),_1b=[140,30];
if(_17.templateStyle=="flat"){
_1b=[300,200];
}
this.defaultWidth=_1b[0];
this.defaultHeight=_1b[1];
if(_19){
var os=_19.style;
os.display="block";
os.height="100%";
os.top="0px";
os.position="fixed";
os.backgroundColor="#000";
os.opacity="0.4";
os.filter="Alpha(opacity=40)";
os.left="0";
os.width="100%";
os.zIndex=_17.z_index-1;
if(!_17.modal){
os.opacity="0";
os.filter="Alpha(opacity=0)";
}
}
this.tabOut=_17.tabOut;
this.modal=_17.modal;
this.window=_17.window;
var _1c={title:_17.title||"",itemClose:_17.itemClose,z_index:_17.z_index,id:_17.id};
if(_17.templateStyle=="help"&&_17.learnMoreURL){
_1c.learnMore=_17.learnMore;
_1c.learnMoreURL=_17.learnMoreURL;
_1c.learnMoreParam=_17.learnMoreParam;
}
var s=[""],_1d=typeof _17.padding,_1e=_17.padding;
if(_1e&&_1d==="object"){
s.push("padding:",_1e[0],"px ",_1e[1],"px ",_1e[2],"px ",_1e[3],"px;");
}else{
if(_1d!=="number"){
_1e=15;
}
s.push("padding:",_1e,"px;");
}
_1c.contentStyle=s.join("");
div.innerHTML=_9(_17.template,_1c);
_c(div,this);
this.domNode=div.firstChild;
this.id=this.domNode.id=_17.id;
_18.insertBefore(_1a,_18.firstChild);
_19&&_1a.appendChild(_19);
_1a.appendChild(this.domNode);
if(!_17.autoPosition){
this._hidePointer();
}
},_hidePointer:function(){
this.domNode.lastChild.style.display="none";
},_showPointer:function(){
this.domNode.lastChild.style.display="inline";
},show:function(){
this.domNode.style.display="block";
},hide:function(){
this.domNode.style.display="none";
}});
return i$.augment((function(_1f){
this.blankImgSrc=_T;
this.z_index=_7.length===0?1000:_7[_7.length-1].z_index+500;
var _20=_1f.title||_1f.displayDialogHeader;
var _21={startDialog:"<div class=\"wpthemeDialog\" style=\"display:none;position:absolute;z-index:${z_index};\" role=\"dialog\" "+(_1f.title?"aria-labelledby=\"${id}-title\"":(_1f.description?"aria-label=\""+_1f.description+"\"":(_1f.labelledby?"aria-labelledby=\""+_1f.labelledby+"\"":"aria-label=\"dialog\"")))+">",endDialog:"</div>",dialogContent:"<div id=\"${id}-firstFocus\" tabIndex=\"0\"></div>"+"<div class=\"wpthemeDialogContent\" style=\"${contentStyle}\">"+"<div class=\"wpthemeDialogContentBody\">"+"<div>"+"<div class=\"west\" style=\"display:none;\" data-attach-point=\"westContentCell\">"+"<div style=\"display:none;\" data-attach-point=\"westContent\"></div>"+"</div>"+"<div class=\"central\" style=\"height:auto; width:auto; max-height:5000px; position:relative\" data-attach-point=\"centralContent\"></div>"+"<div class=\"east\" style=\"display:none;\" data-attach-point=\"eastContentCell\">"+"<div style=\"display:none;\" data-attach-point=\"eastContent\"></div>"+"</div>"+"</div>"+"<div class=\"south\" style=\"display:none;\" data-attach-point=\"southContent\"></div>"+"</div>"+"</div>"+"<div id=\"${id}-lastFocus\" tabIndex=\"0\"></div>"};
var prm=this.prm=i$.mash({id:_10(),window:_4,parent:_1f.window?_1f.window.document.body:_4.document.body,posHandler:"verticallyCenteredRightHand",displayCloseOverlay:true,maxOverlay:0.5,viewMargin:15,autoResize:false,autoClose:!_1f.modal,modal:false,tabOut:false,helpTemplate:_21.startDialog+"<div class=\"wpthemeDialogPopup\" data-attach-point=\"dialogNode\">"+"<a class=\"wpthemeDialogPopupClose\" href=\"javascript:void(0);\" data-attach-point=\"closeButtonNode\" title=\"${itemClose}\" role=\"button\">"+"<img alt=\"${itemClose}\" src=\""+this.blankImgSrc+"\" aria-label=\"${itemClose}\"/><span class=\"dialogAltText\" title=\"${itemClose}\">X</span>"+"</a>"+"<div id=\"${id}-firstFocus\" tabIndex=\"0\"></div>"+"<div class=\"wpthemeDialogPopupContent\">"+"<div class=\"wpthemeDialogPopupContentArea\">"+"<div class=\"west\" style=\"display:none;\" data-attach-point=\"westContentCell\">"+"<div style=\"display:none;\" data-attach-point=\"westContent\"></div>"+"</div>"+"<div class=\"central\" style=\"height:auto; width:auto; max-height:5000px; position:relative\" data-attach-point=\"centralContent\"></div>"+"<div class=\"east\" style=\"display:none;\" data-attach-point=\"eastContentCell\">"+"<div style=\"display:none;\" data-attach-point=\"eastContent\"></div>"+"</div>"+"</div>"+"<div class=\"south\" style=\"display:none;\" data-attach-point=\"southContent\"></div>"+"</div>"+((_1f.learnMore&&_1f.learnMore.url)?"<div class=\"wpthemeDialogPopupFooter\">"+"<a href=\"javascript:void(0);\" class=\"wpthemeDialogLearnLink\" onclick=\"window.open('${learnMoreURL}', '', 'location=no,menubar=no,scrollbars=yes,status=no,toolbar=no${learnMoreParam}', false);\">${learnMore}</a>"+"</div>":"")+"<div id=\"${id}-lastFocus\" tabIndex=\"0\"></div>"+"</div>"+"<div class=\"dialogPointer pointer\" style=\"top:50%;display:none\"/>"+_21.endDialog,defaultTemplate:_21.startDialog+"<div class=\"wpthemeDialogBorder\">"+"<div class=\"dialogContainer\" data-attach-point=\"dialogNode\">"+(_20?"<div id=\"${id}-header\" class=\"dialogHeader\" data-attach-point=\"dialogHeaderNode\" style=\"position:relative;\">"+(_1f.title?"<h1 id=\"${id}-title\" class=\"dialogHeaderText\" data-attach-point=\"titleNode\">${title}</h1>":"")+"<a href=\"javascript:void(0);\" data-attach-point=\"closeButtonNode\" class=\"dialogClose\" title=\"${itemClose}\">"+"<img src=\""+this.blankImgSrc+"\" alt=\"\" aria-label=\"${itemClose}\" />"+"<span class=\"dialogAltText\" title=\"${itemClose}\">X</span>"+"</a>"+"</div>":"")+_21.dialogContent+"</div>"+"</div>"+"<div class=\"dialogPointer pointer\" style=\"top: 50%;\"/>"+_21.endDialog,flatTemplate:_21.startDialog+"<div>"+"<div data-attach-point=\"dialogNode\">"+_21.dialogContent+"</div>"+"</div>"+"<div class=\"dialogPointer pointer\" style=\"top: 50%;display:none\"/>"+_21.endDialog},_1f);
if(!prm.template){
var ts=prm.templateStyle;
if(ts){
if(ts=="help"){
prm.template=prm.helpTemplate;
if(typeof _1f.autoResize==="undefined"){
prm.autoResize=true;
}
if(typeof _1f.autoClose==="undefined"){
prm.autoClose=true;
}
if(typeof _1f.modal==="undefined"){
prm.modal=false;
}
if(typeof _1f.window==="undefined"){
prm.window=_4.top;
prm.parent=prm.window.document.body;
}
if(typeof _1f.displayCloseOverlay==="undefined"){
prm.displayCloseOverlay=true;
}
}else{
if(ts=="flat"){
prm.template=prm.flatTemplate;
if(typeof _1f.padding==="undefined"){
prm.padding=0;
}
}
}
}
if(!prm.template){
prm.template=prm.defaultTemplate;
}
}
var _22={};
if(prm.templateStyle=="help"&&_1f.learnMore&&_1f.learnMore.url){
_22.learnMore=wpModules.dialog.nls["LINK_LEARN_MORE"];
_22.learnMoreURL=_1f.learnMore.url;
var w=800,h=800;
if(_1f.learnMore.width){
w=_1f.learnMore.width;
}
if(_1f.learnMore.height){
h=_1f.learnMore.height;
}
_22.learnMoreParam=",width="+w+",height="+h;
}
this.openerWindow=_4;
this.widget=new _15(i$.mash({id:prm.id,window:prm.window,parent:prm.parent,displayCloseOverlay:prm.displayCloseOverlay,title:prm.title,autoPosition:prm.autoPosition,modal:prm.modal,tabOut:prm.tabOut,itemClose:wpModules.dialog.nls["CLOSE_0"],template:prm.template,templateStyle:prm.templateStyle,padding:prm.padding,z_index:this.z_index},_22));
i$.bindDomEvt(this.widget.domNode,"onkeydown",i$.scope(this,function(e){
if(!e){
var e=_4.event;
}
if(e.keyCode===9){
var t=e.target||e.srcElement;
if(t.nodeType===3){
t=t.parentNode;
}
var f1=e.shiftKey?"-firstFocus":"-lastFocus",f2=e.shiftKey?"-lastFocus":"-firstFocus";
var w=this.widget,pn=this.prm.autoPosition;
if(w.tabOut&&w.id+f1==t.getAttribute("id")){
this._close();
if(pn){
pn.focus();
}
}else{
if(w.id+f1===t.getAttribute("id")){
w.window.document.getElementById(this.widget.id+f2).focus();
}
}
}else{
if(e.keyCode===27){
this._close(e);
}
}
}));
var cb=this.widget.closeButtonNode;
cb&&i$.bindDomEvt(cb,"onclick",i$.scope(this,"_close"));
if(prm.autoClose&&this.widget._overlayNode){
i$.bindDomEvt(this.widget._overlayNode,"onclick",i$.scope(this,"_close"));
}
prm.markup&&this._setMarkup(prm.markup);
_7.push(this);
}),{open:function(){
var w=this.widget,p=this.prm,wd=w.domNode,m=p.metrics,tb=p.targetBox={},doc=p.window.document,_23=_8.viewPort(doc);
if(p.url){
var f=_13(w);
if(f){
f.src=p.url;
}else{
w.centralContent.innerHTML=_9("<div class=\"dialogLoading\" style=\"display:block;position:absolute;left:50%;top:50%;margin-top:-8px;margin-left:-8px;\" id=\"${id}-progressLoading\">"+"<img style=\"display:inline-block\" width=\"16\" height=\"16\" src=\"${blank}\" ${border} alt=\"${loading}\"/>"+"</div>"+"<div id=\"${id}-sizing\" style=\"width:100%;height:0px;\"></div>"+"<iframe style=\"display:block;${visibility}\" title=\"${title}\" name=\"${id}-iframe\" id=\"${id}-iframe\" frameborder=\"0\" src=\"${url}\" allowTransparency=\"true\"></iframe>",{id:w.id,url:i$.isIE<9?"":p.url,title:p.title||p.description||"dialog contents",blank:this.blankImgSrc,loading:wpModules.dialog.nls["LOADING_0"],border:i$.isIE<9?"border='0'":"",visibility:i$.isIE<9?"visibility:hidden;":"opacity:0;filter:Alpha(opacity=0)"});
f=_13(w);
if(i$.isIE<9){
f.src=p.url;
this._initCallbacksOnloadIE();
this._ieRefreshListener=i$.addListener("wpModules/dialog/Dialog/ieRefresh",i$.scope(this,this._handleIeRefreshEvent));
}else{
f.onload=i$.scope(this,this._initCallbacks);
}
}
if(i$.isChrome){
f.setAttribute("scrolling","auto");
}else{
f.setAttribute("scrolling","no");
}
}
w.show();
if(w.dialogHeaderNode){
var _24=_8.simpleBox(w.dialogHeaderNode).width;
if(_24&&_24>w.defaultWidth){
w.defaultWidth=_24;
}
}
var _25=_23.width-2*p.viewMargin+2;
if(m){
if(!p.autoPosition){
m.top&&(tb.top=m.top);
m.left&&(tb.left=m.left);
}
m.width&&(tb.width=m.width);
m.height&&(tb.height=m.height);
if(m.width){
if(p.url){
var _26=_13(w),_27=_8.simpleBox(wd),_28=_8.simpleBox(doc.getElementById(w.id+"-sizing")),_29=_27.width-_28.width;
_25-=_29;
_8.setMetrics(_26,{width:Math.min(m.width,_25)});
}else{
_8.setMetrics(wd,{width:Math.min(m.width,_25)});
}
}
}else{
if(p.url){
_8.setMetrics(_13(w),{width:Math.min(w.defaultWidth,_25),height:w.defaultHeight});
}
}
_11(p,wd,tb);
this._positionChangeListener=wpModules.util.Positioning.addPositionChangeListener({node:p.autoPosition,targetWindow:p.window,callbackFn:function(){
_11(p,wd,tb);
}});
if(!p.url){
this.inlineKeyDownEvt=i$.bindDomEvt(doc.body,"onkeydown",i$.scope(this,function(e){
if(e.keyCode===27){
this._close(e);
}
}));
p.window.setTimeout(function(){
if(i$.isFF){
var di=p.window.document.createElement("input");
wd.appendChild(di);
di.focus();
wd.removeChild(di);
}else{
p.window.focus();
}
p.setFocusFn?p.setFocusFn(p.window):wd.focus();
if(p.templateStyle=="help"){
w.centralContent.tabIndex=-1;
w.centralContent.focus();
}
},100);
}
setTimeout(function(){
var _2a=doc.createElement("div"),_2b;
_2a.className="wpThemeDialogHighContrastTestNode";
wd.appendChild(_2a);
try{
_2b=doc.defaultView.getComputedStyle(_2a,"");
}
catch(e){
_2b=_2a.currentStyle;
}
var _2c=_2b.backgroundImage;
if((_2b.borderTopColor==_2b.borderRightColor)||(_2c!=null&&(_2c=="none"||_2c=="url(invalid-url:)"))){
i$.addClass(wd,"wpthemeDialogImagesOff");
}
wd.removeChild(_2a);
},10);
return false;
},_initCallbacks:function(){
var w=this.widget,p=this.prm,f=_13(w);
if(!f){
return;
}
var _2d=i$.scope(this,function(){
var fw=f.contentWindow,_2e=null;
try{
_2e=fw.contentDocument||fw.document;
fw.onunload=function(){
p.onUnloadCallbackFn&&p.onUnloadCallbackFn(_2e,fw);
};
}
catch(e){
}
var _2f=i$.scope(this,function(){
fw=f.contentWindow;
try{
if(!fw.resize){
fw.resize=i$.scope(this,"resize");
}
fw.setTimeout(i$.scope(this,function(){
this.onLoadFrame();
}),0);
}
catch(e){
this.onLoadFrame();
}
finally{
p.onLoadCallbackFn&&p.onLoadCallbackFn(_2e,fw);
}
});
try{
f.onload=_2f;
fw.closeDialog=f.onCloseModalDialog=i$.scope(this,"close");
}
catch(e){
}
_2f();
});
_2d();
},_initCallbacksOnloadIE:function(){
var _30=this;
var w=this.widget;
var p=this.prm;
var f=_13(w);
var fn=function(i){
p.window.setTimeout(function(){
if((f.contentDocument&&f.contentDocument.readyState&&f.contentDocument.readyState==="complete")||(f.readyState&&f.readyState==="complete")){
_30._initCallbacks();
}else{
if(i<300){
fn(i+1);
}
}
},200+10);
};
fn(0);
},_handleIeRefreshEvent:function(_31){
var w=this.widget;
var f=_13(w);
var cw=f.contentWindow;
if(_31==cw){
this._initCallbacksOnloadIE();
}
},onLoadFrame:function(_32){
var w=this.widget,wd=w.domNode,p=this.prm,_33=p.targetBox,_34=p.autoResize,_35=_8.viewPort(p.window.document),_36=_13(w),bs=wd.style;
if(!_36){
return;
}
_36.setAttribute("scrolling","no");
bs.maxWidth="none";
bs.maxHeight="none";
bs.minWidth="0";
bs.minHeight="0";
var _37=p.window.document.getElementById(w.id+"-progressLoading");
if(_37){
_37.style.display="none";
}
var cs=w.centralContent.style,fs=_36.style;
cs.paddingBottom="0px";
cs.marginBottom="0px";
if(i$.isIE<9){
fs.visibility="visible";
}else{
fs.opacity="100";
fs.filter="Alpha(opacity=100)";
}
var fw=_36.contentWindow,_38=_33.width,_39=_33.height||w.defaultHeight,_3a=null,fde=null,_3b=null,_3c=false;
if(!_38){
_38=w.defaultWidth;
_3c=true;
}
try{
_3a=fw.contentDocument||fw.document;
fde=_3a.documentElement;
_3b=_3a.body;
if(_3b){
var _3d=_8.simpleBox(_3b);
_8.setMetrics(_36,{width:((_38>_3d.width)?_38:_3d.width),height:_3d.height});
if(i$.isWebKit){
_3b.style.overflow="auto";
}
_3b.style.height="auto";
var _3e=i$.scope(this,function(e){
if(e.keyCode===27){
this._close(e);
}
});
if(i$.isFF){
i$.bindDomEvt(fde,"onkeydown",_3e);
}else{
i$.bindDomEvt(_3b,"onkeydown",_3e);
}
_38=Math.max(_3b.scrollWidth,fde.scrollWidth,_3b.offsetWidth,fde.offsetWidth,fde.clientWidth);
_8.setMetrics(_36,{width:_38});
if(w.eastContentCell.style.display!="none"||w.westContentCell.style.display!="none"){
var _3f=_8.simpleBox(_3b),_40=_8.simpleBox(fde);
_39=Math.max(_3d.height,_3f.height,_40.height,_3b.scrollHeight,fde.scrollHeight,_3b.offsetHeight,fde.offsetHeight,fde.clientHeight);
}else{
_39=Math.max(_3b.scrollHeight,fde.scrollHeight,_3b.offsetHeight,fde.offsetHeight,fde.clientHeight);
}
_38=Math.max(_3b.scrollWidth,fde.scrollWidth,_3b.offsetWidth,fde.offsetWidth,fde.clientWidth);
}else{
return;
}
}
catch(e){
}
var _41=_8.simpleBox(wd),_42=_8.simpleBox(_36),_43=_8.simpleBox(p.window.document.getElementById(w.id+"-sizing")),_44=_8.simpleBox(w.eastContent),_45=_8.simpleBox(w.westContent),_46=(_3c&&_43.width==w.defaultWidth)?0:_41.width-_43.width,_47=_41.height-_42.height,_48=_35.width-2*p.viewMargin-_46+2,_49=_35.height-2*p.viewMargin-_47+2,_4a=_33.height||(_34?_39:_35.height/3),_4b=_33.width||(_34?_38:_35.width/3);
_4a=Math.max(_4a,_44.height,_45.height);
_38=Math.min(_4b,_48);
_39=Math.min(_4a,_49);
_8.setMetrics(wd,{top:0,left:0});
if(i$.isIE&&_34){
_38++;
_39++;
}
_8.setMetrics(_36,{width:_38,height:_39});
if(_3b&&_34&&!_33.width){
if(fde&&i$.isFF){
var _4c=fde.scrollWidth-fde.clientWidth;
if(_4c>0){
_8.setMetrics(_36,{width:_38+=_4c});
}
}
if(_3b&&_4a>_49){
var _4d=Math.max(_3b.scrollWidth,fde.scrollWidth),_4e=Math.max(_3b.clientWidth,fde.clientWidth);
if(_4e<_4d){
var _4f=_4d-_4e;
if(_38+_4f<=_48){
_38+=_4f;
_8.setMetrics(_36,{width:_38});
}
}
}
}
if(_3b&&p.templateStyle!="help"){
_3b.style.height="100%";
}
_11(p,wd,{top:p.targetBox.top,left:p.targetBox.left,width:_38+_46,height:_39+_47});
_36.setAttribute("scrolling","auto");
if(!(_32&&_32.resize)){
p.window.setTimeout(function(){
p.setFocusFn?p.setFocusFn(fw):_36.focus();
},100);
}
},resize:function(_50){
var tb=this.prm.targetBox;
if(_50){
if(_50.width){
tb.width=_50.width;
}
if(_50.height){
tb.height=_50.height;
}
}
if(this.prm.url){
this.onLoadFrame({resize:true});
}
},_setMarkup:function(_51){
i$.forIn((i$.isString(_51)||i$.isNode(_51))?{"centralContent":_51}:_51,i$.scope(this,function(m,r){
var _52=this.widget[r],_53=this.widget[r+"Cell"];
if(_52){
if(m){
if(i$.isNode(m)){
_52.appendChild(m);
}else{
if(i$.isString(m)){
_52.innerHTML=m;
}
}
if(_53){
_53.style.display="";
}
_52.style.display="";
}else{
while(_52.hasChildNodes()){
_52.removeChild(_52.firstChild);
}
if(_53){
_53.style.display="none";
}
_52.style.display="none";
}
}
}));
},set:function(_54){
var prm=this.prm,_55=1,_56={"metrics":_55,"viewMargin":_55,"autoPosition":_55,"url":_55,"markup":i$.scope(this,"_setMarkup"),"title":i$.scope(this,function(_57){
prm.title=_57;
var t=this.widget.titleNode;
t&&(t.innerHTML=_57);
}),"description":_55};
i$.forIn(_54,function(v,n){
if(_56[n]===_55){
prm[n]=v;
}else{
if(i$.isFunction(_56[n])){
_56[n](v);
}
}
});
if(_54.url){
if(i$.isIE<9&&this._ieRefreshListener){
i$.removeListener(this._ieRefreshListener);
this._ieRefreshListener=null;
}
this.open();
}else{
if(_54.metrics){
this.resize(_54.metrics);
}
}
},_close:function(evt){
if(evt&&i$.isIE<=10){
evt.preventDefault&&evt.preventDefault();
evt.returnValue=false;
}
if(evt&&i$.isFF){
try{
evt.preventDefault();
}
catch(x){
evt.returnValue=false;
}
}
this.close({_terminated:true});
},close:function(_58){
var w=this.widget,r=w.rootNode,p=this.prm,_59=_13(w),fw=_59&&_59.contentWindow,_5a=false;
if(_58&&_58._terminated){
_5a=true;
_58=_5;
}
try{
if(fw&&fw.onbeforeunload){
var buv=fw.onbeforeunload();
if(buv===false||(buv&&buv!==true&&!confirm(buv))){
return;
}
}
}
catch(e){
}
try{
if(_5a&&fw&&fw.onTerminateDialog){
fw.onTerminateDialog();
}
}
catch(e){
if(e instanceof DOMException){
console.log("Could not invoke onTerminateDialog handler. Probably the dialog frame is cross-origin.");
}else{
throw e;
}
}
for(var da=_7,i=da.length;i>0;i--){
if(da[i-1].widget.id===w.id){
da.splice(i-1,1);
}else{
if(fw&&fw===da[i-1].openerWindow){
da[i-1].close();
}
}
}
if(this._positionChangeListener){
this._positionChangeListener.stop();
delete this._positionChangeListener;
}
if(this.inlineKeyDownEvt){
i$.unbindDomEvt(this.inlineKeyDownEvt);
}
if(this.openerWindow){
this.openerWindow.focus();
}
w.hide();
if(_59&&i$.isIE){
_59.src="about:blank";
}
for(var da=_7,i=da.length;i>0;i--){
if(da[i-1].widget.id===w.id){
da.splice(i-1,1);
break;
}
}
p.callbackFn&&p.callbackFn(_58);
r&&r.parentNode&&r.parentNode.removeChild(r);
if(i$.isIE<9){
i$.removeListener(this._ieRefreshListener);
}
}});
}(window));
}
if(!i$.fromPath("wpModules.dialog.confirm")){
wpModules.dialog.confirm=function(){
var _5b="OK",_5c="YES",_5d="NO",_5e="CANCEL",_5f="ABORT",_60="RETRY",_61="IGNORE",_62="TRY",_63="CONTINUE",_64="EXCLAMATION",_65="WARNING",_66="INFORMATION",_67="ASTERISK",_68="STOP",_69="ERROR";
return i$.mash(function(_6a){
var _6b=i$.fromPath,_6c=new i$.Promise(),nls=wpModules.dialog.nls,_6d={"<":"&lt;",">":"&gt;","&":"&amp;","\"":"&quot;","'":"&apos;"},_6e=function(){
return _6b("wpModules.dialog.confirm",true,top)._instance;
},_6f=function(dlg){
_6b("wpModules.dialog.confirm",true,top)._instance=dlg;
},_70=function(s){
return s.replace(/[<>&"']/g,function(ch){
return _6d[ch];
});
},_71=function(_72){
return nls["BUTTON_"+_72];
},_73=function(_74){
var id=i$.isString(_74)?_74:_66;
return nls["ICON_"+id];
},_75=function(_76,idx){
var _77=(_6a.buttonLabels?_6a.buttonLabels[_76]:_71(_76));
return "<input id='btn_"+_76+"' type='submit' tabindex='0' class='wpthemeDialogBtn' onclick='top.wpModules.dialog.confirm._instance.close(this.name);' name='"+_70(_76)+"' value='"+_70(_77)+"' />";
},_78=function(_79){
var b=(i$.isArray(_79)?_79:(i$.isString(_79)?[_79]:[(_5b),(_5e)])),_7a="",idx=0;
i$.each(b,function(_7b){
_7a+=_75(_7b);
});
return _7a;
},_7c=_6e(),_7d=i$.merge({autoClose:false,modal:true,setFocusFn:function(arg){
var _7e=arg.document.getElementById(this.focusControl?"btn_"+this.focusControl:"btn_"+_5d);
if(_7e){
_7e.focus();
}
},callbackFn:function(arg){
_6f(_7c);
var _7f=i$.isString(arg)?arg:_5e;
_6c.resolve({button:_7f});
},markup:"<table class='"+(_6a.rootClass?_6a.rootClass:"")+"' border='0' cellspacing='0' cellpadding='0' role='presentation'><tr>"+(_6a.icon?"<td><img src='"+_T+"' class='msgIcon "+_73(_6a.icon)+"' alt=''></td>":"")+"<td class='msgBody'>"+(_6a.markup||_70(_6a.message))+"</td></tr><tr>"+"<td colspan='2' class='wpthemeDialogFooter'><form action='#' onsubmit='return false;'>"+_78(_6a.buttons)+"</form></td></tr></table>"},i$.merge(_6a,{displayCloseOverlay:true,autoResize:true,draggable:true})),dlg=new wpModules.dialog.Dialog(_7d);
_6f(dlg);
dlg.open();
return _6c;
},{ICON:{EXCLAMATION:_64,WARNING:_65,INFORMATION:_66,ASTERISK:_67,STOP:_68,ERROR:_69},BUTTONS:{OK:_5b,YES:_5c,NO:_5d,CANCEL:_5e,ABORT:_5f,RETRY:_60,IGNORE:_61,TRY:_62,CONTINUE:_63,ABORTRETRYIGNORE:[_5f,_60,_61],CANCELTRYCONTINUE:[_5e,_62,_63],OKCANCEL:[_5b,_5e],RETRYCANCEL:[_60,_5e],YESNO:[_5c,_5d],NOYES:[_5d,_5c],YESNOCANCEL:[_5c,_5d,_5e]}});
}();
}


}catch(e){console.log("Module 'wp_dialog_main': ",e);}
try{(function(_1){
var _2="[\\u00ad\\u0600-\\u0603\\u06dd\\u070f\\u17b4-\\u17b5\\u200b-\\u200f\\u202a-\\u202e\\u2060-\\u2064\\u206a-\\u206f\\ufeff\\ufff9-\\ufffb]|\\ud834[\\udd73-\\udd7a]|\\udb40[\\udc01\\udc20-\\udc7f]",_3="[\\u0000-\\u001f\\u007f-\\u009f]",_4="data-",_5="a11y-",_6=_5+"next",_7=_5+"prev",_8=_5+"first",_9=_5+"last",_a=_5+"up",_b=_5+"down",_c=_5+"title",_d=_5+"action",_e=[_8,_a,_7,_9,_b,_6],_f=5,_10=4,_11=3,_12=2,_13=1,_14=0,_15="ltr",_16=37,_17=39,_18=38,_19=40,_1a=36,_1b=35,_1c=13,_1d=32,_1e=33,_1f=34,_20=true,_21=false,_22=Number.POSITIVE_INFINITY,_23=Number.NEGATIVE_INFINITY,_24=function(_25,_26){
var _27=_26[_25]=_26[_25]||{};
return _27;
},_28=function(aId,_29){
var _2a=_29.ownerDocument.getElementById(aId);
return _2a;
},_2b=function(_2c){
var _2d=((_2c>=0)&&(_2c<=31))||((_2c>=127)&&(_2c<=159));
return _2d;
},_2e=function(_2f,_30){
var _31=_30.getAttribute(_4+_2f);
return _31;
},_32=function(_33,_34){
var _35=_2e(_33,_34),_36=null;
if(_35){
_36=_28(_35,_34);
if(_36===null){
_36=_32(_35,_34);
}
}
return _36;
},_37=function(_38,_39,_3a,_3b){
if(_38){
var id=_38.id,i=_3b.length;
if(!_3a.hasOwnProperty(id)){
_3a[id]=_39(_38);
while(i){
_37(_32(_3b[--i],_38),_39,_3a,_3b);
}
}
}
return _3a;
},_3c=function(_3d){
var _3e=_32(_c,_3d),_3f=_3e?_3c(_3e):(_3d.innerText||_3d.textContent);
return _3f;
},_40=function(_41){
var _42=_41||_3c;
return _42;
},_43=function(_44){
var _45=new RegExp("^(\\s|"+_2+"|"+_3+")*\\u"+("0000"+Number(_44).toString(16)).slice(-4)+".*","i");
return _45;
},_46=function(_47,_48,_49){
var _4a=_49(_48),_4b=_4a&&(_4a.length>0)&&_47.test(_4a);
return _4b;
},_4c=function(_4d,_4e){
var _4f=_37(_4d,_4e,{},_e);
return _4f;
},_50=function(_51,_52,_53){
var _54,_55=_43(_51);
_4c(_52,function(_56){
if(_46(_55,_56,_53)){
if(!_54){
_54=[];
}
_54.push(_56);
}
});
return _54;
},_57=function(_58){
var _59=_58.getBoundingClientRect();
return _59;
},_5a=function(_5b,_5c){
var _5d=(_5b.right>_5c.left)&&(_5b.left<_5c.right);
return _5d;
},_5e=function(_5f,_60){
var _61=(_5f.bottom>_60.top)&&(_5f.top<_60.bottom);
return _61;
},_62=function(_63,_64,_65){
var _66=(_63>=_64)&&(_63<=_65);
return _66;
},_67=function(_68){
var _69=null,_6a=_57(_68),_6b=_22;
_4c(_68,function(_6c){
var _6d=_57(_6c);
if(_62(_6d.top,_6a.bottom,_6b)&&_5a(_6d,_6a)){
_69=_6c;
_6b=_6d.top;
}
});
return _69;
},_6e=function(_6f){
var _70=null,_71=_57(_6f),_72=_71.top;
_4c(_6f,function(_73){
var _74=_57(_73),_75=_74.top;
if((_75<_72)&&_5a(_74,_71)){
_70=_73;
_72=_75;
}
});
return _70;
},_76=function(_77){
var _78=null,_79=_57(_77),_7a=_79.bottom;
_4c(_77,function(_7b){
var _7c=_57(_7b),_7d=_7c.bottom;
if((_7d>_7a)&&_5a(_7c,_79)){
_78=_7b;
_7a=_7d;
}
});
return _78;
},_7e=function(_7f){
var _80=null,_81=_57(_7f),_82=_22;
_4c(_7f,function(_83){
var _84=_57(_83);
if(_62(_84.left,_81.right,_82)&&_5e(_84,_81)){
_80=_83;
_82=_84.left;
}
});
return _80;
},_85=function(_86){
var _87=null,_88=_57(_86),_89=_23;
_4c(_86,function(_8a){
var _8b=_57(_8a);
if(_62(_8b.bottom,_89,_88.top)&&_5a(_8b,_88)){
_87=_8a;
_89=_8b.bottom;
}
});
return _87;
},_8c=function(_8d){
var _8e=null,_8f=_57(_8d),_90=_23;
_4c(_8d,function(_91){
var _92=_57(_91);
if(_62(_92.right,_90,_8f.left)&&_5e(_92,_8f)){
_8e=_91;
_90=_92.right;
}
});
return _8e;
},_93=function(_94){
var _95=_94?_94.dir:_15;
return _95;
},_96=function(_97){
var _98=_93(_97)||_96(_97.parentNode);
return _98;
},_99=function(_9a,_9b){
_9b.tabIndex=_9a;
return _9b;
},_9c=function(_9d){
var _9e=_99(0,_9d);
return _9e;
},_9f=function(_a0){
var _a1=_99(-1,_a0);
return _a1;
},_a2=function(_a3){
var _a4=_a3.tabIndex;
return _a4;
},_a5=function(_a6){
_9c(_a6).focus();
return _20;
},_a7=function(_a8){
if(_a8){
_4c(_a8,_9f);
return _a5(_a8);
}
return _21;
},_a9=function(_aa){
if(_aa){
_4c(_aa,_9f);
return _20;
}
return _21;
},_ab=function(_ac,_ad){
var _ae=_a7(_32(_e[_ac],_ad));
return _ae;
},_af=function(_b0){
var _b1=_ab(_f,_b0);
return _b1;
},_b2=function(_b3){
var _b4=_ab(_12,_b3);
return _b4;
},_b5=function(_b6){
var _b7=_ab(_14,_b6);
return _b7;
},_b8=function(_b9){
var _ba=_ab(_11,_b9);
return _ba;
},_bb=function(_bc){
var _bd=_ab(_13,_bc);
return _bd;
},_be=function(_bf){
var _c0=_ab(_10,_bf);
return _c0;
},_c1=function(_c2){
var _c3=_a7(_85(_c2));
return _c3;
},_c4=function(_c5){
var _c6=_a7(_67(_c5));
return _c6;
},_c7=function(_c8){
var _c9=_a7(_8c(_c8));
return _c9;
},_ca=function(_cb){
var _cc=_a7(_7e(_cb));
return _cc;
},_cd=function(_ce){
return _a7(_6e(_ce));
},_cf=function(_d0){
return _a7(_76(_d0));
},_d1=function(_d2){
var _d3=(_d2===_15)?_17:_16;
return _d3;
},_d4=function(_d5){
_d5.click();
return _20;
},_d6,_d7=function(_d8){
var doc=_d8.document,_d9=doc.body,_da=doc.createElement("div"),_db,_dc,_dd;
_da.style.cssText="border:1px solid;border-color:red green;position:absolute;height:5px;top:-999px;background-image:url(\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\");";
_d9.appendChild(_da);
try{
_db=doc.defaultView.getComputedStyle(_da,"");
}
catch(e){
_db=_da.currentStyle;
}
_dc=_db.backgroundImage;
_dd=((_db.borderTopColor===_db.borderRightColor)||(_dc!==null&&(_dc==="none"||_dc==="url(invalid-url:)")));
_d9.removeChild(_da);
return _dd;
},_de=function(_df){
return function(){
return _d7(_df);
};
},_e0=function(_e1){
var _e2=_e1.i$.onLoadPromise,_e3=_e2.then(_de(_e1)),_e4=function(_e5){
var _e6=_e5||_e1.event;
return _e6;
},_e7=function(_e8,_e9,_ea,_eb){
if(!_eb.altKey&&!_eb.ctrlKey&&!_2b(_e8)){
var _ec=_50(_e8,_e9,_ea),_ed,i,len;
if(_ec){
len=_ec.length;
i=0;
while(i<len){
_ed=_ec[i++];
if(_a2(_ed)<0){
return _a7(_ed);
}
}
return _a7(_ed);
}
}
return _21;
},_ee=function(_ef,_f0,_f1){
var _f2=_e4(_f0),_f3=_e7(_f2.keyCode,_ef,_40(_f1),_f2);
return _f3;
},_f4=function(_f5,_f6){
var _f7=_e4(_f6),_f8;
switch(_f7.keyCode){
case _18:
_f8=_c1(_f5);
break;
case _19:
_f8=_c4(_f5);
break;
case _17:
_f8=_ca(_f5);
break;
case _16:
_f8=_c7(_f5);
break;
case _1a:
_f8=_b5(_f5);
break;
case _1b:
_f8=_b8(_f5);
break;
case _1e:
return _cd(_f5);
case _1f:
return _cf(_f5);
default:
_f8=_21;
}
return _f8;
},_f9=function(_fa,_fb){
var _fc=_e4(_fb),_fd=_96(_fa),_fe=_d1(_fd),_ff=(_16+_17-_fe),_100;
switch(_fc.keyCode){
case _18:
_100=_bb(_fa);
break;
case _19:
_100=_be(_fa);
break;
case _fe:
_100=_af(_fa);
break;
case _ff:
_100=_b2(_fa);
break;
case _1a:
_100=_b5(_fa);
break;
case _1b:
_100=_b8(_fa);
break;
default:
_100=_21;
}
return _100;
},_101=function(_102,_103,_104){
var _105=_e4(_103),_106=_105.keyCode,_107;
switch(_106){
case _1c:
_107=_21;
break;
case _1d:
_107=_d4(_102);
break;
default:
return _f9(_102,_105)||_e7(_106,_102,_40(_104),_105);
}
return _107;
};
return {navigateSequence:_f9,navigateMenu:_101,navigateGrid:_f4,setFocus:_a7,clearFocus:_a9,setFocusFromKey:_ee,forEachNode:_4c,clone:_d6,highContrastMode:_e3};
};
_d6=function(_108){
var _109=_24("wpModules",_108),_10a=_109.a11y=_109.a11y||_e0(_108);
return _10a;
};
return _d6(_1);
}(window));


}catch(e){console.log("Module 'wp_a11y': ",e);}
try{(function(){
var _1=i$.fromPath,_2=i$.toPath,_3=i$.isArray,_4=i$.each,_5=i$.forEach,_6=i$.augment,_7=i$.Promise,_8=true,_9=false,_a="wpModules.state.page._mgr",_b=function(p){
return p.name;
},_c=function(p){
return p.value;
},_d=function(p){
return p.nsuri;
},_e=function(a){
return a.length;
},_f=function(a1,a2){
if(a1&&!a2){
return _9;
}
if(!a1&&a2){
return _9;
}
if(_e(a1)!=_e(a2)){
return _9;
}
var _10=_8;
_5(a1,function(a,i){
if(a!=a2[i]){
_10=_9;
return _9;
}
});
return _10;
},_11=function(_12){
var _13={};
if(!_12){
_13.all=[];
return _13;
}
if(!_3(_12)){
_12=[_12];
}
_13.all=_12.slice(0,_e(_12));
_13.cache={};
_13.log=[];
return _13;
},_14=function(_15,_16){
if(!_15){
return _16.all;
}
if(!_3(_15)){
_15=[_15];
}
if(_e(_15)<=0){
return [];
}
var _17=[];
_4(_15,function(p){
get(_d(p),_b(p),_16,_17);
});
return _17;
},get=function(_18,_19,_1a,_1b){
var _1c=_1a.cache[_18];
if(_1c){
if(_19){
add(_1c[_19],_1b);
}else{
_1d(_1c,_1b);
}
}else{
_1e(_18,_1a);
get(_18,_19,_1a,_1b);
}
},add=function(_1f,_20){
_1f&&_20.push(_1f);
},_1d=function(_21,_22){
if(_21){
_4(_21,function(p){
add(p,_22);
});
}
},_1e=function(_23,_24){
var _25=_24.cache[_23]={};
_5(_24.all,function(p){
if(_d(p)==_23){
_25[_b(p)]=p;
}
});
},_26=function(_27,_28,_29){
if(!_27){
return;
}
if(!_3(_27)){
_27=[_27];
}
if(_e(_27)>0){
_4(_27,function(p){
set(p,_28);
});
}
if(_29){
_2a(_27,_28);
}
},_2a=function(_2b,_2c){
var _2d=[];
if(_e(_2b)<_e(_2c.all)){
_5(_2c.all,function(p){
var _2e=false;
_5(_2b,function(_2f){
if(_d(p)==_d(_2f)&&_b(p)==_b(_2f)){
_2e=true;
return false;
}
});
if(!_2e){
_2d.push(p);
}
});
}
_5(_2d,function(p){
set({"name":p.name,"nsuri":p.nsuri,"value":null},_2c);
});
},set=function(_30,_31){
if(!_b(_30)||!_d(_30)){
return;
}
var _32=_9,_33=_9;
_5(_31.all,function(p,i){
if(_d(p)==_d(_30)&&_b(p)==_b(_30)){
var _34=_c(_30);
if(_34){
if(!_f(_34,_c(p))){
_31.all[i]=_30;
_33=_8;
}
}else{
_31.all.splice(i,1);
_33=_8;
}
_32=_8;
}
});
if(!_32&&_c(_30)){
_31.all.push(_30);
_33=_8;
}
if(_33){
_31.log.push(_30);
}
var _35=_31.cache[_d(_30)];
if(_35){
var _36=_b(_30);
if(_c(_30)){
_35[_36]=_30;
}else{
delete _35[_36];
}
}
},_37=function(_38){
var _39=_3a(_38);
return _39;
},_3b=0,_3c=function(_3d,fn){
var _3e="fn"+(++_3b);
_3d[_3e]=fn;
return _3e;
},_3f=function(_40,_41){
if(_41 in _40){
delete _40[_41];
}
},_42=function(_43,_44){
for(var _45 in _43){
var _46=_37(_44),fn=_43[_45];
if(fn){
try{
fn(_46);
}
catch(err){
}
}
}
},_47=function(_48){
return _1(_a,_9,_48);
},_49=function(_4a,_4b){
_2(_a,_4a,_4b);
},_4c=function(_4d){
var _4e=_11(_4d),cbs={};
return {getState:function(){
var _4f=new _7(),_50=_37(_4e);
_4f.resolve(_50);
return _4f;
},addListener:function(_51){
var _52=_3c(cbs,_51);
return _52;
},removeListener:function(_53){
_3f(cbs,_53);
},commit:function(_54){
_4e=_54._data;
_42(cbs,_4e);
_4e.log=[];
var _55=new _7().resolve();
return _55;
},init:function(_56){
_4e=_11(_56);
}};
},_3a=function(_57){
var d=_57;
return {_data:d,renderParams:function(){
var _58=_59(d);
return _58;
}};
},_59=function(_5a){
var d=_5a;
return {get:function(_5b){
return _14(_5b,d);
},set:function(_5c,_5d){
_26(_5c,d,_5d);
},getModified:function(){
return d.log;
}};
},_5e=i$.fromPath("wpModules.state.page",_8);
i$.mash(_5e,{"newStateManager":_4c,"setStateManager":_49,"getStateManager":_47});
})();
(function(){
var _5f=i$.fromPath("wpModules.state.page"),_60=_5f.newStateManager(),_61="window/startRender";
_60.init(_5f._initial);
delete wpModules.state.page._initial;
_5f.setStateManager(_60);
if(top!==self&&top.i$){
top.i$.fireEvent(_61,[self]);
}
i$.fireEvent(_61);
})();


}catch(e){console.log("Module 'wp_state_page': ",e);}
try{(function(_1){
var _2=_1,_3=i$.fromPath,_4="wpModules.theme.WindowUtils",_5=_4+".baseURL",_6=_5+".Promise."+Math.random(),_7="wpViewFrameContainer",_8="wpthemeMaster",_9="wpToolbarPrimaryFrameContainer",_a="wpToolbarSecondaryFrameContainer",_b=[_7,_8,_9,_a],_c=i$.createDom,_d=new i$.Promise(),_e=function(id){
if(id){
if(id==_7){
return _f(_7)||_10(_7)||top;
}else{
if(id==_8){
var _11=_e(_7);
return _11.parent||_11;
}else{
if(id==_9){
return _f(_9)||_10(_9);
}else{
if(id==_a){
return _f(_a)||_10(_a);
}else{
if(_12(_2)==id){
return _2;
}else{
for(var i=0,l=_b.length;i<l;i++){
var w=_e(_b[i]);
if(w&&_12(w)==id){
return w;
}
}
return null;
}
}
}
}
}
}else{
return _2;
}
},_f=function(id){
try{
var f=_13(top,id+"-iframe");
return f?f.window:null;
}
catch(e){
return null;
}
},_10=function(id){
try{
var w=_2,fID=id+"-iframe";
f=_13(w,fID);
while(!f&&w&&w!==top){
w=w.parent;
f=_13(w,fID);
}
return f?f.window:null;
}
catch(e){
return null;
}
},_13=function(w,id){
if(w){
var fs=w.frames;
if(fs){
return fs[id];
}
}
return null;
},_12=function(w){
return _3("ibmCfg.portalConfig.currentPageOID",false,w);
},_14=function(){
var ids=[],add=function(id){
if(id&&ids.indexOf(id)<0){
ids.push(id);
}
};
for(var i=0,l=_b.length;i<l;i++){
var w=_e(_b[i]);
if(w){
add(_12(w));
}
}
return ids;
},_15=function(win){
var id=_5,doc=win.document,_16=doc.getElementById(id);
if(!_16){
var _17=doc.getElementsByTagName("head")[0],_16=_c("link",{"id":id,"rel":"alternate","href":"#"},_17);
}
var _18=_16.href;
var _19=_18.indexOf("#");
if(_19>0){
_18=_18.substr(0,_19);
}
_18=_18.replace("%24project","$project");
return _18;
},_1a=function(win){
var _1b=_3(_4,false,win),doc=win.document,url;
if(null!=_1b){
return _1b.baseURL;
}
_1b=win[_6];
if(null!=_1b){
return _1b;
}
_1b=new i$.Promise();
win[_6]=_1b;
if(doc.readyState==="loading"){
doc.addEventListener("DOMContentLoaded",function(){
url=_15(win);
_1b.resolve(url);
});
}else{
url=_15(win);
_1b.resolve(url);
}
return _1b;
};
i$.toPath(_4,{VIEW_AREA:_7,MASTER:_8,getWindow:function(id){
return _e(id);
},getBaseURL:function(win){
return _15(win);
},getPageIDs:function(){
return _14();
},findBaseURL:_1a,baseURL:_d});
})(window);


}catch(e){console.log("Module 'wp_theme_utils': ",e);}
try{(function(){
i$.addOnLoad(function(){
var _1=i$.fromPath("wpModules.state.page");
if(_1){
var _2=_1.getStateManager(),ln=function(o){
return o.length;
},_3=function(o){
if(o&&ln(o)>0){
var v=o[0].value;
if(v&&ln(v)>0){
return v[0];
}
}
return null;
};
_2&&_2.getState().then(function(_4){
var _5=wpModules.theme.WindowUtils,_6=_3(_4.renderParams().get({nsuri:"http://www.ibm.com/xmlns/prod/websphere/portal/publicparams",name:"showTools"})),_7=function(_8){
var _9=null;
if(_8&&_8.frames){
var _a=_8.frames[_5.VIEW_AREA+"-iframe"];
if(_a){
_9=_a.window;
}
}
return _9;
},_b=function(_c){
return _7(_c);
},_d=function(){
return top.location.href.indexOf("/$preview")>=0;
};
if(!_d()){
if((_6&&self===top)||(!_6&&self!==top&&_b(self.parent)&&_7(self.parent)===self)){
var _e=_5.getBaseURL(_5.getWindow(_5.VIEW_AREA)||top),_f=_e.indexOf("?");
if(_f>=0){
_e=_e.substr(0,_f);
}
_e+="?uri=toolbar:close";
top.location.href=_e;
}
}
var _10=function(){
if(!_6&&self===top){
var doc=document,_11=doc.activeElement;
if(doc.getElementsByClassName&&(!_11||_11===doc.body)){
var n=doc.getElementsByClassName("wpToolbarFocusStart");
if(n&&n.length>0){
var e=n[0];
e.focus();
}
}
}
};
_10();
});
}
});
})();


}catch(e){console.log("Module 'wp_toolbar_viewframe_validator': ",e);}
try{(function(e){function t(a){if(n[a])return n[a].exports;var o=n[a]={i:a,l:!1,exports:{}};return e[a].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,a){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:a})},t.r=function(e){'undefined'!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:'Module'}),Object.defineProperty(e,'__esModule',{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&'object'==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,'default',{enumerable:!0,value:e}),2&n&&'string'!=typeof e)for(var o in e)t.d(a,o,function(t){return e[t]}.bind(null,o));return a},t.n=function(e){var n=e&&e.__esModule?function(){return e['default']}:function(){return e};return t.d(n,'a',n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p='',t(t.s=2)})([function(e,t,n){var a=n(3),o=n(4),i=o;'undefined'==typeof i.$&&(i.$=a),'undefined'==typeof i.jQuery&&(i.jQuery=a),e.exports=a},function(e){var t=function(){return this}();try{t=t||new Function('return this')()}catch(n){'object'==typeof window&&(t=window)}e.exports=t},function(e,t,n){e.exports=n(27)},function(e,t){var n=Math.max,a,o;/*!
 * jQuery JavaScript Library v3.6.0
 * https://jquery.com/
 *
 * Includes Sizzle.js
 * https://sizzlejs.com/
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license
 * https://jquery.org/license
 *
 * Date: 2021-03-02T17:08Z
 */(function(t,n){'use strict';'object'==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error('jQuery requires a window with a document');return n(e)}:n(t)})('undefined'==typeof window?this:window,function(i,l){'use strict';function r(e,t,n){n=n||ke;var a=n.createElement('script'),o,i;if(a.text=e,t)for(o in Ae)i=t[o]||t.getAttribute&&t.getAttribute(o),i&&a.setAttribute(o,i);n.head.appendChild(a).parentNode.removeChild(a)}function s(e){return null==e?e+'':'object'==typeof e||'function'==typeof e?_e[xe.call(e)]||'object':typeof e}function d(e){var t=!!e&&'length'in e&&e.length,n=s(e);return!(Ne(e)||Se(e))&&('array'===n||0===t||'number'==typeof t&&0<t&&t-1 in e)}function c(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function p(e,t,n){return Ne(t)?Le.grep(e,function(e,a){return!!t.call(e,a,e)!==n}):t.nodeType?Le.grep(e,function(e){return e===t!==n}):'string'==typeof t?Le.filter(t,e,n):Le.grep(e,function(e){return-1<be.call(t,e)!==n})}function u(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function f(e){var t={};return Le.each(e.match(Fe)||[],function(e,n){t[n]=!0}),t}function g(e){return e}function m(e){throw e}function h(e,t,n,a){var o;try{e&&Ne(o=e.promise)?o.call(e).done(t).fail(n):e&&Ne(o=e.then)?o.call(e,t,n):t.apply(void 0,[e].slice(a))}catch(e){n.apply(void 0,[e])}}function y(){ke.removeEventListener('DOMContentLoaded',y),i.removeEventListener('load',y),Le.ready()}function v(e,t){return t.toUpperCase()}function b(e){return e.replace(Xe,'ms-').replace(Ve,v)}function _(){this.expando=Le.expando+_.uid++}function x(e){return'true'===e||'false'!==e&&('null'===e?null:e===+e+''?+e:Ge.test(e)?JSON.parse(e):e)}function E(e,t,n){var a;if(void 0===n&&1===e.nodeType)if(a='data-'+t.replace(Je,'-$&').toLowerCase(),n=e.getAttribute(a),'string'==typeof n){try{n=x(n)}catch(t){}Ke.set(e,t,n)}else n=void 0;return n}function C(e,t,n,a){var o=20,i=a?function(){return a.cur()}:function(){return Le.css(e,t,'')},l=i(),r=n&&n[3]||(Le.cssNumber[t]?'':'px'),s=e.nodeType&&(Le.cssNumber[t]||'px'!==r&&+l)&&et.exec(Le.css(e,t)),d,c;if(s&&s[3]!==r){for(l/=2,r=r||s[3],s=+l||1;o--;)Le.style(e,t,s+r),0>=(1-c)*(1-(c=i()/l||.5))&&(o=0),s/=c;s*=2,Le.style(e,t,s+r),n=n||[]}return n&&(s=+s||+l||0,d=n[1]?s+(n[1]+1)*n[2]:+n[2],a&&(a.unit=r,a.start=s,a.end=d)),d}function T(e){var t=e.ownerDocument,n=e.nodeName,a=lt[n],o;return a?a:(o=t.body.appendChild(t.createElement(n)),a=Le.css(o,'display'),o.parentNode.removeChild(o),'none'===a&&(a='block'),lt[n]=a,a)}function w(e,t){for(var n=[],a=0,o=e.length,i,l;a<o;a++)(l=e[a],!!l.style)&&(i=l.style.display,t?('none'===i&&(n[a]=Ye.get(l,'display')||null,!n[a]&&(l.style.display='')),''===l.style.display&&it(l)&&(n[a]=T(l))):'none'!==i&&(n[a]='none',Ye.set(l,'display',i)));for(a=0;a<o;a++)null!=n[a]&&(e[a].style.display=n[a]);return e}function N(e,t){var n;return n='undefined'==typeof e.getElementsByTagName?'undefined'==typeof e.querySelectorAll?[]:e.querySelectorAll(t||'*'):e.getElementsByTagName(t||'*'),void 0===t||t&&c(e,t)?Le.merge([e],n):n}function S(e,t){for(var n=0,a=e.length;n<a;n++)Ye.set(e[n],'globalEval',!t||Ye.get(t[n],'globalEval'))}function k(e,t,n,a,o){for(var r=t.createDocumentFragment(),d=[],c=0,i=e.length,l,p,u,f,g,m;c<i;c++)if(l=e[c],l||0===l)if('object'===s(l))Le.merge(d,l.nodeType?[l]:l);else if(!pt.test(l))d.push(t.createTextNode(l));else{for(p=p||r.appendChild(t.createElement('div')),u=(st.exec(l)||['',''])[1].toLowerCase(),f=ct[u]||ct._default,p.innerHTML=f[1]+Le.htmlPrefilter(l)+f[2],m=f[0];m--;)p=p.lastChild;Le.merge(d,p.childNodes),p=r.firstChild,p.textContent=''}for(r.textContent='',c=0;l=d[c++];){if(a&&-1<Le.inArray(l,a)){o&&o.push(l);continue}if(g=at(l),p=N(r.appendChild(l),'script'),g&&S(p),n)for(m=0;l=p[m++];)dt.test(l.type||'')&&n.push(l)}return r}function A(){return!0}function D(){return!1}function L(e,t){return e===j()==('focus'===t)}function j(){try{return ke.activeElement}catch(e){}}function I(e,t,n,a,o,i){var l,r;if('object'==typeof t){for(r in'string'!=typeof n&&(a=a||n,n=void 0),t)I(e,r,n,a,t[r],i);return e}if(null==a&&null==o?(o=n,a=n=void 0):null==o&&('string'==typeof n?(o=a,a=void 0):(o=a,a=n,n=void 0)),!1===o)o=D;else if(!o)return e;return 1===i&&(l=o,o=function(e){return Le().off(e),l.apply(this,arguments)},o.guid=l.guid||(l.guid=Le.guid++)),e.each(function(){Le.event.add(this,t,o,a,n)})}function O(e,t,n){return n?void(Ye.set(e,t,!1),Le.event.add(e,t,{namespace:!1,handler:function(e){var a=Ye.get(this,t),o,i;if(!(1&e.isTrigger&&this[t]))a.length&&(Ye.set(this,t,{value:Le.event.trigger(Le.extend(a[0],Le.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation());else if(!!a.length)(Le.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=he.call(arguments),Ye.set(this,t,a),o=n(this,t),this[t](),i=Ye.get(this,t),a!==i||o?Ye.set(this,t,!1):i={},a!==i)return e.stopImmediatePropagation(),e.preventDefault(),i&&i.value}})):void(void 0===Ye.get(e,t)&&Le.event.add(e,t,A))}function P(e,t){return c(e,'table')&&c(11===t.nodeType?t.firstChild:t,'tr')?Le(e).children('tbody')[0]||e:e}function q(e){return e.type=(null!==e.getAttribute('type'))+'/'+e.type,e}function H(e){return'true/'===(e.type||'').slice(0,5)?e.type=e.type.slice(5):e.removeAttribute('type'),e}function M(e,t){var n,a,o,i,l,r,s;if(1===t.nodeType){if(Ye.hasData(e)&&(i=Ye.get(e),s=i.events,s))for(o in Ye.remove(t,'handle events'),s)for(n=0,a=s[o].length;n<a;n++)Le.event.add(t,o,s[o][n]);Ke.hasData(e)&&(l=Ke.access(e),r=Le.extend({},l),Ke.set(t,r))}}function B(e,t){var n=t.nodeName.toLowerCase();'input'===n&&rt.test(e.type)?t.checked=e.checked:('input'===n||'textarea'===n)&&(t.defaultValue=e.defaultValue)}function R(e,t,n,a){t=ye(t);var o=0,i=e.length,l=t[0],s=Ne(l),d,c,p,u,f,g;if(s||1<i&&'string'==typeof l&&!we.checkClone&&gt.test(l))return e.each(function(o){var i=e.eq(o);s&&(t[0]=l.call(this,o,i.html())),R(i,t,n,a)});if(i&&(d=k(t,e[0].ownerDocument,!1,e,a),c=d.firstChild,1===d.childNodes.length&&(d=c),c||a)){for(p=Le.map(N(d,'script'),q),u=p.length;o<i;o++)f=d,o!=i-1&&(f=Le.clone(f,!0,!0),u&&Le.merge(p,N(f,'script'))),n.call(e[o],f,o);if(u)for(g=p[p.length-1].ownerDocument,Le.map(p,H),o=0;o<u;o++)f=p[o],dt.test(f.type||'')&&!Ye.access(f,'globalEval')&&Le.contains(g,f)&&(f.src&&'module'!==(f.type||'').toLowerCase()?Le._evalUrl&&!f.noModule&&Le._evalUrl(f.src,{nonce:f.nonce||f.getAttribute('nonce')},g):r(f.textContent.replace(mt,''),f,g))}return e}function W(e,t,n){for(var a=t?Le.filter(t,e):e,o=0,i;null!=(i=a[o]);o++)n||1!==i.nodeType||Le.cleanData(N(i)),i.parentNode&&(n&&at(i)&&S(N(i,'script')),i.parentNode.removeChild(i));return e}function F(e,t,n){var a=e.style,o,i,l,r;return n=n||yt(e),n&&(r=n.getPropertyValue(t)||n[t],''===r&&!at(e)&&(r=Le.style(e,t)),!we.pixelBoxStyles()&&ht.test(r)&&bt.test(t)&&(o=a.width,i=a.minWidth,l=a.maxWidth,a.minWidth=a.maxWidth=a.width=r,r=n.width,a.width=o,a.minWidth=i,a.maxWidth=l)),void 0===r?r:r+''}function U(e,t){return{get:function(){return e()?void delete this.get:(this.get=t).apply(this,arguments)}}}function Q(e){for(var t=e[0].toUpperCase()+e.slice(1),n=_t.length;n--;)if(e=_t[n]+t,e in xt)return e}function X(e){var t=Le.cssProps[e]||Et[e];return t?t:e in xt?e:Et[e]=Q(e)||e}function V(e,t,a){var o=et.exec(t);return o?n(0,o[2]-(a||0))+(o[3]||'px'):t}function z(e,t,a,o,l,r){var s='width'===t?1:0,i=0,d=0;if(a===(o?'border':'content'))return 0;for(;4>s;s+=2)'margin'===a&&(d+=Le.css(e,a+tt[s],!0,l)),o?('content'===a&&(d-=Le.css(e,'padding'+tt[s],!0,l)),'margin'!==a&&(d-=Le.css(e,'border'+tt[s]+'Width',!0,l))):(d+=Le.css(e,'padding'+tt[s],!0,l),'padding'===a?i+=Le.css(e,'border'+tt[s]+'Width',!0,l):d+=Le.css(e,'border'+tt[s]+'Width',!0,l));return!o&&0<=r&&(d+=n(0,fe(e['offset'+t[0].toUpperCase()+t.slice(1)]-r-d-i-.5))||0),d}function Y(e,t,n){var a=yt(e),o=!we.boxSizingReliable()||n,i=o&&'border-box'===Le.css(e,'boxSizing',!1,a),l=i,r=F(e,t,a),s='offset'+t[0].toUpperCase()+t.slice(1);if(ht.test(r)){if(!n)return r;r='auto'}return(!we.boxSizingReliable()&&i||!we.reliableTrDimensions()&&c(e,'tr')||'auto'===r||!parseFloat(r)&&'inline'===Le.css(e,'display',!1,a))&&e.getClientRects().length&&(i='border-box'===Le.css(e,'boxSizing',!1,a),l=s in e,l&&(r=e[s])),r=parseFloat(r)||0,r+z(e,t,n||(i?'border':'content'),l,a,r)+'px'}function K(e,t,n,a,o){return new K.prototype.init(e,t,n,a,o)}function G(){Dt&&(!1===ke.hidden&&i.requestAnimationFrame?i.requestAnimationFrame(G):i.setTimeout(G,Le.fx.interval),Le.fx.tick())}function J(){return i.setTimeout(function(){At=void 0}),At=Date.now()}function Z(e,t){var n=0,a={height:e},o;for(t=t?1:0;4>n;n+=2-t)o=tt[n],a['margin'+o]=a['padding'+o]=e;return t&&(a.opacity=a.width=e),a}function ee(e,t,n){for(var a=(ae.tweeners[t]||[]).concat(ae.tweeners['*']),o=0,i=a.length,l;o<i;o++)if(l=a[o].call(n,t,e))return l}function te(e,t,n){var a='width'in t||'height'in t,o=this,i={},l=e.style,r=e.nodeType&&it(e),s=Ye.get(e,'fxshow'),d,c,p,u,f,g,m,h;for(d in n.queue||(u=Le._queueHooks(e,'fx'),null==u.unqueued&&(u.unqueued=0,f=u.empty.fire,u.empty.fire=function(){u.unqueued||f()}),u.unqueued++,o.always(function(){o.always(function(){u.unqueued--,Le.queue(e,'fx').length||u.empty.fire()})})),t)if(c=t[d],St.test(c)){if(delete t[d],p=p||'toggle'===c,c===(r?'hide':'show'))if('show'===c&&s&&void 0!==s[d])r=!0;else continue;i[d]=s&&s[d]||Le.style(e,d)}if(g=!Le.isEmptyObject(t),g||!Le.isEmptyObject(i))for(d in a&&1===e.nodeType&&(n.overflow=[l.overflow,l.overflowX,l.overflowY],m=s&&s.display,null==m&&(m=Ye.get(e,'display')),h=Le.css(e,'display'),'none'===h&&(m?h=m:(w([e],!0),m=e.style.display||m,h=Le.css(e,'display'),w([e]))),('inline'===h||'inline-block'===h&&null!=m)&&'none'===Le.css(e,'float')&&(!g&&(o.done(function(){l.display=m}),null==m&&(h=l.display,m='none'===h?'':h)),l.display='inline-block')),n.overflow&&(l.overflow='hidden',o.always(function(){l.overflow=n.overflow[0],l.overflowX=n.overflow[1],l.overflowY=n.overflow[2]})),g=!1,i)g||(s?'hidden'in s&&(r=s.hidden):s=Ye.access(e,'fxshow',{display:m}),p&&(s.hidden=!r),r&&w([e],!0),o.done(function(){for(d in r||w([e]),Ye.remove(e,'fxshow'),i)Le.style(e,d,i[d])})),g=ee(r?s[d]:0,d,o),d in s||(s[d]=g.start,r&&(g.end=g.start,g.start=0))}function ne(e,t){var n,a,o,i,l;for(n in e)if(a=b(n),o=t[a],i=e[n],Array.isArray(i)&&(o=i[1],i=e[n]=i[0]),n!=a&&(e[a]=i,delete e[n]),l=Le.cssHooks[a],l&&'expand'in l)for(n in i=l.expand(i),delete e[a],i)n in e||(e[n]=i[n],t[n]=o);else t[a]=o}function ae(e,t,a){var o=0,i=ae.prefilters.length,l=Le.Deferred().always(function(){delete r.elem}),r=function(){if(p)return!1;for(var t=At||J(),a=n(0,s.startTime+s.duration-t),o=a/s.duration||0,i=1-o,r=0,d=s.tweens.length;r<d;r++)s.tweens[r].run(i);return(l.notifyWith(e,[s,i,a]),1>i&&d)?a:(d||l.notifyWith(e,[s,1,0]),l.resolveWith(e,[s]),!1)},s=l.promise({elem:e,props:Le.extend({},t),opts:Le.extend(!0,{specialEasing:{},easing:Le.easing._default},a),originalProperties:t,originalOptions:a,startTime:At||J(),duration:a.duration,tweens:[],createTween:function(t,n){var a=Le.Tween(e,s.opts,t,n,s.opts.specialEasing[t]||s.opts.easing);return s.tweens.push(a),a},stop:function(t){var n=0,a=t?s.tweens.length:0;if(p)return this;for(p=!0;n<a;n++)s.tweens[n].run(1);return t?(l.notifyWith(e,[s,1,0]),l.resolveWith(e,[s,t])):l.rejectWith(e,[s,t]),this}}),d=s.props,c,p;for(ne(d,s.opts.specialEasing);o<i;o++)if(c=ae.prefilters[o].call(s,e,d,s.opts),c)return Ne(c.stop)&&(Le._queueHooks(s.elem,s.opts.queue).stop=c.stop.bind(c)),c;return Le.map(d,ee,s),Ne(s.opts.start)&&s.opts.start.call(e,s),s.progress(s.opts.progress).done(s.opts.done,s.opts.complete).fail(s.opts.fail).always(s.opts.always),Le.fx.timer(Le.extend(r,{elem:e,anim:s,queue:s.opts.queue})),s}function oe(e){var t=e.match(Fe)||[];return t.join(' ')}function ie(e){return e.getAttribute&&e.getAttribute('class')||''}function le(e){return Array.isArray(e)?e:'string'==typeof e?e.match(Fe)||[]:[]}function re(e,t,n,a){if(Array.isArray(t))Le.each(t,function(t,o){n||Wt.test(e)?a(e,o):re(e+'['+('object'==typeof o&&null!=o?t:'')+']',o,n,a)});else if(!n&&'object'===s(t))for(var o in t)re(e+'['+o+']',t[o],n,a);else a(e,t)}function se(e){return function(t,n){'string'!=typeof t&&(n=t,t='*');var a=0,o=t.toLowerCase().match(Fe)||[],i;if(Ne(n))for(;i=o[a++];)'+'===i[0]?(i=i.slice(1)||'*',(e[i]=e[i]||[]).unshift(n)):(e[i]=e[i]||[]).push(n)}}function de(e,t,n,a){function o(r){var s;return i[r]=!0,Le.each(e[r]||[],function(e,r){var d=r(t,n,a);return'string'!=typeof d||l||i[d]?l?!(s=d):void 0:(t.dataTypes.unshift(d),o(d),!1)}),s}var i={},l=e===Zt;return o(t.dataTypes[0])||!i['*']&&o('*')}function ce(e,t){var n=Le.ajaxSettings.flatOptions||{},a,o;for(a in t)void 0!==t[a]&&((n[a]?e:o||(o={}))[a]=t[a]);return o&&Le.extend(!0,e,o),e}function pe(e,t,n){for(var a=e.contents,o=e.dataTypes,i,l,r,s;'*'===o[0];)o.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader('Content-Type'));if(i)for(l in a)if(a[l]&&a[l].test(i)){o.unshift(l);break}if(o[0]in n)r=o[0];else{for(l in n){if(!o[0]||e.converters[l+' '+o[0]]){r=l;break}s||(s=l)}r=r||s}return r?(r!==o[0]&&o.unshift(r),n[r]):void 0}function ue(e,t,n,a){var o={},i=e.dataTypes.slice(),l,r,s,d,c;if(i[1])for(s in e.converters)o[s.toLowerCase()]=e.converters[s];for(r=i.shift();r;)if(e.responseFields[r]&&(n[e.responseFields[r]]=t),!c&&a&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),c=r,r=i.shift(),r)if('*'===r)r=c;else if('*'!==c&&c!=r){if(s=o[c+' '+r]||o['* '+r],!s)for(l in o)if(d=l.split(' '),d[1]===r&&(s=o[c+' '+d[0]]||o['* '+d[0]],s)){!0===s?s=o[l]:!0!==o[l]&&(r=d[0],i.unshift(d[1]));break}if(!0!==s)if(s&&e.throws)t=s(t);else try{t=s(t)}catch(t){return{state:'parsererror',error:s?t:'No conversion from '+c+' to '+r}}}return{state:'success',data:t}}var fe=Math.ceil,ge=[],me=Object.getPrototypeOf,he=ge.slice,ye=ge.flat?function(e){return ge.flat.call(e)}:function(e){return ge.concat.apply([],e)},ve=ge.push,be=ge.indexOf,_e={},xe=_e.toString,Ee=_e.hasOwnProperty,Ce=Ee.toString,Te=Ce.call(Object),we={},Ne=function(e){return'function'==typeof e&&'number'!=typeof e.nodeType&&'function'!=typeof e.item},Se=function(e){return null!=e&&e===e.window},ke=i.document,Ae={type:!0,src:!0,nonce:!0,noModule:!0},De='3.6.0',Le=function(e,t){return new Le.fn.init(e,t)};Le.fn=Le.prototype={jquery:De,constructor:Le,length:0,toArray:function(){return he.call(this)},get:function(e){return null==e?he.call(this):0>e?this[e+this.length]:this[e]},pushStack:function(e){var t=Le.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return Le.each(this,e)},map:function(e){return this.pushStack(Le.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(he.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(Le.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(Le.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:ve,sort:ge.sort,splice:ge.splice},Le.extend=Le.fn.extend=function(){var e=arguments[0]||{},t=1,n=arguments.length,a=!1,o,i,l,r,s,d;for('boolean'==typeof e&&(a=e,e=arguments[t]||{},t++),'object'==typeof e||Ne(e)||(e={}),t===n&&(e=this,t--);t<n;t++)if(null!=(o=arguments[t]))for(i in o)(r=o[i],'__proto__'!==i&&e!==r)&&(a&&r&&(Le.isPlainObject(r)||(s=Array.isArray(r)))?(l=e[i],d=s&&!Array.isArray(l)?[]:s||Le.isPlainObject(l)?l:{},s=!1,e[i]=Le.extend(a,d,r)):void 0!==r&&(e[i]=r));return e},Le.extend({expando:'jQuery'+(De+Math.random()).replace(/\D/g,''),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!!(e&&'[object Object]'===xe.call(e))&&((t=me(e),!!!t)||(n=Ee.call(t,'constructor')&&t.constructor,'function'==typeof n&&Ce.call(n)===Te))},isEmptyObject:function(e){for(var t in e)return!1;return!0},globalEval:function(e,t,n){r(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n=0,a;if(d(e))for(a=e.length;n<a&&!1!==t.call(e[n],n,e[n]);n++);else for(n in e)if(!1===t.call(e[n],n,e[n]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?Le.merge(n,'string'==typeof e?[e]:e):ve.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:be.call(t,e,n)},merge:function(e,t){for(var n=+t.length,a=0,o=e.length;a<n;a++)e[o++]=t[a];return e.length=o,e},grep:function(e,t,n){for(var a=[],o=0,i=e.length,l;o<i;o++)l=!t(e[o],o),l!==!n&&a.push(e[o]);return a},map:function(e,t,n){var a=0,o=[],i,l;if(d(e))for(i=e.length;a<i;a++)l=t(e[a],a,n),null!=l&&o.push(l);else for(a in e)l=t(e[a],a,n),null!=l&&o.push(l);return ye(o)},guid:1,support:we}),'function'==typeof Symbol&&(Le.fn[Symbol.iterator]=ge[Symbol.iterator]),Le.each(['Boolean','Number','String','Function','Array','Date','RegExp','Object','Error','Symbol'],function(e,t){_e['[object '+t+']']=t.toLowerCase()});var je=/*!
 * Sizzle CSS Selector Engine v2.3.6
 * https://sizzlejs.com/
 *
 * Copyright JS Foundation and other contributors
 * Released under the MIT license
 * https://js.foundation/
 *
 * Date: 2021-02-16
 */function(e){function t(e,t,n,a){var o=t&&t.ownerDocument,l=t?t.nodeType:9,r,s,i,d,c,p,f;if(n=n||[],'string'!=typeof e||!e||1!==l&&9!==l&&11!==l)return n;if(!a&&(ve(t),t=t||be,xe)){if(11!==l&&(c=ee.exec(e)))if(!(r=c[1])){if(c[2])return P.apply(n,t.getElementsByTagName(e)),n;if((r=c[3])&&de.getElementsByClassName&&t.getElementsByClassName)return P.apply(n,t.getElementsByClassName(r)),n}else if(9===l){if(!(i=t.getElementById(r)))return n;if(i.id===r)return n.push(i),n}else if(o&&(i=o.getElementById(r))&&we(t,i)&&i.id===r)return n.push(i),n;if(de.qsa&&!A[e+' ']&&(!Ee||!Ee.test(e))&&(1!==l||'object'!==t.nodeName.toLowerCase())){if(f=e,o=t,1===l&&(X.test(e)||Q.test(e))){for(o=te.test(e)&&u(t.parentNode)||t,o===t&&de.scope||((d=t.getAttribute('id'))?d=d.replace(oe,ie):t.setAttribute('id',d=E)),p=ue(e),s=p.length;s--;)p[s]=(d?'#'+d:':scope')+' '+g(p[s]);f=p.join(',')}try{return P.apply(n,o.querySelectorAll(f)),n}catch(t){A(e,!0)}finally{d===E&&t.removeAttribute('id')}}}return ge(e.replace(F,'$1'),t,n,a)}function n(){function e(n,a){return t.push(n+' ')>ce.cacheLength&&delete e[t.shift()],e[n+' ']=a}var t=[];return e}function a(e){return e[E]=!0,e}function o(e){var t=be.createElement('fieldset');try{return!!e(t)}catch(t){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function l(e,t){for(var n=e.split('|'),a=n.length;a--;)ce.attrHandle[n[a]]=t}function r(e,t){var n=t&&e,a=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(a)return a;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){var n=t.nodeName.toLowerCase();return'input'===n&&t.type===e}}function d(e){return function(t){var n=t.nodeName.toLowerCase();return('input'===n||'button'===n)&&t.type===e}}function c(e){return function(t){return'form'in t?t.parentNode&&!1===t.disabled?'label'in t?'label'in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&re(t)===e:t.disabled===e:!!('label'in t)&&t.disabled===e}}function p(e){return a(function(t){return t=+t,a(function(n,a){for(var o=e([],n.length,t),l=o.length,i;l--;)n[i=o[l]]&&(n[i]=!(a[i]=n[i]))})})}function u(e){return e&&'undefined'!=typeof e.getElementsByTagName&&e}function f(){}function g(e){for(var t=0,n=e.length,a='';t<n;t++)a+=e[t].value;return a}function m(e,t,n){var a=t.dir,o=t.next,i=o||a,l=n&&'parentNode'===i,r=w++;return t.first?function(t,n,o){for(;t=t[a];)if(1===t.nodeType||l)return e(t,n,o);return!1}:function(t,n,s){var d=[T,r],c,p,u;if(s){for(;t=t[a];)if((1===t.nodeType||l)&&e(t,n,s))return!0;}else for(;t=t[a];)if(1===t.nodeType||l)if(u=t[E]||(t[E]={}),p=u[t.uniqueID]||(u[t.uniqueID]={}),o&&o===t.nodeName.toLowerCase())t=t[a]||t;else{if((c=p[i])&&c[0]===T&&c[1]===r)return d[2]=c[2];if(p[i]=d,d[2]=e(t,n,s))return!0}return!1}}function h(e){return 1<e.length?function(t,n,a){for(var o=e.length;o--;)if(!e[o](t,n,a))return!1;return!0}:e[0]}function y(e,n,a){for(var o=0,i=n.length;o<i;o++)t(e,n[o],a);return a}function v(e,t,n,a,o){for(var l=[],r=0,i=e.length,s;r<i;r++)(s=e[r])&&(!n||n(s,a,o))&&(l.push(s),null!=t&&t.push(r));return l}function b(e,t,n,o,l,i){return o&&!o[E]&&(o=b(o)),l&&!l[E]&&(l=b(l,i)),a(function(a,r,s,d){var c=[],p=[],u=r.length,f=a||y(t||'*',s.nodeType?[s]:s,[]),g=e&&(a||!t)?v(f,c,e,s,d):f,m=n?l||(a?e:u||o)?[]:r:g,h,b,i;if(n&&n(g,m,s,d),o)for(h=v(m,p),o(h,[],s,d),b=h.length;b--;)(i=h[b])&&(m[p[b]]=!(g[p[b]]=i));if(!a)m=v(m===r?m.splice(u,m.length):m),l?l(null,r,m,d):P.apply(r,m);else if(l||e){if(l){for(h=[],b=m.length;b--;)(i=m[b])&&h.push(g[b]=i);l(null,m=[],h,d)}for(b=m.length;b--;)(i=m[b])&&-1<(h=l?H(a,i):c[b])&&(a[h]=!(r[h]=i))}})}function _(e){for(var t=e.length,n=ce.relative[e[0].type],a=n||ce.relative[' '],o=n?1:0,i=m(function(e){return e===s},a,!0),l=m(function(e){return-1<H(s,e)},a,!0),r=[function(e,t,a){var o=!n&&(a||t!==me)||((s=t).nodeType?i(e,t,a):l(e,t,a));return s=null,o}],s,d,c;o<t;o++)if(d=ce.relative[e[o].type])r=[m(h(r),d)];else{if(d=ce.filter[e[o].type].apply(null,e[o].matches),d[E]){for(c=++o;c<t&&!ce.relative[e[c].type];c++);return b(1<o&&h(r),1<o&&g(e.slice(0,o-1).concat({value:' '===e[o-2].type?'*':''})).replace(F,'$1'),d,o<c&&_(e.slice(o,c)),c<t&&_(e=e.slice(c)),c<t&&g(e))}r.push(d)}return h(r)}function x(e,n){var o=0<n.length,l=0<e.length,i=function(a,r,s,d,c){var p=0,u='0',i=a&&[],f=[],g=me,m=a||l&&ce.find.TAG('*',c),h=T+=null==g?1:Math.random()||.1,y=m.length,b,_,x;for(c&&(me=r==be||r||c);u!==y&&null!=(b=m[u]);u++){if(l&&b){for(_=0,r||b.ownerDocument==be||(ve(b),s=!xe);x=e[_++];)if(x(b,r||be,s)){d.push(b);break}c&&(T=h)}o&&((b=!x&&b)&&p--,a&&i.push(b))}if(p+=u,o&&u!==p){for(_=0;x=n[_++];)x(i,f,r,s);if(a){if(0<p)for(;u--;)i[u]||f[u]||(f[u]=I.call(d));f=v(f)}P.apply(d,f),c&&!a&&0<f.length&&1<p+n.length&&t.uniqueSort(d)}return c&&(T=h,me=g),i};return o?a(i):i}var E='sizzle'+1*new Date,C=e.document,T=0,w=0,N=n(),S=n(),k=n(),A=n(),D=function(e,t){return e===t&&(ye=!0),0},L={}.hasOwnProperty,j=[],I=j.pop,O=j.push,P=j.push,q=j.slice,H=function(e,t){for(var n=0,a=e.length;n<a;n++)if(e[n]===t)return n;return-1},M='checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped',B='[\\x20\\t\\r\\n\\f]',R='(?:\\\\[\\da-fA-F]{1,6}'+B+'?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+',W=/[\x20\t\r\n\f]+/g,F=/^[\x20\t\r\n\f]+|((?:^|[^\\])(?:\\.)*)[\x20\t\r\n\f]+$/g,U=/^[\x20\t\r\n\f]*,[\x20\t\r\n\f]*/,Q=/^[\x20\t\r\n\f]*([>+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,X=/[\x20\t\r\n\f]|>/,V=/:((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/,z=/^(?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+$/,Y={ID:/^#((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)/,CLASS:/^\.((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)/,TAG:/^((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+|[*])/,ATTR:/^\[[\x20\t\r\n\f]*((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+))|)[\x20\t\r\n\f]*\]/,PSEUDO:/^:((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\[^\r\n\f]|[\w-]|[^\0-\x7f])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/,CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},K=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,ee=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,te=/[+~]/,ne=/\\[\da-fA-F]{1,6}[\x20\t\r\n\f]?|\\([^\r\n\f])/g,ae=function(e,t){var n=String.fromCharCode,a='0x'+e.slice(1)-65536;return t?t:0>a?n(a+65536):n(55296|a>>10,56320|1023&a)},oe=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?'\0'===e?'\uFFFD':e.slice(0,-1)+'\\'+e.charCodeAt(e.length-1).toString(16)+' ':'\\'+e},le=function(){ve()},re=m(function(e){return!0===e.disabled&&'fieldset'===e.nodeName.toLowerCase()},{dir:'parentNode',next:'legend'}),se,de,ce,pe,i,ue,fe,ge,me,he,ye,ve,be,_e,xe,Ee,Ce,Te,we;try{P.apply(j=q.call(C.childNodes),C.childNodes),j[C.childNodes.length].nodeType}catch(t){P={apply:j.length?function(e,t){O.apply(e,q.call(t))}:function(e,t){for(var n=e.length,a=0;e[n++]=t[a++];);e.length=n-1}}}for(se in de=t.support={},i=t.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!K.test(t||n&&n.nodeName||'HTML')},ve=t.setDocument=function(e){var t=e?e.ownerDocument||e:C,n,a;return t!=be&&9===t.nodeType&&t.documentElement?(be=t,_e=be.documentElement,xe=!i(be),C!=be&&(a=be.defaultView)&&a.top!==a&&(a.addEventListener?a.addEventListener('unload',le,!1):a.attachEvent&&a.attachEvent('onunload',le)),de.scope=o(function(e){return _e.appendChild(e).appendChild(be.createElement('div')),'undefined'!=typeof e.querySelectorAll&&!e.querySelectorAll(':scope fieldset div').length}),de.attributes=o(function(e){return e.className='i',!e.getAttribute('className')}),de.getElementsByTagName=o(function(e){return e.appendChild(be.createComment('')),!e.getElementsByTagName('*').length}),de.getElementsByClassName=Z.test(be.getElementsByClassName),de.getById=o(function(e){return _e.appendChild(e).id=E,!be.getElementsByName||!be.getElementsByName(E).length}),de.getById?(ce.filter.ID=function(e){var t=e.replace(ne,ae);return function(e){return e.getAttribute('id')===t}},ce.find.ID=function(e,t){if('undefined'!=typeof t.getElementById&&xe){var n=t.getElementById(e);return n?[n]:[]}}):(ce.filter.ID=function(e){var t=e.replace(ne,ae);return function(e){var n='undefined'!=typeof e.getAttributeNode&&e.getAttributeNode('id');return n&&n.value===t}},ce.find.ID=function(e,t){if('undefined'!=typeof t.getElementById&&xe){var n=t.getElementById(e),a,o,i;if(n){if(a=n.getAttributeNode('id'),a&&a.value===e)return[n];for(i=t.getElementsByName(e),o=0;n=i[o++];)if(a=n.getAttributeNode('id'),a&&a.value===e)return[n]}return[]}}),ce.find.TAG=de.getElementsByTagName?function(e,t){return'undefined'==typeof t.getElementsByTagName?de.qsa?t.querySelectorAll(e):void 0:t.getElementsByTagName(e)}:function(e,t){var n=[],a=0,o=t.getElementsByTagName(e),i;if('*'===e){for(;i=o[a++];)1===i.nodeType&&n.push(i);return n}return o},ce.find.CLASS=de.getElementsByClassName&&function(e,t){if('undefined'!=typeof t.getElementsByClassName&&xe)return t.getElementsByClassName(e)},Ce=[],Ee=[],(de.qsa=Z.test(be.querySelectorAll))&&(o(function(e){var t;_e.appendChild(e).innerHTML='<a id=\''+E+'\'></a><select id=\''+E+'-\r\\\' msallowcapture=\'\'><option selected=\'\'></option></select>',e.querySelectorAll('[msallowcapture^=\'\']').length&&Ee.push('[*^$]='+B+'*(?:\'\'|"")'),e.querySelectorAll('[selected]').length||Ee.push('\\['+B+'*(?:value|'+M+')'),e.querySelectorAll('[id~='+E+'-]').length||Ee.push('~='),t=be.createElement('input'),t.setAttribute('name',''),e.appendChild(t),e.querySelectorAll('[name=\'\']').length||Ee.push('\\['+B+'*name'+B+'*='+B+'*(?:\'\'|"")'),e.querySelectorAll(':checked').length||Ee.push(':checked'),e.querySelectorAll('a#'+E+'+*').length||Ee.push('.#.+[+~]'),e.querySelectorAll('\\\f'),Ee.push('[\\r\\n\\f]')}),o(function(e){e.innerHTML='<a href=\'\' disabled=\'disabled\'></a><select disabled=\'disabled\'><option/></select>';var t=be.createElement('input');t.setAttribute('type','hidden'),e.appendChild(t).setAttribute('name','D'),e.querySelectorAll('[name=d]').length&&Ee.push('name'+B+'*[*^$|!~]?='),2!==e.querySelectorAll(':enabled').length&&Ee.push(':enabled',':disabled'),_e.appendChild(e).disabled=!0,2!==e.querySelectorAll(':disabled').length&&Ee.push(':enabled',':disabled'),e.querySelectorAll('*,:x'),Ee.push(',.*:')})),(de.matchesSelector=Z.test(Te=_e.matches||_e.webkitMatchesSelector||_e.mozMatchesSelector||_e.oMatchesSelector||_e.msMatchesSelector))&&o(function(e){de.disconnectedMatch=Te.call(e,'*'),Te.call(e,'[s!=\'\']:x'),Ce.push('!=',':('+R+')(?:\\(((\'((?:\\\\.|[^\\\\\'])*)\'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|'+('\\['+B+'*('+R+')(?:'+B+'*([*^$|!~]?=)'+B+'*(?:\'((?:\\\\.|[^\\\\\'])*)\'|"((?:\\\\.|[^\\\\"])*)"|('+R+'))|)'+B+'*\\]')+')*)|.*)\\)|)')}),Ee=Ee.length&&new RegExp(Ee.join('|')),Ce=Ce.length&&new RegExp(Ce.join('|')),n=Z.test(_e.compareDocumentPosition),we=n||Z.test(_e.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,a=t&&t.parentNode;return e===a||!!(a&&1===a.nodeType&&(n.contains?n.contains(a):e.compareDocumentPosition&&16&e.compareDocumentPosition(a)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},D=n?function(e,t){if(e===t)return ye=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n?n:(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!de.sortDetached&&t.compareDocumentPosition(e)===n?e==be||e.ownerDocument==C&&we(C,e)?-1:t==be||t.ownerDocument==C&&we(C,t)?1:he?H(he,e)-H(he,t):0:4&n?-1:1)}:function(e,t){if(e===t)return ye=!0,0;var n=0,a=e.parentNode,o=t.parentNode,i=[e],l=[t],s;if(!a||!o)return e==be?-1:t==be?1:a?-1:o?1:he?H(he,e)-H(he,t):0;if(a===o)return r(e,t);for(s=e;s=s.parentNode;)i.unshift(s);for(s=t;s=s.parentNode;)l.unshift(s);for(;i[n]===l[n];)n++;return n?r(i[n],l[n]):i[n]==C?-1:l[n]==C?1:0},be):be},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if(ve(e),de.matchesSelector&&xe&&!A[n+' ']&&(!Ce||!Ce.test(n))&&(!Ee||!Ee.test(n)))try{var a=Te.call(e,n);if(a||de.disconnectedMatch||e.document&&11!==e.document.nodeType)return a}catch(t){A(n,!0)}return 0<t(n,be,null,[e]).length},t.contains=function(e,t){return(e.ownerDocument||e)!=be&&ve(e),we(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!=be&&ve(e);var n=ce.attrHandle[t.toLowerCase()],a=n&&L.call(ce.attrHandle,t.toLowerCase())?n(e,t,!xe):void 0;return void 0===a?de.attributes||!xe?e.getAttribute(t):(a=e.getAttributeNode(t))&&a.specified?a.value:null:a},t.escape=function(e){return(e+'').replace(oe,ie)},t.error=function(e){throw new Error('Syntax error, unrecognized expression: '+e)},t.uniqueSort=function(e){var t=[],n=0,a=0,o;if(ye=!de.detectDuplicates,he=!de.sortStable&&e.slice(0),e.sort(D),ye){for(;o=e[a++];)o===e[a]&&(n=t.push(a));for(;n--;)e.splice(t[n],1)}return he=null,e},pe=t.getText=function(e){var t='',n=0,a=e.nodeType,o;if(!a)for(;o=e[n++];)t+=pe(o);else if(1===a||9===a||11===a){if('string'==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)t+=pe(e)}else if(3===a||4===a)return e.nodeValue;return t},ce=t.selectors={cacheLength:50,createPseudo:a,match:Y,attrHandle:{},find:{},relative:{">":{dir:'parentNode',first:!0}," ":{dir:'parentNode'},"+":{dir:'previousSibling',first:!0},"~":{dir:'previousSibling'}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ne,ae),e[3]=(e[3]||e[4]||e[5]||'').replace(ne,ae),'~='===e[2]&&(e[3]=' '+e[3]+' '),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),'nth'===e[1].slice(0,3)?(!e[3]&&t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*('even'===e[3]||'odd'===e[3])),e[5]=+(e[7]+e[8]||'odd'===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t=!e[6]&&e[2],n;return Y.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||'':t&&V.test(t)&&(n=ue(t,!0))&&(n=t.indexOf(')',t.length-n)-t.length)&&(e[0]=e[0].slice(0,n),e[2]=t.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ne,ae).toLowerCase();return'*'===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+' '];return t||(t=new RegExp('(^|'+B+')'+e+'('+B+'|$)'))&&N(e,function(e){return t.test('string'==typeof e.className&&e.className||'undefined'!=typeof e.getAttribute&&e.getAttribute('class')||'')})},ATTR:function(e,n,a){return function(o){var i=t.attr(o,e);return null==i?'!='===n:!n||(i+='','='===n?i===a:'!='===n?i!==a:'^='===n?a&&0===i.indexOf(a):'*='===n?a&&-1<i.indexOf(a):'$='===n?a&&i.slice(-a.length)===a:'~='===n?-1<(' '+i.replace(W,' ')+' ').indexOf(a):'|='==n&&(i===a||i.slice(0,a.length+1)===a+'-'))}},CHILD:function(e,t,n,a,o){var i='nth'!==e.slice(0,3),l='last'!==e.slice(-4),r='of-type'===t;return 1===a&&0===o?function(e){return!!e.parentNode}:function(t,n,s){var d=i==l?'previousSibling':'nextSibling',c=t.parentNode,p=r&&t.nodeName.toLowerCase(),u=!s&&!r,f=!1,g,m,h,y,v,b;if(c){if(i){for(;d;){for(y=t;y=y[d];)if(r?y.nodeName.toLowerCase()===p:1===y.nodeType)return!1;b=d='only'===e&&!b&&'nextSibling'}return!0}if(b=[l?c.firstChild:c.lastChild],l&&u){for(y=c,h=y[E]||(y[E]={}),m=h[y.uniqueID]||(h[y.uniqueID]={}),g=m[e]||[],v=g[0]===T&&g[1],f=v&&g[2],y=v&&c.childNodes[v];y=++v&&y&&y[d]||(f=v=0)||b.pop();)if(1===y.nodeType&&++f&&y===t){m[e]=[T,v,f];break}}else if(u&&(y=t,h=y[E]||(y[E]={}),m=h[y.uniqueID]||(h[y.uniqueID]={}),g=m[e]||[],v=g[0]===T&&g[1],f=v),!1===f)for(;(y=++v&&y&&y[d]||(f=v=0)||b.pop())&&!((r?y.nodeName.toLowerCase()===p:1===y.nodeType)&&++f&&(u&&(h=y[E]||(y[E]={}),m=h[y.uniqueID]||(h[y.uniqueID]={}),m[e]=[T,f]),y===t)););return f-=o,f===a||0==f%a&&0<=f/a}}},PSEUDO:function(e,n){var o=ce.pseudos[e]||ce.setFilters[e.toLowerCase()]||t.error('unsupported pseudo: '+e),i;return o[E]?o(n):1<o.length?(i=[e,e,'',n],ce.setFilters.hasOwnProperty(e.toLowerCase())?a(function(e,t){for(var a=o(e,n),l=a.length,i;l--;)i=H(e,a[l]),e[i]=!(t[i]=a[l])}):function(e){return o(e,0,i)}):o}},pseudos:{not:a(function(e){var t=[],n=[],o=fe(e.replace(F,'$1'));return o[E]?a(function(e,t,n,a){for(var l=o(e,null,a,[]),r=e.length,i;r--;)(i=l[r])&&(e[r]=!(t[r]=i))}):function(e,a,i){return t[0]=e,o(t,null,i,n),t[0]=null,!n.pop()}}),has:a(function(e){return function(n){return 0<t(e,n).length}}),contains:a(function(e){return e=e.replace(ne,ae),function(t){return-1<(t.textContent||pe(t)).indexOf(e)}}),lang:a(function(e){return z.test(e||'')||t.error('unsupported lang: '+e),e=e.replace(ne,ae).toLowerCase(),function(t){var n;do if(n=xe?t.lang:t.getAttribute('xml:lang')||t.getAttribute('lang'))return n=n.toLowerCase(),n===e||0===n.indexOf(e+'-');while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===_e},focus:function(e){return e===be.activeElement&&(!be.hasFocus||be.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:c(!1),disabled:c(!0),checked:function(e){var t=e.nodeName.toLowerCase();return'input'===t&&!!e.checked||'option'===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(6>e.nodeType)return!1;return!0},parent:function(e){return!ce.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return'input'===t&&'button'===e.type||'button'===t},text:function(e){var t;return'input'===e.nodeName.toLowerCase()&&'text'===e.type&&(null==(t=e.getAttribute('type'))||'text'===t.toLowerCase())},first:p(function(){return[0]}),last:p(function(e,t){return[t-1]}),eq:p(function(e,t,n){return[0>n?n+t:n]}),even:p(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:p(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:p(function(e,t,n){for(var a=0>n?n+t:n>t?t:n;0<=--a;)e.push(a);return e}),gt:p(function(e,t,n){for(var a=0>n?n+t:n;++a<t;)e.push(a);return e})}},ce.pseudos.nth=ce.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})ce.pseudos[se]=s(se);for(se in{submit:!0,reset:!0})ce.pseudos[se]=d(se);return f.prototype=ce.filters=ce.pseudos,ce.setFilters=new f,ue=t.tokenize=function(e,n){var a=S[e+' '],o,i,l,r,s,d,c;if(a)return n?0:a.slice(0);for(s=e,d=[],c=ce.preFilter;s;){for(r in(!o||(i=U.exec(s)))&&(i&&(s=s.slice(i[0].length)||s),d.push(l=[])),o=!1,(i=Q.exec(s))&&(o=i.shift(),l.push({value:o,type:i[0].replace(F,' ')}),s=s.slice(o.length)),ce.filter)(i=Y[r].exec(s))&&(!c[r]||(i=c[r](i)))&&(o=i.shift(),l.push({value:o,type:r,matches:i}),s=s.slice(o.length));if(!o)break}return n?s.length:s?t.error(e):S(e,d).slice(0)},fe=t.compile=function(e,t){var n=[],a=[],o=k[e+' '],l;if(!o){for(t||(t=ue(e)),l=t.length;l--;)o=_(t[l]),o[E]?n.push(o):a.push(o);o=k(e,x(a,n)),o.selector=e}return o},ge=t.select=function(e,t,n,a){var o='function'==typeof e&&e,l=!a&&ue(e=o.selector||e),r,i,s,d,c;if(n=n||[],1===l.length){if(i=l[0]=l[0].slice(0),2<i.length&&'ID'===(s=i[0]).type&&9===t.nodeType&&xe&&ce.relative[i[1].type]){if(t=(ce.find.ID(s.matches[0].replace(ne,ae),t)||[])[0],!t)return n;o&&(t=t.parentNode),e=e.slice(i.shift().value.length)}for(r=Y.needsContext.test(e)?0:i.length;r--&&(s=i[r],!ce.relative[d=s.type]);)if((c=ce.find[d])&&(a=c(s.matches[0].replace(ne,ae),te.test(i[0].type)&&u(t.parentNode)||t))){if(i.splice(r,1),e=a.length&&g(i),!e)return P.apply(n,a),n;break}}return(o||fe(e,l))(a,t,!xe,n,!t||te.test(e)&&u(t.parentNode)||t),n},de.sortStable=E.split('').sort(D).join('')===E,de.detectDuplicates=!!ye,ve(),de.sortDetached=o(function(e){return 1&e.compareDocumentPosition(be.createElement('fieldset'))}),o(function(e){return e.innerHTML='<a href=\'#\'></a>','#'===e.firstChild.getAttribute('href')})||l('type|href|height|width',function(e,t,n){if(!n)return e.getAttribute(t,'type'===t.toLowerCase()?1:2)}),de.attributes&&o(function(e){return e.innerHTML='<input/>',e.firstChild.setAttribute('value',''),''===e.firstChild.getAttribute('value')})||l('value',function(e,t,n){if(!n&&'input'===e.nodeName.toLowerCase())return e.defaultValue}),o(function(e){return null==e.getAttribute('disabled')})||l(M,function(e,t,n){var a;if(!n)return!0===e[t]?t.toLowerCase():(a=e.getAttributeNode(t))&&a.specified?a.value:null}),t}(i);Le.find=je,Le.expr=je.selectors,Le.expr[':']=Le.expr.pseudos,Le.uniqueSort=Le.unique=je.uniqueSort,Le.text=je.getText,Le.isXMLDoc=je.isXML,Le.contains=je.contains,Le.escapeSelector=je.escape;var Ie=function(e,t,n){for(var a=[];(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(void 0!==n&&Le(e).is(n))break;a.push(e)}return a},Oe=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Pe=Le.expr.match.needsContext,qe=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;Le.filter=function(e,t,n){var a=t[0];return n&&(e=':not('+e+')'),1===t.length&&1===a.nodeType?Le.find.matchesSelector(a,e)?[a]:[]:Le.find.matches(e,Le.grep(t,function(e){return 1===e.nodeType}))},Le.fn.extend({find:function(e){var t=this.length,n=this,a,o;if('string'!=typeof e)return this.pushStack(Le(e).filter(function(){for(a=0;a<t;a++)if(Le.contains(n[a],this))return!0}));for(o=this.pushStack([]),a=0;a<t;a++)Le.find(e,n[a],o);return 1<t?Le.uniqueSort(o):o},filter:function(e){return this.pushStack(p(this,e||[],!1))},not:function(e){return this.pushStack(p(this,e||[],!0))},is:function(e){return!!p(this,'string'==typeof e&&Pe.test(e)?Le(e):e||[],!1).length}});var He=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,Me=Le.fn.init=function(e,t,n){var a,o;if(!e)return this;if(n=n||Be,'string'==typeof e){if(a='<'===e[0]&&'>'===e[e.length-1]&&3<=e.length?[null,e,null]:He.exec(e),a&&(a[1]||!t)){if(a[1]){if(t=t instanceof Le?t[0]:t,Le.merge(this,Le.parseHTML(a[1],t&&t.nodeType?t.ownerDocument||t:ke,!0)),qe.test(a[1])&&Le.isPlainObject(t))for(a in t)Ne(this[a])?this[a](t[a]):this.attr(a,t[a]);return this}return o=ke.getElementById(a[2]),o&&(this[0]=o,this.length=1),this}return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e)}return e.nodeType?(this[0]=e,this.length=1,this):Ne(e)?void 0===n.ready?e(Le):n.ready(e):Le.makeArray(e,this)},Be;Me.prototype=Le.fn,Be=Le(ke);var Re=/^(?:parents|prev(?:Until|All))/,We={children:!0,contents:!0,next:!0,prev:!0};Le.fn.extend({has:function(e){var t=Le(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(Le.contains(this,t[e]))return!0})},closest:function(e,t){var n=0,a=this.length,o=[],i='string'!=typeof e&&Le(e),l;if(!Pe.test(e))for(;n<a;n++)for(l=this[n];l&&l!==t;l=l.parentNode)if(11>l.nodeType&&(i?-1<i.index(l):1===l.nodeType&&Le.find.matchesSelector(l,e))){o.push(l);break}return this.pushStack(1<o.length?Le.uniqueSort(o):o)},index:function(e){return e?'string'==typeof e?be.call(Le(e),this[0]):be.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(Le.uniqueSort(Le.merge(this.get(),Le(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),Le.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return Ie(e,'parentNode')},parentsUntil:function(e,t,n){return Ie(e,'parentNode',n)},next:function(e){return u(e,'nextSibling')},prev:function(e){return u(e,'previousSibling')},nextAll:function(e){return Ie(e,'nextSibling')},prevAll:function(e){return Ie(e,'previousSibling')},nextUntil:function(e,t,n){return Ie(e,'nextSibling',n)},prevUntil:function(e,t,n){return Ie(e,'previousSibling',n)},siblings:function(e){return Oe((e.parentNode||{}).firstChild,e)},children:function(e){return Oe(e.firstChild)},contents:function(e){return null!=e.contentDocument&&me(e.contentDocument)?e.contentDocument:(c(e,'template')&&(e=e.content||e),Le.merge([],e.childNodes))}},function(e,t){Le.fn[e]=function(n,a){var o=Le.map(this,t,n);return'Until'!==e.slice(-5)&&(a=n),a&&'string'==typeof a&&(o=Le.filter(a,o)),1<this.length&&(!We[e]&&Le.uniqueSort(o),Re.test(e)&&o.reverse()),this.pushStack(o)}});var Fe=/[^\x20\t\r\n\f]+/g;Le.Callbacks=function(e){e='string'==typeof e?f(e):Le.extend({},e);var t=[],n=[],a=-1,o=function(){for(c=c||e.once,d=l=!0;n.length;a=-1)for(r=n.shift();++a<t.length;)!1===t[a].apply(r[0],r[1])&&e.stopOnFalse&&(a=t.length,r=!1);e.memory||(r=!1),l=!1,c&&(r?t=[]:t='')},i={add:function(){return t&&(r&&!l&&(a=t.length-1,n.push(r)),function n(a){Le.each(a,function(a,o){Ne(o)?(!e.unique||!i.has(o))&&t.push(o):o&&o.length&&'string'!==s(o)&&n(o)})}(arguments),r&&!l&&o()),this},remove:function(){return Le.each(arguments,function(e,n){for(var o;-1<(o=Le.inArray(n,t,o));)t.splice(o,1),o<=a&&a--}),this},has:function(e){return e?-1<Le.inArray(e,t):0<t.length},empty:function(){return t&&(t=[]),this},disable:function(){return c=n=[],t=r='',this},disabled:function(){return!t},lock:function(){return c=n=[],r||l||(t=r=''),this},locked:function(){return!!c},fireWith:function(e,t){return c||(t=t||[],t=[e,t.slice?t.slice():t],n.push(t),!l&&o()),this},fire:function(){return i.fireWith(this,arguments),this},fired:function(){return!!d}},l,r,d,c;return i},Le.extend({Deferred:function(e){var t=[['notify','progress',Le.Callbacks('memory'),Le.Callbacks('memory'),2],['resolve','done',Le.Callbacks('once memory'),Le.Callbacks('once memory'),0,'resolved'],['reject','fail',Le.Callbacks('once memory'),Le.Callbacks('once memory'),1,'rejected']],n='pending',a={state:function(){return n},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return a.then(null,e)},pipe:function(){var e=arguments;return Le.Deferred(function(n){Le.each(t,function(t,a){var i=Ne(e[a[4]])&&e[a[4]];o[a[1]](function(){var e=i&&i.apply(this,arguments);e&&Ne(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[a[0]+'With'](this,i?[e]:arguments)})}),e=null}).promise()},then:function(e,n,a){function o(t,n,a,e){return function(){var r=this,s=arguments,d=function(){var i,d;if(!(t<l)){if(i=a.apply(r,s),i===n.promise())throw new TypeError('Thenable self-resolution');d=i&&('object'==typeof i||'function'==typeof i)&&i.then,Ne(d)?e?d.call(i,o(l,n,g,e),o(l,n,m,e)):(l++,d.call(i,o(l,n,g,e),o(l,n,m,e),o(l,n,g,n.notifyWith))):(a!==g&&(r=void 0,s=[i]),(e||n.resolveWith)(r,s))}},c=e?d:function(){try{d()}catch(o){Le.Deferred.exceptionHook&&Le.Deferred.exceptionHook(o,c.stackTrace),t+1>=l&&(a!==m&&(r=void 0,s=[o]),n.rejectWith(r,s))}};t?c():(Le.Deferred.getStackHook&&(c.stackTrace=Le.Deferred.getStackHook()),i.setTimeout(c))}}var l=0;return Le.Deferred(function(i){t[0][3].add(o(0,i,Ne(a)?a:g,i.notifyWith)),t[1][3].add(o(0,i,Ne(e)?e:g)),t[2][3].add(o(0,i,Ne(n)?n:m))}).promise()},promise:function(e){return null==e?a:Le.extend(e,a)}},o={};return Le.each(t,function(e,i){var l=i[2],r=i[5];a[i[1]]=l.add,r&&l.add(function(){n=r},t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),l.add(i[3].fire),o[i[0]]=function(){return o[i[0]+'With'](this===o?void 0:this,arguments),this},o[i[0]+'With']=l.fireWith}),a.promise(o),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,a=Array(n),o=he.call(arguments),l=Le.Deferred(),i=function(e){return function(n){a[e]=this,o[e]=1<arguments.length?he.call(arguments):n,--t||l.resolveWith(a,o)}};if(1>=t&&(h(e,l.done(i(n)).resolve,l.reject,!t),'pending'===l.state()||Ne(o[n]&&o[n].then)))return l.then();for(;n--;)h(o[n],i(n),l.reject);return l.promise()}});var Ue=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;Le.Deferred.exceptionHook=function(e,t){i.console&&i.console.warn&&e&&Ue.test(e.name)&&i.console.warn('jQuery.Deferred exception: '+e.message,e.stack,t)},Le.readyException=function(e){i.setTimeout(function(){throw e})};var $e=Le.Deferred();Le.fn.ready=function(e){return $e.then(e).catch(function(e){Le.readyException(e)}),this},Le.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?! --Le.readyWait:!Le.isReady)&&(Le.isReady=!0,!0!==e&&0<--Le.readyWait||$e.resolveWith(ke,[Le]))}}),Le.ready.then=$e.then,'complete'!==ke.readyState&&('loading'===ke.readyState||ke.documentElement.doScroll)?(ke.addEventListener('DOMContentLoaded',y),i.addEventListener('load',y)):i.setTimeout(Le.ready);var Qe=function(e,t,n,a,o,l,r){var d=0,i=e.length,c=null==n;if('object'===s(n))for(d in o=!0,n)Qe(e,t,d,n[d],!0,l,r);else if(void 0!==a&&(o=!0,Ne(a)||(r=!0),c&&(r?(t.call(e,a),t=null):(c=t,t=function(e,t,n){return c.call(Le(e),n)})),t))for(;d<i;d++)t(e[d],n,r?a:a.call(e[d],d,t(e[d],n)));return o?e:c?t.call(e):i?t(e[0],n):l},Xe=/^-ms-/,Ve=/-([a-z])/g,ze=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};_.uid=1,_.prototype={cache:function(e){var t=e[this.expando];return t||(t={},ze(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var a=this.cache(e),o;if('string'==typeof t)a[b(t)]=n;else for(o in t)a[b(o)]=t[o];return a},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][b(t)]},access:function(e,t,n){return void 0===t||t&&'string'==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0===n?t:n)},remove:function(e,t){var n=e[this.expando],a;if(void 0!==n){if(void 0!==t)for(Array.isArray(t)?t=t.map(b):(t=b(t),t=(t in n)?[t]:t.match(Fe)||[]),a=t.length;a--;)delete n[t[a]];(void 0===t||Le.isEmptyObject(n))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!Le.isEmptyObject(t)}};var Ye=new _,Ke=new _,Ge=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Je=/[A-Z]/g;Le.extend({hasData:function(e){return Ke.hasData(e)||Ye.hasData(e)},data:function(e,t,n){return Ke.access(e,t,n)},removeData:function(e,t){Ke.remove(e,t)},_data:function(e,t,n){return Ye.access(e,t,n)},_removeData:function(e,t){Ye.remove(e,t)}}),Le.fn.extend({data:function(e,t){var n=this[0],a=n&&n.attributes,o,i,l;if(void 0===e){if(this.length&&(l=Ke.get(n),1===n.nodeType&&!Ye.get(n,'hasDataAttrs'))){for(o=a.length;o--;)a[o]&&(i=a[o].name,0===i.indexOf('data-')&&(i=b(i.slice(5)),E(n,i,l[i])));Ye.set(n,'hasDataAttrs',!0)}return l}return'object'==typeof e?this.each(function(){Ke.set(this,e)}):Qe(this,function(t){var a;return n&&void 0===t?(a=Ke.get(n,e),void 0!==a)?a:(a=E(n,e),void 0===a?void 0:a):void this.each(function(){Ke.set(this,e,t)})},null,t,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Ke.remove(this,e)})}}),Le.extend({queue:function(e,t,n){var a;if(e)return t=(t||'fx')+'queue',a=Ye.get(e,t),n&&(!a||Array.isArray(n)?a=Ye.access(e,t,Le.makeArray(n)):a.push(n)),a||[]},dequeue:function(e,t){t=t||'fx';var n=Le.queue(e,t),a=n.length,o=n.shift(),i=Le._queueHooks(e,t),l=function(){Le.dequeue(e,t)};'inprogress'===o&&(o=n.shift(),a--),o&&('fx'===t&&n.unshift('inprogress'),delete i.stop,o.call(e,l,i)),!a&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+'queueHooks';return Ye.get(e,n)||Ye.access(e,n,{empty:Le.Callbacks('once memory').add(function(){Ye.remove(e,[t+'queue',n])})})}}),Le.fn.extend({queue:function(e,t){var n=2;return'string'!=typeof e&&(t=e,e='fx',n--),arguments.length<n?Le.queue(this[0],e):void 0===t?this:this.each(function(){var n=Le.queue(this,e,t);Le._queueHooks(this,e),'fx'===e&&'inprogress'!==n[0]&&Le.dequeue(this,e)})},dequeue:function(e){return this.each(function(){Le.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||'fx',[])},promise:function(e,t){var n=1,a=Le.Deferred(),o=this,l=this.length,i=function(){--n||a.resolveWith(o,[o])},r;for('string'!=typeof e&&(t=e,e=void 0),e=e||'fx';l--;)r=Ye.get(o[l],e+'queueHooks'),r&&r.empty&&(n++,r.empty.add(i));return i(),a.promise(t)}});var Ze=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,et=new RegExp('^(?:([+-])=|)('+Ze+')([a-z%]*)$','i'),tt=['Top','Right','Bottom','Left'],nt=ke.documentElement,at=function(e){return Le.contains(e.ownerDocument,e)},ot={composed:!0};nt.getRootNode&&(at=function(e){return Le.contains(e.ownerDocument,e)||e.getRootNode(ot)===e.ownerDocument});var it=function(e,t){return e=t||e,'none'===e.style.display||''===e.style.display&&at(e)&&'none'===Le.css(e,'display')},lt={};Le.fn.extend({show:function(){return w(this,!0)},hide:function(){return w(this)},toggle:function(e){return'boolean'==typeof e?e?this.show():this.hide():this.each(function(){it(this)?Le(this).show():Le(this).hide()})}});var rt=/^(?:checkbox|radio)$/i,st=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,dt=/^$|^module$|\/(?:java|ecma)script/i;(function(){var e=ke.createDocumentFragment(),t=e.appendChild(ke.createElement('div')),n=ke.createElement('input');n.setAttribute('type','radio'),n.setAttribute('checked','checked'),n.setAttribute('name','t'),t.appendChild(n),we.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML='<textarea>x</textarea>',we.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,t.innerHTML='<option></option>',we.option=!!t.lastChild})();var ct={thead:[1,'<table>','</table>'],col:[2,'<table><colgroup>','</colgroup></table>'],tr:[2,'<table><tbody>','</tbody></table>'],td:[3,'<table><tbody><tr>','</tr></tbody></table>'],_default:[0,'','']};ct.tbody=ct.tfoot=ct.colgroup=ct.caption=ct.thead,ct.th=ct.td,we.option||(ct.optgroup=ct.option=[1,'<select multiple=\'multiple\'>','</select>']);var pt=/<|&#?\w+;/,ut=/^([^.]*)(?:\.(.+)|)/;Le.event={global:{},add:function(n,e,a,o,i){var l=Ye.get(n),r,s,d,c,p,t,u,f,g,m,h;if(ze(n))for(a.handler&&(r=a,a=r.handler,i=r.selector),i&&Le.find.matchesSelector(nt,i),a.guid||(a.guid=Le.guid++),(c=l.events)||(c=l.events=Object.create(null)),(s=l.handle)||(s=l.handle=function(t){return'undefined'!=typeof Le&&Le.event.triggered!==t.type?Le.event.dispatch.apply(n,arguments):void 0}),e=(e||'').match(Fe)||[''],p=e.length;p--;)(d=ut.exec(e[p])||[],g=h=d[1],m=(d[2]||'').split('.').sort(),!!g)&&(u=Le.event.special[g]||{},g=(i?u.delegateType:u.bindType)||g,u=Le.event.special[g]||{},t=Le.extend({type:g,origType:h,data:o,handler:a,guid:a.guid,selector:i,needsContext:i&&Le.expr.match.needsContext.test(i),namespace:m.join('.')},r),(f=c[g])||(f=c[g]=[],f.delegateCount=0,(!u.setup||!1===u.setup.call(n,o,m,s))&&n.addEventListener&&n.addEventListener(g,s)),u.add&&(u.add.call(n,t),!t.handler.guid&&(t.handler.guid=a.guid)),i?f.splice(f.delegateCount++,0,t):f.push(t),Le.event.global[g]=!0)},remove:function(e,n,a,o,i){var l=Ye.hasData(e)&&Ye.get(e),r,s,d,c,p,t,u,f,g,m,h;if(l&&(c=l.events)){for(n=(n||'').match(Fe)||[''],p=n.length;p--;){if(d=ut.exec(n[p])||[],g=h=d[1],m=(d[2]||'').split('.').sort(),!g){for(g in c)Le.event.remove(e,g+n[p],a,o,!0);continue}for(u=Le.event.special[g]||{},g=(o?u.delegateType:u.bindType)||g,f=c[g]||[],d=d[2]&&new RegExp('(^|\\.)'+m.join('\\.(?:.*\\.|)')+'(\\.|$)'),s=r=f.length;r--;)t=f[r],(i||h===t.origType)&&(!a||a.guid===t.guid)&&(!d||d.test(t.namespace))&&(!o||o===t.selector||'**'===o&&t.selector)&&(f.splice(r,1),t.selector&&f.delegateCount--,u.remove&&u.remove.call(e,t));s&&!f.length&&((!u.teardown||!1===u.teardown.call(e,m,l.handle))&&Le.removeEvent(e,g,l.handle),delete c[g])}Le.isEmptyObject(c)&&Ye.remove(e,'handle events')}},dispatch:function(e){var t=Array(arguments.length),n=Le.event.fix(e),a=(Ye.get(this,'events')||Object.create(null))[n.type]||[],o=Le.event.special[n.type]||{},l,i,r,s,d,c;for(t[0]=n,l=1;l<arguments.length;l++)t[l]=arguments[l];if(n.delegateTarget=this,!(o.preDispatch&&!1===o.preDispatch.call(this,n))){for(c=Le.event.handlers.call(this,n,a),l=0;(s=c[l++])&&!n.isPropagationStopped();)for(n.currentTarget=s.elem,i=0;(d=s.handlers[i++])&&!n.isImmediatePropagationStopped();)(!n.rnamespace||!1===d.namespace||n.rnamespace.test(d.namespace))&&(n.handleObj=d,n.data=d.data,r=((Le.event.special[d.origType]||{}).handle||d.handler).apply(s.elem,t),void 0!==r&&!1===(n.result=r)&&(n.preventDefault(),n.stopPropagation()));return o.postDispatch&&o.postDispatch.call(this,n),n.result}},handlers:function(e,t){var n=[],a=t.delegateCount,o=e.target,l,i,r,s,d;if(a&&o.nodeType&&!('click'===e.type&&1<=e.button))for(;o!==this;o=o.parentNode||this)if(1===o.nodeType&&('click'!==e.type||!0!==o.disabled)){for(s=[],d={},l=0;l<a;l++)i=t[l],r=i.selector+' ',void 0===d[r]&&(d[r]=i.needsContext?-1<Le(r,this).index(o):Le.find(r,this,null,[o]).length),d[r]&&s.push(i);s.length&&n.push({elem:o,handlers:s})}return o=this,a<t.length&&n.push({elem:o,handlers:t.slice(a)}),n},addProp:function(e,t){Object.defineProperty(Le.Event.prototype,e,{enumerable:!0,configurable:!0,get:Ne(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[Le.expando]?e:new Le.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return rt.test(t.type)&&t.click&&c(t,'input')&&O(t,'click',A),!1},trigger:function(e){var t=this||e;return rt.test(t.type)&&t.click&&c(t,'input')&&O(t,'click'),!0},_default:function(e){var t=e.target;return rt.test(t.type)&&t.click&&c(t,'input')&&Ye.get(t,'click')||c(t,'a')}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},Le.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},Le.Event=function(e,t){return this instanceof Le.Event?void(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?A:D,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&Le.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[Le.expando]=!0):new Le.Event(e,t)},Le.Event.prototype={constructor:Le.Event,isDefaultPrevented:D,isPropagationStopped:D,isImmediatePropagationStopped:D,isSimulated:!1,preventDefault:function(){var t=this.originalEvent;this.isDefaultPrevented=A,t&&!this.isSimulated&&t.preventDefault()},stopPropagation:function(){var t=this.originalEvent;this.isPropagationStopped=A,t&&!this.isSimulated&&t.stopPropagation()},stopImmediatePropagation:function(){var t=this.originalEvent;this.isImmediatePropagationStopped=A,t&&!this.isSimulated&&t.stopImmediatePropagation(),this.stopPropagation()}},Le.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},Le.event.addProp),Le.each({focus:'focusin',blur:'focusout'},function(e,t){Le.event.special[e]={setup:function(){return O(this,e,L),!1},trigger:function(){return O(this,e),!0},_default:function(){return!0},delegateType:t}}),Le.each({mouseenter:'mouseover',mouseleave:'mouseout',pointerenter:'pointerover',pointerleave:'pointerout'},function(e,t){Le.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n=this,a=e.relatedTarget,o=e.handleObj,i;return a&&(a===n||Le.contains(n,a))||(e.type=o.origType,i=o.handler.apply(this,arguments),e.type=t),i}}}),Le.fn.extend({on:function(e,t,n,a){return I(this,e,t,n,a)},one:function(e,t,n,a){return I(this,e,t,n,a,1)},off:function(e,t,n){var a,o;if(e&&e.preventDefault&&e.handleObj)return a=e.handleObj,Le(e.delegateTarget).off(a.namespace?a.origType+'.'+a.namespace:a.origType,a.selector,a.handler),this;if('object'==typeof e){for(o in e)this.off(o,t,e[o]);return this}return(!1===t||'function'==typeof t)&&(n=t,t=void 0),!1===n&&(n=D),this.each(function(){Le.event.remove(this,e,n,t)})}});var ft=/<script|<style|<link/i,gt=/checked\s*(?:[^=]|=\s*.checked.)/i,mt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;Le.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var a=e.cloneNode(!0),o=at(e),r,i,l,s;if(!we.noCloneChecked&&(1===e.nodeType||11===e.nodeType)&&!Le.isXMLDoc(e))for(s=N(a),l=N(e),(r=0,i=l.length);r<i;r++)B(l[r],s[r]);if(t)if(n)for(l=l||N(e),s=s||N(a),(r=0,i=l.length);r<i;r++)M(l[r],s[r]);else M(e,a);return s=N(a,'script'),0<s.length&&S(s,!o&&N(e,'script')),a},cleanData:function(e){for(var t=Le.event.special,n=0,a,o,i;void 0!==(o=e[n]);n++)if(ze(o)){if(a=o[Ye.expando]){if(a.events)for(i in a.events)t[i]?Le.event.remove(o,i):Le.removeEvent(o,i,a.handle);o[Ye.expando]=void 0}o[Ke.expando]&&(o[Ke.expando]=void 0)}}}),Le.fn.extend({detach:function(e){return W(this,e,!0)},remove:function(e){return W(this,e)},text:function(e){return Qe(this,function(e){return void 0===e?Le.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=e)})},null,e,arguments.length)},append:function(){return R(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=P(this,e);t.appendChild(e)}})},prepend:function(){return R(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=P(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return R(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return R(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e=0,t;null!=(t=this[e]);e++)1===t.nodeType&&(Le.cleanData(N(t,!1)),t.textContent='');return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return Le.clone(this,e,t)})},html:function(e){return Qe(this,function(e){var t=this[0]||{},n=0,a=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if('string'==typeof e&&!ft.test(e)&&!ct[(st.exec(e)||['',''])[1].toLowerCase()]){e=Le.htmlPrefilter(e);try{for(;n<a;n++)t=this[n]||{},1===t.nodeType&&(Le.cleanData(N(t,!1)),t.innerHTML=e);t=0}catch(t){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return R(this,arguments,function(t){var n=this.parentNode;0>Le.inArray(this,e)&&(Le.cleanData(N(this)),n&&n.replaceChild(t,this))},e)}}),Le.each({appendTo:'append',prependTo:'prepend',insertBefore:'before',insertAfter:'after',replaceAll:'replaceWith'},function(e,t){Le.fn[e]=function(e){for(var n=[],a=Le(e),o=a.length-1,l=0,i;l<=o;l++)i=l===o?this:this.clone(!0),Le(a[l])[t](i),ve.apply(n,i.get());return this.pushStack(n)}});var ht=new RegExp('^('+Ze+')(?!px)[a-z%]+$','i'),yt=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=i),t.getComputedStyle(e)},vt=function(e,t,n){var a={},o,i;for(i in t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=n.call(e),t)e.style[i]=a[i];return o},bt=new RegExp(tt.join('|'),'i');(function(){function e(){if(a){n.style.cssText='position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0',a.style.cssText='position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%',nt.appendChild(n).appendChild(a);var e=i.getComputedStyle(a);o='1%'!==e.top,c=12===t(e.marginLeft),a.style.right='60%',s=36===t(e.right),l=36===t(e.width),a.style.position='absolute',r=12===t(a.offsetWidth/3),nt.removeChild(n),a=null}}function t(e){return Math.round(parseFloat(e))}var n=ke.createElement('div'),a=ke.createElement('div'),o,l,r,s,d,c;a.style&&(a.style.backgroundClip='content-box',a.cloneNode(!0).style.backgroundClip='',we.clearCloneStyle='content-box'===a.style.backgroundClip,Le.extend(we,{boxSizingReliable:function(){return e(),l},pixelBoxStyles:function(){return e(),s},pixelPosition:function(){return e(),o},reliableMarginLeft:function(){return e(),c},scrollboxSize:function(){return e(),r},reliableTrDimensions:function(){var e,t,n,a;return null==d&&(e=ke.createElement('table'),t=ke.createElement('tr'),n=ke.createElement('div'),e.style.cssText='position:absolute;left:-11111px;border-collapse:separate',t.style.cssText='border:1px solid',t.style.height='1px',n.style.height='9px',n.style.display='block',nt.appendChild(e).appendChild(t).appendChild(n),a=i.getComputedStyle(t),d=parseInt(a.height,10)+parseInt(a.borderTopWidth,10)+parseInt(a.borderBottomWidth,10)===t.offsetHeight,nt.removeChild(e)),d}}))})();var _t=['Webkit','Moz','ms'],xt=ke.createElement('div').style,Et={},Ct=/^(none|table(?!-c[ea]).+)/,Tt=/^--/,wt={position:'absolute',visibility:'hidden',display:'block'},Nt={letterSpacing:'0',fontWeight:'400'};Le.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=F(e,'opacity');return''===n?'1':n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,a){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o=b(t),i=Tt.test(t),l=e.style,r,s,d;if(i||(t=X(o)),d=Le.cssHooks[t]||Le.cssHooks[o],void 0!==n){if(s=typeof n,'string'===s&&(r=et.exec(n))&&r[1]&&(n=C(e,t,r),s='number'),null==n||n!==n)return;'number'!==s||i||(n+=r&&r[3]||(Le.cssNumber[o]?'':'px')),we.clearCloneStyle||''!==n||0!==t.indexOf('background')||(l[t]='inherit'),d&&'set'in d&&void 0===(n=d.set(e,n,a))||(i?l.setProperty(t,n):l[t]=n)}else return d&&'get'in d&&void 0!==(r=d.get(e,!1,a))?r:l[t]}},css:function(e,t,n,a){var o=b(t),i=Tt.test(t),l,r,s;return i||(t=X(o)),s=Le.cssHooks[t]||Le.cssHooks[o],s&&'get'in s&&(l=s.get(e,!0,n)),void 0===l&&(l=F(e,t,a)),'normal'===l&&t in Nt&&(l=Nt[t]),''===n||n?(r=parseFloat(l),!0===n||isFinite(r)?r||0:l):l}}),Le.each(['height','width'],function(e,t){Le.cssHooks[t]={get:function(e,n,a){if(n)return!Ct.test(Le.css(e,'display'))||e.getClientRects().length&&e.getBoundingClientRect().width?Y(e,t,a):vt(e,wt,function(){return Y(e,t,a)})},set:function(e,n,a){var o=yt(e),i=!we.scrollboxSize()&&'absolute'===o.position,l=(i||a)&&'border-box'===Le.css(e,'boxSizing',!1,o),r=a?z(e,t,a,l,o):0,s;return l&&i&&(r-=fe(e['offset'+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-z(e,t,'border',!1,o)-.5)),r&&(s=et.exec(n))&&'px'!==(s[3]||'px')&&(e.style[t]=n,n=Le.css(e,t)),V(e,n,r)}}}),Le.cssHooks.marginLeft=U(we.reliableMarginLeft,function(e,t){if(t)return(parseFloat(F(e,'marginLeft'))||e.getBoundingClientRect().left-vt(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+'px'}),Le.each({margin:'',padding:'',border:'Width'},function(e,t){Le.cssHooks[e+t]={expand:function(n){for(var a=0,o={},i='string'==typeof n?n.split(' '):[n];4>a;a++)o[e+tt[a]+t]=i[a]||i[a-2]||i[0];return o}},'margin'!==e&&(Le.cssHooks[e+t].set=V)}),Le.fn.extend({css:function(e,t){return Qe(this,function(e,t,n){var a={},o=0,i,l;if(Array.isArray(t)){for(i=yt(e),l=t.length;o<l;o++)a[t[o]]=Le.css(e,t[o],!1,i);return a}return void 0===n?Le.css(e,t):Le.style(e,t,n)},e,t,1<arguments.length)}}),Le.Tween=K,K.prototype={constructor:K,init:function(e,t,n,a,o,i){this.elem=e,this.prop=n,this.easing=o||Le.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=a,this.unit=i||(Le.cssNumber[n]?'':'px')},cur:function(){var e=K.propHooks[this.prop];return e&&e.get?e.get(this):K.propHooks._default.get(this)},run:function(e){var t=K.propHooks[this.prop],n;return this.pos=this.options.duration?n=Le.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):n=e,this.now=(this.end-this.start)*n+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),t&&t.set?t.set(this):K.propHooks._default.set(this),this}},K.prototype.init.prototype=K.prototype,K.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=Le.css(e.elem,e.prop,''),t&&'auto'!==t?t:0)},set:function(e){Le.fx.step[e.prop]?Le.fx.step[e.prop](e):1===e.elem.nodeType&&(Le.cssHooks[e.prop]||null!=e.elem.style[X(e.prop)])?Le.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},K.propHooks.scrollTop=K.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},Le.easing={linear:function(e){return e},swing:function(e){return .5-Math.cos(e*Math.PI)/2},_default:'swing'},Le.fx=K.prototype.init,Le.fx.step={};var St=/^(?:toggle|show|hide)$/,kt=/queueHooks$/,At,Dt;Le.Animation=Le.extend(ae,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return C(n.elem,e,et.exec(t),n),n}]},tweener:function(e,t){Ne(e)?(t=e,e=['*']):e=e.match(Fe);for(var n=0,a=e.length,o;n<a;n++)o=e[n],ae.tweeners[o]=ae.tweeners[o]||[],ae.tweeners[o].unshift(t)},prefilters:[te],prefilter:function(e,t){t?ae.prefilters.unshift(e):ae.prefilters.push(e)}}),Le.speed=function(e,t,n){var a=e&&'object'==typeof e?Le.extend({},e):{complete:n||!n&&t||Ne(e)&&e,duration:e,easing:n&&t||t&&!Ne(t)&&t};return Le.fx.off?a.duration=0:'number'!=typeof a.duration&&(a.duration in Le.fx.speeds?a.duration=Le.fx.speeds[a.duration]:a.duration=Le.fx.speeds._default),(null==a.queue||!0===a.queue)&&(a.queue='fx'),a.old=a.complete,a.complete=function(){Ne(a.old)&&a.old.call(this),a.queue&&Le.dequeue(this,a.queue)},a},Le.fn.extend({fadeTo:function(e,t,n,a){return this.filter(it).css('opacity',0).show().end().animate({opacity:t},e,n,a)},animate:function(e,t,n,a){var o=Le.isEmptyObject(e),i=Le.speed(t,n,a),l=function(){var t=ae(this,Le.extend({},e),i);(o||Ye.get(this,'finish'))&&t.stop(!0)};return l.finish=l,o||!1===i.queue?this.each(l):this.queue(i.queue,l)},stop:function(e,t,n){var a=function(e){var t=e.stop;delete e.stop,t(n)};return'string'!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||'fx',[]),this.each(function(){var t=!0,o=null!=e&&e+'queueHooks',i=Le.timers,l=Ye.get(this);if(o)l[o]&&l[o].stop&&a(l[o]);else for(o in l)l[o]&&l[o].stop&&kt.test(o)&&a(l[o]);for(o=i.length;o--;)i[o].elem===this&&(null==e||i[o].queue===e)&&(i[o].anim.stop(n),t=!1,i.splice(o,1));(t||!n)&&Le.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||'fx'),this.each(function(){var t=Ye.get(this),n=t[e+'queue'],a=t[e+'queueHooks'],o=Le.timers,i=n?n.length:0,l;for(t.finish=!0,Le.queue(this,e,[]),a&&a.stop&&a.stop.call(this,!0),l=o.length;l--;)o[l].elem===this&&o[l].queue===e&&(o[l].anim.stop(!0),o.splice(l,1));for(l=0;l<i;l++)n[l]&&n[l].finish&&n[l].finish.call(this);delete t.finish})}}),Le.each(['toggle','show','hide'],function(e,t){var n=Le.fn[t];Le.fn[t]=function(e,a,o){return null==e||'boolean'==typeof e?n.apply(this,arguments):this.animate(Z(t,!0),e,a,o)}}),Le.each({slideDown:Z('show'),slideUp:Z('hide'),slideToggle:Z('toggle'),fadeIn:{opacity:'show'},fadeOut:{opacity:'hide'},fadeToggle:{opacity:'toggle'}},function(e,t){Le.fn[e]=function(e,n,a){return this.animate(t,e,n,a)}}),Le.timers=[],Le.fx.tick=function(){var e=0,t=Le.timers,n;for(At=Date.now();e<t.length;e++)n=t[e],n()||t[e]!==n||t.splice(e--,1);t.length||Le.fx.stop(),At=void 0},Le.fx.timer=function(e){Le.timers.push(e),Le.fx.start()},Le.fx.interval=13,Le.fx.start=function(){Dt||(Dt=!0,G())},Le.fx.stop=function(){Dt=null},Le.fx.speeds={slow:600,fast:200,_default:400},Le.fn.delay=function(e,t){return e=Le.fx?Le.fx.speeds[e]||e:e,t=t||'fx',this.queue(t,function(t,n){var a=i.setTimeout(t,e);n.stop=function(){i.clearTimeout(a)}})},function(){var e=ke.createElement('input'),t=ke.createElement('select'),n=t.appendChild(ke.createElement('option'));e.type='checkbox',we.checkOn=''!==e.value,we.optSelected=n.selected,e=ke.createElement('input'),e.value='t',e.type='radio',we.radioValue='t'===e.value}();var Lt=Le.expr.attrHandle,jt;Le.fn.extend({attr:function(e,t){return Qe(this,Le.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){Le.removeAttr(this,e)})}}),Le.extend({attr:function(e,t,n){var a=e.nodeType,o,i;if(3!==a&&8!==a&&2!==a)return'undefined'==typeof e.getAttribute?Le.prop(e,t,n):(1===a&&Le.isXMLDoc(e)||(i=Le.attrHooks[t.toLowerCase()]||(Le.expr.match.bool.test(t)?jt:void 0)),void 0!==n)?null===n?void Le.removeAttr(e,t):i&&'set'in i&&void 0!==(o=i.set(e,n,t))?o:(e.setAttribute(t,n+''),n):i&&'get'in i&&null!==(o=i.get(e,t))?o:(o=Le.find.attr(e,t),null==o?void 0:o)},attrHooks:{type:{set:function(e,t){if(!we.radioValue&&'radio'===t&&c(e,'input')){var n=e.value;return e.setAttribute('type',t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n=0,a=t&&t.match(Fe),o;if(a&&1===e.nodeType)for(;o=a[n++];)e.removeAttribute(o)}}),jt={set:function(e,t,n){return!1===t?Le.removeAttr(e,n):e.setAttribute(n,n),n}},Le.each(Le.expr.match.bool.source.match(/\w+/g),function(e,t){var n=Lt[t]||Le.find.attr;Lt[t]=function(e,t,a){var o=t.toLowerCase(),i,l;return a||(l=Lt[o],Lt[o]=i,i=null==n(e,t,a)?null:o,Lt[o]=l),i}});var It=/^(?:input|select|textarea|button)$/i,Ot=/^(?:a|area)$/i;Le.fn.extend({prop:function(e,t){return Qe(this,Le.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[Le.propFix[e]||e]})}}),Le.extend({prop:function(e,t,n){var a=e.nodeType,o,i;if(3!==a&&8!==a&&2!==a)return 1===a&&Le.isXMLDoc(e)||(t=Le.propFix[t]||t,i=Le.propHooks[t]),void 0===n?i&&'get'in i&&null!==(o=i.get(e,t))?o:e[t]:i&&'set'in i&&void 0!==(o=i.set(e,n,t))?o:e[t]=n},propHooks:{tabIndex:{get:function(e){var t=Le.find.attr(e,'tabindex');return t?parseInt(t,10):It.test(e.nodeName)||Ot.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:'htmlFor',class:'className'}}),we.optSelected||(Le.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),Le.each(['tabIndex','readOnly','maxLength','cellSpacing','cellPadding','rowSpan','colSpan','useMap','frameBorder','contentEditable'],function(){Le.propFix[this.toLowerCase()]=this}),Le.fn.extend({addClass:function(e){var t=0,n,a,o,i,l,r,s;if(Ne(e))return this.each(function(t){Le(this).addClass(e.call(this,t,ie(this)))});if(n=le(e),n.length)for(;a=this[t++];)if(i=ie(a),o=1===a.nodeType&&' '+oe(i)+' ',o){for(r=0;l=n[r++];)0>o.indexOf(' '+l+' ')&&(o+=l+' ');s=oe(o),i!==s&&a.setAttribute('class',s)}return this},removeClass:function(e){var t=0,n,a,o,i,l,r,s;if(Ne(e))return this.each(function(t){Le(this).removeClass(e.call(this,t,ie(this)))});if(!arguments.length)return this.attr('class','');if(n=le(e),n.length)for(;a=this[t++];)if(i=ie(a),o=1===a.nodeType&&' '+oe(i)+' ',o){for(r=0;l=n[r++];)for(;-1<o.indexOf(' '+l+' ');)o=o.replace(' '+l+' ',' ');s=oe(o),i!==s&&a.setAttribute('class',s)}return this},toggleClass:function(e,t){var n=typeof e,a='string'==n||Array.isArray(e);return'boolean'==typeof t&&a?t?this.addClass(e):this.removeClass(e):Ne(e)?this.each(function(n){Le(this).toggleClass(e.call(this,n,ie(this),t),t)}):this.each(function(){var t,o,i,l;if(a)for(o=0,i=Le(this),l=le(e);t=l[o++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else(void 0===e||'boolean'==n)&&(t=ie(this),t&&Ye.set(this,'__className__',t),this.setAttribute&&this.setAttribute('class',t||!1===e?'':Ye.get(this,'__className__')||''))})},hasClass:function(e){var t=0,n,a;for(n=' '+e+' ';a=this[t++];)if(1===a.nodeType&&-1<(' '+oe(ie(a))+' ').indexOf(n))return!0;return!1}});var Pt=/\r/g;Le.fn.extend({val:function(e){var t=this[0],n,a,o;return arguments.length?(o=Ne(e),this.each(function(t){var a;1!==this.nodeType||(a=o?e.call(this,t,Le(this).val()):e,null==a?a='':'number'==typeof a?a+='':Array.isArray(a)&&(a=Le.map(a,function(e){return null==e?'':e+''})),n=Le.valHooks[this.type]||Le.valHooks[this.nodeName.toLowerCase()],(!n||!('set'in n)||void 0===n.set(this,a,'value'))&&(this.value=a))})):t?(n=Le.valHooks[t.type]||Le.valHooks[t.nodeName.toLowerCase()],n&&'get'in n&&void 0!==(a=n.get(t,'value')))?a:(a=t.value,'string'==typeof a?a.replace(Pt,''):null==a?'':a):void 0}}),Le.extend({valHooks:{option:{get:function(e){var t=Le.find.attr(e,'value');return null==t?oe(Le.text(e)):t}},select:{get:function(e){var t=e.options,n=e.selectedIndex,a='select-one'===e.type,o=a?null:[],l=a?n+1:t.length,r,s,d;for(d=0>n?l:a?n:0;d<l;d++)if(s=t[d],(s.selected||d===n)&&!s.disabled&&(!s.parentNode.disabled||!c(s.parentNode,'optgroup'))){if(r=Le(s).val(),a)return r;o.push(r)}return o},set:function(e,t){for(var n=e.options,a=Le.makeArray(t),o=n.length,i,l;o--;)l=n[o],(l.selected=-1<Le.inArray(Le.valHooks.option.get(l),a))&&(i=!0);return i||(e.selectedIndex=-1),a}}}}),Le.each(['radio','checkbox'],function(){Le.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<Le.inArray(Le(e).val(),t)}},we.checkOn||(Le.valHooks[this].get=function(e){return null===e.getAttribute('value')?'on':e.value})}),we.focusin='onfocusin'in i;var qt=/^(?:focusinfocus|focusoutblur)$/,Ht=function(t){t.stopPropagation()};Le.extend(Le.event,{trigger:function(e,t,n,a){var o=[n||ke],l=Ee.call(e,'type')?e.type:e,r=Ee.call(e,'namespace')?e.namespace.split('.'):[],s,d,c,p,u,f,g,m;if((d=m=c=n=n||ke,3!==n.nodeType&&8!==n.nodeType)&&!qt.test(l+Le.event.triggered)&&(-1<l.indexOf('.')&&(r=l.split('.'),l=r.shift(),r.sort()),u=0>l.indexOf(':')&&'on'+l,e=e[Le.expando]?e:new Le.Event(l,'object'==typeof e&&e),e.isTrigger=a?2:3,e.namespace=r.join('.'),e.rnamespace=e.namespace?new RegExp('(^|\\.)'+r.join('\\.(?:.*\\.|)')+'(\\.|$)'):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:Le.makeArray(t,[e]),g=Le.event.special[l]||{},a||!g.trigger||!1!==g.trigger.apply(n,t))){if(!a&&!g.noBubble&&!Se(n)){for(p=g.delegateType||l,qt.test(p+l)||(d=d.parentNode);d;d=d.parentNode)o.push(d),c=d;c===(n.ownerDocument||ke)&&o.push(c.defaultView||c.parentWindow||i)}for(s=0;(d=o[s++])&&!e.isPropagationStopped();)m=d,e.type=1<s?p:g.bindType||l,f=(Ye.get(d,'events')||Object.create(null))[e.type]&&Ye.get(d,'handle'),f&&f.apply(d,t),f=u&&d[u],f&&f.apply&&ze(d)&&(e.result=f.apply(d,t),!1===e.result&&e.preventDefault());return e.type=l,a||e.isDefaultPrevented()||g._default&&!1!==g._default.apply(o.pop(),t)||!ze(n)||!u||!Ne(n[l])||Se(n)||(c=n[u],c&&(n[u]=null),Le.event.triggered=l,e.isPropagationStopped()&&m.addEventListener(l,Ht),n[l](),e.isPropagationStopped()&&m.removeEventListener(l,Ht),Le.event.triggered=void 0,c&&(n[u]=c)),e.result}},simulate:function(t,n,a){var o=Le.extend(new Le.Event,a,{type:t,isSimulated:!0});Le.event.trigger(o,null,n)}}),Le.fn.extend({trigger:function(e,t){return this.each(function(){Le.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return Le.event.trigger(e,t,n,!0)}}),we.focusin||Le.each({focus:'focusin',blur:'focusout'},function(e,t){var n=function(e){Le.event.simulate(t,e.target,Le.event.fix(e))};Le.event.special[t]={setup:function(){var a=this.ownerDocument||this.document||this,o=Ye.access(a,t);o||a.addEventListener(e,n,!0),Ye.access(a,t,(o||0)+1)},teardown:function(){var a=this.ownerDocument||this.document||this,o=Ye.access(a,t)-1;o?Ye.access(a,t,o):(a.removeEventListener(e,n,!0),Ye.remove(a,t))}}});var Mt=i.location,Bt={guid:Date.now()},Rt=/\?/;Le.parseXML=function(e){var t,n;if(!e||'string'!=typeof e)return null;try{t=new i.DOMParser().parseFromString(e,'text/xml')}catch(t){}return n=t&&t.getElementsByTagName('parsererror')[0],(!t||n)&&Le.error('Invalid XML: '+(n?Le.map(n.childNodes,function(e){return e.textContent}).join('\n'):e)),t};var Wt=/\[\]$/,Ft=/\r?\n/g,Ut=/^(?:submit|button|image|reset|file)$/i,$t=/^(?:input|select|textarea|keygen)/i;Le.param=function(e,t){var n=[],a=function(e,t){var a=Ne(t)?t():t;n[n.length]=encodeURIComponent(e)+'='+encodeURIComponent(null==a?'':a)},o;if(null==e)return'';if(Array.isArray(e)||e.jquery&&!Le.isPlainObject(e))Le.each(e,function(){a(this.name,this.value)});else for(o in e)re(o,e[o],t,a);return n.join('&')},Le.fn.extend({serialize:function(){return Le.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=Le.prop(this,'elements');return e?Le.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!Le(this).is(':disabled')&&$t.test(this.nodeName)&&!Ut.test(e)&&(this.checked||!rt.test(e))}).map(function(e,t){var n=Le(this).val();return null==n?null:Array.isArray(n)?Le.map(n,function(e){return{name:t.name,value:e.replace(Ft,'\r\n')}}):{name:t.name,value:n.replace(Ft,'\r\n')}}).get()}});var Qt=/%20/g,Xt=/#.*$/,Vt=/([?&])_=[^&]*/,zt=/^(.*?):[ \t]*([^\r\n]*)$/mg,Yt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kt=/^(?:GET|HEAD)$/,Gt=/^\/\//,Jt={},Zt={},en='*/'.concat('*'),tn=ke.createElement('a');tn.href=Mt.href,Le.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Mt.href,type:'GET',isLocal:Yt.test(Mt.protocol),global:!0,processData:!0,async:!0,contentType:'application/x-www-form-urlencoded; charset=UTF-8',accepts:{"*":en,text:'text/plain',html:'text/html',xml:'application/xml, text/xml',json:'application/json, text/javascript'},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:'responseXML',text:'responseText',json:'responseJSON'},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":Le.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ce(ce(e,Le.ajaxSettings),t):ce(Le.ajaxSettings,e)},ajaxPrefilter:se(Jt),ajaxTransport:se(Zt),ajax:function(e,t){function n(e,t,n,c){var p=t,u,y,b,E,C;_||(_=!0,v&&i.clearTimeout(v),g=void 0,h=c||'',f.readyState=0<e?4:0,u=200<=e&&300>e||304===e,n&&(E=pe(a,f,n)),!u&&-1<Le.inArray('script',a.dataTypes)&&0>Le.inArray('json',a.dataTypes)&&(a.converters['text script']=function(){}),E=ue(a,E,f,u),u?(a.ifModified&&(C=f.getResponseHeader('Last-Modified'),C&&(Le.lastModified[m]=C),C=f.getResponseHeader('etag'),C&&(Le.etag[m]=C)),204===e||'HEAD'===a.type?p='nocontent':304===e?p='notmodified':(p=E.state,y=E.data,b=E.error,u=!b)):(b=p,(e||!p)&&(p='error',0>e&&(e=0))),f.status=e,f.statusText=(t||p)+'',u?r.resolveWith(o,[y,p,f]):r.rejectWith(o,[f,p,b]),f.statusCode(d),d=void 0,x&&l.trigger(u?'ajaxSuccess':'ajaxError',[f,a,u?y:b]),s.fireWith(o,[f,p]),x&&(l.trigger('ajaxComplete',[f,a]),! --Le.active&&Le.event.trigger('ajaxStop')))}'object'==typeof e&&(t=e,e=void 0),t=t||{};var a=Le.ajaxSetup({},t),o=a.context||a,l=a.context&&(o.nodeType||o.jquery)?Le(o):Le.event,r=Le.Deferred(),s=Le.Callbacks('once memory'),d=a.statusCode||{},c={},p={},u='canceled',f={readyState:0,getResponseHeader:function(e){var t;if(_){if(!y)for(y={};t=zt.exec(h);)y[t[1].toLowerCase()+' ']=(y[t[1].toLowerCase()+' ']||[]).concat(t[2]);t=y[e.toLowerCase()+' ']}return null==t?null:t.join(', ')},getAllResponseHeaders:function(){return _?h:null},setRequestHeader:function(e,t){return null==_&&(e=p[e.toLowerCase()]=p[e.toLowerCase()]||e,c[e]=t),this},overrideMimeType:function(e){return null==_&&(a.mimeType=e),this},statusCode:function(e){if(e)if(_)f.always(e[f.status]);else for(var t in e)d[t]=[d[t],e[t]];return this},abort:function(e){var t=e||u;return g&&g.abort(t),n(0,t),this}},g,m,h,y,v,b,_,x,E,C;if(r.promise(f),a.url=((e||a.url||Mt.href)+'').replace(Gt,Mt.protocol+'//'),a.type=t.method||t.type||a.method||a.type,a.dataTypes=(a.dataType||'*').toLowerCase().match(Fe)||[''],null==a.crossDomain){b=ke.createElement('a');try{b.href=a.url,b.href=b.href,a.crossDomain=tn.protocol+'//'+tn.host!=b.protocol+'//'+b.host}catch(t){a.crossDomain=!0}}if(a.data&&a.processData&&'string'!=typeof a.data&&(a.data=Le.param(a.data,a.traditional)),de(Jt,a,t,f),_)return f;for(E in x=Le.event&&a.global,x&&0==Le.active++&&Le.event.trigger('ajaxStart'),a.type=a.type.toUpperCase(),a.hasContent=!Kt.test(a.type),m=a.url.replace(Xt,''),a.hasContent?a.data&&a.processData&&0===(a.contentType||'').indexOf('application/x-www-form-urlencoded')&&(a.data=a.data.replace(Qt,'+')):(C=a.url.slice(m.length),a.data&&(a.processData||'string'==typeof a.data)&&(m+=(Rt.test(m)?'&':'?')+a.data,delete a.data),!1===a.cache&&(m=m.replace(Vt,'$1'),C=(Rt.test(m)?'&':'?')+'_='+Bt.guid++ +C),a.url=m+C),a.ifModified&&(Le.lastModified[m]&&f.setRequestHeader('If-Modified-Since',Le.lastModified[m]),Le.etag[m]&&f.setRequestHeader('If-None-Match',Le.etag[m])),(a.data&&a.hasContent&&!1!==a.contentType||t.contentType)&&f.setRequestHeader('Content-Type',a.contentType),f.setRequestHeader('Accept',a.dataTypes[0]&&a.accepts[a.dataTypes[0]]?a.accepts[a.dataTypes[0]]+('*'===a.dataTypes[0]?'':', '+en+'; q=0.01'):a.accepts['*']),a.headers)f.setRequestHeader(E,a.headers[E]);if(a.beforeSend&&(!1===a.beforeSend.call(o,f,a)||_))return f.abort();if(u='abort',s.add(a.complete),f.done(a.success),f.fail(a.error),g=de(Zt,a,t,f),!g)n(-1,'No Transport');else{if(f.readyState=1,x&&l.trigger('ajaxSend',[f,a]),_)return f;a.async&&0<a.timeout&&(v=i.setTimeout(function(){f.abort('timeout')},a.timeout));try{_=!1,g.send(c,n)}catch(t){if(_)throw t;n(-1,t)}}return f},getJSON:function(e,t,n){return Le.get(e,t,n,'json')},getScript:function(e,t){return Le.get(e,void 0,t,'script')}}),Le.each(['get','post'],function(e,t){Le[t]=function(e,n,a,o){return Ne(n)&&(o=o||a,a=n,n=void 0),Le.ajax(Le.extend({url:e,type:t,dataType:o,data:n,success:a},Le.isPlainObject(e)&&e))}}),Le.ajaxPrefilter(function(e){for(var t in e.headers)'content-type'===t.toLowerCase()&&(e.contentType=e.headers[t]||'')}),Le._evalUrl=function(e,t,n){return Le.ajax({url:e,type:'GET',dataType:'script',cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){Le.globalEval(e,t,n)}})},Le.fn.extend({wrapAll:function(e){var t;return this[0]&&(Ne(e)&&(e=e.call(this[0])),t=Le(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return Ne(e)?this.each(function(t){Le(this).wrapInner(e.call(this,t))}):this.each(function(){var t=Le(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=Ne(e);return this.each(function(n){Le(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not('body').each(function(){Le(this).replaceWith(this.childNodes)}),this}}),Le.expr.pseudos.hidden=function(e){return!Le.expr.pseudos.visible(e)},Le.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},Le.ajaxSettings.xhr=function(){try{return new i.XMLHttpRequest}catch(t){}};var nn={0:200,1223:204},an=Le.ajaxSettings.xhr();we.cors=!!an&&'withCredentials'in an,we.ajax=an=!!an,Le.ajaxTransport(function(e){var t,n;if(we.cors||an&&!e.crossDomain)return{send:function(a,o){var l=e.xhr(),r;if(l.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(r in e.xhrFields)l[r]=e.xhrFields[r];for(r in e.mimeType&&l.overrideMimeType&&l.overrideMimeType(e.mimeType),e.crossDomain||a['X-Requested-With']||(a['X-Requested-With']='XMLHttpRequest'),a)l.setRequestHeader(r,a[r]);t=function(e){return function(){t&&(t=n=l.onload=l.onerror=l.onabort=l.ontimeout=l.onreadystatechange=null,'abort'===e?l.abort():'error'===e?'number'==typeof l.status?o(l.status,l.statusText):o(0,'error'):o(nn[l.status]||l.status,l.statusText,'text'!==(l.responseType||'text')||'string'!=typeof l.responseText?{binary:l.response}:{text:l.responseText},l.getAllResponseHeaders()))}},l.onload=t(),n=l.onerror=l.ontimeout=t('error'),void 0===l.onabort?l.onreadystatechange=function(){4===l.readyState&&i.setTimeout(function(){t&&n()})}:l.onabort=n,t=t('abort');try{l.send(e.hasContent&&e.data||null)}catch(n){if(t)throw n}},abort:function(){t&&t()}}}),Le.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),Le.ajaxSetup({accepts:{script:'text/javascript, application/javascript, application/ecmascript, application/x-ecmascript'},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return Le.globalEval(e),e}}}),Le.ajaxPrefilter('script',function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type='GET')}),Le.ajaxTransport('script',function(e){if(e.crossDomain||e.scriptAttrs){var t,n;return{send:function(a,o){t=Le('<script>').attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on('load error',n=function(e){t.remove(),n=null,e&&o('error'===e.type?404:200,e.type)}),ke.head.appendChild(t[0])},abort:function(){n&&n()}}}});var on=[],ln=/(=)\?(?=&|$)|\?\?/;Le.ajaxSetup({jsonp:'callback',jsonpCallback:function(){var e=on.pop()||Le.expando+'_'+Bt.guid++;return this[e]=!0,e}}),Le.ajaxPrefilter('json jsonp',function(e,t,n){var a=!1!==e.jsonp&&(ln.test(e.url)?'url':'string'==typeof e.data&&0===(e.contentType||'').indexOf('application/x-www-form-urlencoded')&&ln.test(e.data)&&'data'),o,l,r;if(a||'jsonp'===e.dataTypes[0])return o=e.jsonpCallback=Ne(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(ln,'$1'+o):!1!==e.jsonp&&(e.url+=(Rt.test(e.url)?'&':'?')+e.jsonp+'='+o),e.converters['script json']=function(){return r||Le.error(o+' was not called'),r[0]},e.dataTypes[0]='json',l=i[o],i[o]=function(){r=arguments},n.always(function(){void 0===l?Le(i).removeProp(o):i[o]=l,e[o]&&(e.jsonpCallback=t.jsonpCallback,on.push(o)),r&&Ne(l)&&l(r[0]),r=l=void 0}),'script'}),we.createHTMLDocument=function(){var e=ke.implementation.createHTMLDocument('').body;return e.innerHTML='<form></form><form></form>',2===e.childNodes.length}(),Le.parseHTML=function(e,t,n){if('string'!=typeof e)return[];'boolean'==typeof t&&(n=t,t=!1);var a,o,i;return(t||(we.createHTMLDocument?(t=ke.implementation.createHTMLDocument(''),a=t.createElement('base'),a.href=ke.location.href,t.head.appendChild(a)):t=ke),o=qe.exec(e),i=!n&&[],o)?[t.createElement(o[1])]:(o=k([e],t,i),i&&i.length&&Le(i).remove(),Le.merge([],o.childNodes))},Le.fn.load=function(e,t,n){var a=this,o=e.indexOf(' '),i,l,r;return-1<o&&(i=oe(e.slice(o)),e=e.slice(0,o)),Ne(t)?(n=t,t=void 0):t&&'object'==typeof t&&(l='POST'),0<a.length&&Le.ajax({url:e,type:l||'GET',dataType:'html',data:t}).done(function(e){r=arguments,a.html(i?Le('<div>').append(Le.parseHTML(e)).find(i):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,r||[e.responseText,t,e])})}),this},Le.expr.pseudos.animated=function(e){return Le.grep(Le.timers,function(t){return e===t.elem}).length},Le.offset={setOffset:function(e,t,n){var a=Le.css(e,'position'),o=Le(e),i={},l,r,s,d,c,p,u;'static'===a&&(e.style.position='relative'),c=o.offset(),s=Le.css(e,'top'),p=Le.css(e,'left'),u=('absolute'===a||'fixed'===a)&&-1<(s+p).indexOf('auto'),u?(l=o.position(),d=l.top,r=l.left):(d=parseFloat(s)||0,r=parseFloat(p)||0),Ne(t)&&(t=t.call(e,n,Le.extend({},c))),null!=t.top&&(i.top=t.top-c.top+d),null!=t.left&&(i.left=t.left-c.left+r),'using'in t?t.using.call(e,i):o.css(i)}},Le.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){Le.offset.setOffset(this,e,t)});var t=this[0],n,a;if(t)return t.getClientRects().length?(n=t.getBoundingClientRect(),a=t.ownerDocument.defaultView,{top:n.top+a.pageYOffset,left:n.left+a.pageXOffset}):{top:0,left:0}},position:function(){if(this[0]){var e=this[0],t={top:0,left:0},n,a,o;if('fixed'===Le.css(e,'position'))a=e.getBoundingClientRect();else{for(a=this.offset(),o=e.ownerDocument,n=e.offsetParent||o.documentElement;n&&(n===o.body||n===o.documentElement)&&'static'===Le.css(n,'position');)n=n.parentNode;n&&n!==e&&1===n.nodeType&&(t=Le(n).offset(),t.top+=Le.css(n,'borderTopWidth',!0),t.left+=Le.css(n,'borderLeftWidth',!0))}return{top:a.top-t.top-Le.css(e,'marginTop',!0),left:a.left-t.left-Le.css(e,'marginLeft',!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&'static'===Le.css(e,'position');)e=e.offsetParent;return e||nt})}}),Le.each({scrollLeft:'pageXOffset',scrollTop:'pageYOffset'},function(e,t){var n='pageYOffset'===t;Le.fn[e]=function(a){return Qe(this,function(e,a,o){var i;return Se(e)?i=e:9===e.nodeType&&(i=e.defaultView),void 0===o?i?i[t]:e[a]:void(i?i.scrollTo(n?i.pageXOffset:o,n?o:i.pageYOffset):e[a]=o)},e,a,arguments.length)}}),Le.each(['top','left'],function(e,t){Le.cssHooks[t]=U(we.pixelPosition,function(e,n){if(n)return n=F(e,t),ht.test(n)?Le(e).position()[t]+'px':n})}),Le.each({Height:'height',Width:'width'},function(e,t){Le.each({padding:'inner'+e,content:t,"":'outer'+e},function(a,o){Le.fn[o]=function(i,l){var r=arguments.length&&(a||'boolean'!=typeof i),s=a||(!0===i||!0===l?'margin':'border');return Qe(this,function(t,a,i){var l;return Se(t)?0===o.indexOf('outer')?t['inner'+e]:t.document.documentElement['client'+e]:9===t.nodeType?(l=t.documentElement,n(t.body['scroll'+e],l['scroll'+e],t.body['offset'+e],l['offset'+e],l['client'+e])):void 0===i?Le.css(t,a,s):Le.style(t,a,i,s)},t,r?i:void 0,r)}})}),Le.each(['ajaxStart','ajaxStop','ajaxComplete','ajaxError','ajaxSuccess','ajaxSend'],function(e,t){Le.fn[t]=function(e){return this.on(t,e)}}),Le.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,a){return this.on(t,e,n,a)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,'**'):this.off(t,e||'**',n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),Le.each(['blur','focus','focusin','focusout','resize','scroll','click','dblclick','mousedown','mouseup','mousemove','mouseover','mouseout','mouseenter','mouseleave','change','select','submit','keydown','keypress','keyup','contextmenu'],function(e,t){Le.fn[t]=function(e,n){return 0<arguments.length?this.on(t,null,e,n):this.trigger(t)}});var rn=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;Le.proxy=function(e,t){var n,a,o;if('string'==typeof t&&(n=e[t],t=e,e=n),!!Ne(e))return a=he.call(arguments,2),o=function(){return e.apply(t||this,a.concat(he.call(arguments)))},o.guid=e.guid=e.guid||Le.guid++,o},Le.holdReady=function(e){e?Le.readyWait++:Le.ready(!0)},Le.isArray=Array.isArray,Le.parseJSON=JSON.parse,Le.nodeName=c,Le.isFunction=Ne,Le.isWindow=Se,Le.camelCase=b,Le.type=s,Le.now=Date.now,Le.isNumeric=function(e){var t=Le.type(e);return('number'===t||'string'===t)&&!isNaN(e-parseFloat(e))},Le.trim=function(e){return null==e?'':(e+'').replace(rn,'')},a=[],o=function(){return Le}.apply(t,a),!(void 0!==o&&(e.exports=o));var sn=i.jQuery,dn=i.$;return Le.noConflict=function(e){return i.$===Le&&(i.$=dn),e&&i.jQuery===Le&&(i.jQuery=sn),Le},'undefined'==typeof l&&(i.jQuery=i.$=Le),Le})},function(e,t,n){'use strict';(function(t){e.exports=function(){if('object'==typeof globalThis)return globalThis;var e;try{e=this||new Function('return this')()}catch(n){if('object'==typeof window)return window;if('object'==typeof self)return self;if('undefined'!=typeof t)return t}return e}()}).call(this,n(1))},function(e,t,n){(function(e,a){a(t,n(0),n(6))})(this,function(e,t,n){'use strict';function a(t){return t&&'object'==typeof t&&'default'in t?t:{default:t}}function o(e,t){for(var n=0,a;n<t.length;n++)a=t[n],a.enumerable=a.enumerable||!1,a.configurable=!0,'value'in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}function l(){return l=Object.assign||function(e){for(var t=1,n;t<arguments.length;t++)for(var a in n=arguments[t],n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a]);return e},l.apply(this,arguments)}function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,s(e,t)}function s(e,t){return s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},s(e,t)}function d(e){return null===e||'undefined'==typeof e?''+e:{}.toString.call(e).match(/\s([a-z]+)/i)[1].toLowerCase()}function c(){return{bindType:h,delegateType:h,handle:function(e){return g['default'](e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}}}function p(e){var t=this,n=!1;return g['default'](this).one(y.TRANSITION_END,function(){n=!0}),setTimeout(function(){n||y.triggerTransitionEnd(t)},e),this}function u(e,t){var n=e.nodeName.toLowerCase();if(-1!==t.indexOf(n))return-1===Ge.indexOf(n)||!!(Ze.test(e.nodeValue)||et.test(e.nodeValue));for(var a=t.filter(function(e){return e instanceof RegExp}),o=0,i=a.length;o<i;o++)if(a[o].test(n))return!0;return!1}function f(e,t,n){if(0===e.length)return e;if(n&&'function'==typeof n)return n(e);for(var a=new window.DOMParser,o=a.parseFromString(e,'text/html'),l=Object.keys(t),r=[].slice.call(o.body.querySelectorAll('*')),s=function(e){var n=r[e],a=n.nodeName.toLowerCase();if(-1===l.indexOf(n.nodeName.toLowerCase()))return n.parentNode.removeChild(n),'continue';var o=[].slice.call(n.attributes),i=[].concat(t['*']||[],t[a]||[]);o.forEach(function(e){u(e,i)||n.removeAttribute(e.nodeName)})},d=0,i=r.length,c;d<i;d++)c=s(d),'continue'===c;return o.body.innerHTML}var g=a(t),m=a(n),h='transitionend',y={TRANSITION_END:'bsTransitionEnd',getUID:function(e){do e+=~~(Math.random()*1e6);while(document.getElementById(e));return e},getSelectorFromElement:function(e){var t=e.getAttribute('data-target');if(!t||'#'===t){var n=e.getAttribute('href');t=n&&'#'!==n?n.trim():''}try{return document.querySelector(t)?t:null}catch(e){return null}},getTransitionDurationFromElement:function(e){if(!e)return 0;var t=g['default'](e).css('transition-duration'),n=g['default'](e).css('transition-delay'),a=parseFloat(t),o=parseFloat(n);return a||o?(t=t.split(',')[0],n=n.split(',')[0],(parseFloat(t)+parseFloat(n))*1e3):0},reflow:function(e){return e.offsetHeight},triggerTransitionEnd:function(e){g['default'](e).trigger(h)},supportsTransitionEnd:function(){return!!h},isElement:function(e){return(e[0]||e).nodeType},typeCheckConfig:function(e,t,n){for(var a in n)if(Object.prototype.hasOwnProperty.call(n,a)){var o=n[a],i=t[a],l=i&&y.isElement(i)?'element':d(i);if(!new RegExp(o).test(l))throw new Error(e.toUpperCase()+': '+('Option "'+a+'" provided type "'+l+'" ')+('but expected type "'+o+'".'))}},findShadowRoot:function(e){if(!document.documentElement.attachShadow)return null;if('function'==typeof e.getRootNode){var t=e.getRootNode();return t instanceof ShadowRoot?t:null}return e instanceof ShadowRoot?e:e.parentNode?y.findShadowRoot(e.parentNode):null},jQueryDetection:function(){if('undefined'==typeof g['default'])throw new TypeError('Bootstrap\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\'s JavaScript.');var e=g['default'].fn.jquery.split(' ')[0].split('.'),t=9;if(e[0]<2&&e[1]<t||e[0]===1&&e[1]===t&&e[2]<1||e[0]>=4)throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0')}};y.jQueryDetection(),function(){g['default'].fn.emulateTransitionEnd=p,g['default'].event.special[y.TRANSITION_END]=c()}();var v='alert',b='bs.alert',_='.'+b,x=g['default'].fn[v],E=function(){function e(e){this._element=e}var t=e.prototype;return t.close=function(e){var t=this._element;e&&(t=this._getRootElement(e));var n=this._triggerCloseEvent(t);n.isDefaultPrevented()||this._removeElement(t)},t.dispose=function(){g['default'].removeData(this._element,b),this._element=null},t._getRootElement=function(e){var t=y.getSelectorFromElement(e),n=!1;return t&&(n=document.querySelector(t)),n||(n=g['default'](e).closest('.'+'alert')[0]),n},t._triggerCloseEvent=function(e){var t=g['default'].Event('close'+_);return g['default'](e).trigger(t),t},t._removeElement=function(e){var t=this;if(g['default'](e).removeClass('show'),!g['default'](e).hasClass('fade'))return void this._destroyElement(e);var n=y.getTransitionDurationFromElement(e);g['default'](e).one(y.TRANSITION_END,function(n){return t._destroyElement(e,n)}).emulateTransitionEnd(n)},t._destroyElement=function(e){g['default'](e).detach().trigger('closed'+_).remove()},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this),a=n.data(b);a||(a=new e(this),n.data(b,a)),'close'===t&&a[t](this)})},e._handleDismiss=function(e){return function(t){t&&t.preventDefault(),e.close(this)}},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}}]),e}();g['default'](document).on('click'+_+'.data-api','[data-dismiss="alert"]',E._handleDismiss(new E)),g['default'].fn[v]=E._jQueryInterface,g['default'].fn[v].Constructor=E,g['default'].fn[v].noConflict=function(){return g['default'].fn[v]=x,E._jQueryInterface};var C='button',T='bs.button',w='.'+T,N='.data-api',S=g['default'].fn[C],k='active',A='[data-toggle^="button"]',D='input:not([type="hidden"])',L='.btn',j=function(){function e(e){this._element=e,this.shouldAvoidTriggerChange=!1}var t=e.prototype;return t.toggle=function(){var e=!0,t=!0,n=g['default'](this._element).closest('[data-toggle="buttons"]')[0];if(n){var a=this._element.querySelector(D);if(a){if('radio'===a.type)if(a.checked&&this._element.classList.contains(k))e=!1;else{var o=n.querySelector('.active');o&&g['default'](o).removeClass(k)}e&&(('checkbox'===a.type||'radio'===a.type)&&(a.checked=!this._element.classList.contains(k)),!this.shouldAvoidTriggerChange&&g['default'](a).trigger('change')),a.focus(),t=!1}}this._element.hasAttribute('disabled')||this._element.classList.contains('disabled')||(t&&this._element.setAttribute('aria-pressed',!this._element.classList.contains(k)),e&&g['default'](this._element).toggleClass(k))},t.dispose=function(){g['default'].removeData(this._element,T),this._element=null},e._jQueryInterface=function(t,n){return this.each(function(){var a=g['default'](this),o=a.data(T);o||(o=new e(this),a.data(T,o)),o.shouldAvoidTriggerChange=n,'toggle'===t&&o[t]()})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}}]),e}();g['default'](document).on('click'+w+N,A,function(e){var t=e.target,n=t;if(g['default'](t).hasClass('btn')||(t=g['default'](t).closest(L)[0]),!t||t.hasAttribute('disabled')||t.classList.contains('disabled'))e.preventDefault();else{var a=t.querySelector(D);if(a&&(a.hasAttribute('disabled')||a.classList.contains('disabled')))return void e.preventDefault();('INPUT'===n.tagName||'LABEL'!==t.tagName)&&j._jQueryInterface.call(g['default'](t),'toggle','INPUT'===n.tagName)}}).on('focus'+w+N+' '+('blur'+w+N),A,function(e){var t=g['default'](e.target).closest(L)[0];g['default'](t).toggleClass('focus',/^focus(in)?$/.test(e.type))}),g['default'](window).on('load'+w+N,function(){for(var e=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),t=0,n=e.length;t<n;t++){var a=e[t],o=a.querySelector(D);o.checked||o.hasAttribute('checked')?a.classList.add(k):a.classList.remove(k)}e=[].slice.call(document.querySelectorAll('[data-toggle="button"]'));for(var i=0,l=e.length,r;i<l;i++)r=e[i],'true'===r.getAttribute('aria-pressed')?r.classList.add(k):r.classList.remove(k)}),g['default'].fn[C]=j._jQueryInterface,g['default'].fn[C].Constructor=j,g['default'].fn[C].noConflict=function(){return g['default'].fn[C]=S,j._jQueryInterface};var I='carousel',O='bs.carousel',P='.'+O,q='.data-api',H=g['default'].fn[I],M='active',B='next',R='prev',W='slid'+P,F='.active.carousel-item',U={interval:5e3,keyboard:!0,slide:!1,pause:'hover',wrap:!0,touch:!0},Q={interval:'(number|boolean)',keyboard:'boolean',slide:'(boolean|string)',pause:'(string|boolean)',wrap:'boolean',touch:'boolean'},X={TOUCH:'touch',PEN:'pen'},V=function(){function e(e,t){this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(t),this._element=e,this._indicatorsElement=this._element.querySelector('.carousel-indicators'),this._touchSupported='ontouchstart'in document.documentElement||0<navigator.maxTouchPoints,this._pointerEvent=!!(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var t=e.prototype;return t.next=function(){this._isSliding||this._slide(B)},t.nextWhenVisible=function(){var e=g['default'](this._element);!document.hidden&&e.is(':visible')&&'hidden'!==e.css('visibility')&&this.next()},t.prev=function(){this._isSliding||this._slide(R)},t.pause=function(e){e||(this._isPaused=!0),this._element.querySelector('.carousel-item-next, .carousel-item-prev')&&(y.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},t.cycle=function(e){e||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},t.to=function(e){var t=this;this._activeElement=this._element.querySelector(F);var n=this._getItemIndex(this._activeElement);if(!(e>this._items.length-1||0>e)){if(this._isSliding)return void g['default'](this._element).one(W,function(){return t.to(e)});if(n===e)return this.pause(),void this.cycle();var a=e>n?B:R;this._slide(a,this._items[e])}},t.dispose=function(){g['default'](this._element).off(P),g['default'].removeData(this._element,O),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},t._getConfig=function(e){return e=l({},U,e),y.typeCheckConfig(I,e,Q),e},t._handleSwipe=function(){var e=Math.abs(this.touchDeltaX);if(!(e<=40)){var t=e/this.touchDeltaX;this.touchDeltaX=0,0<t&&this.prev(),0>t&&this.next()}},t._addEventListeners=function(){var e=this;this._config.keyboard&&g['default'](this._element).on('keydown'+P,function(t){return e._keydown(t)}),'hover'===this._config.pause&&g['default'](this._element).on('mouseenter'+P,function(t){return e.pause(t)}).on('mouseleave'+P,function(t){return e.cycle(t)}),this._config.touch&&this._addTouchEventListeners()},t._addTouchEventListeners=function(){var e=this;if(this._touchSupported){var t=function(t){e._pointerEvent&&X[t.originalEvent.pointerType.toUpperCase()]?e.touchStartX=t.originalEvent.clientX:!e._pointerEvent&&(e.touchStartX=t.originalEvent.touches[0].clientX)},n=function(t){e.touchDeltaX=t.originalEvent.touches&&1<t.originalEvent.touches.length?0:t.originalEvent.touches[0].clientX-e.touchStartX},a=function(t){e._pointerEvent&&X[t.originalEvent.pointerType.toUpperCase()]&&(e.touchDeltaX=t.originalEvent.clientX-e.touchStartX),e._handleSwipe(),'hover'===e._config.pause&&(e.pause(),e.touchTimeout&&clearTimeout(e.touchTimeout),e.touchTimeout=setTimeout(function(t){return e.cycle(t)},500+e._config.interval))};g['default'](this._element.querySelectorAll('.carousel-item img')).on('dragstart'+P,function(t){return t.preventDefault()}),this._pointerEvent?(g['default'](this._element).on('pointerdown'+P,function(e){return t(e)}),g['default'](this._element).on('pointerup'+P,function(e){return a(e)}),this._element.classList.add('pointer-event')):(g['default'](this._element).on('touchstart'+P,function(e){return t(e)}),g['default'](this._element).on('touchmove'+P,function(e){return n(e)}),g['default'](this._element).on('touchend'+P,function(e){return a(e)}))}},t._keydown=function(e){if(!/input|textarea/i.test(e.target.tagName))switch(e.which){case 37:e.preventDefault(),this.prev();break;case 39:e.preventDefault(),this.next();}},t._getItemIndex=function(e){return this._items=e&&e.parentNode?[].slice.call(e.parentNode.querySelectorAll('.carousel-item')):[],this._items.indexOf(e)},t._getItemByDirection=function(e,t){var n=this._getItemIndex(t),a=this._items.length-1;if((e===R&&0===n||e===B&&n===a)&&!this._config.wrap)return t;var o=e===R?-1:1,i=(n+o)%this._items.length;return-1==i?this._items[this._items.length-1]:this._items[i]},t._triggerSlideEvent=function(e,t){var n=this._getItemIndex(e),a=this._getItemIndex(this._element.querySelector(F)),o=g['default'].Event('slide'+P,{relatedTarget:e,direction:t,from:a,to:n});return g['default'](this._element).trigger(o),o},t._setActiveIndicatorElement=function(e){if(this._indicatorsElement){var t=[].slice.call(this._indicatorsElement.querySelectorAll('.active'));g['default'](t).removeClass(M);var n=this._indicatorsElement.children[this._getItemIndex(e)];n&&g['default'](n).addClass(M)}},t._updateInterval=function(){var e=this._activeElement||this._element.querySelector(F);if(e){var t=parseInt(e.getAttribute('data-interval'),10);t?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=t):this._config.interval=this._config.defaultInterval||this._config.interval}},t._slide=function(e,t){var n=this,a=this._element.querySelector(F),o=this._getItemIndex(a),i=t||a&&this._getItemByDirection(e,a),l=this._getItemIndex(i),r=!!this._interval,s,d,c;if(e===B?(s='carousel-item-left',d='carousel-item-next',c='left'):(s='carousel-item-right',d='carousel-item-prev',c='right'),i&&g['default'](i).hasClass(M))return void(this._isSliding=!1);var p=this._triggerSlideEvent(i,c);if(!p.isDefaultPrevented()&&a&&i){this._isSliding=!0,r&&this.pause(),this._setActiveIndicatorElement(i),this._activeElement=i;var u=g['default'].Event(W,{relatedTarget:i,direction:c,from:o,to:l});if(g['default'](this._element).hasClass('slide')){g['default'](i).addClass(d),y.reflow(i),g['default'](a).addClass(s),g['default'](i).addClass(s);var f=y.getTransitionDurationFromElement(a);g['default'](a).one(y.TRANSITION_END,function(){g['default'](i).removeClass(s+' '+d).addClass(M),g['default'](a).removeClass(M+' '+d+' '+s),n._isSliding=!1,setTimeout(function(){return g['default'](n._element).trigger(u)},0)}).emulateTransitionEnd(f)}else g['default'](a).removeClass(M),g['default'](i).addClass(M),this._isSliding=!1,g['default'](this._element).trigger(u);r&&this.cycle()}},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this).data(O),a=l({},U,g['default'](this).data());'object'==typeof t&&(a=l({},a,t));var o='string'==typeof t?t:a.slide;if(n||(n=new e(this,a),g['default'](this).data(O,n)),'number'==typeof t)n.to(t);else if('string'==typeof o){if('undefined'==typeof n[o])throw new TypeError('No method named "'+o+'"');n[o]()}else a.interval&&a.ride&&(n.pause(),n.cycle())})},e._dataApiClickHandler=function(t){var n=y.getSelectorFromElement(this);if(n){var a=g['default'](n)[0];if(a&&g['default'](a).hasClass('carousel')){var o=l({},g['default'](a).data(),g['default'](this).data()),i=this.getAttribute('data-slide-to');i&&(o.interval=!1),e._jQueryInterface.call(g['default'](a),o),i&&g['default'](a).data(O).to(i),t.preventDefault()}}},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return U}}]),e}();g['default'](document).on('click'+P+q,'[data-slide], [data-slide-to]',V._dataApiClickHandler),g['default'](window).on('load'+P+q,function(){for(var e=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),t=0,n=e.length,a;t<n;t++)a=g['default'](e[t]),V._jQueryInterface.call(a,a.data())}),g['default'].fn[I]=V._jQueryInterface,g['default'].fn[I].Constructor=V,g['default'].fn[I].noConflict=function(){return g['default'].fn[I]=H,V._jQueryInterface};var z='collapse',Y='bs.collapse',K='.'+Y,G=g['default'].fn[z],J='show',Z='collapse',ee='collapsing',te='collapsed',ne='width',ae='[data-toggle="collapse"]',oe={toggle:!0,parent:''},ie={toggle:'boolean',parent:'(string|element)'},le=function(){function e(e,t){this._isTransitioning=!1,this._element=e,this._config=this._getConfig(t),this._triggerArray=[].slice.call(document.querySelectorAll('[data-toggle="collapse"][href="#'+e.id+'"],'+('[data-toggle="collapse"][data-target="#'+e.id+'"]')));for(var n=[].slice.call(document.querySelectorAll(ae)),a=0,o=n.length;a<o;a++){var i=n[a],l=y.getSelectorFromElement(i),r=[].slice.call(document.querySelectorAll(l)).filter(function(t){return t===e});null!==l&&0<r.length&&(this._selector=l,this._triggerArray.push(i))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=e.prototype;return t.toggle=function(){g['default'](this._element).hasClass(J)?this.hide():this.show()},t.show=function(){var t=this;if(!(this._isTransitioning||g['default'](this._element).hasClass(J))){var n,a;if(this._parent&&(n=[].slice.call(this._parent.querySelectorAll('.show, .collapsing')).filter(function(e){return'string'==typeof t._config.parent?e.getAttribute('data-parent')===t._config.parent:e.classList.contains(Z)}),0===n.length&&(n=null)),!(n&&(a=g['default'](n).not(this._selector).data(Y),a&&a._isTransitioning))){var o=g['default'].Event('show'+K);if(g['default'](this._element).trigger(o),!o.isDefaultPrevented()){n&&(e._jQueryInterface.call(g['default'](n).not(this._selector),'hide'),!a&&g['default'](n).data(Y,null));var i=this._getDimension();g['default'](this._element).removeClass(Z).addClass(ee),this._element.style[i]=0,this._triggerArray.length&&g['default'](this._triggerArray).removeClass(te).attr('aria-expanded',!0),this.setTransitioning(!0);var l=function(){g['default'](t._element).removeClass(ee).addClass(Z+' '+J),t._element.style[i]='',t.setTransitioning(!1),g['default'](t._element).trigger('shown'+K)},r=i[0].toUpperCase()+i.slice(1),s=y.getTransitionDurationFromElement(this._element);g['default'](this._element).one(y.TRANSITION_END,l).emulateTransitionEnd(s),this._element.style[i]=this._element['scroll'+r]+'px'}}}},t.hide=function(){var e=this;if(!this._isTransitioning&&g['default'](this._element).hasClass(J)){var t=g['default'].Event('hide'+K);if(g['default'](this._element).trigger(t),!t.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+'px',y.reflow(this._element),g['default'](this._element).addClass(ee).removeClass(Z+' '+J);var a=this._triggerArray.length;if(0<a)for(var o=0;o<a;o++){var i=this._triggerArray[o],l=y.getSelectorFromElement(i);if(null!==l){var r=g['default']([].slice.call(document.querySelectorAll(l)));r.hasClass(J)||g['default'](i).addClass(te).attr('aria-expanded',!1)}}this.setTransitioning(!0);var s=function(){e.setTransitioning(!1),g['default'](e._element).removeClass(ee).addClass(Z).trigger('hidden'+K)};this._element.style[n]='';var d=y.getTransitionDurationFromElement(this._element);g['default'](this._element).one(y.TRANSITION_END,s).emulateTransitionEnd(d)}}},t.setTransitioning=function(e){this._isTransitioning=e},t.dispose=function(){g['default'].removeData(this._element,Y),this._config=null,this._parent=null,this._element=null,this._triggerArray=null,this._isTransitioning=null},t._getConfig=function(e){return e=l({},oe,e),e.toggle=!!e.toggle,y.typeCheckConfig(z,e,ie),e},t._getDimension=function(){var e=g['default'](this._element).hasClass(ne);return e?ne:'height'},t._getParent=function(){var t=this,n;y.isElement(this._config.parent)?(n=this._config.parent,'undefined'!=typeof this._config.parent.jquery&&(n=this._config.parent[0])):n=document.querySelector(this._config.parent);var a='[data-toggle="collapse"][data-parent="'+this._config.parent+'"]',o=[].slice.call(n.querySelectorAll(a));return g['default'](o).each(function(n,a){t._addAriaAndCollapsedClass(e._getTargetFromElement(a),[a])}),n},t._addAriaAndCollapsedClass=function(e,t){var n=g['default'](e).hasClass(J);t.length&&g['default'](t).toggleClass(te,!n).attr('aria-expanded',n)},e._getTargetFromElement=function(e){var t=y.getSelectorFromElement(e);return t?document.querySelector(t):null},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this),a=n.data(Y),o=l({},oe,n.data(),'object'==typeof t&&t?t:{});if(!a&&o.toggle&&'string'==typeof t&&/show|hide/.test(t)&&(o.toggle=!1),a||(a=new e(this,o),n.data(Y,a)),'string'==typeof t){if('undefined'==typeof a[t])throw new TypeError('No method named "'+t+'"');a[t]()}})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return oe}}]),e}();g['default'](document).on('click'+K+'.data-api',ae,function(e){'A'===e.currentTarget.tagName&&e.preventDefault();var t=g['default'](this),n=y.getSelectorFromElement(this),a=[].slice.call(document.querySelectorAll(n));g['default'](a).each(function(){var e=g['default'](this),n=e.data(Y),a=n?'toggle':t.data();le._jQueryInterface.call(e,a)})}),g['default'].fn[z]=le._jQueryInterface,g['default'].fn[z].Constructor=le,g['default'].fn[z].noConflict=function(){return g['default'].fn[z]=G,le._jQueryInterface};var re='dropdown',se='bs.dropdown',de='.'+se,ce='.data-api',pe=g['default'].fn[re],ue=27,fe=32,ge=9,me=38,he=40,ye=/38|40|27/,ve='disabled',be='show',_e='dropdown-menu-right',xe='hide'+de,Ee='hidden'+de,Ce='click'+de+ce,Te='keydown'+de+ce,we='[data-toggle="dropdown"]',Ne='.dropdown-menu',Se={offset:0,flip:!0,boundary:'scrollParent',reference:'toggle',display:'dynamic',popperConfig:null},ke={offset:'(number|string|function)',flip:'boolean',boundary:'(string|element)',reference:'(string|element)',display:'string',popperConfig:'(null|object)'},Ae=function(){function e(e,t){this._element=e,this._popper=null,this._config=this._getConfig(t),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var t=e.prototype;return t.toggle=function(){if(!(this._element.disabled||g['default'](this._element).hasClass(ve))){var t=g['default'](this._menu).hasClass(be);e._clearMenus(),t||this.show(!0)}},t.show=function(t){if(void 0===t&&(t=!1),!(this._element.disabled||g['default'](this._element).hasClass(ve)||g['default'](this._menu).hasClass(be))){var n={relatedTarget:this._element},a=g['default'].Event('show'+de,n),o=e._getParentFromElement(this._element);if(g['default'](o).trigger(a),!a.isDefaultPrevented()){if(!this._inNavbar&&t){if('undefined'==typeof m['default'])throw new TypeError('Bootstrap\'s dropdowns require Popper (https://popper.js.org)');var i=this._element;'parent'===this._config.reference?i=o:y.isElement(this._config.reference)&&(i=this._config.reference,'undefined'!=typeof this._config.reference.jquery&&(i=this._config.reference[0])),'scrollParent'!==this._config.boundary&&g['default'](o).addClass('position-static'),this._popper=new m['default'](i,this._menu,this._getPopperConfig())}'ontouchstart'in document.documentElement&&0===g['default'](o).closest('.navbar-nav').length&&g['default'](document.body).children().on('mouseover',null,g['default'].noop),this._element.focus(),this._element.setAttribute('aria-expanded',!0),g['default'](this._menu).toggleClass(be),g['default'](o).toggleClass(be).trigger(g['default'].Event('shown'+de,n))}}},t.hide=function(){if(!(this._element.disabled||g['default'](this._element).hasClass(ve)||!g['default'](this._menu).hasClass(be))){var t={relatedTarget:this._element},n=g['default'].Event(xe,t),a=e._getParentFromElement(this._element);g['default'](a).trigger(n),n.isDefaultPrevented()||(this._popper&&this._popper.destroy(),g['default'](this._menu).toggleClass(be),g['default'](a).toggleClass(be).trigger(g['default'].Event(Ee,t)))}},t.dispose=function(){g['default'].removeData(this._element,se),g['default'](this._element).off(de),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},t.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},t._addEventListeners=function(){var e=this;g['default'](this._element).on('click'+de,function(t){t.preventDefault(),t.stopPropagation(),e.toggle()})},t._getConfig=function(e){return e=l({},this.constructor.Default,g['default'](this._element).data(),e),y.typeCheckConfig(re,e,this.constructor.DefaultType),e},t._getMenuElement=function(){if(!this._menu){var t=e._getParentFromElement(this._element);t&&(this._menu=t.querySelector(Ne))}return this._menu},t._getPlacement=function(){var e=g['default'](this._element.parentNode),t='bottom-start';return e.hasClass('dropup')?t=g['default'](this._menu).hasClass(_e)?'top-end':'top-start':e.hasClass('dropright')?t='right-start':e.hasClass('dropleft')?t='left-start':g['default'](this._menu).hasClass(_e)&&(t='bottom-end'),t},t._detectNavbar=function(){return 0<g['default'](this._element).closest('.navbar').length},t._getOffset=function(){var e=this,t={};return'function'==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e._config.offset(t.offsets,e._element)),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var e={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return'static'===this._config.display&&(e.modifiers.applyStyle={enabled:!1}),l({},e,this._config.popperConfig)},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this).data(se),a='object'==typeof t?t:null;if(n||(n=new e(this,a),g['default'](this).data(se,n)),'string'==typeof t){if('undefined'==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}})},e._clearMenus=function(t){if(!(t&&(t.which===3||'keyup'===t.type&&t.which!==ge)))for(var n=[].slice.call(document.querySelectorAll(we)),a=0,o=n.length;a<o;a++){var i=e._getParentFromElement(n[a]),l=g['default'](n[a]).data(se),r={relatedTarget:n[a]};if(t&&'click'===t.type&&(r.clickEvent=t),!!l){var s=l._menu;if(g['default'](i).hasClass(be)&&!(t&&('click'===t.type&&/input|textarea/i.test(t.target.tagName)||'keyup'===t.type&&t.which===ge)&&g['default'].contains(i,t.target))){var d=g['default'].Event(xe,r);(g['default'](i).trigger(d),!d.isDefaultPrevented())&&('ontouchstart'in document.documentElement&&g['default'](document.body).children().off('mouseover',null,g['default'].noop),n[a].setAttribute('aria-expanded','false'),l._popper&&l._popper.destroy(),g['default'](s).removeClass(be),g['default'](i).removeClass(be).trigger(g['default'].Event(Ee,r)))}}}},e._getParentFromElement=function(e){var t=y.getSelectorFromElement(e),n;return t&&(n=document.querySelector(t)),n||e.parentNode},e._dataApiKeydownHandler=function(t){if((/input|textarea/i.test(t.target.tagName)?!(t.which===fe||t.which!==ue&&(t.which!==he&&t.which!==me||g['default'](t.target).closest(Ne).length)):!!ye.test(t.which))&&!(this.disabled||g['default'](this).hasClass(ve))){var n=e._getParentFromElement(this),a=g['default'](n).hasClass(be);if(a||t.which!==ue){if(t.preventDefault(),t.stopPropagation(),!a||t.which===ue||t.which===fe)return t.which===ue&&g['default'](n.querySelector(we)).trigger('focus'),void g['default'](this).trigger('click');var o=[].slice.call(n.querySelectorAll('.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)')).filter(function(e){return g['default'](e).is(':visible')});if(0!==o.length){var i=o.indexOf(t.target);t.which===me&&0<i&&i--,t.which===he&&i<o.length-1&&i++,0>i&&(i=0),o[i].focus()}}}},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return Se}},{key:'DefaultType',get:function(){return ke}}]),e}();g['default'](document).on(Te,we,Ae._dataApiKeydownHandler).on(Te,Ne,Ae._dataApiKeydownHandler).on(Ce+' '+('keyup'+de+ce),Ae._clearMenus).on(Ce,we,function(e){e.preventDefault(),e.stopPropagation(),Ae._jQueryInterface.call(g['default'](this),'toggle')}).on(Ce,'.dropdown form',function(t){t.stopPropagation()}),g['default'].fn[re]=Ae._jQueryInterface,g['default'].fn[re].Constructor=Ae,g['default'].fn[re].noConflict=function(){return g['default'].fn[re]=pe,Ae._jQueryInterface};var De='modal',Le='bs.modal',je='.'+Le,Ie=g['default'].fn[De],Oe=27,Pe='modal-open',qe='fade',He='show',Me='modal-static',Be='hidden'+je,Re='show'+je,We='focusin'+je,Fe='resize'+je,Ue='click.dismiss'+je,$e='keydown.dismiss'+je,Qe='mousedown.dismiss'+je,Xe='.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',Ve='.sticky-top',ze={backdrop:!0,keyboard:!0,focus:!0,show:!0},Ye={backdrop:'(boolean|string)',keyboard:'boolean',focus:'boolean',show:'boolean'},Ke=function(){function e(e,t){this._config=this._getConfig(t),this._element=e,this._dialog=e.querySelector('.modal-dialog'),this._backdrop=null,this._isShown=!1,this._isBodyOverflowing=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollbarWidth=0}var t=e.prototype;return t.toggle=function(e){return this._isShown?this.hide():this.show(e)},t.show=function(e){var t=this;if(!(this._isShown||this._isTransitioning)){var n=g['default'].Event(Re,{relatedTarget:e});g['default'](this._element).trigger(n),n.isDefaultPrevented()||(this._isShown=!0,g['default'](this._element).hasClass(qe)&&(this._isTransitioning=!0),this._checkScrollbar(),this._setScrollbar(),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),g['default'](this._element).on(Ue,'[data-dismiss="modal"]',function(e){return t.hide(e)}),g['default'](this._dialog).on(Qe,function(){g['default'](t._element).one('mouseup.dismiss'+je,function(e){g['default'](e.target).is(t._element)&&(t._ignoreBackdropClick=!0)})}),this._showBackdrop(function(){return t._showElement(e)}))}},t.hide=function(e){var t=this;if(e&&e.preventDefault(),this._isShown&&!this._isTransitioning){var n=g['default'].Event('hide'+je);if(g['default'](this._element).trigger(n),this._isShown&&!n.isDefaultPrevented()){this._isShown=!1;var a=g['default'](this._element).hasClass(qe);if(a&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),g['default'](document).off(We),g['default'](this._element).removeClass(He),g['default'](this._element).off(Ue),g['default'](this._dialog).off(Qe),a){var o=y.getTransitionDurationFromElement(this._element);g['default'](this._element).one(y.TRANSITION_END,function(e){return t._hideModal(e)}).emulateTransitionEnd(o)}else this._hideModal()}}},t.dispose=function(){[window,this._element,this._dialog].forEach(function(e){return g['default'](e).off(je)}),g['default'](document).off(We),g['default'].removeData(this._element,Le),this._config=null,this._element=null,this._dialog=null,this._backdrop=null,this._isShown=null,this._isBodyOverflowing=null,this._ignoreBackdropClick=null,this._isTransitioning=null,this._scrollbarWidth=null},t.handleUpdate=function(){this._adjustDialog()},t._getConfig=function(e){return e=l({},ze,e),y.typeCheckConfig(De,e,Ye),e},t._triggerBackdropTransition=function(){var e=this,t=g['default'].Event('hidePrevented'+je);if(g['default'](this._element).trigger(t),!t.isDefaultPrevented()){var n=this._element.scrollHeight>document.documentElement.clientHeight;n||(this._element.style.overflowY='hidden'),this._element.classList.add(Me);var a=y.getTransitionDurationFromElement(this._dialog);g['default'](this._element).off(y.TRANSITION_END),g['default'](this._element).one(y.TRANSITION_END,function(){e._element.classList.remove(Me),n||g['default'](e._element).one(y.TRANSITION_END,function(){e._element.style.overflowY=''}).emulateTransitionEnd(e._element,a)}).emulateTransitionEnd(a),this._element.focus()}},t._showElement=function(e){var t=this,n=g['default'](this._element).hasClass(qe),a=this._dialog?this._dialog.querySelector('.modal-body'):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display='block',this._element.removeAttribute('aria-hidden'),this._element.setAttribute('aria-modal',!0),this._element.setAttribute('role','dialog'),g['default'](this._dialog).hasClass('modal-dialog-scrollable')&&a?a.scrollTop=0:this._element.scrollTop=0,n&&y.reflow(this._element),g['default'](this._element).addClass(He),this._config.focus&&this._enforceFocus();var o=g['default'].Event('shown'+je,{relatedTarget:e}),i=function(){t._config.focus&&t._element.focus(),t._isTransitioning=!1,g['default'](t._element).trigger(o)};if(n){var l=y.getTransitionDurationFromElement(this._dialog);g['default'](this._dialog).one(y.TRANSITION_END,i).emulateTransitionEnd(l)}else i()},t._enforceFocus=function(){var e=this;g['default'](document).off(We).on(We,function(t){document!==t.target&&e._element!==t.target&&0===g['default'](e._element).has(t.target).length&&e._element.focus()})},t._setEscapeEvent=function(){var e=this;this._isShown?g['default'](this._element).on($e,function(t){e._config.keyboard&&t.which===Oe?(t.preventDefault(),e.hide()):!e._config.keyboard&&t.which===Oe&&e._triggerBackdropTransition()}):!this._isShown&&g['default'](this._element).off($e)},t._setResizeEvent=function(){var e=this;this._isShown?g['default'](window).on(Fe,function(t){return e.handleUpdate(t)}):g['default'](window).off(Fe)},t._hideModal=function(){var e=this;this._element.style.display='none',this._element.setAttribute('aria-hidden',!0),this._element.removeAttribute('aria-modal'),this._element.removeAttribute('role'),this._isTransitioning=!1,this._showBackdrop(function(){g['default'](document.body).removeClass(Pe),e._resetAdjustments(),e._resetScrollbar(),g['default'](e._element).trigger(Be)})},t._removeBackdrop=function(){this._backdrop&&(g['default'](this._backdrop).remove(),this._backdrop=null)},t._showBackdrop=function(e){var t=this,n=g['default'](this._element).hasClass(qe)?qe:'';if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement('div'),this._backdrop.className='modal-backdrop',n&&this._backdrop.classList.add(n),g['default'](this._backdrop).appendTo(document.body),g['default'](this._element).on(Ue,function(e){return t._ignoreBackdropClick?void(t._ignoreBackdropClick=!1):void(e.target!==e.currentTarget||('static'===t._config.backdrop?t._triggerBackdropTransition():t.hide()))}),n&&y.reflow(this._backdrop),g['default'](this._backdrop).addClass(He),!e)return;if(!n)return void e();var a=y.getTransitionDurationFromElement(this._backdrop);g['default'](this._backdrop).one(y.TRANSITION_END,e).emulateTransitionEnd(a)}else if(!this._isShown&&this._backdrop){g['default'](this._backdrop).removeClass(He);var o=function(){t._removeBackdrop(),e&&e()};if(g['default'](this._element).hasClass(qe)){var i=y.getTransitionDurationFromElement(this._backdrop);g['default'](this._backdrop).one(y.TRANSITION_END,o).emulateTransitionEnd(i)}else o()}else e&&e()},t._adjustDialog=function(){var e=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&e&&(this._element.style.paddingLeft=this._scrollbarWidth+'px'),this._isBodyOverflowing&&!e&&(this._element.style.paddingRight=this._scrollbarWidth+'px')},t._resetAdjustments=function(){this._element.style.paddingLeft='',this._element.style.paddingRight=''},t._checkScrollbar=function(){var e=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(e.left+e.right)<window.innerWidth,this._scrollbarWidth=this._getScrollbarWidth()},t._setScrollbar=function(){var e=this;if(this._isBodyOverflowing){var t=[].slice.call(document.querySelectorAll(Xe)),n=[].slice.call(document.querySelectorAll(Ve));g['default'](t).each(function(t,n){var a=n.style.paddingRight,o=g['default'](n).css('padding-right');g['default'](n).data('padding-right',a).css('padding-right',parseFloat(o)+e._scrollbarWidth+'px')}),g['default'](n).each(function(t,n){var a=n.style.marginRight,o=g['default'](n).css('margin-right');g['default'](n).data('margin-right',a).css('margin-right',parseFloat(o)-e._scrollbarWidth+'px')});var a=document.body.style.paddingRight,o=g['default'](document.body).css('padding-right');g['default'](document.body).data('padding-right',a).css('padding-right',parseFloat(o)+this._scrollbarWidth+'px')}g['default'](document.body).addClass(Pe)},t._resetScrollbar=function(){var e=[].slice.call(document.querySelectorAll(Xe));g['default'](e).each(function(e,t){var n=g['default'](t).data('padding-right');g['default'](t).removeData('padding-right'),t.style.paddingRight=n?n:''});var t=[].slice.call(document.querySelectorAll(''+Ve));g['default'](t).each(function(e,t){var n=g['default'](t).data('margin-right');'undefined'!=typeof n&&g['default'](t).css('margin-right',n).removeData('margin-right')});var n=g['default'](document.body).data('padding-right');g['default'](document.body).removeData('padding-right'),document.body.style.paddingRight=n?n:''},t._getScrollbarWidth=function(){var e=document.createElement('div');e.className='modal-scrollbar-measure',document.body.appendChild(e);var t=e.getBoundingClientRect().width-e.clientWidth;return document.body.removeChild(e),t},e._jQueryInterface=function(t,n){return this.each(function(){var a=g['default'](this).data(Le),o=l({},ze,g['default'](this).data(),'object'==typeof t&&t?t:{});if(a||(a=new e(this,o),g['default'](this).data(Le,a)),'string'==typeof t){if('undefined'==typeof a[t])throw new TypeError('No method named "'+t+'"');a[t](n)}else o.show&&a.show(n)})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return ze}}]),e}();g['default'](document).on('click'+je+'.data-api','[data-toggle="modal"]',function(e){var t=this,n=y.getSelectorFromElement(this),a;n&&(a=document.querySelector(n));var o=g['default'](a).data(Le)?'toggle':l({},g['default'](a).data(),g['default'](this).data());('A'===this.tagName||'AREA'===this.tagName)&&e.preventDefault();var i=g['default'](a).one(Re,function(e){e.isDefaultPrevented()||i.one(Be,function(){g['default'](t).is(':visible')&&t.focus()})});Ke._jQueryInterface.call(g['default'](a),o,this)}),g['default'].fn[De]=Ke._jQueryInterface,g['default'].fn[De].Constructor=Ke,g['default'].fn[De].noConflict=function(){return g['default'].fn[De]=Ie,Ke._jQueryInterface};var Ge=['background','cite','href','itemtype','longdesc','poster','src','xlink:href'],Je=/^aria-[\w-]*$/i,Ze=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,et=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,tt='tooltip',nt='bs.tooltip',at='.'+nt,ot=g['default'].fn[tt],it=/(^|\s)bs-tooltip\S+/g,lt=['sanitize','whiteList','sanitizeFn'],rt='fade',st='show',dt='show',ct='out',pt='hover',ut='focus',ft={AUTO:'auto',TOP:'top',RIGHT:'right',BOTTOM:'bottom',LEFT:'left'},gt={animation:!0,template:'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>',trigger:'hover focus',title:'',delay:0,html:!1,selector:!1,placement:'top',offset:0,container:!1,fallbackPlacement:'flip',boundary:'scrollParent',customClass:'',sanitize:!0,sanitizeFn:null,whiteList:{"*":['class','dir','id','lang','role',Je],a:['target','href','title','rel'],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:['src','srcset','alt','title','width','height'],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},mt={animation:'boolean',template:'string',title:'(string|element|function)',trigger:'string',delay:'(number|object)',html:'boolean',selector:'(string|boolean)',placement:'(string|function)',offset:'(number|string|function)',container:'(string|element|boolean)',fallbackPlacement:'(string|array)',boundary:'(string|element)',customClass:'(string|function)',sanitize:'boolean',sanitizeFn:'(null|function)',whiteList:'object',popperConfig:'(null|object)'},ht={HIDE:'hide'+at,HIDDEN:'hidden'+at,SHOW:'show'+at,SHOWN:'shown'+at,INSERTED:'inserted'+at,CLICK:'click'+at,FOCUSIN:'focusin'+at,FOCUSOUT:'focusout'+at,MOUSEENTER:'mouseenter'+at,MOUSELEAVE:'mouseleave'+at},yt=function(){function e(e,t){if('undefined'==typeof m['default'])throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org)');this._isEnabled=!0,this._timeout=0,this._hoverState='',this._activeTrigger={},this._popper=null,this.element=e,this.config=this._getConfig(t),this.tip=null,this._setListeners()}var t=e.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(e){if(this._isEnabled)if(e){var t=this.constructor.DATA_KEY,n=g['default'](e.currentTarget).data(t);n||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),g['default'](e.currentTarget).data(t,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g['default'](this.getTipElement()).hasClass(st))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g['default'].removeData(this.element,this.constructor.DATA_KEY),g['default'](this.element).off(this.constructor.EVENT_KEY),g['default'](this.element).closest('.modal').off('hide.bs.modal',this._hideModalHandler),this.tip&&g['default'](this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if('none'===g['default'](this.element).css('display'))throw new Error('Please use show on visible elements');var t=g['default'].Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g['default'](this.element).trigger(t);var n=y.findShadowRoot(this.element),a=g['default'].contains(null===n?this.element.ownerDocument.documentElement:n,this.element);if(t.isDefaultPrevented()||!a)return;var o=this.getTipElement(),i=y.getUID(this.constructor.NAME);o.setAttribute('id',i),this.element.setAttribute('aria-describedby',i),this.setContent(),this.config.animation&&g['default'](o).addClass(rt);var l='function'==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,r=this._getAttachment(l);this.addAttachmentClass(r);var s=this._getContainer();g['default'](o).data(this.constructor.DATA_KEY,this),g['default'].contains(this.element.ownerDocument.documentElement,this.tip)||g['default'](o).appendTo(s),g['default'](this.element).trigger(this.constructor.Event.INSERTED),this._popper=new m['default'](this.element,o,this._getPopperConfig(r)),g['default'](o).addClass(st),g['default'](o).addClass(this.config.customClass),'ontouchstart'in document.documentElement&&g['default'](document.body).children().on('mouseover',null,g['default'].noop);var d=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g['default'](e.element).trigger(e.constructor.Event.SHOWN),t===ct&&e._leave(null,e)};if(g['default'](this.tip).hasClass(rt)){var c=y.getTransitionDurationFromElement(this.tip);g['default'](this.tip).one(y.TRANSITION_END,d).emulateTransitionEnd(c)}else d()}},t.hide=function(e){var t=this,n=this.getTipElement(),a=g['default'].Event(this.constructor.Event.HIDE),o=function(){t._hoverState!==dt&&n.parentNode&&n.parentNode.removeChild(n),t._cleanTipClass(),t.element.removeAttribute('aria-describedby'),g['default'](t.element).trigger(t.constructor.Event.HIDDEN),null!==t._popper&&t._popper.destroy(),e&&e()};if(g['default'](this.element).trigger(a),!a.isDefaultPrevented()){if(g['default'](n).removeClass(st),'ontouchstart'in document.documentElement&&g['default'](document.body).children().off('mouseover',null,g['default'].noop),this._activeTrigger['click']=!1,this._activeTrigger[ut]=!1,this._activeTrigger[pt]=!1,g['default'](this.tip).hasClass(rt)){var i=y.getTransitionDurationFromElement(n);g['default'](n).one(y.TRANSITION_END,o).emulateTransitionEnd(i)}else o();this._hoverState=''}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return!!this.getTitle()},t.addAttachmentClass=function(e){g['default'](this.getTipElement()).addClass('bs-tooltip'+'-'+e)},t.getTipElement=function(){return this.tip=this.tip||g['default'](this.config.template)[0],this.tip},t.setContent=function(){var e=this.getTipElement();this.setElementContent(g['default'](e.querySelectorAll('.tooltip-inner')),this.getTitle()),g['default'](e).removeClass(rt+' '+st)},t.setElementContent=function(e,t){return'object'==typeof t&&(t.nodeType||t.jquery)?void(this.config.html?!g['default'](t).parent().is(e)&&e.empty().append(t):e.text(g['default'](t).text())):void(this.config.html?(this.config.sanitize&&(t=f(t,this.config.whiteList,this.config.sanitizeFn)),e.html(t)):e.text(t))},t.getTitle=function(){var e=this.element.getAttribute('data-original-title');return e||(e='function'==typeof this.config.title?this.config.title.call(this.element):this.config.title),e},t._getPopperConfig=function(e){var t=this,n={placement:e,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:'.arrow'},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t._handlePopperPlacementChange(e)},onUpdate:function(e){return t._handlePopperPlacementChange(e)}};return l({},n,this.config.popperConfig)},t._getOffset=function(){var e=this,t={};return'function'==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:y.isElement(this.config.container)?g['default'](this.config.container):g['default'](document).find(this.config.container)},t._getAttachment=function(e){return ft[e.toUpperCase()]},t._setListeners=function(){var e=this,t=this.config.trigger.split(' ');t.forEach(function(t){if('click'===t)g['default'](e.element).on(e.constructor.Event.CLICK,e.config.selector,function(t){return e.toggle(t)});else if(t!=='manual'){var n=t===pt?e.constructor.Event.MOUSEENTER:e.constructor.Event.FOCUSIN,a=t===pt?e.constructor.Event.MOUSELEAVE:e.constructor.Event.FOCUSOUT;g['default'](e.element).on(n,e.config.selector,function(t){return e._enter(t)}).on(a,e.config.selector,function(t){return e._leave(t)})}}),this._hideModalHandler=function(){e.element&&e.hide()},g['default'](this.element).closest('.modal').on('hide.bs.modal',this._hideModalHandler),this.config.selector?this.config=l({},this.config,{trigger:'manual',selector:''}):this._fixTitle()},t._fixTitle=function(){var e=typeof this.element.getAttribute('data-original-title');(this.element.getAttribute('title')||'string'!=e)&&(this.element.setAttribute('data-original-title',this.element.getAttribute('title')||''),this.element.setAttribute('title',''))},t._enter=function(e,t){var n=this.constructor.DATA_KEY;return(t=t||g['default'](e.currentTarget).data(n),t||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),g['default'](e.currentTarget).data(n,t)),e&&(t._activeTrigger['focusin'===e.type?ut:pt]=!0),g['default'](t.getTipElement()).hasClass(st)||t._hoverState===dt)?void(t._hoverState=dt):(clearTimeout(t._timeout),t._hoverState=dt,t.config.delay&&t.config.delay.show?void(t._timeout=setTimeout(function(){t._hoverState===dt&&t.show()},t.config.delay.show)):void t.show())},t._leave=function(e,t){var n=this.constructor.DATA_KEY;if(t=t||g['default'](e.currentTarget).data(n),t||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),g['default'](e.currentTarget).data(n,t)),e&&(t._activeTrigger['focusout'===e.type?ut:pt]=!1),!t._isWithActiveTrigger())return clearTimeout(t._timeout),t._hoverState=ct,t.config.delay&&t.config.delay.hide?void(t._timeout=setTimeout(function(){t._hoverState===ct&&t.hide()},t.config.delay.hide)):void t.hide()},t._isWithActiveTrigger=function(){for(var e in this._activeTrigger)if(this._activeTrigger[e])return!0;return!1},t._getConfig=function(e){var t=g['default'](this.element).data();return Object.keys(t).forEach(function(e){-1!==lt.indexOf(e)&&delete t[e]}),e=l({},this.constructor.Default,t,'object'==typeof e&&e?e:{}),'number'==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),'number'==typeof e.title&&(e.title=e.title.toString()),'number'==typeof e.content&&(e.content=e.content.toString()),y.typeCheckConfig(tt,e,this.constructor.DefaultType),e.sanitize&&(e.template=f(e.template,e.whiteList,e.sanitizeFn)),e},t._getDelegateConfig=function(){var e={};if(this.config)for(var t in this.config)this.constructor.Default[t]!==this.config[t]&&(e[t]=this.config[t]);return e},t._cleanTipClass=function(){var e=g['default'](this.getTipElement()),t=e.attr('class').match(it);null!==t&&t.length&&e.removeClass(t.join(''))},t._handlePopperPlacementChange=function(e){this.tip=e.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(e.placement))},t._fixTransition=function(){var e=this.getTipElement(),t=this.config.animation;null!==e.getAttribute('x-placement')||(g['default'](e).removeClass(rt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=t)},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this),a=n.data(nt);if((a||!/dispose|hide/.test(t))&&(a||(a=new e(this,'object'==typeof t&&t),n.data(nt,a)),'string'==typeof t)){if('undefined'==typeof a[t])throw new TypeError('No method named "'+t+'"');a[t]()}})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return gt}},{key:'NAME',get:function(){return tt}},{key:'DATA_KEY',get:function(){return nt}},{key:'Event',get:function(){return ht}},{key:'EVENT_KEY',get:function(){return at}},{key:'DefaultType',get:function(){return mt}}]),e}();g['default'].fn[tt]=yt._jQueryInterface,g['default'].fn[tt].Constructor=yt,g['default'].fn[tt].noConflict=function(){return g['default'].fn[tt]=ot,yt._jQueryInterface};var vt='popover',bt='bs.popover',_t='.'+bt,xt=g['default'].fn[vt],Et=/(^|\s)bs-popover\S+/g,Ct=l({},yt.Default,{placement:'right',trigger:'click',content:'',template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'}),Tt=l({},yt.DefaultType,{content:'(string|element|function)'}),wt={HIDE:'hide'+_t,HIDDEN:'hidden'+_t,SHOW:'show'+_t,SHOWN:'shown'+_t,INSERTED:'inserted'+_t,CLICK:'click'+_t,FOCUSIN:'focusin'+_t,FOCUSOUT:'focusout'+_t,MOUSEENTER:'mouseenter'+_t,MOUSELEAVE:'mouseleave'+_t},Nt=function(e){function t(){return e.apply(this,arguments)||this}r(t,e);var n=t.prototype;return n.isWithContent=function(){return this.getTitle()||this._getContent()},n.addAttachmentClass=function(e){g['default'](this.getTipElement()).addClass('bs-popover'+'-'+e)},n.getTipElement=function(){return this.tip=this.tip||g['default'](this.config.template)[0],this.tip},n.setContent=function(){var e=g['default'](this.getTipElement());this.setElementContent(e.find('.popover-header'),this.getTitle());var t=this._getContent();'function'==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find('.popover-body'),t),e.removeClass('fade'+' '+'show')},n._getContent=function(){return this.element.getAttribute('data-content')||this.config.content},n._cleanTipClass=function(){var e=g['default'](this.getTipElement()),t=e.attr('class').match(Et);null!==t&&0<t.length&&e.removeClass(t.join(''))},t._jQueryInterface=function(e){return this.each(function(){var n=g['default'](this).data(bt),a='object'==typeof e?e:null;if((n||!/dispose|hide/.test(e))&&(n||(n=new t(this,a),g['default'](this).data(bt,n)),'string'==typeof e)){if('undefined'==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},i(t,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return Ct}},{key:'NAME',get:function(){return vt}},{key:'DATA_KEY',get:function(){return bt}},{key:'Event',get:function(){return wt}},{key:'EVENT_KEY',get:function(){return _t}},{key:'DefaultType',get:function(){return Tt}}]),t}(yt);g['default'].fn[vt]=Nt._jQueryInterface,g['default'].fn[vt].Constructor=Nt,g['default'].fn[vt].noConflict=function(){return g['default'].fn[vt]=xt,Nt._jQueryInterface};var St='scrollspy',kt='bs.scrollspy',At='.'+kt,Dt=g['default'].fn[St],Lt='active',jt='position',It='.nav, .list-group',Ot='.nav-link',Pt='.list-group-item',qt={offset:10,method:'auto',target:''},Ht={offset:'number',method:'string',target:'(string|element)'},Mt=function(){function e(e,t){var n=this;this._element=e,this._scrollElement='BODY'===e.tagName?window:e,this._config=this._getConfig(t),this._selector=this._config.target+' '+Ot+','+(this._config.target+' '+Pt+',')+(this._config.target+' '+'.dropdown-item'),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,g['default'](this._scrollElement).on('scroll'+At,function(e){return n._process(e)}),this.refresh(),this._process()}var t=e.prototype;return t.refresh=function(){var e=this,t=this._scrollElement===this._scrollElement.window?'offset':jt,n='auto'===this._config.method?t:this._config.method,a=n===jt?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight();var o=[].slice.call(document.querySelectorAll(this._selector));o.map(function(e){var t=y.getSelectorFromElement(e),o;if(t&&(o=document.querySelector(t)),o){var i=o.getBoundingClientRect();if(i.width||i.height)return[g['default'](o)[n]().top+a,t]}return null}).filter(function(e){return e}).sort(function(e,t){return e[0]-t[0]}).forEach(function(t){e._offsets.push(t[0]),e._targets.push(t[1])})},t.dispose=function(){g['default'].removeData(this._element,kt),g['default'](this._scrollElement).off(At),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},t._getConfig=function(e){if(e=l({},qt,'object'==typeof e&&e?e:{}),'string'!=typeof e.target&&y.isElement(e.target)){var t=g['default'](e.target).attr('id');t||(t=y.getUID(St),g['default'](e.target).attr('id',t)),e.target='#'+t}return y.typeCheckConfig(St,e,Ht),e},t._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},t._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},t._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},t._process=function(){var e=this._getScrollTop()+this._config.offset,t=this._getScrollHeight(),n=this._config.offset+t-this._getOffsetHeight();if(this._scrollHeight!==t&&this.refresh(),e>=n){var a=this._targets[this._targets.length-1];return void(this._activeTarget!==a&&this._activate(a))}if(this._activeTarget&&e<this._offsets[0]&&0<this._offsets[0])return this._activeTarget=null,void this._clear();for(var o=this._offsets.length,i;o--;)i=this._activeTarget!==this._targets[o]&&e>=this._offsets[o]&&('undefined'==typeof this._offsets[o+1]||e<this._offsets[o+1]),i&&this._activate(this._targets[o])},t._activate=function(e){this._activeTarget=e,this._clear();var t=this._selector.split(',').map(function(t){return t+'[data-target="'+e+'"],'+t+'[href="'+e+'"]'}),n=g['default']([].slice.call(document.querySelectorAll(t.join(','))));n.hasClass('dropdown-item')?(n.closest('.dropdown').find('.dropdown-toggle').addClass(Lt),n.addClass(Lt)):(n.addClass(Lt),n.parents(It).prev(Ot+', '+Pt).addClass(Lt),n.parents(It).prev('.nav-item').children(Ot).addClass(Lt)),g['default'](this._scrollElement).trigger('activate'+At,{relatedTarget:e})},t._clear=function(){[].slice.call(document.querySelectorAll(this._selector)).filter(function(e){return e.classList.contains(Lt)}).forEach(function(e){return e.classList.remove(Lt)})},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this).data(kt);if(n||(n=new e(this,'object'==typeof t&&t),g['default'](this).data(kt,n)),'string'==typeof t){if('undefined'==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'Default',get:function(){return qt}}]),e}();g['default'](window).on('load'+At+'.data-api',function(){for(var e=[].slice.call(document.querySelectorAll('[data-spy="scroll"]')),t=e.length,n=t,a;n--;)a=g['default'](e[n]),Mt._jQueryInterface.call(a,a.data())}),g['default'].fn[St]=Mt._jQueryInterface,g['default'].fn[St].Constructor=Mt,g['default'].fn[St].noConflict=function(){return g['default'].fn[St]=Dt,Mt._jQueryInterface};var Bt='tab',Rt='bs.tab',Wt='.'+Rt,Ft=g['default'].fn[Bt],Ut='active',$t='fade',Qt='show',Xt='.active',Vt='> li > .active',zt=function(){function e(e){this._element=e}var t=e.prototype;return t.show=function(){var e=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&g['default'](this._element).hasClass(Ut)||g['default'](this._element).hasClass('disabled'))){var t=g['default'](this._element).closest('.nav, .list-group')[0],n=y.getSelectorFromElement(this._element),a,o;if(t){var i='UL'===t.nodeName||'OL'===t.nodeName?Vt:Xt;o=g['default'].makeArray(g['default'](t).find(i)),o=o[o.length-1]}var l=g['default'].Event('hide'+Wt,{relatedTarget:this._element}),r=g['default'].Event('show'+Wt,{relatedTarget:o});if(o&&g['default'](o).trigger(l),g['default'](this._element).trigger(r),!(r.isDefaultPrevented()||l.isDefaultPrevented())){n&&(a=document.querySelector(n)),this._activate(this._element,t);var s=function(){var t=g['default'].Event('hidden'+Wt,{relatedTarget:e._element}),n=g['default'].Event('shown'+Wt,{relatedTarget:o});g['default'](o).trigger(t),g['default'](e._element).trigger(n)};a?this._activate(a,a.parentNode,s):s()}}},t.dispose=function(){g['default'].removeData(this._element,Rt),this._element=null},t._activate=function(e,t,n){var a=this,o=t&&('UL'===t.nodeName||'OL'===t.nodeName)?g['default'](t).find(Vt):g['default'](t).children(Xt),i=o[0],l=n&&i&&g['default'](i).hasClass($t),r=function(){return a._transitionComplete(e,i,n)};if(i&&l){var s=y.getTransitionDurationFromElement(i);g['default'](i).removeClass(Qt).one(y.TRANSITION_END,r).emulateTransitionEnd(s)}else r()},t._transitionComplete=function(e,t,n){if(t){g['default'](t).removeClass(Ut);var a=g['default'](t.parentNode).find('> .dropdown-menu .active')[0];a&&g['default'](a).removeClass(Ut),'tab'===t.getAttribute('role')&&t.setAttribute('aria-selected',!1)}g['default'](e).addClass(Ut),'tab'===e.getAttribute('role')&&e.setAttribute('aria-selected',!0),y.reflow(e),e.classList.contains($t)&&e.classList.add(Qt);var o=e.parentNode;if(o&&'LI'===o.nodeName&&(o=o.parentNode),o&&g['default'](o).hasClass('dropdown-menu')){var i=g['default'](e).closest('.dropdown')[0];if(i){var l=[].slice.call(i.querySelectorAll('.dropdown-toggle'));g['default'](l).addClass(Ut)}e.setAttribute('aria-expanded',!0)}n&&n()},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this),a=n.data(Rt);if(a||(a=new e(this),n.data(Rt,a)),'string'==typeof t){if('undefined'==typeof a[t])throw new TypeError('No method named "'+t+'"');a[t]()}})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}}]),e}();g['default'](document).on('click'+Wt+'.data-api','[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',function(e){e.preventDefault(),zt._jQueryInterface.call(g['default'](this),'show')}),g['default'].fn[Bt]=zt._jQueryInterface,g['default'].fn[Bt].Constructor=zt,g['default'].fn[Bt].noConflict=function(){return g['default'].fn[Bt]=Ft,zt._jQueryInterface};var Yt='toast',Kt='bs.toast',Gt='.'+Kt,Jt=g['default'].fn[Yt],Zt='hide',en='show',tn='showing',nn='click.dismiss'+Gt,an={animation:!0,autohide:!0,delay:500},on={animation:'boolean',autohide:'boolean',delay:'number'},ln=function(){function e(e,t){this._element=e,this._config=this._getConfig(t),this._timeout=null,this._setListeners()}var t=e.prototype;return t.show=function(){var e=this,t=g['default'].Event('show'+Gt);if(g['default'](this._element).trigger(t),!t.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add('fade');var n=function(){e._element.classList.remove(tn),e._element.classList.add(en),g['default'](e._element).trigger('shown'+Gt),e._config.autohide&&(e._timeout=setTimeout(function(){e.hide()},e._config.delay))};if(this._element.classList.remove(Zt),y.reflow(this._element),this._element.classList.add(tn),this._config.animation){var a=y.getTransitionDurationFromElement(this._element);g['default'](this._element).one(y.TRANSITION_END,n).emulateTransitionEnd(a)}else n()}},t.hide=function(){if(this._element.classList.contains(en)){var e=g['default'].Event('hide'+Gt);g['default'](this._element).trigger(e),e.isDefaultPrevented()||this._close()}},t.dispose=function(){this._clearTimeout(),this._element.classList.contains(en)&&this._element.classList.remove(en),g['default'](this._element).off(nn),g['default'].removeData(this._element,Kt),this._element=null,this._config=null},t._getConfig=function(e){return e=l({},an,g['default'](this._element).data(),'object'==typeof e&&e?e:{}),y.typeCheckConfig(Yt,e,this.constructor.DefaultType),e},t._setListeners=function(){var e=this;g['default'](this._element).on(nn,'[data-dismiss="toast"]',function(){return e.hide()})},t._close=function(){var e=this,t=function(){e._element.classList.add(Zt),g['default'](e._element).trigger('hidden'+Gt)};if(this._element.classList.remove(en),this._config.animation){var n=y.getTransitionDurationFromElement(this._element);g['default'](this._element).one(y.TRANSITION_END,t).emulateTransitionEnd(n)}else t()},t._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},e._jQueryInterface=function(t){return this.each(function(){var n=g['default'](this),a=n.data(Kt);if(a||(a=new e(this,'object'==typeof t&&t),n.data(Kt,a)),'string'==typeof t){if('undefined'==typeof a[t])throw new TypeError('No method named "'+t+'"');a[t](this)}})},i(e,null,[{key:'VERSION',get:function(){return'4.6.1'}},{key:'DefaultType',get:function(){return on}},{key:'Default',get:function(){return an}}]),e}();g['default'].fn[Yt]=ln._jQueryInterface,g['default'].fn[Yt].Constructor=ln,g['default'].fn[Yt].noConflict=function(){return g['default'].fn[Yt]=Jt,ln._jQueryInterface},e.Alert=E,e.Button=j,e.Carousel=V,e.Collapse=le,e.Dropdown=Ae,e.Modal=Ke,e.Popover=Nt,e.Scrollspy=Mt,e.Tab=zt,e.Toast=ln,e.Tooltip=yt,e.Util=y,Object.defineProperty(e,'__esModule',{value:!0})})},function(e,t,n){'use strict';var a=Math.floor,o=Math.max,i=Math.round;n.r(t),function(e){function n(e){return e&&'[object Function]'==={}.toString.call(e)}function l(e,t){if(1!==e.nodeType)return[];var n=e.ownerDocument.defaultView,a=n.getComputedStyle(e,null);return t?a[t]:a}function r(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function s(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ownerDocument.body;case'#document':return e.body;}var t=l(e),n=t.overflow,a=t.overflowX,o=t.overflowY;return /(auto|scroll|overlay)/.test(n+o+a)?e:s(r(e))}function d(e){return e&&e.referenceNode?e.referenceNode:e}function c(e){return 11===e?se:10===e?de:se||de}function p(e){if(!e)return document.documentElement;for(var t=c(10)?document.body:null,n=e.offsetParent||null;n===t&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var a=n&&n.nodeName;return a&&'BODY'!==a&&'HTML'!==a?-1!==['TH','TD','TABLE'].indexOf(n.nodeName)&&'static'===l(n,'position')?p(n):n:e?e.ownerDocument.documentElement:document.documentElement}function u(e){var t=e.nodeName;return'BODY'!==t&&('HTML'===t||p(e.firstElementChild)===e)}function f(e){return null===e.parentNode?e:f(e.parentNode)}function g(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return document.documentElement;var n=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,a=n?e:t,o=n?t:e,i=document.createRange();i.setStart(a,0),i.setEnd(o,0);var l=i.commonAncestorContainer;if(e!==l&&t!==l||a.contains(o))return u(l)?l:p(l);var r=f(e);return r.host?g(r.host,t):g(e,f(t).host)}function m(e){var t=1<arguments.length&&arguments[1]!==void 0?arguments[1]:'top',n='top'===t?'scrollTop':'scrollLeft',a=e.nodeName;if('BODY'===a||'HTML'===a){var o=e.ownerDocument.documentElement,i=e.ownerDocument.scrollingElement||o;return i[n]}return e[n]}function h(e,t){var n=!!(2<arguments.length&&void 0!==arguments[2])&&arguments[2],a=m(t,'top'),o=m(t,'left'),i=n?-1:1;return e.top+=a*i,e.bottom+=a*i,e.left+=o*i,e.right+=o*i,e}function y(e,t){var n='x'===t?'Left':'Top',a='Left'===n?'Right':'Bottom';return parseFloat(e['border'+n+'Width'])+parseFloat(e['border'+a+'Width'])}function v(e,t,n,a){return o(t['offset'+e],t['scroll'+e],n['client'+e],n['offset'+e],n['scroll'+e],c(10)?parseInt(n['offset'+e])+parseInt(a['margin'+('Height'===e?'Top':'Left')])+parseInt(a['margin'+('Height'===e?'Bottom':'Right')]):0)}function b(e){var t=e.body,n=e.documentElement,a=c(10)&&getComputedStyle(n);return{height:v('Height',t,n,a),width:v('Width',t,n,a)}}function _(e){return fe({},e,{right:e.left+e.width,bottom:e.top+e.height})}function E(e){var t={};try{if(c(10)){t=e.getBoundingClientRect();var n=m(e,'top'),a=m(e,'left');t.top+=n,t.left+=a,t.bottom+=n,t.right+=a}else t=e.getBoundingClientRect()}catch(t){}var o={left:t.left,top:t.top,width:t.right-t.left,height:t.bottom-t.top},i='HTML'===e.nodeName?b(e.ownerDocument):{},r=i.width||e.clientWidth||o.width,s=i.height||e.clientHeight||o.height,d=e.offsetWidth-r,p=e.offsetHeight-s;if(d||p){var u=l(e);d-=y(u,'x'),p-=y(u,'y'),o.width-=d,o.height-=p}return _(o)}function x(e,t){var n=!!(2<arguments.length&&void 0!==arguments[2])&&arguments[2],a=c(10),i='HTML'===t.nodeName,r=E(e),d=E(t),p=s(e),u=l(t),f=parseFloat(u.borderTopWidth),g=parseFloat(u.borderLeftWidth);n&&i&&(d.top=o(d.top,0),d.left=o(d.left,0));var m=_({top:r.top-d.top-f,left:r.left-d.left-g,width:r.width,height:r.height});if(m.marginTop=0,m.marginLeft=0,!a&&i){var y=parseFloat(u.marginTop),v=parseFloat(u.marginLeft);m.top-=f-y,m.bottom-=f-y,m.left-=g-v,m.right-=g-v,m.marginTop=y,m.marginLeft=v}return(a&&!n?t.contains(p):t===p&&'BODY'!==p.nodeName)&&(m=h(m,t)),m}function C(e){var t=!!(1<arguments.length&&arguments[1]!==void 0)&&arguments[1],n=e.ownerDocument.documentElement,a=x(e,n),i=o(n.clientWidth,window.innerWidth||0),l=o(n.clientHeight,window.innerHeight||0),r=t?0:m(n),s=t?0:m(n,'left'),d={top:r-a.top+a.marginTop,left:s-a.left+a.marginLeft,width:i,height:l};return _(d)}function T(e){var t=e.nodeName;if('BODY'===t||'HTML'===t)return!1;if('fixed'===l(e,'position'))return!0;var n=r(e);return!!n&&T(n)}function w(e){if(!e||!e.parentElement||c())return document.documentElement;for(var t=e.parentElement;t&&'none'===l(t,'transform');)t=t.parentElement;return t||document.documentElement}function N(e,t,n,a){var o=!!(4<arguments.length&&void 0!==arguments[4])&&arguments[4],i={top:0,left:0},l=o?w(e):g(e,d(t));if('viewport'===a)i=C(l,o);else{var c;'scrollParent'===a?(c=s(r(t)),'BODY'===c.nodeName&&(c=e.ownerDocument.documentElement)):'window'===a?c=e.ownerDocument.documentElement:c=a;var p=x(c,l,o);if('HTML'===c.nodeName&&!T(l)){var u=b(e.ownerDocument),f=u.height,m=u.width;i.top+=p.top-p.marginTop,i.bottom=f+p.top,i.left+=p.left-p.marginLeft,i.right=m+p.left}else i=p}n=n||0;var h='number'==typeof n;return i.left+=h?n:n.left||0,i.top+=h?n:n.top||0,i.right-=h?n:n.right||0,i.bottom-=h?n:n.bottom||0,i}function S(e){var t=e.width,n=e.height;return t*n}function k(e,t,n,a,o){var i=5<arguments.length&&arguments[5]!==void 0?arguments[5]:0;if(-1===e.indexOf('auto'))return e;var l=N(n,a,i,o),r={top:{width:l.width,height:t.top-l.top},right:{width:l.right-t.right,height:l.height},bottom:{width:l.width,height:l.bottom-t.bottom},left:{width:t.left-l.left,height:l.height}},s=Object.keys(r).map(function(e){return fe({key:e},r[e],{area:S(r[e])})}).sort(function(e,t){return t.area-e.area}),d=s.filter(function(e){var t=e.width,a=e.height;return t>=n.clientWidth&&a>=n.clientHeight}),c=0<d.length?d[0].key:s[0].key,p=e.split('-')[1];return c+(p?'-'+p:'')}function A(e,t,n){var a=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null,o=a?w(t):g(t,d(n));return x(n,o,a)}function D(e){var t=e.ownerDocument.defaultView,n=t.getComputedStyle(e),a=parseFloat(n.marginTop||0)+parseFloat(n.marginBottom||0),o=parseFloat(n.marginLeft||0)+parseFloat(n.marginRight||0),i={width:e.offsetWidth+o,height:e.offsetHeight+a};return i}function L(e){var t={left:'right',right:'left',bottom:'top',top:'bottom'};return e.replace(/left|right|bottom|top/g,function(e){return t[e]})}function j(e,t,n){n=n.split('-')[0];var a=D(e),o={width:a.width,height:a.height},i=-1!==['right','left'].indexOf(n),l=i?'top':'left',r=i?'left':'top',s=i?'height':'width',d=i?'width':'height';return o[l]=t[l]+t[s]/2-a[s]/2,o[r]=n===r?t[r]-a[d]:t[L(r)],o}function I(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function O(e,t,n){if(Array.prototype.findIndex)return e.findIndex(function(e){return e[t]===n});var a=I(e,function(e){return e[t]===n});return e.indexOf(a)}function P(e,t,a){var o=void 0===a?e:e.slice(0,O(e,'name',a));return o.forEach(function(e){e['function']&&console.warn('`modifier.function` is deprecated, use `modifier.fn`!');var a=e['function']||e.fn;e.enabled&&n(a)&&(t.offsets.popper=_(t.offsets.popper),t.offsets.reference=_(t.offsets.reference),t=a(t,e))}),t}function q(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=A(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=k(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=j(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?'fixed':'absolute',e=P(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}function H(e,t){return e.some(function(e){var n=e.name,a=e.enabled;return a&&n===t})}function M(e){for(var t=[!1,'ms','Webkit','Moz','O'],n=e.charAt(0).toUpperCase()+e.slice(1),a=0;a<t.length;a++){var o=t[a],i=o?''+o+n:e;if('undefined'!=typeof document.body.style[i])return i}return null}function B(){return this.state.isDestroyed=!0,H(this.modifiers,'applyStyle')&&(this.popper.removeAttribute('x-placement'),this.popper.style.position='',this.popper.style.top='',this.popper.style.left='',this.popper.style.right='',this.popper.style.bottom='',this.popper.style.willChange='',this.popper.style[M('transform')]=''),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}function R(e){var t=e.ownerDocument;return t?t.defaultView:window}function W(e,t,n,a){var o='BODY'===e.nodeName,i=o?e.ownerDocument.defaultView:e;i.addEventListener(t,n,{passive:!0}),o||W(s(i.parentNode),t,n,a),a.push(i)}function F(e,t,n,a){n.updateBound=a,R(e).addEventListener('resize',n.updateBound,{passive:!0});var o=s(e);return W(o,'scroll',n.updateBound,n.scrollParents),n.scrollElement=o,n.eventsEnabled=!0,n}function U(){this.state.eventsEnabled||(this.state=F(this.reference,this.options,this.state,this.scheduleUpdate))}function Q(e,t){return R(e).removeEventListener('resize',t.updateBound),t.scrollParents.forEach(function(e){e.removeEventListener('scroll',t.updateBound)}),t.updateBound=null,t.scrollParents=[],t.scrollElement=null,t.eventsEnabled=!1,t}function X(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=Q(this.reference,this.state))}function V(e){return''!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function z(e,t){Object.keys(t).forEach(function(n){var a='';-1!==['width','height','top','right','bottom','left'].indexOf(n)&&V(t[n])&&(a='px'),e.style[n]=t[n]+a})}function Y(e,t){Object.keys(t).forEach(function(n){var a=t[n];!1===a?e.removeAttribute(n):e.setAttribute(n,t[n])})}function K(e,t){var n=e.offsets,o=n.popper,l=n.reference,r=i,s=function(e){return e},d=r(l.width),c=r(o.width),p=-1!==['left','right'].indexOf(e.placement),u=-1!==e.placement.indexOf('-'),f=t?p||u||d%2==c%2?r:a:s,g=t?r:s;return{left:f(1==d%2&&1==c%2&&!u&&t?o.left-1:o.left),top:g(o.top),bottom:g(o.bottom),right:f(o.right)}}function G(e,t,n){var a=I(e,function(e){var n=e.name;return n===t}),o=!!a&&e.some(function(e){return e.name===n&&e.enabled&&e.order<a.order});if(!o){var i='`'+t+'`';console.warn('`'+n+'`'+' modifier is required by '+i+' modifier in order to work, be sure to include it before '+i+'!')}return o}function J(e){if('end'===e)return'start';return'start'===e?'end':e}function Z(e){var t=!!(1<arguments.length&&arguments[1]!==void 0)&&arguments[1],n=he.indexOf(e),a=he.slice(n+1).concat(he.slice(0,n));return t?a.reverse():a}function ee(e,t,n,a){var i=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),l=+i[1],r=i[2];if(!l)return e;if(0===r.indexOf('%')){var s;switch(r){case'%p':s=n;break;case'%':case'%r':default:s=a;}var d=_(s);return d[t]/100*l}if('vh'===r||'vw'===r){var c;return c='vh'===r?o(document.documentElement.clientHeight,window.innerHeight||0):o(document.documentElement.clientWidth,window.innerWidth||0),c/100*l}return l}function te(e,t,n,a){var o=[0,0],i=-1!==['right','left'].indexOf(a),l=e.split(/(\+|\-)/).map(function(e){return e.trim()}),r=l.indexOf(I(l,function(e){return-1!==e.search(/,|\s/)}));l[r]&&-1===l[r].indexOf(',')&&console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');var s=/\s*,\s*|\s+/,d=-1===r?[l]:[l.slice(0,r).concat([l[r].split(s)[0]]),[l[r].split(s)[1]].concat(l.slice(r+1))];return d=d.map(function(e,a){var o=(1===a?!i:i)?'height':'width',l=!1;return e.reduce(function(e,t){return''===e[e.length-1]&&-1!==['+','-'].indexOf(t)?(e[e.length-1]=t,l=!0,e):l?(e[e.length-1]+=t,l=!1,e):e.concat(t)},[]).map(function(e){return ee(e,o,t,n)})}),d.forEach(function(e,t){e.forEach(function(n,a){V(n)&&(o[t]+=n*('-'===e[a-1]?-1:1))})}),o}function ne(e,t){var n=t.offset,a=e.placement,o=e.offsets,i=o.popper,l=o.reference,r=a.split('-')[0],s=void 0;return s=V(+n)?[+n,0]:te(n,i,l,r),'left'===r?(i.top+=s[0],i.left-=s[1]):'right'===r?(i.top+=s[0],i.left+=s[1]):'top'===r?(i.left+=s[0],i.top-=s[1]):'bottom'===r&&(i.left+=s[0],i.top+=s[1]),e.popper=i,e}var ae=Math.min,oe='undefined'!=typeof window&&'undefined'!=typeof document&&'undefined'!=typeof navigator,ie=function(){for(var e=['Edge','Trident','Firefox'],t=0;t<e.length;t+=1)if(oe&&0<=navigator.userAgent.indexOf(e[t]))return 1;return 0}(),le=oe&&window.Promise,re=le?function(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve().then(function(){t=!1,e()}))}}:function(e){var t=!1;return function(){t||(t=!0,setTimeout(function(){t=!1,e()},ie))}},se=oe&&!!(window.MSInputMethodContext&&document.documentMode),de=oe&&/MSIE 10/.test(navigator.userAgent),ce=function(e,t){if(!(e instanceof t))throw new TypeError('Cannot call a class as a function')},pe=function(){function e(e,t){for(var n=0,a;n<t.length;n++)a=t[n],a.enumerable=a.enumerable||!1,a.configurable=!0,'value'in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}return function(t,n,a){return n&&e(t.prototype,n),a&&e(t,a),t}}(),ue=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},fe=Object.assign||function(e){for(var t=1,n;t<arguments.length;t++)for(var a in n=arguments[t],n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a]);return e},ge=oe&&/Firefox/i.test(navigator.userAgent),me=['auto-start','auto','auto-end','top-start','top','top-end','right-start','right','right-end','bottom-end','bottom','bottom-start','left-end','left','left-start'],he=me.slice(3),ye={FLIP:'flip',CLOCKWISE:'clockwise',COUNTERCLOCKWISE:'counterclockwise'},ve=function(){function e(t,a){var o=this,i=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};ce(this,e),this.scheduleUpdate=function(){return requestAnimationFrame(o.update)},this.update=re(this.update.bind(this)),this.options=fe({},e.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=t&&t.jquery?t[0]:t,this.popper=a&&a.jquery?a[0]:a,this.options.modifiers={},Object.keys(fe({},e.Defaults.modifiers,i.modifiers)).forEach(function(t){o.options.modifiers[t]=fe({},e.Defaults.modifiers[t]||{},i.modifiers?i.modifiers[t]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(e){return fe({name:e},o.options.modifiers[e])}).sort(function(e,t){return e.order-t.order}),this.modifiers.forEach(function(e){e.enabled&&n(e.onLoad)&&e.onLoad(o.reference,o.popper,o.options,e,o.state)}),this.update();var l=this.options.eventsEnabled;l&&this.enableEventListeners(),this.state.eventsEnabled=l}return pe(e,[{key:'update',value:function(){return q.call(this)}},{key:'destroy',value:function(){return B.call(this)}},{key:'enableEventListeners',value:function(){return U.call(this)}},{key:'disableEventListeners',value:function(){return X.call(this)}}]),e}();/**!
 * @fileOverview Kickass library to create and place poppers near their reference elements.
 * @version 1.16.1
 * @license
 * Copyright (c) 2016 Federico Zivolo and contributors
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */ve.Utils=('undefined'==typeof window?e:window).PopperUtils,ve.placements=me,ve.Defaults={placement:'bottom',positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(e){var t=e.placement,n=t.split('-')[0],a=t.split('-')[1];if(a){var o=e.offsets,i=o.reference,l=o.popper,r=-1!==['bottom','top'].indexOf(n),s=r?'left':'top',d=r?'width':'height',c={start:ue({},s,i[s]),end:ue({},s,i[s]+i[d]-l[d])};e.offsets.popper=fe({},l,c[a])}return e}},offset:{order:200,enabled:!0,fn:ne,offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,t){var n=t.boundariesElement||p(e.instance.popper);e.instance.reference===n&&(n=p(n));var a=M('transform'),i=e.instance.popper.style,l=i.top,r=i.left,s=i[a];i.top='',i.left='',i[a]='';var d=N(e.instance.popper,e.instance.reference,t.padding,n,e.positionFixed);i.top=l,i.left=r,i[a]=s,t.boundaries=d;var c=t.priority,u=e.offsets.popper,f={primary:function(e){var n=u[e];return u[e]<d[e]&&!t.escapeWithReference&&(n=o(u[e],d[e])),ue({},e,n)},secondary:function(e){var n='right'===e?'left':'top',a=u[n];return u[e]>d[e]&&!t.escapeWithReference&&(a=ae(u[n],d[e]-('right'===e?u.width:u.height))),ue({},n,a)}};return c.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';u=fe({},u,f[t](e))}),e.offsets.popper=u,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,o=t.reference,i=e.placement.split('-')[0],l=a,r=-1!==['top','bottom'].indexOf(i),s=r?'right':'bottom',d=r?'left':'top',c=r?'width':'height';return n[s]<l(o[d])&&(e.offsets.popper[d]=l(o[d])-n[c]),n[d]>l(o[s])&&(e.offsets.popper[d]=l(o[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!G(e.instance.modifiers,'arrow','keepTogether'))return e;var a=t.element;if('string'==typeof a){if(a=e.instance.popper.querySelector(a),!a)return e;}else if(!e.instance.popper.contains(a))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var r=e.placement.split('-')[0],s=e.offsets,d=s.popper,c=s.reference,p=-1!==['left','right'].indexOf(r),u=p?'height':'width',f=p?'Top':'Left',g=f.toLowerCase(),m=p?'left':'top',h=p?'bottom':'right',y=D(a)[u];c[h]-y<d[g]&&(e.offsets.popper[g]-=d[g]-(c[h]-y)),c[g]+y>d[h]&&(e.offsets.popper[g]+=c[g]+y-d[h]),e.offsets.popper=_(e.offsets.popper);var v=c[g]+c[u]/2-y/2,b=l(e.instance.popper),x=parseFloat(b['margin'+f]),E=parseFloat(b['border'+f+'Width']),C=v-e.offsets.popper[g]-x-E;return C=o(ae(d[u]-y,C),0),e.arrowElement=a,e.offsets.arrow=(n={},ue(n,g,i(C)),ue(n,m,''),n),e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(H(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var n=N(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),o=e.placement.split('-')[0],i=L(o),l=e.placement.split('-')[1]||'',r=[];switch(t.behavior){case ye.FLIP:r=[o,i];break;case ye.CLOCKWISE:r=Z(o);break;case ye.COUNTERCLOCKWISE:r=Z(o,!0);break;default:r=t.behavior;}return r.forEach(function(s,d){if(o!==s||r.length===d+1)return e;o=e.placement.split('-')[0],i=L(o);var c=e.offsets.popper,p=e.offsets.reference,u=a,f='left'===o&&u(c.right)>u(p.left)||'right'===o&&u(c.left)<u(p.right)||'top'===o&&u(c.bottom)>u(p.top)||'bottom'===o&&u(c.top)<u(p.bottom),g=u(c.left)<u(n.left),m=u(c.right)>u(n.right),h=u(c.top)<u(n.top),y=u(c.bottom)>u(n.bottom),v='left'===o&&g||'right'===o&&m||'top'===o&&h||'bottom'===o&&y,b=-1!==['top','bottom'].indexOf(o),_=!!t.flipVariations&&(b&&'start'===l&&g||b&&'end'===l&&m||!b&&'start'===l&&h||!b&&'end'===l&&y),x=!!t.flipVariationsByContent&&(b&&'start'===l&&m||b&&'end'===l&&g||!b&&'start'===l&&y||!b&&'end'===l&&h),E=_||x;(f||v||E)&&(e.flipped=!0,(f||v)&&(o=r[d+1]),E&&(l=J(l)),e.placement=o+(l?'-'+l:''),e.offsets.popper=fe({},e.offsets.popper,j(e.instance.popper,e.offsets.reference,e.placement)),e=P(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport',flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split('-')[0],a=e.offsets,o=a.popper,i=a.reference,l=-1!==['left','right'].indexOf(n),r=-1===['top','left'].indexOf(n);return o[l?'left':'top']=i[n]-(r?o[l?'width':'height']:0),e.placement=L(t),e.offsets.popper=_(o),e}},hide:{order:800,enabled:!0,fn:function(e){if(!G(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,n=I(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottom<n.top||t.left>n.right||t.top>n.bottom||t.right<n.left){if(!0===e.hide)return e;e.hide=!0,e.attributes['x-out-of-boundaries']=''}else{if(!1===e.hide)return e;e.hide=!1,e.attributes['x-out-of-boundaries']=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var n=t.x,a=t.y,o=e.offsets.popper,i=I(e.instance.modifiers,function(e){return'applyStyle'===e.name}).gpuAcceleration;void 0!==i&&console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');var l=void 0===i?t.gpuAcceleration:i,r=p(e.instance.popper),s=E(r),d={position:o.position},c=K(e,2>window.devicePixelRatio||!ge),u='bottom'===n?'top':'bottom',f='right'===a?'left':'right',g=M('transform'),m=void 0,h=void 0;if(h='bottom'==u?'HTML'===r.nodeName?-r.clientHeight+c.bottom:-s.height+c.bottom:c.top,m='right'==f?'HTML'===r.nodeName?-r.clientWidth+c.right:-s.width+c.right:c.left,l&&g)d[g]='translate3d('+m+'px, '+h+'px, 0)',d[u]=0,d[f]=0,d.willChange='transform';else{var y='bottom'==u?-1:1,v='right'==f?-1:1;d[u]=h*y,d[f]=m*v,d.willChange=u+', '+f}var b={"x-placement":e.placement};return e.attributes=fe({},b,e.attributes),e.styles=fe({},d,e.styles),e.arrowStyles=fe({},e.offsets.arrow,e.arrowStyles),e},gpuAcceleration:!0,x:'bottom',y:'right'},applyStyle:{order:900,enabled:!0,fn:function(e){return z(e.instance.popper,e.styles),Y(e.instance.popper,e.attributes),e.arrowElement&&Object.keys(e.arrowStyles).length&&z(e.arrowElement,e.arrowStyles),e},onLoad:function(e,t,n,a,o){var i=A(o,t,e,n.positionFixed),l=k(n.placement,i,t,e,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return t.setAttribute('x-placement',l),z(t,{position:n.positionFixed?'fixed':'absolute'}),n},gpuAcceleration:void 0}}},t['default']=ve}.call(this,n(1))},function(){},function(){$(document).ready(function(){$('.ds-collapse-bnt').each(function(){'true'===$(this).attr('aria-expanded')&&($(this).parent().parent().parent().parent().attr('data-before','+'),$(this).parent().parent().parent().parent().first().attr('data-before','-'))}),$('.ds-collapse-bnt').on('click',function(){var e=$(this).parent().parent().parent().parent();'true'===$(this).attr('aria-expanded')?e.attr('data-before','+'):e.attr('data-before','-')}),$('.collapse-circle').on('click',function(){var e=$(this).parent();'true'===$(this).attr('aria-expanded')?e.attr('data-before','+'):e.attr('data-before','-')})})},function(){$(document).ready(function(){$(document).on('click','*[data-component=card]',function(){var e=$(this).attr('data-url');e?window.location=e:console.warn('Cad component is missing "data-url" attribute.')})}),$(document).ready(function(){$(document).on('click','.ds-life-experience-card',function(){var e=$(this).attr('data-redirecturl');'/'!=e&&(window.location=e)})}),$(document).ready(function(){'ltr'==$('html').attr('dir')?$('.see-more-bnt').text('See more').append('<i class=\'ds-chevron-down\'></i>'):$('.see-more-bnt').text('\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>'),$('.see-more-bnt').click(function(t){t.stopPropagation(),t.stopImmediatePropagation(),$(this).hasClass('active')?('ltr'==$('html').attr('dir')?$(this).text('See more').append('<i class=\'ds-chevron-down\'></i>'):$(this).text('\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>'),$(this).parent().parent().next().slideToggle(400),$(this).removeClass('active'),$(this).parent().parent().removeClass('active-header-section'),$(this).parent().parent().children().first().css('display','block'),$(this).parent().parent().children().eq(1).css('display','none')):('ltr'==$('html').attr('dir')?$(this).text('See less').append('<i class=\'ds-chevron-down\'></i>'):$(this).text('\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>'),$(this).parent().parent().next().slideToggle(400),$(this).addClass('active'),$(this).parent().parent().addClass('active-header-section'),$(this).parent().parent().children().first().css('display','none'),$(this).parent().parent().children().eq(1).css('display','block'))})})},function(){function e(e){return e.trim().charAt(0).toUpperCase()+e.trim().slice(1).toLowerCase()}$(document).ready(function(){var t=1;obj_tabs=$('.ds-tab-accordion').toArray(),jQuery.each(obj_tabs,function(){var n='';obj_tab=$(this).find('.ds-tabs li').toArray(),obj_cont=$(this).find('.tab-content .tab-pane').toArray(),jQuery.each(obj_tab,function(a,o){var i=e(o.textContent);n+='<div id="'+t+'" class="panel panel-default">',n+='<div class="panel-heading accordion-toggle collapsed" role="tab" id="heading'+t+'" data-toggle="collapse" data-parent="#content" data-target="#collapse'+t+'" aria-expanded="false" aria-controls="collapse'+t+'">',n+='<div class="panel-title">',n+='<h3>'+i+'</h3>',n+='<p> See more <i class="ds-chevron-down"></i></p>',n+='</div>',n+='</div>',n+='<div id="collapse'+t+'" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading'+t+'">',n+='<div class="panel-body">'+obj_cont[a].innerHTML+'</div>',n+='</div>',n+='</div>',t++}),$(this).find('#content').html(n),$(this).find('#content').find('.panel-collapse:first').addClass('in'),$(this).find('#content').find('.panel-title a:first').attr('aria-expanded','true')}),'ltr'==$('html').attr('dir')?$('.accordion-toggle p').text('See more').append('<i class=\'ds-chevron-down\'></i>'):$('.accordion-toggle p').text('\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>')}),$(document).on('click','.ds-tab-accordion .accordion-toggle',function(t){t.stopPropagation(),t.stopImmediatePropagation(),$(this).hasClass('collapsed')?'ltr'==$('html').attr('dir')?$(this).find('p').text('See more').append('<i class=\'ds-chevron-down\'></i>'):$(this).find('p').text('\u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>'):'ltr'==$('html').attr('dir')?$(this).find('p').text('See less').append('<i class=\'ds-chevron-down\'></i>'):$(this).find('p').text('\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u0645\u0632\u064A\u062F').append('<i class=\'ds-chevron-down\'></i>')})},function(){$(document).ready(function(){$('.ds-footer-section > button').click(function(){657>$(window).width()&&($(this).hasClass('active')?($(this).children().css({transform:'rotate(0deg)'}),$(this).next().slideToggle(400),$(this).removeClass('active')):($(this).children().css({transform:'rotate(180deg)'}),$(this).next().slideToggle(400),$(this).addClass('active')))}),$('.ds-feedback-header > .anser > .btn-no').click(function(){$(this).parent().parent().next().css({display:'block'}),$('.feedback-no').show(),$('.feedback-yes').hide(),$(this).parent().parent().css({display:'none'})}),$('#isComment').click(function(){$(this).is(':checked')?$('.feedback-input').removeClass('d-none'):$('.feedback-input').addClass('d-none')}),$('.ds-feedback-header > .anser > .btn-yes').click(function(){$(this).parent().parent().next().css({display:'block'}),$('.feedback-yes').show(),$('.feedback-no').hide(),$(this).parent().parent().css({display:'none'})}),$('.ds-feedback-body > .close-btn').click(function(){$(this).parent().css({display:'none'}),$(this).parent().parent().children().first().css({display:'flex'}),$('.feedback-input').addClass('d-none')})})},function(){$(document).ready(function(){$('.ds-header .navbar-toggler').click(function(){$(this).hasClass('collapsed')?($('.navbar-brand').hide(),$('#right-nav .nav-item').hide(),$('#right-nav .mobile-hide').show(),$('#right-nav .navbar-nav').toggleClass('flex-row'),$('#right-nav .navbar-nav').toggleClass('flex-column'),$('#right-nav').addClass('bottom-nav'),$('#right-nav .navbar-nav').addClass('bottom-nav-list'),$('.ds-header').addClass('mobile')):($('.navbar-brand').show(),$('#right-nav .nav-item').show(),$('#right-nav .mobile-hide').hide(),$('#right-nav').removeClass('bottom-nav'),$('#right-nav .navbar-nav').removeClass('bottom-nav-list'),$('#right-nav .navbar-nav').toggleClass('flex-column'),$('#right-nav .navbar-nav').toggleClass('flex-row'),$('.ds-header').removeClass('mobile'))})})},function(){$(document).ready(function(){var e=14;657>$(window).width()&&$('.ds-navigation-card span').each(function(t,n){var a=n.textContent;if(a.length>e){var o=a.substring(0,e);o+='...',n.innerHTML='',n.append(o)}})})},function(){$(document).ready(function(){$('.ds-filters-check-all').click(function(){var e=$(this).data('name');$('input[name="'.concat(e,'"]')).prop('checked',!0)}),$('.ds-filters-uncheck-all').click(function(){var e=$(this).data('name');$('input[name="'.concat(e,'"]')).prop('checked',!1)}),$(document).on('click','.ds-filters-header,.ds-sort-header',function(){$(this).hasClass('active')?($(this).next().addClass('d-none'),$(this).removeClass('active'),$(this).next().children().children().removeClass('active'),'ltr'==$('html').attr('dir')?$('#text-search-filters').text('Search filters'):$('#text-search-filters').text('\u062A\u0635\u0641\u064A\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0628\u062D\u062B')):($('.ds-filters-header,.ds-sort-header').next().addClass('d-none'),$(this).next().removeClass('d-none'),$('.ds-filters-header,.ds-sort-header').removeClass('active'),$(this).addClass('active'),'ltr'==$('html').attr('dir')?$(this).hasClass('ds-filters-header')?$('#text-search-filters').text('Close filters'):$('#text-search-filters').text('Search filters'):$(this).hasClass('ds-filters-header')?$('#text-search-filters').text('\u062A\u0635\u0641\u064A\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0628\u062D\u062B'):$('#text-search-filters').text('\u062A\u0635\u0641\u064A\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0628\u062D\u062B'))}),$(document).on('mousedown','.ds-filters-header,.ds-sort-header',function(e){e.stopPropagation(),e.stopImmediatePropagation(),e.preventDefault()}),$(document).on('click',function(e){$(e.target).closest('.ds-filters,.ds-sort').length||($('.ds-filters-header,.ds-sort-header').next().addClass('d-none'),$('.ds-filters-header,.ds-sort-header').removeClass('active'),'ltr'==$('html').attr('dir')?$('#text-search-filters').text('Search filters'):$('#text-search-filters').text('\u062A\u0635\u0641\u064A\u0629 \u0646\u062A\u0627\u0626\u062C \u0627\u0644\u0628\u062D\u062B'))}),$(document).on('click','.ds-filters-card-header',function(){$(this).hasClass('active')?($(this).next().slideUp(400),$(this).removeClass('active')):($('.ds-filters-card-header').removeClass('active'),$('.ds-filters-card-header').next().slideUp(),$(this).next().slideDown(400),$(this).addClass('active'))})})},function(){$('.dropdown-menu a').click(function(){$(this).find('a').removeClass('active'),$(this).addClass('active'),$(this).parents('.dropdown').find('.btn').html($(this).text()+'<i class="ds-chevron-down"></i>'),$(this).parents('.dropdown').find('.btn').val($(this).data('value'))})},function(){$(document).ready(function(){function t(e){var t=[],n,a,o,i,l;for(n=document.getElementsByClassName('select-items'),a=document.getElementsByClassName('select-selected'),i=n.length,l=a.length,o=0;o<l;o++)e==a[o]?t.push(o):a[o].classList.remove('ds-select-active');for(o=0;o<i;o++)t.indexOf(o)&&n[o].classList.add('select-hide')}var e,n,o,i,l,r,s,a,d;for(e=document.getElementsByClassName('ds-select'),i=e.length,n=0;n<i;n++){r=e[n].getElementsByTagName('select')[0];var c=r.getAttribute('id')||Math.random(),p=c+'-controls';for(l=r.length,s=document.createElement('button'),s.setAttribute('class','select-selected'),s.setAttribute('aria-haspopup','listbox'),s.setAttribute('aria-controls',p),s.innerHTML=r.options[r.selectedIndex].innerHTML,e[n].appendChild(s),a=document.createElement('ul'),a.setAttribute('class','select-items select-hide'),a.setAttribute('id',p),a.setAttribute('aria-live','polite'),o=1;o<l;o++){var u=function(t){if('click'==t.type||13===t.keyCode){var e,n,a,o,i,l,r;for(o=this.parentNode.parentNode.getElementsByTagName('select')[0],l=o.length,i=this.parentNode.previousSibling,n=0;n<l;n++)if(o.options[n].innerHTML==this.innerHTML){for(o.selectedIndex=n,i.innerHTML=this.innerHTML,e=this.parentNode.getElementsByClassName('ds-selected'),r=e.length,a=0;a<r;a++)e[a].removeAttribute('class');this.setAttribute('class','ds-selected');break}i.click()}};d=document.createElement('li'),d.innerHTML=r.options[o].innerHTML,d.setAttribute('value',r.options[o].value),d.setAttribute('tabindex','0'),d.addEventListener('click',u),d.addEventListener('keydown',u),a.appendChild(d)}e[n].appendChild(a),s.addEventListener('click',function(n){n.stopPropagation(),n.preventDefault(),t(this),this.parentElement.classList.contains('disabled')||(this.nextSibling.classList.toggle('select-hide'),this.classList.toggle('ds-select-active'),this.classList.contains('ds-select-active')&&!this.parentElement.classList.contains('is-invalid')?this.parentElement.classList.add('is-active'):this.classList.contains('ds-select-active')||this.parentElement.classList.contains('is-invalid')?this.classList.contains('ds-select-active')&&this.parentElement.classList.contains('is-invalid')&&this.parentElement.classList.add('is-invalid-opne'):this.parentElement.classList.remove('is-active'))}),s.addEventListener('focus',function(){this.parentElement.classList.contains('disabled')||this.parentElement.classList.add('is-focus')}),s.addEventListener('blur',function(){this.parentElement.classList.remove('is-focus'),this.parentElement.classList.remove('is-active'),this.parentElement.classList.remove('is-invalid-opne')})}document.addEventListener('click',t)})},function(){$(document).ready(function(){767>$(window).width()&&($('.ds-inpage-sideNavigation button').attr('aria-expanded','false'),$('.collapse.show').removeClass('show'),$('#Selected-nav-lable').text($('.ds-inpage-sideNavigation .nav-item.active .nav-link').text()),$('.ds-inpage-sideNavigation .nav-item.active').addClass('d-none')),$('.ds-inpage-sideNavigation .nav-item').click(function(){$('.ds-inpage-sideNavigation .nav-item').removeClass('active'),$(this).addClass('active'),767>$(window).width()&&($('.ds-inpage-sideNavigation .nav-item').removeClass('d-none'),$(this).addClass('d-none'),$('#Selected-nav-lable').text($(this).children().text()),$('.ds-inpage-sideNavigation button').attr('aria-expanded','false'),$('.collapse.show').removeClass('show'))})})},function(){},function(){$(document).ready(function(){$('.ds-search-input > input[type=\'text\']').keyup(function(){$(this).next().removeClass('d-none'),$(this).parent().next().removeClass('d-none'),$(this).parent().children().first().addClass('d-none'),0===$(this).val().length&&($(this).next().addClass('d-none'),$(this).parent().next().addClass('d-none'),$(this).parent().children().first().removeClass('d-none'))}),$('.ds-search-input > .clear-btn').click(function(){$(this).addClass('d-none'),$(this).parent().children().eq(1).val(''),$(this).parent().next().addClass('d-none'),$(this).parent().children().first().removeClass('d-none')}),$(document).mouseup(function(t){var e=$('.ds-search-container');e.is(t.target)||0!==e.has(t.target).length||(e.children().eq(1).addClass('d-none'),e.children().first().children().first().removeClass('d-none'),e.children().first().children().eq(1).val(''),e.children().first().children().eq(2).addClass('d-none'))})})},function(){function e(e,n){function a(){6<_.length&&(x=4),3<_.length&&6>=_.length&&(x=2),3>=_.length&&m.addClass('container')}function o(e){return function(t){x=e,A=t.type.includes('pointer')?t.pageX:t.touches[0].clientX,k=!0}}function l(e){if(k){var t=e.type.includes('pointer')?e.pageX:e.touches[0].clientX;D=c?L+t-A:A+(L-t)}}function r(){k=!1;var e=D-L;100<e&&0<x&&(x-=1,d()),100>e&&x<=_.length&&(x+=1,d())}function s(){for(var e=3,t=(_.length/e).toFixed(),n=0;n<e;n++){var a=n*t,o=(n+1)*t-1;if(x>=a&&x<=o)return n}}function d(){E=v/2-f/2-x*f,c||(E=-E),u.css('transform','translateX('+E+'px)'),T.each(function(e){e===s()?$(this).addClass('active-dot'):$(this).removeClass('active-dot')})}var c='ltr'===document.dir;console.log('Init carousel on document ready',e,n);var p=$(this),u=p.find('.cards'),f=p.find('.carousel-card-container').outerWidth(),g=p.find('.carousel-dots'),m=p.find('.track'),h=p.find('.prevBtn'),y=p.find('.nextBtn'),v=p.width(),b=document.body.offsetWidth,_=n.querySelectorAll('.carousel-card-container'),x,E;if(a(),8<=_.length)for(var C=0,i;3>C;C++)i=$('<div class="carousel-dot"></div>'),i.attr('data-dot-index',C),g.append(i);var T=p.find('.carousel-dot');if(8<_.length){var w=Object.values(_),N=$(w[0]).clone(),S=$(w[w.length-1]).clone();u.append(N),u.prepend(S),_=n.querySelectorAll('.carousel-card-container')}d(),h.hover(function(){4<=_.length&&$(this).css({opacity:.6,cursor:'pointer'})},function(){4<=_.length&&$(this).css('opacity',0)}),h.on('click',function(){0<x&&(x-=1,d())}),y.hover(function(){4<=_.length&&$(this).css({opacity:.6,cursor:'pointer'})},function(){4<=_.length&&$(this).css('opacity',0)}),y.on('click',function(){x<=_.length-2&&(x+=1,d())}),T.on('click',function(){var e=(_.length/3).toFixed(),n=$(this).data('dot-index')+1;x=3===n&&20>_.length&&8<_.length?_.length-4:1===n&&20>_.length&&8<_.length?3:3===n&&8>=_.length?_.length-1:1===n&&8>=_.length?0:t(n*e)-t(e/2),$(this).addClass('active-dot'),d()});var k=!1,A=0,D=0,L=0;_.forEach(function(e,t){addEventListener('dragstart',function(t){return t.preventDefault()}),e.addEventListener('touchstart',o(t)),e.addEventListener('touchend',r),e.addEventListener('touchmove',l)}),$(m).on('transitionend',function(){if(640>=b){if(0>=x){x=_.length-2;var e=v/2-f/2-x*f;u.css('transition','none'),u.css('transform','translateX('.concat(c?e:-e,'px)')),setTimeout(function(){u.css('transition','')},300)}if(x===_.length-1||x>=_.length){x=1;var t=v/2-f/2-x*f;u.css('transition','none'),u.css('transform','translateX('.concat(c?t:-t,'px)')),setTimeout(function(){u.css('transition','')},300)}}else if(8<_.length){if(2>=x){x=_.length-3;var n=v/2-f/2-x*f;u.css('transition','none'),u.css('transform','translateX('.concat(c?n:-n,'px)')),setTimeout(function(){u.css('transition','')},300)}if(x>=_.length-2){x=3;var a=v/2-f/2-x*f;u.css('transition','none'),u.css('transform','translateX('.concat(c?a:-a,'px)')),setTimeout(function(){u.css('transition','')},300)}}})}var t=Math.floor;window.initCarousel=e,$(document).ready(function(){$('.carousel:not(.do-not-init)').each(e)})},function(){$(document).ready(function(){$('.ds-onboarding-dropdown-header > button').click(function(){$(this).hasClass('active')?($(this).removeClass('active'),$(this).parent().next().slideToggle(400)):($(this).addClass('active'),$(this).parent().next().slideToggle(400))}),$('.ds-onboarding-dropdown-body > div').click(function(){$(this).parent().children().removeClass('selected'),$(this).addClass('selected'),$(this).parent().parent().children().children().eq(1).children().first().text($(this).text())}),$('.ds-onboarding-dropdown-body > div').on('keydown',function(t){13==t.which&&($(this).parent().children().removeClass('selected'),$(this).addClass('selected'),$(this).parent().parent().children().children().eq(1).children().first().text($(this).text()))})})},function(){function e(e,t,n){function a(e,t){return Array.from(Array(t-e+1),function(t,n){return n+e})}if(5>n)throw'maxLength must be at least 5';var o=9>n?1:2,i=n-2*o-3>>1,l=n-2*o-2>>1;return e<=n?a(1,e):t<=n-o-1-l?(console.log('left---'+a(1,n-o-1).concat([0]).concat(a(e-o+1,e))),a(1,n-o-1).concat([0]).concat(a(e-o+1,e))):t>=e-o-1-l?(console.log('right--'+a(1,o).concat([0]).concat(a(e-o-1-l-i,e))),a(1,o).concat([0]).concat(a(e-o-1-l-i,e))):a(1,o).concat([0]).concat(a(t-i,t+l)).concat([0]).concat(a(e-o+1,e))}$(function(){var t=17,n;$.fn.showPage=function(a){return!(1>a||a>t)&&(n=a,$('.pagination li').slice(1,-1).remove(),e(t,n,7).forEach(function(e){1==n?$('#previous-page').hide():n==t?$('#next-page').hide():($('#previous-page').show(),$('#next-page').show()),$('<li>').addClass('page-item ').append($('<a>').addClass('page-link btn btn-secondary btn-text '+(e===n?' selected':'')).attr({href:'javascript:void(0)'}).text(e||'...')).insertBefore('#next-page')}),!0)},$('.pagination').append($('<li>').addClass('page-item previous').attr({id:'previous-page'}).append($('<a>').addClass('align-items-center btn btn-icon btn-icon-left btn-secondary d-flex justify-content-between').attr({href:'javascript:void(0)'}).append($('<i>').addClass('ds-chevron-left')).append($('<span>').text('Previous'))),$('<li>').addClass('page-item next').attr({id:'next-page'}).append($('<a>').addClass('align-items-center btn btn-icon btn-icon-right btn-secondary d-flex justify-content-between').attr({href:'javascript:void(0)'}).append($('<span>').text('Next')).append($('<i>').addClass('ds-chevron-right')))),$(document).on('click','.pagination li:not(.active)',function(){return'...'==$(this).find('a').text()?null:$.fn.showPage(+$(this).text())}),$('#next-page').on('click',function(){return $.fn.showPage(n+1)}),$('#previous-page').on('click',function(){return $.fn.showPage(n-1)})})},function(){$(document).ready(function(){$(window).bind('scroll',function(){var e=$(window).scrollTop();$('body').hasClass('sticky-to-top')&&(e+=767<$(window).width()?80:210);var t=$('section');t.each(function(n){var a=$(this).attr('id');if(a){var o=$(this).offset().top,i=Math.round($(this).height());if(0===i)if(t[n+1]){var l=$(t[n+1]).offset().top;i=l-o}else{var r=$(document).height();i=r-o}var s=o+i;if(e>=o&&e<=s){var d=$('a[href="#'+a+'"]'),c=d.parent().hasClass('active');if(!c){d.parent().addClass('active').siblings().removeClass('active');var p=d.parent().text();$('#Selected-nav-lable').text(p)}}}})}),$('html').css({scrollBehavior:'smooth'})})},function(){function e(e){Object.keys(e).forEach(function(t){var n='',a=e[t].name.split('.').slice(-1)[0].toLowerCase();(-1===['jpeg','jpg','png'].indexOf(a)||500<e[t].size/1024)&&(n='! Error message'),e[t].error=n,o.push(e[t])}),$('#startPage').hide(),$('#listingPage').show(),a()}function t(e){o.splice(e,1),0<o.length?a():n()}function n(){$('#startPage').show(),$('#listingPage').hide()}function a(){if($('#listHolder').empty(),$('#saveUploadBtn').attr('disabled',!1),'ltr'==$('html').attr('dir'))for(var e=0;e<o.length;e++){var t=0<o[e].error.length?o[e].error:'Uploading...',n='<div id="document'+e+'" ><div  class="row"> <div class="col-10" >'+o[e].name+'</div><div class="col-2 " ><i id="closeDoc'+e+'" class="ds-x-circle curPointer"  ></i></div></div><div class="row"> <div class="col-12"> <div class="progress"> <div id="progressBar'+e+'" class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div></div></div></div><div id="status'+e+'" class="row greyTxt font14"> <div class="col-8  " >'+t+'</div><div class="col-2 offset-2  " >25%</div></div><hr/></div>';$('#listHolder').append(n),0<o[e].error.length&&($('#document'+e).addClass('error'),$('#closeDoc'+e).addClass('error'),$('#status'+e).addClass('error'),$('#progressBar'+e).addClass('bg-danger'),$('#saveUploadBtn').attr('disabled',!0))}else for(var a=0;a<o.length;a++){var i=0<o[a].error.length?'\u0625\u0634\u0639\u0627\u0631 \u062E\u0637\u0623':'\u062C\u0627\u0631\u064A \u0627\u0644\u062A\u062D\u0645\u064A\u0644...',l='<div id="document'+a+'" ><div  class="row"> <div class="col-10" >'+o[a].name+'</div><div class="col-2 " ><i id="closeDoc'+a+'" class="ds-x-circle curPointer"  ></i></div></div><div class="row"> <div class="col-12"> <div class="progress"> <div id="progressBar'+a+'" class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div></div></div></div><div id="status'+a+'" class="row greyTxt font14"> <div class="col-8  " >'+i+'</div><div class="col-2 offset-2  " >25%</div></div><hr/></div>';$('#listHolder').append(l),0<o[a].error.length&&($('#document'+a).addClass('error'),$('#closeDoc'+a).addClass('error'),$('#status'+a).addClass('error'),$('#progressBar'+a).addClass('bg-danger'),$('#saveUploadBtn').attr('disabled',!0))}}var o=[];$('#file-upload-start').change(function(t){e(t.target.files)}),$('#file_upload').change(function(t){e(t.target.files)}),$('#startPage').on('dragover',function(e){e.preventDefault()}),$('#startPage').on('drop',function(t){t.preventDefault(),e(t.originalEvent.dataTransfer.files)}),$('#listHolder').on('click',function(e){console.log('ss_',e);var n=e.target.id;console.log('closeId',n);var a=+n.charAt(n.length-1);console.log('index',a),console.log('3',n.substr(0,n.length-1),'closeDoc'===n.substr(0,n.length-1)),'closeDoc'===n.substr(0,n.length-1)&&t(a)}),$('#refreshCard').on('click',function(){o=[],n()}),$('#saveUploadBtn').on('click',function(){$('#listHolder').empty(),$('#saveUploadBtn').attr('disabled',!0);for(var e=0,t;e<o.length;e++)t='<div id="document'+e+'" ><div  class="row"> <div class="col-10" >'+o[e].name+'</div><div class="col-2 " ><i  class="ds-trash-2 curPointer"  ></i></div></div><hr/></div>',$('#listHolder').append(t)})},function(){$(document).ready(function(){$(window).scroll(function(){var e=4*$(window).height();$(window).scrollTop()>=e?$('#bckTop').fadeIn():$('#bckTop').fadeOut()}),$('#bckTop').on('click',function(){document.body.scrollTop=0,document.documentElement.scrollTop=0})})},function(){function e(){document.getElementById('myForm').style.display='block'}function t(){document.getElementById('myForm').style.display='none'}$(window).scroll(function(){$(window).scrollTop()+$(window).height()<$(document).height()-$('#footer').height()&&($('#chatbot').css('position','fixed'),$('#chatbot').css('bottom','30px')),$(window).scrollTop()+$(window).height()>$(document).height()-$('#footer').height()&&($('#chatbot').css('position','relative'),$('#chatbot').css('bottom','90px'))}),$('#chatbot').on('click',function(){e()}),$('#close-chatbot').on('click',function(){t()})},function(e,t,n){'use strict';n.r(t);var a=n(0),o=n(5),i=n(7),l=n(8),r=n(9),s=n(10),d=n(11),c=n(12),p=n(13),u=n(14),f=n(15),g=n(16),m=n(17),h=n(18),y=n(19),v=n(20),b=n(21),_=n(22),x=n(23),E=n(24),C=n(25),T=n(26)}]);
//# sourceMappingURL=nds-ds.js.map
}catch(e){console.log("Module 'design_system': ",e);}
try{/*
$(document).ready(function () {
    $('.nav-item-login').click(()=>$('#login-dropdown-menu').toggle());
});*/

}catch(e){console.log("Module 'design_system': ",e);}
try{$(document).ready(function () {

    let pageUrl = encodeURIComponent( document.location.href );
    let pageTitle = encodeURIComponent( $("#title_en").val() );
    let pageTitle_ar = encodeURIComponent( $("#title_ar").val() );
    let pageUniqueName = encodeURIComponent( $("#Feedback_main").data("pid") );

    if (pageUniqueName == "servicedetails" || pageUniqueName == "agencyDetails" || pageUniqueName == "eventsDetails" || pageUniqueName == "newsDetails") {
        // it reads pageName from WCM PT for each pages
        pageUniqueName = $("#Feedback_main").data("cname");
        if(document.documentElement.lang === 'ar') {
            pageTitle = $("#Feedback_main").data("cid");
        } else {
            pageTitle_ar = $("#Feedback_main").data("cid");
        }
    }

    const baseURL = "/feedback/feedbackservlet?pageUniqueName=" + pageUniqueName + "&pageURL=" + pageUrl + "&pageTitle=" + pageTitle + "&pageTitle_ar=" + pageTitle_ar;


/*
    $("input[type=checkbox].custom-control-input.feedbackoptions").on( "change", function (e) {
        if ($("input[type=checkbox]:checked.feedbackoptions").length > 2) {
            $(this).prop("checked", false);
        }
    });

    $('#y5').click(function () {
        if ($(this).is(':checked')) {
            $('#otherstexty').removeClass('d-none');
        } else {
            $('#otherstexty').addClass('d-none');
            $("#othersizevalidationy").addClass('d-none');
            $("#othervalidationy").addClass('d-none');
            $("#otherrequiredy").addClass('d-none');

        }
    });

    $('#n5').click(function () {
        if ($(this).is(':checked')) {
            $('#otherstextn').removeClass('d-none');
        } else {
            $('#otherstextn').addClass('d-none');
            $("#othersizevalidationn").addClass('d-none');
            $("#othervalidationn").addClass('d-none');
            $("#otherrequiredn").addClass('d-none');

        }
    });
*/

    $("#feedback_question").removeClass('d-none');

/* RK
    $('input[name="feedNo"]').each(function () {
        this.checked = false;
    });
    $('input[name="feedYes"]').each(function () {
        this.checked = false;
    });
*/


    $("#feedback_yes").click(function () {
        $("#feedback_question").addClass('d-none');
        $("#feedback_comments_box").removeClass('d-none');
        $("#feedbackYes").removeClass('d-none');
        $("#feedbackNo").addClass('d-none');
        $("#feedback_accknowledge").removeClass('d-flex');
        $("#feedback_accknowledge1").removeClass('d-flex');
        $("#feedback_accknowledge").addClass('d-none');
        $("#feedback_accknowledge1").addClass('d-none');
        $('input[name="feedNo"]').each(function () {
            this.checked = false;
        });
    });


    $("#feedback_yes_cancel").click(function () {
        $("#feedback_question").removeClass('d-none');
        $("#feedback_comments_box").addClass('d-none');
        $("#feedbackYes").addClass('d-none');
        $("#feedbackNo").addClass('d-none');
        $("#feedback_accknowledge").removeClass('d-flex');
        $("#feedback_accknowledge1").removeClass('d-flex');
        $("#feedback_accknowledge").addClass('d-none');
        $("#feedback_accknowledge1").addClass('d-none');
    });

    $("#feedback_yes_submit").click(function () {
        var validation = true;
        var testy = new Array();
        $("input[name='feedYes']:checked").each(function () {
            testy.push($(this).val());
        });
        console.log('#feedback_yes_submitclick | testy =', testy);

        const opt1y = (testy[0] != undefined) ? testy[0] : "";
        const opt2y = (testy[1] != undefined) ? testy[1] : "";
        const opt3y = (testy[2] != undefined) ? testy[2] : "";
        const opt4y = (testy[3] != undefined) ? testy[3] : "";

        if ($('input[name="feedYes"]:checked').length < 1) {
            $("#optionselectionyes").removeClass('d-none');
            validation = false;
/*
        } else if ($('input[name="feedYes"]:checked').length > 2) {
            $("#optionselectionyes").removeClass('d-none');
            validation = false;
*/
        } else {
            $("#optionselectionyes").addClass('d-none');
        }

        var gender = $('input[name="gender"]:checked').val();
        var commentsy = $("#otherstexty").val();
        //if ($('#y5').is(":checked")) {

/*
            if (commentsy == '') {
                $("#othersizevalidationy").addClass('d-none');
                $("#othervalidationy").addClass('d-none');
                $("#otherrequiredy").removeClass('d-none');
                $("#othersTexty").removeClass('is-invalid');
                validation = false;
            } else
*/
            if (commentsy != '' && commentsy.length > 250) {
                $("#othersizevalidationy").removeClass('d-none');
                $("#othervalidationy").addClass('d-none');
                $("#otherrequiredy").addClass('d-none');
                $("#othersTexty").addClass('is-invalid');
                validation = false;
            } else if (commentsy != '' && (commentsy.length > 0) && !((/^[A-Za-z\u0600-\u06FF .]+$/).test(commentsy))) {
                $("#othervalidationy").removeClass('d-none');
                $("#othersTexty").addClass('is-invalid');
                $("#otherrequiredy").addClass('d-none');
                $("#othersizevalidationy").addClass('d-none');
                validation = false;
            } else if (!gender || gender.length===0) {
                $("#genderselectionyes").addClass('d-flex');
                $("#genderselectionyes").removeClass('d-none');
                validation = false;
            } else {
                $("#othersizevalidationy").addClass('d-none');
                $("#othervalidationy").addClass('d-none');
                $("#otherrequiredy").addClass('d-none');
                $("#othersTexty").removeClass('is-invalid');
            }
        //}


        if (validation) {
            $("#feedback_question_div").remove();
            $("#feedback_question .answer").addClass('d-none');
            $("#feedback_comments_box").addClass('d-none');
            $("#feedbackYes").addClass('d-none');
            $("#feedbackNo").addClass('d-none');
            $("#optionselectionyes").addClass('d-none');
            $("#genderselectionyes").addClass('d-none');
            $("#genderselectionyes").removeClass('d-flex');

            saveFeedback({ feedbackType:'Y', opt1: opt1y, opt2: opt2y, opt3: opt3y, opt4: opt4y, comments: commentsy, gender });
        }
    });

    $("#feedback_no").click(function () {
        $("#feedback_question").addClass('d-none');
        $("#feedback_comments_box").removeClass('d-none');
        $("#feedbackNo").removeClass('d-none');
        $("#feedbackYes").addClass('d-none');
        $("#feedback_accknowledge").addClass('d-none');
        $("#feedback_accknowledge1").addClass('d-none');
        $('input[name="feedYes"]').each(function () {
            this.checked = false;
        });
    });


    $("#feedback_no_cancel").click(function () {
        $("#feedback_comments_box").addClass('d-none');
        $("#feedback_question").removeClass('d-none');
        $("#feedbackNo").addClass('d-none');
        $("#feedbackYes").addClass('d-none');
        $("#feedback_accknowledge").addClass('d-none');
        $("#feedback_accknowledge1").addClass('d-none');
    });


    $("#feedback_no_submit").click(function () {
        var validation = true;
        var testn = new Array();
        $("input[name='feedNo']:checked").each(function () {
            testn.push($(this).val());
        });
        console.log('#feedback_no_submit | testn =', testn);

        const opt1n = (testn[0] != undefined) ? testn[0] : "";
        const opt2n = (testn[1] != undefined) ? testn[1] : "";
        const opt3n = (testn[2] != undefined) ? testn[2] : "";
        const opt4n = (testn[3] != undefined) ? testn[3] : "";

        if ($('input[name="feedNo"]:checked').length < 1) {
            $("#optionselectionno").removeClass('d-none');
            validation = false;
/*
        } else if ($('input[name="feedNo"]:checked').length > 2) {
            $("#optionselectionno").removeClass('d-none');
            validation = false;
*/
        } else {
            $("#optionselectionno").addClass('d-none');
        }

        var gender = $('input[name="gender"]:checked').val();
        var commentsn = $("#otherstextn").val();
        //if ($('#n5').is(":checked")) {

/*
            if (commentsn == '') {
                $("#othersizevalidationn").addClass('d-none');
                $("#othervalidationn").addClass('d-none');
                $("#otherrequiredn").removeClass('d-none');
                $("#othersTextn").removeClass('is-invalid');
                validation = false;
            } else
*/
            if (commentsn != '' && commentsn.length > 250) {
                $("#othersizevalidationn").removeClass('d-none');
                $("#othervalidationn").addClass('d-none');
                $("#otherrequiredn").addClass('d-none');
                $("#othersTextn").addClass('is-invalid');
                validation = false;
            } else if (commentsn != '' && (commentsn.length > 0) && !((/^[A-Za-z\u0600-\u06FF .]+$/).test(commentsn))) {
                $("#othervalidationn").removeClass('d-none');
                $("#othersTextn").addClass('is-invalid');
                $("#otherrequiredn").addClass('d-none');
                $("#othersizevalidationn").addClass('d-none');
                validation = false;
            } else if (!gender || gender.length===0) {
                $("#genderselectionno").addClass('d-flex');
                $("#genderselectionno").removeClass('d-none');
                validation = false;
            } else {
                $("#othersizevalidationn").addClass('d-none');
                $("#othervalidationn").addClass('d-none');
                $("#otherrequiredn").addClass('d-none');
                $("#othersTextn").removeClass('is-invalid');
            }
        //}

        if (validation) {
            $("#feedback_question_div").remove();
            $("#feedback_question .answer").addClass('d-none');

            $("#feedback_comments_box").addClass('d-none');
            $("#feedbackYes").addClass('d-none');
            $("#feedbackNo").addClass('d-none');
            $("#optionselectionno").addClass('d-none');
            $("#genderselectionno").addClass('d-none');
            $("#genderselectionno").removeClass('d-flex');

            saveFeedback({ feedbackType:'N', opt1: opt1n, opt2: opt2n, opt3: opt3n, opt4: opt4n, comments: commentsn, gender });
        }
    });

    function saveFeedback({feedbackType, opt1, opt2, opt3, opt4, comments, gender}) {
        console.log('saveFeedback | ', {feedbackType, opt1, opt2, opt3, opt4, comments, gender});
        const url = baseURL + "&feedbackType=" + feedbackType + "&opt1=" + opt1 + "&opt2=" + opt2 + "&opt3=" + opt3 + "&opt4=" + opt4 + "&comments=" + comments+ "&gender=" + gender;
        console.log('saveFeedback | url =', url);

        $.ajax({
            //type: "POST", // check if security confirm is required
            url: url,
            success: function (result) {
                var response = JSON.parse(result);
                $("[id='feedbackPercentage']").html(response.percentage);
                $("[id='feedbackCount']").html(response.total);
                $("#feedback_question").removeClass('d-none');
                $("#feedback_comments_box").addClass('d-none');

                if (response.status == "success") {
                    $("#feedback_accknowledge").addClass('d-flex');
                    $("#feedback_accknowledge").removeClass('d-none');
                    $("#feedback_accknowledge1").addClass('d-none');
                } else if (response.status == "error") {
                    $("#feedback_accknowledge1").addClass('d-flex');
                    $("#feedback_accknowledge1").removeClass('d-none');
                    $("#feedback_accknowledge").addClass('d-none');
                }
            }
        });
    }

    //additional code to hide Feedback from home page only
    if (!!$("#Feedback_main")) {
       console.log('Feedback v.1.2.8 | baseURL =', baseURL);
        $.ajax({
            url: baseURL,
            success: function (result) {
                var response = JSON.parse(result);
                if (response.status == "success") {
                    $("[id='feedbackPercentage']").html(response.percentage);
                    $("[id='feedbackCount']").html(response.total);
                    if(response.submitted) {
                        $("#feedback_question_div").remove();
                        $("#feedback_question").removeClass('d-none');
                        $("#feedback_comments_box").addClass('d-none');
                        $("#feedback_accknowledge").addClass('d-none');
                        $("#feedback_accknowledge1").addClass('d-none');
                        $("#feedback_accknowledge2").removeClass('d-none');
                    }
                }
            }
        });
    }

});


}catch(e){console.log("Module 'design_system': ",e);}