/* ========================================================================
* DOM-based Routing
* Based on http://goo.gl/EUTi53 by Paul Irish
*
* Only fires on body classes that match. If a body class contains a dash,
* replace the dash with an underscore when adding it to the object below.
*
* .noConflict()
* The routing is enclosed within an anonymous function so that you can
* always reference jQuery with $, even when in .noConflict() mode.
* ======================================================================== */
(function($) {
// Use this variable to set up the common and page specific functions. If you
// rename this variable, you will also need to rename the namespace below.
var Sage = {
// All pages
common: {
init: function() {
// JavaScript to be fired on all pages
},
finalize: function() {
// JavaScript to be fired on all pages, after page specific JS is fired
// Modal functionality
$(".video-play").on("click", function(e) {
e.preventDefault();
var id = $(this).attr("href").split("v=")[1];
if (id.length > 0) {
if (document.getElementById(id) === null) {
$("body").append('
');
}
$(".reveal-overlay, .reveal-overlay .reveal.modal").css("display", "block");
} else {
window.location.href = $(this).attr("href");
}
$(".close-button").on("click", function() {
$(".reveal-overlay, .reveal-overlay .reveal.modal").css("display", "none");
$(".youtube-video")[0].contentWindow.postMessage('{"event":"command","func":"' + "pauseVideo" + '","args":""}', "*");
$(".iframe-container").children("iframe").attr("src", "");
});
});
// Accordion functionality
$(".accordion-toggle").on("click", function(e) {
e.preventDefault();
$(this).toggleClass("open").siblings(".content").slideToggle();
});
// Language switcher JS
var lang = document.querySelector(".wp-language-switcher");
if (lang) {
if (lang.length && lang.length > 0) {
lang.onchange = function() {
window.location = this.value;
};
}
}
// Cause Detail sticky footer
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 750) {
$(".floating-footer").addClass("visible");
} else {
$(".floating-footer").removeClass("visible");
}
});
$("#myModal").on("shown.bs.modal", function() {
$("#myInput").trigger("focus");
});
var myBar = document.getElementById("myBar");
function onScroll() {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
myBar.style.width = scrolled + "%";
}
if (myBar) {
window.onscroll = onScroll;
}
$(".featured-cards").slick({
dots: true,
infinite: true,
speed: 300,
slidesToShow: 1,
slidesToScroll: 1,
mobileFirst: true,
responsive: [{
breakpoint: 767,
settings: "unslick",
}, ],
});
/* Block - Carousels
-------------------------------------------------------------- */
$(".carousel__default").slick({
useTransform: true,
cssEase: "ease-in-out",
speed: 1000,
slidesToShow: 1,
slidesToScroll: 1,
arrows: true,
nextArrow: ".carousel__arrow--right",
prevArrow: ".carousel__arrow--left",
adaptiveHeight: true,
});
$(".carousel__featured-campaigns").slick({
useTransform: true,
cssEase: "ease-in-out",
speed: 1000,
slidesToShow: 3,
slidesToScroll: 1,
arrows: true,
nextArrow: ".carousel__arrow--right",
prevArrow: ".carousel__arrow--left",
responsive: [{
breakpoint: 959,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 767,
settings: {
slidesToShow: 1,
},
},
],
});
/* GoFindYou article image slider
-------------------------------------------------------------- */
$(".heroesCarousel .carousel-contain").slick({
autoplay: true,
speed: 1000,
arrows: true,
fade: true,
autoplaySpeed: 8000,
nextArrow: ".heroes-carousel-nav--next",
prevArrow: ".heroes-carousel-nav--prev",
});
/* Heroes archive carousel
-------------------------------------------------------------- */
$(".gofindyou-article__body .image-slider").slick({});
/* Block - Layout - Accordion
-------------------------------------------------------------- */
jQuery(".accordion__item-top").click(function() {
jQuery(this).parent().toggleClass("accordion__item--open");
jQuery(this).siblings(".accordion__item-bottom").slideToggle(500);
});
jQuery(".faq-question").on("click", function() {
jQuery(this).parent(".faq").toggleClass("open");
jQuery(this).siblings(".faq-answer").slideToggle(500);
});
/* Add iterating section ids to BLOCKS + Smooth scroll
-------------------------------------------------------------- */
jQuery("main .block").each(function(i) {
var navCounter = i + 1;
jQuery(this).attr("id", "section-" + navCounter);
});
/* Webinar Tags
-------------------------------------------------------------- */
if (jQuery(window).width() < 760) {
jQuery(".webinars-hub__categories").children().wrapAll("
");
jQuery(".webinars-hub__categories").append("Filter by
");
} else {
jQuery(".webinars-hub__categories").children().not(":nth-child(-n+3)").wrapAll("
");
jQuery(".webinars-hub__categories > a:nth-child(3)").after("More
");
}
var webinarCategoriesHeight = jQuery(".webinars-hub__categories").outerHeight() + 8;
jQuery(".webinars-hub__tags-dropdown").css("top", webinarCategoriesHeight);
jQuery(".webinars-hub__categories .dropdown-trigger").click(function() {
jQuery(this).siblings(".webinars-hub__tags-dropdown").toggleClass("open");
jQuery(this).toggleClass("active");
});
/* Single GoFindYou Lity scripts
-------------------------------------------------------------- */
jQuery(".single-gofindyouarticle .modal-button").on("click", function() {
var modalButtonID = jQuery(this).attr("id");
jQuery(document).on("lity:open lity:close", function(event, instance) {
jQuery(".lity").attr("class", "lity lity-opened lity-inline");
jQuery(".lity").addClass(modalButtonID);
});
});
/* Single Webinar Form
-------------------------------------------------------------- */
var formHeight = jQuery(".single-webinar__header .form-wrapper").height();
var headerHeight = jQuery(".single-webinar__header").height() + formHeight - 31;
jQuery(".single-webinar__header .form-track").css({
height: headerHeight,
});
/* Smooth-scroll button links
-------------------------------------------------------------- */
$("a.smooth-scroll.btn").click(function(event) {
$("html,body").animate({
scrollTop: $(this.hash).offset().top - 100
}, 1500);
});
/* Add aria labels on testimonial "Read More". Done to satisfy accessibility audit
-------------------------------------------------------------- */
$(window).on("load", function() {
$(".bne-testimonial-wrapper .testimonial-single").each(function(index) {
var authorName = $(this).find(".testimonial-name").text();
$(this).find(".readmore").attr("aria-label", authorName);
});
});
/* Academic Growth
-------------------------------------------------------------- */
$(".ag-toggle-student").on("click", function() {
$(".ag-toggle p").removeClass("active");
$(this).addClass("active");
$(".ag-toggled-section").removeClass("active");
$(".ag-student-blocks").addClass("active");
});
$(".ag-toggle-teacher").on("click", function() {
$(".ag-toggle p").removeClass("active");
$(this).addClass("active");
$(".ag-toggled-section").removeClass("active");
$(".ag-teacher-blocks").addClass("active");
});
/* Remove /c/ from "Home" breadcrumb
-------------------------------------------------------------- */
var homeUrl = jQuery("#breadcrumbs .breadcrumb-item:first-child a").attr("href") || "";
// Use a regular expression to replace both "/c/" and "/c" (with or without trailing slash)
var stringReplace = homeUrl.replace(/\/c\/?|\/c\/?/g, "");
jQuery("#breadcrumbs .breadcrumb-item:first-child a").attr("href", stringReplace);
/* Redirect Search Button to new Search Results Page /s?q=
-------------------------------------------------------------- */
$(".js-search-nav-bar-button").on("click", function(event) {
event.preventDefault();
window.location.replace("https://www.gofundme.com/s?q=");
});
},
},
};
// The routing fires all common scripts, followed by the page specific scripts.
// Add additional events for more control over timing e.g. a finalize event
var UTIL = {
fire: function(func, funcname, args) {
var fire;
var namespace = Sage;
funcname = funcname === undefined ? "init" : funcname;
fire = func !== "";
fire = fire && namespace[func];
fire = fire && typeof namespace[func][funcname] === "function";
if (fire) {
namespace[func][funcname](args);
}
},
loadEvents: function() {
// Fire common init JS
UTIL.fire("common");
// Fire page-specific init JS, and then finalize JS
$.each(document.body.className.replace(/-/g, "_").split(/\s+/), function(i, classnm) {
UTIL.fire(classnm);
UTIL.fire(classnm, "finalize");
});
// Fire common finalize JS
UTIL.fire("common", "finalize");
},
};
// Load Events
$(document).ready(UTIL.loadEvents);
})(jQuery); // Fully reference jQuery after this point.
// This corrects a chrome bug where anchor tags were not working if coming from a different page
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
if (window.location.hash && isChrome) {
setTimeout(function() {
var hash = window.location.hash;
window.location.hash = "";
window.location.hash = hash;
}, 300);
}
var $ = jQuery.noConflict();
//# sourceMappingURL=main-min.js.map
;
(()=>{var a0=Object.create;var Gf=Object.defineProperty;var l0=Object.getOwnPropertyDescriptor;var u0=Object.getOwnPropertyNames;var c0=Object.getPrototypeOf,f0=Object.prototype.hasOwnProperty;var Vf=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var d0=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of u0(e))!f0.call(s,r)&&r!==t&&Gf(s,r,{get:()=>e[r],enumerable:!(i=l0(e,r))||i.enumerable});return s};var Uf=(s,e,t)=>(t=s!=null?a0(c0(s)):{},d0(e||!s||!s.__esModule?Gf(t,"default",{value:s,enumerable:!0}):t,s));var $a=Vf((Kf,Ba)=>{(function(s,e){"use strict";typeof Ba=="object"&&typeof Ba.exports=="object"?Ba.exports=s.document?e(s,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(s)})(typeof window<"u"?window:Kf,function(s,e){"use strict";var t=[],i=Object.getPrototypeOf,r=t.slice,n=t.flat?function(c){return t.flat.call(c)}:function(c){return t.concat.apply([],c)},a=t.push,o=t.indexOf,l={},u=l.toString,d=l.hasOwnProperty,p=d.toString,v=p.call(Object),f={},m=function(h){return typeof h=="function"&&typeof h.nodeType!="number"&&typeof h.item!="function"},g=function(h){return h!=null&&h===h.window},w=s.document,E={type:!0,src:!0,nonce:!0,noModule:!0};function b(c,h,_){_=_||w;var x,T,S=_.createElement("script");if(S.text=c,h)for(x in E)T=h[x]||h.getAttribute&&h.getAttribute(x),T&&S.setAttribute(x,T);_.head.appendChild(S).parentNode.removeChild(S)}function D(c){return c==null?c+"":typeof c=="object"||typeof c=="function"?l[u.call(c)]||"object":typeof c}var C="3.7.1",P=/HTML$/i,y=function(c,h){return new y.fn.init(c,h)};y.fn=y.prototype={jquery:C,constructor:y,length:0,toArray:function(){return r.call(this)},get:function(c){return c==null?r.call(this):c<0?this[c+this.length]:this[c]},pushStack:function(c){var h=y.merge(this.constructor(),c);return h.prevObject=this,h},each:function(c){return y.each(this,c)},map:function(c){return this.pushStack(y.map(this,function(h,_){return c.call(h,_,h)}))},slice:function(){return this.pushStack(r.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(y.grep(this,function(c,h){return(h+1)%2}))},odd:function(){return this.pushStack(y.grep(this,function(c,h){return h%2}))},eq:function(c){var h=this.length,_=+c+(c<0?h:0);return this.pushStack(_>=0&&_0&&h-1 in c}function F(c,h){return c.nodeName&&c.nodeName.toLowerCase()===h.toLowerCase()}var O=t.pop,B=t.sort,W=t.splice,M="[\\x20\\t\\r\\n\\f]",L=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g");y.contains=function(c,h){var _=h&&h.parentNode;return c===_||!!(_&&_.nodeType===1&&(c.contains?c.contains(_):c.compareDocumentPosition&&c.compareDocumentPosition(_)&16))};var R=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function X(c,h){return h?c==="\0"?"\uFFFD":c.slice(0,-1)+"\\"+c.charCodeAt(c.length-1).toString(16)+" ":"\\"+c}y.escapeSelector=function(c){return(c+"").replace(R,X)};var Y=w,I=a;(function(){var c,h,_,x,T,S=I,A,q,H,Q,le,fe=y.expando,re=0,ve=0,He=La(),ft=La(),Ue=La(),mi=La(),si=function(N,K){return N===K&&(T=!0),0},Nr="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",zr="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",st="\\["+M+"*("+zr+")(?:"+M+"*([*^$|!~]?=)"+M+`*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(`+zr+"))|)"+M+"*\\]",os=":("+zr+`)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|`+st+")*)|.*)\\)|)",pt=new RegExp(M+"+","g"),$t=new RegExp("^"+M+"*,"+M+"*"),Co=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),lu=new RegExp(M+"|>"),Hr=new RegExp(os),Ao=new RegExp("^"+zr+"$"),qr={ID:new RegExp("^#("+zr+")"),CLASS:new RegExp("^\\.("+zr+")"),TAG:new RegExp("^("+zr+"|[*])"),ATTR:new RegExp("^"+st),PSEUDO:new RegExp("^"+os),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+Nr+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Cn=/^(?:input|select|textarea|button)$/i,An=/^h\d$/i,gr=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,uu=/[+~]/,sn=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),on=function(N,K){var ie="0x"+N.slice(1)-65536;return K||(ie<0?String.fromCharCode(ie+65536):String.fromCharCode(ie>>10|55296,ie&1023|56320))},e0=function(){Mn()},t0=Ia(function(N){return N.disabled===!0&&F(N,"fieldset")},{dir:"parentNode",next:"legend"});function i0(){try{return A.activeElement}catch{}}try{S.apply(t=r.call(Y.childNodes),Y.childNodes),t[Y.childNodes.length].nodeType}catch{S={apply:function(K,ie){I.apply(K,r.call(ie))},call:function(K){I.apply(K,r.call(arguments,1))}}}function _t(N,K,ie,oe){var ce,we,Ee,Me,Te,it,Be,qe=K&&K.ownerDocument,rt=K?K.nodeType:9;if(ie=ie||[],typeof N!="string"||!N||rt!==1&&rt!==9&&rt!==11)return ie;if(!oe&&(Mn(K),K=K||A,H)){if(rt!==11&&(Te=gr.exec(N)))if(ce=Te[1]){if(rt===9)if(Ee=K.getElementById(ce)){if(Ee.id===ce)return S.call(ie,Ee),ie}else return ie;else if(qe&&(Ee=qe.getElementById(ce))&&_t.contains(K,Ee)&&Ee.id===ce)return S.call(ie,Ee),ie}else{if(Te[2])return S.apply(ie,K.getElementsByTagName(N)),ie;if((ce=Te[3])&&K.getElementsByClassName)return S.apply(ie,K.getElementsByClassName(ce)),ie}if(!mi[N+" "]&&(!Q||!Q.test(N))){if(Be=N,qe=K,rt===1&&(lu.test(N)||Co.test(N))){for(qe=uu.test(N)&&cu(K.parentNode)||K,(qe!=K||!f.scope)&&((Me=K.getAttribute("id"))?Me=y.escapeSelector(Me):K.setAttribute("id",Me=fe)),it=Mo(N),we=it.length;we--;)it[we]=(Me?"#"+Me:":scope")+" "+Oa(it[we]);Be=it.join(",")}try{return S.apply(ie,qe.querySelectorAll(Be)),ie}catch{mi(N,!0)}finally{Me===fe&&K.removeAttribute("id")}}}return jf(N.replace(L,"$1"),K,ie,oe)}function La(){var N=[];function K(ie,oe){return N.push(ie+" ")>h.cacheLength&&delete K[N.shift()],K[ie+" "]=oe}return K}function Pr(N){return N[fe]=!0,N}function $s(N){var K=A.createElement("fieldset");try{return!!N(K)}catch{return!1}finally{K.parentNode&&K.parentNode.removeChild(K),K=null}}function r0(N){return function(K){return F(K,"input")&&K.type===N}}function n0(N){return function(K){return(F(K,"input")||F(K,"button"))&&K.type===N}}function Yf(N){return function(K){return"form"in K?K.parentNode&&K.disabled===!1?"label"in K?"label"in K.parentNode?K.parentNode.disabled===N:K.disabled===N:K.isDisabled===N||K.isDisabled!==!N&&t0(K)===N:K.disabled===N:"label"in K?K.disabled===N:!1}}function as(N){return Pr(function(K){return K=+K,Pr(function(ie,oe){for(var ce,we=N([],ie.length,K),Ee=we.length;Ee--;)ie[ce=we[Ee]]&&(ie[ce]=!(oe[ce]=ie[ce]))})})}function cu(N){return N&&typeof N.getElementsByTagName<"u"&&N}function Mn(N){var K,ie=N?N.ownerDocument||N:Y;return ie==A||ie.nodeType!==9||!ie.documentElement||(A=ie,q=A.documentElement,H=!y.isXMLDoc(A),le=q.matches||q.webkitMatchesSelector||q.msMatchesSelector,q.msMatchesSelector&&Y!=A&&(K=A.defaultView)&&K.top!==K&&K.addEventListener("unload",e0),f.getById=$s(function(oe){return q.appendChild(oe).id=y.expando,!A.getElementsByName||!A.getElementsByName(y.expando).length}),f.disconnectedMatch=$s(function(oe){return le.call(oe,"*")}),f.scope=$s(function(){return A.querySelectorAll(":scope")}),f.cssHas=$s(function(){try{return A.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),f.getById?(h.filter.ID=function(oe){var ce=oe.replace(sn,on);return function(we){return we.getAttribute("id")===ce}},h.find.ID=function(oe,ce){if(typeof ce.getElementById<"u"&&H){var we=ce.getElementById(oe);return we?[we]:[]}}):(h.filter.ID=function(oe){var ce=oe.replace(sn,on);return function(we){var Ee=typeof we.getAttributeNode<"u"&&we.getAttributeNode("id");return Ee&&Ee.value===ce}},h.find.ID=function(oe,ce){if(typeof ce.getElementById<"u"&&H){var we,Ee,Me,Te=ce.getElementById(oe);if(Te){if(we=Te.getAttributeNode("id"),we&&we.value===oe)return[Te];for(Me=ce.getElementsByName(oe),Ee=0;Te=Me[Ee++];)if(we=Te.getAttributeNode("id"),we&&we.value===oe)return[Te]}return[]}}),h.find.TAG=function(oe,ce){return typeof ce.getElementsByTagName<"u"?ce.getElementsByTagName(oe):ce.querySelectorAll(oe)},h.find.CLASS=function(oe,ce){if(typeof ce.getElementsByClassName<"u"&&H)return ce.getElementsByClassName(oe)},Q=[],$s(function(oe){var ce;q.appendChild(oe).innerHTML=" ",oe.querySelectorAll("[selected]").length||Q.push("\\["+M+"*(?:value|"+Nr+")"),oe.querySelectorAll("[id~="+fe+"-]").length||Q.push("~="),oe.querySelectorAll("a#"+fe+"+*").length||Q.push(".#.+[+~]"),oe.querySelectorAll(":checked").length||Q.push(":checked"),ce=A.createElement("input"),ce.setAttribute("type","hidden"),oe.appendChild(ce).setAttribute("name","D"),q.appendChild(oe).disabled=!0,oe.querySelectorAll(":disabled").length!==2&&Q.push(":enabled",":disabled"),ce=A.createElement("input"),ce.setAttribute("name",""),oe.appendChild(ce),oe.querySelectorAll("[name='']").length||Q.push("\\["+M+"*name"+M+"*="+M+`*(?:''|"")`)}),f.cssHas||Q.push(":has"),Q=Q.length&&new RegExp(Q.join("|")),si=function(oe,ce){if(oe===ce)return T=!0,0;var we=!oe.compareDocumentPosition-!ce.compareDocumentPosition;return we||(we=(oe.ownerDocument||oe)==(ce.ownerDocument||ce)?oe.compareDocumentPosition(ce):1,we&1||!f.sortDetached&&ce.compareDocumentPosition(oe)===we?oe===A||oe.ownerDocument==Y&&_t.contains(Y,oe)?-1:ce===A||ce.ownerDocument==Y&&_t.contains(Y,ce)?1:x?o.call(x,oe)-o.call(x,ce):0:we&4?-1:1)}),A}_t.matches=function(N,K){return _t(N,null,null,K)},_t.matchesSelector=function(N,K){if(Mn(N),H&&!mi[K+" "]&&(!Q||!Q.test(K)))try{var ie=le.call(N,K);if(ie||f.disconnectedMatch||N.document&&N.document.nodeType!==11)return ie}catch{mi(K,!0)}return _t(K,A,null,[N]).length>0},_t.contains=function(N,K){return(N.ownerDocument||N)!=A&&Mn(N),y.contains(N,K)},_t.attr=function(N,K){(N.ownerDocument||N)!=A&&Mn(N);var ie=h.attrHandle[K.toLowerCase()],oe=ie&&d.call(h.attrHandle,K.toLowerCase())?ie(N,K,!H):void 0;return oe!==void 0?oe:N.getAttribute(K)},_t.error=function(N){throw new Error("Syntax error, unrecognized expression: "+N)},y.uniqueSort=function(N){var K,ie=[],oe=0,ce=0;if(T=!f.sortStable,x=!f.sortStable&&r.call(N,0),B.call(N,si),T){for(;K=N[ce++];)K===N[ce]&&(oe=ie.push(ce));for(;oe--;)W.call(N,ie[oe],1)}return x=null,N},y.fn.uniqueSort=function(){return this.pushStack(y.uniqueSort(r.apply(this)))},h=y.expr={cacheLength:50,createPseudo:Pr,match:qr,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(N){return N[1]=N[1].replace(sn,on),N[3]=(N[3]||N[4]||N[5]||"").replace(sn,on),N[2]==="~="&&(N[3]=" "+N[3]+" "),N.slice(0,4)},CHILD:function(N){return N[1]=N[1].toLowerCase(),N[1].slice(0,3)==="nth"?(N[3]||_t.error(N[0]),N[4]=+(N[4]?N[5]+(N[6]||1):2*(N[3]==="even"||N[3]==="odd")),N[5]=+(N[7]+N[8]||N[3]==="odd")):N[3]&&_t.error(N[0]),N},PSEUDO:function(N){var K,ie=!N[6]&&N[2];return qr.CHILD.test(N[0])?null:(N[3]?N[2]=N[4]||N[5]||"":ie&&Hr.test(ie)&&(K=Mo(ie,!0))&&(K=ie.indexOf(")",ie.length-K)-ie.length)&&(N[0]=N[0].slice(0,K),N[2]=ie.slice(0,K)),N.slice(0,3))}},filter:{TAG:function(N){var K=N.replace(sn,on).toLowerCase();return N==="*"?function(){return!0}:function(ie){return F(ie,K)}},CLASS:function(N){var K=He[N+" "];return K||(K=new RegExp("(^|"+M+")"+N+"("+M+"|$)"))&&He(N,function(ie){return K.test(typeof ie.className=="string"&&ie.className||typeof ie.getAttribute<"u"&&ie.getAttribute("class")||"")})},ATTR:function(N,K,ie){return function(oe){var ce=_t.attr(oe,N);return ce==null?K==="!=":K?(ce+="",K==="="?ce===ie:K==="!="?ce!==ie:K==="^="?ie&&ce.indexOf(ie)===0:K==="*="?ie&&ce.indexOf(ie)>-1:K==="$="?ie&&ce.slice(-ie.length)===ie:K==="~="?(" "+ce.replace(pt," ")+" ").indexOf(ie)>-1:K==="|="?ce===ie||ce.slice(0,ie.length+1)===ie+"-":!1):!0}},CHILD:function(N,K,ie,oe,ce){var we=N.slice(0,3)!=="nth",Ee=N.slice(-4)!=="last",Me=K==="of-type";return oe===1&&ce===0?function(Te){return!!Te.parentNode}:function(Te,it,Be){var qe,rt,Ie,St,ji,Ei=we!==Ee?"nextSibling":"previousSibling",mr=Te.parentNode,Xr=Me&&Te.nodeName.toLowerCase(),Ns=!Be&&!Me,ki=!1;if(mr){if(we){for(;Ei;){for(Ie=Te;Ie=Ie[Ei];)if(Me?F(Ie,Xr):Ie.nodeType===1)return!1;ji=Ei=N==="only"&&!ji&&"nextSibling"}return!0}if(ji=[Ee?mr.firstChild:mr.lastChild],Ee&&Ns){for(rt=mr[fe]||(mr[fe]={}),qe=rt[N]||[],St=qe[0]===re&&qe[1],ki=St&&qe[2],Ie=St&&mr.childNodes[St];Ie=++St&&Ie&&Ie[Ei]||(ki=St=0)||ji.pop();)if(Ie.nodeType===1&&++ki&&Ie===Te){rt[N]=[re,St,ki];break}}else if(Ns&&(rt=Te[fe]||(Te[fe]={}),qe=rt[N]||[],St=qe[0]===re&&qe[1],ki=St),ki===!1)for(;(Ie=++St&&Ie&&Ie[Ei]||(ki=St=0)||ji.pop())&&!((Me?F(Ie,Xr):Ie.nodeType===1)&&++ki&&(Ns&&(rt=Ie[fe]||(Ie[fe]={}),rt[N]=[re,ki]),Ie===Te)););return ki-=ce,ki===oe||ki%oe===0&&ki/oe>=0}}},PSEUDO:function(N,K){var ie,oe=h.pseudos[N]||h.setFilters[N.toLowerCase()]||_t.error("unsupported pseudo: "+N);return oe[fe]?oe(K):oe.length>1?(ie=[N,N,"",K],h.setFilters.hasOwnProperty(N.toLowerCase())?Pr(function(ce,we){for(var Ee,Me=oe(ce,K),Te=Me.length;Te--;)Ee=o.call(ce,Me[Te]),ce[Ee]=!(we[Ee]=Me[Te])}):function(ce){return oe(ce,0,ie)}):oe}},pseudos:{not:Pr(function(N){var K=[],ie=[],oe=hu(N.replace(L,"$1"));return oe[fe]?Pr(function(ce,we,Ee,Me){for(var Te,it=oe(ce,null,Me,[]),Be=ce.length;Be--;)(Te=it[Be])&&(ce[Be]=!(we[Be]=Te))}):function(ce,we,Ee){return K[0]=ce,oe(K,null,Ee,ie),K[0]=null,!ie.pop()}}),has:Pr(function(N){return function(K){return _t(N,K).length>0}}),contains:Pr(function(N){return N=N.replace(sn,on),function(K){return(K.textContent||y.text(K)).indexOf(N)>-1}}),lang:Pr(function(N){return Ao.test(N||"")||_t.error("unsupported lang: "+N),N=N.replace(sn,on).toLowerCase(),function(K){var ie;do if(ie=H?K.lang:K.getAttribute("xml:lang")||K.getAttribute("lang"))return ie=ie.toLowerCase(),ie===N||ie.indexOf(N+"-")===0;while((K=K.parentNode)&&K.nodeType===1);return!1}}),target:function(N){var K=s.location&&s.location.hash;return K&&K.slice(1)===N.id},root:function(N){return N===q},focus:function(N){return N===i0()&&A.hasFocus()&&!!(N.type||N.href||~N.tabIndex)},enabled:Yf(!1),disabled:Yf(!0),checked:function(N){return F(N,"input")&&!!N.checked||F(N,"option")&&!!N.selected},selected:function(N){return N.parentNode&&N.parentNode.selectedIndex,N.selected===!0},empty:function(N){for(N=N.firstChild;N;N=N.nextSibling)if(N.nodeType<6)return!1;return!0},parent:function(N){return!h.pseudos.empty(N)},header:function(N){return An.test(N.nodeName)},input:function(N){return Cn.test(N.nodeName)},button:function(N){return F(N,"input")&&N.type==="button"||F(N,"button")},text:function(N){var K;return F(N,"input")&&N.type==="text"&&((K=N.getAttribute("type"))==null||K.toLowerCase()==="text")},first:as(function(){return[0]}),last:as(function(N,K){return[K-1]}),eq:as(function(N,K,ie){return[ie<0?ie+K:ie]}),even:as(function(N,K){for(var ie=0;ieK?oe=K:oe=ie;--oe>=0;)N.push(oe);return N}),gt:as(function(N,K,ie){for(var oe=ie<0?ie+K:ie;++oe1?function(K,ie,oe){for(var ce=N.length;ce--;)if(!N[ce](K,ie,oe))return!1;return!0}:N[0]}function s0(N,K,ie){for(var oe=0,ce=K.length;oe-1&&(Ee[Be]=!(Me[Be]=rt))}}else Ie=Ra(Ie===Me?Ie.splice(Ei,Ie.length):Ie),ce?ce(null,Me,Ie,it):S.apply(Me,Ie)})}function pu(N){for(var K,ie,oe,ce=N.length,we=h.relative[N[0].type],Ee=we||h.relative[" "],Me=we?1:0,Te=Ia(function(qe){return qe===K},Ee,!0),it=Ia(function(qe){return o.call(K,qe)>-1},Ee,!0),Be=[function(qe,rt,Ie){var St=!we&&(Ie||rt!=_)||((K=rt).nodeType?Te(qe,rt,Ie):it(qe,rt,Ie));return K=null,St}];Me1&&fu(Be),Me>1&&Oa(N.slice(0,Me-1).concat({value:N[Me-2].type===" "?"*":""})).replace(L,"$1"),ie,Me0,oe=N.length>0,ce=function(we,Ee,Me,Te,it){var Be,qe,rt,Ie=0,St="0",ji=we&&[],Ei=[],mr=_,Xr=we||oe&&h.find.TAG("*",it),Ns=re+=mr==null?1:Math.random()||.1,ki=Xr.length;for(it&&(_=Ee==A||Ee||it);St!==ki&&(Be=Xr[St])!=null;St++){if(oe&&Be){for(qe=0,!Ee&&Be.ownerDocument!=A&&(Mn(Be),Me=!H);rt=N[qe++];)if(rt(Be,Ee||A,Me)){S.call(Te,Be);break}it&&(re=Ns)}ie&&((Be=!rt&&Be)&&Ie--,we&&ji.push(Be))}if(Ie+=St,ie&&St!==Ie){for(qe=0;rt=K[qe++];)rt(ji,Ei,Ee,Me);if(we){if(Ie>0)for(;St--;)ji[St]||Ei[St]||(Ei[St]=O.call(Te));Ei=Ra(Ei)}S.apply(Te,Ei),it&&!we&&Ei.length>0&&Ie+K.length>1&&y.uniqueSort(Te)}return it&&(re=Ns,_=mr),ji};return ie?Pr(ce):ce}function hu(N,K){var ie,oe=[],ce=[],we=Ue[N+" "];if(!we){for(K||(K=Mo(N)),ie=K.length;ie--;)we=pu(K[ie]),we[fe]?oe.push(we):ce.push(we);we=Ue(N,o0(ce,oe)),we.selector=N}return we}function jf(N,K,ie,oe){var ce,we,Ee,Me,Te,it=typeof N=="function"&&N,Be=!oe&&Mo(N=it.selector||N);if(ie=ie||[],Be.length===1){if(we=Be[0]=Be[0].slice(0),we.length>2&&(Ee=we[0]).type==="ID"&&K.nodeType===9&&H&&h.relative[we[1].type]){if(K=(h.find.ID(Ee.matches[0].replace(sn,on),K)||[])[0],K)it&&(K=K.parentNode);else return ie;N=N.slice(we.shift().value.length)}for(ce=qr.needsContext.test(N)?0:we.length;ce--&&(Ee=we[ce],!h.relative[Me=Ee.type]);)if((Te=h.find[Me])&&(oe=Te(Ee.matches[0].replace(sn,on),uu.test(we[0].type)&&cu(K.parentNode)||K))){if(we.splice(ce,1),N=oe.length&&Oa(we),!N)return S.apply(ie,oe),ie;break}}return(it||hu(N,Be))(oe,K,!H,ie,!K||uu.test(N)&&cu(K.parentNode)||K),ie}f.sortStable=fe.split("").sort(si).join("")===fe,Mn(),f.sortDetached=$s(function(N){return N.compareDocumentPosition(A.createElement("fieldset"))&1}),y.find=_t,y.expr[":"]=y.expr.pseudos,y.unique=y.uniqueSort,_t.compile=hu,_t.select=jf,_t.setDocument=Mn,_t.tokenize=Mo,_t.escape=y.escapeSelector,_t.getText=y.text,_t.isXML=y.isXMLDoc,_t.selectors=y.expr,_t.support=y.support,_t.uniqueSort=y.uniqueSort})();var G=function(c,h,_){for(var x=[],T=_!==void 0;(c=c[h])&&c.nodeType!==9;)if(c.nodeType===1){if(T&&y(c).is(_))break;x.push(c)}return x},j=function(c,h){for(var _=[];c;c=c.nextSibling)c.nodeType===1&&c!==h&&_.push(c);return _},z=y.expr.match.needsContext,V=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function ue(c,h,_){return m(h)?y.grep(c,function(x,T){return!!h.call(x,T,x)!==_}):h.nodeType?y.grep(c,function(x){return x===h!==_}):typeof h!="string"?y.grep(c,function(x){return o.call(h,x)>-1!==_}):y.filter(h,c,_)}y.filter=function(c,h,_){var x=h[0];return _&&(c=":not("+c+")"),h.length===1&&x.nodeType===1?y.find.matchesSelector(x,c)?[x]:[]:y.find.matches(c,y.grep(h,function(T){return T.nodeType===1}))},y.fn.extend({find:function(c){var h,_,x=this.length,T=this;if(typeof c!="string")return this.pushStack(y(c).filter(function(){for(h=0;h1?y.uniqueSort(_):_},filter:function(c){return this.pushStack(ue(this,c||[],!1))},not:function(c){return this.pushStack(ue(this,c||[],!0))},is:function(c){return!!ue(this,typeof c=="string"&&z.test(c)?y(c):c||[],!1).length}});var me,he=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,J=y.fn.init=function(c,h,_){var x,T;if(!c)return this;if(_=_||me,typeof c=="string")if(c[0]==="<"&&c[c.length-1]===">"&&c.length>=3?x=[null,c,null]:x=he.exec(c),x&&(x[1]||!h))if(x[1]){if(h=h instanceof y?h[0]:h,y.merge(this,y.parseHTML(x[1],h&&h.nodeType?h.ownerDocument||h:w,!0)),V.test(x[1])&&y.isPlainObject(h))for(x in h)m(this[x])?this[x](h[x]):this.attr(x,h[x]);return this}else return T=w.getElementById(x[2]),T&&(this[0]=T,this.length=1),this;else return!h||h.jquery?(h||_).find(c):this.constructor(h).find(c);else{if(c.nodeType)return this[0]=c,this.length=1,this;if(m(c))return _.ready!==void 0?_.ready(c):c(y)}return y.makeArray(c,this)};J.prototype=y.fn,me=y(w);var ee=/^(?:parents|prev(?:Until|All))/,ae={children:!0,contents:!0,next:!0,prev:!0};y.fn.extend({has:function(c){var h=y(c,this),_=h.length;return this.filter(function(){for(var x=0;x<_;x++)if(y.contains(this,h[x]))return!0})},closest:function(c,h){var _,x=0,T=this.length,S=[],A=typeof c!="string"&&y(c);if(!z.test(c)){for(;x-1:_.nodeType===1&&y.find.matchesSelector(_,c))){S.push(_);break}}return this.pushStack(S.length>1?y.uniqueSort(S):S)},index:function(c){return c?typeof c=="string"?o.call(y(c),this[0]):o.call(this,c.jquery?c[0]:c):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(c,h){return this.pushStack(y.uniqueSort(y.merge(this.get(),y(c,h))))},addBack:function(c){return this.add(c==null?this.prevObject:this.prevObject.filter(c))}});function ye(c,h){for(;(c=c[h])&&c.nodeType!==1;);return c}y.each({parent:function(c){var h=c.parentNode;return h&&h.nodeType!==11?h:null},parents:function(c){return G(c,"parentNode")},parentsUntil:function(c,h,_){return G(c,"parentNode",_)},next:function(c){return ye(c,"nextSibling")},prev:function(c){return ye(c,"previousSibling")},nextAll:function(c){return G(c,"nextSibling")},prevAll:function(c){return G(c,"previousSibling")},nextUntil:function(c,h,_){return G(c,"nextSibling",_)},prevUntil:function(c,h,_){return G(c,"previousSibling",_)},siblings:function(c){return j((c.parentNode||{}).firstChild,c)},children:function(c){return j(c.firstChild)},contents:function(c){return c.contentDocument!=null&&i(c.contentDocument)?c.contentDocument:(F(c,"template")&&(c=c.content||c),y.merge([],c.childNodes))}},function(c,h){y.fn[c]=function(_,x){var T=y.map(this,h,_);return c.slice(-5)!=="Until"&&(x=_),x&&typeof x=="string"&&(T=y.filter(x,T)),this.length>1&&(ae[c]||y.uniqueSort(T),ee.test(c)&&T.reverse()),this.pushStack(T)}});var Oe=/[^\x20\t\r\n\f]+/g;function Xe(c){var h={};return y.each(c.match(Oe)||[],function(_,x){h[x]=!0}),h}y.Callbacks=function(c){c=typeof c=="string"?Xe(c):y.extend({},c);var h,_,x,T,S=[],A=[],q=-1,H=function(){for(T=T||c.once,x=h=!0;A.length;q=-1)for(_=A.shift();++q-1;)S.splice(re,1),re<=q&&q--}),this},has:function(le){return le?y.inArray(le,S)>-1:S.length>0},empty:function(){return S&&(S=[]),this},disable:function(){return T=A=[],S=_="",this},disabled:function(){return!S},lock:function(){return T=A=[],!_&&!h&&(S=_=""),this},locked:function(){return!!T},fireWith:function(le,fe){return T||(fe=fe||[],fe=[le,fe.slice?fe.slice():fe],A.push(fe),h||H()),this},fire:function(){return Q.fireWith(this,arguments),this},fired:function(){return!!x}};return Q};function We(c){return c}function tt(c){throw c}function Re(c,h,_,x){var T;try{c&&m(T=c.promise)?T.call(c).done(h).fail(_):c&&m(T=c.then)?T.call(c,h,_):h.apply(void 0,[c].slice(x))}catch(S){_.apply(void 0,[S])}}y.extend({Deferred:function(c){var h=[["notify","progress",y.Callbacks("memory"),y.Callbacks("memory"),2],["resolve","done",y.Callbacks("once memory"),y.Callbacks("once memory"),0,"resolved"],["reject","fail",y.Callbacks("once memory"),y.Callbacks("once memory"),1,"rejected"]],_="pending",x={state:function(){return _},always:function(){return T.done(arguments).fail(arguments),this},catch:function(S){return x.then(null,S)},pipe:function(){var S=arguments;return y.Deferred(function(A){y.each(h,function(q,H){var Q=m(S[H[4]])&&S[H[4]];T[H[1]](function(){var le=Q&&Q.apply(this,arguments);le&&m(le.promise)?le.promise().progress(A.notify).done(A.resolve).fail(A.reject):A[H[0]+"With"](this,Q?[le]:arguments)})}),S=null}).promise()},then:function(S,A,q){var H=0;function Q(le,fe,re,ve){return function(){var He=this,ft=arguments,Ue=function(){var si,Nr;if(!(le=H&&(re!==tt&&(He=void 0,ft=[si]),fe.rejectWith(He,ft))}};le?mi():(y.Deferred.getErrorHook?mi.error=y.Deferred.getErrorHook():y.Deferred.getStackHook&&(mi.error=y.Deferred.getStackHook()),s.setTimeout(mi))}}return y.Deferred(function(le){h[0][3].add(Q(0,le,m(q)?q:We,le.notifyWith)),h[1][3].add(Q(0,le,m(S)?S:We)),h[2][3].add(Q(0,le,m(A)?A:tt))}).promise()},promise:function(S){return S!=null?y.extend(S,x):x}},T={};return y.each(h,function(S,A){var q=A[2],H=A[5];x[A[1]]=q.add,H&&q.add(function(){_=H},h[3-S][2].disable,h[3-S][3].disable,h[0][2].lock,h[0][3].lock),q.add(A[3].fire),T[A[0]]=function(){return T[A[0]+"With"](this===T?void 0:this,arguments),this},T[A[0]+"With"]=q.fireWith}),x.promise(T),c&&c.call(T,T),T},when:function(c){var h=arguments.length,_=h,x=Array(_),T=r.call(arguments),S=y.Deferred(),A=function(q){return function(H){x[q]=this,T[q]=arguments.length>1?r.call(arguments):H,--h||S.resolveWith(x,T)}};if(h<=1&&(Re(c,S.done(A(_)).resolve,S.reject,!h),S.state()==="pending"||m(T[_]&&T[_].then)))return S.then();for(;_--;)Re(T[_],A(_),S.reject);return S.promise()}});var Pe=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;y.Deferred.exceptionHook=function(c,h){s.console&&s.console.warn&&c&&Pe.test(c.name)&&s.console.warn("jQuery.Deferred exception: "+c.message,c.stack,h)},y.readyException=function(c){s.setTimeout(function(){throw c})};var Ae=y.Deferred();y.fn.ready=function(c){return Ae.then(c).catch(function(h){y.readyException(h)}),this},y.extend({isReady:!1,readyWait:1,ready:function(c){(c===!0?--y.readyWait:y.isReady)||(y.isReady=!0,!(c!==!0&&--y.readyWait>0)&&Ae.resolveWith(w,[y]))}}),y.ready.then=Ae.then;function wt(){w.removeEventListener("DOMContentLoaded",wt),s.removeEventListener("load",wt),y.ready()}w.readyState==="complete"||w.readyState!=="loading"&&!w.documentElement.doScroll?s.setTimeout(y.ready):(w.addEventListener("DOMContentLoaded",wt),s.addEventListener("load",wt));var te=function(c,h,_,x,T,S,A){var q=0,H=c.length,Q=_==null;if(D(_)==="object"){T=!0;for(q in _)te(c,h,q,_[q],!0,S,A)}else if(x!==void 0&&(T=!0,m(x)||(A=!0),Q&&(A?(h.call(c,x),h=null):(Q=h,h=function(le,fe,re){return Q.call(y(le),re)})),h))for(;q1,null,!0)},removeData:function(c){return this.each(function(){Ge.remove(this,c)})}}),y.extend({queue:function(c,h,_){var x;if(c)return h=(h||"fx")+"queue",x=be.get(c,h),_&&(!x||Array.isArray(_)?x=be.access(c,h,y.makeArray(_)):x.push(_)),x||[]},dequeue:function(c,h){h=h||"fx";var _=y.queue(c,h),x=_.length,T=_.shift(),S=y._queueHooks(c,h),A=function(){y.dequeue(c,h)};T==="inprogress"&&(T=_.shift(),x--),T&&(h==="fx"&&_.unshift("inprogress"),delete S.stop,T.call(c,A,S)),!x&&S&&S.empty.fire()},_queueHooks:function(c,h){var _=h+"queueHooks";return be.get(c,_)||be.access(c,_,{empty:y.Callbacks("once memory").add(function(){be.remove(c,[h+"queue",_])})})}}),y.fn.extend({queue:function(c,h){var _=2;return typeof c!="string"&&(h=c,c="fx",_--),arguments.length<_?y.queue(this[0],c):h===void 0?this:this.each(function(){var x=y.queue(this,c,h);y._queueHooks(this,c),c==="fx"&&x[0]!=="inprogress"&&y.dequeue(this,c)})},dequeue:function(c){return this.each(function(){y.dequeue(this,c)})},clearQueue:function(c){return this.queue(c||"fx",[])},promise:function(c,h){var _,x=1,T=y.Deferred(),S=this,A=this.length,q=function(){--x||T.resolveWith(S,[S])};for(typeof c!="string"&&(h=c,c=void 0),c=c||"fx";A--;)_=be.get(S[A],c+"queueHooks"),_&&_.empty&&(x++,_.empty.add(q));return q(),T.promise(h)}});var xi=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,er=new RegExp("^(?:([+-])=|)("+xi+")([a-z%]*)$","i"),ht=["Top","Right","Bottom","Left"],bi=w.documentElement,ii=function(c){return y.contains(c.ownerDocument,c)},tr={composed:!0};bi.getRootNode&&(ii=function(c){return y.contains(c.ownerDocument,c)||c.getRootNode(tr)===c.ownerDocument});var hi=function(c,h){return c=h||c,c.style.display==="none"||c.style.display===""&&ii(c)&&y.css(c,"display")==="none"};function ir(c,h,_,x){var T,S,A=20,q=x?function(){return x.cur()}:function(){return y.css(c,h,"")},H=q(),Q=_&&_[3]||(y.cssNumber[h]?"":"px"),le=c.nodeType&&(y.cssNumber[h]||Q!=="px"&&+H)&&er.exec(y.css(c,h));if(le&&le[3]!==Q){for(H=H/2,Q=Q||le[3],le=+H||1;A--;)y.style(c,h,le+Q),(1-S)*(1-(S=q()/H||.5))<=0&&(A=0),le=le/S;le=le*2,y.style(c,h,le+Q),_=_||[]}return _&&(le=+le||+H||0,T=_[1]?le+(_[1]+1)*_[2]:+_[2],x&&(x.unit=Q,x.start=le,x.end=T)),T}var Di={};function $e(c){var h,_=c.ownerDocument,x=c.nodeName,T=Di[x];return T||(h=_.body.appendChild(_.createElement(x)),T=y.css(h,"display"),h.parentNode.removeChild(h),T==="none"&&(T="block"),Di[x]=T,T)}function Gt(c,h){for(var _,x,T=[],S=0,A=c.length;S\x20\t\r\n\f]*)/i,gi=/^$|^module$|\/(?:java|ecma)script/i;(function(){var c=w.createDocumentFragment(),h=c.appendChild(w.createElement("div")),_=w.createElement("input");_.setAttribute("type","radio"),_.setAttribute("checked","checked"),_.setAttribute("name","t"),h.appendChild(_),f.checkClone=h.cloneNode(!0).cloneNode(!0).lastChild.checked,h.innerHTML="",f.noCloneChecked=!!h.cloneNode(!0).lastChild.defaultValue,h.innerHTML=" ",f.option=!!h.lastChild})();var kt={thead:[1," "],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};kt.tbody=kt.tfoot=kt.colgroup=kt.caption=kt.thead,kt.th=kt.td,f.option||(kt.optgroup=kt.option=[1,""," "]);function xe(c,h){var _;return typeof c.getElementsByTagName<"u"?_=c.getElementsByTagName(h||"*"):typeof c.querySelectorAll<"u"?_=c.querySelectorAll(h||"*"):_=[],h===void 0||h&&F(c,h)?y.merge([c],_):_}function U(c,h){for(var _=0,x=c.length;_-1){T&&T.push(S);continue}if(Q=ii(S),A=xe(fe.appendChild(S),"script"),Q&&U(A),_)for(le=0;S=A[le++];)gi.test(S.type||"")&&_.push(S)}return fe}var se=/^([^.]*)(?:\.(.+)|)/;function pe(){return!0}function ne(){return!1}function _e(c,h,_,x,T,S){var A,q;if(typeof h=="object"){typeof _!="string"&&(x=x||_,_=void 0);for(q in h)_e(c,q,_,x,h[q],S);return c}if(x==null&&T==null?(T=_,x=_=void 0):T==null&&(typeof _=="string"?(T=x,x=void 0):(T=x,x=_,_=void 0)),T===!1)T=ne;else if(!T)return c;return S===1&&(A=T,T=function(H){return y().off(H),A.apply(this,arguments)},T.guid=A.guid||(A.guid=y.guid++)),c.each(function(){y.event.add(this,h,T,x,_)})}y.event={global:{},add:function(c,h,_,x,T){var S,A,q,H,Q,le,fe,re,ve,He,ft,Ue=be.get(c);if(dt(c))for(_.handler&&(S=_,_=S.handler,T=S.selector),T&&y.find.matchesSelector(bi,T),_.guid||(_.guid=y.guid++),(H=Ue.events)||(H=Ue.events=Object.create(null)),(A=Ue.handle)||(A=Ue.handle=function(mi){return typeof y<"u"&&y.event.triggered!==mi.type?y.event.dispatch.apply(c,arguments):void 0}),h=(h||"").match(Oe)||[""],Q=h.length;Q--;)q=se.exec(h[Q])||[],ve=ft=q[1],He=(q[2]||"").split(".").sort(),ve&&(fe=y.event.special[ve]||{},ve=(T?fe.delegateType:fe.bindType)||ve,fe=y.event.special[ve]||{},le=y.extend({type:ve,origType:ft,data:x,handler:_,guid:_.guid,selector:T,needsContext:T&&y.expr.match.needsContext.test(T),namespace:He.join(".")},S),(re=H[ve])||(re=H[ve]=[],re.delegateCount=0,(!fe.setup||fe.setup.call(c,x,He,A)===!1)&&c.addEventListener&&c.addEventListener(ve,A)),fe.add&&(fe.add.call(c,le),le.handler.guid||(le.handler.guid=_.guid)),T?re.splice(re.delegateCount++,0,le):re.push(le),y.event.global[ve]=!0)},remove:function(c,h,_,x,T){var S,A,q,H,Q,le,fe,re,ve,He,ft,Ue=be.hasData(c)&&be.get(c);if(!(!Ue||!(H=Ue.events))){for(h=(h||"").match(Oe)||[""],Q=h.length;Q--;){if(q=se.exec(h[Q])||[],ve=ft=q[1],He=(q[2]||"").split(".").sort(),!ve){for(ve in H)y.event.remove(c,ve+h[Q],_,x,!0);continue}for(fe=y.event.special[ve]||{},ve=(x?fe.delegateType:fe.bindType)||ve,re=H[ve]||[],q=q[2]&&new RegExp("(^|\\.)"+He.join("\\.(?:.*\\.|)")+"(\\.|$)"),A=S=re.length;S--;)le=re[S],(T||ft===le.origType)&&(!_||_.guid===le.guid)&&(!q||q.test(le.namespace))&&(!x||x===le.selector||x==="**"&&le.selector)&&(re.splice(S,1),le.selector&&re.delegateCount--,fe.remove&&fe.remove.call(c,le));A&&!re.length&&((!fe.teardown||fe.teardown.call(c,He,Ue.handle)===!1)&&y.removeEvent(c,ve,Ue.handle),delete H[ve])}y.isEmptyObject(H)&&be.remove(c,"handle events")}},dispatch:function(c){var h,_,x,T,S,A,q=new Array(arguments.length),H=y.event.fix(c),Q=(be.get(this,"events")||Object.create(null))[H.type]||[],le=y.event.special[H.type]||{};for(q[0]=H,h=1;h=1)){for(;Q!==this;Q=Q.parentNode||this)if(Q.nodeType===1&&!(c.type==="click"&&Q.disabled===!0)){for(S=[],A={},_=0;_-1:y.find(T,this,null,[Q]).length),A[T]&&S.push(x);S.length&&q.push({elem:Q,handlers:S})}}return Q=this,H\s*$/g;function ze(c,h){return F(c,"table")&&F(h.nodeType!==11?h:h.firstChild,"tr")&&y(c).children("tbody")[0]||c}function ot(c){return c.type=(c.getAttribute("type")!==null)+"/"+c.type,c}function ct(c){return(c.type||"").slice(0,5)==="true/"?c.type=c.type.slice(5):c.removeAttribute("type"),c}function Ve(c,h){var _,x,T,S,A,q,H;if(h.nodeType===1){if(be.hasData(c)&&(S=be.get(c),H=S.events,H)){be.remove(h,"handle events");for(T in H)for(_=0,x=H[T].length;_1&&typeof ve=="string"&&!f.checkClone&&Fe.test(ve))return c.each(function(ft){var Ue=c.eq(ft);He&&(h[0]=ve.call(this,ft,Ue.html())),nt(Ue,h,_,x)});if(fe&&(T=Z(h,c[0].ownerDocument,!1,c,x),S=T.firstChild,T.childNodes.length===1&&(T=S),S||x)){for(A=y.map(xe(T,"script"),ot),q=A.length;le0&&U(A,!H&&xe(c,"script")),q},cleanData:function(c){for(var h,_,x,T=y.event.special,S=0;(_=c[S])!==void 0;S++)if(dt(_)){if(h=_[be.expando]){if(h.events)for(x in h.events)T[x]?y.event.remove(_,x):y.removeEvent(_,x,h.handle);_[be.expando]=void 0}_[Ge.expando]&&(_[Ge.expando]=void 0)}}}),y.fn.extend({detach:function(c){return Ne(this,c,!0)},remove:function(c){return Ne(this,c)},text:function(c){return te(this,function(h){return h===void 0?y.text(this):this.empty().each(function(){(this.nodeType===1||this.nodeType===11||this.nodeType===9)&&(this.textContent=h)})},null,c,arguments.length)},append:function(){return nt(this,arguments,function(c){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var h=ze(this,c);h.appendChild(c)}})},prepend:function(){return nt(this,arguments,function(c){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var h=ze(this,c);h.insertBefore(c,h.firstChild)}})},before:function(){return nt(this,arguments,function(c){this.parentNode&&this.parentNode.insertBefore(c,this)})},after:function(){return nt(this,arguments,function(c){this.parentNode&&this.parentNode.insertBefore(c,this.nextSibling)})},empty:function(){for(var c,h=0;(c=this[h])!=null;h++)c.nodeType===1&&(y.cleanData(xe(c,!1)),c.textContent="");return this},clone:function(c,h){return c=c??!1,h=h??c,this.map(function(){return y.clone(this,c,h)})},html:function(c){return te(this,function(h){var _=this[0]||{},x=0,T=this.length;if(h===void 0&&_.nodeType===1)return _.innerHTML;if(typeof h=="string"&&!De.test(h)&&!kt[(ri.exec(h)||["",""])[1].toLowerCase()]){h=y.htmlPrefilter(h);try{for(;x=0&&(H+=Math.max(0,Math.ceil(c["offset"+h[0].toUpperCase()+h.slice(1)]-S-H-q-.5))||0),H+Q}function Ff(c,h,_){var x=Rt(c),T=!f.boxSizingReliable()||_,S=T&&y.css(c,"boxSizing",!1,x)==="border-box",A=S,q=rr(c,h,x),H="offset"+h[0].toUpperCase()+h.slice(1);if(Xt.test(q)){if(!_)return q;q="auto"}return(!f.boxSizingReliable()&&S||!f.reliableTrDimensions()&&F(c,"tr")||q==="auto"||!parseFloat(q)&&y.css(c,"display",!1,x)==="inline")&&c.getClientRects().length&&(S=y.css(c,"boxSizing",!1,x)==="border-box",A=H in c,A&&(q=c[H])),q=parseFloat(q)||0,q+nn(c,h,_||(S?"border":"content"),A,x,q)+"px"}y.extend({cssHooks:{opacity:{get:function(c,h){if(h){var _=rr(c,"opacity");return _===""?"1":_}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!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,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(c,h,_,x){if(!(!c||c.nodeType===3||c.nodeType===8||!c.style)){var T,S,A,q=je(h),H=Tt.test(h),Q=c.style;if(H||(h=Rs(q)),A=y.cssHooks[h]||y.cssHooks[q],_!==void 0){if(S=typeof _,S==="string"&&(T=er.exec(_))&&T[1]&&(_=ir(c,h,T),S="number"),_==null||_!==_)return;S==="number"&&!H&&(_+=T&&T[3]||(y.cssNumber[q]?"":"px")),!f.clearCloneStyle&&_===""&&h.indexOf("background")===0&&(Q[h]="inherit"),(!A||!("set"in A)||(_=A.set(c,_,x))!==void 0)&&(H?Q.setProperty(h,_):Q[h]=_)}else return A&&"get"in A&&(T=A.get(c,!1,x))!==void 0?T:Q[h]}},css:function(c,h,_,x){var T,S,A,q=je(h),H=Tt.test(h);return H||(h=Rs(q)),A=y.cssHooks[h]||y.cssHooks[q],A&&"get"in A&&(T=A.get(c,!0,_)),T===void 0&&(T=rr(c,h,x)),T==="normal"&&h in Sn&&(T=Sn[h]),_===""||_?(S=parseFloat(T),_===!0||isFinite(S)?S||0:T):T}}),y.each(["height","width"],function(c,h){y.cssHooks[h]={get:function(_,x,T){if(x)return is.test(y.css(_,"display"))&&(!_.getClientRects().length||!_.getBoundingClientRect().width)?Vt(_,hr,function(){return Ff(_,h,T)}):Ff(_,h,T)},set:function(_,x,T){var S,A=Rt(_),q=!f.scrollboxSize()&&A.position==="absolute",H=q||T,Q=H&&y.css(_,"boxSizing",!1,A)==="border-box",le=T?nn(_,h,T,Q,A):0;return Q&&q&&(le-=Math.ceil(_["offset"+h[0].toUpperCase()+h.slice(1)]-parseFloat(A[h])-nn(_,h,"border",!1,A)-.5)),le&&(S=er.exec(x))&&(S[3]||"px")!=="px"&&(_.style[h]=x,x=y.css(_,h)),rs(_,x,le)}}}),y.cssHooks.marginLeft=ts(f.reliableMarginLeft,function(c,h){if(h)return(parseFloat(rr(c,"marginLeft"))||c.getBoundingClientRect().left-Vt(c,{marginLeft:0},function(){return c.getBoundingClientRect().left}))+"px"}),y.each({margin:"",padding:"",border:"Width"},function(c,h){y.cssHooks[c+h]={expand:function(_){for(var x=0,T={},S=typeof _=="string"?_.split(" "):[_];x<4;x++)T[c+ht[x]+h]=S[x]||S[x-2]||S[0];return T}},c!=="margin"&&(y.cssHooks[c+h].set=rs)}),y.fn.extend({css:function(c,h){return te(this,function(_,x,T){var S,A,q={},H=0;if(Array.isArray(x)){for(S=Rt(_),A=x.length;H1)}});function Wi(c,h,_,x,T){return new Wi.prototype.init(c,h,_,x,T)}y.Tween=Wi,Wi.prototype={constructor:Wi,init:function(c,h,_,x,T,S){this.elem=c,this.prop=_,this.easing=T||y.easing._default,this.options=h,this.start=this.now=this.cur(),this.end=x,this.unit=S||(y.cssNumber[_]?"":"px")},cur:function(){var c=Wi.propHooks[this.prop];return c&&c.get?c.get(this):Wi.propHooks._default.get(this)},run:function(c){var h,_=Wi.propHooks[this.prop];return this.options.duration?this.pos=h=y.easing[this.easing](c,this.options.duration*c,0,1,this.options.duration):this.pos=h=c,this.now=(this.end-this.start)*h+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),_&&_.set?_.set(this):Wi.propHooks._default.set(this),this}},Wi.prototype.init.prototype=Wi.prototype,Wi.propHooks={_default:{get:function(c){var h;return c.elem.nodeType!==1||c.elem[c.prop]!=null&&c.elem.style[c.prop]==null?c.elem[c.prop]:(h=y.css(c.elem,c.prop,""),!h||h==="auto"?0:h)},set:function(c){y.fx.step[c.prop]?y.fx.step[c.prop](c):c.elem.nodeType===1&&(y.cssHooks[c.prop]||c.elem.style[Rs(c.prop)]!=null)?y.style(c.elem,c.prop,c.now+c.unit):c.elem[c.prop]=c.now}}},Wi.propHooks.scrollTop=Wi.propHooks.scrollLeft={set:function(c){c.elem.nodeType&&c.elem.parentNode&&(c.elem[c.prop]=c.now)}},y.easing={linear:function(c){return c},swing:function(c){return .5-Math.cos(c*Math.PI)/2},_default:"swing"},y.fx=Wi.prototype.init,y.fx.step={};var Bs,Fa,Fm=/^(?:toggle|show|hide)$/,km=/queueHooks$/;function eu(){Fa&&(w.hidden===!1&&s.requestAnimationFrame?s.requestAnimationFrame(eu):s.setTimeout(eu,y.fx.interval),y.fx.tick())}function kf(){return s.setTimeout(function(){Bs=void 0}),Bs=Date.now()}function ka(c,h){var _,x=0,T={height:c};for(h=h?1:0;x<4;x+=2-h)_=ht[x],T["margin"+_]=T["padding"+_]=c;return h&&(T.opacity=T.width=c),T}function Lf(c,h,_){for(var x,T=(Mr.tweeners[h]||[]).concat(Mr.tweeners["*"]),S=0,A=T.length;S 1)},removeAttr:function(c){return this.each(function(){y.removeAttr(this,c)})}}),y.extend({attr:function(c,h,_){var x,T,S=c.nodeType;if(!(S===3||S===8||S===2)){if(typeof c.getAttribute>"u")return y.prop(c,h,_);if((S!==1||!y.isXMLDoc(c))&&(T=y.attrHooks[h.toLowerCase()]||(y.expr.match.bool.test(h)?Of:void 0)),_!==void 0){if(_===null){y.removeAttr(c,h);return}return T&&"set"in T&&(x=T.set(c,_,h))!==void 0?x:(c.setAttribute(h,_+""),_)}return T&&"get"in T&&(x=T.get(c,h))!==null?x:(x=y.find.attr(c,h),x??void 0)}},attrHooks:{type:{set:function(c,h){if(!f.radioValue&&h==="radio"&&F(c,"input")){var _=c.value;return c.setAttribute("type",h),_&&(c.value=_),h}}}},removeAttr:function(c,h){var _,x=0,T=h&&h.match(Oe);if(T&&c.nodeType===1)for(;_=T[x++];)c.removeAttribute(_)}}),Of={set:function(c,h,_){return h===!1?y.removeAttr(c,_):c.setAttribute(_,_),_}},y.each(y.expr.match.bool.source.match(/\w+/g),function(c,h){var _=Eo[h]||y.find.attr;Eo[h]=function(x,T,S){var A,q,H=T.toLowerCase();return S||(q=Eo[H],Eo[H]=A,A=_(x,T,S)!=null?H:null,Eo[H]=q),A}});var Im=/^(?:input|select|textarea|button)$/i,Rm=/^(?:a|area)$/i;y.fn.extend({prop:function(c,h){return te(this,y.prop,c,h,arguments.length>1)},removeProp:function(c){return this.each(function(){delete this[y.propFix[c]||c]})}}),y.extend({prop:function(c,h,_){var x,T,S=c.nodeType;if(!(S===3||S===8||S===2))return(S!==1||!y.isXMLDoc(c))&&(h=y.propFix[h]||h,T=y.propHooks[h]),_!==void 0?T&&"set"in T&&(x=T.set(c,_,h))!==void 0?x:c[h]=_:T&&"get"in T&&(x=T.get(c,h))!==null?x:c[h]},propHooks:{tabIndex:{get:function(c){var h=y.find.attr(c,"tabindex");return h?parseInt(h,10):Im.test(c.nodeName)||Rm.test(c.nodeName)&&c.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),f.optSelected||(y.propHooks.selected={get:function(c){var h=c.parentNode;return h&&h.parentNode&&h.parentNode.selectedIndex,null},set:function(c){var h=c.parentNode;h&&(h.selectedIndex,h.parentNode&&h.parentNode.selectedIndex)}}),y.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){y.propFix[this.toLowerCase()]=this});function ns(c){var h=c.match(Oe)||[];return h.join(" ")}function ss(c){return c.getAttribute&&c.getAttribute("class")||""}function tu(c){return Array.isArray(c)?c:typeof c=="string"?c.match(Oe)||[]:[]}y.fn.extend({addClass:function(c){var h,_,x,T,S,A;return m(c)?this.each(function(q){y(this).addClass(c.call(this,q,ss(this)))}):(h=tu(c),h.length?this.each(function(){if(x=ss(this),_=this.nodeType===1&&" "+ns(x)+" ",_){for(S=0;S-1;)_=_.replace(" "+T+" "," ");A=ns(_),x!==A&&this.setAttribute("class",A)}}):this):this.attr("class","")},toggleClass:function(c,h){var _,x,T,S,A=typeof c,q=A==="string"||Array.isArray(c);return m(c)?this.each(function(H){y(this).toggleClass(c.call(this,H,ss(this),h),h)}):typeof h=="boolean"&&q?h?this.addClass(c):this.removeClass(c):(_=tu(c),this.each(function(){if(q)for(S=y(this),T=0;T<_.length;T++)x=_[T],S.hasClass(x)?S.removeClass(x):S.addClass(x);else(c===void 0||A==="boolean")&&(x=ss(this),x&&be.set(this,"__className__",x),this.setAttribute&&this.setAttribute("class",x||c===!1?"":be.get(this,"__className__")||""))}))},hasClass:function(c){var h,_,x=0;for(h=" "+c+" ";_=this[x++];)if(_.nodeType===1&&(" "+ns(ss(_))+" ").indexOf(h)>-1)return!0;return!1}});var Bm=/\r/g;y.fn.extend({val:function(c){var h,_,x,T=this[0];return arguments.length?(x=m(c),this.each(function(S){var A;this.nodeType===1&&(x?A=c.call(this,S,y(this).val()):A=c,A==null?A="":typeof A=="number"?A+="":Array.isArray(A)&&(A=y.map(A,function(q){return q==null?"":q+""})),h=y.valHooks[this.type]||y.valHooks[this.nodeName.toLowerCase()],(!h||!("set"in h)||h.set(this,A,"value")===void 0)&&(this.value=A))})):T?(h=y.valHooks[T.type]||y.valHooks[T.nodeName.toLowerCase()],h&&"get"in h&&(_=h.get(T,"value"))!==void 0?_:(_=T.value,typeof _=="string"?_.replace(Bm,""):_??"")):void 0}}),y.extend({valHooks:{option:{get:function(c){var h=y.find.attr(c,"value");return h??ns(y.text(c))}},select:{get:function(c){var h,_,x,T=c.options,S=c.selectedIndex,A=c.type==="select-one",q=A?null:[],H=A?S+1:T.length;for(S<0?x=H:x=A?S:0;x-1)&&(_=!0);return _||(c.selectedIndex=-1),S}}}}),y.each(["radio","checkbox"],function(){y.valHooks[this]={set:function(c,h){if(Array.isArray(h))return c.checked=y.inArray(y(c).val(),h)>-1}},f.checkOn||(y.valHooks[this].get=function(c){return c.getAttribute("value")===null?"on":c.value})});var To=s.location,If={guid:Date.now()},iu=/\?/;y.parseXML=function(c){var h,_;if(!c||typeof c!="string")return null;try{h=new s.DOMParser().parseFromString(c,"text/xml")}catch{}return _=h&&h.getElementsByTagName("parsererror")[0],(!h||_)&&y.error("Invalid XML: "+(_?y.map(_.childNodes,function(x){return x.textContent}).join(`
`):c)),h};var Rf=/^(?:focusinfocus|focusoutblur)$/,Bf=function(c){c.stopPropagation()};y.extend(y.event,{trigger:function(c,h,_,x){var T,S,A,q,H,Q,le,fe,re=[_||w],ve=d.call(c,"type")?c.type:c,He=d.call(c,"namespace")?c.namespace.split("."):[];if(S=fe=A=_=_||w,!(_.nodeType===3||_.nodeType===8)&&!Rf.test(ve+y.event.triggered)&&(ve.indexOf(".")>-1&&(He=ve.split("."),ve=He.shift(),He.sort()),H=ve.indexOf(":")<0&&"on"+ve,c=c[y.expando]?c:new y.Event(ve,typeof c=="object"&&c),c.isTrigger=x?2:3,c.namespace=He.join("."),c.rnamespace=c.namespace?new RegExp("(^|\\.)"+He.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,c.result=void 0,c.target||(c.target=_),h=h==null?[c]:y.makeArray(h,[c]),le=y.event.special[ve]||{},!(!x&&le.trigger&&le.trigger.apply(_,h)===!1))){if(!x&&!le.noBubble&&!g(_)){for(q=le.delegateType||ve,Rf.test(q+ve)||(S=S.parentNode);S;S=S.parentNode)re.push(S),A=S;A===(_.ownerDocument||w)&&re.push(A.defaultView||A.parentWindow||s)}for(T=0;(S=re[T++])&&!c.isPropagationStopped();)fe=S,c.type=T>1?q:le.bindType||ve,Q=(be.get(S,"events")||Object.create(null))[c.type]&&be.get(S,"handle"),Q&&Q.apply(S,h),Q=H&&S[H],Q&&Q.apply&&dt(S)&&(c.result=Q.apply(S,h),c.result===!1&&c.preventDefault());return c.type=ve,!x&&!c.isDefaultPrevented()&&(!le._default||le._default.apply(re.pop(),h)===!1)&&dt(_)&&H&&m(_[ve])&&!g(_)&&(A=_[H],A&&(_[H]=null),y.event.triggered=ve,c.isPropagationStopped()&&fe.addEventListener(ve,Bf),_[ve](),c.isPropagationStopped()&&fe.removeEventListener(ve,Bf),y.event.triggered=void 0,A&&(_[H]=A)),c.result}},simulate:function(c,h,_){var x=y.extend(new y.Event,_,{type:c,isSimulated:!0});y.event.trigger(x,null,h)}}),y.fn.extend({trigger:function(c,h){return this.each(function(){y.event.trigger(c,h,this)})},triggerHandler:function(c,h){var _=this[0];if(_)return y.event.trigger(c,h,_,!0)}});var $m=/\[\]$/,$f=/\r?\n/g,Nm=/^(?:submit|button|image|reset|file)$/i,zm=/^(?:input|select|textarea|keygen)/i;function ru(c,h,_,x){var T;if(Array.isArray(h))y.each(h,function(S,A){_||$m.test(c)?x(c,A):ru(c+"["+(typeof A=="object"&&A!=null?S:"")+"]",A,_,x)});else if(!_&&D(h)==="object")for(T in h)ru(c+"["+T+"]",h[T],_,x);else x(c,h)}y.param=function(c,h){var _,x=[],T=function(S,A){var q=m(A)?A():A;x[x.length]=encodeURIComponent(S)+"="+encodeURIComponent(q??"")};if(c==null)return"";if(Array.isArray(c)||c.jquery&&!y.isPlainObject(c))y.each(c,function(){T(this.name,this.value)});else for(_ in c)ru(_,c[_],h,T);return x.join("&")},y.fn.extend({serialize:function(){return y.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var c=y.prop(this,"elements");return c?y.makeArray(c):this}).filter(function(){var c=this.type;return this.name&&!y(this).is(":disabled")&&zm.test(this.nodeName)&&!Nm.test(c)&&(this.checked||!yt.test(c))}).map(function(c,h){var _=y(this).val();return _==null?null:Array.isArray(_)?y.map(_,function(x){return{name:h.name,value:x.replace($f,`\r
`)}}):{name:h.name,value:_.replace($f,`\r
`)}}).get()}});var Hm=/%20/g,qm=/#.*$/,Xm=/([?&])_=[^&]*/,Ym=/^(.*?):[ \t]*([^\r\n]*)$/mg,Wm=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,jm=/^(?:GET|HEAD)$/,Gm=/^\/\//,Nf={},nu={},zf="*/".concat("*"),su=w.createElement("a");su.href=To.href;function Hf(c){return function(h,_){typeof h!="string"&&(_=h,h="*");var x,T=0,S=h.toLowerCase().match(Oe)||[];if(m(_))for(;x=S[T++];)x[0]==="+"?(x=x.slice(1)||"*",(c[x]=c[x]||[]).unshift(_)):(c[x]=c[x]||[]).push(_)}}function qf(c,h,_,x){var T={},S=c===nu;function A(q){var H;return T[q]=!0,y.each(c[q]||[],function(Q,le){var fe=le(h,_,x);if(typeof fe=="string"&&!S&&!T[fe])return h.dataTypes.unshift(fe),A(fe),!1;if(S)return!(H=fe)}),H}return A(h.dataTypes[0])||!T["*"]&&A("*")}function ou(c,h){var _,x,T=y.ajaxSettings.flatOptions||{};for(_ in h)h[_]!==void 0&&((T[_]?c:x||(x={}))[_]=h[_]);return x&&y.extend(!0,c,x),c}function Vm(c,h,_){for(var x,T,S,A,q=c.contents,H=c.dataTypes;H[0]==="*";)H.shift(),x===void 0&&(x=c.mimeType||h.getResponseHeader("Content-Type"));if(x){for(T in q)if(q[T]&&q[T].test(x)){H.unshift(T);break}}if(H[0]in _)S=H[0];else{for(T in _){if(!H[0]||c.converters[T+" "+H[0]]){S=T;break}A||(A=T)}S=S||A}if(S)return S!==H[0]&&H.unshift(S),_[S]}function Um(c,h,_,x){var T,S,A,q,H,Q={},le=c.dataTypes.slice();if(le[1])for(A in c.converters)Q[A.toLowerCase()]=c.converters[A];for(S=le.shift();S;)if(c.responseFields[S]&&(_[c.responseFields[S]]=h),!H&&x&&c.dataFilter&&(h=c.dataFilter(h,c.dataType)),H=S,S=le.shift(),S){if(S==="*")S=H;else if(H!=="*"&&H!==S){if(A=Q[H+" "+S]||Q["* "+S],!A){for(T in Q)if(q=T.split(" "),q[1]===S&&(A=Q[H+" "+q[0]]||Q["* "+q[0]],A)){A===!0?A=Q[T]:Q[T]!==!0&&(S=q[0],le.unshift(q[1]));break}}if(A!==!0)if(A&&c.throws)h=A(h);else try{h=A(h)}catch(fe){return{state:"parsererror",error:A?fe:"No conversion from "+H+" to "+S}}}}return{state:"success",data:h}}y.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:To.href,type:"GET",isLocal:Wm.test(To.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":zf,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":y.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(c,h){return h?ou(ou(c,y.ajaxSettings),h):ou(y.ajaxSettings,c)},ajaxPrefilter:Hf(Nf),ajaxTransport:Hf(nu),ajax:function(c,h){typeof c=="object"&&(h=c,c=void 0),h=h||{};var _,x,T,S,A,q,H,Q,le,fe,re=y.ajaxSetup({},h),ve=re.context||re,He=re.context&&(ve.nodeType||ve.jquery)?y(ve):y.event,ft=y.Deferred(),Ue=y.Callbacks("once memory"),mi=re.statusCode||{},si={},Nr={},zr="canceled",st={readyState:0,getResponseHeader:function(pt){var $t;if(H){if(!S)for(S={};$t=Ym.exec(T);)S[$t[1].toLowerCase()+" "]=(S[$t[1].toLowerCase()+" "]||[]).concat($t[2]);$t=S[pt.toLowerCase()+" "]}return $t==null?null:$t.join(", ")},getAllResponseHeaders:function(){return H?T:null},setRequestHeader:function(pt,$t){return H==null&&(pt=Nr[pt.toLowerCase()]=Nr[pt.toLowerCase()]||pt,si[pt]=$t),this},overrideMimeType:function(pt){return H==null&&(re.mimeType=pt),this},statusCode:function(pt){var $t;if(pt)if(H)st.always(pt[st.status]);else for($t in pt)mi[$t]=[mi[$t],pt[$t]];return this},abort:function(pt){var $t=pt||zr;return _&&_.abort($t),os(0,$t),this}};if(ft.promise(st),re.url=((c||re.url||To.href)+"").replace(Gm,To.protocol+"//"),re.type=h.method||h.type||re.method||re.type,re.dataTypes=(re.dataType||"*").toLowerCase().match(Oe)||[""],re.crossDomain==null){q=w.createElement("a");try{q.href=re.url,q.href=q.href,re.crossDomain=su.protocol+"//"+su.host!=q.protocol+"//"+q.host}catch{re.crossDomain=!0}}if(re.data&&re.processData&&typeof re.data!="string"&&(re.data=y.param(re.data,re.traditional)),qf(Nf,re,h,st),H)return st;Q=y.event&&re.global,Q&&y.active++===0&&y.event.trigger("ajaxStart"),re.type=re.type.toUpperCase(),re.hasContent=!jm.test(re.type),x=re.url.replace(qm,""),re.hasContent?re.data&&re.processData&&(re.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&(re.data=re.data.replace(Hm,"+")):(fe=re.url.slice(x.length),re.data&&(re.processData||typeof re.data=="string")&&(x+=(iu.test(x)?"&":"?")+re.data,delete re.data),re.cache===!1&&(x=x.replace(Xm,"$1"),fe=(iu.test(x)?"&":"?")+"_="+If.guid+++fe),re.url=x+fe),re.ifModified&&(y.lastModified[x]&&st.setRequestHeader("If-Modified-Since",y.lastModified[x]),y.etag[x]&&st.setRequestHeader("If-None-Match",y.etag[x])),(re.data&&re.hasContent&&re.contentType!==!1||h.contentType)&&st.setRequestHeader("Content-Type",re.contentType),st.setRequestHeader("Accept",re.dataTypes[0]&&re.accepts[re.dataTypes[0]]?re.accepts[re.dataTypes[0]]+(re.dataTypes[0]!=="*"?", "+zf+"; q=0.01":""):re.accepts["*"]);for(le in re.headers)st.setRequestHeader(le,re.headers[le]);if(re.beforeSend&&(re.beforeSend.call(ve,st,re)===!1||H))return st.abort();if(zr="abort",Ue.add(re.complete),st.done(re.success),st.fail(re.error),_=qf(nu,re,h,st),!_)os(-1,"No Transport");else{if(st.readyState=1,Q&&He.trigger("ajaxSend",[st,re]),H)return st;re.async&&re.timeout>0&&(A=s.setTimeout(function(){st.abort("timeout")},re.timeout));try{H=!1,_.send(si,os)}catch(pt){if(H)throw pt;os(-1,pt)}}function os(pt,$t,Co,lu){var Hr,Ao,qr,Cn,An,gr=$t;H||(H=!0,A&&s.clearTimeout(A),_=void 0,T=lu||"",st.readyState=pt>0?4:0,Hr=pt>=200&&pt<300||pt===304,Co&&(Cn=Vm(re,st,Co)),!Hr&&y.inArray("script",re.dataTypes)>-1&&y.inArray("json",re.dataTypes)<0&&(re.converters["text script"]=function(){}),Cn=Um(re,Cn,st,Hr),Hr?(re.ifModified&&(An=st.getResponseHeader("Last-Modified"),An&&(y.lastModified[x]=An),An=st.getResponseHeader("etag"),An&&(y.etag[x]=An)),pt===204||re.type==="HEAD"?gr="nocontent":pt===304?gr="notmodified":(gr=Cn.state,Ao=Cn.data,qr=Cn.error,Hr=!qr)):(qr=gr,(pt||!gr)&&(gr="error",pt<0&&(pt=0))),st.status=pt,st.statusText=($t||gr)+"",Hr?ft.resolveWith(ve,[Ao,gr,st]):ft.rejectWith(ve,[st,gr,qr]),st.statusCode(mi),mi=void 0,Q&&He.trigger(Hr?"ajaxSuccess":"ajaxError",[st,re,Hr?Ao:qr]),Ue.fireWith(ve,[st,gr]),Q&&(He.trigger("ajaxComplete",[st,re]),--y.active||y.event.trigger("ajaxStop")))}return st},getJSON:function(c,h,_){return y.get(c,h,_,"json")},getScript:function(c,h){return y.get(c,void 0,h,"script")}}),y.each(["get","post"],function(c,h){y[h]=function(_,x,T,S){return m(x)&&(S=S||T,T=x,x=void 0),y.ajax(y.extend({url:_,type:h,dataType:S,data:x,success:T},y.isPlainObject(_)&&_))}}),y.ajaxPrefilter(function(c){var h;for(h in c.headers)h.toLowerCase()==="content-type"&&(c.contentType=c.headers[h]||"")}),y._evalUrl=function(c,h,_){return y.ajax({url:c,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(x){y.globalEval(x,h,_)}})},y.fn.extend({wrapAll:function(c){var h;return this[0]&&(m(c)&&(c=c.call(this[0])),h=y(c,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&h.insertBefore(this[0]),h.map(function(){for(var _=this;_.firstElementChild;)_=_.firstElementChild;return _}).append(this)),this},wrapInner:function(c){return m(c)?this.each(function(h){y(this).wrapInner(c.call(this,h))}):this.each(function(){var h=y(this),_=h.contents();_.length?_.wrapAll(c):h.append(c)})},wrap:function(c){var h=m(c);return this.each(function(_){y(this).wrapAll(h?c.call(this,_):c)})},unwrap:function(c){return this.parent(c).not("body").each(function(){y(this).replaceWith(this.childNodes)}),this}}),y.expr.pseudos.hidden=function(c){return!y.expr.pseudos.visible(c)},y.expr.pseudos.visible=function(c){return!!(c.offsetWidth||c.offsetHeight||c.getClientRects().length)},y.ajaxSettings.xhr=function(){try{return new s.XMLHttpRequest}catch{}};var Km={0:200,1223:204},So=y.ajaxSettings.xhr();f.cors=!!So&&"withCredentials"in So,f.ajax=So=!!So,y.ajaxTransport(function(c){var h,_;if(f.cors||So&&!c.crossDomain)return{send:function(x,T){var S,A=c.xhr();if(A.open(c.type,c.url,c.async,c.username,c.password),c.xhrFields)for(S in c.xhrFields)A[S]=c.xhrFields[S];c.mimeType&&A.overrideMimeType&&A.overrideMimeType(c.mimeType),!c.crossDomain&&!x["X-Requested-With"]&&(x["X-Requested-With"]="XMLHttpRequest");for(S in x)A.setRequestHeader(S,x[S]);h=function(q){return function(){h&&(h=_=A.onload=A.onerror=A.onabort=A.ontimeout=A.onreadystatechange=null,q==="abort"?A.abort():q==="error"?typeof A.status!="number"?T(0,"error"):T(A.status,A.statusText):T(Km[A.status]||A.status,A.statusText,(A.responseType||"text")!=="text"||typeof A.responseText!="string"?{binary:A.response}:{text:A.responseText},A.getAllResponseHeaders()))}},A.onload=h(),_=A.onerror=A.ontimeout=h("error"),A.onabort!==void 0?A.onabort=_:A.onreadystatechange=function(){A.readyState===4&&s.setTimeout(function(){h&&_()})},h=h("abort");try{A.send(c.hasContent&&c.data||null)}catch(q){if(h)throw q}},abort:function(){h&&h()}}}),y.ajaxPrefilter(function(c){c.crossDomain&&(c.contents.script=!1)}),y.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(c){return y.globalEval(c),c}}}),y.ajaxPrefilter("script",function(c){c.cache===void 0&&(c.cache=!1),c.crossDomain&&(c.type="GET")}),y.ajaxTransport("script",function(c){if(c.crossDomain||c.scriptAttrs){var h,_;return{send:function(x,T){h=y("