From 19e50a7761c6d2d1222622b3868b5db02a316c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <git@imaniti.org> Date: Thu, 13 Jul 2023 16:54:53 +0900 Subject: [PATCH] fix instagram sync - remove leftover settings, improve display, skip videos, log more info --- instagram_utils/models.py | 12 +++++------- instagram_utils/services.py | 18 ++++++++---------- main/models.py | 10 +++++----- main/static/main/main.js | 2 +- 4 files changed, 19 insertions(+), 23 deletions(-) diff --git a/instagram_utils/models.py b/instagram_utils/models.py index 579f9d56..3cf2e096 100644 --- a/instagram_utils/models.py +++ b/instagram_utils/models.py @@ -1,10 +1,13 @@ import datetime +import logging import mimetypes import uuid from django.conf import settings from django.db import models +logger = logging.getLogger() + def get_current_datetime() -> datetime.datetime: return datetime.datetime.now(tz=datetime.timezone.utc) @@ -86,15 +89,10 @@ class InstagramMixin(models.Model): from .services import InstagramDownloadService try: - service = InstagramDownloadService( - app_id=settings.INSTAGRAM_APP_ID, - app_secret=settings.INSTAGRAM_APP_SECRET, - ) + service = InstagramDownloadService() service.perform_update() except Exception: - logger.error( - "Instagram post update failed", exc_info=True - ) + logger.error("Instagram post update failed", exc_info=True) super().save(*args, **kwargs) diff --git a/instagram_utils/services.py b/instagram_utils/services.py index 77101c81..ca148e6e 100644 --- a/instagram_utils/services.py +++ b/instagram_utils/services.py @@ -15,14 +15,6 @@ logger = logging.getLogger() class InstagramDownloadService: - """ - TODO - """ - - def __init__(self, app_id: int, app_secret: str): - self.app_id = app_id - self.app_secret = app_secret - def get_usernames(self) -> list[str]: access_block = MainHomePage.objects.first().instagram_access @@ -55,8 +47,12 @@ class InstagramDownloadService: profile = instaloader.Profile.from_username(loader.context, username) for remote_post in profile.get_posts(): - # Don't recreate existing posts + if remote_post.is_video: + logger.info( + "Instagram post ID %s is a video, skipping.", remote_post.shortcode + ) + # Don't recreate existing posts if InstagramPost.objects.filter(remote_id=remote_post.shortcode).exists(): logging.info( "Skipping Instagram post ID %s, already exists", @@ -83,9 +79,11 @@ class InstagramDownloadService: logger.info( "Saved Instagram post ID %s", - remote_post.mediaid, + remote_post.shotcode, ) + post_position += 1 + def perform_update(self) -> None: for username in self.get_usernames(): self.parse_media_for_user(username) diff --git a/main/models.py b/main/models.py index 26928fc3..cbb69fe9 100644 --- a/main/models.py +++ b/main/models.py @@ -31,7 +31,7 @@ from wagtailmetadata.models import MetadataPageMixin from calendar_utils.models import CalendarMixin from elections2021.constants import REGION_CHOICES # pozor, import ze sousednĂho modulu -from instagram_utils.models import InstagramPost, InstagramMixin +from instagram_utils.models import InstagramMixin, InstagramPost from shared.forms import SubscribeForm from shared.models import ( # MenuMixin, ArticleMixin, @@ -59,7 +59,7 @@ class MainHomePage( ExtendedMetadataHomePageMixin, MetadataPageMixin, InstagramMixin, - Page + Page, ): # header @@ -222,8 +222,8 @@ class MainHomePage( author_username__in=instagram_username_list ).order_by("-timestamp") - context["instagram_post_list"] = instagram_post_list[:4] - context["show_next_instagram_post"] = len(instagram_post_list) > 4 + context["instagram_post_list"] = instagram_post_list[:3] + context["show_next_instagram_post"] = len(instagram_post_list) > 3 context["regions"] = REGION_CHOICES @@ -272,7 +272,7 @@ class MainHomePage( author_username__in=instagram_username_list ).order_by("-timestamp") - instagram_post_paginator = Paginator(instagram_post_list_queryset, 4) + instagram_post_paginator = Paginator(instagram_post_list_queryset, 3) instagram_post_page = instagram_post_paginator.get_page( request.GET.get("page", 1) diff --git a/main/static/main/main.js b/main/static/main/main.js index bade9626..03a1220b 100644 --- a/main/static/main/main.js +++ b/main/static/main/main.js @@ -10,7 +10,7 @@ var _a=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?wind `,"	":" ","'":"'"},Sp=/&(?:lt|gt|quot|amp|#39);/g,Ap=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,Lp=T("pre,textarea",!0),q0=function(a,s){return a&&Lp(a)&&s[0]===` `};function wp(a,s){var c=s?Ap:Sp;return a.replace(c,function(u){return bp[u]})}function Ep(a,s){for(var c,u,h=[],p=s.expectHTML,b=s.isUnaryTag||Te,L=s.canBeLeftOpenTag||Te,w=0,R=function(){if(c=a,u&&J0(u)){var $=0,W=u.toLowerCase(),G=X0[W]||(X0[W]=new RegExp("([\\s\\S]*?)(</"+W+"[^>]*>)","i"));N=a.replace(G,function(we,_e,Ye){return $=Ye.length,J0(W)||W==="noscript"||(_e=_e.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),q0(W,_e)&&(_e=_e.slice(1)),s.chars&&s.chars(_e),""}),w+=a.length-N.length,a=N,O(W,w-$,w)}else{var se=a.indexOf("<");if(se===0){if(Q0.test(a)){var ie=a.indexOf("-->");if(ie>=0)return s.shouldKeepComment&&s.comment&&s.comment(a.substring(4,ie),w,w+ie+3),M(ie+3),"continue"}if(K0.test(a)){var Oe=a.indexOf("]>");if(Oe>=0)return M(Oe+2),"continue"}var Ce=a.match(yp);if(Ce)return M(Ce[0].length),"continue";var et=a.match(Z0);if(et){var Be=w;return M(et[0].length),O(et[1],Be,w),"continue"}var Ue=function(){var we=a.match(Y0);if(we){var _e={tagName:we[1],attrs:[],start:w};M(we[0].length);for(var Ye=void 0,lt=void 0;!(Ye=a.match(mp))&&(lt=a.match(gp)||a.match(vp));)lt.start=w,M(lt[0].length),lt.end=w,_e.attrs.push(lt);if(Ye)return _e.unarySlash=Ye[1],M(Ye[0].length),_e.end=w,_e}}();if(Ue)return function(we){var _e=we.tagName,Ye=we.unarySlash;p&&(u==="p"&&hp(_e)&&O(u),L(_e)&&u===_e&&O(_e));for(var lt=b(_e)||!!Ye,at=we.attrs.length,ot=new Array(at),wt=0;wt<at;wt++){var dt=we.attrs[wt],st=dt[3]||dt[4]||dt[5]||"",At=_e==="a"&&dt[1]==="href"?s.shouldDecodeNewlinesForHref:s.shouldDecodeNewlines;ot[wt]={name:dt[1],value:wp(st,At)}}lt||(h.push({tag:_e,lowerCasedTag:_e.toLowerCase(),attrs:ot,start:we.start,end:we.end}),u=_e),s.start&&s.start(_e,ot,lt,we.start,we.end)}(Ue),q0(Ue.tagName,a)&&M(1),"continue"}var Qe=void 0,N=void 0,Z=void 0;if(se>=0){for(N=a.slice(se);!(Z0.test(N)||Y0.test(N)||Q0.test(N)||K0.test(N)||(Z=N.indexOf("<",1))<0);)se+=Z,N=a.slice(se);Qe=a.substring(0,se)}se<0&&(Qe=a),Qe&&M(Qe.length),s.chars&&Qe&&s.chars(Qe,w-Qe.length,w)}if(a===c)return s.chars&&s.chars(a),"break"};a&&R()!=="break";);function M($){w+=$,a=a.substring($)}function O($,W,G){var se,ie;if(W==null&&(W=w),G==null&&(G=w),$)for(ie=$.toLowerCase(),se=h.length-1;se>=0&&h[se].lowerCasedTag!==ie;se--);else se=0;if(se>=0){for(var Oe=h.length-1;Oe>=se;Oe--)s.end&&s.end(h[Oe].tag,W,G);h.length=se,u=se&&h[se-1].tag}else ie==="br"?s.start&&s.start($,[],!0,W,G):ie==="p"&&(s.start&&s.start($,[],!1,W,G),s.end&&s.end($,W,G))}O()}var ec,tc,Xo,qo,es,ts,ns,nc,rc=/^@|^v-on:/,rs=/^v-|^@|^:|^#/,Cp=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,ic=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,xp=/^\(|\)$/g,pa=/^\[.*\]$/,Tp=/:(.*)$/,ac=/^:|^\.|^v-bind:/,oc=/\.[^.\]]+(?=[^\]]*$)/g,is=/^v-slot(:|$)|^#/,Op=/[\r\n]/,_p=/[ \f\t\r\n]+/g,Dp=H(dp),ha="_empty_";function as(a,s,c){return{type:1,tag:a,attrsList:s,attrsMap:Ip(s),rawAttrsMap:{},parent:c,children:[]}}function Rp(a,s){ec=s.warn||o0,ts=s.isPreTag||Te,ns=s.mustUseProp||Te,nc=s.getTagNamespace||Te,s.isReservedTag,Xo=ui(s.modules,"transformNode"),qo=ui(s.modules,"preTransformNode"),es=ui(s.modules,"postTransformNode"),tc=s.delimiters;var c,u,h=[],p=s.preserveWhitespace!==!1,b=s.whitespace,L=!1,w=!1;function R(O){if(M(O),L||O.processed||(O=va(O,s)),h.length||O===c||c.if&&(O.elseif||O.else)&&Hr(c,{exp:O.elseif,block:O}),u&&!O.forbidden)if(O.elseif||O.else)W=O,G=function(ie){for(var Oe=ie.length;Oe--;){if(ie[Oe].type===1)return ie[Oe];ie.pop()}}(u.children),G&&G.if&&Hr(G,{exp:W.elseif,block:W});else{if(O.slotScope){var $=O.slotTarget||'"default"';(u.scopedSlots||(u.scopedSlots={}))[$]=O}u.children.push(O),O.parent=u}var W,G;O.children=O.children.filter(function(ie){return!ie.slotScope}),M(O),O.pre&&(L=!1),ts(O.tag)&&(w=!1);for(var se=0;se<es.length;se++)es[se](O,s)}function M(O){if(!w)for(var $=void 0;($=O.children[O.children.length-1])&&$.type===3&&$.text===" ";)O.children.pop()}return Ep(a,{warn:ec,expectHTML:s.expectHTML,isUnaryTag:s.isUnaryTag,canBeLeftOpenTag:s.canBeLeftOpenTag,shouldDecodeNewlines:s.shouldDecodeNewlines,shouldDecodeNewlinesForHref:s.shouldDecodeNewlinesForHref,shouldKeepComment:s.comments,outputSourceRange:s.outputSourceRange,start:function(O,$,W,G,se){var ie=u&&u.ns||nc(O);pt&&ie==="svg"&&($=function(Be){for(var Ue=[],Qe=0;Qe<Be.length;Qe++){var N=Be[Qe];kp.test(N.name)||(N.name=N.name.replace(Pp,""),Ue.push(N))}return Ue}($));var Oe,Ce=as(O,$,u);ie&&(Ce.ns=ie),(Oe=Ce).tag!=="style"&&(Oe.tag!=="script"||Oe.attrsMap.type&&Oe.attrsMap.type!=="text/javascript")||mt()||(Ce.forbidden=!0);for(var et=0;et<qo.length;et++)Ce=qo[et](Ce,s)||Ce;L||(function(Be){kt(Be,"v-pre")!=null&&(Be.pre=!0)}(Ce),Ce.pre&&(L=!0)),ts(Ce.tag)&&(w=!0),L?function(Be){var Ue=Be.attrsList,Qe=Ue.length;if(Qe)for(var N=Be.attrs=new Array(Qe),Z=0;Z<Qe;Z++)N[Z]={name:Ue[Z].name,value:JSON.stringify(Ue[Z].value)},Ue[Z].start!=null&&(N[Z].start=Ue[Z].start,N[Z].end=Ue[Z].end);else Be.pre||(Be.plain=!0)}(Ce):Ce.processed||(sc(Ce),function(Be){var Ue=kt(Be,"v-if");if(Ue)Be.if=Ue,Hr(Be,{exp:Ue,block:Be});else{kt(Be,"v-else")!=null&&(Be.else=!0);var Qe=kt(Be,"v-else-if");Qe&&(Be.elseif=Qe)}}(Ce),function(Be){kt(Be,"v-once")!=null&&(Be.once=!0)}(Ce)),c||(c=Ce),W?R(Ce):(u=Ce,h.push(Ce))},end:function(O,$,W){var G=h[h.length-1];h.length-=1,u=h[h.length-1],R(G)},chars:function(O,$,W){if(u&&(!pt||u.tag!=="textarea"||u.attrsMap.placeholder!==O)){var G,se=u.children;if(O=w||O.trim()?(G=u).tag==="script"||G.tag==="style"?O:Dp(O):se.length?b?b==="condense"&&Op.test(O)?"":" ":p?" ":"":""){w||b!=="condense"||(O=O.replace(_p," "));var ie=void 0,Oe=void 0;!L&&O!==" "&&(ie=function(Ce,et){var Be=et?lp(et):sp;if(Be.test(Ce)){for(var Ue,Qe,N,Z=[],we=[],_e=Be.lastIndex=0;Ue=Be.exec(Ce);){(Qe=Ue.index)>_e&&(we.push(N=Ce.slice(_e,Qe)),Z.push(JSON.stringify(N)));var Ye=Po(Ue[1].trim());Z.push("_s(".concat(Ye,")")),we.push({"@binding":Ye}),_e=Qe+Ue[0].length}return _e<Ce.length&&(we.push(N=Ce.slice(_e)),Z.push(JSON.stringify(N))),{expression:Z.join("+"),tokens:we}}}(O,tc))?Oe={type:2,expression:ie.expression,tokens:ie.tokens,text:O}:O===" "&&se.length&&se[se.length-1].text===" "||(Oe={type:3,text:O}),Oe&&se.push(Oe)}}},comment:function(O,$,W){if(u){var G={type:3,text:O,isComment:!0};u.children.push(G)}}}),c}function va(a,s){var c,u;(u=fn(c=a,"key"))&&(c.key=u),a.plain=!a.key&&!a.scopedSlots&&!a.attrsList.length,function(p){var b=fn(p,"ref");b&&(p.ref=b,p.refInFor=function(L){for(var w=L;w;){if(w.for!==void 0)return!0;w=w.parent}return!1}(p))}(a),function(p){var b;p.tag==="template"?(b=kt(p,"scope"),p.slotScope=b||kt(p,"slot-scope")):(b=kt(p,"slot-scope"))&&(p.slotScope=b);var L=fn(p,"slot");if(L&&(p.slotTarget=L==='""'?'"default"':L,p.slotTargetDynamic=!(!p.attrsMap[":slot"]&&!p.attrsMap["v-bind:slot"]),p.tag==="template"||p.slotScope||No(p,"slot",L,function(ie,Oe){return ie.rawAttrsMap[":"+Oe]||ie.rawAttrsMap["v-bind:"+Oe]||ie.rawAttrsMap[Oe]}(p,"slot"))),p.tag==="template"){if(O=s0(p,is)){var w=lc(O),R=w.name,M=w.dynamic;p.slotTarget=R,p.slotTargetDynamic=M,p.slotScope=O.value||ha}}else{var O;if(O=s0(p,is)){var $=p.scopedSlots||(p.scopedSlots={}),W=lc(O),G=W.name,se=(M=W.dynamic,$[G]=as("template",[],p));se.slotTarget=G,se.slotTargetDynamic=M,se.children=p.children.filter(function(ie){if(!ie.slotScope)return ie.parent=se,!0}),se.slotScope=O.value||ha,p.children=[],p.plain=!1}}}(a),function(p){p.tag==="slot"&&(p.slotName=fn(p,"name"))}(a),function(p){var b;(b=fn(p,"is"))&&(p.component=b),kt(p,"inline-template")!=null&&(p.inlineTemplate=!0)}(a);for(var h=0;h<Xo.length;h++)a=Xo[h](a,s)||a;return function(p){var b,L,w,R,M,O,$,W,G=p.attrsList;for(b=0,L=G.length;b<L;b++)if(w=R=G[b].name,M=G[b].value,rs.test(w))if(p.hasBindings=!0,(O=Mp(w.replace(rs,"")))&&(w=w.replace(oc,"")),ac.test(w))w=w.replace(ac,""),M=Po(M),(W=pa.test(w))&&(w=w.slice(1,-1)),O&&(O.prop&&!W&&(w=F(w))==="innerHtml"&&(w="innerHTML"),O.camel&&!W&&(w=F(w)),O.sync&&($=Jn(M,"$event"),W?Nn(p,'"update:"+('.concat(w,")"),$,null,!1,0,G[b],!0):(Nn(p,"update:".concat(F(w)),$,null,!1,0,G[b]),U(w)!==F(w)&&Nn(p,"update:".concat(U(w)),$,null,!1,0,G[b])))),O&&O.prop||!p.component&&ns(p.tag,p.attrsMap.type,w)?pr(p,w,M,G[b],W):No(p,w,M,G[b],W);else if(rc.test(w))w=w.replace(rc,""),(W=pa.test(w))&&(w=w.slice(1,-1)),Nn(p,w,M,O,!1,0,G[b],W);else{var se=(w=w.replace(rs,"")).match(Tp),ie=se&&se[1];W=!1,ie&&(w=w.slice(0,-(ie.length+1)),pa.test(ie)&&(ie=ie.slice(1,-1),W=!0)),N9(p,w,R,M,ie,W,O,G[b])}else No(p,w,JSON.stringify(M),G[b]),!p.component&&w==="muted"&&ns(p.tag,p.attrsMap.type,w)&&pr(p,w,"true",G[b])}(a),a}function sc(a){var s;if(s=kt(a,"v-for")){var c=function(u){var h=u.match(Cp);if(!!h){var p={};p.for=h[2].trim();var b=h[1].trim().replace(xp,""),L=b.match(ic);return L?(p.alias=b.replace(ic,"").trim(),p.iterator1=L[1].trim(),L[2]&&(p.iterator2=L[2].trim())):p.alias=b,p}}(s);c&&de(a,c)}}function Hr(a,s){a.ifConditions||(a.ifConditions=[]),a.ifConditions.push(s)}function lc(a){var s=a.name.replace(is,"");return s||a.name[0]!=="#"&&(s="default"),pa.test(s)?{name:s.slice(1,-1),dynamic:!0}:{name:'"'.concat(s,'"'),dynamic:!1}}function Mp(a){var s=a.match(oc);if(s){var c={};return s.forEach(function(u){c[u.slice(1)]=!0}),c}}function Ip(a){for(var s={},c=0,u=a.length;c<u;c++)s[a[c].name]=a[c].value;return s}var kp=/^xmlns:NS\d+/,Pp=/^NS\d+:/;function os(a){return as(a.tag,a.attrsList.slice(),a.parent)}var cc=[cp,up,{preTransformNode:function(a,s){if(a.tag==="input"){var c=a.attrsMap;if(!c["v-model"])return;var u=void 0;if((c[":type"]||c["v-bind:type"])&&(u=fn(a,"type")),c.type||u||!c["v-bind"]||(u="(".concat(c["v-bind"],").type")),u){var h=kt(a,"v-if",!0),p=h?"&&(".concat(h,")"):"",b=kt(a,"v-else",!0)!=null,L=kt(a,"v-else-if",!0),w=os(a);sc(w),jo(w,"type","checkbox"),va(w,s),w.processed=!0,w.if="(".concat(u,")==='checkbox'")+p,Hr(w,{exp:w.if,block:w});var R=os(a);kt(R,"v-for",!0),jo(R,"type","radio"),va(R,s),Hr(w,{exp:"(".concat(u,")==='radio'")+p,block:R});var M=os(a);return kt(M,"v-for",!0),jo(M,":type",u),va(M,s),Hr(w,{exp:h,block:M}),b?w.else=!0:L&&(w.elseif=L),w}}}}],uc,ss,Np={model:function(a,s,c){var u=s.value,h=s.modifiers,p=a.tag,b=a.attrsMap.type;if(a.component)return l0(a,u,h),!1;if(p==="select")(function(L,w,R){var M=R&&R.number,O='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;'+"return ".concat(M?"_n(val)":"val","})"),$="$event.target.multiple ? $$selectedVal : $$selectedVal[0]",W="var $$selectedVal = ".concat(O,";");W="".concat(W," ").concat(Jn(w,$)),Nn(L,"change",W,null,!0)})(a,u,h);else if(p==="input"&&b==="checkbox")(function(L,w,R){var M=R&&R.number,O=fn(L,"value")||"null",$=fn(L,"true-value")||"true",W=fn(L,"false-value")||"false";pr(L,"checked","Array.isArray(".concat(w,")")+"?_i(".concat(w,",").concat(O,")>-1")+($==="true"?":(".concat(w,")"):":_q(".concat(w,",").concat($,")"))),Nn(L,"change","var $$a=".concat(w,",")+"$$el=$event.target,"+"$$c=$$el.checked?(".concat($,"):(").concat(W,");")+"if(Array.isArray($$a)){"+"var $$v=".concat(M?"_n("+O+")":O,",")+"$$i=_i($$a,$$v);"+"if($$el.checked){$$i<0&&(".concat(Jn(w,"$$a.concat([$$v])"),")}")+"else{$$i>-1&&(".concat(Jn(w,"$$a.slice(0,$$i).concat($$a.slice($$i+1))"),")}")+"}else{".concat(Jn(w,"$$c"),"}"),null,!0)})(a,u,h);else if(p==="input"&&b==="radio")(function(L,w,R){var M=R&&R.number,O=fn(L,"value")||"null";O=M?"_n(".concat(O,")"):O,pr(L,"checked","_q(".concat(w,",").concat(O,")")),Nn(L,"change",Jn(w,O),null,!0)})(a,u,h);else if(p==="input"||p==="textarea")(function(L,w,R){var M=L.attrsMap.type,O=R||{},$=O.lazy,W=O.number,G=O.trim,se=!$&&M!=="range",ie=$?"change":M==="range"?$9:"input",Oe="$event.target.value";G&&(Oe="$event.target.value.trim()"),W&&(Oe="_n(".concat(Oe,")"));var Ce=Jn(w,Oe);se&&(Ce="if($event.target.composing)return;".concat(Ce)),pr(L,"value","(".concat(w,")")),Nn(L,ie,Ce,null,!0),(G||W)&&Nn(L,"blur","$forceUpdate()")})(a,u,h);else if(!le.isReservedTag(p))return l0(a,u,h),!1;return!0},text:function(a,s){s.value&&pr(a,"textContent","_s(".concat(s.value,")"),s)},html:function(a,s){s.value&&pr(a,"innerHTML","_s(".concat(s.value,")"),s)}},jp={expectHTML:!0,modules:cc,directives:Np,isPreTag:function(a){return a==="pre"},isUnaryTag:fp,mustUseProp:Zl,canBeLeftOpenTag:pp,isReservedTag:_o,getTagNamespace:Xl,staticKeys:function(a){return a.reduce(function(s,c){return s.concat(c.staticKeys||[])},[]).join(",")}(cc)},$p=H(function(a){return T("type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap"+(a?","+a:""))});function Hp(a,s){a&&(uc=$p(s.staticKeys||""),ss=s.isReservedTag||Te,ls(a),cs(a,!1))}function ls(a){if(a.static=function(p){return p.type===2?!1:p.type===3?!0:!(!p.pre&&(p.hasBindings||p.if||p.for||D(p.tag)||!ss(p.tag)||function(b){for(;b.parent;){if((b=b.parent).tag!=="template")return!1;if(b.for)return!0}return!1}(p)||!Object.keys(p).every(uc)))}(a),a.type===1){if(!ss(a.tag)&&a.tag!=="slot"&&a.attrsMap["inline-template"]==null)return;for(var s=0,c=a.children.length;s<c;s++){var u=a.children[s];ls(u),u.static||(a.static=!1)}if(a.ifConditions)for(s=1,c=a.ifConditions.length;s<c;s++){var h=a.ifConditions[s].block;ls(h),h.static||(a.static=!1)}}}function cs(a,s){if(a.type===1){if((a.static||a.once)&&(a.staticInFor=s),a.static&&a.children.length&&(a.children.length!==1||a.children[0].type!==3))return void(a.staticRoot=!0);if(a.staticRoot=!1,a.children)for(var c=0,u=a.children.length;c<u;c++)cs(a.children[c],s||!!a.for);if(a.ifConditions)for(c=1,u=a.ifConditions.length;c<u;c++)cs(a.ifConditions[c].block,s)}}var Bp=/^([\w$_]+|\([^)]*?\))\s*=>|^function(?:\s+[\w$]+)?\s*\(/,Fp=/\([^)]*?\);*$/,dc=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,fc={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},Vp={esc:["Esc","Escape"],tab:"Tab",enter:"Enter",space:[" ","Spacebar"],up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete","Del"]},$n=function(a){return"if(".concat(a,")return null;")},pc={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:$n("$event.target !== $event.currentTarget"),ctrl:$n("!$event.ctrlKey"),shift:$n("!$event.shiftKey"),alt:$n("!$event.altKey"),meta:$n("!$event.metaKey"),left:$n("'button' in $event && $event.button !== 0"),middle:$n("'button' in $event && $event.button !== 1"),right:$n("'button' in $event && $event.button !== 2")};function hc(a,s){var c=s?"nativeOn:":"on:",u="",h="";for(var p in a){var b=vc(a[p]);a[p]&&a[p].dynamic?h+="".concat(p,",").concat(b,","):u+='"'.concat(p,'":').concat(b,",")}return u="{".concat(u.slice(0,-1),"}"),h?c+"_d(".concat(u,",[").concat(h.slice(0,-1),"])"):c+u}function vc(a){if(!a)return"function(){}";if(Array.isArray(a))return"[".concat(a.map(function(M){return vc(M)}).join(","),"]");var s=dc.test(a.value),c=Bp.test(a.value),u=dc.test(a.value.replace(Fp,""));if(a.modifiers){var h="",p="",b=[],L=function(M){if(pc[M])p+=pc[M],fc[M]&&b.push(M);else if(M==="exact"){var O=a.modifiers;p+=$n(["ctrl","shift","alt","meta"].filter(function($){return!O[$]}).map(function($){return"$event.".concat($,"Key")}).join("||"))}else b.push(M)};for(var w in a.modifiers)L(w);b.length&&(h+=function(M){return"if(!$event.type.indexOf('key')&&"+"".concat(M.map(zp).join("&&"),")return null;")}(b)),p&&(h+=p);var R=s?"return ".concat(a.value,".apply(null, arguments)"):c?"return (".concat(a.value,").apply(null, arguments)"):u?"return ".concat(a.value):a.value;return"function($event){".concat(h).concat(R,"}")}return s||c?a.value:"function($event){".concat(u?"return ".concat(a.value):a.value,"}")}function zp(a){var s=parseInt(a,10);if(s)return"$event.keyCode!==".concat(s);var c=fc[a],u=Vp[a];return"_k($event.keyCode,"+"".concat(JSON.stringify(a),",")+"".concat(JSON.stringify(c),",")+"$event.key,"+"".concat(JSON.stringify(u))+")"}var Up={on:function(a,s){a.wrapListeners=function(c){return"_g(".concat(c,",").concat(s.value,")")}},bind:function(a,s){a.wrapData=function(c){return"_b(".concat(c,",'").concat(a.tag,"',").concat(s.value,",").concat(s.modifiers&&s.modifiers.prop?"true":"false").concat(s.modifiers&&s.modifiers.sync?",true":"",")")}},cloak:Ae},Wp=function(a){this.options=a,this.warn=a.warn||o0,this.transforms=ui(a.modules,"transformCode"),this.dataGenFns=ui(a.modules,"genData"),this.directives=de(de({},Up),a.directives);var s=a.isReservedTag||Te;this.maybeComponent=function(c){return!!c.component||!s(c.tag)},this.onceId=0,this.staticRenderFns=[],this.pre=!1};function gc(a,s){var c=new Wp(s),u=a?a.tag==="script"?"null":Hn(a,c):'_c("div")';return{render:"with(this){return ".concat(u,"}"),staticRenderFns:c.staticRenderFns}}function Hn(a,s){if(a.parent&&(a.pre=a.pre||a.parent.pre),a.staticRoot&&!a.staticProcessed)return mc(a,s);if(a.once&&!a.onceProcessed)return yc(a,s);if(a.for&&!a.forProcessed)return Sc(a,s);if(a.if&&!a.ifProcessed)return us(a,s);if(a.tag!=="template"||a.slotTarget||s.pre){if(a.tag==="slot")return function(R,M){var O=R.slotName||'"default"',$=Br(R,M),W="_t(".concat(O).concat($?",function(){return ".concat($,"}"):""),G=R.attrs||R.dynamicAttrs?ga((R.attrs||[]).concat(R.dynamicAttrs||[]).map(function(ie){return{name:F(ie.name),value:ie.value,dynamic:ie.dynamic}})):null,se=R.attrsMap["v-bind"];return!G&&!se||$||(W+=",null"),G&&(W+=",".concat(G)),se&&(W+="".concat(G?"":",null",",").concat(se)),W+")"}(a,s);var c=void 0;if(a.component)c=function(R,M,O){var $=M.inlineTemplate?null:Br(M,O,!0);return"_c(".concat(R,",").concat(Ac(M,O)).concat($?",".concat($):"",")")}(a.component,a,s);else{var u=void 0,h=s.maybeComponent(a);(!a.plain||a.pre&&h)&&(u=Ac(a,s));var p=void 0,b=s.options.bindings;h&&b&&b.__isScriptSetup!==!1&&(p=function(R,M){var O=F(M),$=ce(O),W=function(ie){return R[M]===ie?M:R[O]===ie?O:R[$]===ie?$:void 0},G=W("setup-const")||W("setup-reactive-const");if(G)return G;var se=W("setup-let")||W("setup-ref")||W("setup-maybe-ref");if(se)return se}(b,a.tag)),p||(p="'".concat(a.tag,"'"));var L=a.inlineTemplate?null:Br(a,s,!0);c="_c(".concat(p).concat(u?",".concat(u):"").concat(L?",".concat(L):"",")")}for(var w=0;w<s.transforms.length;w++)c=s.transforms[w](a,c);return c}return Br(a,s)||"void 0"}function mc(a,s){a.staticProcessed=!0;var c=s.pre;return a.pre&&(s.pre=a.pre),s.staticRenderFns.push("with(this){return ".concat(Hn(a,s),"}")),s.pre=c,"_m(".concat(s.staticRenderFns.length-1).concat(a.staticInFor?",true":"",")")}function yc(a,s){if(a.onceProcessed=!0,a.if&&!a.ifProcessed)return us(a,s);if(a.staticInFor){for(var c="",u=a.parent;u;){if(u.for){c=u.key;break}u=u.parent}return c?"_o(".concat(Hn(a,s),",").concat(s.onceId++,",").concat(c,")"):Hn(a,s)}return mc(a,s)}function us(a,s,c,u){return a.ifProcessed=!0,bc(a.ifConditions.slice(),s,c,u)}function bc(a,s,c,u){if(!a.length)return u||"_e()";var h=a.shift();return h.exp?"(".concat(h.exp,")?").concat(p(h.block),":").concat(bc(a,s,c,u)):"".concat(p(h.block));function p(b){return c?c(b,s):b.once?yc(b,s):Hn(b,s)}}function Sc(a,s,c,u){var h=a.for,p=a.alias,b=a.iterator1?",".concat(a.iterator1):"",L=a.iterator2?",".concat(a.iterator2):"";return a.forProcessed=!0,"".concat(u||"_l","((").concat(h,"),")+"function(".concat(p).concat(b).concat(L,"){")+"return ".concat((c||Hn)(a,s))+"})"}function Ac(a,s){var c="{",u=function(b,L){var w=b.directives;if(!!w){var R,M,O,$,W="directives:[",G=!1;for(R=0,M=w.length;R<M;R++){O=w[R],$=!0;var se=L.directives[O.name];se&&($=!!se(b,O,L.warn)),$&&(G=!0,W+='{name:"'.concat(O.name,'",rawName:"').concat(O.rawName,'"').concat(O.value?",value:(".concat(O.value,"),expression:").concat(JSON.stringify(O.value)):"").concat(O.arg?",arg:".concat(O.isDynamicArg?O.arg:'"'.concat(O.arg,'"')):"").concat(O.modifiers?",modifiers:".concat(JSON.stringify(O.modifiers)):"","},"))}if(G)return W.slice(0,-1)+"]"}}(a,s);u&&(c+=u+","),a.key&&(c+="key:".concat(a.key,",")),a.ref&&(c+="ref:".concat(a.ref,",")),a.refInFor&&(c+="refInFor:true,"),a.pre&&(c+="pre:true,"),a.component&&(c+='tag:"'.concat(a.tag,'",'));for(var h=0;h<s.dataGenFns.length;h++)c+=s.dataGenFns[h](a);if(a.attrs&&(c+="attrs:".concat(ga(a.attrs),",")),a.props&&(c+="domProps:".concat(ga(a.props),",")),a.events&&(c+="".concat(hc(a.events,!1),",")),a.nativeEvents&&(c+="".concat(hc(a.nativeEvents,!0),",")),a.slotTarget&&!a.slotScope&&(c+="slot:".concat(a.slotTarget,",")),a.scopedSlots&&(c+="".concat(function(b,L,w){var R=b.for||Object.keys(L).some(function(W){var G=L[W];return G.slotTargetDynamic||G.if||G.for||Lc(G)}),M=!!b.if;if(!R)for(var O=b.parent;O;){if(O.slotScope&&O.slotScope!==ha||O.for){R=!0;break}O.if&&(M=!0),O=O.parent}var $=Object.keys(L).map(function(W){return ds(L[W],w)}).join(",");return"scopedSlots:_u([".concat($,"]").concat(R?",null,true":"").concat(!R&&M?",null,false,".concat(function(W){for(var G=5381,se=W.length;se;)G=33*G^W.charCodeAt(--se);return G>>>0}($)):"",")")}(a,a.scopedSlots,s),",")),a.model&&(c+="model:{value:".concat(a.model.value,",callback:").concat(a.model.callback,",expression:").concat(a.model.expression,"},")),a.inlineTemplate){var p=function(b,L){var w=b.children[0];if(w&&w.type===1){var R=gc(w,L.options);return"inlineTemplate:{render:function(){".concat(R.render,"},staticRenderFns:[").concat(R.staticRenderFns.map(function(M){return"function(){".concat(M,"}")}).join(","),"]}")}}(a,s);p&&(c+="".concat(p,","))}return c=c.replace(/,$/,"")+"}",a.dynamicAttrs&&(c="_b(".concat(c,',"').concat(a.tag,'",').concat(ga(a.dynamicAttrs),")")),a.wrapData&&(c=a.wrapData(c)),a.wrapListeners&&(c=a.wrapListeners(c)),c}function Lc(a){return a.type===1&&(a.tag==="slot"||a.children.some(Lc))}function ds(a,s){var c=a.attrsMap["slot-scope"];if(a.if&&!a.ifProcessed&&!c)return us(a,s,ds,"null");if(a.for&&!a.forProcessed)return Sc(a,s,ds);var u=a.slotScope===ha?"":String(a.slotScope),h="function(".concat(u,"){")+"return ".concat(a.tag==="template"?a.if&&c?"(".concat(a.if,")?").concat(Br(a,s)||"undefined",":undefined"):Br(a,s)||"undefined":Hn(a,s),"}"),p=u?"":",proxy:true";return"{key:".concat(a.slotTarget||'"default"',",fn:").concat(h).concat(p,"}")}function Br(a,s,c,u,h){var p=a.children;if(p.length){var b=p[0];if(p.length===1&&b.for&&b.tag!=="template"&&b.tag!=="slot"){var L=c?s.maybeComponent(b)?",1":",0":"";return"".concat((u||Hn)(b,s)).concat(L)}var w=c?function(M,O){for(var $=0,W=0;W<M.length;W++){var G=M[W];if(G.type===1){if(wc(G)||G.ifConditions&&G.ifConditions.some(function(se){return wc(se.block)})){$=2;break}(O(G)||G.ifConditions&&G.ifConditions.some(function(se){return O(se.block)}))&&($=1)}}return $}(p,s.maybeComponent):0,R=h||Gp;return"[".concat(p.map(function(M){return R(M,s)}).join(","),"]").concat(w?",".concat(w):"")}}function wc(a){return a.for!==void 0||a.tag==="template"||a.tag==="slot"}function Gp(a,s){return a.type===1?Hn(a,s):a.type===3&&a.isComment?function(c){return"_e(".concat(JSON.stringify(c.text),")")}(a):function(c){return"_v(".concat(c.type===2?c.expression:Ec(JSON.stringify(c.text)),")")}(a)}function ga(a){for(var s="",c="",u=0;u<a.length;u++){var h=a[u],p=Ec(h.value);h.dynamic?c+="".concat(h.name,",").concat(p,","):s+='"'.concat(h.name,'":').concat(p,",")}return s="{".concat(s.slice(0,-1),"}"),c?"_d(".concat(s,",[").concat(c.slice(0,-1),"])"):s}function Ec(a){return a.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}function Cc(a,s){try{return new Function(a)}catch(c){return s.push({err:c,code:a}),Ae}}function Yp(a){var s=Object.create(null);return function(c,u,h){(u=de({},u)).warn,delete u.warn;var p=u.delimiters?String(u.delimiters)+c:c;if(s[p])return s[p];var b=a(c,u),L={},w=[];return L.render=Cc(b.render,w),L.staticRenderFns=b.staticRenderFns.map(function(R){return Cc(R,w)}),s[p]=L}}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");var xc,fs,Zp=(xc=function(a,s){var c=Rp(a.trim(),s);s.optimize!==!1&&Hp(c,s);var u=gc(c,s);return{ast:c,render:u.render,staticRenderFns:u.staticRenderFns}},function(a){function s(c,u){var h=Object.create(a),p=[],b=[];if(u)for(var L in u.modules&&(h.modules=(a.modules||[]).concat(u.modules)),u.directives&&(h.directives=de(Object.create(a.directives||null),u.directives)),u)L!=="modules"&&L!=="directives"&&(h[L]=u[L]);h.warn=function(R,M,O){(O?b:p).push(R)};var w=xc(c.trim(),h);return w.errors=p,w.tips=b,w}return{compile:s,compileToFunctions:Yp(s)}}),Tc=Zp(jp).compileToFunctions;function Oc(a){return(fs=fs||document.createElement("div")).innerHTML=a?`<a href=" "/>`:`<div a=" -"/>`,fs.innerHTML.indexOf(" ")>0}var Qp=!!Ne&&Oc(!1),Kp=!!Ne&&Oc(!0),Jp=H(function(a){var s=Ro(a);return s&&s.innerHTML}),Xp=bt.prototype.$mount;return bt.prototype.$mount=function(a,s){if((a=a&&Ro(a))===document.body||a===document.documentElement)return this;var c=this.$options;if(!c.render){var u=c.template;if(u)if(typeof u=="string")u.charAt(0)==="#"&&(u=Jp(u));else{if(!u.nodeType)return this;u=u.innerHTML}else a&&(u=function(L){if(L.outerHTML)return L.outerHTML;var w=document.createElement("div");return w.appendChild(L.cloneNode(!0)),w.innerHTML}(a));if(u){var h=Tc(u,{outputSourceRange:!1,shouldDecodeNewlines:Qp,shouldDecodeNewlinesForHref:Kp,delimiters:c.delimiters,comments:c.comments},this),p=h.render,b=h.staticRenderFns;c.render=p,c.staticRenderFns=b}}return Xp.call(this,a,s)},bt.compile=Tc,de(bt,a9),bt.effect=function(a,s){var c=new Nr(Ke,a,Ae,{sync:!0});s&&(c.update=function(){s(function(){return c.run()})})},bt})})(Gs);const Rt=Xu(Gs.exports),qu=function(n,e,t){for(var r=0;r<n.length;r++)e.call(t,n[r])};function qp(){return Math.max(document.documentElement.clientWidth||0,window.innerWidth||0)}function Tn(){return qp()>=1200}var ed={exports:{}};(function(n,e){(function(r,i){n.exports=i()})(typeof self!="undefined"?self:_a,function(){return function(t){var r={};function i(o){if(r[o])return r[o].exports;var l=r[o]={i:o,l:!1,exports:{}};return t[o].call(l.exports,l,l.exports,i),l.l=!0,l.exports}return i.m=t,i.c=r,i.d=function(o,l,d){i.o(o,l)||Object.defineProperty(o,l,{enumerable:!0,get:d})},i.r=function(o){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},i.t=function(o,l){if(l&1&&(o=i(o)),l&8||l&4&&typeof o=="object"&&o&&o.__esModule)return o;var d=Object.create(null);if(i.r(d),Object.defineProperty(d,"default",{enumerable:!0,value:o}),l&2&&typeof o!="string")for(var f in o)i.d(d,f,function(g){return o[g]}.bind(null,f));return d},i.n=function(o){var l=o&&o.__esModule?function(){return o.default}:function(){return o};return i.d(l,"a",l),l},i.o=function(o,l){return Object.prototype.hasOwnProperty.call(o,l)},i.p="",i(i.s="fb15")}({"00ee":function(t,r,i){var o=i("b622"),l=o("toStringTag"),d={};d[l]="z",t.exports=String(d)==="[object z]"},"0366":function(t,r,i){var o=i("1c0b");t.exports=function(l,d,f){if(o(l),d===void 0)return l;switch(f){case 0:return function(){return l.call(d)};case 1:return function(g){return l.call(d,g)};case 2:return function(g,v){return l.call(d,g,v)};case 3:return function(g,v,y){return l.call(d,g,v,y)}}return function(){return l.apply(d,arguments)}}},"0497":function(t,r){var i=function(o){return o.replace(/[A-Z]/g,function(l){return"-"+l.toLowerCase()}).toLowerCase()};t.exports=i},"057f":function(t,r,i){var o=i("fc6a"),l=i("241c").f,d={}.toString,f=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],g=function(v){try{return l(v)}catch(y){return f.slice()}};t.exports.f=function(y){return f&&d.call(y)=="[object Window]"?g(y):l(o(y))}},"06cf":function(t,r,i){var o=i("83ab"),l=i("d1e7"),d=i("5c6c"),f=i("fc6a"),g=i("c04e"),v=i("5135"),y=i("0cfb"),A=Object.getOwnPropertyDescriptor;r.f=o?A:function(C,_){if(C=f(C),_=g(_,!0),y)try{return A(C,_)}catch(T){}if(v(C,_))return d(!l.f.call(C,_),C[_])}},"07ac":function(t,r,i){var o=i("23e7"),l=i("6f53").values;o({target:"Object",stat:!0},{values:function(f){return l(f)}})},"0cfb":function(t,r,i){var o=i("83ab"),l=i("d039"),d=i("cc12");t.exports=!o&&!l(function(){return Object.defineProperty(d("div"),"a",{get:function(){return 7}}).a!=7})},1276:function(t,r,i){var o=i("d784"),l=i("44e7"),d=i("825a"),f=i("1d80"),g=i("4840"),v=i("8aa5"),y=i("50c4"),A=i("14c3"),S=i("9263"),C=i("d039"),_=[].push,T=Math.min,D=4294967295,P=!C(function(){return!RegExp(D,"y")});o("split",2,function(V,x,X){var H;return"abbc".split(/(b)*/)[1]=="c"||"test".split(/(?:)/,-1).length!=4||"ab".split(/(?:ab)*/).length!=2||".".split(/(.?)(.?)/).length!=4||".".split(/()()/).length>1||"".split(/.?/).length?H=function(Y,F){var ce=String(f(this)),ve=F===void 0?D:F>>>0;if(ve===0)return[];if(Y===void 0)return[ce];if(!l(Y))return x.call(ce,Y,ve);for(var U=[],pe=(Y.ignoreCase?"i":"")+(Y.multiline?"m":"")+(Y.unicode?"u":"")+(Y.sticky?"y":""),ge=0,de=new RegExp(Y.source,pe+"g"),xe,Ae,Te;(xe=S.call(de,ce))&&(Ae=de.lastIndex,!(Ae>ge&&(U.push(ce.slice(ge,xe.index)),xe.length>1&&xe.index<ce.length&&_.apply(U,xe.slice(1)),Te=xe[0].length,ge=Ae,U.length>=ve)));)de.lastIndex===xe.index&&de.lastIndex++;return ge===ce.length?(Te||!de.test(""))&&U.push(""):U.push(ce.slice(ge)),U.length>ve?U.slice(0,ve):U}:"0".split(void 0,0).length?H=function(Y,F){return Y===void 0&&F===0?[]:x.call(this,Y,F)}:H=x,[function(F,ce){var ve=f(this),U=F==null?void 0:F[V];return U!==void 0?U.call(F,ve,ce):H.call(String(ve),F,ce)},function(Y,F){var ce=X(H,Y,this,F,H!==x);if(ce.done)return ce.value;var ve=d(Y),U=String(this),pe=g(ve,RegExp),ge=ve.unicode,de=(ve.ignoreCase?"i":"")+(ve.multiline?"m":"")+(ve.unicode?"u":"")+(P?"y":"g"),xe=new pe(P?ve:"^(?:"+ve.source+")",de),Ae=F===void 0?D:F>>>0;if(Ae===0)return[];if(U.length===0)return A(xe,U)===null?[U]:[];for(var Te=0,Re=0,K=[];Re<U.length;){xe.lastIndex=P?Re:0;var ne=A(xe,P?U:U.slice(Re)),oe;if(ne===null||(oe=T(y(xe.lastIndex+(P?0:Re)),U.length))===Te)Re=v(U,Re,ge);else{if(K.push(U.slice(Te,Re)),K.length===Ae)return K;for(var he=1;he<=ne.length-1;he++)if(K.push(ne[he]),K.length===Ae)return K;Re=Te=oe}}return K.push(U.slice(Te)),K}]},!P)},"13d5":function(t,r,i){var o=i("23e7"),l=i("d58f").left,d=i("a640"),f=i("ae40"),g=d("reduce"),v=f("reduce",{1:0});o({target:"Array",proto:!0,forced:!g||!v},{reduce:function(A){return l(this,A,arguments.length,arguments.length>1?arguments[1]:void 0)}})},"14c3":function(t,r,i){var o=i("c6b6"),l=i("9263");t.exports=function(d,f){var g=d.exec;if(typeof g=="function"){var v=g.call(d,f);if(typeof v!="object")throw TypeError("RegExp exec method returned something other than an Object or null");return v}if(o(d)!=="RegExp")throw TypeError("RegExp#exec called on incompatible receiver");return l.call(d,f)}},"159b":function(t,r,i){var o=i("da84"),l=i("fdbc"),d=i("17c2"),f=i("9112");for(var g in l){var v=o[g],y=v&&v.prototype;if(y&&y.forEach!==d)try{f(y,"forEach",d)}catch(A){y.forEach=d}}},"17c2":function(t,r,i){var o=i("b727").forEach,l=i("a640"),d=i("ae40"),f=l("forEach"),g=d("forEach");t.exports=!f||!g?function(y){return o(this,y,arguments.length>1?arguments[1]:void 0)}:[].forEach},"1be4":function(t,r,i){var o=i("d066");t.exports=o("document","documentElement")},"1c0b":function(t,r){t.exports=function(i){if(typeof i!="function")throw TypeError(String(i)+" is not a function");return i}},"1c7e":function(t,r,i){var o=i("b622"),l=o("iterator"),d=!1;try{var f=0,g={next:function(){return{done:!!f++}},return:function(){d=!0}};g[l]=function(){return this},Array.from(g,function(){throw 2})}catch(v){}t.exports=function(v,y){if(!y&&!d)return!1;var A=!1;try{var S={};S[l]=function(){return{next:function(){return{done:A=!0}}}},v(S)}catch(C){}return A}},"1d80":function(t,r){t.exports=function(i){if(i==null)throw TypeError("Can't call method on "+i);return i}},"1dde":function(t,r,i){var o=i("d039"),l=i("b622"),d=i("2d00"),f=l("species");t.exports=function(g){return d>=51||!o(function(){var v=[],y=v.constructor={};return y[f]=function(){return{foo:1}},v[g](Boolean).foo!==1})}},"217d":function(t,r){function i(d,f){var g=0,v=d.length,y;for(g;g<v&&(y=f(d[g],g),y!==!1);g++);}function o(d){return Object.prototype.toString.apply(d)==="[object Array]"}function l(d){return typeof d=="function"}t.exports={isFunction:l,isArray:o,each:i}},"23cb":function(t,r,i){var o=i("a691"),l=Math.max,d=Math.min;t.exports=function(f,g){var v=o(f);return v<0?l(v+g,0):d(v,g)}},"23e7":function(t,r,i){var o=i("da84"),l=i("06cf").f,d=i("9112"),f=i("6eeb"),g=i("ce4e"),v=i("e893"),y=i("94ca");t.exports=function(A,S){var C=A.target,_=A.global,T=A.stat,D,P,V,x,X,H;if(_?P=o:T?P=o[C]||g(C,{}):P=(o[C]||{}).prototype,P)for(V in S){if(X=S[V],A.noTargetGet?(H=l(P,V),x=H&&H.value):x=P[V],D=y(_?V:C+(T?".":"#")+V,A.forced),!D&&x!==void 0){if(typeof X==typeof x)continue;v(X,x)}(A.sham||x&&x.sham)&&d(X,"sham",!0),f(P,V,X,A)}}},"241c":function(t,r,i){var o=i("ca84"),l=i("7839"),d=l.concat("length","prototype");r.f=Object.getOwnPropertyNames||function(g){return o(g,d)}},"25f0":function(t,r,i){var o=i("6eeb"),l=i("825a"),d=i("d039"),f=i("ad6d"),g="toString",v=RegExp.prototype,y=v[g],A=d(function(){return y.call({source:"a",flags:"b"})!="/a/b"}),S=y.name!=g;(A||S)&&o(RegExp.prototype,g,function(){var _=l(this),T=String(_.source),D=_.flags,P=String(D===void 0&&_ instanceof RegExp&&!("flags"in v)?f.call(_):D);return"/"+T+"/"+P},{unsafe:!0})},"2d00":function(t,r,i){var o=i("da84"),l=i("342f"),d=o.process,f=d&&d.versions,g=f&&f.v8,v,y;g?(v=g.split("."),y=v[0]+v[1]):l&&(v=l.match(/Edge\/(\d+)/),(!v||v[1]>=74)&&(v=l.match(/Chrome\/(\d+)/),v&&(y=v[1]))),t.exports=y&&+y},"342f":function(t,r,i){var o=i("d066");t.exports=o("navigator","userAgent")||""},"35a1":function(t,r,i){var o=i("f5df"),l=i("3f8c"),d=i("b622"),f=d("iterator");t.exports=function(g){if(g!=null)return g[f]||g["@@iterator"]||l[o(g)]}},"37e8":function(t,r,i){var o=i("83ab"),l=i("9bf2"),d=i("825a"),f=i("df75");t.exports=o?Object.defineProperties:function(v,y){d(v);for(var A=f(y),S=A.length,C=0,_;S>C;)l.f(v,_=A[C++],y[_]);return v}},"3b81":function(t,r,i){},"3bbe":function(t,r,i){var o=i("861d");t.exports=function(l){if(!o(l)&&l!==null)throw TypeError("Can't set "+String(l)+" as a prototype");return l}},"3ca3":function(t,r,i){var o=i("6547").charAt,l=i("69f3"),d=i("7dd0"),f="String Iterator",g=l.set,v=l.getterFor(f);d(String,"String",function(y){g(this,{type:f,string:String(y),index:0})},function(){var A=v(this),S=A.string,C=A.index,_;return C>=S.length?{value:void 0,done:!0}:(_=o(S,C),A.index+=_.length,{value:_,done:!1})})},"3f8c":function(t,r){t.exports={}},4160:function(t,r,i){var o=i("23e7"),l=i("17c2");o({target:"Array",proto:!0,forced:[].forEach!=l},{forEach:l})},"428f":function(t,r,i){var o=i("da84");t.exports=o},"42a0":function(t,r){var i=9007199254740991,o="[object Arguments]",l="[object Function]",d="[object GeneratorFunction]",f=/^(?:0|[1-9]\d*)$/;function g(B,re,k){switch(k.length){case 0:return B.call(re);case 1:return B.call(re,k[0]);case 2:return B.call(re,k[0],k[1]);case 3:return B.call(re,k[0],k[1],k[2])}return B.apply(re,k)}function v(B,re){for(var k=-1,le=Array(B);++k<B;)le[k]=re(k);return le}function y(B,re){return function(k){return B(re(k))}}var A=Object.prototype,S=A.hasOwnProperty,C=A.toString,_=A.propertyIsEnumerable,T=y(Object.keys,Object),D=Math.max,P=!_.call({valueOf:1},"valueOf");function V(B,re){var k=de(B)||ge(B)?v(B.length,String):[],le=k.length,Le=!!le;for(var Ie in B)(re||S.call(B,Ie))&&!(Le&&(Ie=="length"||ce(Ie,le)))&&k.push(Ie);return k}function x(B,re,k){var le=B[re];(!(S.call(B,re)&&pe(le,k))||k===void 0&&!(re in B))&&(B[re]=k)}function X(B){if(!U(B))return T(B);var re=[];for(var k in Object(B))S.call(B,k)&&k!="constructor"&&re.push(k);return re}function H(B,re){return re=D(re===void 0?B.length-1:re,0),function(){for(var k=arguments,le=-1,Le=D(k.length-re,0),Ie=Array(Le);++le<Le;)Ie[le]=k[re+le];le=-1;for(var Ee=Array(re+1);++le<re;)Ee[le]=k[le];return Ee[re]=Ie,g(B,this,Ee)}}function Y(B,re,k,le){k||(k={});for(var Le=-1,Ie=re.length;++Le<Ie;){var Ee=re[Le],it=le?le(k[Ee],B[Ee],Ee,k,B):void 0;x(k,Ee,it===void 0?B[Ee]:it)}return k}function F(B){return H(function(re,k){var le=-1,Le=k.length,Ie=Le>1?k[Le-1]:void 0,Ee=Le>2?k[2]:void 0;for(Ie=B.length>3&&typeof Ie=="function"?(Le--,Ie):void 0,Ee&&ve(k[0],k[1],Ee)&&(Ie=Le<3?void 0:Ie,Le=1),re=Object(re);++le<Le;){var it=k[le];it&&B(re,it,le,Ie)}return re})}function ce(B,re){return re=re==null?i:re,!!re&&(typeof B=="number"||f.test(B))&&B>-1&&B%1==0&&B<re}function ve(B,re,k){if(!K(k))return!1;var le=typeof re;return(le=="number"?xe(k)&&ce(re,k.length):le=="string"&&re in k)?pe(k[re],B):!1}function U(B){var re=B&&B.constructor,k=typeof re=="function"&&re.prototype||A;return B===k}function pe(B,re){return B===re||B!==B&&re!==re}function ge(B){return Ae(B)&&S.call(B,"callee")&&(!_.call(B,"callee")||C.call(B)==o)}var de=Array.isArray;function xe(B){return B!=null&&Re(B.length)&&!Te(B)}function Ae(B){return ne(B)&&xe(B)}function Te(B){var re=K(B)?C.call(B):"";return re==l||re==d}function Re(B){return typeof B=="number"&&B>-1&&B%1==0&&B<=i}function K(B){var re=typeof B;return!!B&&(re=="object"||re=="function")}function ne(B){return!!B&&typeof B=="object"}var oe=F(function(B,re){if(P||U(re)||xe(re)){Y(re,he(re),B);return}for(var k in re)S.call(re,k)&&x(B,k,re[k])});function he(B){return xe(B)?V(B):X(B)}t.exports=oe},"44ad":function(t,r,i){var o=i("d039"),l=i("c6b6"),d="".split;t.exports=o(function(){return!Object("z").propertyIsEnumerable(0)})?function(f){return l(f)=="String"?d.call(f,""):Object(f)}:Object},"44d2":function(t,r,i){var o=i("b622"),l=i("7c73"),d=i("9bf2"),f=o("unscopables"),g=Array.prototype;g[f]==null&&d.f(g,f,{configurable:!0,value:l(null)}),t.exports=function(v){g[f][v]=!0}},"44e7":function(t,r,i){var o=i("861d"),l=i("c6b6"),d=i("b622"),f=d("match");t.exports=function(g){var v;return o(g)&&((v=g[f])!==void 0?!!v:l(g)=="RegExp")}},"466d":function(t,r,i){var o=i("d784"),l=i("825a"),d=i("50c4"),f=i("1d80"),g=i("8aa5"),v=i("14c3");o("match",1,function(y,A,S){return[function(_){var T=f(this),D=_==null?void 0:_[y];return D!==void 0?D.call(_,T):new RegExp(_)[y](String(T))},function(C){var _=S(A,C,this);if(_.done)return _.value;var T=l(C),D=String(this);if(!T.global)return v(T,D);var P=T.unicode;T.lastIndex=0;for(var V=[],x=0,X;(X=v(T,D))!==null;){var H=String(X[0]);V[x]=H,H===""&&(T.lastIndex=g(D,d(T.lastIndex),P)),x++}return x===0?null:V}]})},4840:function(t,r,i){var o=i("825a"),l=i("1c0b"),d=i("b622"),f=d("species");t.exports=function(g,v){var y=o(g).constructor,A;return y===void 0||(A=o(y)[f])==null?v:l(A)}},4930:function(t,r,i){var o=i("d039");t.exports=!!Object.getOwnPropertySymbols&&!o(function(){return!String(Symbol())})},"4d64":function(t,r,i){var o=i("fc6a"),l=i("50c4"),d=i("23cb"),f=function(g){return function(v,y,A){var S=o(v),C=l(S.length),_=d(A,C),T;if(g&&y!=y){for(;C>_;)if(T=S[_++],T!=T)return!0}else for(;C>_;_++)if((g||_ in S)&&S[_]===y)return g||_||0;return!g&&-1}};t.exports={includes:f(!0),indexOf:f(!1)}},"4de4":function(t,r,i){var o=i("23e7"),l=i("b727").filter,d=i("1dde"),f=i("ae40"),g=d("filter"),v=f("filter");o({target:"Array",proto:!0,forced:!g||!v},{filter:function(A){return l(this,A,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(t,r,i){var o=i("0366"),l=i("7b0b"),d=i("9bdd"),f=i("e95a"),g=i("50c4"),v=i("8418"),y=i("35a1");t.exports=function(S){var C=l(S),_=typeof this=="function"?this:Array,T=arguments.length,D=T>1?arguments[1]:void 0,P=D!==void 0,V=y(C),x=0,X,H,Y,F,ce,ve;if(P&&(D=o(D,T>2?arguments[2]:void 0,2)),V!=null&&!(_==Array&&f(V)))for(F=V.call(C),ce=F.next,H=new _;!(Y=ce.call(F)).done;x++)ve=P?d(F,D,[Y.value,x],!0):Y.value,v(H,x,ve);else for(X=g(C.length),H=new _(X);X>x;x++)ve=P?D(C[x],x):C[x],v(H,x,ve);return H.length=x,H}},"50c4":function(t,r,i){var o=i("a691"),l=Math.min;t.exports=function(d){return d>0?l(o(d),9007199254740991):0}},5135:function(t,r){var i={}.hasOwnProperty;t.exports=function(o,l){return i.call(o,l)}},5692:function(t,r,i){var o=i("c430"),l=i("c6cd");(t.exports=function(d,f){return l[d]||(l[d]=f!==void 0?f:{})})("versions",[]).push({version:"3.6.4",mode:o?"pure":"global",copyright:"\xA9 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,r,i){var o=i("d066"),l=i("241c"),d=i("7418"),f=i("825a");t.exports=o("Reflect","ownKeys")||function(v){var y=l.f(f(v)),A=d.f;return A?y.concat(A(v)):y}},5899:function(t,r){t.exports=` +"/>`,fs.innerHTML.indexOf(" ")>0}var Qp=!!Ne&&Oc(!1),Kp=!!Ne&&Oc(!0),Jp=H(function(a){var s=Ro(a);return s&&s.innerHTML}),Xp=bt.prototype.$mount;return bt.prototype.$mount=function(a,s){if((a=a&&Ro(a))===document.body||a===document.documentElement)return this;var c=this.$options;if(!c.render){var u=c.template;if(u)if(typeof u=="string")u.charAt(0)==="#"&&(u=Jp(u));else{if(!u.nodeType)return this;u=u.innerHTML}else a&&(u=function(L){if(L.outerHTML)return L.outerHTML;var w=document.createElement("div");return w.appendChild(L.cloneNode(!0)),w.innerHTML}(a));if(u){var h=Tc(u,{outputSourceRange:!1,shouldDecodeNewlines:Qp,shouldDecodeNewlinesForHref:Kp,delimiters:c.delimiters,comments:c.comments},this),p=h.render,b=h.staticRenderFns;c.render=p,c.staticRenderFns=b}}return Xp.call(this,a,s)},bt.compile=Tc,de(bt,a9),bt.effect=function(a,s){var c=new Nr(Ke,a,Ae,{sync:!0});s&&(c.update=function(){s(function(){return c.run()})})},bt})})(Gs);const Rt=Xu(Gs.exports),qu=function(n,e,t){for(var r=0;r<n.length;r++)e.call(t,n[r])};function qp(){return Math.max(document.documentElement.clientWidth||0,window.innerWidth||0)}function Tn(){return qp()>=1200}var ed={exports:{}};(function(n,e){(function(r,i){n.exports=i()})(typeof self!="undefined"?self:_a,function(){return function(t){var r={};function i(o){if(r[o])return r[o].exports;var l=r[o]={i:o,l:!1,exports:{}};return t[o].call(l.exports,l,l.exports,i),l.l=!0,l.exports}return i.m=t,i.c=r,i.d=function(o,l,d){i.o(o,l)||Object.defineProperty(o,l,{enumerable:!0,get:d})},i.r=function(o){typeof Symbol!="undefined"&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},i.t=function(o,l){if(l&1&&(o=i(o)),l&8||l&4&&typeof o=="object"&&o&&o.__esModule)return o;var d=Object.create(null);if(i.r(d),Object.defineProperty(d,"default",{enumerable:!0,value:o}),l&2&&typeof o!="string")for(var f in o)i.d(d,f,function(g){return o[g]}.bind(null,f));return d},i.n=function(o){var l=o&&o.__esModule?function(){return o.default}:function(){return o};return i.d(l,"a",l),l},i.o=function(o,l){return Object.prototype.hasOwnProperty.call(o,l)},i.p="",i(i.s="fb15")}({"00ee":function(t,r,i){var o=i("b622"),l=o("toStringTag"),d={};d[l]="z",t.exports=String(d)==="[object z]"},"0366":function(t,r,i){var o=i("1c0b");t.exports=function(l,d,f){if(o(l),d===void 0)return l;switch(f){case 0:return function(){return l.call(d)};case 1:return function(g){return l.call(d,g)};case 2:return function(g,v){return l.call(d,g,v)};case 3:return function(g,v,y){return l.call(d,g,v,y)}}return function(){return l.apply(d,arguments)}}},"0497":function(t,r){var i=function(o){return o.replace(/[A-Z]/g,function(l){return"-"+l.toLowerCase()}).toLowerCase()};t.exports=i},"057f":function(t,r,i){var o=i("fc6a"),l=i("241c").f,d={}.toString,f=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],g=function(v){try{return l(v)}catch(y){return f.slice()}};t.exports.f=function(y){return f&&d.call(y)=="[object Window]"?g(y):l(o(y))}},"06cf":function(t,r,i){var o=i("83ab"),l=i("d1e7"),d=i("5c6c"),f=i("fc6a"),g=i("c04e"),v=i("5135"),y=i("0cfb"),A=Object.getOwnPropertyDescriptor;r.f=o?A:function(C,_){if(C=f(C),_=g(_,!0),y)try{return A(C,_)}catch(T){}if(v(C,_))return d(!l.f.call(C,_),C[_])}},"07ac":function(t,r,i){var o=i("23e7"),l=i("6f53").values;o({target:"Object",stat:!0},{values:function(f){return l(f)}})},"0cfb":function(t,r,i){var o=i("83ab"),l=i("d039"),d=i("cc12");t.exports=!o&&!l(function(){return Object.defineProperty(d("div"),"a",{get:function(){return 7}}).a!=7})},1276:function(t,r,i){var o=i("d784"),l=i("44e7"),d=i("825a"),f=i("1d80"),g=i("4840"),v=i("8aa5"),y=i("50c4"),A=i("14c3"),S=i("9263"),C=i("d039"),_=[].push,T=Math.min,D=4294967295,P=!C(function(){return!RegExp(D,"y")});o("split",2,function(V,x,X){var H;return"abbc".split(/(b)*/)[1]=="c"||"test".split(/(?:)/,-1).length!=4||"ab".split(/(?:ab)*/).length!=2||".".split(/(.?)(.?)/).length!=4||".".split(/()()/).length>1||"".split(/.?/).length?H=function(Y,F){var ce=String(f(this)),ve=F===void 0?D:F>>>0;if(ve===0)return[];if(Y===void 0)return[ce];if(!l(Y))return x.call(ce,Y,ve);for(var U=[],pe=(Y.ignoreCase?"i":"")+(Y.multiline?"m":"")+(Y.unicode?"u":"")+(Y.sticky?"y":""),ge=0,de=new RegExp(Y.source,pe+"g"),xe,Ae,Te;(xe=S.call(de,ce))&&(Ae=de.lastIndex,!(Ae>ge&&(U.push(ce.slice(ge,xe.index)),xe.length>1&&xe.index<ce.length&&_.apply(U,xe.slice(1)),Te=xe[0].length,ge=Ae,U.length>=ve)));)de.lastIndex===xe.index&&de.lastIndex++;return ge===ce.length?(Te||!de.test(""))&&U.push(""):U.push(ce.slice(ge)),U.length>ve?U.slice(0,ve):U}:"0".split(void 0,0).length?H=function(Y,F){return Y===void 0&&F===0?[]:x.call(this,Y,F)}:H=x,[function(F,ce){var ve=f(this),U=F==null?void 0:F[V];return U!==void 0?U.call(F,ve,ce):H.call(String(ve),F,ce)},function(Y,F){var ce=X(H,Y,this,F,H!==x);if(ce.done)return ce.value;var ve=d(Y),U=String(this),pe=g(ve,RegExp),ge=ve.unicode,de=(ve.ignoreCase?"i":"")+(ve.multiline?"m":"")+(ve.unicode?"u":"")+(P?"y":"g"),xe=new pe(P?ve:"^(?:"+ve.source+")",de),Ae=F===void 0?D:F>>>0;if(Ae===0)return[];if(U.length===0)return A(xe,U)===null?[U]:[];for(var Te=0,Re=0,K=[];Re<U.length;){xe.lastIndex=P?Re:0;var ne=A(xe,P?U:U.slice(Re)),oe;if(ne===null||(oe=T(y(xe.lastIndex+(P?0:Re)),U.length))===Te)Re=v(U,Re,ge);else{if(K.push(U.slice(Te,Re)),K.length===Ae)return K;for(var he=1;he<=ne.length-1;he++)if(K.push(ne[he]),K.length===Ae)return K;Re=Te=oe}}return K.push(U.slice(Te)),K}]},!P)},"13d5":function(t,r,i){var o=i("23e7"),l=i("d58f").left,d=i("a640"),f=i("ae40"),g=d("reduce"),v=f("reduce",{1:0});o({target:"Array",proto:!0,forced:!g||!v},{reduce:function(A){return l(this,A,arguments.length,arguments.length>1?arguments[1]:void 0)}})},"14c3":function(t,r,i){var o=i("c6b6"),l=i("9263");t.exports=function(d,f){var g=d.exec;if(typeof g=="function"){var v=g.call(d,f);if(typeof v!="object")throw TypeError("RegExp exec method returned something other than an Object or null");return v}if(o(d)!=="RegExp")throw TypeError("RegExp#exec called on incompatible receiver");return l.call(d,f)}},"159b":function(t,r,i){var o=i("da84"),l=i("fdbc"),d=i("17c2"),f=i("9112");for(var g in l){var v=o[g],y=v&&v.prototype;if(y&&y.forEach!==d)try{f(y,"forEach",d)}catch(A){y.forEach=d}}},"17c2":function(t,r,i){var o=i("b727").forEach,l=i("a640"),d=i("ae40"),f=l("forEach"),g=d("forEach");t.exports=!f||!g?function(y){return o(this,y,arguments.length>1?arguments[1]:void 0)}:[].forEach},"1be4":function(t,r,i){var o=i("d066");t.exports=o("document","documentElement")},"1c0b":function(t,r){t.exports=function(i){if(typeof i!="function")throw TypeError(String(i)+" is not a function");return i}},"1c7e":function(t,r,i){var o=i("b622"),l=o("iterator"),d=!1;try{var f=0,g={next:function(){return{done:!!f++}},return:function(){d=!0}};g[l]=function(){return this},Array.from(g,function(){throw 2})}catch(v){}t.exports=function(v,y){if(!y&&!d)return!1;var A=!1;try{var S={};S[l]=function(){return{next:function(){return{done:A=!0}}}},v(S)}catch(C){}return A}},"1d80":function(t,r){t.exports=function(i){if(i==null)throw TypeError("Can't call method on "+i);return i}},"1dde":function(t,r,i){var o=i("d039"),l=i("b622"),d=i("2d00"),f=l("species");t.exports=function(g){return d>=51||!o(function(){var v=[],y=v.constructor={};return y[f]=function(){return{foo:1}},v[g](Boolean).foo!==1})}},"217d":function(t,r){function i(d,f){var g=0,v=d.length,y;for(g;g<v&&(y=f(d[g],g),y!==!1);g++);}function o(d){return Object.prototype.toString.apply(d)==="[object Array]"}function l(d){return typeof d=="function"}t.exports={isFunction:l,isArray:o,each:i}},"23cb":function(t,r,i){var o=i("a691"),l=Math.max,d=Math.min;t.exports=function(f,g){var v=o(f);return v<0?l(v+g,0):d(v,g)}},"23e7":function(t,r,i){var o=i("da84"),l=i("06cf").f,d=i("9112"),f=i("6eeb"),g=i("ce4e"),v=i("e893"),y=i("94ca");t.exports=function(A,S){var C=A.target,_=A.global,T=A.stat,D,P,V,x,X,H;if(_?P=o:T?P=o[C]||g(C,{}):P=(o[C]||{}).prototype,P)for(V in S){if(X=S[V],A.noTargetGet?(H=l(P,V),x=H&&H.value):x=P[V],D=y(_?V:C+(T?".":"#")+V,A.forced),!D&&x!==void 0){if(typeof X==typeof x)continue;v(X,x)}(A.sham||x&&x.sham)&&d(X,"sham",!0),f(P,V,X,A)}}},"241c":function(t,r,i){var o=i("ca84"),l=i("7839"),d=l.concat("length","prototype");r.f=Object.getOwnPropertyNames||function(g){return o(g,d)}},"25f0":function(t,r,i){var o=i("6eeb"),l=i("825a"),d=i("d039"),f=i("ad6d"),g="toString",v=RegExp.prototype,y=v[g],A=d(function(){return y.call({source:"a",flags:"b"})!="/a/b"}),S=y.name!=g;(A||S)&&o(RegExp.prototype,g,function(){var _=l(this),T=String(_.source),D=_.flags,P=String(D===void 0&&_ instanceof RegExp&&!("flags"in v)?f.call(_):D);return"/"+T+"/"+P},{unsafe:!0})},"2d00":function(t,r,i){var o=i("da84"),l=i("342f"),d=o.process,f=d&&d.versions,g=f&&f.v8,v,y;g?(v=g.split("."),y=v[0]+v[1]):l&&(v=l.match(/Edge\/(\d+)/),(!v||v[1]>=74)&&(v=l.match(/Chrome\/(\d+)/),v&&(y=v[1]))),t.exports=y&&+y},"342f":function(t,r,i){var o=i("d066");t.exports=o("navigator","userAgent")||""},"35a1":function(t,r,i){var o=i("f5df"),l=i("3f8c"),d=i("b622"),f=d("iterator");t.exports=function(g){if(g!=null)return g[f]||g["@@iterator"]||l[o(g)]}},"37e8":function(t,r,i){var o=i("83ab"),l=i("9bf2"),d=i("825a"),f=i("df75");t.exports=o?Object.defineProperties:function(v,y){d(v);for(var A=f(y),S=A.length,C=0,_;S>C;)l.f(v,_=A[C++],y[_]);return v}},"3b81":function(t,r,i){},"3bbe":function(t,r,i){var o=i("861d");t.exports=function(l){if(!o(l)&&l!==null)throw TypeError("Can't set "+String(l)+" as a prototype");return l}},"3ca3":function(t,r,i){var o=i("6547").charAt,l=i("69f3"),d=i("7dd0"),f="String Iterator",g=l.set,v=l.getterFor(f);d(String,"String",function(y){g(this,{type:f,string:String(y),index:0})},function(){var A=v(this),S=A.string,C=A.index,_;return C>=S.length?{value:void 0,done:!0}:(_=o(S,C),A.index+=_.length,{value:_,done:!1})})},"3f8c":function(t,r){t.exports={}},4160:function(t,r,i){var o=i("23e7"),l=i("17c2");o({target:"Array",proto:!0,forced:[].forEach!=l},{forEach:l})},"428f":function(t,r,i){var o=i("da84");t.exports=o},"42a0":function(t,r){var i=9007199254740991,o="[object Arguments]",l="[object Function]",d="[object GeneratorFunction]",f=/^(?:0|[1-9]\d*)$/;function g(B,re,k){switch(k.length){case 0:return B.call(re);case 1:return B.call(re,k[0]);case 2:return B.call(re,k[0],k[1]);case 3:return B.call(re,k[0],k[1],k[2])}return B.apply(re,k)}function v(B,re){for(var k=-1,le=Array(B);++k<B;)le[k]=re(k);return le}function y(B,re){return function(k){return B(re(k))}}var A=Object.prototype,S=A.hasOwnProperty,C=A.toString,_=A.propertyIsEnumerable,T=y(Object.keys,Object),D=Math.max,P=!_.call({valueOf:1},"valueOf");function V(B,re){var k=de(B)||ge(B)?v(B.length,String):[],le=k.length,Le=!!le;for(var Ie in B)(re||S.call(B,Ie))&&!(Le&&(Ie=="length"||ce(Ie,le)))&&k.push(Ie);return k}function x(B,re,k){var le=B[re];(!(S.call(B,re)&&pe(le,k))||k===void 0&&!(re in B))&&(B[re]=k)}function X(B){if(!U(B))return T(B);var re=[];for(var k in Object(B))S.call(B,k)&&k!="constructor"&&re.push(k);return re}function H(B,re){return re=D(re===void 0?B.length-1:re,0),function(){for(var k=arguments,le=-1,Le=D(k.length-re,0),Ie=Array(Le);++le<Le;)Ie[le]=k[re+le];le=-1;for(var Ee=Array(re+1);++le<re;)Ee[le]=k[le];return Ee[re]=Ie,g(B,this,Ee)}}function Y(B,re,k,le){k||(k={});for(var Le=-1,Ie=re.length;++Le<Ie;){var Ee=re[Le],it=le?le(k[Ee],B[Ee],Ee,k,B):void 0;x(k,Ee,it===void 0?B[Ee]:it)}return k}function F(B){return H(function(re,k){var le=-1,Le=k.length,Ie=Le>1?k[Le-1]:void 0,Ee=Le>2?k[2]:void 0;for(Ie=B.length>3&&typeof Ie=="function"?(Le--,Ie):void 0,Ee&&ve(k[0],k[1],Ee)&&(Ie=Le<3?void 0:Ie,Le=1),re=Object(re);++le<Le;){var it=k[le];it&&B(re,it,le,Ie)}return re})}function ce(B,re){return re=re==null?i:re,!!re&&(typeof B=="number"||f.test(B))&&B>-1&&B%1==0&&B<re}function ve(B,re,k){if(!K(k))return!1;var le=typeof re;return(le=="number"?xe(k)&&ce(re,k.length):le=="string"&&re in k)?pe(k[re],B):!1}function U(B){var re=B&&B.constructor,k=typeof re=="function"&&re.prototype||A;return B===k}function pe(B,re){return B===re||B!==B&&re!==re}function ge(B){return Ae(B)&&S.call(B,"callee")&&(!_.call(B,"callee")||C.call(B)==o)}var de=Array.isArray;function xe(B){return B!=null&&Re(B.length)&&!Te(B)}function Ae(B){return ne(B)&&xe(B)}function Te(B){var re=K(B)?C.call(B):"";return re==l||re==d}function Re(B){return typeof B=="number"&&B>-1&&B%1==0&&B<=i}function K(B){var re=typeof B;return!!B&&(re=="object"||re=="function")}function ne(B){return!!B&&typeof B=="object"}var oe=F(function(B,re){if(P||U(re)||xe(re)){Y(re,he(re),B);return}for(var k in re)S.call(re,k)&&x(B,k,re[k])});function he(B){return xe(B)?V(B):X(B)}t.exports=oe},"44ad":function(t,r,i){var o=i("d039"),l=i("c6b6"),d="".split;t.exports=o(function(){return!Object("z").propertyIsEnumerable(0)})?function(f){return l(f)=="String"?d.call(f,""):Object(f)}:Object},"44d2":function(t,r,i){var o=i("b622"),l=i("7c73"),d=i("9bf2"),f=o("unscopables"),g=Array.prototype;g[f]==null&&d.f(g,f,{configurable:!0,value:l(null)}),t.exports=function(v){g[f][v]=!0}},"44e7":function(t,r,i){var o=i("861d"),l=i("c6b6"),d=i("b622"),f=d("match");t.exports=function(g){var v;return o(g)&&((v=g[f])!==void 0?!!v:l(g)=="RegExp")}},"466d":function(t,r,i){var o=i("d784"),l=i("825a"),d=i("50c4"),f=i("1d80"),g=i("8aa5"),v=i("14c3");o("match",1,function(y,A,S){return[function(_){var T=f(this),D=_==null?void 0:_[y];return D!==void 0?D.call(_,T):new RegExp(_)[y](String(T))},function(C){var _=S(A,C,this);if(_.done)return _.value;var T=l(C),D=String(this);if(!T.global)return v(T,D);var P=T.unicode;T.lastIndex=0;for(var V=[],x=0,X;(X=v(T,D))!==null;){var H=String(X[0]);V[x]=H,H===""&&(T.lastIndex=g(D,d(T.lastIndex),P)),x++}return x===0?null:V}]})},4840:function(t,r,i){var o=i("825a"),l=i("1c0b"),d=i("b622"),f=d("species");t.exports=function(g,v){var y=o(g).constructor,A;return y===void 0||(A=o(y)[f])==null?v:l(A)}},4930:function(t,r,i){var o=i("d039");t.exports=!!Object.getOwnPropertySymbols&&!o(function(){return!String(Symbol())})},"4d64":function(t,r,i){var o=i("fc6a"),l=i("50c4"),d=i("23cb"),f=function(g){return function(v,y,A){var S=o(v),C=l(S.length),_=d(A,C),T;if(g&&y!=y){for(;C>_;)if(T=S[_++],T!=T)return!0}else for(;C>_;_++)if((g||_ in S)&&S[_]===y)return g||_||0;return!g&&-1}};t.exports={includes:f(!0),indexOf:f(!1)}},"4de4":function(t,r,i){var o=i("23e7"),l=i("b727").filter,d=i("1dde"),f=i("ae40"),g=d("filter"),v=f("filter");o({target:"Array",proto:!0,forced:!g||!v},{filter:function(A){return l(this,A,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(t,r,i){var o=i("0366"),l=i("7b0b"),d=i("9bdd"),f=i("e95a"),g=i("50c4"),v=i("8418"),y=i("35a1");t.exports=function(S){var C=l(S),_=typeof this=="function"?this:Array,T=arguments.length,D=T>1?arguments[1]:void 0,P=D!==void 0,V=y(C),x=0,X,H,Y,F,ce,ve;if(P&&(D=o(D,T>2?arguments[2]:void 0,2)),V!=null&&!(_==Array&&f(V)))for(F=V.call(C),ce=F.next,H=new _;!(Y=ce.call(F)).done;x++)ve=P?d(F,D,[Y.value,x],!0):Y.value,v(H,x,ve);else for(X=g(C.length),H=new _(X);X>x;x++)ve=P?D(C[x],x):C[x],v(H,x,ve);return H.length=x,H}},"50c4":function(t,r,i){var o=i("a691"),l=Math.min;t.exports=function(d){return d>0?l(o(d),9007199254740991):0}},5135:function(t,r){var i={}.hasOwnProperty;t.exports=function(o,l){return i.call(o,l)}},5692:function(t,r,i){var o=i("c430"),l=i("c6cd");(t.exports=function(d,f){return l[d]||(l[d]=f!==void 0?f:{})})("versions",[]).push({version:"3.6.4",mode:o?"pure":"global",copyright:"\xA9 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,r,i){var o=i("d066"),l=i("241c"),d=i("7418"),f=i("825a");t.exports=o("Reflect","ownKeys")||function(v){var y=l.f(f(v)),A=d.f;return A?y.concat(A(v)):y}},5899:function(t,r){t.exports=` \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`},"58a8":function(t,r,i){var o=i("1d80"),l=i("5899"),d="["+l+"]",f=RegExp("^"+d+d+"*"),g=RegExp(d+d+"*$"),v=function(y){return function(A){var S=String(o(A));return y&1&&(S=S.replace(f,"")),y&2&&(S=S.replace(g,"")),S}};t.exports={start:v(1),end:v(2),trim:v(3)}},"5c6c":function(t,r){t.exports=function(i,o){return{enumerable:!(i&1),configurable:!(i&2),writable:!(i&4),value:o}}},"60da":function(t,r,i){var o=i("83ab"),l=i("d039"),d=i("df75"),f=i("7418"),g=i("d1e7"),v=i("7b0b"),y=i("44ad"),A=Object.assign,S=Object.defineProperty;t.exports=!A||l(function(){if(o&&A({b:1},A(S({},"a",{enumerable:!0,get:function(){S(this,"b",{value:3,enumerable:!1})}}),{b:2})).b!==1)return!0;var C={},_={},T=Symbol(),D="abcdefghijklmnopqrst";return C[T]=7,D.split("").forEach(function(P){_[P]=P}),A({},C)[T]!=7||d(A({},_)).join("")!=D})?function(_,T){for(var D=v(_),P=arguments.length,V=1,x=f.f,X=g.f;P>V;)for(var H=y(arguments[V++]),Y=x?d(H).concat(x(H)):d(H),F=Y.length,ce=0,ve;F>ce;)ve=Y[ce++],(!o||X.call(H,ve))&&(D[ve]=H[ve]);return D}:A},6547:function(t,r,i){var o=i("a691"),l=i("1d80"),d=function(f){return function(g,v){var y=String(l(g)),A=o(v),S=y.length,C,_;return A<0||A>=S?f?"":void 0:(C=y.charCodeAt(A),C<55296||C>56319||A+1===S||(_=y.charCodeAt(A+1))<56320||_>57343?f?y.charAt(A):C:f?y.slice(A,A+2):(C-55296<<10)+(_-56320)+65536)}};t.exports={codeAt:d(!1),charAt:d(!0)}},"65f0":function(t,r,i){var o=i("861d"),l=i("e8b5"),d=i("b622"),f=d("species");t.exports=function(g,v){var y;return l(g)&&(y=g.constructor,typeof y=="function"&&(y===Array||l(y.prototype))?y=void 0:o(y)&&(y=y[f],y===null&&(y=void 0))),new(y===void 0?Array:y)(v===0?0:v)}},"69f3":function(t,r,i){var o=i("7f9a"),l=i("da84"),d=i("861d"),f=i("9112"),g=i("5135"),v=i("f772"),y=i("d012"),A=l.WeakMap,S,C,_,T=function(Y){return _(Y)?C(Y):S(Y,{})},D=function(Y){return function(F){var ce;if(!d(F)||(ce=C(F)).type!==Y)throw TypeError("Incompatible receiver, "+Y+" required");return ce}};if(o){var P=new A,V=P.get,x=P.has,X=P.set;S=function(Y,F){return X.call(P,Y,F),F},C=function(Y){return V.call(P,Y)||{}},_=function(Y){return x.call(P,Y)}}else{var H=v("state");y[H]=!0,S=function(Y,F){return f(Y,H,F),F},C=function(Y){return g(Y,H)?Y[H]:{}},_=function(Y){return g(Y,H)}}t.exports={set:S,get:C,has:_,enforce:T,getterFor:D}},"6dd8":function(t,r,i){(function(o){var l=function(){if(typeof Map!="undefined")return Map;function K(ne,oe){var he=-1;return ne.some(function(B,re){return B[0]===oe?(he=re,!0):!1}),he}return function(){function ne(){this.__entries__=[]}return Object.defineProperty(ne.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),ne.prototype.get=function(oe){var he=K(this.__entries__,oe),B=this.__entries__[he];return B&&B[1]},ne.prototype.set=function(oe,he){var B=K(this.__entries__,oe);~B?this.__entries__[B][1]=he:this.__entries__.push([oe,he])},ne.prototype.delete=function(oe){var he=this.__entries__,B=K(he,oe);~B&&he.splice(B,1)},ne.prototype.has=function(oe){return!!~K(this.__entries__,oe)},ne.prototype.clear=function(){this.__entries__.splice(0)},ne.prototype.forEach=function(oe,he){he===void 0&&(he=null);for(var B=0,re=this.__entries__;B<re.length;B++){var k=re[B];oe.call(he,k[1],k[0])}},ne}()}(),d=typeof window!="undefined"&&typeof document!="undefined"&&window.document===document,f=function(){return typeof o!="undefined"&&o.Math===Math?o:typeof self!="undefined"&&self.Math===Math?self:typeof window!="undefined"&&window.Math===Math?window:Function("return this")()}(),g=function(){return typeof requestAnimationFrame=="function"?requestAnimationFrame.bind(f):function(K){return setTimeout(function(){return K(Date.now())},1e3/60)}}(),v=2;function y(K,ne){var oe=!1,he=!1,B=0;function re(){oe&&(oe=!1,K()),he&&le()}function k(){g(re)}function le(){var Le=Date.now();if(oe){if(Le-B<v)return;he=!0}else oe=!0,he=!1,setTimeout(k,ne);B=Le}return le}var A=20,S=["top","right","bottom","left","width","height","size","weight"],C=typeof MutationObserver!="undefined",_=function(){function K(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=y(this.refresh.bind(this),A)}return K.prototype.addObserver=function(ne){~this.observers_.indexOf(ne)||this.observers_.push(ne),this.connected_||this.connect_()},K.prototype.removeObserver=function(ne){var oe=this.observers_,he=oe.indexOf(ne);~he&&oe.splice(he,1),!oe.length&&this.connected_&&this.disconnect_()},K.prototype.refresh=function(){var ne=this.updateObservers_();ne&&this.refresh()},K.prototype.updateObservers_=function(){var ne=this.observers_.filter(function(oe){return oe.gatherActive(),oe.hasActive()});return ne.forEach(function(oe){return oe.broadcastActive()}),ne.length>0},K.prototype.connect_=function(){!d||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),C?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},K.prototype.disconnect_=function(){!d||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},K.prototype.onTransitionEnd_=function(ne){var oe=ne.propertyName,he=oe===void 0?"":oe,B=S.some(function(re){return!!~he.indexOf(re)});B&&this.refresh()},K.getInstance=function(){return this.instance_||(this.instance_=new K),this.instance_},K.instance_=null,K}(),T=function(K,ne){for(var oe=0,he=Object.keys(ne);oe<he.length;oe++){var B=he[oe];Object.defineProperty(K,B,{value:ne[B],enumerable:!1,writable:!1,configurable:!0})}return K},D=function(K){var ne=K&&K.ownerDocument&&K.ownerDocument.defaultView;return ne||f},P=pe(0,0,0,0);function V(K){return parseFloat(K)||0}function x(K){for(var ne=[],oe=1;oe<arguments.length;oe++)ne[oe-1]=arguments[oe];return ne.reduce(function(he,B){var re=K["border-"+B+"-width"];return he+V(re)},0)}function X(K){for(var ne=["top","right","bottom","left"],oe={},he=0,B=ne;he<B.length;he++){var re=B[he],k=K["padding-"+re];oe[re]=V(k)}return oe}function H(K){var ne=K.getBBox();return pe(0,0,ne.width,ne.height)}function Y(K){var ne=K.clientWidth,oe=K.clientHeight;if(!ne&&!oe)return P;var he=D(K).getComputedStyle(K),B=X(he),re=B.left+B.right,k=B.top+B.bottom,le=V(he.width),Le=V(he.height);if(he.boxSizing==="border-box"&&(Math.round(le+re)!==ne&&(le-=x(he,"left","right")+re),Math.round(Le+k)!==oe&&(Le-=x(he,"top","bottom")+k)),!ce(K)){var Ie=Math.round(le+re)-ne,Ee=Math.round(Le+k)-oe;Math.abs(Ie)!==1&&(le-=Ie),Math.abs(Ee)!==1&&(Le-=Ee)}return pe(B.left,B.top,le,Le)}var F=function(){return typeof SVGGraphicsElement!="undefined"?function(K){return K instanceof D(K).SVGGraphicsElement}:function(K){return K instanceof D(K).SVGElement&&typeof K.getBBox=="function"}}();function ce(K){return K===D(K).document.documentElement}function ve(K){return d?F(K)?H(K):Y(K):P}function U(K){var ne=K.x,oe=K.y,he=K.width,B=K.height,re=typeof DOMRectReadOnly!="undefined"?DOMRectReadOnly:Object,k=Object.create(re.prototype);return T(k,{x:ne,y:oe,width:he,height:B,top:oe,right:ne+he,bottom:B+oe,left:ne}),k}function pe(K,ne,oe,he){return{x:K,y:ne,width:oe,height:he}}var ge=function(){function K(ne){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=pe(0,0,0,0),this.target=ne}return K.prototype.isActive=function(){var ne=ve(this.target);return this.contentRect_=ne,ne.width!==this.broadcastWidth||ne.height!==this.broadcastHeight},K.prototype.broadcastRect=function(){var ne=this.contentRect_;return this.broadcastWidth=ne.width,this.broadcastHeight=ne.height,ne},K}(),de=function(){function K(ne,oe){var he=U(oe);T(this,{target:ne,contentRect:he})}return K}(),xe=function(){function K(ne,oe,he){if(this.activeObservations_=[],this.observations_=new l,typeof ne!="function")throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=ne,this.controller_=oe,this.callbackCtx_=he}return K.prototype.observe=function(ne){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element=="undefined"||!(Element instanceof Object))){if(!(ne instanceof D(ne).Element))throw new TypeError('parameter 1 is not of type "Element".');var oe=this.observations_;oe.has(ne)||(oe.set(ne,new ge(ne)),this.controller_.addObserver(this),this.controller_.refresh())}},K.prototype.unobserve=function(ne){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element=="undefined"||!(Element instanceof Object))){if(!(ne instanceof D(ne).Element))throw new TypeError('parameter 1 is not of type "Element".');var oe=this.observations_;!oe.has(ne)||(oe.delete(ne),oe.size||this.controller_.removeObserver(this))}},K.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},K.prototype.gatherActive=function(){var ne=this;this.clearActive(),this.observations_.forEach(function(oe){oe.isActive()&&ne.activeObservations_.push(oe)})},K.prototype.broadcastActive=function(){if(!!this.hasActive()){var ne=this.callbackCtx_,oe=this.activeObservations_.map(function(he){return new de(he.target,he.broadcastRect())});this.callback_.call(ne,oe,ne),this.clearActive()}},K.prototype.clearActive=function(){this.activeObservations_.splice(0)},K.prototype.hasActive=function(){return this.activeObservations_.length>0},K}(),Ae=typeof WeakMap!="undefined"?new WeakMap:new l,Te=function(){function K(ne){if(!(this instanceof K))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var oe=_.getInstance(),he=new xe(ne,oe,this);Ae.set(this,he)}return K}();["observe","unobserve","disconnect"].forEach(function(K){Te.prototype[K]=function(){var ne;return(ne=Ae.get(this))[K].apply(ne,arguments)}});var Re=function(){return typeof f.ResizeObserver!="undefined"?f.ResizeObserver:Te}();r.a=Re}).call(this,i("c8ba"))},"6ea2":function(t,r,i){var o=i("890c"),l=i.n(o);l.a},"6eeb":function(t,r,i){var o=i("da84"),l=i("9112"),d=i("5135"),f=i("ce4e"),g=i("8925"),v=i("69f3"),y=v.get,A=v.enforce,S=String(String).split("String");(t.exports=function(C,_,T,D){var P=D?!!D.unsafe:!1,V=D?!!D.enumerable:!1,x=D?!!D.noTargetGet:!1;if(typeof T=="function"&&(typeof _=="string"&&!d(T,"name")&&l(T,"name",_),A(T).source=S.join(typeof _=="string"?_:"")),C===o){V?C[_]=T:f(_,T);return}else P?!x&&C[_]&&(V=!0):delete C[_];V?C[_]=T:l(C,_,T)})(Function.prototype,"toString",function(){return typeof this=="function"&&y(this).source||g(this)})},"6f53":function(t,r,i){var o=i("83ab"),l=i("df75"),d=i("fc6a"),f=i("d1e7").f,g=function(v){return function(y){for(var A=d(y),S=l(A),C=S.length,_=0,T=[],D;C>_;)D=S[_++],(!o||f.call(A,D))&&T.push(v?[D,A[D]]:A[D]);return T}};t.exports={entries:g(!0),values:g(!1)}},7156:function(t,r,i){var o=i("861d"),l=i("d2bb");t.exports=function(d,f,g){var v,y;return l&&typeof(v=f.constructor)=="function"&&v!==g&&o(y=v.prototype)&&y!==g.prototype&&l(d,y),d}},7418:function(t,r){r.f=Object.getOwnPropertySymbols},"746f":function(t,r,i){var o=i("428f"),l=i("5135"),d=i("e538"),f=i("9bf2").f;t.exports=function(g){var v=o.Symbol||(o.Symbol={});l(v,g)||f(v,g,{value:d.f(g)})}},7839:function(t,r){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7b0b":function(t,r,i){var o=i("1d80");t.exports=function(l){return Object(o(l))}},"7c73":function(t,r,i){var o=i("825a"),l=i("37e8"),d=i("7839"),f=i("d012"),g=i("1be4"),v=i("cc12"),y=i("f772"),A=">",S="<",C="prototype",_="script",T=y("IE_PROTO"),D=function(){},P=function(Y){return S+_+A+Y+S+"/"+_+A},V=function(Y){Y.write(P("")),Y.close();var F=Y.parentWindow.Object;return Y=null,F},x=function(){var Y=v("iframe"),F="java"+_+":",ce;return Y.style.display="none",g.appendChild(Y),Y.src=String(F),ce=Y.contentWindow.document,ce.open(),ce.write(P("document.F=Object")),ce.close(),ce.F},X,H=function(){try{X=document.domain&&new ActiveXObject("htmlfile")}catch(F){}H=X?V(X):x();for(var Y=d.length;Y--;)delete H[C][d[Y]];return H()};f[T]=!0,t.exports=Object.create||function(F,ce){var ve;return F!==null?(D[C]=o(F),ve=new D,D[C]=null,ve[T]=F):ve=H(),ce===void 0?ve:l(ve,ce)}},"7dd0":function(t,r,i){var o=i("23e7"),l=i("9ed3"),d=i("e163"),f=i("d2bb"),g=i("d44e"),v=i("9112"),y=i("6eeb"),A=i("b622"),S=i("c430"),C=i("3f8c"),_=i("ae93"),T=_.IteratorPrototype,D=_.BUGGY_SAFARI_ITERATORS,P=A("iterator"),V="keys",x="values",X="entries",H=function(){return this};t.exports=function(Y,F,ce,ve,U,pe,ge){l(ce,F,ve);var de=function(re){if(re===U&&K)return K;if(!D&&re in Te)return Te[re];switch(re){case V:return function(){return new ce(this,re)};case x:return function(){return new ce(this,re)};case X:return function(){return new ce(this,re)}}return function(){return new ce(this)}},xe=F+" Iterator",Ae=!1,Te=Y.prototype,Re=Te[P]||Te["@@iterator"]||U&&Te[U],K=!D&&Re||de(U),ne=F=="Array"&&Te.entries||Re,oe,he,B;if(ne&&(oe=d(ne.call(new Y)),T!==Object.prototype&&oe.next&&(!S&&d(oe)!==T&&(f?f(oe,T):typeof oe[P]!="function"&&v(oe,P,H)),g(oe,xe,!0,!0),S&&(C[xe]=H))),U==x&&Re&&Re.name!==x&&(Ae=!0,K=function(){return Re.call(this)}),(!S||ge)&&Te[P]!==K&&v(Te,P,K),C[F]=K,U)if(he={values:de(x),keys:pe?K:de(V),entries:de(X)},ge)for(B in he)(D||Ae||!(B in Te))&&y(Te,B,he[B]);else o({target:F,proto:!0,forced:D||Ae},he);return he}},"7f9a":function(t,r,i){var o=i("da84"),l=i("8925"),d=o.WeakMap;t.exports=typeof d=="function"&&/native code/.test(l(d))},"825a":function(t,r,i){var o=i("861d");t.exports=function(l){if(!o(l))throw TypeError(String(l)+" is not an object");return l}},"83ab":function(t,r,i){var o=i("d039");t.exports=!o(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7})},8418:function(t,r,i){var o=i("c04e"),l=i("9bf2"),d=i("5c6c");t.exports=function(f,g,v){var y=o(g);y in f?l.f(f,y,d(0,v)):f[y]=v}},"861d":function(t,r){t.exports=function(i){return typeof i=="object"?i!==null:typeof i=="function"}},"88bc":function(t,r,i){(function(o){var l=1/0,d=9007199254740991,f="[object Arguments]",g="[object Function]",v="[object GeneratorFunction]",y="[object Symbol]",A=typeof o=="object"&&o&&o.Object===Object&&o,S=typeof self=="object"&&self&&self.Object===Object&&self,C=A||S||Function("return this")();function _(k,le,Le){switch(Le.length){case 0:return k.call(le);case 1:return k.call(le,Le[0]);case 2:return k.call(le,Le[0],Le[1]);case 3:return k.call(le,Le[0],Le[1],Le[2])}return k.apply(le,Le)}function T(k,le){for(var Le=-1,Ie=k?k.length:0,Ee=Array(Ie);++Le<Ie;)Ee[Le]=le(k[Le],Le,k);return Ee}function D(k,le){for(var Le=-1,Ie=le.length,Ee=k.length;++Le<Ie;)k[Ee+Le]=le[Le];return k}var P=Object.prototype,V=P.hasOwnProperty,x=P.toString,X=C.Symbol,H=P.propertyIsEnumerable,Y=X?X.isConcatSpreadable:void 0,F=Math.max;function ce(k,le,Le,Ie,Ee){var it=-1,tt=k.length;for(Le||(Le=ge),Ee||(Ee=[]);++it<tt;){var Ne=k[it];le>0&&Le(Ne)?le>1?ce(Ne,le-1,Le,Ie,Ee):D(Ee,Ne):Ie||(Ee[Ee.length]=Ne)}return Ee}function ve(k,le){return k=Object(k),U(k,le,function(Le,Ie){return Ie in k})}function U(k,le,Le){for(var Ie=-1,Ee=le.length,it={};++Ie<Ee;){var tt=le[Ie],Ne=k[tt];Le(Ne,tt)&&(it[tt]=Ne)}return it}function pe(k,le){return le=F(le===void 0?k.length-1:le,0),function(){for(var Le=arguments,Ie=-1,Ee=F(Le.length-le,0),it=Array(Ee);++Ie<Ee;)it[Ie]=Le[le+Ie];Ie=-1;for(var tt=Array(le+1);++Ie<le;)tt[Ie]=Le[Ie];return tt[le]=it,_(k,this,tt)}}function ge(k){return Ae(k)||xe(k)||!!(Y&&k&&k[Y])}function de(k){if(typeof k=="string"||B(k))return k;var le=k+"";return le=="0"&&1/k==-l?"-0":le}function xe(k){return Re(k)&&V.call(k,"callee")&&(!H.call(k,"callee")||x.call(k)==f)}var Ae=Array.isArray;function Te(k){return k!=null&&ne(k.length)&&!K(k)}function Re(k){return he(k)&&Te(k)}function K(k){var le=oe(k)?x.call(k):"";return le==g||le==v}function ne(k){return typeof k=="number"&&k>-1&&k%1==0&&k<=d}function oe(k){var le=typeof k;return!!k&&(le=="object"||le=="function")}function he(k){return!!k&&typeof k=="object"}function B(k){return typeof k=="symbol"||he(k)&&x.call(k)==y}var re=pe(function(k,le){return k==null?{}:ve(k,T(ce(le,1),de))});t.exports=re}).call(this,i("c8ba"))},"890c":function(t,r,i){},8925:function(t,r,i){var o=i("c6cd"),l=Function.toString;typeof o.inspectSource!="function"&&(o.inspectSource=function(d){return l.call(d)}),t.exports=o.inspectSource},"8aa5":function(t,r,i){var o=i("6547").charAt;t.exports=function(l,d,f){return d+(f?o(l,d).length:1)}},"8e95":function(t,r,i){var o=i("c195");t.exports=new o},9020:function(t,r){function i(o){this.options=o,!o.deferSetup&&this.setup()}i.prototype={constructor:i,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(o){return this.options===o||this.options.match===o}},t.exports=i},"90e3":function(t,r){var i=0,o=Math.random();t.exports=function(l){return"Symbol("+String(l===void 0?"":l)+")_"+(++i+o).toString(36)}},9112:function(t,r,i){var o=i("83ab"),l=i("9bf2"),d=i("5c6c");t.exports=o?function(f,g,v){return l.f(f,g,d(1,v))}:function(f,g,v){return f[g]=v,f}},9263:function(t,r,i){var o=i("ad6d"),l=i("9f7f"),d=RegExp.prototype.exec,f=String.prototype.replace,g=d,v=function(){var C=/a/,_=/b*/g;return d.call(C,"a"),d.call(_,"a"),C.lastIndex!==0||_.lastIndex!==0}(),y=l.UNSUPPORTED_Y||l.BROKEN_CARET,A=/()??/.exec("")[1]!==void 0,S=v||A||y;S&&(g=function(_){var T=this,D,P,V,x,X=y&&T.sticky,H=o.call(T),Y=T.source,F=0,ce=_;return X&&(H=H.replace("y",""),H.indexOf("g")===-1&&(H+="g"),ce=String(_).slice(T.lastIndex),T.lastIndex>0&&(!T.multiline||T.multiline&&_[T.lastIndex-1]!==` `)&&(Y="(?: "+Y+")",ce=" "+ce,F++),P=new RegExp("^(?:"+Y+")",H)),A&&(P=new RegExp("^"+Y+"$(?!\\s)",H)),v&&(D=T.lastIndex),V=d.call(X?P:T,ce),X?V?(V.input=V.input.slice(F),V[0]=V[0].slice(F),V.index=T.lastIndex,T.lastIndex+=V[0].length):T.lastIndex=0:v&&V&&(T.lastIndex=T.global?V.index+V[0].length:D),A&&V&&V.length>1&&f.call(V[0],P,function(){for(x=1;x<arguments.length-2;x++)arguments[x]===void 0&&(V[x]=void 0)}),V}),t.exports=g},"94ca":function(t,r,i){var o=i("d039"),l=/#|\.prototype\./,d=function(A,S){var C=g[f(A)];return C==y?!0:C==v?!1:typeof S=="function"?o(S):!!S},f=d.normalize=function(A){return String(A).replace(l,".").toLowerCase()},g=d.data={},v=d.NATIVE="N",y=d.POLYFILL="P";t.exports=d},"99af":function(t,r,i){var o=i("23e7"),l=i("d039"),d=i("e8b5"),f=i("861d"),g=i("7b0b"),v=i("50c4"),y=i("8418"),A=i("65f0"),S=i("1dde"),C=i("b622"),_=i("2d00"),T=C("isConcatSpreadable"),D=9007199254740991,P="Maximum allowed index exceeded",V=_>=51||!l(function(){var Y=[];return Y[T]=!1,Y.concat()[0]!==Y}),x=S("concat"),X=function(Y){if(!f(Y))return!1;var F=Y[T];return F!==void 0?!!F:d(Y)},H=!V||!x;o({target:"Array",proto:!0,forced:H},{concat:function(F){var ce=g(this),ve=A(ce,0),U=0,pe,ge,de,xe,Ae;for(pe=-1,de=arguments.length;pe<de;pe++)if(Ae=pe===-1?ce:arguments[pe],X(Ae)){if(xe=v(Ae.length),U+xe>D)throw TypeError(P);for(ge=0;ge<xe;ge++,U++)ge in Ae&&y(ve,U,Ae[ge])}else{if(U>=D)throw TypeError(P);y(ve,U++,Ae)}return ve.length=U,ve}})},"9bdd":function(t,r,i){var o=i("825a");t.exports=function(l,d,f,g){try{return g?d(o(f)[0],f[1]):d(f)}catch(y){var v=l.return;throw v!==void 0&&o(v.call(l)),y}}},"9bf2":function(t,r,i){var o=i("83ab"),l=i("0cfb"),d=i("825a"),f=i("c04e"),g=Object.defineProperty;r.f=o?g:function(y,A,S){if(d(y),A=f(A,!0),d(S),l)try{return g(y,A,S)}catch(C){}if("get"in S||"set"in S)throw TypeError("Accessors not supported");return"value"in S&&(y[A]=S.value),y}},"9ed3":function(t,r,i){var o=i("ae93").IteratorPrototype,l=i("7c73"),d=i("5c6c"),f=i("d44e"),g=i("3f8c"),v=function(){return this};t.exports=function(y,A,S){var C=A+" Iterator";return y.prototype=l(o,{next:d(1,S)}),f(y,C,!1,!0),g[C]=v,y}},"9f7f":function(t,r,i){var o=i("d039");function l(d,f){return RegExp(d,f)}r.UNSUPPORTED_Y=o(function(){var d=l("a","y");return d.lastIndex=2,d.exec("abcd")!=null}),r.BROKEN_CARET=o(function(){var d=l("^r","gy");return d.lastIndex=2,d.exec("str")!=null})},a15b:function(t,r,i){var o=i("23e7"),l=i("44ad"),d=i("fc6a"),f=i("a640"),g=[].join,v=l!=Object,y=f("join",",");o({target:"Array",proto:!0,forced:v||!y},{join:function(S){return g.call(d(this),S===void 0?",":S)}})},a48b:function(t,r,i){var o=i("0497"),l=function(g){var v=/[height|width]$/;return v.test(g)},d=function(g){var v="",y=Object.keys(g);return y.forEach(function(A,S){var C=g[A];A=o(A),l(A)&&typeof C=="number"&&(C=C+"px"),C===!0?v+=A:C===!1?v+="not "+A:v+="("+A+": "+C+")",S<y.length-1&&(v+=" and ")}),v},f=function(g){var v="";return typeof g=="string"?g:g instanceof Array?(g.forEach(function(y,A){v+=d(y),A<g.length-1&&(v+=", ")}),v):d(g)};t.exports=f},a4d3:function(t,r,i){var o=i("23e7"),l=i("da84"),d=i("d066"),f=i("c430"),g=i("83ab"),v=i("4930"),y=i("fdbf"),A=i("d039"),S=i("5135"),C=i("e8b5"),_=i("861d"),T=i("825a"),D=i("7b0b"),P=i("fc6a"),V=i("c04e"),x=i("5c6c"),X=i("7c73"),H=i("df75"),Y=i("241c"),F=i("057f"),ce=i("7418"),ve=i("06cf"),U=i("9bf2"),pe=i("d1e7"),ge=i("9112"),de=i("6eeb"),xe=i("5692"),Ae=i("f772"),Te=i("d012"),Re=i("90e3"),K=i("b622"),ne=i("e538"),oe=i("746f"),he=i("d44e"),B=i("69f3"),re=i("b727").forEach,k=Ae("hidden"),le="Symbol",Le="prototype",Ie=K("toPrimitive"),Ee=B.set,it=B.getterFor(le),tt=Object[Le],Ne=l.Symbol,je=d("JSON","stringify"),pt=ve.f,nt=U.f,Nt=F.f,Qt=pe.f,vt=xe("symbols"),Mt=xe("op-symbols"),xt=xe("string-to-symbol-registry"),St=xe("symbol-to-string-registry"),Gt=xe("wks"),mt=l.QObject,Bt=!mt||!mt[Le]||!mt[Le].findChild,Lt=g&&A(function(){return X(nt({},"a",{get:function(){return nt(this,"a",{value:7}).a}})).a!=7})?function(fe,me,ye){var ke=pt(tt,me);ke&&delete tt[me],nt(fe,me,ye),ke&&fe!==tt&&nt(tt,me,ke)}:nt,It=function(fe,me){var ye=vt[fe]=X(Ne[Le]);return Ee(ye,{type:le,tag:fe,description:me}),g||(ye.description=me),ye},Tt=y?function(fe){return typeof fe=="symbol"}:function(fe){return Object(fe)instanceof Ne},Ke=function(me,ye,ke){me===tt&&Ke(Mt,ye,ke),T(me);var $e=V(ye,!0);return T(ke),S(vt,$e)?(ke.enumerable?(S(me,k)&&me[k][$e]&&(me[k][$e]=!1),ke=X(ke,{enumerable:x(0,!1)})):(S(me,k)||nt(me,k,x(1,{})),me[k][$e]=!0),Lt(me,$e,ke)):nt(me,$e,ke)},Ft=function(me,ye){T(me);var ke=P(ye),$e=H(ke).concat(q(ke));return re($e,function(ut){(!g||Vt.call(ke,ut))&&Ke(me,ut,ke[ut])}),me},yt=function(me,ye){return ye===void 0?X(me):Ft(X(me),ye)},Vt=function(me){var ye=V(me,!0),ke=Qt.call(this,ye);return this===tt&&S(vt,ye)&&!S(Mt,ye)?!1:ke||!S(this,ye)||!S(vt,ye)||S(this,k)&&this[k][ye]?ke:!0},Kt=function(me,ye){var ke=P(me),$e=V(ye,!0);if(!(ke===tt&&S(vt,$e)&&!S(Mt,$e))){var ut=pt(ke,$e);return ut&&S(vt,$e)&&!(S(ke,k)&&ke[k][$e])&&(ut.enumerable=!0),ut}},un=function(me){var ye=Nt(P(me)),ke=[];return re(ye,function($e){!S(vt,$e)&&!S(Te,$e)&&ke.push($e)}),ke},q=function(me){var ye=me===tt,ke=Nt(ye?Mt:P(me)),$e=[];return re(ke,function(ut){S(vt,ut)&&(!ye||S(tt,ut))&&$e.push(vt[ut])}),$e};if(v||(Ne=function(){if(this instanceof Ne)throw TypeError("Symbol is not a constructor");var me=!arguments.length||arguments[0]===void 0?void 0:String(arguments[0]),ye=Re(me),ke=function($e){this===tt&&ke.call(Mt,$e),S(this,k)&&S(this[k],ye)&&(this[k][ye]=!1),Lt(this,ye,x(1,$e))};return g&&Bt&&Lt(tt,ye,{configurable:!0,set:ke}),It(ye,me)},de(Ne[Le],"toString",function(){return it(this).tag}),de(Ne,"withoutSetter",function(fe){return It(Re(fe),fe)}),pe.f=Vt,U.f=Ke,ve.f=Kt,Y.f=F.f=un,ce.f=q,ne.f=function(fe){return It(K(fe),fe)},g&&(nt(Ne[Le],"description",{configurable:!0,get:function(){return it(this).description}}),f||de(tt,"propertyIsEnumerable",Vt,{unsafe:!0}))),o({global:!0,wrap:!0,forced:!v,sham:!v},{Symbol:Ne}),re(H(Gt),function(fe){oe(fe)}),o({target:le,stat:!0,forced:!v},{for:function(fe){var me=String(fe);if(S(xt,me))return xt[me];var ye=Ne(me);return xt[me]=ye,St[ye]=me,ye},keyFor:function(me){if(!Tt(me))throw TypeError(me+" is not a symbol");if(S(St,me))return St[me]},useSetter:function(){Bt=!0},useSimple:function(){Bt=!1}}),o({target:"Object",stat:!0,forced:!v,sham:!g},{create:yt,defineProperty:Ke,defineProperties:Ft,getOwnPropertyDescriptor:Kt}),o({target:"Object",stat:!0,forced:!v},{getOwnPropertyNames:un,getOwnPropertySymbols:q}),o({target:"Object",stat:!0,forced:A(function(){ce.f(1)})},{getOwnPropertySymbols:function(me){return ce.f(D(me))}}),je){var De=!v||A(function(){var fe=Ne();return je([fe])!="[null]"||je({a:fe})!="{}"||je(Object(fe))!="{}"});o({target:"JSON",stat:!0,forced:De},{stringify:function(me,ye,ke){for(var $e=[me],ut=1,an;arguments.length>ut;)$e.push(arguments[ut++]);if(an=ye,!(!_(ye)&&me===void 0||Tt(me)))return C(ye)||(ye=function(z,ue){if(typeof an=="function"&&(ue=an.call(this,z,ue)),!Tt(ue))return ue}),$e[1]=ye,je.apply(null,$e)}})}Ne[Le][Ie]||ge(Ne[Le],Ie,Ne[Le].valueOf),he(Ne,le),Te[k]=!0},a623:function(t,r,i){var o=i("23e7"),l=i("b727").every,d=i("a640"),f=i("ae40"),g=d("every"),v=f("every");o({target:"Array",proto:!0,forced:!g||!v},{every:function(A){return l(this,A,arguments.length>1?arguments[1]:void 0)}})},a630:function(t,r,i){var o=i("23e7"),l=i("4df4"),d=i("1c7e"),f=!d(function(g){Array.from(g)});o({target:"Array",stat:!0,forced:f},{from:l})},a640:function(t,r,i){var o=i("d039");t.exports=function(l,d){var f=[][l];return!!f&&o(function(){f.call(null,d||function(){throw 1},1)})}},a691:function(t,r){var i=Math.ceil,o=Math.floor;t.exports=function(l){return isNaN(l=+l)?0:(l>0?o:i)(l)}},a9e3:function(t,r,i){var o=i("83ab"),l=i("da84"),d=i("94ca"),f=i("6eeb"),g=i("5135"),v=i("c6b6"),y=i("7156"),A=i("c04e"),S=i("d039"),C=i("7c73"),_=i("241c").f,T=i("06cf").f,D=i("9bf2").f,P=i("58a8").trim,V="Number",x=l[V],X=x.prototype,H=v(C(X))==V,Y=function(pe){var ge=A(pe,!1),de,xe,Ae,Te,Re,K,ne,oe;if(typeof ge=="string"&&ge.length>2){if(ge=P(ge),de=ge.charCodeAt(0),de===43||de===45){if(xe=ge.charCodeAt(2),xe===88||xe===120)return NaN}else if(de===48){switch(ge.charCodeAt(1)){case 66:case 98:Ae=2,Te=49;break;case 79:case 111:Ae=8,Te=55;break;default:return+ge}for(Re=ge.slice(2),K=Re.length,ne=0;ne<K;ne++)if(oe=Re.charCodeAt(ne),oe<48||oe>Te)return NaN;return parseInt(Re,Ae)}}return+ge};if(d(V,!x(" 0o1")||!x("0b1")||x("+0x1"))){for(var F=function(ge){var de=arguments.length<1?0:ge,xe=this;return xe instanceof F&&(H?S(function(){X.valueOf.call(xe)}):v(xe)!=V)?y(new x(Y(de)),xe,F):Y(de)},ce=o?_(x):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),ve=0,U;ce.length>ve;ve++)g(x,U=ce[ve])&&!g(F,U)&&D(F,U,T(x,U));F.prototype=X,X.constructor=F,f(l,V,F)}},ac1f:function(t,r,i){var o=i("23e7"),l=i("9263");o({target:"RegExp",proto:!0,forced:/./.exec!==l},{exec:l})},ad6d:function(t,r,i){var o=i("825a");t.exports=function(){var l=o(this),d="";return l.global&&(d+="g"),l.ignoreCase&&(d+="i"),l.multiline&&(d+="m"),l.dotAll&&(d+="s"),l.unicode&&(d+="u"),l.sticky&&(d+="y"),d}},ae40:function(t,r,i){var o=i("83ab"),l=i("d039"),d=i("5135"),f=Object.defineProperty,g={},v=function(y){throw y};t.exports=function(y,A){if(d(g,y))return g[y];A||(A={});var S=[][y],C=d(A,"ACCESSORS")?A.ACCESSORS:!1,_=d(A,0)?A[0]:v,T=d(A,1)?A[1]:void 0;return g[y]=!!S&&!l(function(){if(C&&!o)return!0;var D={length:-1};C?f(D,1,{enumerable:!0,get:v}):D[1]=1,S.call(D,_,T)})}},ae93:function(t,r,i){var o=i("e163"),l=i("9112"),d=i("5135"),f=i("b622"),g=i("c430"),v=f("iterator"),y=!1,A=function(){return this},S,C,_;[].keys&&(_=[].keys(),"next"in _?(C=o(o(_)),C!==Object.prototype&&(S=C)):y=!0),S==null&&(S={}),!g&&!d(S,v)&&l(S,v,A),t.exports={IteratorPrototype:S,BUGGY_SAFARI_ITERATORS:y}},b041:function(t,r,i){var o=i("00ee"),l=i("f5df");t.exports=o?{}.toString:function(){return"[object "+l(this)+"]"}},b0c0:function(t,r,i){var o=i("83ab"),l=i("9bf2").f,d=Function.prototype,f=d.toString,g=/^\s*function ([^ (]*)/,v="name";o&&!(v in d)&&l(d,v,{configurable:!0,get:function(){try{return f.call(this).match(g)[1]}catch(y){return""}}})},b622:function(t,r,i){var o=i("da84"),l=i("5692"),d=i("5135"),f=i("90e3"),g=i("4930"),v=i("fdbf"),y=l("wks"),A=o.Symbol,S=v?A:A&&A.withoutSetter||f;t.exports=function(C){return d(y,C)||(g&&d(A,C)?y[C]=A[C]:y[C]=S("Symbol."+C)),y[C]}},b64b:function(t,r,i){var o=i("23e7"),l=i("7b0b"),d=i("df75"),f=i("d039"),g=f(function(){d(1)});o({target:"Object",stat:!0,forced:g},{keys:function(y){return d(l(y))}})},b727:function(t,r,i){var o=i("0366"),l=i("44ad"),d=i("7b0b"),f=i("50c4"),g=i("65f0"),v=[].push,y=function(A){var S=A==1,C=A==2,_=A==3,T=A==4,D=A==6,P=A==5||D;return function(V,x,X,H){for(var Y=d(V),F=l(Y),ce=o(x,X,3),ve=f(F.length),U=0,pe=H||g,ge=S?pe(V,ve):C?pe(V,0):void 0,de,xe;ve>U;U++)if((P||U in F)&&(de=F[U],xe=ce(de,U,Y),A)){if(S)ge[U]=xe;else if(xe)switch(A){case 3:return!0;case 5:return de;case 6:return U;case 2:v.call(ge,de)}else if(T)return!1}return D?-1:_||T?T:ge}};t.exports={forEach:y(0),map:y(1),filter:y(2),some:y(3),every:y(4),find:y(5),findIndex:y(6)}},bcf7:function(t,r,i){var o=i("9020"),l=i("217d").each;function d(f,g){this.query=f,this.isUnconditional=g,this.handlers=[],this.mql=window.matchMedia(f);var v=this;this.listener=function(y){v.mql=y.currentTarget||y,v.assess()},this.mql.addListener(this.listener)}d.prototype={constuctor:d,addHandler:function(f){var g=new o(f);this.handlers.push(g),this.matches()&&g.on()},removeHandler:function(f){var g=this.handlers;l(g,function(v,y){if(v.equals(f))return v.destroy(),!g.splice(y,1)})},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){l(this.handlers,function(f){f.destroy()}),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var f=this.matches()?"on":"off";l(this.handlers,function(g){g[f]()})}},t.exports=d},c04e:function(t,r,i){var o=i("861d");t.exports=function(l,d){if(!o(l))return l;var f,g;if(d&&typeof(f=l.toString)=="function"&&!o(g=f.call(l))||typeof(f=l.valueOf)=="function"&&!o(g=f.call(l))||!d&&typeof(f=l.toString)=="function"&&!o(g=f.call(l)))return g;throw TypeError("Can't convert object to primitive value")}},c195:function(t,r,i){var o=i("bcf7"),l=i("217d"),d=l.each,f=l.isFunction,g=l.isArray;function v(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}v.prototype={constructor:v,register:function(y,A,S){var C=this.queries,_=S&&this.browserIsIncapable;return C[y]||(C[y]=new o(y,_)),f(A)&&(A={match:A}),g(A)||(A=[A]),d(A,function(T){f(T)&&(T={match:T}),C[y].addHandler(T)}),this},unregister:function(y,A){var S=this.queries[y];return S&&(A?S.removeHandler(A):(S.clear(),delete this.queries[y])),this}},t.exports=v},c430:function(t,r){t.exports=!1},c6b6:function(t,r){var i={}.toString;t.exports=function(o){return i.call(o).slice(8,-1)}},c6cd:function(t,r,i){var o=i("da84"),l=i("ce4e"),d="__core-js_shared__",f=o[d]||l(d,{});t.exports=f},c832:function(t,r,i){(function(o){var l="Expected a function",d="__lodash_hash_undefined__",f=1/0,g="[object Function]",v="[object GeneratorFunction]",y="[object Symbol]",A=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,S=/^\w*$/,C=/^\./,_=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,T=/[\\^$.*+?()[\]{}|]/g,D=/\\(\\)?/g,P=/^\[object .+?Constructor\]$/,V=typeof o=="object"&&o&&o.Object===Object&&o,x=typeof self=="object"&&self&&self.Object===Object&&self,X=V||x||Function("return this")();function H(z,ue){return z==null?void 0:z[ue]}function Y(z){var ue=!1;if(z!=null&&typeof z.toString!="function")try{ue=!!(z+"")}catch(Me){}return ue}var F=Array.prototype,ce=Function.prototype,ve=Object.prototype,U=X["__core-js_shared__"],pe=function(){var z=/[^.]+$/.exec(U&&U.keys&&U.keys.IE_PROTO||"");return z?"Symbol(src)_1."+z:""}(),ge=ce.toString,de=ve.hasOwnProperty,xe=ve.toString,Ae=RegExp("^"+ge.call(de).replace(T,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Te=X.Symbol,Re=F.splice,K=Tt(X,"Map"),ne=Tt(Object,"create"),oe=Te?Te.prototype:void 0,he=oe?oe.toString:void 0;function B(z){var ue=-1,Me=z?z.length:0;for(this.clear();++ue<Me;){var rt=z[ue];this.set(rt[0],rt[1])}}function re(){this.__data__=ne?ne(null):{}}function k(z){return this.has(z)&&delete this.__data__[z]}function le(z){var ue=this.__data__;if(ne){var Me=ue[z];return Me===d?void 0:Me}return de.call(ue,z)?ue[z]:void 0}function Le(z){var ue=this.__data__;return ne?ue[z]!==void 0:de.call(ue,z)}function Ie(z,ue){var Me=this.__data__;return Me[z]=ne&&ue===void 0?d:ue,this}B.prototype.clear=re,B.prototype.delete=k,B.prototype.get=le,B.prototype.has=Le,B.prototype.set=Ie;function Ee(z){var ue=-1,Me=z?z.length:0;for(this.clear();++ue<Me;){var rt=z[ue];this.set(rt[0],rt[1])}}function it(){this.__data__=[]}function tt(z){var ue=this.__data__,Me=St(ue,z);if(Me<0)return!1;var rt=ue.length-1;return Me==rt?ue.pop():Re.call(ue,Me,1),!0}function Ne(z){var ue=this.__data__,Me=St(ue,z);return Me<0?void 0:ue[Me][1]}function je(z){return St(this.__data__,z)>-1}function pt(z,ue){var Me=this.__data__,rt=St(Me,z);return rt<0?Me.push([z,ue]):Me[rt][1]=ue,this}Ee.prototype.clear=it,Ee.prototype.delete=tt,Ee.prototype.get=Ne,Ee.prototype.has=je,Ee.prototype.set=pt;function nt(z){var ue=-1,Me=z?z.length:0;for(this.clear();++ue<Me;){var rt=z[ue];this.set(rt[0],rt[1])}}function Nt(){this.__data__={hash:new B,map:new(K||Ee),string:new B}}function Qt(z){return It(this,z).delete(z)}function vt(z){return It(this,z).get(z)}function Mt(z){return It(this,z).has(z)}function xt(z,ue){return It(this,z).set(z,ue),this}nt.prototype.clear=Nt,nt.prototype.delete=Qt,nt.prototype.get=vt,nt.prototype.has=Mt,nt.prototype.set=xt;function St(z,ue){for(var Me=z.length;Me--;)if(De(z[Me][0],ue))return Me;return-1}function Gt(z,ue){ue=Ke(ue,z)?[ue]:Lt(ue);for(var Me=0,rt=ue.length;z!=null&&Me<rt;)z=z[Kt(ue[Me++])];return Me&&Me==rt?z:void 0}function mt(z){if(!ye(z)||yt(z))return!1;var ue=me(z)||Y(z)?Ae:P;return ue.test(un(z))}function Bt(z){if(typeof z=="string")return z;if($e(z))return he?he.call(z):"";var ue=z+"";return ue=="0"&&1/z==-f?"-0":ue}function Lt(z){return fe(z)?z:Vt(z)}function It(z,ue){var Me=z.__data__;return Ft(ue)?Me[typeof ue=="string"?"string":"hash"]:Me.map}function Tt(z,ue){var Me=H(z,ue);return mt(Me)?Me:void 0}function Ke(z,ue){if(fe(z))return!1;var Me=typeof z;return Me=="number"||Me=="symbol"||Me=="boolean"||z==null||$e(z)?!0:S.test(z)||!A.test(z)||ue!=null&&z in Object(ue)}function Ft(z){var ue=typeof z;return ue=="string"||ue=="number"||ue=="symbol"||ue=="boolean"?z!=="__proto__":z===null}function yt(z){return!!pe&&pe in z}var Vt=q(function(z){z=ut(z);var ue=[];return C.test(z)&&ue.push(""),z.replace(_,function(Me,rt,Xt,Ot){ue.push(Xt?Ot.replace(D,"$1"):rt||Me)}),ue});function Kt(z){if(typeof z=="string"||$e(z))return z;var ue=z+"";return ue=="0"&&1/z==-f?"-0":ue}function un(z){if(z!=null){try{return ge.call(z)}catch(ue){}try{return z+""}catch(ue){}}return""}function q(z,ue){if(typeof z!="function"||ue&&typeof ue!="function")throw new TypeError(l);var Me=function(){var rt=arguments,Xt=ue?ue.apply(this,rt):rt[0],Ot=Me.cache;if(Ot.has(Xt))return Ot.get(Xt);var zt=z.apply(this,rt);return Me.cache=Ot.set(Xt,zt),zt};return Me.cache=new(q.Cache||nt),Me}q.Cache=nt;function De(z,ue){return z===ue||z!==z&&ue!==ue}var fe=Array.isArray;function me(z){var ue=ye(z)?xe.call(z):"";return ue==g||ue==v}function ye(z){var ue=typeof z;return!!z&&(ue=="object"||ue=="function")}function ke(z){return!!z&&typeof z=="object"}function $e(z){return typeof z=="symbol"||ke(z)&&xe.call(z)==y}function ut(z){return z==null?"":Bt(z)}function an(z,ue,Me){var rt=z==null?void 0:Gt(z,ue);return rt===void 0?Me:rt}t.exports=an}).call(this,i("c8ba"))},c8ba:function(t,r){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(o){typeof window=="object"&&(i=window)}t.exports=i},c975:function(t,r,i){var o=i("23e7"),l=i("4d64").indexOf,d=i("a640"),f=i("ae40"),g=[].indexOf,v=!!g&&1/[1].indexOf(1,-0)<0,y=d("indexOf"),A=f("indexOf",{ACCESSORS:!0,1:0});o({target:"Array",proto:!0,forced:v||!y||!A},{indexOf:function(C){return v?g.apply(this,arguments)||0:l(this,C,arguments.length>1?arguments[1]:void 0)}})},ca84:function(t,r,i){var o=i("5135"),l=i("fc6a"),d=i("4d64").indexOf,f=i("d012");t.exports=function(g,v){var y=l(g),A=0,S=[],C;for(C in y)!o(f,C)&&o(y,C)&&S.push(C);for(;v.length>A;)o(y,C=v[A++])&&(~d(S,C)||S.push(C));return S}},cc12:function(t,r,i){var o=i("da84"),l=i("861d"),d=o.document,f=l(d)&&l(d.createElement);t.exports=function(g){return f?d.createElement(g):{}}},cca6:function(t,r,i){var o=i("23e7"),l=i("60da");o({target:"Object",stat:!0,forced:Object.assign!==l},{assign:l})},ce4e:function(t,r,i){var o=i("da84"),l=i("9112");t.exports=function(d,f){try{l(o,d,f)}catch(g){o[d]=f}return f}},d012:function(t,r){t.exports={}},d039:function(t,r){t.exports=function(i){try{return!!i()}catch(o){return!0}}},d066:function(t,r,i){var o=i("428f"),l=i("da84"),d=function(f){return typeof f=="function"?f:void 0};t.exports=function(f,g){return arguments.length<2?d(o[f])||d(l[f]):o[f]&&o[f][g]||l[f]&&l[f][g]}},d1e7:function(t,r,i){var o={}.propertyIsEnumerable,l=Object.getOwnPropertyDescriptor,d=l&&!o.call({1:2},1);r.f=d?function(g){var v=l(this,g);return!!v&&v.enumerable}:o},d28b:function(t,r,i){var o=i("746f");o("iterator")},d2bb:function(t,r,i){var o=i("825a"),l=i("3bbe");t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var d=!1,f={},g;try{g=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set,g.call(f,[]),d=f instanceof Array}catch(v){}return function(y,A){return o(y),l(A),d?g.call(y,A):y.__proto__=A,y}}():void 0)},d3b7:function(t,r,i){var o=i("00ee"),l=i("6eeb"),d=i("b041");o||l(Object.prototype,"toString",d,{unsafe:!0})},d44e:function(t,r,i){var o=i("9bf2").f,l=i("5135"),d=i("b622"),f=d("toStringTag");t.exports=function(g,v,y){g&&!l(g=y?g:g.prototype,f)&&o(g,f,{configurable:!0,value:v})}},d58f:function(t,r,i){var o=i("1c0b"),l=i("7b0b"),d=i("44ad"),f=i("50c4"),g=function(v){return function(y,A,S,C){o(A);var _=l(y),T=d(_),D=f(_.length),P=v?D-1:0,V=v?-1:1;if(S<2)for(;;){if(P in T){C=T[P],P+=V;break}if(P+=V,v?P<0:D<=P)throw TypeError("Reduce of empty array with no initial value")}for(;v?P>=0:D>P;P+=V)P in T&&(C=A(C,T[P],P,_));return C}};t.exports={left:g(!1),right:g(!0)}},d784:function(t,r,i){i("ac1f");var o=i("6eeb"),l=i("d039"),d=i("b622"),f=i("9263"),g=i("9112"),v=d("species"),y=!l(function(){var T=/./;return T.exec=function(){var D=[];return D.groups={a:"7"},D},"".replace(T,"$<a>")!=="7"}),A=function(){return"a".replace(/./,"$0")==="$0"}(),S=d("replace"),C=function(){return/./[S]?/./[S]("a","$0")==="":!1}(),_=!l(function(){var T=/(?:)/,D=T.exec;T.exec=function(){return D.apply(this,arguments)};var P="ab".split(T);return P.length!==2||P[0]!=="a"||P[1]!=="b"});t.exports=function(T,D,P,V){var x=d(T),X=!l(function(){var U={};return U[x]=function(){return 7},""[T](U)!=7}),H=X&&!l(function(){var U=!1,pe=/a/;return T==="split"&&(pe={},pe.constructor={},pe.constructor[v]=function(){return pe},pe.flags="",pe[x]=/./[x]),pe.exec=function(){return U=!0,null},pe[x](""),!U});if(!X||!H||T==="replace"&&!(y&&A&&!C)||T==="split"&&!_){var Y=/./[x],F=P(x,""[T],function(U,pe,ge,de,xe){return pe.exec===f?X&&!xe?{done:!0,value:Y.call(pe,ge,de)}:{done:!0,value:U.call(ge,pe,de)}:{done:!1}},{REPLACE_KEEPS_$0:A,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:C}),ce=F[0],ve=F[1];o(String.prototype,T,ce),o(RegExp.prototype,x,D==2?function(U,pe){return ve.call(U,this,pe)}:function(U){return ve.call(U,this)})}V&&g(RegExp.prototype[x],"sham",!0)}},d81d:function(t,r,i){var o=i("23e7"),l=i("b727").map,d=i("1dde"),f=i("ae40"),g=d("map"),v=f("map");o({target:"Array",proto:!0,forced:!g||!v},{map:function(A){return l(this,A,arguments.length>1?arguments[1]:void 0)}})},da84:function(t,r,i){(function(o){var l=function(d){return d&&d.Math==Math&&d};t.exports=l(typeof globalThis=="object"&&globalThis)||l(typeof window=="object"&&window)||l(typeof self=="object"&&self)||l(typeof o=="object"&&o)||Function("return this")()}).call(this,i("c8ba"))},dbb4:function(t,r,i){var o=i("23e7"),l=i("83ab"),d=i("56ef"),f=i("fc6a"),g=i("06cf"),v=i("8418");o({target:"Object",stat:!0,sham:!l},{getOwnPropertyDescriptors:function(A){for(var S=f(A),C=g.f,_=d(S),T={},D=0,P,V;_.length>D;)V=C(S,P=_[D++]),V!==void 0&&v(T,P,V);return T}})},ddb0:function(t,r,i){var o=i("da84"),l=i("fdbc"),d=i("e260"),f=i("9112"),g=i("b622"),v=g("iterator"),y=g("toStringTag"),A=d.values;for(var S in l){var C=o[S],_=C&&C.prototype;if(_){if(_[v]!==A)try{f(_,v,A)}catch(D){_[v]=A}if(_[y]||f(_,y,S),l[S]){for(var T in d)if(_[T]!==d[T])try{f(_,T,d[T])}catch(D){_[T]=d[T]}}}}},df75:function(t,r,i){var o=i("ca84"),l=i("7839");t.exports=Object.keys||function(f){return o(f,l)}},e01a:function(t,r,i){var o=i("23e7"),l=i("83ab"),d=i("da84"),f=i("5135"),g=i("861d"),v=i("9bf2").f,y=i("e893"),A=d.Symbol;if(l&&typeof A=="function"&&(!("description"in A.prototype)||A().description!==void 0)){var S={},C=function(){var x=arguments.length<1||arguments[0]===void 0?void 0:String(arguments[0]),X=this instanceof C?new A(x):x===void 0?A():A(x);return x===""&&(S[X]=!0),X};y(C,A);var _=C.prototype=A.prototype;_.constructor=C;var T=_.toString,D=String(A("test"))=="Symbol(test)",P=/^Symbol\((.*)\)[^)]+$/;v(_,"description",{configurable:!0,get:function(){var x=g(this)?this.valueOf():this,X=T.call(x);if(f(S,x))return"";var H=D?X.slice(7,-1):X.replace(P,"$1");return H===""?void 0:H}}),o({global:!0,forced:!0},{Symbol:C})}},e163:function(t,r,i){var o=i("5135"),l=i("7b0b"),d=i("f772"),f=i("e177"),g=d("IE_PROTO"),v=Object.prototype;t.exports=f?Object.getPrototypeOf:function(y){return y=l(y),o(y,g)?y[g]:typeof y.constructor=="function"&&y instanceof y.constructor?y.constructor.prototype:y instanceof Object?v:null}},e177:function(t,r,i){var o=i("d039");t.exports=!o(function(){function l(){}return l.prototype.constructor=null,Object.getPrototypeOf(new l)!==l.prototype})},e260:function(t,r,i){var o=i("fc6a"),l=i("44d2"),d=i("3f8c"),f=i("69f3"),g=i("7dd0"),v="Array Iterator",y=f.set,A=f.getterFor(v);t.exports=g(Array,"Array",function(S,C){y(this,{type:v,target:o(S),index:0,kind:C})},function(){var S=A(this),C=S.target,_=S.kind,T=S.index++;return!C||T>=C.length?(S.target=void 0,{value:void 0,done:!0}):_=="keys"?{value:T,done:!1}:_=="values"?{value:C[T],done:!1}:{value:[T,C[T]],done:!1}},"values"),d.Arguments=d.Array,l("keys"),l("values"),l("entries")},e439:function(t,r,i){var o=i("23e7"),l=i("d039"),d=i("fc6a"),f=i("06cf").f,g=i("83ab"),v=l(function(){f(1)}),y=!g||v;o({target:"Object",stat:!0,forced:y,sham:!g},{getOwnPropertyDescriptor:function(S,C){return f(d(S),C)}})},e538:function(t,r,i){var o=i("b622");r.f=o},e893:function(t,r,i){var o=i("5135"),l=i("56ef"),d=i("06cf"),f=i("9bf2");t.exports=function(g,v){for(var y=l(v),A=f.f,S=d.f,C=0;C<y.length;C++){var _=y[C];o(g,_)||A(g,_,S(v,_))}}},e8b5:function(t,r,i){var o=i("c6b6");t.exports=Array.isArray||function(d){return o(d)=="Array"}},e95a:function(t,r,i){var o=i("b622"),l=i("3f8c"),d=o("iterator"),f=Array.prototype;t.exports=function(g){return g!==void 0&&(l.Array===g||f[d]===g)}},eaf9:function(t,r,i){var o=i("3b81"),l=i.n(o);l.a},f013:function(t,r,i){var o=i("fdb2"),l=i.n(o);l.a},f5df:function(t,r,i){var o=i("00ee"),l=i("c6b6"),d=i("b622"),f=d("toStringTag"),g=l(function(){return arguments}())=="Arguments",v=function(y,A){try{return y[A]}catch(S){}};t.exports=o?l:function(y){var A,S,C;return y===void 0?"Undefined":y===null?"Null":typeof(S=v(A=Object(y),f))=="string"?S:g?l(A):(C=l(A))=="Object"&&typeof A.callee=="function"?"Arguments":C}},f6fd:function(t,r){(function(i){var o="currentScript",l=i.getElementsByTagName("script");o in i||Object.defineProperty(i,o,{get:function(){try{throw new Error}catch(g){var d,f=(/.*at [^\(]*\((.*):.+:.+\)$/ig.exec(g.stack)||[!1])[1];for(d in l)if(l[d].src==f||l[d].readyState=="interactive")return l[d];return null}}})})(document)},f772:function(t,r,i){var o=i("5692"),l=i("90e3"),d=o("keys");t.exports=function(f){return d[f]||(d[f]=l(f))}},f7fe:function(t,r,i){(function(o){var l="Expected a function",d=NaN,f="[object Symbol]",g=/^\s+|\s+$/g,v=/^[-+]0x[0-9a-f]+$/i,y=/^0b[01]+$/i,A=/^0o[0-7]+$/i,S=parseInt,C=typeof o=="object"&&o&&o.Object===Object&&o,_=typeof self=="object"&&self&&self.Object===Object&&self,T=C||_||Function("return this")(),D=Object.prototype,P=D.toString,V=Math.max,x=Math.min,X=function(){return T.Date.now()};function H(U,pe,ge){var de,xe,Ae,Te,Re,K,ne=0,oe=!1,he=!1,B=!0;if(typeof U!="function")throw new TypeError(l);pe=ve(pe)||0,Y(ge)&&(oe=!!ge.leading,he="maxWait"in ge,Ae=he?V(ve(ge.maxWait)||0,pe):Ae,B="trailing"in ge?!!ge.trailing:B);function re(je){var pt=de,nt=xe;return de=xe=void 0,ne=je,Te=U.apply(nt,pt),Te}function k(je){return ne=je,Re=setTimeout(Ie,pe),oe?re(je):Te}function le(je){var pt=je-K,nt=je-ne,Nt=pe-pt;return he?x(Nt,Ae-nt):Nt}function Le(je){var pt=je-K,nt=je-ne;return K===void 0||pt>=pe||pt<0||he&&nt>=Ae}function Ie(){var je=X();if(Le(je))return Ee(je);Re=setTimeout(Ie,le(je))}function Ee(je){return Re=void 0,B&&de?re(je):(de=xe=void 0,Te)}function it(){Re!==void 0&&clearTimeout(Re),ne=0,de=K=xe=Re=void 0}function tt(){return Re===void 0?Te:Ee(X())}function Ne(){var je=X(),pt=Le(je);if(de=arguments,xe=this,K=je,pt){if(Re===void 0)return k(K);if(he)return Re=setTimeout(Ie,pe),re(K)}return Re===void 0&&(Re=setTimeout(Ie,pe)),Te}return Ne.cancel=it,Ne.flush=tt,Ne}function Y(U){var pe=typeof U;return!!U&&(pe=="object"||pe=="function")}function F(U){return!!U&&typeof U=="object"}function ce(U){return typeof U=="symbol"||F(U)&&P.call(U)==f}function ve(U){if(typeof U=="number")return U;if(ce(U))return d;if(Y(U)){var pe=typeof U.valueOf=="function"?U.valueOf():U;U=Y(pe)?pe+"":pe}if(typeof U!="string")return U===0?U:+U;U=U.replace(g,"");var ge=y.test(U);return ge||A.test(U)?S(U.slice(2),ge?2:8):v.test(U)?d:+U}t.exports=H}).call(this,i("c8ba"))},fb15:function(t,r,i){if(i.r(r),typeof window!="undefined"){i("f6fd");var o;(o=window.document.currentScript)&&(o=o.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(i.p=o[1])}i("4de4"),i("4160"),i("a15b"),i("d81d"),i("fb6a"),i("07ac"),i("159b"),i("a4d3"),i("e439"),i("dbb4"),i("b64b");function l(j,m,E){return m in j?Object.defineProperty(j,m,{value:E,enumerable:!0,configurable:!0,writable:!0}):j[m]=E,j}function d(j,m){var E=Object.keys(j);if(Object.getOwnPropertySymbols){var I=Object.getOwnPropertySymbols(j);m&&(I=I.filter(function(ee){return Object.getOwnPropertyDescriptor(j,ee).enumerable})),E.push.apply(E,I)}return E}function f(j){for(var m=1;m<arguments.length;m++){var E=arguments[m]!=null?arguments[m]:{};m%2?d(Object(E),!0).forEach(function(I){l(j,I,E[I])}):Object.getOwnPropertyDescriptors?Object.defineProperties(j,Object.getOwnPropertyDescriptors(E)):d(Object(E)).forEach(function(I){Object.defineProperty(j,I,Object.getOwnPropertyDescriptor(E,I))})}return j}var g=i("a48b"),v=i.n(g),y={computed:{isPropsUpdated:function(){var m=this;return Object.keys(this.$props).forEach(function(E){return m[E]}),this.updateSwitch=!this.updateSwitch}},watch:{isPropsUpdated:function(){typeof this.onPropsUpdated=="function"&&this.onPropsUpdated()}}},A=y;function S(j,m,E,I,ee,Q,ae,be){var Se=typeof j=="function"?j.options:j;m&&(Se.render=m,Se.staticRenderFns=E,Se._compiled=!0),I&&(Se.functional=!0),Q&&(Se._scopeId="data-v-"+Q);var Fe;if(ae?(Fe=function(ze){ze=ze||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!ze&&typeof __VUE_SSR_CONTEXT__!="undefined"&&(ze=__VUE_SSR_CONTEXT__),ee&&ee.call(this,ze),ze&&ze._registeredComponents&&ze._registeredComponents.add(ae)},Se._ssrRegister=Fe):ee&&(Fe=be?function(){ee.call(this,this.$root.$options.shadowRoot)}:ee),Fe)if(Se.functional){Se._injectStyles=Fe;var Ve=Se.render;Se.render=function(Je,Xe){return Fe.call(Xe),Ve(Je,Xe)}}else{var Ze=Se.beforeCreate;Se.beforeCreate=Ze?[].concat(Ze,Fe):[Fe]}return{exports:j,options:Se}}var C,_,T=S(A,C,_,!1,null,null,null),D=T.exports,P=i("88bc"),V=i.n(P),x=i("42a0"),X=i.n(x),H=i("c832"),Y=i.n(H),F=function(m,E,I){!m||(m.data=m.data||{},m.data[E]=f({},m.data[E],{},I))},ce=function(m,E,I){!m||(m.data=m.data||{},m.data[E]=I)},ve=["class","staticClass","style","attrs","props","domProps","on","nativeOn","directives","scopesSlots","slot","ref","key"];function U(j){return""+j+"-cloned-cid"}function pe(j,m){var E=V()(j.data,ve);if(m){var I=j.componentOptions;X()(E,{props:I.propsData,on:I.listeners})}return E.key&&(E.key=U(E.key)),E}var ge=function j(m){var E=m.context&&m.context.$createElement,I=!!m.componentOptions,ee=!m.tag,Q=I?m.componentOptions.children:m.children;if(ee)return m.text;var ae=pe(m,I),be=I?m.componentOptions.Ctor:m.tag,Se=Q?Q.map(function(Fe){return j(Fe)}):void 0;return E(be,ae,Se)},de=function(m,E,I){if(!!m){var ee=m.data||{};return typeof E=="undefined"?ee:Y()(ee,E,I)}},xe=function(m){return f({},de(m,"staticStyle",{}),{},de(m,"style",{}))};i("99af"),i("a623"),i("a630"),i("c975"),i("13d5"),i("a9e3"),i("ac1f"),i("3ca3"),i("466d");var Ae=function(){return!!(typeof window!="undefined"&&window.document&&window.document.createElement)},Te=function(m){return m.unslick||!m.infinite?0:m.variableWidth?m.slideCount:m.slidesToShow+(m.centerMode?1:0)},Re=function(m){return m.unslick||!m.infinite?0:m.slideCount},K=function(m,E,I){return m.target.tagName.match("TEXTAREA|INPUT|SELECT")||!E?"":m.keyCode===37?I?"next":"previous":m.keyCode===39?I?"previous":"next":""},ne=function(m){return m.targetSlide>m.currentSlide?m.targetSlide>m.currentSlide+oe(m)?"left":"right":m.targetSlide<m.currentSlide-he(m)?"right":"left"},oe=function(m){var E=m.slidesToShow,I=m.centerMode,ee=m.rtl,Q=m.centerPadding;if(I){var ae=(E-1)/2+1;return parseInt(Q)>0&&(ae+=1),ee&&E%2===0&&(ae+=1),ae}return ee?0:E-1},he=function(m){var E=m.slidesToShow,I=m.centerMode,ee=m.rtl,Q=m.centerPadding;if(I){var ae=(E-1)/2+1;return parseInt(Q)>0&&(ae+=1),!ee&&E%2===0&&(ae+=1),ae}return ee?E-1:0},B=function(m){return m.currentSlide-k(m)},re=function(m){return m.currentSlide+le(m)},k=function(m){return m.centerMode?Math.floor(m.slidesToShow/2)+(parseInt(m.centerPadding)>0?1:0):0},le=function(m){return m.centerMode?Math.floor((m.slidesToShow-1)/2)+1+(parseInt(m.centerPadding)>0?1:0):m.slidesToShow},Le=function(m){for(var E=[],I=B(m),ee=re(m),Q=I;Q<ee;Q++)m.lazyLoadedList.indexOf(Q)<0&&E.push(Q);return E},Ie=function(m,E){var I,ee,Q,ae,be,Se=m.slidesToScroll,Fe=m.slidesToShow,Ve=m.slideCount,Ze=m.currentSlide,ze=m.lazyLoad,Je=m.infinite;if(ae=Ve%Se!==0,I=ae?0:(Ve-Ze)%Se,E.message==="previous")Q=I===0?Se:Fe-I,be=Ze-Q,ze&&!Je&&(ee=Ze-Q,be=ee===-1?Ve-1:ee);else if(E.message==="next")Q=I===0?Se:I,be=Ze+Q,ze&&!Je&&(be=(Ze+Se)%Ve+I);else if(E.message==="dots"){if(be=E.index*E.slidesToScroll,be===E.currentSlide)return null}else if(E.message==="children"){if(be=E.index,be===E.currentSlide)return null;if(Je){var Xe=ne(f({},m,{targetSlide:be}));be>E.currentSlide&&Xe==="left"?be=be-Ve:be<E.currentSlide&&Xe==="right"&&(be=be+Ve)}}else if(E.message==="index"&&(be=Number(E.index),be===E.currentSlide))return null;return be},Ee=function(m){return Object.keys(m).filter(function(E){return m[E]!==void 0}).reduce(function(E,I){return E[I]=m[I],E},{})},it=function(m){return Object.keys(m).filter(function(E){return m[E]!==void 0&&m[E]!==null}).reduce(function(E,I){return E[I]=m[I],E},{})},tt=function(m,E,I){return!E||!I&&m.type.indexOf("mouse")!==-1?"":{dragging:!0,touchObject:{startX:m.touches?m.touches[0].pageX:m.clientX,startY:m.touches?m.touches[0].pageY:m.clientY,curX:m.touches?m.touches[0].pageX:m.clientX,curY:m.touches?m.touches[0].pageY:m.clientY}}},Ne=function(m,E){var I=E.scrolling,ee=E.animating,Q=E.vertical,ae=E.swipeToSlide,be=E.verticalSwiping,Se=E.rtl,Fe=E.currentSlide,Ve=E.edgeFriction,Ze=E.edgeDragged,ze=E.onEdge,Je=E.swiped,Xe=E.swiping,We=E.slideCount,Ge=E.slidesToScroll,qe=E.infinite,Pe=E.touchObject,_t=E.swipeEvent,qt=E.listHeight,on=E.listWidth;if(!I){if(ee)return m.preventDefault();Q&&ae&&be&&m.preventDefault();var Wt,mn={},Gn=Lt(E);Pe.curX=m.touches?m.touches[0].pageX:m.clientX,Pe.curY=m.touches?m.touches[0].pageY:m.clientY,Pe.swipeLength=Math.round(Math.sqrt(Math.pow(Pe.curX-Pe.startX,2)));var oi=Math.round(Math.sqrt(Math.pow(Pe.curY-Pe.startY,2)));if(!be&&!Xe&&oi>10)return{scrolling:!0};be&&(Pe.swipeLength=oi);var sr=(Se?-1:1)*(Pe.curX>Pe.startX?1:-1);be&&(sr=Pe.curY>Pe.startY?1:-1);var ro=Math.ceil(We/Ge),lr=mt(E.touchObject,be),Yn=Pe.swipeLength;return qe||(Fe===0&&lr==="right"||Fe+1>=ro&&lr==="left"||!Mt(E)&&lr==="left")&&(Yn=Pe.swipeLength*Ve,Ze===!1&&ze&&(ze(lr),mn.edgeDragged=!0)),!Je&&_t&&(_t(lr),mn.swiped=!0),Q?Wt=Gn+Yn*(qt/on)*sr:Se?Wt=Gn-Yn*sr:Wt=Gn+Yn*sr,be&&(Wt=Gn+Yn*sr),mn=f({},mn,{touchObject:Pe,swipeLeft:Wt,trackStyle:Ke(f({},E,{left:Wt}))}),Math.abs(Pe.curX-Pe.startX)<Math.abs(Pe.curY-Pe.startY)*.8||Pe.swipeLength>10&&(mn.swiping=!0,m.preventDefault()),mn}},je=function(m,E){var I=E.dragging,ee=E.swipe,Q=E.touchObject,ae=E.listWidth,be=E.touchThreshold,Se=E.verticalSwiping,Fe=E.listHeight,Ve=E.currentSlide,Ze=E.swipeToSlide,ze=E.scrolling,Je=E.onSwipe;if(!I)return ee&&m.preventDefault(),{};var Xe=Se?Fe/be:ae/be,We=mt(Q,Se),Ge={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(ze||!Q.swipeLength)return Ge;if(Q.swipeLength>Xe){m.preventDefault(),Je&&Je(We);var qe,Pe;switch(We){case"left":case"up":Pe=Ve+Nt(E),qe=Ze?nt(E,Pe):Pe,Ge.currentDirection=0;break;case"right":case"down":Pe=Ve-Nt(E),qe=Ze?nt(E,Pe):Pe,Ge.currentDirection=1;break;default:qe=Ve}Ge.triggerSlideHandler=qe}else{var _t=Lt(E);Ge.trackStyle=Ft(f({},E,{left:_t}))}return Ge},pt=function(m){for(var E=m.infinite?m.slideCount*2:m.slideCount,I=m.infinite?m.slidesToShow*-1:0,ee=m.infinite?m.slidesToShow*-1:0,Q=[];I<E;)Q.push(I),I=ee+m.slidesToScroll,ee+=Math.min(m.slidesToScroll,m.slidesToShow);return Q},nt=function(m,E){var I=pt(m),ee=0;if(E>I[I.length-1])E=I[I.length-1];else for(var Q in I){if(E<I[Q]){E=ee;break}ee=I[Q]}return E},Nt=function(m){var E=m.centerMode?m.slideWidth*Math.floor(m.slidesToShow/2):0;if(m.swipeToSlide){var I,ee=m.listRef,Q=ee.querySelectorAll(".slick-slide");if(Array.from(Q).every(function(Se){if(m.vertical){if(Se.offsetTop+Gt(Se)/2>m.swipeLeft*-1)return I=Se,!1}else if(Se.offsetLeft-E+St(Se)/2>m.swipeLeft*-1)return I=Se,!1;return!0}),!I)return 0;var ae=m.rtl===!0?m.slideCount-m.currentSlide:m.currentSlide,be=Math.abs(I.dataset.index-ae)||1;return be}else return m.slidesToScroll},Qt=function(m,E){var I={};return E.forEach(function(ee){return I[ee]=m[ee]}),I},vt={TRACK:["fade","cssEase","speed","infinite","centerMode","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding"],DOT:["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","children","customPaging","infinite"],ARROW:["infinite","centerMode","currentSlide","slideCount","slidesToShow","prevArrow","nextArrow"]},Mt=function(m){var E=!0;return m.infinite||(m.centerMode&&m.currentSlide>=m.slideCount-1||m.slideCount<=m.slidesToShow||m.currentSlide>=m.slideCount-m.slidesToShow)&&(E=!1),E},xt=function(m){var E=m.waitForAnimate,I=m.animating,ee=m.fade,Q=m.infinite,ae=m.index,be=m.slideCount,Se=m.lazyLoadedList,Fe=m.lazyLoad,Ve=m.currentSlide,Ze=m.centerMode,ze=m.slidesToScroll,Je=m.slidesToShow,Xe=m.useCSS;if(E&&I)return{};var We=ae,Ge,qe,Pe,_t={},qt={};if(ee){if(!Q&&(ae<0||ae>=be))return{};ae<0?We=ae+be:ae>=be&&(We=ae-be),Fe&&Se.indexOf(We)<0&&Se.push(We),_t={animating:!0,currentSlide:We,lazyLoadedList:Se},qt={animating:!1}}else Ge=We,We<0?(Ge=We+be,Q?be%ze!==0&&(Ge=be-be%ze):Ge=0):!Mt(m)&&We>Ve?We=Ge=Ve:Ze&&We>=be?(We=Q?be:be-1,Ge=Q?0:be-1):We>=be&&(Ge=We-be,Q?be%ze!==0&&(Ge=0):Ge=be-Je),qe=Lt(f({},m,{slideIndex:We})),Pe=Lt(f({},m,{slideIndex:Ge})),Q||(qe===Pe&&(We=Ge),qe=Pe),Fe&&Se.concat(Le(f({},m,{currentSlide:We}))),Xe?(_t={animating:!0,currentSlide:Ge,trackStyle:Ft(f({},m,{left:qe})),lazyLoadedList:Se},qt={animating:!1,currentSlide:Ge,trackStyle:Ke(f({},m,{left:Pe})),swipeLeft:null}):_t={currentSlide:Ge,trackStyle:Ke(f({},m,{left:Pe})),lazyLoadedList:Se};return{state:_t,nextState:qt}},St=function(m){return m&&m.offsetWidth||0},Gt=function(m){return m&&m.offsetHeight||0},mt=function(m){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,I,ee,Q,ae;return I=m.startX-m.curX,ee=m.startY-m.curY,Q=Math.atan2(ee,I),ae=Math.round(Q*180/Math.PI),ae<0&&(ae=360-Math.abs(ae)),ae<=45&&ae>=0||ae<=360&&ae>=315?"left":ae>=135&&ae<=225?"right":E===!0?ae>=35&&ae<=135?"up":"down":"vertical"},Bt=function(m){var E=m.children.length,I=Math.ceil(St(m.listRef)),ee=Math.ceil(St(m.trackRef)),Q;if(m.vertical)Q=I;else{var ae=m.centerMode&&parseInt(m.centerPadding)*2;typeof m.centerPadding=="string"&&m.centerPadding.slice(-1)==="%"&&(ae*=I/100),Q=Math.ceil((I-ae)/m.slidesToShow)}var be=m.listRef&&Gt(m.listRef.querySelector('[data-index="0"]')),Se=be*m.slidesToShow,Fe=m.currentSlide===void 0?m.initialSlide:m.currentSlide;m.rtl&&m.currentSlide===void 0&&(Fe=E-1-m.initialSlide);var Ve=m.lazyLoadedList||[],Ze=Le({currentSlide:Fe,lazyLoadedList:Ve});Ve.concat(Ze);var ze={slideCount:E,slideWidth:Q,listWidth:I,trackWidth:ee,currentSlide:Fe,slideHeight:be,listHeight:Se,lazyLoadedList:Ve};return m.autoplaying===null&&m.autoplay&&(ze.autoplaying="playing"),ze},Lt=function(m){if(m.unslick)return 0;Tt(m,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var E=m.slideIndex,I=m.trackRef,ee=m.infinite,Q=m.centerMode,ae=m.slideCount,be=m.slidesToShow,Se=m.slidesToScroll,Fe=m.slideWidth,Ve=m.listWidth,Ze=m.variableWidth,ze=m.slideHeight,Je=m.fade,Xe=m.vertical,We=0,Ge,qe,Pe=0;if(Je||m.slideCount===1)return 0;var _t=0;if(ee?(_t=-Te(m),ae%Se!==0&&E+Se>ae&&(_t=-(E>ae?be-(E-ae):ae%Se)),Q&&(_t+=parseInt(be/2))):(ae%Se!==0&&E+Se>ae&&(_t=be-ae%Se),Q&&(_t=parseInt(be/2))),We=_t*Fe,Pe=_t*ze,Xe?Ge=E*ze*-1+Pe:Ge=E*Fe*-1+We,Ze===!0){var qt,on=I.$el;if(qt=E+Te(m),qe=on&&on.childNodes[qt],Ge=qe?qe.offsetLeft*-1:0,Q===!0){qt=ee?E+Te(m):E,qe=on&&on.children[qt],Ge=0;for(var Wt=0;Wt<qt;Wt++)Ge-=on&&on.children[Wt]&&on.children[Wt].offsetWidth;Ge-=parseInt(m.centerPadding),Ge+=qe&&(Ve-qe.offsetWidth)/2}}return Ge},It=function(m){return m.slideCount===1?1:Te(m)+m.slideCount+Re(m)},Tt=function(m,E){return E.reduce(function(I,ee){return I&&m.hasOwnProperty(ee)},!0)?null:console.error("Keys Missing:",m)},Ke=function(m){Tt(m,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var E,I,ee=m.slideCount+2*m.slidesToShow;m.vertical?I=ee*m.slideHeight:E=It(m)*m.slideWidth;var Q={opacity:1,transition:"",WebkitTransition:""};if(m.useTransform){var ae=m.vertical?"translate3d(0px, "+m.left+"px, 0px)":"translate3d("+m.left+"px, 0px, 0px)",be=m.vertical?"translate3d(0px, "+m.left+"px, 0px)":"translate3d("+m.left+"px, 0px, 0px)",Se=m.vertical?"translateY("+m.left+"px)":"translateX("+m.left+"px)";Q=f({},Q,{WebkitTransform:ae,transform:be,msTransform:Se})}else m.vertical?Q.top=m.left:Q.left=m.left;return m.fade&&(Q={opacity:1}),E&&(Q.width=E+"px"),I&&(Q.height=I+"px"),window&&!window.addEventListener&&window.attachEvent&&(m.vertical?Q.marginTop=m.left+"px":Q.marginLeft=m.left+"px"),Q},Ft=function(m){Tt(m,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var E=Ke(m);return m.useTransform?(E.WebkitTransition="-webkit-transform "+m.speed+"ms "+m.cssEase,E.transition="transform "+m.speed+"ms "+m.cssEase):m.vertical?E.transition="top "+m.speed+"ms "+m.cssEase:E.transition="left "+m.speed+"ms "+m.cssEase,E},yt={accessibility:{type:Boolean,default:!0},adaptiveHeight:{type:Boolean,default:!1},arrows:{type:Boolean,default:!0},asNavFor:{type:Object,default:null},autoplay:{type:Boolean,default:!1},autoplaySpeed:{type:Number,default:3e3},centerMode:{type:Boolean,default:!1},centerPadding:{type:String,default:"50px"},cssEase:{type:String,default:"ease"},dots:{type:Boolean,default:!1},dotsClass:{type:String,default:"slick-dots"},draggable:{type:Boolean,default:!0},edgeFriction:{type:Number,default:.35},fade:{type:Boolean,default:!1},focusOnSelect:{type:Boolean,default:!1},infinite:{type:Boolean,default:!0},initialSlide:{type:Number,default:0},lazyLoad:{type:String,default:null},pauseOnDotsHover:{type:Boolean,default:!1},pauseOnFocus:{type:Boolean,default:!1},pauseOnHover:{type:Boolean,default:!0},responsive:{type:Array,default:null},rows:{type:Number,default:1},rtl:{type:Boolean,default:!1},slidesPerRow:{type:Number,default:1},slidesToScroll:{type:Number,default:1},slidesToShow:{type:Number,default:1},speed:{type:Number,default:500},swipe:{type:Boolean,default:!0},swipeToSlide:{type:Boolean,default:!1},touchMove:{type:Boolean,default:!0},touchThreshold:{type:Number,default:5},useCSS:{type:Boolean,default:!0},useTransform:{type:Boolean,default:!0},variableWidth:{type:Boolean,default:!1},vertical:{type:Boolean,default:!1},waitForAnimate:{type:Boolean,default:!0}},Vt=Object.keys(yt).reduce(function(j,m){return j[m]=yt[m].default,j},{});Object.keys(yt).reduce(function(j,m){return j[m]=yt[m].type,j},{}),i("cca6");function Kt(j,m){if(j==null)return{};var E={},I=Object.keys(j),ee,Q;for(Q=0;Q<I.length;Q++)ee=I[Q],!(m.indexOf(ee)>=0)&&(E[ee]=j[ee]);return E}function un(j,m){if(j==null)return{};var E=Kt(j,m),I,ee;if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(j);for(ee=0;ee<Q.length;ee++)I=Q[ee],!(m.indexOf(I)>=0)&&(!Object.prototype.propertyIsEnumerable.call(j,I)||(E[I]=j[I]))}return E}i("e01a"),i("d28b"),i("e260"),i("d3b7"),i("ddb0");function q(j){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?q=function(E){return typeof E}:q=function(E){return E&&typeof Symbol=="function"&&E.constructor===Symbol&&E!==Symbol.prototype?"symbol":typeof E},q(j)}var De=i("6dd8"),fe=i("f7fe"),me=i.n(fe),ye=function(m){var E,I,ee,Q,ae;m.rtl?ae=m.slideCount-1-m.index:ae=m.index,ee=ae<0||ae>=m.slideCount,m.centerMode?(Q=Math.floor(m.slidesToShow/2),I=(ae-m.currentSlide)%m.slideCount===0,ae>m.currentSlide-Q-1&&ae<=m.currentSlide+Q&&(E=!0)):E=m.currentSlide<=ae&&ae<m.currentSlide+m.slidesToShow;var be=ae===m.currentSlide;return{"slick-slide":!0,"slick-active":E,"slick-center":I,"slick-cloned":ee,"slick-current":be}},ke=function(m){var E={};return(m.variableWidth===void 0||m.variableWidth===!1)&&(E.width=typeof m.slideWidth=="number"?"".concat(m.slideWidth,"px"):m.slideWidth),m.fade&&(E.position="relative",m.vertical?E.top="".concat(-m.index*parseInt(m.slideHeight),"px"):E.left="".concat(-m.index*parseInt(m.slideWidth),"px"),E.opacity=m.currentSlide===m.index?1:0,E.transition="opacity "+m.speed+"ms "+m.cssEase+", visibility "+m.speed+"ms "+m.cssEase),E},$e=function(m,E){return m.key!=null&&String(m.key)||E},ut={name:"SliderTrack",props:vt.TRACK,methods:{cloneSlide:function(m,E){var I=this,ee=ge(m);return ee.key=E.key,F(ee,"class",E.class),F(ee,"attrs",E.attrs),F(ee,"style",E.style),F(ee,"on",{click:function(ae){de(m,"on.click",function(){})(ae),I.$emit("childClicked",E.childOnClickOptions)}}),ee},renderSlides:function(m,E){var I=this,ee=this.$createElement,Q,ae=[],be=[],Se=[],Fe=E.length,Ve=B(m),Ze=re(m);return E.forEach(function(ze,Je){var Xe,We={message:"children",index:Je,slidesToScroll:m.slidesToScroll,currentSlide:m.currentSlide};!m.lazyLoad||m.lazyLoad&&m.lazyLoadedList.indexOf(Je)>=0?Xe=ze:Xe=ee("div");var Ge=ke(f({},m,{index:Je})),qe=ye(f({},m,{index:Je}));if(ae.push(I.cloneSlide(Xe,{key:"original"+$e(Xe,Je),class:qe,style:f({outline:"none"},Ge),attrs:{tabIndex:"-1","data-index":Je,"aria-hidden":"".concat(!qe["slick-active"])},childOnClickOptions:We})),m.infinite&&m.fade===!1&&Fe>m.slidesToShow){var Pe=Fe-Je;Pe<=Te(m)&&Fe!==m.slidesToShow&&(Q=-Pe,Q>=Ve&&(Xe=ze),qe=ye(f({},m,{index:Q})),be.push(I.cloneSlide(Xe,{key:"precloned"+$e(Xe,Q),class:qe,style:Ge,attrs:{tabIndex:"-1","data-index":Q,"aria-hidden":"".concat(!qe["slick-active"])},childOnClickOptions:We}))),Fe!==m.slidesToShow&&(Q=Fe+Je,Q<Ze&&(Xe=ze),qe=ye(f({},m,{index:Q})),Se.push(I.cloneSlide(Xe,{key:"postcloned"+$e(Xe,Q),class:qe,style:Ge,attrs:{tabIndex:"-1","data-index":Q,"aria-hidden":"".concat(!qe["slick-active"])},childOnClickOptions:We})))}},this),m.rtl?be.concat(ae,Se).reverse():be.concat(ae,Se)}},render:function(){var m=arguments[0],E=this.renderSlides(this.$props,this.$slots.default);return m("div",{class:{"slick-track":!0,"slick-center":this.$props.centerMode},style:this.trackStyle},[E])}},an=ut;i("6ea2");var z,ue,Me=S(an,z,ue,!1,null,"e4caeaf8",null),rt=Me.exports;function Xt(j,m){(m==null||m>j.length)&&(m=j.length);for(var E=0,I=new Array(m);E<m;E++)I[E]=j[E];return I}function Ot(j){if(Array.isArray(j))return Xt(j)}function zt(j){if(typeof Symbol!="undefined"&&Symbol.iterator in Object(j))return Array.from(j)}i("b0c0"),i("25f0");function Rr(j,m){if(!!j){if(typeof j=="string")return Xt(j,m);var E=Object.prototype.toString.call(j).slice(8,-1);if(E==="Object"&&j.constructor&&(E=j.constructor.name),E==="Map"||E==="Set")return Array.from(E);if(E==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(E))return Xt(j,m)}}function ti(){throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ni(j){return Ot(j)||zt(j)||Rr(j)||ti()}var ni={name:"SliderArrow",props:[].concat(Ni(vt.ARROW),["type"]),render:function(){var m=this,E=arguments[0],I={"slick-arrow":!0},ee=!0,Q,ae={currentSlide:this.currentSlide,slideCount:this.slideCount};return this.type==="previous"?(I["slick-prev"]=!0,!this.infinite&&(this.currentSlide===0||this.slideCount<=this.slidesToShow)&&(I["slick-disabled"]=!0,ee=!1),ae.key="0",Q=this.prevArrow?this.prevArrow(ae)[0]:E("button",{attrs:{type:"button","data-role":"none"},style:"display: block;"},["Previous"])):(I["slick-next"]=!0,Mt(this.$props)||(I["slick-disabled"]=!0,ee=!1),ae.key="1",Q=this.nextArrow?this.nextArrow(ae)[0]:E("button",{attrs:{type:"button","data-role":"none"},style:"display: block;"},["Next"])),ce(Q,"key",ae.key),F(Q,"class",I),F(Q,"on",{click:function(){ee&&m.$emit("arrowClicked",{message:m.type})}}),Q}},ji=ni;i("f013");var Rn,Mr,Mn=S(ji,Rn,Mr,!1,null,"21137603",null),In=Mn.exports;i("1276");var jt=function(m){var E;return m.infinite?E=Math.ceil(m.slideCount/m.slidesToScroll):E=Math.ceil((m.slideCount-m.slidesToShow)/m.slidesToScroll)+1,E},$i={name:"SliderDots",props:vt.DOT,render:function(){var m=this,E=arguments[0],I=jt({slideCount:this.slideCount,slidesToScroll:this.slidesToScroll,slidesToShow:this.slidesToShow,infinite:this.infinite}),ee=Array.apply(null,Array(I+1).join("0").split("")).map(function(be,Se){var Fe=Se*m.slidesToScroll,Ve=Se*m.slidesToScroll+(m.slidesToScroll-1),Ze={"slick-active":m.currentSlide>=Fe&&m.currentSlide<=Ve},ze={message:"dots",index:Se,slidesToScroll:m.slidesToScroll,currentSlide:m.currentSlide},Je=m.customPaging?m.customPaging(Se)[0]:E("button",[Se+1]);return E("li",{key:Se,class:Ze,on:{click:function(){return m.$emit("dotClicked",ze)}}},[Je])}),Q={display:"block"},ae=l({},this.dotsClass,!0);return E("ul",{style:Q,class:ae},[ee])}},Ir=$i,Hi,Bi,Fi=S(Ir,Hi,Bi,!1,null,null,null),Vi=Fi.exports,zi={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0},ri={name:"InnerSlider",components:{SliderTrack:rt,SliderArrow:In,SliderDots:Vi},mixins:[D],inheritAttrs:!1,props:f({},yt,{unslick:{type:Boolean,default:!1},prevArrow:Function,nextArrow:Function,customPaging:Function}),data:function(){return f({},zi,{currentSlide:this.initialSlide})},computed:{slideCount:function(){return this.$slots.default.length},spec:function(){return f({},this.$props,{},this.$data,{slideCount:this.slideCount})}},created:function(){if(this.callbackTimers=[],this.clickable=!0,this.debouncedResize=null,this.ssrInit(),this.$parent.$emit("init"),this.lazyLoad){var m=Le(this.spec);m.length>0&&(this.lazyLoadedList=this.lazyLoadedList.concat(m),this.$parent.$emit("lazyLoad",m))}},mounted:function(){var m=this,E=f({listRef:this.$refs.list,trackRef:this.$refs.track,children:this.$slots.default},this.$props);this.updateState(E,!0),this.adaptHeight(),this.autoPlay&&this.autoPlay("update"),this.lazyLoad==="progressive"&&(this.lazyLoadTimer=setInterval(this.progressiveLazyLoad,1e3)),this.ro=new De.a(function(){m.animating?(m.onWindowResized(!1),m.callbackTimers.push(setTimeout(function(){return m.onWindowResized()},m.speed))):m.onWindowResized()}),this.ro.observe(this.$refs.list),Array.prototype.forEach.call(this.$refs.list.querySelectorAll(".slick-slide"),function(I){I.onfocus=m.pauseOnFocus?m.onSlideFocus:null,I.onblur=m.pauseOnFocus?m.onSlideBlur:null}),window.addEventListener?window.addEventListener("resize",this.onWindowResized):window.attachEvent("onresize",this.onWindowResized)},updated:function(){if(this.checkImagesLoad(),this.$parent.$emit("reInit"),this.lazyLoad){var m=Le(f({},this.$props,{},this.$data));m.length>0&&(this.lazyLoadedList=this.lazyLoadedList.concat(m),this.$parent.$emit("lazyLoad",m))}this.adaptHeight()},beforeDestroy:function(){this.ro.unobserve(this.$refs.list),this.animationEndCallback&&clearTimeout(this.animationEndCallback),this.lazyLoadTimer&&clearInterval(this.lazyLoadTimer),this.callbackTimers.length&&(this.callbackTimers.forEach(function(m){return clearTimeout(m)}),this.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",this.onWindowResized):window.detachEvent("onresize",this.onWindowResized),this.autoplayTimer&&clearInterval(this.autoplayTimer)},methods:{onPropsUpdated:function(){for(var m=this.$props,E=f({listRef:this.$refs.list,trackRef:this.$refs.track,children:this.$slots.default},m,{},this.$data),I=!1,ee=0,Q=Object.keys(this.$props);ee<Q.length;ee++){var ae=Q[ee];if(!m.hasOwnProperty(ae)){I=!0;break}if(!(q(m[ae])==="object"||typeof m[ae]=="function")&&m[ae]!==this.$props[ae]){I=!0;break}}this.updateState(E,I),this.currentSlide>=this.slideCount&&this.changeSlide({message:"index",index:this.slideCount-m.slidesToShow,currentSlide:this.currentSlide}),m.autoplay?this.autoPlay("update"):this.pause("paused")},updateState:function(m,E){var I=Bt(m);m=f({},m,{},I,{slideIndex:I.currentSlide});var ee=Lt(m);m=f({},m,{left:ee});var Q=Ke(m);(E||this.slideCount!==m.children.length)&&(I.trackStyle=Q),Object.assign(this.$data,I)},adaptHeight:function(){if(this.adaptiveHeight&&this.$refs.list){var m=this.$refs.list.querySelector('[data-index="'.concat(this.currentSlide,'"]'));this.$refs.list.style.height=Gt(m)+"px"}},ssrInit:function(){var m=Te(this.spec),E=Re(this.spec);if(this.variableWidth){var I=[],ee=[],Q=[];this.$slots.default.forEach(function(We){var Ge=xe(We),qe=Ge.width;Q.push(qe),I.push(qe)});for(var ae=0;ae<m;ae++)ee.push(Q[Q.length-1-ae]),I.push(Q[Q.length-1-ae]);for(var be=0;be<E;be++)I.push(Q[be]);for(var Se=0;Se<this.currentSlide;Se++)ee.push(Q[Se]);I=I.filter(function(We){return We}),ee=ee.filter(function(We){return We});var Fe={width:"calc(".concat(I.join(" + "),")"),left:"calc(".concat(ee.map(function(We){return"-".concat(We)}).join(" + "),")")};if(this.centerMode){var Ve=Q[this.currentSlide];Fe.left="calc(".concat(ee.map(function(We){return"-".concat(We)}).join(" + ")," + (100% - ").concat(Ve,") / 2 )")}this.trackStyle=Fe}else{var Ze=m+E+this.slideCount,ze=100/this.slidesToShow*Ze,Je=100/Ze,Xe=-Je*(m+this.currentSlide)*ze/100;this.centerMode&&(Xe+=(100-Je*ze/100)/2),this.slideWidth=Je+"%",this.trackStyle={width:ze+"%",left:Xe+"%"}}},slideHandler:function(m){var E=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,ee=this.asNavFor,Q=this.speed,ae=this.currentSlide,be=xt(f({index:m},this.$props,{},this.$data,{trackRef:this.$refs.track,useCSS:this.useCSS&&!I})),Se=be.state,Fe=be.nextState;if(!!Se){this.$parent.$emit("beforeChange",ae,Se.currentSlide);var Ve=Se.lazyLoadedList.filter(function(Ze){return E.lazyLoadedList.indexOf(Ze)<0});Ve.length&&this.$parent.$emit("lazyLoad",Ve),Object.assign(this.$data,Se),ee&&ee.goTo(m),Fe&&(this.animationEndCallback=setTimeout(function(){var Ze=Fe.animating,ze=un(Fe,["animating"]);Object.assign(E.$data,ze),E.callbackTimers.push(setTimeout(function(){E.animating=Ze},10)),E.$parent.$emit("afterChange",Se.currentSlide),E.animationEndCallback=void 0},Q))}},onWindowResized:function(m){var E=this;this.debouncedResize&&this.debouncedResize.cancel(),this.debouncedResize=me()(function(){return E.resizeWindow(m)},50),this.debouncedResize()},resizeWindow:function(){var m=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;if(!!(this.$refs.track&&this.$refs.track.$el)){var E=f({listRef:this.$refs.list,trackRef:this.$refs.track,children:this.$slots.default},this.$props,{},this.$data);this.updateState(E,m),this.autoplay?this.autoPlay("update"):this.pause("paused"),this.animating=!1,clearTimeout(this.animationEndCallback),this.animationEndCallback=void 0}},checkImagesLoad:function(){var m=this,E=this.$refs.list.querySelectorAll(".slick-slide img"),I=E.length,ee=0;Array.prototype.forEach.call(E,function(Q){var ae=function(){return++ee&&ee>=I&&m.onWindowResized()};if(!Q.onclick)Q.onclick=function(){return Q.parentNode.focus()};else{var be=Q.onclick;Q.onclick=function(){be(),Q.parentNode.focus()}}Q.onload||(m.lazyLoad?Q.onload=function(){m.adaptHeight(),m.callbackTimers.push(setTimeout(m.onWindowResized,m.speed))}:(Q.onload=ae,Q.onerror=function(){ae(),m.$parent.$emit("lazyLoadError")}))})},progressiveLazyLoad:function(){for(var m=[],E=f({},this.$props,{},this.$data),I=this.currentSlide;I<this.slideCount+Re(E);I++)if(this.lazyLoadedList.indexOf(I)<0){m.push(I);break}for(var ee=this.currentSlide-1;ee>=-Te(E);ee--)if(this.lazyLoadedList.indexOf(ee)<0){m.push(ee);break}m.length>0?(this.lazyLoadedList=this.lazyLoadedList.concat(m),this.$parent.$emit("lazyLoad",m)):this.lazyLoadTimer&&(clearInterval(this.lazyLoadTimer),this.lazyLoadTimer=void 0)},clickHandler:function(m){this.clickable===!1&&(m.stopPropagation(),m.preventDefault()),this.clickable=!0},keyHandler:function(m){var E=K(m,this.accessibility,this.rtl);E!==""&&this.changeSlide({message:E})},changeSlide:function(m){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,I=f({},this.$props,{},this.$data),ee=Ie(I,m);ee!==0&&!ee||(E===!0?this.slideHandler(ee,E):this.slideHandler(ee))},swipeStart:function(m){this.verticalSwiping&&this.disableBodyScroll();var E=tt(m,this.swipe,this.draggable);E!==""&&Object.assign(this.$data,E)},swipeMove:function(m){var E=this,I=Ne(m,f({},this.$props,{},this.$data,{trackRef:this.$refs.track,listRef:this.$refs.list,slideIndex:this.currentSlide,onEdge:function(Q){return E.$parent.$emit("edge",Q)},swipeEvent:function(Q){return E.$parent.$emit("swipe",Q)}}));!I||(I.swiping&&(this.clickable=!1),Object.assign(this.$data,I))},swipeEnd:function(m){var E=je(m,f({},this.$props,{},this.$data,{trackRef:this.$refs.track,listRef:this.$refs.list,slideIndex:this.currentSlide}));if(!!E){var I=E.triggerSlideHandler;this.triggerSlideHandler=void 0,Object.assign(this.$data,E),I!==void 0&&(this.slideHandler(I),this.verticalSwiping&&this.enableBodyScroll())}},prev:function(){var m=this;this.callbackTimers.push(setTimeout(function(){return m.changeSlide({message:"previous"})},0))},next:function(){var m=this;this.callbackTimers.push(setTimeout(function(){return m.changeSlide({message:"next"})},0))},goTo:function(m){var E=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(m=Number(m),isNaN(m))return"";this.callbackTimers.push(setTimeout(function(){return E.changeSlide({message:"index",index:m,currentSlide:E.currentSlide},I)},0))},play:function(){var m;if(this.rtl)m=this.currentSlide-this.slidesToScroll;else if(Mt(f({},this.$props,{},this.$data)))m=this.currentSlide+this.slidesToScroll;else return!1;this.slideHandler(m)},autoPlay:function(m){this.autoplayTimer&&clearInterval(this.autoplayTimer);var E=this.autoplaying;if(m==="update"){if(E==="hovered"||E==="focused"||E==="paused")return}else if(m==="leave"){if(E==="paused"||E==="focused")return}else if(m==="blur"&&(E==="paused"||E==="hovered"))return;this.autoplayTimer=setInterval(this.play,this.autoplaySpeed+50),this.autoplaying="playing"},pause:function(m){this.autoplayTimer&&(clearInterval(this.autoplayTimer),this.autoplayTimer=null);var E=this.autoplaying;m==="paused"?this.autoplaying="paused":m==="focused"?(E==="hovered"||E==="playing")&&(this.autoplaying="focused"):E==="playing"&&(this.autoplaying="hovered")},onDotsOver:function(){this.autoplay&&this.pause("hovered")},onDotsLeave:function(){this.autoplay&&this.autoplaying==="hovered"&&this.autoPlay("leave")},onTrackOver:function(){this.autoplay&&this.pause("hovered")},onTrackLeave:function(){this.autoplay&&this.autoplaying==="hovered"&&this.autoPlay("leave")},onSlideFocus:function(){this.autoplay&&this.pause("focused")},onSlideBlur:function(){this.autoplay&&this.autoplaying==="focused"&&this.autoPlay("blur")},selectHandler:function(m){this.focusOnSelect&&this.changeSlide(m)}},render:function(){var m=arguments[0],E={"slick-slider":!0,"slick-initialized":!0,"slick-vertical":this.vertical},I=Qt(this.spec,vt.TRACK);I=Ee(f({},I));var ee=this.pauseOnHover,Q=Ee({mouseenter:ee?this.onTrackOver:void 0,mouseover:ee?this.onTrackOver:void 0,mouseleave:ee?this.onTrackLeave:void 0}),ae;if(this.dots===!0&&this.slideCount>=this.slidesToShow){var be=Qt(this.spec,vt.DOT),Se=this.pauseOnDotsHover,Fe=Ee({mouseenter:Se?this.onDotsLeave:void 0,mouseover:Se?this.onDotsOver:void 0,mouseleave:Se?this.onDotsLeave:void 0});ae=m(Vi,{props:f({},be),nativeOn:f({},Fe),on:{dotClicked:this.changeSlide}})}var Ve,Ze,ze=Qt(this.spec,vt.ARROW);this.arrows&&(Ve=m(In,{props:f({},f({},ze,{type:"previous"})),on:{arrowClicked:this.changeSlide}}),Ze=m(In,{props:f({},f({},ze,{type:"next"})),on:{arrowClicked:this.changeSlide}}));var Je={};this.vertical&&(Je={height:"".concat(this.listHeight,"px")});var Xe={};this.vertical===!1?this.centerMode===!0&&(Xe={padding:"0px "+this.centerPadding}):this.centerMode===!0&&(Xe={padding:this.centerPadding+" 0px"});var We=f({},this.$parent.$vnode.data.style);this.unslick||(We=f({},We,{},it(Je),{},Xe));var Ge=this.accessibility,qe=this.dragging,Pe=this.touchMove,_t=Ee({click:this.clickHandler,mousedown:Pe?this.swipeStart:void 0,mousemove:qe&&Pe?this.swipeMove:void 0,mouseup:Pe?this.swipeEnd:void 0,mouseleave:qe&&Pe?this.swipeEnd:void 0,touchstart:Pe?this.swipeStart:void 0,touchmove:qe&&Pe?this.swipeMove:void 0,touchend:Pe?this.swipeEnd:void 0,touchcancel:qe&&Pe?this.swipeEnd:void 0,keydown:Ge?this.keyHandler:void 0});return m("div",{class:E,attrs:{dir:this.unslick?!1:"ltr"}},[this.unslick?"":Ve,m("div",{ref:"list",class:"slick-list",on:f({},_t),style:We},[m(rt,{ref:"track",props:f({},I),nativeOn:f({},Q),on:{childClicked:this.selectHandler}},[this.$slots.default])]),this.unslick?"":Ze,this.unslick?"":ae])}},Ui=ri;i("eaf9");var Sn,Wi,ii=S(Ui,Sn,Wi,!1,null,"3d1a4f76",null),Wn=ii.exports,ai=Ae()&&i("8e95"),or={name:"VueSlickCarousel",components:{InnerSlider:Wn},mixins:[D],inheritAttrs:!1,props:yt,data:function(){return{breakpoint:null}},computed:{settings:function(){var m=this,E=Ee(this.$props),I,ee;return this.breakpoint?(ee=this.responsive.filter(function(Q){return Q.breakpoint===m.breakpoint}),I=ee[0].settings==="unslick"?"unslick":f({},Vt,{},E,{},ee[0].settings)):I=f({},Vt,{},E),I.centerMode&&(I.slidesToScroll>1,I.slidesToScroll=1),I.fade&&(I.slidesToShow>1,I.slidesToScroll>1,I.slidesToShow=1,I.slidesToScroll=1),I.variableWidth&&(I.rows>1||I.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),I.variableWidth=!1),I}},created:function(){this.makeBreakpoints()},beforeDestroy:function(){this.clearBreakpoints()},methods:{prev:function(){this.$refs.innerSlider.prev()},next:function(){this.$refs.innerSlider.next()},goTo:function(m){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;this.$refs.innerSlider.goTo(m,E)},pause:function(){this.$refs.innerSlider.pause("paused")},play:function(){this.$refs.innerSlider.autoPlay("play")},onPropsUpdated:function(){this.clearBreakpoints(),this.makeBreakpoints()},clearBreakpoints:function(){this.responsiveMediaHandlers.forEach(function(m){return ai.unregister(m.query,m.handler)}),this.responsiveMediaHandlers=[]},media:function(m,E){!Ae()||(ai.register(m,E),this.responsiveMediaHandlers.push({query:m,handler:E}))},makeBreakpoints:function(){var m=this;if(this.breakpoint=null,this.responsiveMediaHandlers=[],this.responsive){var E=this.responsive.map(function(ee){return ee.breakpoint});E.sort(function(ee,Q){return ee-Q}),E.forEach(function(ee,Q){var ae=v()({minWidth:Q===0?0:E[Q-1]+1,maxWidth:ee});m.media(ae,function(){m.breakpoint=ee})});var I=v()({minWidth:E.slice(-1)[0]});this.media(I,function(){m.breakpoint=null})}}},render:function(){var m=arguments[0],E=this.settings,I=this.$slots.default||[];if(E==="unslick")return m("div",{class:"regular slider"},[I]);E.prevArrow=this.$scopedSlots.prevArrow,E.nextArrow=this.$scopedSlots.nextArrow,E.customPaging=this.$scopedSlots.customPaging,I=I.filter(function(ze){return!!ze.tag});for(var ee=[],Q=null,ae=0;ae<I.length;ae+=E.rows*E.slidesPerRow){for(var be=[],Se=ae;Se<ae+E.rows*E.slidesPerRow;Se+=E.slidesPerRow){for(var Fe=[],Ve=Se;Ve<Se+E.slidesPerRow&&(E.variableWidth&&xe(I[Ve])&&(Q=xe(I[Ve]).width),!(Ve>=I.length));Ve+=1){var Ze=ge(I[Ve]);ce(Ze,"key",100*ae+10*Se+Ve),F(Ze,"attrs",{tabIndex:-1}),F(Ze,"style",{width:"".concat(100/E.slidesPerRow,"%"),display:"inline-block"}),Fe.push(Ze)}be.push(m("div",{key:10*ae+Se},[Fe]))}E.variableWidth?ee.push(m("div",{key:ae,style:{width:Q}},[be])):ee.push(m("div",{key:ae},[be]))}return ee.length<=E.slidesToShow&&(E.unslick=!0),m(Wn,{ref:"innerSlider",props:f({},E),key:Object.values(E).join("")},[ee])}},Gi=or,eo,to,no=S(Gi,eo,to,!1,null,null,null),Yi=no.exports;r.default=Yi},fb6a:function(t,r,i){var o=i("23e7"),l=i("861d"),d=i("e8b5"),f=i("23cb"),g=i("50c4"),v=i("fc6a"),y=i("8418"),A=i("b622"),S=i("1dde"),C=i("ae40"),_=S("slice"),T=C("slice",{ACCESSORS:!0,0:0,1:2}),D=A("species"),P=[].slice,V=Math.max;o({target:"Array",proto:!0,forced:!_||!T},{slice:function(X,H){var Y=v(this),F=g(Y.length),ce=f(X,F),ve=f(H===void 0?F:H,F),U,pe,ge;if(d(Y)&&(U=Y.constructor,typeof U=="function"&&(U===Array||d(U.prototype))?U=void 0:l(U)&&(U=U[D],U===null&&(U=void 0)),U===Array||U===void 0))return P.call(Y,ce,ve);for(pe=new(U===void 0?Array:U)(V(ve-ce,0)),ge=0;ce<ve;ce++,ge++)ce in Y&&y(pe,ge,Y[ce]);return pe.length=ge,pe}})},fc6a:function(t,r,i){var o=i("44ad"),l=i("1d80");t.exports=function(d){return o(l(d))}},fdb2:function(t,r,i){},fdbc:function(t,r){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},fdbf:function(t,r,i){var o=i("4930");t.exports=o&&!Symbol.sham&&typeof Symbol.iterator=="symbol"}}).default})})(ed);const Ys=Xu(ed.exports);function Ht(n,e,t,r,i,o,l,d){var f=typeof n=="function"?n.options:n;e&&(f.render=e,f.staticRenderFns=t,f._compiled=!0),r&&(f.functional=!0),o&&(f._scopeId="data-v-"+o);var g;if(l?(g=function(A){A=A||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!A&&typeof __VUE_SSR_CONTEXT__!="undefined"&&(A=__VUE_SSR_CONTEXT__),i&&i.call(this,A),A&&A._registeredComponents&&A._registeredComponents.add(l)},f._ssrRegister=g):i&&(g=d?function(){i.call(this,(f.functional?this.parent:this).$root.$options.shadowRoot)}:i),g)if(f.functional){f._injectStyles=g;var v=f.render;f.render=function(S,C){return g.call(C),v(S,C)}}else{var y=f.beforeCreate;f.beforeCreate=y?[].concat(y,g):[g]}return{exports:n,options:f}}const eh={components:{VueSlickCarousel:Ys},name:"ArticleCarousel",data:()=>({settings:{dots:!1,infinite:!1,slidesToShow:3,slidesToScroll:1,responsive:[{breakpoint:1200,settings:{slidesToShow:1}}]}})};var th=function(){var e=this,t=e._self._c;return t("vue-slick-carousel",e._b({staticClass:"article-carousel"},"vue-slick-carousel",e.settings,!1),[e._t("default")],2)},nh=[],rh=Ht(eh,th,nh,!1,null,null,null,null);const ih=rh.exports,ah={components:{VueSlickCarousel:Ys},name:"HeaderCarousel",data:()=>({settings:{fade:!0,dots:!0}})};var oh=function(){var e=this,t=e._self._c;return t("div",{staticClass:"header-carousel mb-8 xl:mb-32"},[t("vue-slick-carousel",e._b({},"vue-slick-carousel",e.settings,!1),[e._t("default")],2)],1)},sh=[],lh=Ht(ah,oh,sh,!1,null,null,null,null);const ch=lh.exports,uh={props:{name:{type:String,default:"Kalend\xE1\u0159"},events:{type:Array,required:!0},onShowMore:{type:Function,required:!1},hasMore:{type:Boolean,default:!0},showBanner:{type:Boolean,default:!0}},filters:{dateDay:n=>`${new Date(n).getDate()}.`}};var dh=function(){var e=this,t=e._self._c;return t("div",{staticClass:"calendar grid grid-cols-4"},[e.showBanner?t("div",{staticClass:"col-span-4 xl:col-span-1"},[t("aside",{staticClass:"banner bg-orange-300 text-white h-full"},[t("i",{staticClass:"ico--calendar banner__icon"}),t("div",{staticClass:"banner__body"},[t("h1",{staticClass:"head-alt-md banner__cta"},[e._v(e._s(e.name))]),e.onShowMore&&e.hasMore?t("button",{staticClass:"btn btn--white btn--fullwidth sm:btn--autowidth mt-8",on:{click:function(r){return e.onShowMore()}}},[t("div",{staticClass:"btn__body"},[e._v("Zobrazit dal\u0161\xED")])]):e._e()])])]):e._e(),t("div",{class:{"col-span-4 xl:col-span-3":e.showBanner,"col-span-4":!e.showBanner}},e._l(e.events,function(r){return t("div",{key:r.id,staticClass:"grid grid-cols-12 items-center calendar-table-row",class:{"calendar-table-row--standalone":!e.showBanner}},[t("div",{staticClass:"col-span-2 text-orange-300 head-alt-md calendar-table-row__col"},[t("span",[e._v(e._s(e._f("dateDay")(r.startTimestamp)))])]),t("div",{staticClass:"col-span-8 grid grid-cols-3 col-gap-4 calendar-table-row__col",class:{"calendar-table-row__col--norborder":!r.mapLink}},[t("div",{staticClass:"col-span-3 md:col-span-1"},[t("strong",{staticClass:"block"},[e._v(e._s(r.startDateVerbose))]),t("p",{staticClass:"font-light text-sm mt-1"},[e._v(e._s(r.allDay?"Cel\xFD den":r.startTimeVerbose))])]),t("div",{staticClass:"col-span-3 md:col-span-2 mt-4 md:mt-0"},[r.link?t("a",{staticClass:"font-bold block",attrs:{href:r.link,target:"_blank",rel:"noreferrer noopener"}},[e._v(e._s(r.title))]):e._e(),r.link?e._e():t("strong",{staticClass:"block"},[e._v(e._s(r.title))]),r.description?t("p",{staticClass:"font-light text-sm mt-1"},[e._v(e._s(r.description))]):e._e()])]),t("div",{staticClass:"col-span-2 text-center font-light calendar-table-row__col"},[r.mapLink?t("a",{staticClass:"icon-link",attrs:{href:r.mapLink}},[t("i",{staticClass:"ico--location text-violet-300 mr-1",attrs:{"aria-hidden":"true"}}),t("span",[e._v("Mapa")])]):e._e()])])}),0)])},fh=[],ph=Ht(uh,dh,fh,!1,null,null,null,null);const hh=ph.exports,_c=[{id:2,start:"2020-07-08T10:00:00.000Z",startTimestamp:new Date("2020-07-08T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 8. \u010Dervence 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-08T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MDhUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:15,start:"2020-07-13T19:00:00.000Z",startTimestamp:new Date("2020-07-13T19:00:00.000Z").getTime(),startDateVerbose:"pond\u011Bl\xED 13. \u010Dervence 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-13T19:30:00.000Z",title:"Mumble - p\u0159edsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcxM1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:3,start:"2020-07-15T10:00:00.000Z",startTimestamp:new Date("2020-07-15T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 15. \u010Dervence 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-15T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MTVUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn",mapLink:"https://maps.google.com"},{id:16,start:"2020-07-20T19:00:00.000Z",startTimestamp:new Date("2020-07-20T19:00:00.000Z").getTime(),startDateVerbose:"pond\u011Bl\xED 20. \u010Dervence 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-20T19:30:00.000Z",title:"Mumble - p\u0159edsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcyMFQxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:4,start:"2020-07-22T10:00:00.000Z",startTimestamp:new Date("2020-07-22T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 22. \u010Dervence 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-22T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MjJUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:17,start:"2020-07-27T19:00:00.000Z",startTimestamp:new Date("2020-07-27T19:00:00.000Z").getTime(),startDateVerbose:"pond\u011Bl\xED 27. \u010Dervence 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-07-27T19:30:00.000Z",title:"Mumble - p\u0159edsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDcyN1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:5,start:"2020-07-29T10:00:00.000Z",startTimestamp:new Date("2020-07-29T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 29. \u010Dervence 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-07-29T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA3MjlUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"},{id:18,start:"2020-08-03T19:00:00.000Z",startTimestamp:new Date("2020-08-03T19:00:00.000Z").getTime(),startDateVerbose:"pond\u011Bl\xED 3. srpna 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-08-03T19:30:00.000Z",title:"Mumble - p\u0159edsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDgwM1QxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:6,start:"2020-08-05T10:00:00.000Z",startTimestamp:new Date("2020-08-05T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 5. srpna 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-08-05T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA4MDVUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"}],vh=[{id:19,start:"2020-08-10T19:00:00.000Z",startTimestamp:new Date("2020-08-10T19:00:00.000Z").getTime(),startDateVerbose:"pond\u011Bl\xED 10. srpna 2020",startTimeVerbose:"21:00",allDay:!1,end:"2020-08-10T19:30:00.000Z",title:"Mumble - p\u0159edsednictvo",link:"https://www.google.com/calendar/event?eid=YzVpM2FvaGc2MHAzY2I5aGM1aW1jYjlrNjBvbThiYjE2dGk2NGI5ajY4cjY0ZGhrNzVnamdjOWdjb18yMDIwMDgxMFQxOTAwMDBaIDdyNjczcmxoMjU1b2Zvcmh2M29lYjJsMGcwQGc"},{id:7,start:"2020-08-12T10:00:00.000Z",startTimestamp:new Date("2020-08-12T10:00:00.000Z").getTime(),startDateVerbose:"st\u0159eda 12. srpna 2020",startTimeVerbose:"12:00",allDay:!1,end:"2020-08-12T11:00:00.000Z",title:"Pir\xE1tsk\xFD ob\u011Bd - Chrudim",description:"Pravideln\xE9 setk\xE1n\xED pir\xE1t\u016F p\u0159i st\u0159ede\u010Dn\xEDm ob\u011Bd\u011B. Nejen o politice a s chut\xED.",link:"https://www.google.com/calendar/event?eid=Mmw1Y2RwMTByYm80Y204cWxsaW1maWJmcTJfMjAyMDA4MTJUMTAwMDAwWiA3cjY3M3JsaDI1NW9mb3JodjNvZWIybDBnMEBn"}],gh={data:()=>({events:_c,hasMore:!0}),methods:{onShowMore(){this.$data.events=[..._c,...vh],this.$data.hasMore=!1}},render(){return this.$scopedSlots.default({events:this.events,hasMore:this.hasMore,onShowMore:this.onShowMore})}},mh=null,yh=null;var bh=Ht(gh,mh,yh,!1,null,null,null,null);const Sh=bh.exports,Ah=10,Lh={props:{calendarId:{type:String,required:!0},apiKey:{type:String,required:!0}},data(){return{events:[],toShow:7}},computed:{displayedEvents(){return this.events.slice(0,this.toShow)},hasMore(){return this.toShow<this.events.length}},methods:{onShowMore(){this.toShow+=Ah},loadEventsFromStorage(){if(window.sessionStorage&&window.sessionStorage["__pircal_"+this.calendarId])return JSON.parse(window.sessionStorage["__pircal_"+this.calendarId])},storeEventsToStorage(){window.sessionStorage&&(window.sessionStorage["__pircal_"+this.calendarId]=JSON.stringify(this.events))}},mounted(){const n=this.loadEventsFromStorage();if(n)this.events=n;else{const e=new Date,t=e.toISOString(),r=new Date(+e+1e3*60*60*24*90).toISOString(),i=`https://www.googleapis.com/calendar/v3/calendars/${this.calendarId}/events?key=${encodeURIComponent(this.apiKey)}&maxResults=150&timeMin=${encodeURIComponent(t)}&timeMax=${encodeURIComponent(r)}&sanitizeHtml=true&singleEvents=true&maxAtendees=1`;let o=0;fetch(i).then(l=>{if(!l.ok)throw new Error("Problem loading events from google");return l.json()}).then(l=>{this.events=l.items.map(d=>{const f=new Date(d.start.dateTime||d.start.date),g=new Date(d.end.dateTime||d.end.date),v=f.toLocaleDateString("cs-CZ",{weekday:"long",year:"numeric",month:"long",day:"numeric"}),y=f.getHours()+":"+f.getMinutes().toString().padStart(2,"0"),A=!d.start.dateTime;return{id:o++,start:f,startTimestamp:f.getTime(),startDateVerbose:v,startTimeVerbose:y,allDay:A,end:g,title:d.summary,description:d.description,link:d.htmlLink}}).sort((d,f)=>d.start<f.start?-1:1),this.storeEventsToStorage()})}},render(){return this.$scopedSlots.default({events:this.displayedEvents,hasMore:this.hasMore,onShowMore:this.onShowMore})}},wh=null,Eh=null;var Ch=Ht(Lh,wh,Eh,!1,null,null,null,null);const xh=Ch.exports;var Ka,He,td,Yr,br,Dc,nd,rd,Pa={},id=[],Th=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;function Xn(n,e){for(var t in e)n[t]=e[t];return n}function ad(n){var e=n.parentNode;e&&e.removeChild(n)}function J(n,e,t){var r,i,o,l={};for(o in e)o=="key"?r=e[o]:o=="ref"?i=e[o]:l[o]=e[o];if(arguments.length>2&&(l.children=arguments.length>3?Ka.call(arguments,2):t),typeof n=="function"&&n.defaultProps!=null)for(o in n.defaultProps)l[o]===void 0&&(l[o]=n.defaultProps[o]);return Da(n,l,r,i,null)}function Da(n,e,t,r,i){var o={type:n,props:e,key:t,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:i==null?++td:i};return i==null&&He.vnode!=null&&He.vnode(o),o}function Fn(){return{current:null}}function Dt(n){return n.children}function Oh(n,e,t,r,i){var o;for(o in t)o==="children"||o==="key"||o in e||Na(n,o,null,t[o],r);for(o in e)i&&typeof e[o]!="function"||o==="children"||o==="key"||o==="value"||o==="checked"||t[o]===e[o]||Na(n,o,e[o],t[o],r)}function Rc(n,e,t){e[0]==="-"?n.setProperty(e,t==null?"":t):n[e]=t==null?"":typeof t!="number"||Th.test(e)?t:t+"px"}function Na(n,e,t,r,i){var o;e:if(e==="style")if(typeof t=="string")n.style.cssText=t;else{if(typeof r=="string"&&(n.style.cssText=r=""),r)for(e in r)t&&e in t||Rc(n.style,e,"");if(t)for(e in t)r&&t[e]===r[e]||Rc(n.style,e,t[e])}else if(e[0]==="o"&&e[1]==="n")o=e!==(e=e.replace(/Capture$/,"")),e=e.toLowerCase()in n?e.toLowerCase().slice(2):e.slice(2),n.l||(n.l={}),n.l[e+o]=t,t?r||n.addEventListener(e,o?Ic:Mc,o):n.removeEventListener(e,o?Ic:Mc,o);else if(e!=="dangerouslySetInnerHTML"){if(i)e=e.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(e!=="width"&&e!=="height"&&e!=="href"&&e!=="list"&&e!=="form"&&e!=="tabIndex"&&e!=="download"&&e in n)try{n[e]=t==null?"":t;break e}catch(l){}typeof t=="function"||(t==null||t===!1&&e.indexOf("-")==-1?n.removeAttribute(e):n.setAttribute(e,t))}}function Mc(n){Yr=!0;try{return this.l[n.type+!1](He.event?He.event(n):n)}finally{Yr=!1}}function Ic(n){Yr=!0;try{return this.l[n.type+!0](He.event?He.event(n):n)}finally{Yr=!1}}function ln(n,e){this.props=n,this.context=e}function wi(n,e){if(e==null)return n.__?wi(n.__,n.__.__k.indexOf(n)+1):null;for(var t;e<n.__k.length;e++)if((t=n.__k[e])!=null&&t.__e!=null)return t.__e;return typeof n.type=="function"?wi(n):null}function od(n){var e,t;if((n=n.__)!=null&&n.__c!=null){for(n.__e=n.__c.base=null,e=0;e<n.__k.length;e++)if((t=n.__k[e])!=null&&t.__e!=null){n.__e=n.__c.base=t.__e;break}return od(n)}}function _h(n){Yr?setTimeout(n):nd(n)}function Ms(n){(!n.__d&&(n.__d=!0)&&br.push(n)&&!ja.__r++||Dc!==He.debounceRendering)&&((Dc=He.debounceRendering)||_h)(ja)}function ja(){var n,e,t,r,i,o,l,d;for(br.sort(function(f,g){return f.__v.__b-g.__v.__b});n=br.shift();)n.__d&&(e=br.length,r=void 0,i=void 0,l=(o=(t=n).__v).__e,(d=t.__P)&&(r=[],(i=Xn({},o)).__v=o.__v+1,Zs(d,o,i,t.__n,d.ownerSVGElement!==void 0,o.__h!=null?[l]:null,r,l==null?wi(o):l,o.__h),dd(r,o),o.__e!=l&&od(o)),br.length>e&&br.sort(function(f,g){return f.__v.__b-g.__v.__b}));ja.__r=0}function sd(n,e,t,r,i,o,l,d,f,g){var v,y,A,S,C,_,T,D=r&&r.__k||id,P=D.length;for(t.__k=[],v=0;v<e.length;v++)if((S=t.__k[v]=(S=e[v])==null||typeof S=="boolean"?null:typeof S=="string"||typeof S=="number"||typeof S=="bigint"?Da(null,S,null,null,S):Array.isArray(S)?Da(Dt,{children:S},null,null,null):S.__b>0?Da(S.type,S.props,S.key,S.ref?S.ref:null,S.__v):S)!=null){if(S.__=t,S.__b=t.__b+1,(A=D[v])===null||A&&S.key==A.key&&S.type===A.type)D[v]=void 0;else for(y=0;y<P;y++){if((A=D[y])&&S.key==A.key&&S.type===A.type){D[y]=void 0;break}A=null}Zs(n,S,A=A||Pa,i,o,l,d,f,g),C=S.__e,(y=S.ref)&&A.ref!=y&&(T||(T=[]),A.ref&&T.push(A.ref,null,S),T.push(y,S.__c||C,S)),C!=null?(_==null&&(_=C),typeof S.type=="function"&&S.__k===A.__k?S.__d=f=ld(S,f,n):f=cd(n,S,A,D,C,f),typeof t.type=="function"&&(t.__d=f)):f&&A.__e==f&&f.parentNode!=n&&(f=wi(A))}for(t.__e=_,v=P;v--;)D[v]!=null&&(typeof t.type=="function"&&D[v].__e!=null&&D[v].__e==t.__d&&(t.__d=ud(r).nextSibling),pd(D[v],D[v]));if(T)for(v=0;v<T.length;v++)fd(T[v],T[++v],T[++v])}function ld(n,e,t){for(var r,i=n.__k,o=0;i&&o<i.length;o++)(r=i[o])&&(r.__=n,e=typeof r.type=="function"?ld(r,e,t):cd(t,r,r,i,r.__e,e));return e}function $a(n,e){return e=e||[],n==null||typeof n=="boolean"||(Array.isArray(n)?n.some(function(t){$a(t,e)}):e.push(n)),e}function cd(n,e,t,r,i,o){var l,d,f;if(e.__d!==void 0)l=e.__d,e.__d=void 0;else if(t==null||i!=o||i.parentNode==null)e:if(o==null||o.parentNode!==n)n.appendChild(i),l=null;else{for(d=o,f=0;(d=d.nextSibling)&&f<r.length;f+=1)if(d==i)break e;n.insertBefore(i,o),l=o}return l!==void 0?l:i.nextSibling}function ud(n){var e,t,r;if(n.type==null||typeof n.type=="string")return n.__e;if(n.__k){for(e=n.__k.length-1;e>=0;e--)if((t=n.__k[e])&&(r=ud(t)))return r}return null}function Zs(n,e,t,r,i,o,l,d,f){var g,v,y,A,S,C,_,T,D,P,V,x,X,H,Y,F=e.type;if(e.constructor!==void 0)return null;t.__h!=null&&(f=t.__h,d=e.__e=t.__e,e.__h=null,o=[d]),(g=He.__b)&&g(e);try{e:if(typeof F=="function"){if(T=e.props,D=(g=F.contextType)&&r[g.__c],P=g?D?D.props.value:g.__:r,t.__c?_=(v=e.__c=t.__c).__=v.__E:("prototype"in F&&F.prototype.render?e.__c=v=new F(T,P):(e.__c=v=new ln(T,P),v.constructor=F,v.render=Rh),D&&D.sub(v),v.props=T,v.state||(v.state={}),v.context=P,v.__n=r,y=v.__d=!0,v.__h=[],v._sb=[]),v.__s==null&&(v.__s=v.state),F.getDerivedStateFromProps!=null&&(v.__s==v.state&&(v.__s=Xn({},v.__s)),Xn(v.__s,F.getDerivedStateFromProps(T,v.__s))),A=v.props,S=v.state,v.__v=e,y)F.getDerivedStateFromProps==null&&v.componentWillMount!=null&&v.componentWillMount(),v.componentDidMount!=null&&v.__h.push(v.componentDidMount);else{if(F.getDerivedStateFromProps==null&&T!==A&&v.componentWillReceiveProps!=null&&v.componentWillReceiveProps(T,P),!v.__e&&v.shouldComponentUpdate!=null&&v.shouldComponentUpdate(T,v.__s,P)===!1||e.__v===t.__v){for(e.__v!==t.__v&&(v.props=T,v.state=v.__s,v.__d=!1),e.__e=t.__e,e.__k=t.__k,e.__k.forEach(function(ce){ce&&(ce.__=e)}),V=0;V<v._sb.length;V++)v.__h.push(v._sb[V]);v._sb=[],v.__h.length&&l.push(v);break e}v.componentWillUpdate!=null&&v.componentWillUpdate(T,v.__s,P),v.componentDidUpdate!=null&&v.__h.push(function(){v.componentDidUpdate(A,S,C)})}if(v.context=P,v.props=T,v.__P=n,x=He.__r,X=0,"prototype"in F&&F.prototype.render){for(v.state=v.__s,v.__d=!1,x&&x(e),g=v.render(v.props,v.state,v.context),H=0;H<v._sb.length;H++)v.__h.push(v._sb[H]);v._sb=[]}else do v.__d=!1,x&&x(e),g=v.render(v.props,v.state,v.context),v.state=v.__s;while(v.__d&&++X<25);v.state=v.__s,v.getChildContext!=null&&(r=Xn(Xn({},r),v.getChildContext())),y||v.getSnapshotBeforeUpdate==null||(C=v.getSnapshotBeforeUpdate(A,S)),Y=g!=null&&g.type===Dt&&g.key==null?g.props.children:g,sd(n,Array.isArray(Y)?Y:[Y],e,t,r,i,o,l,d,f),v.base=e.__e,e.__h=null,v.__h.length&&l.push(v),_&&(v.__E=v.__=null),v.__e=!1}else o==null&&e.__v===t.__v?(e.__k=t.__k,e.__e=t.__e):e.__e=Dh(t.__e,e,t,r,i,o,l,f);(g=He.diffed)&&g(e)}catch(ce){e.__v=null,(f||o!=null)&&(e.__e=d,e.__h=!!f,o[o.indexOf(d)]=null),He.__e(ce,e,t)}}function dd(n,e){He.__c&&He.__c(e,n),n.some(function(t){try{n=t.__h,t.__h=[],n.some(function(r){r.call(t)})}catch(r){He.__e(r,t.__v)}})}function Dh(n,e,t,r,i,o,l,d){var f,g,v,y=t.props,A=e.props,S=e.type,C=0;if(S==="svg"&&(i=!0),o!=null){for(;C<o.length;C++)if((f=o[C])&&"setAttribute"in f==!!S&&(S?f.localName===S:f.nodeType===3)){n=f,o[C]=null;break}}if(n==null){if(S===null)return document.createTextNode(A);n=i?document.createElementNS("http://www.w3.org/2000/svg",S):document.createElement(S,A.is&&A),o=null,d=!1}if(S===null)y===A||d&&n.data===A||(n.data=A);else{if(o=o&&Ka.call(n.childNodes),g=(y=t.props||Pa).dangerouslySetInnerHTML,v=A.dangerouslySetInnerHTML,!d){if(o!=null)for(y={},C=0;C<n.attributes.length;C++)y[n.attributes[C].name]=n.attributes[C].value;(v||g)&&(v&&(g&&v.__html==g.__html||v.__html===n.innerHTML)||(n.innerHTML=v&&v.__html||""))}if(Oh(n,A,y,i,d),v)e.__k=[];else if(C=e.props.children,sd(n,Array.isArray(C)?C:[C],e,t,r,i&&S!=="foreignObject",o,l,o?o[0]:t.__k&&wi(t,0),d),o!=null)for(C=o.length;C--;)o[C]!=null&&ad(o[C]);d||("value"in A&&(C=A.value)!==void 0&&(C!==n.value||S==="progress"&&!C||S==="option"&&C!==y.value)&&Na(n,"value",C,y.value,!1),"checked"in A&&(C=A.checked)!==void 0&&C!==n.checked&&Na(n,"checked",C,y.checked,!1))}return n}function fd(n,e,t){try{typeof n=="function"?n(e):n.current=e}catch(r){He.__e(r,t)}}function pd(n,e,t){var r,i;if(He.unmount&&He.unmount(n),(r=n.ref)&&(r.current&&r.current!==n.__e||fd(r,null,e)),(r=n.__c)!=null){if(r.componentWillUnmount)try{r.componentWillUnmount()}catch(o){He.__e(o,e)}r.base=r.__P=null,n.__c=void 0}if(r=n.__k)for(i=0;i<r.length;i++)r[i]&&pd(r[i],e,t||typeof n.type!="function");t||n.__e==null||ad(n.__e),n.__=n.__e=n.__d=void 0}function Rh(n,e,t){return this.constructor(n,t)}function Ei(n,e,t){var r,i,o;He.__&&He.__(n,e),i=(r=typeof t=="function")?null:t&&t.__k||e.__k,o=[],Zs(e,n=(!r&&t||e).__k=J(Dt,null,[n]),i||Pa,Pa,e.ownerSVGElement!==void 0,!r&&t?[t]:i?null:e.firstChild?Ka.call(e.childNodes):null,o,!r&&t?t:i?i.__e:e.firstChild,r),dd(o,n)}function Mh(n,e){var t={__c:e="__cC"+rd++,__:n,Consumer:function(r,i){return r.children(i)},Provider:function(r){var i,o;return this.getChildContext||(i=[],(o={})[e]=this,this.getChildContext=function(){return o},this.shouldComponentUpdate=function(l){this.props.value!==l.value&&i.some(function(d){d.__e=!0,Ms(d)})},this.sub=function(l){i.push(l);var d=l.componentWillUnmount;l.componentWillUnmount=function(){i.splice(i.indexOf(l),1),d&&d.call(l)}}),r.children}};return t.Provider.__=t.Consumer.contextType=t}Ka=id.slice,He={__e:function(n,e,t,r){for(var i,o,l;e=e.__;)if((i=e.__c)&&!i.__)try{if((o=i.constructor)&&o.getDerivedStateFromError!=null&&(i.setState(o.getDerivedStateFromError(n)),l=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(n,r||{}),l=i.__d),l)return i.__E=i}catch(d){n=d}throw n}},td=0,Yr=!1,ln.prototype.setState=function(n,e){var t;t=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=Xn({},this.state),typeof n=="function"&&(n=n(Xn({},t),this.props)),n&&Xn(t,n),n!=null&&this.__v&&(e&&this._sb.push(e),Ms(this))},ln.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),Ms(this))},ln.prototype.render=Dt,br=[],nd=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,ja.__r=0,rd=0;var Cn,hs,kc,hd=[],vs=[],Pc=He.__b,Nc=He.__r,jc=He.diffed,$c=He.__c,Hc=He.unmount;function Ih(){for(var n;n=hd.shift();)if(n.__P&&n.__H)try{n.__H.__h.forEach(Ra),n.__H.__h.forEach(Is),n.__H.__h=[]}catch(e){n.__H.__h=[],He.__e(e,n.__v)}}He.__b=function(n){Cn=null,Pc&&Pc(n)},He.__r=function(n){Nc&&Nc(n);var e=(Cn=n.__c).__H;e&&(hs===Cn?(e.__h=[],Cn.__h=[],e.__.forEach(function(t){t.__N&&(t.__=t.__N),t.__V=vs,t.__N=t.i=void 0})):(e.__h.forEach(Ra),e.__h.forEach(Is),e.__h=[])),hs=Cn},He.diffed=function(n){jc&&jc(n);var e=n.__c;e&&e.__H&&(e.__H.__h.length&&(hd.push(e)!==1&&kc===He.requestAnimationFrame||((kc=He.requestAnimationFrame)||kh)(Ih)),e.__H.__.forEach(function(t){t.i&&(t.__H=t.i),t.__V!==vs&&(t.__=t.__V),t.i=void 0,t.__V=vs})),hs=Cn=null},He.__c=function(n,e){e.some(function(t){try{t.__h.forEach(Ra),t.__h=t.__h.filter(function(r){return!r.__||Is(r)})}catch(r){e.some(function(i){i.__h&&(i.__h=[])}),e=[],He.__e(r,t.__v)}}),$c&&$c(n,e)},He.unmount=function(n){Hc&&Hc(n);var e,t=n.__c;t&&t.__H&&(t.__H.__.forEach(function(r){try{Ra(r)}catch(i){e=i}}),t.__H=void 0,e&&He.__e(e,t.__v))};var Bc=typeof requestAnimationFrame=="function";function kh(n){var e,t=function(){clearTimeout(r),Bc&&cancelAnimationFrame(e),setTimeout(n)},r=setTimeout(t,100);Bc&&(e=requestAnimationFrame(t))}function Ra(n){var e=Cn,t=n.__c;typeof t=="function"&&(n.__c=void 0,t()),Cn=e}function Is(n){var e=Cn;n.__c=n.__(),Cn=e}function Ph(n,e){for(var t in e)n[t]=e[t];return n}function Fc(n,e){for(var t in n)if(t!=="__source"&&!(t in e))return!0;for(var r in e)if(r!=="__source"&&n[r]!==e[r])return!0;return!1}function Vc(n){this.props=n}(Vc.prototype=new ln).isPureReactComponent=!0,Vc.prototype.shouldComponentUpdate=function(n,e){return Fc(this.props,n)||Fc(this.state,e)};var zc=He.__b;He.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),zc&&zc(n)};var Nh=He.__e;He.__e=function(n,e,t,r){if(n.then){for(var i,o=e;o=o.__;)if((i=o.__c)&&i.__c)return e.__e==null&&(e.__e=t.__e,e.__k=t.__k),i.__c(n,e)}Nh(n,e,t,r)};var Uc=He.unmount;function vd(n,e,t){return n&&(n.__c&&n.__c.__H&&(n.__c.__H.__.forEach(function(r){typeof r.__c=="function"&&r.__c()}),n.__c.__H=null),(n=Ph({},n)).__c!=null&&(n.__c.__P===t&&(n.__c.__P=e),n.__c=null),n.__k=n.__k&&n.__k.map(function(r){return vd(r,e,t)})),n}function gd(n,e,t){return n&&(n.__v=null,n.__k=n.__k&&n.__k.map(function(r){return gd(r,e,t)}),n.__c&&n.__c.__P===e&&(n.__e&&t.insertBefore(n.__e,n.__d),n.__c.__e=!0,n.__c.__P=t)),n}function gs(){this.__u=0,this.t=null,this.__b=null}function md(n){var e=n.__.__c;return e&&e.__a&&e.__a(n)}function ma(){this.u=null,this.o=null}He.unmount=function(n){var e=n.__c;e&&e.__R&&e.__R(),e&&n.__h===!0&&(n.type=null),Uc&&Uc(n)},(gs.prototype=new ln).__c=function(n,e){var t=e.__c,r=this;r.t==null&&(r.t=[]),r.t.push(t);var i=md(r.__v),o=!1,l=function(){o||(o=!0,t.__R=null,i?i(d):d())};t.__R=l;var d=function(){if(!--r.__u){if(r.state.__a){var g=r.state.__a;r.__v.__k[0]=gd(g,g.__c.__P,g.__c.__O)}var v;for(r.setState({__a:r.__b=null});v=r.t.pop();)v.forceUpdate()}},f=e.__h===!0;r.__u++||f||r.setState({__a:r.__b=r.__v.__k[0]}),n.then(l,l)},gs.prototype.componentWillUnmount=function(){this.t=[]},gs.prototype.render=function(n,e){if(this.__b){if(this.__v.__k){var t=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=vd(this.__b,t,r.__O=r.__P)}this.__b=null}var i=e.__a&&J(Dt,null,n.fallback);return i&&(i.__h=null),[J(Dt,null,e.__a?null:n.children),i]};var Wc=function(n,e,t){if(++t[1]===t[0]&&n.o.delete(e),n.props.revealOrder&&(n.props.revealOrder[0]!=="t"||!n.o.size))for(t=n.u;t;){for(;t.length>3;)t.pop()();if(t[1]<t[0])break;n.u=t=t[2]}};function jh(n){return this.getChildContext=function(){return n.context},n.children}function $h(n){var e=this,t=n.i;e.componentWillUnmount=function(){Ei(null,e.l),e.l=null,e.i=null},e.i&&e.i!==t&&e.componentWillUnmount(),n.__v?(e.l||(e.i=t,e.l={nodeType:1,parentNode:t,childNodes:[],appendChild:function(r){this.childNodes.push(r),e.i.appendChild(r)},insertBefore:function(r,i){this.childNodes.push(r),e.i.appendChild(r)},removeChild:function(r){this.childNodes.splice(this.childNodes.indexOf(r)>>>1,1),e.i.removeChild(r)}}),Ei(J(jh,{context:e.context},n.__v),e.l)):e.l&&e.componentWillUnmount()}function Hh(n,e){var t=J($h,{__v:n,i:e});return t.containerInfo=e,t}(ma.prototype=new ln).__a=function(n){var e=this,t=md(e.__v),r=e.o.get(n);return r[0]++,function(i){var o=function(){e.props.revealOrder?(r.push(i),Wc(e,n,r)):i()};t?t(o):o()}},ma.prototype.render=function(n){this.u=null,this.o=new Map;var e=$a(n.children);n.revealOrder&&n.revealOrder[0]==="b"&&e.reverse();for(var t=e.length;t--;)this.o.set(e[t],this.u=[1,0,this.u]);return n.children},ma.prototype.componentDidUpdate=ma.prototype.componentDidMount=function(){var n=this;this.o.forEach(function(e,t){Wc(n,t,e)})};var Bh=typeof Symbol!="undefined"&&Symbol.for&&Symbol.for("react.element")||60103,Fh=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Vh=typeof document!="undefined",zh=function(n){return(typeof Symbol!="undefined"&&typeof Symbol()=="symbol"?/fil|che|rad/i:/fil|che|ra/i).test(n)};ln.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(n){Object.defineProperty(ln.prototype,n,{configurable:!0,get:function(){return this["UNSAFE_"+n]},set:function(e){Object.defineProperty(this,n,{configurable:!0,writable:!0,value:e})}})});var Gc=He.event;function Uh(){}function Wh(){return this.cancelBubble}function Gh(){return this.defaultPrevented}He.event=function(n){return Gc&&(n=Gc(n)),n.persist=Uh,n.isPropagationStopped=Wh,n.isDefaultPrevented=Gh,n.nativeEvent=n};var Yc={configurable:!0,get:function(){return this.class}},Zc=He.vnode;He.vnode=function(n){var e=n.type,t=n.props,r=t;if(typeof e=="string"){var i=e.indexOf("-")===-1;for(var o in r={},t){var l=t[o];Vh&&o==="children"&&e==="noscript"||o==="value"&&"defaultValue"in t&&l==null||(o==="defaultValue"&&"value"in t&&t.value==null?o="value":o==="download"&&l===!0?l="":/ondoubleclick/i.test(o)?o="ondblclick":/^onchange(textarea|input)/i.test(o+e)&&!zh(t.type)?o="oninput":/^onfocus$/i.test(o)?o="onfocusin":/^onblur$/i.test(o)?o="onfocusout":/^on(Ani|Tra|Tou|BeforeInp|Compo)/.test(o)?o=o.toLowerCase():i&&Fh.test(o)?o=o.replace(/[A-Z0-9]/g,"-$&").toLowerCase():l===null&&(l=void 0),/^oninput$/i.test(o)&&(o=o.toLowerCase(),r[o]&&(o="oninputCapture")),r[o]=l)}e=="select"&&r.multiple&&Array.isArray(r.value)&&(r.value=$a(t.children).forEach(function(d){d.props.selected=r.value.indexOf(d.props.value)!=-1})),e=="select"&&r.defaultValue!=null&&(r.value=$a(t.children).forEach(function(d){d.props.selected=r.multiple?r.defaultValue.indexOf(d.props.value)!=-1:r.defaultValue==d.props.value})),n.props=r,t.class!=t.className&&(Yc.enumerable="className"in t,t.className!=null&&(r.class=t.className),Object.defineProperty(r,"className",Yc))}n.$$typeof=Bh,Zc&&Zc(n)};var Qc=He.__r;He.__r=function(n){Qc&&Qc(n),n.__c};const yd=[],ks=new Map,Kc=" fullcalendar styles ";typeof document!="undefined"&&Sd(document,document.head,document.head.querySelector("script,link,style"));function bd(n){yd.push(n),ks.forEach(e=>{Ad(n,e)})}function Yh(n){Sd(n.getRootNode())}function Sd(n,e=n,t=e.firstChild){if(!ks.has(n)){const r=document.createComment(Kc),i=document.createComment(` END${Kc}`);e.insertBefore(i,t),e.insertBefore(r,i),ks.set(n,i),Zh(i)}}function Zh(n){for(const e of yd)Ad(e,n)}function Ad(n,e){const t=document.createElement("style"),r=Qh();r&&(t.nonce=r),t.innerText=n,e.parentNode.insertBefore(t,e)}let ms;function Qh(){return ms===void 0&&(ms=Kh()),ms}function Kh(){const n=document.querySelector('meta[name="csp-nonce"]');if(n&&n.hasAttribute("content"))return n.getAttribute("content");const e=document.querySelector("script[nonce]");return e&&e.nonce||""}var Jh=':root{--fc-small-font-size:.85em;--fc-page-bg-color:#fff;--fc-neutral-bg-color:hsla(0,0%,82%,.3);--fc-neutral-text-color:grey;--fc-border-color:#ddd;--fc-button-text-color:#fff;--fc-button-bg-color:#2c3e50;--fc-button-border-color:#2c3e50;--fc-button-hover-bg-color:#1e2b37;--fc-button-hover-border-color:#1a252f;--fc-button-active-bg-color:#1a252f;--fc-button-active-border-color:#151e27;--fc-event-bg-color:#3788d8;--fc-event-border-color:#3788d8;--fc-event-text-color:#fff;--fc-event-selected-overlay-color:rgba(0,0,0,.25);--fc-more-link-bg-color:#d0d0d0;--fc-more-link-text-color:inherit;--fc-event-resizer-thickness:8px;--fc-event-resizer-dot-total-width:8px;--fc-event-resizer-dot-border-width:1px;--fc-non-business-color:hsla(0,0%,84%,.3);--fc-bg-event-color:#8fdf82;--fc-bg-event-opacity:0.3;--fc-highlight-color:rgba(188,232,241,.3);--fc-today-bg-color:rgba(255,220,40,.15);--fc-now-indicator-color:red}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc{display:flex;flex-direction:column;font-size:1em}.fc,.fc *,.fc :after,.fc :before{box-sizing:border-box}.fc table{border-collapse:collapse;border-spacing:0;font-size:1em}.fc th{text-align:center}.fc td,.fc th{padding:0;vertical-align:top}.fc a[data-navlink]{cursor:pointer}.fc a[data-navlink]:hover{text-decoration:underline}.fc-direction-ltr{direction:ltr;text-align:left}.fc-direction-rtl{direction:rtl;text-align:right}.fc-theme-standard td,.fc-theme-standard th{border:1px solid var(--fc-border-color)}.fc-liquid-hack td,.fc-liquid-hack th{position:relative}@font-face{font-family:fcicons;font-style:normal;font-weight:400;src:url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype")}.fc-icon{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-family:fcicons!important;font-style:normal;font-variant:normal;font-weight:400;height:1em;line-height:1;text-align:center;text-transform:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:1em}.fc-icon-chevron-left:before{content:"\\e900"}.fc-icon-chevron-right:before{content:"\\e901"}.fc-icon-chevrons-left:before{content:"\\e902"}.fc-icon-chevrons-right:before{content:"\\e903"}.fc-icon-minus-square:before{content:"\\e904"}.fc-icon-plus-square:before{content:"\\e905"}.fc-icon-x:before{content:"\\e906"}.fc .fc-button{border-radius:0;font-family:inherit;font-size:inherit;line-height:inherit;margin:0;overflow:visible;text-transform:none}.fc .fc-button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}.fc .fc-button{-webkit-appearance:button}.fc .fc-button:not(:disabled){cursor:pointer}.fc .fc-button::-moz-focus-inner{border-style:none;padding:0}.fc .fc-button{background-color:transparent;border:1px solid transparent;border-radius:.25em;display:inline-block;font-size:1em;font-weight:400;line-height:1.5;padding:.4em .65em;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}.fc .fc-button:hover{text-decoration:none}.fc .fc-button:focus{box-shadow:0 0 0 .2rem rgba(44,62,80,.25);outline:0}.fc .fc-button:disabled{opacity:.65}.fc .fc-button-primary{background-color:var(--fc-button-bg-color);border-color:var(--fc-button-border-color);color:var(--fc-button-text-color)}.fc .fc-button-primary:hover{background-color:var(--fc-button-hover-bg-color);border-color:var(--fc-button-hover-border-color);color:var(--fc-button-text-color)}.fc .fc-button-primary:disabled{background-color:var(--fc-button-bg-color);border-color:var(--fc-button-border-color);color:var(--fc-button-text-color)}.fc .fc-button-primary:focus{box-shadow:0 0 0 .2rem rgba(76,91,106,.5)}.fc .fc-button-primary:not(:disabled).fc-button-active,.fc .fc-button-primary:not(:disabled):active{background-color:var(--fc-button-active-bg-color);border-color:var(--fc-button-active-border-color);color:var(--fc-button-text-color)}.fc .fc-button-primary:not(:disabled).fc-button-active:focus,.fc .fc-button-primary:not(:disabled):active:focus{box-shadow:0 0 0 .2rem rgba(76,91,106,.5)}.fc .fc-button .fc-icon{font-size:1.5em;vertical-align:middle}.fc .fc-button-group{display:inline-flex;position:relative;vertical-align:middle}.fc .fc-button-group>.fc-button{flex:1 1 auto;position:relative}.fc .fc-button-group>.fc-button.fc-button-active,.fc .fc-button-group>.fc-button:active,.fc .fc-button-group>.fc-button:focus,.fc .fc-button-group>.fc-button:hover{z-index:1}.fc-direction-ltr .fc-button-group>.fc-button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-1px}.fc-direction-ltr .fc-button-group>.fc-button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.fc-direction-rtl .fc-button-group>.fc-button:not(:first-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.fc-direction-rtl .fc-button-group>.fc-button:not(:last-child){border-bottom-left-radius:0;border-top-left-radius:0}.fc .fc-toolbar{align-items:center;display:flex;justify-content:space-between}.fc .fc-toolbar.fc-header-toolbar{margin-bottom:1.5em}.fc .fc-toolbar.fc-footer-toolbar{margin-top:1.5em}.fc .fc-toolbar-title{font-size:1.75em;margin:0}.fc-direction-ltr .fc-toolbar>*>:not(:first-child){margin-left:.75em}.fc-direction-rtl .fc-toolbar>*>:not(:first-child){margin-right:.75em}.fc-direction-rtl .fc-toolbar-ltr{flex-direction:row-reverse}.fc .fc-scroller{-webkit-overflow-scrolling:touch;position:relative}.fc .fc-scroller-liquid{height:100%}.fc .fc-scroller-liquid-absolute{bottom:0;left:0;position:absolute;right:0;top:0}.fc .fc-scroller-harness{direction:ltr;overflow:hidden;position:relative}.fc .fc-scroller-harness-liquid{height:100%}.fc-direction-rtl .fc-scroller-harness>.fc-scroller{direction:rtl}.fc-theme-standard .fc-scrollgrid{border:1px solid var(--fc-border-color)}.fc .fc-scrollgrid,.fc .fc-scrollgrid table{table-layout:fixed;width:100%}.fc .fc-scrollgrid table{border-left-style:hidden;border-right-style:hidden;border-top-style:hidden}.fc .fc-scrollgrid{border-bottom-width:0;border-collapse:separate;border-right-width:0}.fc .fc-scrollgrid-liquid{height:100%}.fc .fc-scrollgrid-section,.fc .fc-scrollgrid-section table,.fc .fc-scrollgrid-section>td{height:1px}.fc .fc-scrollgrid-section-liquid>td{height:100%}.fc .fc-scrollgrid-section>*{border-left-width:0;border-top-width:0}.fc .fc-scrollgrid-section-footer>*,.fc .fc-scrollgrid-section-header>*{border-bottom-width:0}.fc .fc-scrollgrid-section-body table,.fc .fc-scrollgrid-section-footer table{border-bottom-style:hidden}.fc .fc-scrollgrid-section-sticky>*{background:var(--fc-page-bg-color);position:sticky;z-index:3}.fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky>*{top:0}.fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky>*{bottom:0}.fc .fc-scrollgrid-sticky-shim{height:1px;margin-bottom:-1px}.fc-sticky{position:sticky}.fc .fc-view-harness{flex-grow:1;position:relative}.fc .fc-view-harness-active>.fc-view{bottom:0;left:0;position:absolute;right:0;top:0}.fc .fc-col-header-cell-cushion{display:inline-block;padding:2px 4px}.fc .fc-bg-event,.fc .fc-highlight,.fc .fc-non-business{bottom:0;left:0;position:absolute;right:0;top:0}.fc .fc-non-business{background:var(--fc-non-business-color)}.fc .fc-bg-event{background:var(--fc-bg-event-color);opacity:var(--fc-bg-event-opacity)}.fc .fc-bg-event .fc-event-title{font-size:var(--fc-small-font-size);font-style:italic;margin:.5em}.fc .fc-highlight{background:var(--fc-highlight-color)}.fc .fc-cell-shaded,.fc .fc-day-disabled{background:var(--fc-neutral-bg-color)}a.fc-event,a.fc-event:hover{text-decoration:none}.fc-event.fc-event-draggable,.fc-event[href]{cursor:pointer}.fc-event .fc-event-main{position:relative;z-index:2}.fc-event-dragging:not(.fc-event-selected){opacity:.75}.fc-event-dragging.fc-event-selected{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-event .fc-event-resizer{display:none;position:absolute;z-index:4}.fc-event-selected .fc-event-resizer,.fc-event:hover .fc-event-resizer{display:block}.fc-event-selected .fc-event-resizer{background:var(--fc-page-bg-color);border-color:inherit;border-radius:calc(var(--fc-event-resizer-dot-total-width)/2);border-style:solid;border-width:var(--fc-event-resizer-dot-border-width);height:var(--fc-event-resizer-dot-total-width);width:var(--fc-event-resizer-dot-total-width)}.fc-event-selected .fc-event-resizer:before{bottom:-20px;content:"";left:-20px;position:absolute;right:-20px;top:-20px}.fc-event-selected,.fc-event:focus{box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event-selected:before,.fc-event:focus:before{bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:3}.fc-event-selected:after,.fc-event:focus:after{background:var(--fc-event-selected-overlay-color);bottom:-1px;content:"";left:-1px;position:absolute;right:-1px;top:-1px;z-index:1}.fc-h-event{background-color:var(--fc-event-bg-color);border:1px solid var(--fc-event-border-color);display:block}.fc-h-event .fc-event-main{color:var(--fc-event-text-color)}.fc-h-event .fc-event-main-frame{display:flex}.fc-h-event .fc-event-time{max-width:100%;overflow:hidden}.fc-h-event .fc-event-title-container{flex-grow:1;flex-shrink:1;min-width:0}.fc-h-event .fc-event-title{display:inline-block;left:0;max-width:100%;overflow:hidden;right:0;vertical-align:top}.fc-h-event.fc-event-selected:before{bottom:-10px;top:-10px}.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end){border-bottom-left-radius:0;border-left-width:0;border-top-left-radius:0}.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start){border-bottom-right-radius:0;border-right-width:0;border-top-right-radius:0}.fc-h-event:not(.fc-event-selected) .fc-event-resizer{bottom:0;top:0;width:var(--fc-event-resizer-thickness)}.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start,.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end{cursor:w-resize;left:calc(var(--fc-event-resizer-thickness)*-.5)}.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start{cursor:e-resize;right:calc(var(--fc-event-resizer-thickness)*-.5)}.fc-h-event.fc-event-selected .fc-event-resizer{margin-top:calc(var(--fc-event-resizer-dot-total-width)*-.5);top:50%}.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end{left:calc(var(--fc-event-resizer-dot-total-width)*-.5)}.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start{right:calc(var(--fc-event-resizer-dot-total-width)*-.5)}.fc .fc-popover{box-shadow:0 2px 6px rgba(0,0,0,.15);position:absolute;z-index:9999}.fc .fc-popover-header{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding:3px 4px}.fc .fc-popover-title{margin:0 2px}.fc .fc-popover-close{cursor:pointer;font-size:1.1em;opacity:.65}.fc-theme-standard .fc-popover{background:var(--fc-page-bg-color);border:1px solid var(--fc-border-color)}.fc-theme-standard .fc-popover-header{background:var(--fc-neutral-bg-color)}';bd(Jh);class Qs{constructor(e){this.drainedOption=e,this.isRunning=!1,this.isDirty=!1,this.pauseDepths={},this.timeoutId=0}request(e){this.isDirty=!0,this.isPaused()||(this.clearTimeout(),e==null?this.tryDrain():this.timeoutId=setTimeout(this.tryDrain.bind(this),e))}pause(e=""){let{pauseDepths:t}=this;t[e]=(t[e]||0)+1,this.clearTimeout()}resume(e="",t){let{pauseDepths:r}=this;e in r&&(t?delete r[e]:(r[e]-=1,r[e]<=0&&delete r[e]),this.tryDrain())}isPaused(){return Object.keys(this.pauseDepths).length}tryDrain(){if(!this.isRunning&&!this.isPaused()){for(this.isRunning=!0;this.isDirty;)this.isDirty=!1,this.drained();this.isRunning=!1}}clear(){this.clearTimeout(),this.isDirty=!1,this.pauseDepths={}}clearTimeout(){this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=0)}drained(){this.drainedOption&&this.drainedOption()}}function Xh(n){n.parentNode&&n.parentNode.removeChild(n)}function Bn(n,e){if(n.closest)return n.closest(e);if(!document.documentElement.contains(n))return null;do{if(qh(n,e))return n;n=n.parentElement||n.parentNode}while(n!==null&&n.nodeType===1);return null}function qh(n,e){return(n.matches||n.matchesSelector||n.msMatchesSelector).call(n,e)}function ev(n,e){let t=n instanceof HTMLElement?[n]:n,r=[];for(let i=0;i<t.length;i+=1){let o=t[i].querySelectorAll(e);for(let l=0;l<o.length;l+=1)r.push(o[l])}return r}const tv=/(top|left|right|bottom|width|height)$/i;function nv(n,e){for(let t in e)Ld(n,t,e[t])}function Ld(n,e,t){t==null?n.style[e]="":typeof t=="number"&&tv.test(e)?n.style[e]=`${t}px`:n.style[e]=t}function rv(n){var e,t;return(t=(e=n.composedPath)===null||e===void 0?void 0:e.call(n)[0])!==null&&t!==void 0?t:n.target}let Jc=0;function Ja(){return Jc+=1,"fc-dom-"+Jc}function iv(n,e){return t=>{let r=Bn(t.target,n);r&&e.call(r,t,r)}}function wd(n,e,t,r){let i=iv(t,r);return n.addEventListener(e,i),()=>{n.removeEventListener(e,i)}}function av(n,e,t,r){let i;return wd(n,"mouseover",e,(o,l)=>{if(l!==i){i=l,t(o,l);let d=f=>{i=null,r(f,l),l.removeEventListener("mouseleave",d)};l.addEventListener("mouseleave",d)}})}function Ed(n){return Object.assign({onClick:n},Cd(n))}function Cd(n){return{tabIndex:0,onKeyDown(e){(e.key==="Enter"||e.key===" ")&&(n(e),e.preventDefault())}}}let Xc=0;function xr(){return Xc+=1,String(Xc)}function ov(n){let e=[],t=[],r,i;for(typeof n=="string"?t=n.split(/\s*,\s*/):typeof n=="function"?t=[n]:Array.isArray(n)&&(t=n),r=0;r<t.length;r+=1)i=t[r],typeof i=="string"?e.push(i.charAt(0)==="-"?{field:i.substring(1),order:-1}:{field:i,order:1}):typeof i=="function"&&e.push({func:i});return e}function sv(n,e,t){let r,i;for(r=0;r<t.length;r+=1)if(i=lv(n,e,t[r]),i)return i;return 0}function lv(n,e,t){return t.func?t.func(n,e):cv(n[t.field],e[t.field])*(t.order||1)}function cv(n,e){return!n&&!e?0:e==null?-1:n==null?1:typeof n=="string"||typeof e=="string"?String(n).localeCompare(String(e)):n-e}function ys(n,e){let t=String(n);return"000".substr(0,e-t.length)+t}function gi(n,e,t){return typeof n=="function"?n(...e):typeof n=="string"?e.reduce((r,i,o)=>r.replace("$"+o,i||""),n):t}function bs(n){return n%1===0}function uv(n){let e=n.querySelector(".fc-scrollgrid-shrink-frame"),t=n.querySelector(".fc-scrollgrid-shrink-cushion");if(!e)throw new Error("needs fc-scrollgrid-shrink-frame className");if(!t)throw new Error("needs fc-scrollgrid-shrink-cushion className");return n.getBoundingClientRect().width-e.getBoundingClientRect().width+t.getBoundingClientRect().width}const dv=/^(-?)(?:(\d+)\.)?(\d+):(\d\d)(?::(\d\d)(?:\.(\d\d\d))?)?/;function ht(n,e){return typeof n=="string"?fv(n):typeof n=="object"&&n?qc(n):typeof n=="number"?qc({[e||"milliseconds"]:n}):null}function fv(n){let e=dv.exec(n);if(e){let t=e[1]?-1:1;return{years:0,months:0,days:t*(e[2]?parseInt(e[2],10):0),milliseconds:t*((e[3]?parseInt(e[3],10):0)*60*60*1e3+(e[4]?parseInt(e[4],10):0)*60*1e3+(e[5]?parseInt(e[5],10):0)*1e3+(e[6]?parseInt(e[6],10):0))}}return null}function qc(n){let e={years:n.years||n.year||0,months:n.months||n.month||0,days:n.days||n.day||0,milliseconds:(n.hours||n.hour||0)*60*60*1e3+(n.minutes||n.minute||0)*60*1e3+(n.seconds||n.second||0)*1e3+(n.milliseconds||n.millisecond||n.ms||0)},t=n.weeks||n.week;return t&&(e.days+=t*7,e.specifiedWeeks=!0),e}function pv(n,e){return n.years===e.years&&n.months===e.months&&n.days===e.days&&n.milliseconds===e.milliseconds}function hv(n,e){return{years:n.years-e.years,months:n.months-e.months,days:n.days-e.days,milliseconds:n.milliseconds-e.milliseconds}}function vv(n){return Wr(n)/365}function gv(n){return Wr(n)/30}function Wr(n){return Ci(n)/864e5}function Ci(n){return n.years*(365*864e5)+n.months*(30*864e5)+n.days*864e5+n.milliseconds}function Ps(n){let e=n.milliseconds;if(e){if(e%1e3!==0)return{unit:"millisecond",value:e};if(e%(1e3*60)!==0)return{unit:"second",value:e/1e3};if(e%(1e3*60*60)!==0)return{unit:"minute",value:e/(1e3*60)};if(e)return{unit:"hour",value:e/(1e3*60*60)}}return n.days?n.specifiedWeeks&&n.days%7===0?{unit:"week",value:n.days/7}:{unit:"day",value:n.days}:n.months?{unit:"month",value:n.months}:n.years?{unit:"year",value:n.years}:{unit:"millisecond",value:0}}function nr(n,e,t){if(n===e)return!0;let r=n.length,i;if(r!==e.length)return!1;for(i=0;i<r;i+=1)if(!(t?t(n[i],e[i]):n[i]===e[i]))return!1;return!0}const mv=["sun","mon","tue","wed","thu","fri","sat"];function eu(n,e){let t=qn(n);return t[2]+=e*7,tn(t)}function Zt(n,e){let t=qn(n);return t[2]+=e,tn(t)}function rr(n,e){let t=qn(n);return t[6]+=e,tn(t)}function yv(n,e){return ei(n,e)/7}function ei(n,e){return(e.valueOf()-n.valueOf())/(1e3*60*60*24)}function bv(n,e){return(e.valueOf()-n.valueOf())/(1e3*60*60)}function Sv(n,e){return(e.valueOf()-n.valueOf())/(1e3*60)}function Av(n,e){return(e.valueOf()-n.valueOf())/1e3}function Lv(n,e){let t=Et(n),r=Et(e);return{years:0,months:0,days:Math.round(ei(t,r)),milliseconds:e.valueOf()-r.valueOf()-(n.valueOf()-t.valueOf())}}function wv(n,e){let t=Ha(n,e);return t!==null&&t%7===0?t/7:null}function Ha(n,e){return er(n)===er(e)?Math.round(ei(n,e)):null}function Et(n){return tn([n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate()])}function Ev(n){return tn([n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate(),n.getUTCHours()])}function Cv(n){return tn([n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate(),n.getUTCHours(),n.getUTCMinutes()])}function xv(n){return tn([n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate(),n.getUTCHours(),n.getUTCMinutes(),n.getUTCSeconds()])}function Tv(n,e,t){let r=n.getUTCFullYear(),i=Ss(n,r,e,t);if(i<1)return Ss(n,r-1,e,t);let o=Ss(n,r+1,e,t);return o>=1?Math.min(i,o):i}function Ss(n,e,t,r){let i=tn([e,0,1+Ov(e,t,r)]),o=Et(n),l=Math.round(ei(i,o));return Math.floor(l/7)+1}function Ov(n,e,t){let r=7+e-t;return-((7+tn([n,0,r]).getUTCDay()-e)%7)+r-1}function tu(n){return[n.getFullYear(),n.getMonth(),n.getDate(),n.getHours(),n.getMinutes(),n.getSeconds(),n.getMilliseconds()]}function nu(n){return new Date(n[0],n[1]||0,n[2]==null?1:n[2],n[3]||0,n[4]||0,n[5]||0)}function qn(n){return[n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate(),n.getUTCHours(),n.getUTCMinutes(),n.getUTCSeconds(),n.getUTCMilliseconds()]}function tn(n){return n.length===1&&(n=n.concat([0])),new Date(Date.UTC(...n))}function xd(n){return!isNaN(n.valueOf())}function er(n){return n.getUTCHours()*1e3*60*60+n.getUTCMinutes()*1e3*60+n.getUTCSeconds()*1e3+n.getUTCMilliseconds()}function _v(n,e,t=!1){let r=n.toISOString();return r=r.replace(".000",""),t&&(r=r.replace("T00:00:00Z","")),r.length>10&&(e==null?r=r.replace("Z",""):e!==0&&(r=r.replace("Z",Js(e,!0)))),r}function Ks(n){return n.toISOString().replace(/T.*$/,"")}function Dv(n){return n.toISOString().match(/^\d{4}-\d{2}/)[0]}function Js(n,e=!1){let t=n<0?"-":"+",r=Math.abs(n),i=Math.floor(r/60),o=Math.round(r%60);return e?`${t+ys(i,2)}:${ys(o,2)}`:`GMT${t}${i}${o?`:${ys(o,2)}`:""}`}function ct(n,e,t){let r,i;return function(...o){if(!r)i=n.apply(this,o);else if(!nr(r,o)){t&&t(i);let l=n.apply(this,o);(!e||!e(l,i))&&(i=l)}return r=o,i}}function Ma(n,e,t){let r,i;return o=>{if(!r)i=n.call(this,o);else if(!_n(r,o)){t&&t(i);let l=n.call(this,o);(!e||!e(l,i))&&(i=l)}return r=o,i}}const ru={week:3,separator:0,omitZeroMinute:0,meridiem:0,omitCommas:0},Ba={timeZoneName:7,era:6,year:5,month:4,day:2,weekday:2,hour:1,minute:1,second:1},ya=/\s*([ap])\.?m\.?/i,Rv=/,/g,Mv=/\s+/g,Iv=/\u200e/g,kv=/UTC|GMT/;class Pv{constructor(e){let t={},r={},i=0;for(let o in e)o in ru?(r[o]=e[o],i=Math.max(ru[o],i)):(t[o]=e[o],o in Ba&&(i=Math.max(Ba[o],i)));this.standardDateProps=t,this.extendedSettings=r,this.severity=i,this.buildFormattingFunc=ct(iu)}format(e,t){return this.buildFormattingFunc(this.standardDateProps,this.extendedSettings,t)(e)}formatRange(e,t,r,i){let{standardDateProps:o,extendedSettings:l}=this,d=Fv(e.marker,t.marker,r.calendarSystem);if(!d)return this.format(e,r);let f=d;f>1&&(o.year==="numeric"||o.year==="2-digit")&&(o.month==="numeric"||o.month==="2-digit")&&(o.day==="numeric"||o.day==="2-digit")&&(f=1);let g=this.format(e,r),v=this.format(t,r);if(g===v)return g;let y=Vv(o,f),A=iu(y,l,r),S=A(e),C=A(t),_=zv(g,S,v,C),T=l.separator||i||r.defaultSeparator||"";return _?_.before+S+T+C+_.after:g+T+v}getLargestUnit(){switch(this.severity){case 7:case 6:case 5:return"year";case 4:return"month";case 3:return"week";case 2:return"day";default:return"time"}}}function iu(n,e,t){let r=Object.keys(n).length;return r===1&&n.timeZoneName==="short"?i=>Js(i.timeZoneOffset):r===0&&e.week?i=>Bv(t.computeWeekNumber(i.marker),t.weekText,t.weekTextLong,t.locale,e.week):Nv(n,e,t)}function Nv(n,e,t){n=Object.assign({},n),e=Object.assign({},e),jv(n,e),n.timeZone="UTC";let r=new Intl.DateTimeFormat(t.locale.codes,n),i;if(e.omitZeroMinute){let o=Object.assign({},n);delete o.minute,i=new Intl.DateTimeFormat(t.locale.codes,o)}return o=>{let{marker:l}=o,d;i&&!l.getUTCMinutes()?d=i:d=r;let f=d.format(l);return $v(f,o,n,e,t)}}function jv(n,e){n.timeZoneName&&(n.hour||(n.hour="2-digit"),n.minute||(n.minute="2-digit")),n.timeZoneName==="long"&&(n.timeZoneName="short"),e.omitZeroMinute&&(n.second||n.millisecond)&&delete e.omitZeroMinute}function $v(n,e,t,r,i){return n=n.replace(Iv,""),t.timeZoneName==="short"&&(n=Hv(n,i.timeZone==="UTC"||e.timeZoneOffset==null?"UTC":Js(e.timeZoneOffset))),r.omitCommas&&(n=n.replace(Rv,"").trim()),r.omitZeroMinute&&(n=n.replace(":00","")),r.meridiem===!1?n=n.replace(ya,"").trim():r.meridiem==="narrow"?n=n.replace(ya,(o,l)=>l.toLocaleLowerCase()):r.meridiem==="short"?n=n.replace(ya,(o,l)=>`${l.toLocaleLowerCase()}m`):r.meridiem==="lowercase"&&(n=n.replace(ya,o=>o.toLocaleLowerCase())),n=n.replace(Mv," "),n=n.trim(),n}function Hv(n,e){let t=!1;return n=n.replace(kv,()=>(t=!0,e)),t||(n+=` ${e}`),n}function Bv(n,e,t,r,i){let o=[];return i==="long"?o.push(t):(i==="short"||i==="narrow")&&o.push(e),(i==="long"||i==="short")&&o.push(" "),o.push(r.simpleNumberFormat.format(n)),r.options.direction==="rtl"&&o.reverse(),o.join("")}function Fv(n,e,t){return t.getMarkerYear(n)!==t.getMarkerYear(e)?5:t.getMarkerMonth(n)!==t.getMarkerMonth(e)?4:t.getMarkerDay(n)!==t.getMarkerDay(e)?2:er(n)!==er(e)?1:0}function Vv(n,e){let t={};for(let r in n)(!(r in Ba)||Ba[r]<=e)&&(t[r]=n[r]);return t}function zv(n,e,t,r){let i=0;for(;i<n.length;){let o=n.indexOf(e,i);if(o===-1)break;let l=n.substr(0,o);i=o+e.length;let d=n.substr(i),f=0;for(;f<t.length;){let g=t.indexOf(r,f);if(g===-1)break;let v=t.substr(0,g);f=g+r.length;let y=t.substr(f);if(l===v&&d===y)return{before:l,after:d}}}return null}function au(n,e){let t=e.markerToArray(n.marker);return{marker:n.marker,timeZoneOffset:n.timeZoneOffset,array:t,year:t[0],month:t[1],day:t[2],hour:t[3],minute:t[4],second:t[5],millisecond:t[6]}}function Fa(n,e,t,r){let i=au(n,t.calendarSystem),o=e?au(e,t.calendarSystem):null;return{date:i,start:i,end:o,timeZone:t.timeZone,localeCodes:t.locale.codes,defaultSeparator:r||t.defaultSeparator}}class Uv{constructor(e){this.cmdStr=e}format(e,t,r){return t.cmdFormatter(this.cmdStr,Fa(e,null,t,r))}formatRange(e,t,r,i){return r.cmdFormatter(this.cmdStr,Fa(e,t,r,i))}}class Wv{constructor(e){this.func=e}format(e,t,r){return this.func(Fa(e,null,t,r))}formatRange(e,t,r,i){return this.func(Fa(e,t,r,i))}}function Ut(n){return typeof n=="object"&&n?new Pv(n):typeof n=="string"?new Uv(n):typeof n=="function"?new Wv(n):null}const ou={navLinkDayClick:te,navLinkWeekClick:te,duration:ht,bootstrapFontAwesome:te,buttonIcons:te,customButtons:te,defaultAllDayEventDuration:ht,defaultTimedEventDuration:ht,nextDayThreshold:ht,scrollTime:ht,scrollTimeReset:Boolean,slotMinTime:ht,slotMaxTime:ht,dayPopoverFormat:Ut,slotDuration:ht,snapDuration:ht,headerToolbar:te,footerToolbar:te,defaultRangeSeparator:String,titleRangeSeparator:String,forceEventDuration:Boolean,dayHeaders:Boolean,dayHeaderFormat:Ut,dayHeaderClassNames:te,dayHeaderContent:te,dayHeaderDidMount:te,dayHeaderWillUnmount:te,dayCellClassNames:te,dayCellContent:te,dayCellDidMount:te,dayCellWillUnmount:te,initialView:String,aspectRatio:Number,weekends:Boolean,weekNumberCalculation:te,weekNumbers:Boolean,weekNumberClassNames:te,weekNumberContent:te,weekNumberDidMount:te,weekNumberWillUnmount:te,editable:Boolean,viewClassNames:te,viewDidMount:te,viewWillUnmount:te,nowIndicator:Boolean,nowIndicatorClassNames:te,nowIndicatorContent:te,nowIndicatorDidMount:te,nowIndicatorWillUnmount:te,showNonCurrentDates:Boolean,lazyFetching:Boolean,startParam:String,endParam:String,timeZoneParam:String,timeZone:String,locales:te,locale:te,themeSystem:String,dragRevertDuration:Number,dragScroll:Boolean,allDayMaintainDuration:Boolean,unselectAuto:Boolean,dropAccept:te,eventOrder:ov,eventOrderStrict:Boolean,handleWindowResize:Boolean,windowResizeDelay:Number,longPressDelay:Number,eventDragMinDistance:Number,expandRows:Boolean,height:te,contentHeight:te,direction:String,weekNumberFormat:Ut,eventResizableFromStart:Boolean,displayEventTime:Boolean,displayEventEnd:Boolean,weekText:String,weekTextLong:String,progressiveEventRendering:Boolean,businessHours:te,initialDate:te,now:te,eventDataTransform:te,stickyHeaderDates:te,stickyFooterScrollbar:te,viewHeight:te,defaultAllDay:Boolean,eventSourceFailure:te,eventSourceSuccess:te,eventDisplay:String,eventStartEditable:Boolean,eventDurationEditable:Boolean,eventOverlap:te,eventConstraint:te,eventAllow:te,eventBackgroundColor:String,eventBorderColor:String,eventTextColor:String,eventColor:String,eventClassNames:te,eventContent:te,eventDidMount:te,eventWillUnmount:te,selectConstraint:te,selectOverlap:te,selectAllow:te,droppable:Boolean,unselectCancel:String,slotLabelFormat:te,slotLaneClassNames:te,slotLaneContent:te,slotLaneDidMount:te,slotLaneWillUnmount:te,slotLabelClassNames:te,slotLabelContent:te,slotLabelDidMount:te,slotLabelWillUnmount:te,dayMaxEvents:te,dayMaxEventRows:te,dayMinWidth:Number,slotLabelInterval:ht,allDayText:String,allDayClassNames:te,allDayContent:te,allDayDidMount:te,allDayWillUnmount:te,slotMinWidth:Number,navLinks:Boolean,eventTimeFormat:Ut,rerenderDelay:Number,moreLinkText:te,moreLinkHint:te,selectMinDistance:Number,selectable:Boolean,selectLongPressDelay:Number,eventLongPressDelay:Number,selectMirror:Boolean,eventMaxStack:Number,eventMinHeight:Number,eventMinWidth:Number,eventShortHeight:Number,slotEventOverlap:Boolean,plugins:te,firstDay:Number,dayCount:Number,dateAlignment:String,dateIncrement:ht,hiddenDays:te,fixedWeekCount:Boolean,validRange:te,visibleRange:te,titleFormat:te,eventInteractive:Boolean,noEventsText:String,viewHint:te,navLinkHint:te,closeHint:String,timeHint:String,eventHint:String,moreLinkClick:te,moreLinkClassNames:te,moreLinkContent:te,moreLinkDidMount:te,moreLinkWillUnmount:te,monthStartFormat:Ut,handleCustomRendering:te,customRenderingMetaMap:te,customRenderingReplacesEl:Boolean},mi={eventDisplay:"auto",defaultRangeSeparator:" - ",titleRangeSeparator:" \u2013 ",defaultTimedEventDuration:"01:00:00",defaultAllDayEventDuration:{day:1},forceEventDuration:!1,nextDayThreshold:"00:00:00",dayHeaders:!0,initialView:"",aspectRatio:1.35,headerToolbar:{start:"title",center:"",end:"today prev,next"},weekends:!0,weekNumbers:!1,weekNumberCalculation:"local",editable:!1,nowIndicator:!1,scrollTime:"06:00:00",scrollTimeReset:!0,slotMinTime:"00:00:00",slotMaxTime:"24:00:00",showNonCurrentDates:!0,lazyFetching:!0,startParam:"start",endParam:"end",timeZoneParam:"timeZone",timeZone:"local",locales:[],locale:"",themeSystem:"standard",dragRevertDuration:500,dragScroll:!0,allDayMaintainDuration:!1,unselectAuto:!0,dropAccept:"*",eventOrder:"start,-duration,allDay,title",dayPopoverFormat:{month:"long",day:"numeric",year:"numeric"},handleWindowResize:!0,windowResizeDelay:100,longPressDelay:1e3,eventDragMinDistance:5,expandRows:!1,navLinks:!1,selectable:!1,eventMinHeight:15,eventMinWidth:30,eventShortHeight:30,monthStartFormat:{month:"long",day:"numeric"}},su={datesSet:te,eventsSet:te,eventAdd:te,eventChange:te,eventRemove:te,windowResize:te,eventClick:te,eventMouseEnter:te,eventMouseLeave:te,select:te,unselect:te,loading:te,_unmount:te,_beforeprint:te,_afterprint:te,_noEventDrop:te,_noEventResize:te,_resize:te,_scrollRequest:te},lu={buttonText:te,buttonHints:te,views:te,plugins:te,initialEvents:te,events:te,eventSources:te},gr={headerToolbar:mr,footerToolbar:mr,buttonText:mr,buttonHints:mr,buttonIcons:mr,dateIncrement:mr,plugins:ba,events:ba,eventSources:ba,resources:ba};function mr(n,e){return typeof n=="object"&&typeof e=="object"&&n&&e?_n(n,e):n===e}function ba(n,e){return Array.isArray(n)&&Array.isArray(e)?nr(n,e):n===e}const Gv={type:String,component:te,buttonText:String,buttonTextKey:String,dateProfileGeneratorClass:te,usesMinMaxTime:Boolean,classNames:te,content:te,didMount:te,willUnmount:te};function As(n){return qs(n,gr)}function Xs(n,e){let t={},r={};for(let i in e)i in n&&(t[i]=e[i](n[i]));for(let i in n)i in e||(r[i]=n[i]);return{refined:t,extra:r}}function te(n){return n}const{hasOwnProperty:Va}=Object.prototype;function qs(n,e){let t={};if(e){for(let r in e)if(e[r]===mr){let i=[];for(let o=n.length-1;o>=0;o-=1){let l=n[o][r];if(typeof l=="object"&&l)i.unshift(l);else if(l!==void 0){t[r]=l;break}}i.length&&(t[r]=qs(i))}}for(let r=n.length-1;r>=0;r-=1){let i=n[r];for(let o in i)o in t||(t[o]=i[o])}return t}function Zr(n,e){let t={};for(let r in n)e(n[r],r)&&(t[r]=n[r]);return t}function _i(n,e){let t={};for(let r in n)t[r]=e(n[r],r);return t}function Td(n){let e={};for(let t of n)e[t]=!0;return e}function el(n){let e=[];for(let t in n)e.push(n[t]);return e}function _n(n,e){if(n===e)return!0;for(let t in n)if(Va.call(n,t)&&!(t in e))return!1;for(let t in e)if(Va.call(e,t)&&n[t]!==e[t])return!1;return!0}const Yv=/^on[A-Z]/;function Zv(n,e){const t=Ns(n,e);for(let r of t)if(!Yv.test(r))return!1;return!0}function Ns(n,e){let t=[];for(let r in n)Va.call(n,r)&&(r in e||t.push(r));for(let r in e)Va.call(e,r)&&n[r]!==e[r]&&t.push(r);return t}function Ls(n,e,t={}){if(n===e)return!0;for(let r in e)if(!(r in n&&Qv(n[r],e[r],t[r])))return!1;for(let r in n)if(!(r in e))return!1;return!0}function Qv(n,e,t){return n===e||t===!0?!0:t?t(n,e):!1}function Kv(n,e=0,t,r=1){let i=[];t==null&&(t=Object.keys(n).length);for(let o=e;o<t;o+=r){let l=n[o];l!==void 0&&i.push(l)}return i}let Od={};function Jv(n,e){Od[n]=e}function Xv(n){return new Od[n]}class qv{getMarkerYear(e){return e.getUTCFullYear()}getMarkerMonth(e){return e.getUTCMonth()}getMarkerDay(e){return e.getUTCDate()}arrayToMarker(e){return tn(e)}markerToArray(e){return qn(e)}}Jv("gregory",qv);const eg=/^\s*(\d{4})(-?(\d{2})(-?(\d{2})([T ](\d{2}):?(\d{2})(:?(\d{2})(\.(\d+))?)?(Z|(([-+])(\d{2})(:?(\d{2}))?))?)?)?)?$/;function tg(n){let e=eg.exec(n);if(e){let t=new Date(Date.UTC(Number(e[1]),e[3]?Number(e[3])-1:0,Number(e[5]||1),Number(e[7]||0),Number(e[8]||0),Number(e[10]||0),e[12]?Number(`0.${e[12]}`)*1e3:0));if(xd(t)){let r=null;return e[13]&&(r=(e[15]==="-"?-1:1)*(Number(e[16]||0)*60+Number(e[18]||0))),{marker:t,isTimeUnspecified:!e[6],timeZoneOffset:r}}}return null}class ng{constructor(e){let t=this.timeZone=e.timeZone,r=t!=="local"&&t!=="UTC";e.namedTimeZoneImpl&&r&&(this.namedTimeZoneImpl=new e.namedTimeZoneImpl(t)),this.canComputeOffset=Boolean(!r||this.namedTimeZoneImpl),this.calendarSystem=Xv(e.calendarSystem),this.locale=e.locale,this.weekDow=e.locale.week.dow,this.weekDoy=e.locale.week.doy,e.weekNumberCalculation==="ISO"&&(this.weekDow=1,this.weekDoy=4),typeof e.firstDay=="number"&&(this.weekDow=e.firstDay),typeof e.weekNumberCalculation=="function"&&(this.weekNumberFunc=e.weekNumberCalculation),this.weekText=e.weekText!=null?e.weekText:e.locale.options.weekText,this.weekTextLong=(e.weekTextLong!=null?e.weekTextLong:e.locale.options.weekTextLong)||this.weekText,this.cmdFormatter=e.cmdFormatter,this.defaultSeparator=e.defaultSeparator}createMarker(e){let t=this.createMarkerMeta(e);return t===null?null:t.marker}createNowMarker(){return this.canComputeOffset?this.timestampToMarker(new Date().valueOf()):tn(tu(new Date))}createMarkerMeta(e){if(typeof e=="string")return this.parse(e);let t=null;return typeof e=="number"?t=this.timestampToMarker(e):e instanceof Date?(e=e.valueOf(),isNaN(e)||(t=this.timestampToMarker(e))):Array.isArray(e)&&(t=tn(e)),t===null||!xd(t)?null:{marker:t,isTimeUnspecified:!1,forcedTzo:null}}parse(e){let t=tg(e);if(t===null)return null;let{marker:r}=t,i=null;return t.timeZoneOffset!==null&&(this.canComputeOffset?r=this.timestampToMarker(r.valueOf()-t.timeZoneOffset*60*1e3):i=t.timeZoneOffset),{marker:r,isTimeUnspecified:t.isTimeUnspecified,forcedTzo:i}}getYear(e){return this.calendarSystem.getMarkerYear(e)}getMonth(e){return this.calendarSystem.getMarkerMonth(e)}getDay(e){return this.calendarSystem.getMarkerDay(e)}add(e,t){let r=this.calendarSystem.markerToArray(e);return r[0]+=t.years,r[1]+=t.months,r[2]+=t.days,r[6]+=t.milliseconds,this.calendarSystem.arrayToMarker(r)}subtract(e,t){let r=this.calendarSystem.markerToArray(e);return r[0]-=t.years,r[1]-=t.months,r[2]-=t.days,r[6]-=t.milliseconds,this.calendarSystem.arrayToMarker(r)}addYears(e,t){let r=this.calendarSystem.markerToArray(e);return r[0]+=t,this.calendarSystem.arrayToMarker(r)}addMonths(e,t){let r=this.calendarSystem.markerToArray(e);return r[1]+=t,this.calendarSystem.arrayToMarker(r)}diffWholeYears(e,t){let{calendarSystem:r}=this;return er(e)===er(t)&&r.getMarkerDay(e)===r.getMarkerDay(t)&&r.getMarkerMonth(e)===r.getMarkerMonth(t)?r.getMarkerYear(t)-r.getMarkerYear(e):null}diffWholeMonths(e,t){let{calendarSystem:r}=this;return er(e)===er(t)&&r.getMarkerDay(e)===r.getMarkerDay(t)?r.getMarkerMonth(t)-r.getMarkerMonth(e)+(r.getMarkerYear(t)-r.getMarkerYear(e))*12:null}greatestWholeUnit(e,t){let r=this.diffWholeYears(e,t);return r!==null?{unit:"year",value:r}:(r=this.diffWholeMonths(e,t),r!==null?{unit:"month",value:r}:(r=wv(e,t),r!==null?{unit:"week",value:r}:(r=Ha(e,t),r!==null?{unit:"day",value:r}:(r=bv(e,t),bs(r)?{unit:"hour",value:r}:(r=Sv(e,t),bs(r)?{unit:"minute",value:r}:(r=Av(e,t),bs(r)?{unit:"second",value:r}:{unit:"millisecond",value:t.valueOf()-e.valueOf()}))))))}countDurationsBetween(e,t,r){let i;return r.years&&(i=this.diffWholeYears(e,t),i!==null)?i/vv(r):r.months&&(i=this.diffWholeMonths(e,t),i!==null)?i/gv(r):r.days&&(i=Ha(e,t),i!==null)?i/Wr(r):(t.valueOf()-e.valueOf())/Ci(r)}startOf(e,t){return t==="year"?this.startOfYear(e):t==="month"?this.startOfMonth(e):t==="week"?this.startOfWeek(e):t==="day"?Et(e):t==="hour"?Ev(e):t==="minute"?Cv(e):t==="second"?xv(e):null}startOfYear(e){return this.calendarSystem.arrayToMarker([this.calendarSystem.getMarkerYear(e)])}startOfMonth(e){return this.calendarSystem.arrayToMarker([this.calendarSystem.getMarkerYear(e),this.calendarSystem.getMarkerMonth(e)])}startOfWeek(e){return this.calendarSystem.arrayToMarker([this.calendarSystem.getMarkerYear(e),this.calendarSystem.getMarkerMonth(e),e.getUTCDate()-(e.getUTCDay()-this.weekDow+7)%7])}computeWeekNumber(e){return this.weekNumberFunc?this.weekNumberFunc(this.toDate(e)):Tv(e,this.weekDow,this.weekDoy)}format(e,t,r={}){return t.format({marker:e,timeZoneOffset:r.forcedTzo!=null?r.forcedTzo:this.offsetForMarker(e)},this)}formatRange(e,t,r,i={}){return i.isEndExclusive&&(t=rr(t,-1)),r.formatRange({marker:e,timeZoneOffset:i.forcedStartTzo!=null?i.forcedStartTzo:this.offsetForMarker(e)},{marker:t,timeZoneOffset:i.forcedEndTzo!=null?i.forcedEndTzo:this.offsetForMarker(t)},this,i.defaultSeparator)}formatIso(e,t={}){let r=null;return t.omitTimeZoneOffset||(t.forcedTzo!=null?r=t.forcedTzo:r=this.offsetForMarker(e)),_v(e,r,t.omitTime)}timestampToMarker(e){return this.timeZone==="local"?tn(tu(new Date(e))):this.timeZone==="UTC"||!this.namedTimeZoneImpl?new Date(e):tn(this.namedTimeZoneImpl.timestampToArray(e))}offsetForMarker(e){return this.timeZone==="local"?-nu(qn(e)).getTimezoneOffset():this.timeZone==="UTC"?0:this.namedTimeZoneImpl?this.namedTimeZoneImpl.offsetForArray(qn(e)):null}toDate(e,t){return this.timeZone==="local"?nu(qn(e)):this.timeZone==="UTC"?new Date(e.valueOf()):this.namedTimeZoneImpl?new Date(e.valueOf()-this.namedTimeZoneImpl.offsetForArray(qn(e))*1e3*60):new Date(e.valueOf()-(t||0))}}class Di{constructor(e){this.iconOverrideOption&&this.setIconOverride(e[this.iconOverrideOption])}setIconOverride(e){let t,r;if(typeof e=="object"&&e){t=Object.assign({},this.iconClasses);for(r in e)t[r]=this.applyIconOverridePrefix(e[r]);this.iconClasses=t}else e===!1&&(this.iconClasses={})}applyIconOverridePrefix(e){let t=this.iconOverridePrefix;return t&&e.indexOf(t)!==0&&(e=t+e),e}getClass(e){return this.classes[e]||""}getIconClass(e,t){let r;return t&&this.rtlIconClasses?r=this.rtlIconClasses[e]||this.iconClasses[e]:r=this.iconClasses[e],r?`${this.baseIconClass} ${r}`:""}getCustomButtonIconClass(e){let t;return this.iconOverrideCustomButtonOption&&(t=e[this.iconOverrideCustomButtonOption],t)?`${this.baseIconClass} ${this.applyIconOverridePrefix(t)}`:""}}Di.prototype.classes={};Di.prototype.iconClasses={};Di.prototype.baseIconClass="";Di.prototype.iconOverridePrefix="";function cu(n){n();let e=He.debounceRendering,t=[];function r(i){t.push(i)}for(He.debounceRendering=r,Ei(J(rg,{}),document.createElement("div"));t.length;)t.shift()();He.debounceRendering=e}class rg extends ln{render(){return J("div",{})}componentDidMount(){this.setState({})}}function _d(n){let e=Mh(n),t=e.Provider;return e.Provider=function(){let r=!this.getChildContext,i=t.apply(this,arguments);if(r){let o=[];this.shouldComponentUpdate=l=>{this.props.value!==l.value&&o.forEach(d=>{d.context=l.value,d.forceUpdate()})},this.sub=l=>{o.push(l);let d=l.componentWillUnmount;l.componentWillUnmount=()=>{o.splice(o.indexOf(l),1),d&&d.call(l)}}}return i},e}class ig{constructor(e,t,r,i){this.execFunc=e,this.emitter=t,this.scrollTime=r,this.scrollTimeReset=i,this.handleScrollRequest=o=>{this.queuedRequest=Object.assign({},this.queuedRequest||{},o),this.drain()},t.on("_scrollRequest",this.handleScrollRequest),this.fireInitialScroll()}detach(){this.emitter.off("_scrollRequest",this.handleScrollRequest)}update(e){e&&this.scrollTimeReset?this.fireInitialScroll():this.drain()}fireInitialScroll(){this.handleScrollRequest({time:this.scrollTime})}drain(){this.queuedRequest&&this.execFunc(this.queuedRequest)&&(this.queuedRequest=null)}}const Tr=_d({});function ag(n,e,t,r,i,o,l,d,f,g,v,y,A){return{dateEnv:i,options:t,pluginHooks:l,emitter:g,dispatch:d,getCurrentData:f,calendarApi:v,viewSpec:n,viewApi:e,dateProfileGenerator:r,theme:o,isRtl:t.direction==="rtl",addResizeHandler(S){g.on("_resize",S)},removeResizeHandler(S){g.off("_resize",S)},createScrollResponder(S){return new ig(S,g,ht(t.scrollTime),t.scrollTimeReset)},registerInteractiveComponent:y,unregisterInteractiveComponent:A}}class Or extends ln{shouldComponentUpdate(e,t){return this.debug&&console.log(Ns(e,this.props),Ns(t,this.state)),!Ls(this.props,e,this.propEquality)||!Ls(this.state,t,this.stateEquality)}safeSetState(e){Ls(this.state,Object.assign(Object.assign({},this.state),e),this.stateEquality)||this.setState(e)}}Or.addPropsEquality=og;Or.addStateEquality=sg;Or.contextType=Tr;Or.prototype.propEquality={};Or.prototype.stateEquality={};class Ct extends Or{}Ct.contextType=Tr;function og(n){let e=Object.create(this.prototype.propEquality);Object.assign(e,n),this.prototype.propEquality=e}function sg(n){let e=Object.create(this.prototype.stateEquality);Object.assign(e,n),this.prototype.stateEquality=e}function Vn(n,e){typeof n=="function"?n(e):n&&(n.current=e)}class tl extends Ct{constructor(){super(...arguments),this.id=xr(),this.queuedDomNodes=[],this.currentDomNodes=[],this.handleEl=e=>{this.props.elRef&&Vn(this.props.elRef,e)}}render(){const{props:e,context:t}=this,{options:r}=t,{customGenerator:i,defaultGenerator:o,renderProps:l}=e,d=Rd(e);let f=!1,g,v=[],y;if(i!=null){const A=typeof i=="function"?i(l,J):i;if(A===!0)f=!0;else{const S=A&&typeof A=="object";S&&"html"in A?d.dangerouslySetInnerHTML={__html:A.html}:S&&"domNodes"in A?v=Array.prototype.slice.call(A.domNodes):!S&&typeof A!="function"?g=A:y=A}}else f=!Dd(e.generatorName,r);return f&&o&&(g=o(l)),this.queuedDomNodes=v,this.currentGeneratorMeta=y,J(e.elTag,d,g)}componentDidMount(){this.applyQueueudDomNodes(),this.triggerCustomRendering(!0)}componentDidUpdate(){this.applyQueueudDomNodes(),this.triggerCustomRendering(!0)}componentWillUnmount(){this.triggerCustomRendering(!1)}triggerCustomRendering(e){var t;const{props:r,context:i}=this,{handleCustomRendering:o,customRenderingMetaMap:l}=i.options;if(o){const d=(t=this.currentGeneratorMeta)!==null&&t!==void 0?t:l==null?void 0:l[r.generatorName];d&&o(Object.assign(Object.assign({id:this.id,isActive:e,containerEl:this.base,reportNewContainerEl:this.handleEl,generatorMeta:d},r),{elClasses:(r.elClasses||[]).filter(lg)}))}}applyQueueudDomNodes(){const{queuedDomNodes:e,currentDomNodes:t}=this,r=this.base;if(!nr(e,t)){t.forEach(Xh);for(let i of e)r.appendChild(i);this.currentDomNodes=e}}}tl.addPropsEquality({elClasses:nr,elStyle:_n,elAttrs:Zv,renderProps:_n});function Dd(n,e){var t;return Boolean(e.handleCustomRendering&&n&&((t=e.customRenderingMetaMap)===null||t===void 0?void 0:t[n]))}function Rd(n,e){const t=Object.assign(Object.assign({},n.elAttrs),{ref:n.elRef});return(n.elClasses||e)&&(t.className=(n.elClasses||[]).concat(e||[]).concat(t.className||[]).filter(Boolean).join(" ")),n.elStyle&&(t.style=n.elStyle),t}function lg(n){return Boolean(n)}const Md=_d(0);class Un extends ln{constructor(){super(...arguments),this.InnerContent=cg.bind(void 0,this),this.handleRootEl=e=>{this.rootEl=e,this.props.elRef&&Vn(this.props.elRef,e)}}render(){const{props:e}=this,t=ug(e.classNameGenerator,e.renderProps);if(e.children){const r=Rd(e,t),i=e.children(this.InnerContent,e.renderProps,r);return e.elTag?J(e.elTag,r,i):i}else return J(tl,Object.assign(Object.assign({},e),{elRef:this.handleRootEl,elTag:e.elTag||"div",elClasses:(e.elClasses||[]).concat(t),renderId:this.context}))}componentDidMount(){var e,t;(t=(e=this.props).didMount)===null||t===void 0||t.call(e,Object.assign(Object.assign({},this.props.renderProps),{el:this.rootEl||this.base}))}componentWillUnmount(){var e,t;(t=(e=this.props).willUnmount)===null||t===void 0||t.call(e,Object.assign(Object.assign({},this.props.renderProps),{el:this.rootEl||this.base}))}}Un.contextType=Md;function cg(n,e){const t=n.props;return J(tl,Object.assign({renderProps:t.renderProps,generatorName:t.generatorName,customGenerator:t.customGenerator,defaultGenerator:t.defaultGenerator,renderId:n.context},e))}function ug(n,e){const t=typeof n=="function"?n(e):n||[];return typeof t=="string"?[t]:t}class uu extends Ct{render(){let{props:e,context:t}=this,{options:r}=t,i={view:t.viewApi};return J(Un,Object.assign({},e,{elTag:e.elTag||"div",elClasses:[...Id(e.viewSpec),...e.elClasses||[]],renderProps:i,classNameGenerator:r.viewClassNames,generatorName:void 0,didMount:r.viewDidMount,willUnmount:r.viewWillUnmount}),()=>e.children)}}function Id(n){return[`fc-${n.type}-view`,"fc-view"]}function dg(n,e){let t=null,r=null;return n.start&&(t=e.createMarker(n.start)),n.end&&(r=e.createMarker(n.end)),!t&&!r||t&&r&&r<t?null:{start:t,end:r}}function du(n,e){let t=[],{start:r}=e,i,o;for(n.sort(fg),i=0;i<n.length;i+=1)o=n[i],o.start>r&&t.push({start:r,end:o.start}),o.end>r&&(r=o.end);return r<e.end&&t.push({start:r,end:e.end}),t}function fg(n,e){return n.start.valueOf()-e.start.valueOf()}function Qr(n,e){let{start:t,end:r}=n,i=null;return e.start!==null&&(t===null?t=e.start:t=new Date(Math.max(t.valueOf(),e.start.valueOf()))),e.end!=null&&(r===null?r=e.end:r=new Date(Math.min(r.valueOf(),e.end.valueOf()))),(t===null||r===null||t<r)&&(i={start:t,end:r}),i}function pg(n,e){return(n.end===null||e.start===null||n.end>e.start)&&(n.start===null||e.end===null||n.start<e.end)}function tr(n,e){return(n.start===null||e>=n.start)&&(n.end===null||e<n.end)}function hg(n,e){return e.start!=null&&n<e.start?e.start:e.end!=null&&n>=e.end?new Date(e.end.valueOf()-1):n}function kd(n){let e=Math.floor(ei(n.start,n.end))||1,t=Et(n.start),r=Zt(t,e);return{start:t,end:r}}function Pd(n,e=ht(0)){let t=null,r=null;if(n.end){r=Et(n.end);let i=n.end.valueOf()-r.valueOf();i&&i>=Ci(e)&&(r=Zt(r,1))}return n.start&&(t=Et(n.start),r&&r<=t&&(r=Zt(t,1))),{start:t,end:r}}function Sa(n,e,t,r){return r==="year"?ht(t.diffWholeYears(n,e),"year"):r==="month"?ht(t.diffWholeMonths(n,e),"month"):Lv(n,e)}function vg(n,e){switch(e.type){case"CHANGE_DATE":return e.dateMarker;default:return n}}function gg(n,e){let t=n.initialDate;return t!=null?e.createMarker(t):Ri(n.now,e)}function Ri(n,e){return typeof n=="function"&&(n=n()),n==null?e.createNowMarker():e.createMarker(n)}class Nd{constructor(e){this.props=e,this.nowDate=Ri(e.nowInput,e.dateEnv),this.initHiddenDays()}buildPrev(e,t,r){let{dateEnv:i}=this.props,o=i.subtract(i.startOf(t,e.currentRangeUnit),e.dateIncrement);return this.build(o,-1,r)}buildNext(e,t,r){let{dateEnv:i}=this.props,o=i.add(i.startOf(t,e.currentRangeUnit),e.dateIncrement);return this.build(o,1,r)}build(e,t,r=!0){let{props:i}=this,o,l,d,f,g,v;return o=this.buildValidRange(),o=this.trimHiddenDays(o),r&&(e=hg(e,o)),l=this.buildCurrentRangeInfo(e,t),d=/^(year|month|week|day)$/.test(l.unit),f=this.buildRenderRange(this.trimHiddenDays(l.range),l.unit,d),f=this.trimHiddenDays(f),g=f,i.showNonCurrentDates||(g=Qr(g,l.range)),g=this.adjustActiveRange(g),g=Qr(g,o),v=pg(l.range,o),tr(f,e)||(e=f.start),{currentDate:e,validRange:o,currentRange:l.range,currentRangeUnit:l.unit,isRangeAllDay:d,activeRange:g,renderRange:f,slotMinTime:i.slotMinTime,slotMaxTime:i.slotMaxTime,isValid:v,dateIncrement:this.buildDateIncrement(l.duration)}}buildValidRange(){let e=this.props.validRangeInput,t=typeof e=="function"?e.call(this.props.calendarApi,this.nowDate):e;return this.refineRange(t)||{start:null,end:null}}buildCurrentRangeInfo(e,t){let{props:r}=this,i=null,o=null,l=null,d;return r.duration?(i=r.duration,o=r.durationUnit,l=this.buildRangeFromDuration(e,t,i,o)):(d=this.props.dayCount)?(o="day",l=this.buildRangeFromDayCount(e,t,d)):(l=this.buildCustomVisibleRange(e))?o=r.dateEnv.greatestWholeUnit(l.start,l.end).unit:(i=this.getFallbackDuration(),o=Ps(i).unit,l=this.buildRangeFromDuration(e,t,i,o)),{duration:i,unit:o,range:l}}getFallbackDuration(){return ht({day:1})}adjustActiveRange(e){let{dateEnv:t,usesMinMaxTime:r,slotMinTime:i,slotMaxTime:o}=this.props,{start:l,end:d}=e;return r&&(Wr(i)<0&&(l=Et(l),l=t.add(l,i)),Wr(o)>1&&(d=Et(d),d=Zt(d,-1),d=t.add(d,o))),{start:l,end:d}}buildRangeFromDuration(e,t,r,i){let{dateEnv:o,dateAlignment:l}=this.props,d,f,g;if(!l){let{dateIncrement:y}=this.props;y&&Ci(y)<Ci(r)?l=Ps(y).unit:l=i}Wr(r)<=1&&this.isHiddenDay(d)&&(d=this.skipHiddenDays(d,t),d=Et(d));function v(){d=o.startOf(e,l),f=o.add(d,r),g={start:d,end:f}}return v(),this.trimHiddenDays(g)||(e=this.skipHiddenDays(e,t),v()),g}buildRangeFromDayCount(e,t,r){let{dateEnv:i,dateAlignment:o}=this.props,l=0,d=e,f;o&&(d=i.startOf(d,o)),d=Et(d),d=this.skipHiddenDays(d,t),f=d;do f=Zt(f,1),this.isHiddenDay(f)||(l+=1);while(l<r);return{start:d,end:f}}buildCustomVisibleRange(e){let{props:t}=this,r=t.visibleRangeInput,i=typeof r=="function"?r.call(t.calendarApi,t.dateEnv.toDate(e)):r,o=this.refineRange(i);return o&&(o.start==null||o.end==null)?null:o}buildRenderRange(e,t,r){return e}buildDateIncrement(e){let{dateIncrement:t}=this.props,r;return t||((r=this.props.dateAlignment)?ht(1,r):e||ht({days:1}))}refineRange(e){if(e){let t=dg(e,this.props.dateEnv);return t&&(t=Pd(t)),t}return null}initHiddenDays(){let e=this.props.hiddenDays||[],t=[],r=0,i;for(this.props.weekends===!1&&e.push(0,6),i=0;i<7;i+=1)(t[i]=e.indexOf(i)!==-1)||(r+=1);if(!r)throw new Error("invalid hiddenDays");this.isHiddenDayHash=t}trimHiddenDays(e){let{start:t,end:r}=e;return t&&(t=this.skipHiddenDays(t)),r&&(r=this.skipHiddenDays(r,-1,!0)),t==null||r==null||t<r?{start:t,end:r}:null}isHiddenDay(e){return e instanceof Date&&(e=e.getUTCDay()),this.isHiddenDayHash[e]}skipHiddenDays(e,t=1,r=!1){for(;this.isHiddenDayHash[(e.getUTCDay()+(r?t:0)+7)%7];)e=Zt(e,t);return e}}function nl(n,e,t,r){return{instanceId:xr(),defId:n,range:e,forcedStartTzo:t==null?null:t,forcedEndTzo:r==null?null:r}}function mg(n,e,t,r){for(let i=0;i<r.length;i+=1){let o=r[i].parse(n,t);if(o){let{allDay:l}=n;return l==null&&(l=e,l==null&&(l=o.allDayGuess,l==null&&(l=!1))),{allDay:l,duration:o.duration,typeData:o.typeData,typeId:i}}}return null}function Mi(n,e,t){let{dateEnv:r,pluginHooks:i,options:o}=t,{defs:l,instances:d}=n;d=Zr(d,f=>!l[f.defId].recurringDef);for(let f in l){let g=l[f];if(g.recurringDef){let{duration:v}=g.recurringDef;v||(v=g.allDay?o.defaultAllDayEventDuration:o.defaultTimedEventDuration);let y=yg(g,v,e,r,i.recurringTypes);for(let A of y){let S=nl(f,{start:A,end:r.add(A,v)});d[S.instanceId]=S}}}return{defs:l,instances:d}}function yg(n,e,t,r,i){let l=i[n.recurringDef.typeId].expand(n.recurringDef.typeData,{start:r.subtract(t.start,e),end:t.end},r);return n.allDay&&(l=l.map(Et)),l}const Ia={id:String,groupId:String,title:String,url:String,interactive:Boolean},jd={start:te,end:te,date:te,allDay:Boolean},bg=Object.assign(Object.assign(Object.assign({},Ia),jd),{extendedProps:te});function $d(n,e,t,r,i=rl(t),o,l){let{refined:d,extra:f}=Hd(n,t,i),g=Ag(e,t),v=mg(d,g,t.dateEnv,t.pluginHooks.recurringTypes);if(v){let A=js(d,f,e?e.sourceId:"",v.allDay,Boolean(v.duration),t,o);return A.recurringDef={typeId:v.typeId,typeData:v.typeData,duration:v.duration},{def:A,instance:null}}let y=Sg(d,g,t,r);if(y){let A=js(d,f,e?e.sourceId:"",y.allDay,y.hasEnd,t,o),S=nl(A.defId,y.range,y.forcedStartTzo,y.forcedEndTzo);return l&&A.publicId&&l[A.publicId]&&(S.instanceId=l[A.publicId]),{def:A,instance:S}}return null}function Hd(n,e,t=rl(e)){return Xs(n,t)}function rl(n){return Object.assign(Object.assign(Object.assign({},za),bg),n.pluginHooks.eventRefiners)}function js(n,e,t,r,i,o,l){let d={title:n.title||"",groupId:n.groupId||"",publicId:n.id||"",url:n.url||"",recurringDef:null,defId:(l&&n.id?l[n.id]:"")||xr(),sourceId:t,allDay:r,hasEnd:i,interactive:n.interactive,ui:Ua(n,o),extendedProps:Object.assign(Object.assign({},n.extendedProps||{}),e)};for(let f of o.pluginHooks.eventDefMemberAdders)Object.assign(d,f(n));return Object.freeze(d.ui.classNames),Object.freeze(d.extendedProps),d}function Sg(n,e,t,r){let{allDay:i}=n,o,l=null,d=!1,f,g=null,v=n.start!=null?n.start:n.date;if(o=t.dateEnv.createMarkerMeta(v),o)l=o.marker;else if(!r)return null;return n.end!=null&&(f=t.dateEnv.createMarkerMeta(n.end)),i==null&&(e!=null?i=e:i=(!o||o.isTimeUnspecified)&&(!f||f.isTimeUnspecified)),i&&l&&(l=Et(l)),f&&(g=f.marker,i&&(g=Et(g)),l&&g<=l&&(g=null)),g?d=!0:r||(d=t.options.forceEventDuration||!1,g=t.dateEnv.add(l,i?t.options.defaultAllDayEventDuration:t.options.defaultTimedEventDuration)),{allDay:i,hasEnd:d,range:{start:l,end:g},forcedStartTzo:o?o.forcedTzo:null,forcedEndTzo:f?f.forcedTzo:null}}function Ag(n,e){let t=null;return n&&(t=n.defaultAllDay),t==null&&(t=e.options.defaultAllDay),t}function xi(n,e,t,r,i,o){let l=Er(),d=rl(t);for(let f of n){let g=$d(f,e,t,r,d,i,o);g&&$s(g,l)}return l}function $s(n,e=Er()){return e.defs[n.def.defId]=n.def,n.instance&&(e.instances[n.instance.instanceId]=n.instance),e}function Lg(n,e){let t=n.instances[e];if(t){let r=n.defs[t.defId],i=al(n,o=>wg(r,o));return i.defs[r.defId]=r,i.instances[t.instanceId]=t,i}return Er()}function wg(n,e){return Boolean(n.groupId&&n.groupId===e.groupId)}function Er(){return{defs:{},instances:{}}}function il(n,e){return{defs:Object.assign(Object.assign({},n.defs),e.defs),instances:Object.assign(Object.assign({},n.instances),e.instances)}}function al(n,e){let t=Zr(n.defs,e),r=Zr(n.instances,i=>t[i.defId]);return{defs:t,instances:r}}function Eg(n,e){let{defs:t,instances:r}=n,i={},o={};for(let l in t)e.defs[l]||(i[l]=t[l]);for(let l in r)!e.instances[l]&&i[r[l].defId]&&(o[l]=r[l]);return{defs:i,instances:o}}function Cg(n,e){return Array.isArray(n)?xi(n,null,e,!0):typeof n=="object"&&n?xi([n],null,e,!0):n!=null?String(n):null}function fu(n){return Array.isArray(n)?n:typeof n=="string"?n.split(/\s+/):[]}const za={display:String,editable:Boolean,startEditable:Boolean,durationEditable:Boolean,constraint:te,overlap:te,allow:te,className:fu,classNames:fu,color:String,backgroundColor:String,borderColor:String,textColor:String},xg={display:null,startEditable:null,durationEditable:null,constraints:[],overlap:null,allows:[],backgroundColor:"",borderColor:"",textColor:"",classNames:[]};function Ua(n,e){let t=Cg(n.constraint,e);return{display:n.display||null,startEditable:n.startEditable!=null?n.startEditable:n.editable,durationEditable:n.durationEditable!=null?n.durationEditable:n.editable,constraints:t!=null?[t]:[],overlap:n.overlap!=null?n.overlap:null,allows:n.allow!=null?[n.allow]:[],backgroundColor:n.backgroundColor||n.color||"",borderColor:n.borderColor||n.color||"",textColor:n.textColor||"",classNames:(n.className||[]).concat(n.classNames||[])}}function Tg(n){return n.reduce(Og,xg)}function Og(n,e){return{display:e.display!=null?e.display:n.display,startEditable:e.startEditable!=null?e.startEditable:n.startEditable,durationEditable:e.durationEditable!=null?e.durationEditable:n.durationEditable,constraints:n.constraints.concat(e.constraints),overlap:typeof e.overlap=="boolean"?e.overlap:n.overlap,allows:n.allows.concat(e.allows),backgroundColor:e.backgroundColor||n.backgroundColor,borderColor:e.borderColor||n.borderColor,textColor:e.textColor||n.textColor,classNames:n.classNames.concat(e.classNames)}}const _g={id:String,defaultAllDay:Boolean,url:String,format:String,events:te,eventDataTransform:te,success:te,failure:te};function Bd(n,e,t=Fd(e)){let r;if(typeof n=="string"?r={url:n}:typeof n=="function"||Array.isArray(n)?r={events:n}:typeof n=="object"&&n&&(r=n),r){let{refined:i,extra:o}=Xs(r,t),l=Dg(i,e);if(l)return{_raw:n,isFetching:!1,latestFetchId:"",fetchRange:null,defaultAllDay:i.defaultAllDay,eventDataTransform:i.eventDataTransform,success:i.success,failure:i.failure,publicId:i.id||"",sourceId:xr(),sourceDefId:l.sourceDefId,meta:l.meta,ui:Ua(i,e),extendedProps:o}}return null}function Fd(n){return Object.assign(Object.assign(Object.assign({},za),_g),n.pluginHooks.eventSourceRefiners)}function Dg(n,e){let t=e.pluginHooks.eventSourceDefs;for(let r=t.length-1;r>=0;r-=1){let o=t[r].parseMeta(n);if(o)return{sourceDefId:r,meta:o}}return null}function Rg(n,e,t,r,i){switch(e.type){case"RECEIVE_EVENTS":return Mg(n,t[e.sourceId],e.fetchId,e.fetchRange,e.rawEvents,i);case"RESET_RAW_EVENTS":return Ig(n,t[e.sourceId],e.rawEvents,r.activeRange,i);case"ADD_EVENTS":return kg(n,e.eventStore,r?r.activeRange:null,i);case"RESET_EVENTS":return e.eventStore;case"MERGE_EVENTS":return il(n,e.eventStore);case"PREV":case"NEXT":case"CHANGE_DATE":case"CHANGE_VIEW_TYPE":return r?Mi(n,r.activeRange,i):n;case"REMOVE_EVENTS":return Eg(n,e.eventStore);case"REMOVE_EVENT_SOURCE":return zd(n,e.sourceId);case"REMOVE_ALL_EVENT_SOURCES":return al(n,o=>!o.sourceId);case"REMOVE_ALL_EVENTS":return Er();default:return n}}function Mg(n,e,t,r,i,o){if(e&&t===e.latestFetchId){let l=xi(Vd(i,e,o),e,o);return r&&(l=Mi(l,r,o)),il(zd(n,e.sourceId),l)}return n}function Ig(n,e,t,r,i){const{defIdMap:o,instanceIdMap:l}=Ng(n);let d=xi(Vd(t,e,i),e,i,!1,o,l);return Mi(d,r,i)}function Vd(n,e,t){let r=t.options.eventDataTransform,i=e?e.eventDataTransform:null;return i&&(n=pu(n,i)),r&&(n=pu(n,r)),n}function pu(n,e){let t;if(!e)t=n;else{t=[];for(let r of n){let i=e(r);i?t.push(i):i==null&&t.push(r)}}return t}function kg(n,e,t,r){return t&&(e=Mi(e,t,r)),il(n,e)}function Pg(n,e,t){let{defs:r}=n,i=_i(n.instances,o=>{let l=r[o.defId];return l.allDay||l.recurringDef?o:Object.assign(Object.assign({},o),{range:{start:t.createMarker(e.toDate(o.range.start,o.forcedStartTzo)),end:t.createMarker(e.toDate(o.range.end,o.forcedEndTzo))},forcedStartTzo:t.canComputeOffset?null:o.forcedStartTzo,forcedEndTzo:t.canComputeOffset?null:o.forcedEndTzo})});return{defs:r,instances:i}}function zd(n,e){return al(n,t=>t.sourceId!==e)}function Ng(n){const{defs:e,instances:t}=n,r={},i={};for(let o in e){const l=e[o],{publicId:d}=l;d&&(r[d]=o)}for(let o in t){const l=t[o],d=e[l.defId],{publicId:f}=d;f&&(i[f]=o)}return{defIdMap:r,instanceIdMap:i}}class jg{constructor(){this.handlers={},this.thisContext=null}setThisContext(e){this.thisContext=e}setOptions(e){this.options=e}on(e,t){$g(this.handlers,e,t)}off(e,t){Hg(this.handlers,e,t)}trigger(e,...t){let r=this.handlers[e]||[],i=this.options&&this.options[e],o=[].concat(i||[],r);for(let l of o)l.apply(this.thisContext,t)}hasHandlers(e){return Boolean(this.handlers[e]&&this.handlers[e].length||this.options&&this.options[e])}}function $g(n,e,t){(n[e]||(n[e]=[])).push(t)}function Hg(n,e,t){t?n[e]&&(n[e]=n[e].filter(r=>r!==t)):delete n[e]}const Bg={startTime:"09:00",endTime:"17:00",daysOfWeek:[1,2,3,4,5],display:"inverse-background",classNames:"fc-non-business",groupId:"_businessHours"};function Fg(n,e){return xi(Vg(n),null,e)}function Vg(n){let e;return n===!0?e=[{}]:Array.isArray(n)?e=n.filter(t=>t.daysOfWeek):typeof n=="object"&&n?e=[n]:e=[],e=e.map(t=>Object.assign(Object.assign({},Bg),t)),e}function zg(n,e,t){t.emitter.trigger("select",Object.assign(Object.assign({},Wg(n,t)),{jsEvent:e?e.origEvent:null,view:t.viewApi||t.calendarApi.view}))}function Ug(n,e){e.emitter.trigger("unselect",{jsEvent:n?n.origEvent:null,view:e.viewApi||e.calendarApi.view})}function Wg(n,e){let t={};for(let r of e.pluginHooks.dateSpanTransforms)Object.assign(t,r(n,e));return Object.assign(t,am(n,e.dateEnv)),t}function hu(n,e,t){let{dateEnv:r,options:i}=t,o=e;return n?(o=Et(o),o=r.add(o,i.defaultAllDayEventDuration)):o=r.add(o,i.defaultTimedEventDuration),o}function Gg(n,e,t,r){let i=Wd(n.defs,e),o=Er();for(let l in n.defs){let d=n.defs[l];o.defs[l]=Yg(d,i[l],t,r)}for(let l in n.instances){let d=n.instances[l],f=o.defs[d.defId];o.instances[l]=Zg(d,f,i[d.defId],t,r)}return o}function Yg(n,e,t,r){let i=t.standardProps||{};i.hasEnd==null&&e.durationEditable&&(t.startDelta||t.endDelta)&&(i.hasEnd=!0);let o=Object.assign(Object.assign(Object.assign({},n),i),{ui:Object.assign(Object.assign({},n.ui),i.ui)});t.extendedProps&&(o.extendedProps=Object.assign(Object.assign({},o.extendedProps),t.extendedProps));for(let l of r.pluginHooks.eventDefMutationAppliers)l(o,t,r);return!o.hasEnd&&r.options.forceEventDuration&&(o.hasEnd=!0),o}function Zg(n,e,t,r,i){let{dateEnv:o}=i,l=r.standardProps&&r.standardProps.allDay===!0,d=r.standardProps&&r.standardProps.hasEnd===!1,f=Object.assign({},n);return l&&(f.range=kd(f.range)),r.datesDelta&&t.startEditable&&(f.range={start:o.add(f.range.start,r.datesDelta),end:o.add(f.range.end,r.datesDelta)}),r.startDelta&&t.durationEditable&&(f.range={start:o.add(f.range.start,r.startDelta),end:f.range.end}),r.endDelta&&t.durationEditable&&(f.range={start:f.range.start,end:o.add(f.range.end,r.endDelta)}),d&&(f.range={start:f.range.start,end:hu(e.allDay,f.range.start,i)}),e.allDay&&(f.range={start:Et(f.range.start),end:Et(f.range.end)}),f.range.end<f.range.start&&(f.range.end=hu(e.allDay,f.range.start,i)),f}class zr{constructor(e,t){this.context=e,this.internalEventSource=t}remove(){this.context.dispatch({type:"REMOVE_EVENT_SOURCE",sourceId:this.internalEventSource.sourceId})}refetch(){this.context.dispatch({type:"FETCH_EVENT_SOURCES",sourceIds:[this.internalEventSource.sourceId],isRefetch:!0})}get id(){return this.internalEventSource.publicId}get url(){return this.internalEventSource.meta.url}get format(){return this.internalEventSource.meta.format}}class pn{constructor(e,t,r){this._context=e,this._def=t,this._instance=r||null}setProp(e,t){if(e in jd)console.warn("Could not set date-related prop 'name'. Use one of the date-related methods instead.");else if(e==="id")t=Ia[e](t),this.mutate({standardProps:{publicId:t}});else if(e in Ia)t=Ia[e](t),this.mutate({standardProps:{[e]:t}});else if(e in za){let r=za[e](t);e==="color"?r={backgroundColor:t,borderColor:t}:e==="editable"?r={startEditable:t,durationEditable:t}:r={[e]:t},this.mutate({standardProps:{ui:r}})}else console.warn(`Could not set prop '${e}'. Use setExtendedProp instead.`)}setExtendedProp(e,t){this.mutate({extendedProps:{[e]:t}})}setStart(e,t={}){let{dateEnv:r}=this._context,i=r.createMarker(e);if(i&&this._instance){let o=this._instance.range,l=Sa(o.start,i,r,t.granularity);t.maintainDuration?this.mutate({datesDelta:l}):this.mutate({startDelta:l})}}setEnd(e,t={}){let{dateEnv:r}=this._context,i;if(!(e!=null&&(i=r.createMarker(e),!i))&&this._instance)if(i){let o=Sa(this._instance.range.end,i,r,t.granularity);this.mutate({endDelta:o})}else this.mutate({standardProps:{hasEnd:!1}})}setDates(e,t,r={}){let{dateEnv:i}=this._context,o={allDay:r.allDay},l=i.createMarker(e),d;if(!!l&&!(t!=null&&(d=i.createMarker(t),!d))&&this._instance){let f=this._instance.range;r.allDay===!0&&(f=kd(f));let g=Sa(f.start,l,i,r.granularity);if(d){let v=Sa(f.end,d,i,r.granularity);pv(g,v)?this.mutate({datesDelta:g,standardProps:o}):this.mutate({startDelta:g,endDelta:v,standardProps:o})}else o.hasEnd=!1,this.mutate({datesDelta:g,standardProps:o})}}moveStart(e){let t=ht(e);t&&this.mutate({startDelta:t})}moveEnd(e){let t=ht(e);t&&this.mutate({endDelta:t})}moveDates(e){let t=ht(e);t&&this.mutate({datesDelta:t})}setAllDay(e,t={}){let r={allDay:e},{maintainDuration:i}=t;i==null&&(i=this._context.options.allDayMaintainDuration),this._def.allDay!==e&&(r.hasEnd=i),this.mutate({standardProps:r})}formatRange(e){let{dateEnv:t}=this._context,r=this._instance,i=Ut(e);return this._def.hasEnd?t.formatRange(r.range.start,r.range.end,i,{forcedStartTzo:r.forcedStartTzo,forcedEndTzo:r.forcedEndTzo}):t.format(r.range.start,i,{forcedTzo:r.forcedStartTzo})}mutate(e){let t=this._instance;if(t){let r=this._def,i=this._context,{eventStore:o}=i.getCurrentData(),l=Lg(o,t.instanceId);l=Gg(l,{"":{display:"",startEditable:!0,durationEditable:!0,constraints:[],overlap:null,allows:[],backgroundColor:"",borderColor:"",textColor:"",classNames:[]}},e,i);let f=new pn(i,r,t);this._def=l.defs[r.defId],this._instance=l.instances[t.instanceId],i.dispatch({type:"MERGE_EVENTS",eventStore:l}),i.emitter.trigger("eventChange",{oldEvent:f,event:this,relatedEvents:ol(l,i,t),revert(){i.dispatch({type:"RESET_EVENTS",eventStore:o})}})}}remove(){let e=this._context,t=Ud(this);e.dispatch({type:"REMOVE_EVENTS",eventStore:t}),e.emitter.trigger("eventRemove",{event:this,relatedEvents:[],revert(){e.dispatch({type:"MERGE_EVENTS",eventStore:t})}})}get source(){let{sourceId:e}=this._def;return e?new zr(this._context,this._context.getCurrentData().eventSources[e]):null}get start(){return this._instance?this._context.dateEnv.toDate(this._instance.range.start):null}get end(){return this._instance&&this._def.hasEnd?this._context.dateEnv.toDate(this._instance.range.end):null}get startStr(){let e=this._instance;return e?this._context.dateEnv.formatIso(e.range.start,{omitTime:this._def.allDay,forcedTzo:e.forcedStartTzo}):""}get endStr(){let e=this._instance;return e&&this._def.hasEnd?this._context.dateEnv.formatIso(e.range.end,{omitTime:this._def.allDay,forcedTzo:e.forcedEndTzo}):""}get id(){return this._def.publicId}get groupId(){return this._def.groupId}get allDay(){return this._def.allDay}get title(){return this._def.title}get url(){return this._def.url}get display(){return this._def.ui.display||"auto"}get startEditable(){return this._def.ui.startEditable}get durationEditable(){return this._def.ui.durationEditable}get constraint(){return this._def.ui.constraints[0]||null}get overlap(){return this._def.ui.overlap}get allow(){return this._def.ui.allows[0]||null}get backgroundColor(){return this._def.ui.backgroundColor}get borderColor(){return this._def.ui.borderColor}get textColor(){return this._def.ui.textColor}get classNames(){return this._def.ui.classNames}get extendedProps(){return this._def.extendedProps}toPlainObject(e={}){let t=this._def,{ui:r}=t,{startStr:i,endStr:o}=this,l={allDay:t.allDay};return t.title&&(l.title=t.title),i&&(l.start=i),o&&(l.end=o),t.publicId&&(l.id=t.publicId),t.groupId&&(l.groupId=t.groupId),t.url&&(l.url=t.url),r.display&&r.display!=="auto"&&(l.display=r.display),e.collapseColor&&r.backgroundColor&&r.backgroundColor===r.borderColor?l.color=r.backgroundColor:(r.backgroundColor&&(l.backgroundColor=r.backgroundColor),r.borderColor&&(l.borderColor=r.borderColor)),r.textColor&&(l.textColor=r.textColor),r.classNames.length&&(l.classNames=r.classNames),Object.keys(t.extendedProps).length&&(e.collapseExtendedProps?Object.assign(l,t.extendedProps):l.extendedProps=t.extendedProps),l}toJSON(){return this.toPlainObject()}}function Ud(n){let e=n._def,t=n._instance;return{defs:{[e.defId]:e},instances:t?{[t.instanceId]:t}:{}}}function ol(n,e,t){let{defs:r,instances:i}=n,o=[],l=t?t.instanceId:"";for(let d in i){let f=i[d],g=r[f.defId];f.instanceId!==l&&o.push(new pn(e,g,f))}return o}function vu(n,e,t,r){let i={},o={},l={},d=[],f=[],g=Wd(n.defs,e);for(let v in n.defs){let y=n.defs[v];g[y.defId].display==="inverse-background"&&(y.groupId?(i[y.groupId]=[],l[y.groupId]||(l[y.groupId]=y)):o[v]=[])}for(let v in n.instances){let y=n.instances[v],A=n.defs[y.defId],S=g[A.defId],C=y.range,_=!A.allDay&&r?Pd(C,r):C,T=Qr(_,t);T&&(S.display==="inverse-background"?A.groupId?i[A.groupId].push(T):o[y.defId].push(T):S.display!=="none"&&(S.display==="background"?d:f).push({def:A,ui:S,instance:y,range:T,isStart:_.start&&_.start.valueOf()===T.start.valueOf(),isEnd:_.end&&_.end.valueOf()===T.end.valueOf()}))}for(let v in i){let y=i[v],A=du(y,t);for(let S of A){let C=l[v],_=g[C.defId];d.push({def:C,ui:_,instance:null,range:S,isStart:!1,isEnd:!1})}}for(let v in o){let y=o[v],A=du(y,t);for(let S of A)d.push({def:n.defs[v],ui:g[v],instance:null,range:S,isStart:!1,isEnd:!1})}return{bg:d,fg:f}}function gu(n,e){n.fcSeg=e}function Hs(n){return n.fcSeg||n.parentNode.fcSeg||null}function Wd(n,e){return _i(n,t=>Gd(t,e))}function Gd(n,e){let t=[];return e[""]&&t.push(e[""]),e[n.defId]&&t.push(e[n.defId]),t.push(n.ui),Tg(t)}function Qg(n,e){let t=n.map(Kg);return t.sort((r,i)=>sv(r,i,e)),t.map(r=>r._seg)}function Kg(n){let{eventRange:e}=n,t=e.def,r=e.instance?e.instance.range:e.range,i=r.start?r.start.valueOf():0,o=r.end?r.end.valueOf():0;return Object.assign(Object.assign(Object.assign({},t.extendedProps),t),{id:t.publicId,start:i,end:o,duration:o-i,allDay:Number(t.allDay),_seg:n})}function Jg(n,e){let{pluginHooks:t}=e,r=t.isDraggableTransformers,{def:i,ui:o}=n.eventRange,l=o.startEditable;for(let d of r)l=d(l,i,o,e);return l}function Xg(n,e){return n.isStart&&n.eventRange.ui.durationEditable&&e.options.eventResizableFromStart}function qg(n,e){return n.isEnd&&n.eventRange.ui.durationEditable}function Yd(n,e,t,r,i,o,l){let{dateEnv:d,options:f}=t,{displayEventTime:g,displayEventEnd:v}=f,y=n.eventRange.def,A=n.eventRange.instance;g==null&&(g=r!==!1),v==null&&(v=i!==!1);let S=A.range.start,C=A.range.end,_=o||n.start||n.eventRange.range.start,T=l||n.end||n.eventRange.range.end,D=Et(S).valueOf()===Et(_).valueOf(),P=Et(rr(C,-1)).valueOf()===Et(rr(T,-1)).valueOf();return g&&!y.allDay&&(D||P)?(_=D?S:_,T=P?C:T,v&&y.hasEnd?d.formatRange(_,T,e,{forcedStartTzo:o?null:A.forcedStartTzo,forcedEndTzo:l?null:A.forcedEndTzo}):d.format(_,e,{forcedTzo:o?null:A.forcedStartTzo})):""}function yi(n,e,t){let r=n.eventRange.range;return{isPast:r.end<(t||e.start),isFuture:r.start>=(t||e.end),isToday:e&&tr(e,r.start)}}function em(n){let e=["fc-event"];return n.isMirror&&e.push("fc-event-mirror"),n.isDraggable&&e.push("fc-event-draggable"),(n.isStartResizable||n.isEndResizable)&&e.push("fc-event-resizable"),n.isDragging&&e.push("fc-event-dragging"),n.isResizing&&e.push("fc-event-resizing"),n.isSelected&&e.push("fc-event-selected"),n.isStart&&e.push("fc-event-start"),n.isEnd&&e.push("fc-event-end"),n.isPast&&e.push("fc-event-past"),n.isToday&&e.push("fc-event-today"),n.isFuture&&e.push("fc-event-future"),e}function tm(n){return n.instance?n.instance.instanceId:`${n.def.defId}:${n.range.start.toISOString()}`}function Zd(n,e){let{def:t,instance:r}=n.eventRange,{url:i}=t;if(i)return{href:i};let{emitter:o,options:l}=e,{eventInteractive:d}=l;return d==null&&(d=t.interactive,d==null&&(d=Boolean(o.hasHandlers("eventClick")))),d?Cd(f=>{o.trigger("eventClick",{el:f.target,event:new pn(e,t,r),jsEvent:f,view:e.viewApi})}):{}}const nm={start:te,end:te,allDay:Boolean};function rm(n,e,t){let r=im(n,e),{range:i}=r;if(!i.start)return null;if(!i.end){if(t==null)return null;i.end=e.add(i.start,t)}return r}function im(n,e){let{refined:t,extra:r}=Xs(n,nm),i=t.start?e.createMarkerMeta(t.start):null,o=t.end?e.createMarkerMeta(t.end):null,{allDay:l}=t;return l==null&&(l=i&&i.isTimeUnspecified&&(!o||o.isTimeUnspecified)),Object.assign({range:{start:i?i.marker:null,end:o?o.marker:null},allDay:l},r)}function am(n,e){return Object.assign(Object.assign({},Kd(n.range,e,n.allDay)),{allDay:n.allDay})}function Qd(n,e,t){return Object.assign(Object.assign({},Kd(n,e,t)),{timeZone:e.timeZone})}function Kd(n,e,t){return{start:e.toDate(n.start),end:e.toDate(n.end),startStr:e.formatIso(n.start,{omitTime:t}),endStr:e.formatIso(n.end,{omitTime:t})}}function om(n,e,t){let r=Hd({editable:!1},t),i=js(r.refined,r.extra,"",n.allDay,!0,t);return{def:i,ui:Gd(i,e),instance:nl(i.defId,n.range),range:n.range,isStart:!0,isEnd:!0}}function sm(n,e,t){let r=!1,i=function(d){r||(r=!0,e(d))},o=function(d){r||(r=!0,t(d))},l=n(i,o);l&&typeof l.then=="function"&&l.then(i,o)}class mu extends Error{constructor(e,t){super(e),this.response=t}}function lm(n,e,t){n=n.toUpperCase();const r={method:n};return n==="GET"?e+=(e.indexOf("?")===-1?"?":"&")+new URLSearchParams(t):(r.body=new URLSearchParams(t),r.headers={"Content-Type":"application/x-www-form-urlencoded"}),fetch(e,r).then(i=>{if(i.ok)return i.json().then(o=>[o,i],()=>{throw new mu("Failure parsing JSON",i)});throw new mu("Request failed",i)})}let ws;function Jd(){return ws==null&&(ws=cm()),ws}function cm(){if(typeof document=="undefined")return!0;let n=document.createElement("div");n.style.position="absolute",n.style.top="0px",n.style.left="0px",n.innerHTML="<table><tr><td><div></div></td></tr></table>",n.querySelector("table").style.height="100px",n.querySelector("div").style.height="100%",document.body.appendChild(n);let t=n.querySelector("div").offsetHeight>0;return document.body.removeChild(n),t}class um extends Ct{constructor(){super(...arguments),this.state={forPrint:!1},this.handleBeforePrint=()=>{this.setState({forPrint:!0})},this.handleAfterPrint=()=>{this.setState({forPrint:!1})}}render(){let{props:e}=this,{options:t}=e,{forPrint:r}=this.state,i=r||t.height==="auto"||t.contentHeight==="auto",o=!i&&t.height!=null?t.height:"",l=["fc",r?"fc-media-print":"fc-media-screen",`fc-direction-${t.direction}`,e.theme.getClass("root")];return Jd()||l.push("fc-liquid-hack"),e.children(l,o,i,r)}componentDidMount(){let{emitter:e}=this.props;e.on("_beforeprint",this.handleBeforePrint),e.on("_afterprint",this.handleAfterPrint)}componentWillUnmount(){let{emitter:e}=this.props;e.off("_beforeprint",this.handleBeforePrint),e.off("_afterprint",this.handleAfterPrint)}}class Xd{constructor(e){this.component=e.component,this.isHitComboAllowed=e.isHitComboAllowed||null}destroy(){}}function dm(n,e){return{component:n,el:e.el,useEventCenter:e.useEventCenter!=null?e.useEventCenter:!0,isHitComboAllowed:e.isHitComboAllowed||null}}const yu={};class fm{getCurrentData(){return this.currentDataManager.getCurrentData()}dispatch(e){this.currentDataManager.dispatch(e)}get view(){return this.getCurrentData().viewApi}batchRendering(e){e()}updateSize(){this.trigger("_resize",!0)}setOption(e,t){this.dispatch({type:"SET_OPTION",optionName:e,rawOptionValue:t})}getOption(e){return this.currentDataManager.currentCalendarOptionsInput[e]}getAvailableLocaleCodes(){return Object.keys(this.getCurrentData().availableRawLocales)}on(e,t){let{currentDataManager:r}=this;r.currentCalendarOptionsRefiners[e]?r.emitter.on(e,t):console.warn(`Unknown listener name '${e}'`)}off(e,t){this.currentDataManager.emitter.off(e,t)}trigger(e,...t){this.currentDataManager.emitter.trigger(e,...t)}changeView(e,t){this.batchRendering(()=>{if(this.unselect(),t)if(t.start&&t.end)this.dispatch({type:"CHANGE_VIEW_TYPE",viewType:e}),this.dispatch({type:"SET_OPTION",optionName:"visibleRange",rawOptionValue:t});else{let{dateEnv:r}=this.getCurrentData();this.dispatch({type:"CHANGE_VIEW_TYPE",viewType:e,dateMarker:r.createMarker(t)})}else this.dispatch({type:"CHANGE_VIEW_TYPE",viewType:e})})}zoomTo(e,t){let r=this.getCurrentData(),i;t=t||"day",i=r.viewSpecs[t]||this.getUnitViewSpec(t),this.unselect(),i?this.dispatch({type:"CHANGE_VIEW_TYPE",viewType:i.type,dateMarker:e}):this.dispatch({type:"CHANGE_DATE",dateMarker:e})}getUnitViewSpec(e){let{viewSpecs:t,toolbarConfig:r}=this.getCurrentData(),i=[].concat(r.header?r.header.viewsWithButtons:[],r.footer?r.footer.viewsWithButtons:[]),o,l;for(let d in t)i.push(d);for(o=0;o<i.length;o+=1)if(l=t[i[o]],l&&l.singleUnit===e)return l;return null}prev(){this.unselect(),this.dispatch({type:"PREV"})}next(){this.unselect(),this.dispatch({type:"NEXT"})}prevYear(){let e=this.getCurrentData();this.unselect(),this.dispatch({type:"CHANGE_DATE",dateMarker:e.dateEnv.addYears(e.currentDate,-1)})}nextYear(){let e=this.getCurrentData();this.unselect(),this.dispatch({type:"CHANGE_DATE",dateMarker:e.dateEnv.addYears(e.currentDate,1)})}today(){let e=this.getCurrentData();this.unselect(),this.dispatch({type:"CHANGE_DATE",dateMarker:Ri(e.calendarOptions.now,e.dateEnv)})}gotoDate(e){let t=this.getCurrentData();this.unselect(),this.dispatch({type:"CHANGE_DATE",dateMarker:t.dateEnv.createMarker(e)})}incrementDate(e){let t=this.getCurrentData(),r=ht(e);r&&(this.unselect(),this.dispatch({type:"CHANGE_DATE",dateMarker:t.dateEnv.add(t.currentDate,r)}))}getDate(){let e=this.getCurrentData();return e.dateEnv.toDate(e.currentDate)}formatDate(e,t){let{dateEnv:r}=this.getCurrentData();return r.format(r.createMarker(e),Ut(t))}formatRange(e,t,r){let{dateEnv:i}=this.getCurrentData();return i.formatRange(i.createMarker(e),i.createMarker(t),Ut(r),r)}formatIso(e,t){let{dateEnv:r}=this.getCurrentData();return r.formatIso(r.createMarker(e),{omitTime:t})}select(e,t){let r;t==null?e.start!=null?r=e:r={start:e,end:null}:r={start:e,end:t};let i=this.getCurrentData(),o=rm(r,i.dateEnv,ht({days:1}));o&&(this.dispatch({type:"SELECT_DATES",selection:o}),zg(o,null,i))}unselect(e){let t=this.getCurrentData();t.dateSelection&&(this.dispatch({type:"UNSELECT_DATES"}),Ug(e,t))}addEvent(e,t){if(e instanceof pn){let l=e._def,d=e._instance;return this.getCurrentData().eventStore.defs[l.defId]||(this.dispatch({type:"ADD_EVENTS",eventStore:$s({def:l,instance:d})}),this.triggerEventAdd(e)),e}let r=this.getCurrentData(),i;if(t instanceof zr)i=t.internalEventSource;else if(typeof t=="boolean")t&&([i]=el(r.eventSources));else if(t!=null){let l=this.getEventSourceById(t);if(!l)return console.warn(`Could not find an event source with ID "${t}"`),null;i=l.internalEventSource}let o=$d(e,i,r,!1);if(o){let l=new pn(r,o.def,o.def.recurringDef?null:o.instance);return this.dispatch({type:"ADD_EVENTS",eventStore:$s(o)}),this.triggerEventAdd(l),l}return null}triggerEventAdd(e){let{emitter:t}=this.getCurrentData();t.trigger("eventAdd",{event:e,relatedEvents:[],revert:()=>{this.dispatch({type:"REMOVE_EVENTS",eventStore:Ud(e)})}})}getEventById(e){let t=this.getCurrentData(),{defs:r,instances:i}=t.eventStore;e=String(e);for(let o in r){let l=r[o];if(l.publicId===e){if(l.recurringDef)return new pn(t,l,null);for(let d in i){let f=i[d];if(f.defId===l.defId)return new pn(t,l,f)}}}return null}getEvents(){let e=this.getCurrentData();return ol(e.eventStore,e)}removeAllEvents(){this.dispatch({type:"REMOVE_ALL_EVENTS"})}getEventSources(){let e=this.getCurrentData(),t=e.eventSources,r=[];for(let i in t)r.push(new zr(e,t[i]));return r}getEventSourceById(e){let t=this.getCurrentData(),r=t.eventSources;e=String(e);for(let i in r)if(r[i].publicId===e)return new zr(t,r[i]);return null}addEventSource(e){let t=this.getCurrentData();if(e instanceof zr)return t.eventSources[e.internalEventSource.sourceId]||this.dispatch({type:"ADD_EVENT_SOURCES",sources:[e.internalEventSource]}),e;let r=Bd(e,t);return r?(this.dispatch({type:"ADD_EVENT_SOURCES",sources:[r]}),new zr(t,r)):null}removeAllEventSources(){this.dispatch({type:"REMOVE_ALL_EVENT_SOURCES"})}refetchEvents(){this.dispatch({type:"FETCH_EVENT_SOURCES",isRefetch:!0})}scrollToTime(e){let t=ht(e);t&&this.trigger("_scrollRequest",{time:t})}}function pm(n,e){let t={left:Math.max(n.left,e.left),right:Math.min(n.right,e.right),top:Math.max(n.top,e.top),bottom:Math.min(n.bottom,e.bottom)};return t.left<t.right&&t.top<t.bottom?t:!1}function qd(n,e,t,r){return{dow:n.getUTCDay(),isDisabled:Boolean(r&&!tr(r.activeRange,n)),isOther:Boolean(r&&!tr(r.currentRange,n)),isToday:Boolean(e&&tr(e,n)),isPast:Boolean(t?n<t:e?n<e.start:!1),isFuture:Boolean(t?n>t:e?n>=e.end:!1)}}function sl(n,e){let t=["fc-day",`fc-day-${mv[n.dow]}`];return n.isDisabled?t.push("fc-day-disabled"):(n.isToday&&(t.push("fc-day-today"),t.push(e.getClass("today"))),n.isPast&&t.push("fc-day-past"),n.isFuture&&t.push("fc-day-future"),n.isOther&&t.push("fc-day-other")),t}const hm=Ut({year:"numeric",month:"long",day:"numeric"}),vm=Ut({week:"long"});function Bs(n,e,t="day",r=!0){const{dateEnv:i,options:o,calendarApi:l}=n;let d=i.format(e,t==="week"?vm:hm);if(o.navLinks){let f=i.toDate(e);const g=v=>{let y=t==="day"?o.navLinkDayClick:t==="week"?o.navLinkWeekClick:null;typeof y=="function"?y.call(l,i.toDate(e),v):(typeof y=="string"&&(t=y),l.zoomTo(e,t))};return Object.assign({title:gi(o.navLinkHint,[d,f],d),"data-navlink":""},r?Ed(g):{onClick:g})}return{"aria-label":d}}let Es;function gm(){return Es||(Es=mm()),Es}function mm(){let n=document.createElement("div");n.style.overflow="scroll",n.style.position="absolute",n.style.top="-9999px",n.style.left="-9999px",document.body.appendChild(n);let e=ym(n);return document.body.removeChild(n),e}function ym(n){return{x:n.offsetHeight-n.clientHeight,y:n.offsetWidth-n.clientWidth}}function bm(n){let e=Sm(n),t=n.getBoundingClientRect();for(let r of e){let i=pm(t,r.getBoundingClientRect());if(i)t=i;else return null}return t}function Sm(n){let e=[];for(;n instanceof HTMLElement;){let t=window.getComputedStyle(n);if(t.position==="fixed")break;/(auto|scroll)/.test(t.overflow+t.overflowY+t.overflowX)&&e.push(n),n=n.parentNode}return e}class Wa{constructor(e,t,r,i){this.els=t;let o=this.originClientRect=e.getBoundingClientRect();r&&this.buildElHorizontals(o.left),i&&this.buildElVerticals(o.top)}buildElHorizontals(e){let t=[],r=[];for(let i of this.els){let o=i.getBoundingClientRect();t.push(o.left-e),r.push(o.right-e)}this.lefts=t,this.rights=r}buildElVerticals(e){let t=[],r=[];for(let i of this.els){let o=i.getBoundingClientRect();t.push(o.top-e),r.push(o.bottom-e)}this.tops=t,this.bottoms=r}leftToIndex(e){let{lefts:t,rights:r}=this,i=t.length,o;for(o=0;o<i;o+=1)if(e>=t[o]&&e<r[o])return o}topToIndex(e){let{tops:t,bottoms:r}=this,i=t.length,o;for(o=0;o<i;o+=1)if(e>=t[o]&&e<r[o])return o}getWidth(e){return this.rights[e]-this.lefts[e]}getHeight(e){return this.bottoms[e]-this.tops[e]}similarTo(e){return Aa(this.tops||[],e.tops||[])&&Aa(this.bottoms||[],e.bottoms||[])&&Aa(this.lefts||[],e.lefts||[])&&Aa(this.rights||[],e.rights||[])}}function Aa(n,e){const t=n.length;if(t!==e.length)return!1;for(let r=0;r<t;r++)if(Math.round(n[r])!==Math.round(e[r]))return!1;return!0}class _r extends Ct{constructor(){super(...arguments),this.uid=xr()}prepareHits(){}queryHit(e,t,r,i){return null}isValidSegDownEl(e){return!this.props.eventDrag&&!this.props.eventResize&&!Bn(e,".fc-event-mirror")}isValidDateDownEl(e){return!Bn(e,".fc-event:not(.fc-bg-event)")&&!Bn(e,".fc-more-link")&&!Bn(e,"a[data-navlink]")&&!Bn(e,".fc-popover")}}class Am{constructor(){this.strictOrder=!1,this.allowReslicing=!1,this.maxCoord=-1,this.maxStackCnt=-1,this.levelCoords=[],this.entriesByLevel=[],this.stackCnts={}}addSegs(e){let t=[];for(let r of e)this.insertEntry(r,t);return t}insertEntry(e,t){let r=this.findInsertion(e);return this.isInsertionValid(r,e)?(this.insertEntryAt(e,r),1):this.handleInvalidInsertion(r,e,t)}isInsertionValid(e,t){return(this.maxCoord===-1||e.levelCoord+t.thickness<=this.maxCoord)&&(this.maxStackCnt===-1||e.stackCnt<this.maxStackCnt)}handleInvalidInsertion(e,t,r){return this.allowReslicing&&e.touchingEntry?this.splitEntry(t,e.touchingEntry,r):(r.push(t),0)}splitEntry(e,t,r){let i=0,o=[],l=e.span,d=t.span;return l.start<d.start&&(i+=this.insertEntry({index:e.index,thickness:e.thickness,span:{start:l.start,end:d.start}},o)),l.end>d.end&&(i+=this.insertEntry({index:e.index,thickness:e.thickness,span:{start:d.end,end:l.end}},o)),i?(r.push({index:e.index,thickness:e.thickness,span:ef(d,l)},...o),i):(r.push(e),0)}insertEntryAt(e,t){let{entriesByLevel:r,levelCoords:i}=this;t.lateral===-1?(Cs(i,t.level,t.levelCoord),Cs(r,t.level,[e])):Cs(r[t.level],t.lateral,e),this.stackCnts[bi(e)]=t.stackCnt}findInsertion(e){let{levelCoords:t,entriesByLevel:r,strictOrder:i,stackCnts:o}=this,l=t.length,d=0,f=-1,g=-1,v=null,y=0;for(let C=0;C<l;C+=1){let _=t[C];if(!i&&_>=d+e.thickness)break;let T=r[C],D,P=Su(T,e.span.start,bu),V=P[0]+P[1];for(;(D=T[V])&&D.span.start<e.span.end;){let x=_+D.thickness;x>d&&(d=x,v=D,f=C,g=V),x===d&&(y=Math.max(y,o[bi(D)]+1)),V+=1}}let A=0;if(v)for(A=f+1;A<l&&t[A]<d;)A+=1;let S=-1;return A<l&&t[A]===d&&(S=Su(r[A],e.span.end,bu)[0]),{touchingLevel:f,touchingLateral:g,touchingEntry:v,stackCnt:y,levelCoord:d,level:A,lateral:S}}toRects(){let{entriesByLevel:e,levelCoords:t}=this,r=e.length,i=[];for(let o=0;o<r;o+=1){let l=e[o],d=t[o];for(let f of l)i.push(Object.assign(Object.assign({},f),{levelCoord:d}))}return i}}function bu(n){return n.span.end}function bi(n){return n.index+":"+n.span.start}function ef(n,e){let t=Math.max(n.start,e.start),r=Math.min(n.end,e.end);return t<r?{start:t,end:r}:null}function Cs(n,e,t){n.splice(e,0,t)}function Su(n,e,t){let r=0,i=n.length;if(!i||e<t(n[r]))return[0,0];if(e>t(n[i-1]))return[i,0];for(;r<i;){let o=Math.floor(r+(i-r)/2),l=t(n[o]);if(e<l)i=o;else if(e>l)r=o+1;else return[o,1]}return[r,0]}function Lm(n,e){return!n||e>10?Ut({weekday:"short"}):e>1?Ut({weekday:"short",month:"numeric",day:"numeric",omitCommas:!0}):Ut({weekday:"long"})}const tf="fc-col-header-cell";function nf(n){return n.text}class wm extends Ct{render(){let{dateEnv:e,options:t,theme:r,viewApi:i}=this.context,{props:o}=this,{date:l,dateProfile:d}=o,f=qd(l,o.todayRange,null,d),g=[tf].concat(sl(f,r)),v=e.format(l,o.dayHeaderFormat),y=!f.isDisabled&&o.colCnt>1?Bs(this.context,l):{},A=Object.assign(Object.assign(Object.assign({date:e.toDate(l),view:i},o.extraRenderProps),{text:v}),f);return J(Un,{elTag:"th",elClasses:g,elAttrs:Object.assign({role:"columnheader",colSpan:o.colSpan,"data-date":f.isDisabled?void 0:Ks(l)},o.extraDataAttrs),renderProps:A,generatorName:"dayHeaderContent",customGenerator:t.dayHeaderContent,defaultGenerator:nf,classNameGenerator:t.dayHeaderClassNames,didMount:t.dayHeaderDidMount,willUnmount:t.dayHeaderWillUnmount},S=>J("div",{className:"fc-scrollgrid-sync-inner"},!f.isDisabled&&J(S,{elTag:"a",elAttrs:y,elClasses:["fc-col-header-cell-cushion",o.isSticky&&"fc-sticky"]})))}}const Em=Ut({weekday:"long"});class Cm extends Ct{render(){let{props:e}=this,{dateEnv:t,theme:r,viewApi:i,options:o}=this.context,l=Zt(new Date(2592e5),e.dow),d={dow:e.dow,isDisabled:!1,isFuture:!1,isPast:!1,isToday:!1,isOther:!1},f=t.format(l,e.dayHeaderFormat),g=Object.assign(Object.assign(Object.assign(Object.assign({date:l},d),{view:i}),e.extraRenderProps),{text:f});return J(Un,{elTag:"th",elClasses:[tf,...sl(d,r),...e.extraClassNames||[]],elAttrs:Object.assign({role:"columnheader",colSpan:e.colSpan},e.extraDataAttrs),renderProps:g,generatorName:"dayHeaderContent",customGenerator:o.dayHeaderContent,defaultGenerator:nf,classNameGenerator:o.dayHeaderClassNames,didMount:o.dayHeaderDidMount,willUnmount:o.dayHeaderWillUnmount},v=>J("div",{className:"fc-scrollgrid-sync-inner"},J(v,{elTag:"a",elClasses:["fc-col-header-cell-cushion",e.isSticky&&"fc-sticky"],elAttrs:{"aria-label":t.format(l,Em)}})))}}class ll extends ln{constructor(e,t){super(e,t),this.initialNowDate=Ri(t.options.now,t.dateEnv),this.initialNowQueriedMs=new Date().valueOf(),this.state=this.computeTiming().currentState}render(){let{props:e,state:t}=this;return e.children(t.nowDate,t.todayRange)}componentDidMount(){this.setTimeout()}componentDidUpdate(e){e.unit!==this.props.unit&&(this.clearTimeout(),this.setTimeout())}componentWillUnmount(){this.clearTimeout()}computeTiming(){let{props:e,context:t}=this,r=rr(this.initialNowDate,new Date().valueOf()-this.initialNowQueriedMs),i=t.dateEnv.startOf(r,e.unit),o=t.dateEnv.add(i,ht(1,e.unit)),l=o.valueOf()-r.valueOf();return l=Math.min(1e3*60*60*24,l),{currentState:{nowDate:i,todayRange:Au(i)},nextState:{nowDate:o,todayRange:Au(o)},waitMs:l}}setTimeout(){let{nextState:e,waitMs:t}=this.computeTiming();this.timeoutId=setTimeout(()=>{this.setState(e,()=>{this.setTimeout()})},t)}clearTimeout(){this.timeoutId&&clearTimeout(this.timeoutId)}}ll.contextType=Tr;function Au(n){let e=Et(n),t=Zt(e,1);return{start:e,end:t}}class xm extends Ct{constructor(){super(...arguments),this.createDayHeaderFormatter=ct(Tm)}render(){let{context:e}=this,{dates:t,dateProfile:r,datesRepDistinctDays:i,renderIntro:o}=this.props,l=this.createDayHeaderFormatter(e.options.dayHeaderFormat,i,t.length);return J(ll,{unit:"day"},(d,f)=>J("tr",{role:"row"},o&&o("day"),t.map(g=>i?J(wm,{key:g.toISOString(),date:g,dateProfile:r,todayRange:f,colCnt:t.length,dayHeaderFormat:l}):J(Cm,{key:g.getUTCDay(),dow:g.getUTCDay(),dayHeaderFormat:l}))))}}function Tm(n,e,t){return n||Lm(e,t)}class Om{constructor(e,t){let r=e.start,{end:i}=e,o=[],l=[],d=-1;for(;r<i;)t.isHiddenDay(r)?o.push(d+.5):(d+=1,o.push(d),l.push(r)),r=Zt(r,1);this.dates=l,this.indices=o,this.cnt=l.length}sliceRange(e){let t=this.getDateDayIndex(e.start),r=this.getDateDayIndex(Zt(e.end,-1)),i=Math.max(0,t),o=Math.min(this.cnt-1,r);return i=Math.ceil(i),o=Math.floor(o),i<=o?{firstIndex:i,lastIndex:o,isStart:t===i,isEnd:r===o}:null}getDateDayIndex(e){let{indices:t}=this,r=Math.floor(ei(this.dates[0],e));return r<0?t[0]-1:r>=t.length?t[t.length-1]+1:t[r]}}class _m{constructor(e,t){let{dates:r}=e,i,o,l;if(t){for(o=r[0].getUTCDay(),i=1;i<r.length&&r[i].getUTCDay()!==o;i+=1);l=Math.ceil(r.length/i)}else l=1,i=r.length;this.rowCnt=l,this.colCnt=i,this.daySeries=e,this.cells=this.buildCells(),this.headerDates=this.buildHeaderDates()}buildCells(){let e=[];for(let t=0;t<this.rowCnt;t+=1){let r=[];for(let i=0;i<this.colCnt;i+=1)r.push(this.buildCell(t,i));e.push(r)}return e}buildCell(e,t){let r=this.daySeries.dates[e*this.colCnt+t];return{key:r.toISOString(),date:r}}buildHeaderDates(){let e=[];for(let t=0;t<this.colCnt;t+=1)e.push(this.cells[0][t].date);return e}sliceRange(e){let{colCnt:t}=this,r=this.daySeries.sliceRange(e),i=[];if(r){let{firstIndex:o,lastIndex:l}=r,d=o;for(;d<=l;){let f=Math.floor(d/t),g=Math.min((f+1)*t,l+1);i.push({row:f,firstCol:d%t,lastCol:(g-1)%t,isStart:r.isStart&&d===o,isEnd:r.isEnd&&g-1===l}),d=g}}return i}}class Dm{constructor(){this.sliceBusinessHours=ct(this._sliceBusinessHours),this.sliceDateSelection=ct(this._sliceDateSpan),this.sliceEventStore=ct(this._sliceEventStore),this.sliceEventDrag=ct(this._sliceInteraction),this.sliceEventResize=ct(this._sliceInteraction),this.forceDayIfListItem=!1}sliceProps(e,t,r,i,...o){let{eventUiBases:l}=e,d=this.sliceEventStore(e.eventStore,l,t,r,...o);return{dateSelectionSegs:this.sliceDateSelection(e.dateSelection,t,r,l,i,...o),businessHourSegs:this.sliceBusinessHours(e.businessHours,t,r,i,...o),fgEventSegs:d.fg,bgEventSegs:d.bg,eventDrag:this.sliceEventDrag(e.eventDrag,l,t,r,...o),eventResize:this.sliceEventResize(e.eventResize,l,t,r,...o),eventSelection:e.eventSelection}}sliceNowDate(e,t,r,i,...o){return this._sliceDateSpan({range:{start:e,end:rr(e,1)},allDay:!1},t,r,{},i,...o)}_sliceBusinessHours(e,t,r,i,...o){return e?this._sliceEventStore(Mi(e,La(t,Boolean(r)),i),{},t,r,...o).bg:[]}_sliceEventStore(e,t,r,i,...o){if(e){let l=vu(e,t,La(r,Boolean(i)),i);return{bg:this.sliceEventRanges(l.bg,o),fg:this.sliceEventRanges(l.fg,o)}}return{bg:[],fg:[]}}_sliceInteraction(e,t,r,i,...o){if(!e)return null;let l=vu(e.mutatedEvents,t,La(r,Boolean(i)),i);return{segs:this.sliceEventRanges(l.fg,o),affectedInstances:e.affectedEvents.instances,isEvent:e.isEvent}}_sliceDateSpan(e,t,r,i,o,...l){if(!e)return[];let d=La(t,Boolean(r)),f=Qr(e.range,d);if(f){e=Object.assign(Object.assign({},e),{range:f});let g=om(e,i,o),v=this.sliceRange(e.range,...l);for(let y of v)y.eventRange=g;return v}return[]}sliceEventRanges(e,t){let r=[];for(let i of e)r.push(...this.sliceEventRange(i,t));return r}sliceEventRange(e,t){let r=e.range;this.forceDayIfListItem&&e.ui.display==="list-item"&&(r={start:r.start,end:Zt(r.start,1)});let i=this.sliceRange(r,...t);for(let o of i)o.eventRange=e,o.isStart=e.isStart&&o.isStart,o.isEnd=e.isEnd&&o.isEnd;return i}}function La(n,e){let t=n.activeRange;return e?t:{start:rr(t.start,n.slotMinTime.milliseconds),end:rr(t.end,n.slotMaxTime.milliseconds-864e5)}}const wa=/^(visible|hidden)$/;class Rm extends Ct{constructor(){super(...arguments),this.handleEl=e=>{this.el=e,Vn(this.props.elRef,e)}}render(){let{props:e}=this,{liquid:t,liquidIsAbsolute:r}=e,i=t&&r,o=["fc-scroller"];return t&&(r?o.push("fc-scroller-liquid-absolute"):o.push("fc-scroller-liquid")),J("div",{ref:this.handleEl,className:o.join(" "),style:{overflowX:e.overflowX,overflowY:e.overflowY,left:i&&-(e.overcomeLeft||0)||"",right:i&&-(e.overcomeRight||0)||"",bottom:i&&-(e.overcomeBottom||0)||"",marginLeft:!i&&-(e.overcomeLeft||0)||"",marginRight:!i&&-(e.overcomeRight||0)||"",marginBottom:!i&&-(e.overcomeBottom||0)||"",maxHeight:e.maxHeight||""}},e.children)}needsXScrolling(){if(wa.test(this.props.overflowX))return!1;let{el:e}=this,t=this.el.getBoundingClientRect().width-this.getYScrollbarWidth(),{children:r}=e;for(let i=0;i<r.length;i+=1)if(r[i].getBoundingClientRect().width>t)return!0;return!1}needsYScrolling(){if(wa.test(this.props.overflowY))return!1;let{el:e}=this,t=this.el.getBoundingClientRect().height-this.getXScrollbarWidth(),{children:r}=e;for(let i=0;i<r.length;i+=1)if(r[i].getBoundingClientRect().height>t)return!0;return!1}getXScrollbarWidth(){return wa.test(this.props.overflowX)?0:this.el.offsetHeight-this.el.clientHeight}getYScrollbarWidth(){return wa.test(this.props.overflowY)?0:this.el.offsetWidth-this.el.clientWidth}}class Ar{constructor(e){this.masterCallback=e,this.currentMap={},this.depths={},this.callbackMap={},this.handleValue=(t,r)=>{let{depths:i,currentMap:o}=this,l=!1,d=!1;t!==null?(l=r in o,o[r]=t,i[r]=(i[r]||0)+1,d=!0):(i[r]-=1,i[r]||(delete o[r],delete this.callbackMap[r],l=!0)),this.masterCallback&&(l&&this.masterCallback(null,String(r)),d&&this.masterCallback(t,String(r)))}}createRef(e){let t=this.callbackMap[e];return t||(t=this.callbackMap[e]=r=>{this.handleValue(r,String(e))}),t}collect(e,t,r){return Kv(this.currentMap,e,t,r)}getAll(){return el(this.currentMap)}}function Mm(n){let e=ev(n,".fc-scrollgrid-shrink"),t=0;for(let r of e)t=Math.max(t,uv(r));return Math.ceil(t)}function rf(n,e){return n.liquid&&e.liquid}function Im(n,e){return e.maxHeight!=null||rf(n,e)}function km(n,e,t,r){let{expandRows:i}=t;return typeof e.content=="function"?e.content(t):J("table",{role:"presentation",className:[e.tableClassName,n.syncRowHeights?"fc-scrollgrid-sync-table":""].join(" "),style:{minWidth:t.tableMinWidth,width:t.clientWidth,height:i?t.clientHeight:""}},t.tableColGroupNode,J(r?"thead":"tbody",{role:"presentation"},typeof e.rowContent=="function"?e.rowContent(t):e.rowContent))}function Pm(n,e){return nr(n,e,_n)}function Nm(n,e){let t=[];for(let r of n){let i=r.span||1;for(let o=0;o<i;o+=1)t.push(J("col",{style:{width:r.width==="shrink"?jm(e):r.width||"",minWidth:r.minWidth||""}}))}return J("colgroup",{},...t)}function jm(n){return n==null?4:n}function $m(n){for(let e of n)if(e.width==="shrink")return!0;return!1}function Hm(n,e){let t=["fc-scrollgrid",e.theme.getClass("table")];return n&&t.push("fc-scrollgrid-liquid"),t}function Bm(n,e){let t=["fc-scrollgrid-section",`fc-scrollgrid-section-${n.type}`,n.className];return e&&n.liquid&&n.maxHeight==null&&t.push("fc-scrollgrid-section-liquid"),n.isSticky&&t.push("fc-scrollgrid-section-sticky"),t}function Fm(n){return J("div",{className:"fc-scrollgrid-sticky-shim",style:{width:n.clientWidth,minWidth:n.tableMinWidth}})}function Lu(n){let{stickyHeaderDates:e}=n;return(e==null||e==="auto")&&(e=n.height==="auto"||n.viewHeight==="auto"),e}function Vm(n){let{stickyFooterScrollbar:e}=n;return(e==null||e==="auto")&&(e=n.height==="auto"||n.viewHeight==="auto"),e}class af extends Ct{constructor(){super(...arguments),this.processCols=ct(e=>e,Pm),this.renderMicroColGroup=ct(Nm),this.scrollerRefs=new Ar,this.scrollerElRefs=new Ar(this._handleScrollerEl.bind(this)),this.state={shrinkWidth:null,forceYScrollbars:!1,scrollerClientWidths:{},scrollerClientHeights:{}},this.handleSizing=()=>{this.safeSetState(Object.assign({shrinkWidth:this.computeShrinkWidth()},this.computeScrollerDims()))}}render(){let{props:e,state:t,context:r}=this,i=e.sections||[],o=this.processCols(e.cols),l=this.renderMicroColGroup(o,t.shrinkWidth),d=Hm(e.liquid,r);e.collapsibleWidth&&d.push("fc-scrollgrid-collapsible");let f=i.length,g=0,v,y=[],A=[],S=[];for(;g<f&&(v=i[g]).type==="header";)y.push(this.renderSection(v,l,!0)),g+=1;for(;g<f&&(v=i[g]).type==="body";)A.push(this.renderSection(v,l,!1)),g+=1;for(;g<f&&(v=i[g]).type==="footer";)S.push(this.renderSection(v,l,!0)),g+=1;let C=!Jd();const _={role:"rowgroup"};return J("table",{role:"grid",className:d.join(" "),style:{height:e.height}},Boolean(!C&&y.length)&&J("thead",_,...y),Boolean(!C&&A.length)&&J("tbody",_,...A),Boolean(!C&&S.length)&&J("tfoot",_,...S),C&&J("tbody",_,...y,...A,...S))}renderSection(e,t,r){return"outerContent"in e?J(Dt,{key:e.key},e.outerContent):J("tr",{key:e.key,role:"presentation",className:Bm(e,this.props.liquid).join(" ")},this.renderChunkTd(e,t,e.chunk,r))}renderChunkTd(e,t,r,i){if("outerContent"in r)return r.outerContent;let{props:o}=this,{forceYScrollbars:l,scrollerClientWidths:d,scrollerClientHeights:f}=this.state,g=Im(o,e),v=rf(o,e),y=o.liquid?l?"scroll":g?"auto":"hidden":"visible",A=e.key,S=km(e,r,{tableColGroupNode:t,tableMinWidth:"",clientWidth:!o.collapsibleWidth&&d[A]!==void 0?d[A]:null,clientHeight:f[A]!==void 0?f[A]:null,expandRows:e.expandRows,syncRowHeights:!1,rowSyncHeights:[],reportRowHeightChange:()=>{}},i);return J(i?"th":"td",{ref:r.elRef,role:"presentation"},J("div",{className:`fc-scroller-harness${v?" fc-scroller-harness-liquid":""}`},J(Rm,{ref:this.scrollerRefs.createRef(A),elRef:this.scrollerElRefs.createRef(A),overflowY:y,overflowX:o.liquid?"hidden":"visible",maxHeight:e.maxHeight,liquid:v,liquidIsAbsolute:!0},S)))}_handleScrollerEl(e,t){let r=zm(this.props.sections,t);r&&Vn(r.chunk.scrollerElRef,e)}componentDidMount(){this.handleSizing(),this.context.addResizeHandler(this.handleSizing)}componentDidUpdate(){this.handleSizing()}componentWillUnmount(){this.context.removeResizeHandler(this.handleSizing)}computeShrinkWidth(){return $m(this.props.cols)?Mm(this.scrollerElRefs.getAll()):0}computeScrollerDims(){let e=gm(),{scrollerRefs:t,scrollerElRefs:r}=this,i=!1,o={},l={};for(let d in t.currentMap){let f=t.currentMap[d];if(f&&f.needsYScrolling()){i=!0;break}}for(let d of this.props.sections){let f=d.key,g=r.currentMap[f];if(g){let v=g.parentNode;o[f]=Math.floor(v.getBoundingClientRect().width-(i?e.y:0)),l[f]=Math.floor(v.getBoundingClientRect().height)}}return{forceYScrollbars:i,scrollerClientWidths:o,scrollerClientHeights:l}}}af.addStateEquality({scrollerClientWidths:_n,scrollerClientHeights:_n});function zm(n,e){for(let t of n)if(t.key===e)return t;return null}class cl extends Ct{constructor(){super(...arguments),this.handleEl=e=>{this.el=e,e&&gu(e,this.props.seg)}}render(){const{props:e,context:t}=this,{options:r}=t,{seg:i}=e,{eventRange:o}=i,{ui:l}=o,d={event:new pn(t,o.def,o.instance),view:t.viewApi,timeText:e.timeText,textColor:l.textColor,backgroundColor:l.backgroundColor,borderColor:l.borderColor,isDraggable:!e.disableDragging&&Jg(i,t),isStartResizable:!e.disableResizing&&Xg(i,t),isEndResizable:!e.disableResizing&&qg(i),isMirror:Boolean(e.isDragging||e.isResizing||e.isDateSelecting),isStart:Boolean(i.isStart),isEnd:Boolean(i.isEnd),isPast:Boolean(e.isPast),isFuture:Boolean(e.isFuture),isToday:Boolean(e.isToday),isSelected:Boolean(e.isSelected),isDragging:Boolean(e.isDragging),isResizing:Boolean(e.isResizing)};return J(Un,Object.assign({},e,{elRef:this.handleEl,elClasses:[...em(d),...i.eventRange.ui.classNames,...e.elClasses||[]],renderProps:d,generatorName:"eventContent",customGenerator:r.eventContent,defaultGenerator:e.defaultGenerator,classNameGenerator:r.eventClassNames,didMount:r.eventDidMount,willUnmount:r.eventWillUnmount}))}componentDidUpdate(e){this.el&&this.props.seg!==e.seg&&gu(this.el,this.props.seg)}}class Um extends Ct{render(){let{props:e,context:t}=this,{options:r}=t,{seg:i}=e,{ui:o}=i.eventRange,l=r.eventTimeFormat||e.defaultTimeFormat,d=Yd(i,l,t,e.defaultDisplayEventTime,e.defaultDisplayEventEnd);return J(cl,Object.assign({},e,{elTag:"a",elStyle:{borderColor:o.borderColor,backgroundColor:o.backgroundColor},elAttrs:Zd(i,t),defaultGenerator:Wm,timeText:d}),(f,g)=>J(Dt,null,J(f,{elTag:"div",elClasses:["fc-event-main"],elStyle:{color:g.textColor}}),Boolean(g.isStartResizable)&&J("div",{className:"fc-event-resizer fc-event-resizer-start"}),Boolean(g.isEndResizable)&&J("div",{className:"fc-event-resizer fc-event-resizer-end"})))}}function Wm(n){return J("div",{className:"fc-event-main-frame"},n.timeText&&J("div",{className:"fc-event-time"},n.timeText),J("div",{className:"fc-event-title-container"},J("div",{className:"fc-event-title fc-sticky"},n.event.title||J(Dt,null,"\xA0"))))}const Gm=Ut({day:"numeric"});class of extends Ct{constructor(){super(...arguments),this.refineRenderProps=Ma(Ym)}render(){let{props:e,context:t}=this,{options:r}=t,i=this.refineRenderProps({date:e.date,dateProfile:e.dateProfile,todayRange:e.todayRange,isMonthStart:e.isMonthStart||!1,showDayNumber:e.showDayNumber,extraRenderProps:e.extraRenderProps,viewApi:t.viewApi,dateEnv:t.dateEnv,monthStartFormat:r.monthStartFormat});return J(Un,Object.assign({},e,{elClasses:[...sl(i,t.theme),...e.elClasses||[]],elAttrs:Object.assign(Object.assign({},e.elAttrs),i.isDisabled?{}:{"data-date":Ks(e.date)}),renderProps:i,generatorName:"dayCellContent",customGenerator:r.dayCellContent,defaultGenerator:e.defaultGenerator,classNameGenerator:i.isDisabled?void 0:r.dayCellClassNames,didMount:r.dayCellDidMount,willUnmount:r.dayCellWillUnmount}))}}function sf(n){return Boolean(n.dayCellContent||Dd("dayCellContent",n))}function Ym(n){let{date:e,dateEnv:t,dateProfile:r,isMonthStart:i}=n,o=qd(e,n.todayRange,null,r),l=n.showDayNumber?t.format(e,i?n.monthStartFormat:Gm):"";return Object.assign(Object.assign(Object.assign({date:t.toDate(e),view:n.viewApi},o),{isMonthStart:i,dayNumberText:l}),n.extraRenderProps)}class Zm extends Ct{render(){let{props:e}=this,{seg:t}=e;return J(cl,{elTag:"div",elClasses:["fc-bg-event"],elStyle:{backgroundColor:t.eventRange.ui.backgroundColor},defaultGenerator:Qm,seg:t,timeText:"",isDragging:!1,isResizing:!1,isDateSelecting:!1,isSelected:!1,isPast:e.isPast,isFuture:e.isFuture,isToday:e.isToday,disableDragging:!0,disableResizing:!0})}}function Qm(n){let{title:e}=n.event;return e&&J("div",{className:"fc-event-title"},n.event.title)}function Km(n){return J("div",{className:`fc-${n}`})}const Jm=n=>J(Tr.Consumer,null,e=>{let{dateEnv:t,options:r}=e,{date:i}=n,o=r.weekNumberFormat||n.defaultFormat,l=t.computeWeekNumber(i),d=t.format(i,o);return J(Un,Object.assign({},n,{renderProps:{num:l,text:d,date:i},generatorName:"weekNumberContent",customGenerator:r.weekNumberContent,defaultGenerator:Xm,classNameGenerator:r.weekNumberClassNames,didMount:r.weekNumberDidMount,willUnmount:r.weekNumberWillUnmount}))});function Xm(n){return n.text}const xs=10;class qm extends Ct{constructor(){super(...arguments),this.state={titleId:Ja()},this.handleRootEl=e=>{this.rootEl=e,this.props.elRef&&Vn(this.props.elRef,e)},this.handleDocumentMouseDown=e=>{const t=rv(e);this.rootEl.contains(t)||this.handleCloseClick()},this.handleDocumentKeyDown=e=>{e.key==="Escape"&&this.handleCloseClick()},this.handleCloseClick=()=>{let{onClose:e}=this.props;e&&e()}}render(){let{theme:e,options:t}=this.context,{props:r,state:i}=this,o=["fc-popover",e.getClass("popover")].concat(r.extraClassNames||[]);return Hh(J("div",Object.assign({},r.extraAttrs,{id:r.id,className:o.join(" "),"aria-labelledby":i.titleId,ref:this.handleRootEl}),J("div",{className:"fc-popover-header "+e.getClass("popoverHeader")},J("span",{className:"fc-popover-title",id:i.titleId},r.title),J("span",{className:"fc-popover-close "+e.getIconClass("close"),title:t.closeHint,onClick:this.handleCloseClick})),J("div",{className:"fc-popover-body "+e.getClass("popoverContent")},r.children)),r.parentEl)}componentDidMount(){document.addEventListener("mousedown",this.handleDocumentMouseDown),document.addEventListener("keydown",this.handleDocumentKeyDown),this.updateSize()}componentWillUnmount(){document.removeEventListener("mousedown",this.handleDocumentMouseDown),document.removeEventListener("keydown",this.handleDocumentKeyDown)}updateSize(){let{isRtl:e}=this.context,{alignmentEl:t,alignGridTop:r}=this.props,{rootEl:i}=this,o=bm(t);if(o){let l=i.getBoundingClientRect(),d=r?Bn(t,".fc-scrollgrid").getBoundingClientRect().top:o.top,f=e?o.right-l.width:o.left;d=Math.max(d,xs),f=Math.min(f,document.documentElement.clientWidth-xs-l.width),f=Math.max(f,xs);let g=i.offsetParent.getBoundingClientRect();nv(i,{top:d-g.top,left:f-g.left})}}}class ey extends _r{constructor(){super(...arguments),this.handleRootEl=e=>{this.rootEl=e,e?this.context.registerInteractiveComponent(this,{el:e,useEventCenter:!1}):this.context.unregisterInteractiveComponent(this)}}render(){let{options:e,dateEnv:t}=this.context,{props:r}=this,{startDate:i,todayRange:o,dateProfile:l}=r,d=t.format(i,e.dayPopoverFormat);return J(of,{elRef:this.handleRootEl,date:i,dateProfile:l,todayRange:o},(f,g,v)=>J(qm,{elRef:v.ref,id:r.id,title:d,extraClassNames:["fc-more-popover"].concat(v.className||[]),extraAttrs:v,parentEl:r.parentEl,alignmentEl:r.alignmentEl,alignGridTop:r.alignGridTop,onClose:r.onClose},sf(e)&&J(f,{elTag:"div",elClasses:["fc-more-popover-misc"]}),r.children))}queryHit(e,t,r,i){let{rootEl:o,props:l}=this;return e>=0&&e<r&&t>=0&&t<i?{dateProfile:l.dateProfile,dateSpan:Object.assign({allDay:!l.forceTimed,range:{start:l.startDate,end:l.endDate}},l.extraDateSpan),dayEl:o,rect:{left:0,top:0,right:r,bottom:i},layer:1}:null}}class ty extends Ct{constructor(){super(...arguments),this.state={isPopoverOpen:!1,popoverId:Ja()},this.handleLinkEl=e=>{this.linkEl=e,this.props.elRef&&Vn(this.props.elRef,e)},this.handleClick=e=>{let{props:t,context:r}=this,{moreLinkClick:i}=r.options,o=wu(t).start;function l(d){let{def:f,instance:g,range:v}=d.eventRange;return{event:new pn(r,f,g),start:r.dateEnv.toDate(v.start),end:r.dateEnv.toDate(v.end),isStart:d.isStart,isEnd:d.isEnd}}typeof i=="function"&&(i=i({date:o,allDay:Boolean(t.allDayDate),allSegs:t.allSegs.map(l),hiddenSegs:t.hiddenSegs.map(l),jsEvent:e,view:r.viewApi})),!i||i==="popover"?this.setState({isPopoverOpen:!0}):typeof i=="string"&&r.calendarApi.zoomTo(o,i)},this.handlePopoverClose=()=>{this.setState({isPopoverOpen:!1})}}render(){let{props:e,state:t}=this;return J(Tr.Consumer,null,r=>{let{viewApi:i,options:o,calendarApi:l}=r,{moreLinkText:d}=o,{moreCnt:f}=e,g=wu(e),v=typeof d=="function"?d.call(l,f):`+${f} ${d}`,y=gi(o.moreLinkHint,[f],v),A={num:f,shortText:`+${f}`,text:v,view:i};return J(Dt,null,Boolean(e.moreCnt)&&J(Un,{elTag:e.elTag||"a",elRef:this.handleLinkEl,elClasses:[...e.elClasses||[],"fc-more-link"],elStyle:e.elStyle,elAttrs:Object.assign(Object.assign(Object.assign({},e.elAttrs),Ed(this.handleClick)),{title:y,"aria-expanded":t.isPopoverOpen,"aria-controls":t.isPopoverOpen?t.popoverId:""}),renderProps:A,generatorName:"moreLinkContent",customGenerator:o.moreLinkContent,defaultGenerator:e.defaultGenerator||ny,classNameGenerator:o.moreLinkClassNames,didMount:o.moreLinkDidMount,willUnmount:o.moreLinkWillUnmount},e.children),t.isPopoverOpen&&J(ey,{id:t.popoverId,startDate:g.start,endDate:g.end,dateProfile:e.dateProfile,todayRange:e.todayRange,extraDateSpan:e.extraDateSpan,parentEl:this.parentEl,alignmentEl:e.alignmentElRef?e.alignmentElRef.current:this.linkEl,alignGridTop:e.alignGridTop,forceTimed:e.forceTimed,onClose:this.handlePopoverClose},e.popoverContent()))})}componentDidMount(){this.updateParentEl()}componentDidUpdate(){this.updateParentEl()}updateParentEl(){this.linkEl&&(this.parentEl=Bn(this.linkEl,".fc-view-harness"))}}function ny(n){return n.text}function wu(n){if(n.allDayDate)return{start:n.allDayDate,end:Zt(n.allDayDate,1)};let{hiddenSegs:e}=n;return{start:ry(e),end:ay(e)}}function ry(n){return n.reduce(iy).eventRange.range.start}function iy(n,e){return n.eventRange.range.start<e.eventRange.range.start?n:e}function ay(n){return n.reduce(oy).eventRange.range.end}function oy(n,e){return n.eventRange.range.end>e.eventRange.range.end?n:e}class sy{constructor(){this.handlers=[]}set(e){this.currentValue=e;for(let t of this.handlers)t(e)}subscribe(e){this.handlers.push(e),this.currentValue!==void 0&&e(this.currentValue)}}class ly extends sy{constructor(){super(...arguments),this.map=new Map}handle(e){const{map:t}=this;let r=!1;e.isActive?(t.set(e.id,e),r=!0):t.has(e.id)&&(t.delete(e.id),r=!0),r&&this.set(t)}}const cy=[],lf={code:"en",week:{dow:0,doy:4},direction:"ltr",buttonText:{prev:"prev",next:"next",prevYear:"prev year",nextYear:"next year",year:"year",today:"today",month:"month",week:"week",day:"day",list:"list"},weekText:"W",weekTextLong:"Week",closeHint:"Close",timeHint:"Time",eventHint:"Event",allDayText:"all-day",moreLinkText:"more",noEventsText:"No events to display"},cf=Object.assign(Object.assign({},lf),{buttonHints:{prev:"Previous $0",next:"Next $0",today(n,e){return e==="day"?"Today":`This ${n}`}},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint(n){return`Show ${n} more event${n===1?"":"s"}`}});function uy(n){let e=n.length>0?n[0].code:"en",t=cy.concat(n),r={en:cf};for(let i of t)r[i.code]=i;return{map:r,defaultCode:e}}function uf(n,e){return typeof n=="object"&&!Array.isArray(n)?df(n.code,[n.code],n):dy(n,e)}function dy(n,e){let t=[].concat(n||[]),r=fy(t,e)||cf;return df(n,t,r)}function fy(n,e){for(let t=0;t<n.length;t+=1){let r=n[t].toLocaleLowerCase().split("-");for(let i=r.length;i>0;i-=1){let o=r.slice(0,i).join("-");if(e[o])return e[o]}}return null}function df(n,e,t){let r=qs([lf,t],["buttonText"]);delete r.code;let{week:i}=r;return delete r.week,{codeArg:n,codes:e,week:i,simpleNumberFormat:new Intl.NumberFormat(n),options:r}}function Dr(n){return{id:xr(),name:n.name,premiumReleaseDate:n.premiumReleaseDate?new Date(n.premiumReleaseDate):void 0,deps:n.deps||[],reducers:n.reducers||[],isLoadingFuncs:n.isLoadingFuncs||[],contextInit:[].concat(n.contextInit||[]),eventRefiners:n.eventRefiners||{},eventDefMemberAdders:n.eventDefMemberAdders||[],eventSourceRefiners:n.eventSourceRefiners||{},isDraggableTransformers:n.isDraggableTransformers||[],eventDragMutationMassagers:n.eventDragMutationMassagers||[],eventDefMutationAppliers:n.eventDefMutationAppliers||[],dateSelectionTransformers:n.dateSelectionTransformers||[],datePointTransforms:n.datePointTransforms||[],dateSpanTransforms:n.dateSpanTransforms||[],views:n.views||{},viewPropsTransformers:n.viewPropsTransformers||[],isPropsValid:n.isPropsValid||null,externalDefTransforms:n.externalDefTransforms||[],viewContainerAppends:n.viewContainerAppends||[],eventDropTransformers:n.eventDropTransformers||[],componentInteractions:n.componentInteractions||[],calendarInteractions:n.calendarInteractions||[],themeClasses:n.themeClasses||{},eventSourceDefs:n.eventSourceDefs||[],cmdFormatter:n.cmdFormatter,recurringTypes:n.recurringTypes||[],namedTimeZonedImpl:n.namedTimeZonedImpl,initialView:n.initialView||"",elementDraggingImpl:n.elementDraggingImpl,optionChangeHandlers:n.optionChangeHandlers||{},scrollGridImpl:n.scrollGridImpl||null,listenerRefiners:n.listenerRefiners||{},optionRefiners:n.optionRefiners||{},propSetHandlers:n.propSetHandlers||{}}}function py(n,e){let t={},r={premiumReleaseDate:void 0,reducers:[],isLoadingFuncs:[],contextInit:[],eventRefiners:{},eventDefMemberAdders:[],eventSourceRefiners:{},isDraggableTransformers:[],eventDragMutationMassagers:[],eventDefMutationAppliers:[],dateSelectionTransformers:[],datePointTransforms:[],dateSpanTransforms:[],views:{},viewPropsTransformers:[],isPropsValid:null,externalDefTransforms:[],viewContainerAppends:[],eventDropTransformers:[],componentInteractions:[],calendarInteractions:[],themeClasses:{},eventSourceDefs:[],cmdFormatter:null,recurringTypes:[],namedTimeZonedImpl:null,initialView:"",elementDraggingImpl:null,optionChangeHandlers:{},scrollGridImpl:null,listenerRefiners:{},optionRefiners:{},propSetHandlers:{}};function i(o){for(let l of o){const d=l.name,f=t[d];f===void 0?(t[d]=l.id,i(l.deps),r=vy(r,l)):f!==l.id&&console.warn(`Duplicate plugin '${d}'`)}}return n&&i(n),i(e),r}function hy(){let n=[],e=[],t;return(r,i)=>((!t||!nr(r,n)||!nr(i,e))&&(t=py(r,i)),n=r,e=i,t)}function vy(n,e){return{premiumReleaseDate:gy(n.premiumReleaseDate,e.premiumReleaseDate),reducers:n.reducers.concat(e.reducers),isLoadingFuncs:n.isLoadingFuncs.concat(e.isLoadingFuncs),contextInit:n.contextInit.concat(e.contextInit),eventRefiners:Object.assign(Object.assign({},n.eventRefiners),e.eventRefiners),eventDefMemberAdders:n.eventDefMemberAdders.concat(e.eventDefMemberAdders),eventSourceRefiners:Object.assign(Object.assign({},n.eventSourceRefiners),e.eventSourceRefiners),isDraggableTransformers:n.isDraggableTransformers.concat(e.isDraggableTransformers),eventDragMutationMassagers:n.eventDragMutationMassagers.concat(e.eventDragMutationMassagers),eventDefMutationAppliers:n.eventDefMutationAppliers.concat(e.eventDefMutationAppliers),dateSelectionTransformers:n.dateSelectionTransformers.concat(e.dateSelectionTransformers),datePointTransforms:n.datePointTransforms.concat(e.datePointTransforms),dateSpanTransforms:n.dateSpanTransforms.concat(e.dateSpanTransforms),views:Object.assign(Object.assign({},n.views),e.views),viewPropsTransformers:n.viewPropsTransformers.concat(e.viewPropsTransformers),isPropsValid:e.isPropsValid||n.isPropsValid,externalDefTransforms:n.externalDefTransforms.concat(e.externalDefTransforms),viewContainerAppends:n.viewContainerAppends.concat(e.viewContainerAppends),eventDropTransformers:n.eventDropTransformers.concat(e.eventDropTransformers),calendarInteractions:n.calendarInteractions.concat(e.calendarInteractions),componentInteractions:n.componentInteractions.concat(e.componentInteractions),themeClasses:Object.assign(Object.assign({},n.themeClasses),e.themeClasses),eventSourceDefs:n.eventSourceDefs.concat(e.eventSourceDefs),cmdFormatter:e.cmdFormatter||n.cmdFormatter,recurringTypes:n.recurringTypes.concat(e.recurringTypes),namedTimeZonedImpl:e.namedTimeZonedImpl||n.namedTimeZonedImpl,initialView:n.initialView||e.initialView,elementDraggingImpl:n.elementDraggingImpl||e.elementDraggingImpl,optionChangeHandlers:Object.assign(Object.assign({},n.optionChangeHandlers),e.optionChangeHandlers),scrollGridImpl:e.scrollGridImpl||n.scrollGridImpl,listenerRefiners:Object.assign(Object.assign({},n.listenerRefiners),e.listenerRefiners),optionRefiners:Object.assign(Object.assign({},n.optionRefiners),e.optionRefiners),propSetHandlers:Object.assign(Object.assign({},n.propSetHandlers),e.propSetHandlers)}}function gy(n,e){return n===void 0?e:e===void 0?n:new Date(Math.max(n.valueOf(),e.valueOf()))}class ir extends Di{}ir.prototype.classes={root:"fc-theme-standard",tableCellShaded:"fc-cell-shaded",buttonGroup:"fc-button-group",button:"fc-button fc-button-primary",buttonActive:"fc-button-active"};ir.prototype.baseIconClass="fc-icon";ir.prototype.iconClasses={close:"fc-icon-x",prev:"fc-icon-chevron-left",next:"fc-icon-chevron-right",prevYear:"fc-icon-chevrons-left",nextYear:"fc-icon-chevrons-right"};ir.prototype.rtlIconClasses={prev:"fc-icon-chevron-right",next:"fc-icon-chevron-left",prevYear:"fc-icon-chevrons-right",nextYear:"fc-icon-chevrons-left"};ir.prototype.iconOverrideOption="buttonIcons";ir.prototype.iconOverrideCustomButtonOption="icon";ir.prototype.iconOverridePrefix="fc-icon-";function my(n,e){let t={},r;for(r in n)Fs(r,t,n,e);for(r in e)Fs(r,t,n,e);return t}function Fs(n,e,t,r){if(e[n])return e[n];let i=yy(n,e,t,r);return i&&(e[n]=i),i}function yy(n,e,t,r){let i=t[n],o=r[n],l=v=>i&&i[v]!==null?i[v]:o&&o[v]!==null?o[v]:null,d=l("component"),f=l("superType"),g=null;if(f){if(f===n)throw new Error("Can't have a custom view type that references itself");g=Fs(f,e,t,r)}return!d&&g&&(d=g.component),d?{type:n,component:d,defaults:Object.assign(Object.assign({},g?g.defaults:{}),i?i.rawOptions:{}),overrides:Object.assign(Object.assign({},g?g.overrides:{}),o?o.rawOptions:{})}:null}function Eu(n){return _i(n,by)}function by(n){let e=typeof n=="function"?{component:n}:n,{component:t}=e;return e.content&&(t=Sy(e)),{superType:e.type,component:t,rawOptions:e}}function Sy(n){return e=>J(Tr.Consumer,null,t=>J(Un,{elTag:"div",elClasses:Id(t.viewSpec),renderProps:Object.assign(Object.assign({},e),{nextDayThreshold:t.options.nextDayThreshold}),generatorName:void 0,customGenerator:n.content,classNameGenerator:n.classNames,didMount:n.didMount,willUnmount:n.willUnmount}))}function Ay(n,e,t,r){let i=Eu(n),o=Eu(e.views),l=my(i,o);return _i(l,d=>Ly(d,o,e,t,r))}function Ly(n,e,t,r,i){let o=n.overrides.duration||n.defaults.duration||r.duration||t.duration,l=null,d="",f="",g={};if(o&&(l=wy(o),l)){let A=Ps(l);d=A.unit,A.value===1&&(f=d,g=e[d]?e[d].rawOptions:{})}let v=A=>{let S=A.buttonText||{},C=n.defaults.buttonTextKey;return C!=null&&S[C]!=null?S[C]:S[n.type]!=null?S[n.type]:S[f]!=null?S[f]:null},y=A=>{let S=A.buttonHints||{},C=n.defaults.buttonTextKey;return C!=null&&S[C]!=null?S[C]:S[n.type]!=null?S[n.type]:S[f]!=null?S[f]:null};return{type:n.type,component:n.component,duration:l,durationUnit:d,singleUnit:f,optionDefaults:n.defaults,optionOverrides:Object.assign(Object.assign({},g),n.overrides),buttonTextOverride:v(r)||v(t)||n.overrides.buttonText,buttonTextDefault:v(i)||n.defaults.buttonText||v(mi)||n.type,buttonTitleOverride:y(r)||y(t)||n.overrides.buttonHint,buttonTitleDefault:y(i)||n.defaults.buttonHint||y(mi)}}let Cu={};function wy(n){let e=JSON.stringify(n),t=Cu[e];return t===void 0&&(t=ht(n),Cu[e]=t),t}function Ey(n,e){switch(e.type){case"CHANGE_VIEW_TYPE":n=e.viewType}return n}function Cy(n,e){switch(e.type){case"SET_OPTION":return Object.assign(Object.assign({},n),{[e.optionName]:e.rawOptionValue});default:return n}}function xy(n,e,t,r){let i;switch(e.type){case"CHANGE_VIEW_TYPE":return r.build(e.dateMarker||t);case"CHANGE_DATE":return r.build(e.dateMarker);case"PREV":if(i=r.buildPrev(n,t),i.isValid)return i;break;case"NEXT":if(i=r.buildNext(n,t),i.isValid)return i;break}return n}function Ty(n,e,t){let r=e?e.activeRange:null;return pf({},ky(n,t),r,t)}function Oy(n,e,t,r){let i=t?t.activeRange:null;switch(e.type){case"ADD_EVENT_SOURCES":return pf(n,e.sources,i,r);case"REMOVE_EVENT_SOURCE":return Dy(n,e.sourceId);case"PREV":case"NEXT":case"CHANGE_DATE":case"CHANGE_VIEW_TYPE":return t?hf(n,i,r):n;case"FETCH_EVENT_SOURCES":return ul(n,e.sourceIds?Td(e.sourceIds):vf(n,r),i,e.isRefetch||!1,r);case"RECEIVE_EVENTS":case"RECEIVE_EVENT_ERROR":return Iy(n,e.sourceId,e.fetchId,e.fetchRange);case"REMOVE_ALL_EVENT_SOURCES":return{};default:return n}}function _y(n,e,t){let r=e?e.activeRange:null;return ul(n,vf(n,t),r,!0,t)}function ff(n){for(let e in n)if(n[e].isFetching)return!0;return!1}function pf(n,e,t,r){let i={};for(let o of e)i[o.sourceId]=o;return t&&(i=hf(i,t,r)),Object.assign(Object.assign({},n),i)}function Dy(n,e){return Zr(n,t=>t.sourceId!==e)}function hf(n,e,t){return ul(n,Zr(n,r=>Ry(r,e,t)),e,!1,t)}function Ry(n,e,t){return gf(n,t)?!t.options.lazyFetching||!n.fetchRange||n.isFetching||e.start<n.fetchRange.start||e.end>n.fetchRange.end:!n.latestFetchId}function ul(n,e,t,r,i){let o={};for(let l in n){let d=n[l];e[l]?o[l]=My(d,t,r,i):o[l]=d}return o}function My(n,e,t,r){let{options:i,calendarApi:o}=r,l=r.pluginHooks.eventSourceDefs[n.sourceDefId],d=xr();return l.fetch({eventSource:n,range:e,isRefetch:t,context:r},f=>{let{rawEvents:g}=f;i.eventSourceSuccess&&(g=i.eventSourceSuccess.call(o,g,f.response)||g),n.success&&(g=n.success.call(o,g,f.response)||g),r.dispatch({type:"RECEIVE_EVENTS",sourceId:n.sourceId,fetchId:d,fetchRange:e,rawEvents:g})},f=>{let g=!1;i.eventSourceFailure&&(i.eventSourceFailure.call(o,f),g=!0),n.failure&&(n.failure(f),g=!0),g||console.warn(f.message,f),r.dispatch({type:"RECEIVE_EVENT_ERROR",sourceId:n.sourceId,fetchId:d,fetchRange:e,error:f})}),Object.assign(Object.assign({},n),{isFetching:!0,latestFetchId:d})}function Iy(n,e,t,r){let i=n[e];return i&&t===i.latestFetchId?Object.assign(Object.assign({},n),{[e]:Object.assign(Object.assign({},i),{isFetching:!1,fetchRange:r})}):n}function vf(n,e){return Zr(n,t=>gf(t,e))}function ky(n,e){let t=Fd(e),r=[].concat(n.eventSources||[]),i=[];n.initialEvents&&r.unshift(n.initialEvents),n.events&&r.unshift(n.events);for(let o of r){let l=Bd(o,e,t);l&&i.push(l)}return i}function gf(n,e){return!e.pluginHooks.eventSourceDefs[n.sourceDefId].ignoreRange}function Py(n,e){switch(e.type){case"UNSELECT_DATES":return null;case"SELECT_DATES":return e.selection;default:return n}}function Ny(n,e){switch(e.type){case"UNSELECT_EVENT":return"";case"SELECT_EVENT":return e.eventInstanceId;default:return n}}function jy(n,e){let t;switch(e.type){case"UNSET_EVENT_DRAG":return null;case"SET_EVENT_DRAG":return t=e.state,{affectedEvents:t.affectedEvents,mutatedEvents:t.mutatedEvents,isEvent:t.isEvent};default:return n}}function $y(n,e){let t;switch(e.type){case"UNSET_EVENT_RESIZE":return null;case"SET_EVENT_RESIZE":return t=e.state,{affectedEvents:t.affectedEvents,mutatedEvents:t.mutatedEvents,isEvent:t.isEvent};default:return n}}function Hy(n,e,t,r,i){let o=n.headerToolbar?xu(n.headerToolbar,n,e,t,r,i):null,l=n.footerToolbar?xu(n.footerToolbar,n,e,t,r,i):null;return{header:o,footer:l}}function xu(n,e,t,r,i,o){let l={},d=[],f=!1;for(let g in n){let v=n[g],y=By(v,e,t,r,i,o);l[g]=y.widgets,d.push(...y.viewsWithButtons),f=f||y.hasTitle}return{sectionWidgets:l,viewsWithButtons:d,hasTitle:f}}function By(n,e,t,r,i,o){let l=e.direction==="rtl",d=e.customButtons||{},f=t.buttonText||{},g=e.buttonText||{},v=t.buttonHints||{},y=e.buttonHints||{},A=n?n.split(" "):[],S=[],C=!1;return{widgets:A.map(T=>T.split(",").map(D=>{if(D==="title")return C=!0,{buttonName:D};let P,V,x,X,H,Y;if(P=d[D])x=F=>{P.click&&P.click.call(F.target,F,F.target)},(X=r.getCustomButtonIconClass(P))||(X=r.getIconClass(D,l))||(H=P.text),Y=P.hint||P.text;else if(V=i[D]){S.push(D),x=()=>{o.changeView(D)},(H=V.buttonTextOverride)||(X=r.getIconClass(D,l))||(H=V.buttonTextDefault);let F=V.buttonTextOverride||V.buttonTextDefault;Y=gi(V.buttonTitleOverride||V.buttonTitleDefault||e.viewHint,[F,D],F)}else if(o[D])if(x=()=>{o[D]()},(H=f[D])||(X=r.getIconClass(D,l))||(H=g[D]),D==="prevYear"||D==="nextYear"){let F=D==="prevYear"?"prev":"next";Y=gi(v[F]||y[F],[g.year||"year","year"],g[D])}else Y=F=>gi(v[D]||y[D],[g[F]||F,F],g[D]);return{buttonName:D,buttonClick:x,buttonIcon:X,buttonText:H,buttonHint:Y}})),viewsWithButtons:S,hasTitle:C}}class Fy{constructor(e,t,r){this.type=e,this.getCurrentData=t,this.dateEnv=r}get calendar(){return this.getCurrentData().calendarApi}get title(){return this.getCurrentData().viewTitle}get activeStart(){return this.dateEnv.toDate(this.getCurrentData().dateProfile.activeRange.start)}get activeEnd(){return this.dateEnv.toDate(this.getCurrentData().dateProfile.activeRange.end)}get currentStart(){return this.dateEnv.toDate(this.getCurrentData().dateProfile.currentRange.start)}get currentEnd(){return this.dateEnv.toDate(this.getCurrentData().dateProfile.currentRange.end)}getOption(e){return this.getCurrentData().options[e]}}let Vy={ignoreRange:!0,parseMeta(n){return Array.isArray(n.events)?n.events:null},fetch(n,e){e({rawEvents:n.eventSource.meta})}};const zy=Dr({name:"array-event-source",eventSourceDefs:[Vy]});let Uy={parseMeta(n){return typeof n.events=="function"?n.events:null},fetch(n,e,t){const{dateEnv:r}=n.context,i=n.eventSource.meta;sm(i.bind(null,Qd(n.range,r)),o=>e({rawEvents:o}),t)}};const Wy=Dr({name:"func-event-source",eventSourceDefs:[Uy]}),Gy={method:String,extraParams:te,startParam:String,endParam:String,timeZoneParam:String};let Yy={parseMeta(n){return n.url&&(n.format==="json"||!n.format)?{url:n.url,format:"json",method:(n.method||"GET").toUpperCase(),extraParams:n.extraParams,startParam:n.startParam,endParam:n.endParam,timeZoneParam:n.timeZoneParam}:null},fetch(n,e,t){const{meta:r}=n.eventSource,i=Qy(r,n.range,n.context);lm(r.method,r.url,i).then(([o,l])=>{e({rawEvents:o,response:l})},t)}};const Zy=Dr({name:"json-event-source",eventSourceRefiners:Gy,eventSourceDefs:[Yy]});function Qy(n,e,t){let{dateEnv:r,options:i}=t,o,l,d,f,g={};return o=n.startParam,o==null&&(o=i.startParam),l=n.endParam,l==null&&(l=i.endParam),d=n.timeZoneParam,d==null&&(d=i.timeZoneParam),typeof n.extraParams=="function"?f=n.extraParams():f=n.extraParams||{},Object.assign(g,f),g[o]=r.formatIso(e.start),g[l]=r.formatIso(e.end),r.timeZone!=="local"&&(g[d]=r.timeZone),g}const Ky={daysOfWeek:te,startTime:ht,endTime:ht,duration:ht,startRecur:te,endRecur:te};let Jy={parse(n,e){if(n.daysOfWeek||n.startTime||n.endTime||n.startRecur||n.endRecur){let t={daysOfWeek:n.daysOfWeek||null,startTime:n.startTime||null,endTime:n.endTime||null,startRecur:n.startRecur?e.createMarker(n.startRecur):null,endRecur:n.endRecur?e.createMarker(n.endRecur):null},r;return n.duration&&(r=n.duration),!r&&n.startTime&&n.endTime&&(r=hv(n.endTime,n.startTime)),{allDayGuess:Boolean(!n.startTime&&!n.endTime),duration:r,typeData:t}}return null},expand(n,e,t){let r=Qr(e,{start:n.startRecur,end:n.endRecur});return r?qy(n.daysOfWeek,n.startTime,r,t):[]}};const Xy=Dr({name:"simple-recurring-event",recurringTypes:[Jy],eventRefiners:Ky});function qy(n,e,t,r){let i=n?Td(n):null,o=Et(t.start),l=t.end,d=[];for(;o<l;){let f;(!i||i[o.getUTCDay()])&&(e?f=r.add(o,e):f=o,d.push(f)),o=Zt(o,1)}return d}const e1=Dr({name:"change-handler",optionChangeHandlers:{events(n,e){Tu([n],e)},eventSources:Tu}});function Tu(n,e){let t=el(e.getCurrentData().eventSources);if(t.length===1&&n.length===1&&Array.isArray(t[0]._raw)&&Array.isArray(n[0])){e.dispatch({type:"RESET_RAW_EVENTS",sourceId:t[0].sourceId,rawEvents:n[0]});return}let r=[];for(let i of n){let o=!1;for(let l=0;l<t.length;l+=1)if(t[l]._raw===i){t.splice(l,1),o=!0;break}o||r.push(i)}for(let i of t)e.dispatch({type:"REMOVE_EVENT_SOURCE",sourceId:i.sourceId});for(let i of r)e.calendarApi.addEventSource(i)}function t1(n,e){e.emitter.trigger("datesSet",Object.assign(Object.assign({},Qd(n.activeRange,e.dateEnv)),{view:e.viewApi}))}function n1(n,e){let{emitter:t}=e;t.hasHandlers("eventsSet")&&t.trigger("eventsSet",ol(n,e))}const r1=[zy,Wy,Zy,Xy,e1,Dr({name:"misc",isLoadingFuncs:[n=>ff(n.eventSources)],propSetHandlers:{dateProfile:t1,eventStore:n1}})];class i1{constructor(e,t){this.runTaskOption=e,this.drainedOption=t,this.queue=[],this.delayedRunner=new Qs(this.drain.bind(this))}request(e,t){this.queue.push(e),this.delayedRunner.request(t)}pause(e){this.delayedRunner.pause(e)}resume(e,t){this.delayedRunner.resume(e,t)}drain(){let{queue:e}=this;for(;e.length;){let t=[],r;for(;r=e.shift();)this.runTask(r),t.push(r);this.drained(t)}}runTask(e){this.runTaskOption&&this.runTaskOption(e)}drained(e){this.drainedOption&&this.drainedOption(e)}}function a1(n,e,t){let r;return/^(year|month)$/.test(n.currentRangeUnit)?r=n.currentRange:r=n.activeRange,t.formatRange(r.start,r.end,Ut(e.titleFormat||o1(n)),{isEndExclusive:n.isRangeAllDay,defaultSeparator:e.titleRangeSeparator})}function o1(n){let{currentRangeUnit:e}=n;if(e==="year")return{year:"numeric"};if(e==="month")return{year:"numeric",month:"long"};let t=Ha(n.currentRange.start,n.currentRange.end);return t!==null&&t>1?{year:"numeric",month:"short",day:"numeric"}:{year:"numeric",month:"long",day:"numeric"}}class s1{constructor(e){this.computeCurrentViewData=ct(this._computeCurrentViewData),this.organizeRawLocales=ct(uy),this.buildLocale=ct(uf),this.buildPluginHooks=hy(),this.buildDateEnv=ct(l1),this.buildTheme=ct(c1),this.parseToolbars=ct(Hy),this.buildViewSpecs=ct(Ay),this.buildDateProfileGenerator=Ma(u1),this.buildViewApi=ct(d1),this.buildViewUiProps=Ma(h1),this.buildEventUiBySource=ct(f1,_n),this.buildEventUiBases=ct(p1),this.parseContextBusinessHours=Ma(v1),this.buildTitle=ct(a1),this.emitter=new jg,this.actionRunner=new i1(this._handleAction.bind(this),this.updateData.bind(this)),this.currentCalendarOptionsInput={},this.currentCalendarOptionsRefined={},this.currentViewOptionsInput={},this.currentViewOptionsRefined={},this.currentCalendarOptionsRefiners={},this.optionsForRefining=[],this.optionsForHandling=[],this.getCurrentData=()=>this.data,this.dispatch=A=>{this.actionRunner.request(A)},this.props=e,this.actionRunner.pause();let t={},r=this.computeOptionsData(e.optionOverrides,t,e.calendarApi),i=r.calendarOptions.initialView||r.pluginHooks.initialView,o=this.computeCurrentViewData(i,r,e.optionOverrides,t);e.calendarApi.currentDataManager=this,this.emitter.setThisContext(e.calendarApi),this.emitter.setOptions(o.options);let l=gg(r.calendarOptions,r.dateEnv),d=o.dateProfileGenerator.build(l);tr(d.activeRange,l)||(l=d.currentRange.start);let f={dateEnv:r.dateEnv,options:r.calendarOptions,pluginHooks:r.pluginHooks,calendarApi:e.calendarApi,dispatch:this.dispatch,emitter:this.emitter,getCurrentData:this.getCurrentData};for(let A of r.pluginHooks.contextInit)A(f);let g=Ty(r.calendarOptions,d,f),v={dynamicOptionOverrides:t,currentViewType:i,currentDate:l,dateProfile:d,businessHours:this.parseContextBusinessHours(f),eventSources:g,eventUiBases:{},eventStore:Er(),renderableEventStore:Er(),dateSelection:null,eventSelection:"",eventDrag:null,eventResize:null,selectionConfig:this.buildViewUiProps(f).selectionConfig},y=Object.assign(Object.assign({},f),v);for(let A of r.pluginHooks.reducers)Object.assign(v,A(null,null,y));Ts(v,f)&&this.emitter.trigger("loading",!0),this.state=v,this.updateData(),this.actionRunner.resume()}resetOptions(e,t){let{props:r}=this;t===void 0?r.optionOverrides=e:(r.optionOverrides=Object.assign(Object.assign({},r.optionOverrides||{}),e),this.optionsForRefining.push(...t)),(t===void 0||t.length)&&this.actionRunner.request({type:"NOTHING"})}_handleAction(e){let{props:t,state:r,emitter:i}=this,o=Cy(r.dynamicOptionOverrides,e),l=this.computeOptionsData(t.optionOverrides,o,t.calendarApi),d=Ey(r.currentViewType,e),f=this.computeCurrentViewData(d,l,t.optionOverrides,o);t.calendarApi.currentDataManager=this,i.setThisContext(t.calendarApi),i.setOptions(f.options);let g={dateEnv:l.dateEnv,options:l.calendarOptions,pluginHooks:l.pluginHooks,calendarApi:t.calendarApi,dispatch:this.dispatch,emitter:i,getCurrentData:this.getCurrentData},{currentDate:v,dateProfile:y}=r;this.data&&this.data.dateProfileGenerator!==f.dateProfileGenerator&&(y=f.dateProfileGenerator.build(v)),v=vg(v,e),y=xy(y,e,v,f.dateProfileGenerator),(e.type==="PREV"||e.type==="NEXT"||!tr(y.currentRange,v))&&(v=y.currentRange.start);let A=Oy(r.eventSources,e,y,g),S=Rg(r.eventStore,e,A,y,g),_=ff(A)&&!f.options.progressiveEventRendering&&r.renderableEventStore||S,{eventUiSingleBase:T,selectionConfig:D}=this.buildViewUiProps(g),P=this.buildEventUiBySource(A),V=this.buildEventUiBases(_.defs,T,P),x={dynamicOptionOverrides:o,currentViewType:d,currentDate:v,dateProfile:y,eventSources:A,eventStore:S,renderableEventStore:_,selectionConfig:D,eventUiBases:V,businessHours:this.parseContextBusinessHours(g),dateSelection:Py(r.dateSelection,e),eventSelection:Ny(r.eventSelection,e),eventDrag:jy(r.eventDrag,e),eventResize:$y(r.eventResize,e)},X=Object.assign(Object.assign({},g),x);for(let F of l.pluginHooks.reducers)Object.assign(x,F(r,e,X));let H=Ts(r,g),Y=Ts(x,g);!H&&Y?i.trigger("loading",!0):H&&!Y&&i.trigger("loading",!1),this.state=x,t.onAction&&t.onAction(e)}updateData(){let{props:e,state:t}=this,r=this.data,i=this.computeOptionsData(e.optionOverrides,t.dynamicOptionOverrides,e.calendarApi),o=this.computeCurrentViewData(t.currentViewType,i,e.optionOverrides,t.dynamicOptionOverrides),l=this.data=Object.assign(Object.assign(Object.assign({viewTitle:this.buildTitle(t.dateProfile,o.options,i.dateEnv),calendarApi:e.calendarApi,dispatch:this.dispatch,emitter:this.emitter,getCurrentData:this.getCurrentData},i),o),t),d=i.pluginHooks.optionChangeHandlers,f=r&&r.calendarOptions,g=i.calendarOptions;if(f&&f!==g){f.timeZone!==g.timeZone&&(t.eventSources=l.eventSources=_y(l.eventSources,t.dateProfile,l),t.eventStore=l.eventStore=Pg(l.eventStore,r.dateEnv,l.dateEnv));for(let v in d)(this.optionsForHandling.indexOf(v)!==-1||f[v]!==g[v])&&d[v](g[v],l)}this.optionsForHandling=[],e.onData&&e.onData(l)}computeOptionsData(e,t,r){if(!this.optionsForRefining.length&&e===this.stableOptionOverrides&&t===this.stableDynamicOptionOverrides)return this.stableCalendarOptionsData;let{refinedOptions:i,pluginHooks:o,localeDefaults:l,availableLocaleData:d,extra:f}=this.processRawCalendarOptions(e,t);Ou(f);let g=this.buildDateEnv(i.timeZone,i.locale,i.weekNumberCalculation,i.firstDay,i.weekText,o,d,i.defaultRangeSeparator),v=this.buildViewSpecs(o.views,this.stableOptionOverrides,this.stableDynamicOptionOverrides,l),y=this.buildTheme(i,o),A=this.parseToolbars(i,this.stableOptionOverrides,y,v,r);return this.stableCalendarOptionsData={calendarOptions:i,pluginHooks:o,dateEnv:g,viewSpecs:v,theme:y,toolbarConfig:A,localeDefaults:l,availableRawLocales:d.map}}processRawCalendarOptions(e,t){let{locales:r,locale:i}=As([mi,e,t]),o=this.organizeRawLocales(r),l=o.map,d=this.buildLocale(i||o.defaultCode,l).options,f=this.buildPluginHooks(e.plugins||[],r1),g=this.currentCalendarOptionsRefiners=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},ou),su),lu),f.listenerRefiners),f.optionRefiners),v={},y=As([mi,d,e,t]),A={},S=this.currentCalendarOptionsInput,C=this.currentCalendarOptionsRefined,_=!1;for(let T in y)this.optionsForRefining.indexOf(T)===-1&&(y[T]===S[T]||gr[T]&&T in S&&gr[T](S[T],y[T]))?A[T]=C[T]:g[T]?(A[T]=g[T](y[T]),_=!0):v[T]=S[T];return _&&(this.currentCalendarOptionsInput=y,this.currentCalendarOptionsRefined=A,this.stableOptionOverrides=e,this.stableDynamicOptionOverrides=t),this.optionsForHandling.push(...this.optionsForRefining),this.optionsForRefining=[],{rawOptions:this.currentCalendarOptionsInput,refinedOptions:this.currentCalendarOptionsRefined,pluginHooks:f,availableLocaleData:o,localeDefaults:d,extra:v}}_computeCurrentViewData(e,t,r,i){let o=t.viewSpecs[e];if(!o)throw new Error(`viewType "${e}" is not available. Please make sure you've loaded all neccessary plugins`);let{refinedOptions:l,extra:d}=this.processRawViewOptions(o,t.pluginHooks,t.localeDefaults,r,i);Ou(d);let f=this.buildDateProfileGenerator({dateProfileGeneratorClass:o.optionDefaults.dateProfileGeneratorClass,duration:o.duration,durationUnit:o.durationUnit,usesMinMaxTime:o.optionDefaults.usesMinMaxTime,dateEnv:t.dateEnv,calendarApi:this.props.calendarApi,slotMinTime:l.slotMinTime,slotMaxTime:l.slotMaxTime,showNonCurrentDates:l.showNonCurrentDates,dayCount:l.dayCount,dateAlignment:l.dateAlignment,dateIncrement:l.dateIncrement,hiddenDays:l.hiddenDays,weekends:l.weekends,nowInput:l.now,validRangeInput:l.validRange,visibleRangeInput:l.visibleRange,fixedWeekCount:l.fixedWeekCount}),g=this.buildViewApi(e,this.getCurrentData,t.dateEnv);return{viewSpec:o,options:l,dateProfileGenerator:f,viewApi:g}}processRawViewOptions(e,t,r,i,o){let l=As([mi,e.optionDefaults,r,i,e.optionOverrides,o]),d=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},ou),su),lu),Gv),t.listenerRefiners),t.optionRefiners),f={},g=this.currentViewOptionsInput,v=this.currentViewOptionsRefined,y=!1,A={};for(let S in l)l[S]===g[S]||gr[S]&&gr[S](l[S],g[S])?f[S]=v[S]:(l[S]===this.currentCalendarOptionsInput[S]||gr[S]&&gr[S](l[S],this.currentCalendarOptionsInput[S])?S in this.currentCalendarOptionsRefined&&(f[S]=this.currentCalendarOptionsRefined[S]):d[S]?f[S]=d[S](l[S]):A[S]=l[S],y=!0);return y&&(this.currentViewOptionsInput=l,this.currentViewOptionsRefined=f),{rawOptions:this.currentViewOptionsInput,refinedOptions:this.currentViewOptionsRefined,extra:A}}}function l1(n,e,t,r,i,o,l,d){let f=uf(e||l.defaultCode,l.map);return new ng({calendarSystem:"gregory",timeZone:n,namedTimeZoneImpl:o.namedTimeZonedImpl,locale:f,weekNumberCalculation:t,firstDay:r,weekText:i,cmdFormatter:o.cmdFormatter,defaultSeparator:d})}function c1(n,e){let t=e.themeClasses[n.themeSystem]||ir;return new t(n)}function u1(n){let e=n.dateProfileGeneratorClass||Nd;return new e(n)}function d1(n,e,t){return new Fy(n,e,t)}function f1(n){return _i(n,e=>e.ui)}function p1(n,e,t){let r={"":e};for(let i in n){let o=n[i];o.sourceId&&t[o.sourceId]&&(r[i]=t[o.sourceId])}return r}function h1(n){let{options:e}=n;return{eventUiSingleBase:Ua({display:e.eventDisplay,editable:e.editable,startEditable:e.eventStartEditable,durationEditable:e.eventDurationEditable,constraint:e.eventConstraint,overlap:typeof e.eventOverlap=="boolean"?e.eventOverlap:void 0,allow:e.eventAllow,backgroundColor:e.eventBackgroundColor,borderColor:e.eventBorderColor,textColor:e.eventTextColor,color:e.eventColor},n),selectionConfig:Ua({constraint:e.selectConstraint,overlap:typeof e.selectOverlap=="boolean"?e.selectOverlap:void 0,allow:e.selectAllow},n)}}function Ts(n,e){for(let t of e.pluginHooks.isLoadingFuncs)if(t(n))return!0;return!1}function v1(n){return Fg(n.options.businessHours,n)}function Ou(n,e){for(let t in n)console.warn(`Unknown option '${t}'`+(e?` for view '${e}'`:""))}class g1 extends Ct{render(){let e=this.props.widgetGroups.map(t=>this.renderWidgetGroup(t));return J("div",{className:"fc-toolbar-chunk"},...e)}renderWidgetGroup(e){let{props:t}=this,{theme:r}=this.context,i=[],o=!0;for(let l of e){let{buttonName:d,buttonClick:f,buttonText:g,buttonIcon:v,buttonHint:y}=l;if(d==="title")o=!1,i.push(J("h2",{className:"fc-toolbar-title",id:t.titleId},t.title));else{let A=d===t.activeButton,S=!t.isTodayEnabled&&d==="today"||!t.isPrevEnabled&&d==="prev"||!t.isNextEnabled&&d==="next",C=[`fc-${d}-button`,r.getClass("button")];A&&C.push(r.getClass("buttonActive")),i.push(J("button",{type:"button",title:typeof y=="function"?y(t.navUnit):y,disabled:S,"aria-pressed":A,className:C.join(" "),onClick:f},g||(v?J("span",{className:v}):"")))}}if(i.length>1){let l=o&&r.getClass("buttonGroup")||"";return J("div",{className:l},...i)}return i[0]}}class _u extends Ct{render(){let{model:e,extraClassName:t}=this.props,r=!1,i,o,l=e.sectionWidgets,d=l.center;return l.left?(r=!0,i=l.left):i=l.start,l.right?(r=!0,o=l.right):o=l.end,J("div",{className:[t||"","fc-toolbar",r?"fc-toolbar-ltr":""].join(" ")},this.renderSection("start",i||[]),this.renderSection("center",d||[]),this.renderSection("end",o||[]))}renderSection(e,t){let{props:r}=this;return J(g1,{key:e,widgetGroups:t,title:r.title,navUnit:r.navUnit,activeButton:r.activeButton,isTodayEnabled:r.isTodayEnabled,isPrevEnabled:r.isPrevEnabled,isNextEnabled:r.isNextEnabled,titleId:r.titleId})}}class m1 extends Ct{constructor(){super(...arguments),this.state={availableWidth:null},this.handleEl=e=>{this.el=e,Vn(this.props.elRef,e),this.updateAvailableWidth()},this.handleResize=()=>{this.updateAvailableWidth()}}render(){let{props:e,state:t}=this,{aspectRatio:r}=e,i=["fc-view-harness",r||e.liquid||e.height?"fc-view-harness-active":"fc-view-harness-passive"],o="",l="";return r?t.availableWidth!==null?o=t.availableWidth/r:l=`${1/r*100}%`:o=e.height||"",J("div",{"aria-labelledby":e.labeledById,ref:this.handleEl,className:i.join(" "),style:{height:o,paddingBottom:l}},e.children)}componentDidMount(){this.context.addResizeHandler(this.handleResize)}componentWillUnmount(){this.context.removeResizeHandler(this.handleResize)}updateAvailableWidth(){this.el&&this.props.aspectRatio&&this.setState({availableWidth:this.el.offsetWidth})}}class y1 extends Xd{constructor(e){super(e),this.handleSegClick=(t,r)=>{let{component:i}=this,{context:o}=i,l=Hs(r);if(l&&i.isValidSegDownEl(t.target)){let d=Bn(t.target,".fc-event-forced-url"),f=d?d.querySelector("a[href]").href:"";o.emitter.trigger("eventClick",{el:r,event:new pn(i.context,l.eventRange.def,l.eventRange.instance),jsEvent:t,view:o.viewApi}),f&&!t.defaultPrevented&&(window.location.href=f)}},this.destroy=wd(e.el,"click",".fc-event",this.handleSegClick)}}class b1 extends Xd{constructor(e){super(e),this.handleEventElRemove=t=>{t===this.currentSegEl&&this.handleSegLeave(null,this.currentSegEl)},this.handleSegEnter=(t,r)=>{Hs(r)&&(this.currentSegEl=r,this.triggerEvent("eventMouseEnter",t,r))},this.handleSegLeave=(t,r)=>{this.currentSegEl&&(this.currentSegEl=null,this.triggerEvent("eventMouseLeave",t,r))},this.removeHoverListeners=av(e.el,".fc-event",this.handleSegEnter,this.handleSegLeave)}destroy(){this.removeHoverListeners()}triggerEvent(e,t,r){let{component:i}=this,{context:o}=i,l=Hs(r);(!t||i.isValidSegDownEl(t.target))&&o.emitter.trigger(e,{el:r,event:new pn(o,l.eventRange.def,l.eventRange.instance),jsEvent:t,view:o.viewApi})}}class S1 extends Or{constructor(){super(...arguments),this.buildViewContext=ct(ag),this.buildViewPropTransformers=ct(L1),this.buildToolbarProps=ct(A1),this.headerRef=Fn(),this.footerRef=Fn(),this.interactionsStore={},this.state={viewLabelId:Ja()},this.registerInteractiveComponent=(e,t)=>{let r=dm(e,t),l=[y1,b1].concat(this.props.pluginHooks.componentInteractions).map(d=>new d(r));this.interactionsStore[e.uid]=l,yu[e.uid]=r},this.unregisterInteractiveComponent=e=>{let t=this.interactionsStore[e.uid];if(t){for(let r of t)r.destroy();delete this.interactionsStore[e.uid]}delete yu[e.uid]},this.resizeRunner=new Qs(()=>{this.props.emitter.trigger("_resize",!0),this.props.emitter.trigger("windowResize",{view:this.props.viewApi})}),this.handleWindowResize=e=>{let{options:t}=this.props;t.handleWindowResize&&e.target===window&&this.resizeRunner.request(t.windowResizeDelay)}}render(){let{props:e}=this,{toolbarConfig:t,options:r}=e,i=this.buildToolbarProps(e.viewSpec,e.dateProfile,e.dateProfileGenerator,e.currentDate,Ri(e.options.now,e.dateEnv),e.viewTitle),o=!1,l="",d;e.isHeightAuto||e.forPrint?l="":r.height!=null?o=!0:r.contentHeight!=null?l=r.contentHeight:d=Math.max(r.aspectRatio,.5);let f=this.buildViewContext(e.viewSpec,e.viewApi,e.options,e.dateProfileGenerator,e.dateEnv,e.theme,e.pluginHooks,e.dispatch,e.getCurrentData,e.emitter,e.calendarApi,this.registerInteractiveComponent,this.unregisterInteractiveComponent),g=t.header&&t.header.hasTitle?this.state.viewLabelId:"";return J(Tr.Provider,{value:f},t.header&&J(_u,Object.assign({ref:this.headerRef,extraClassName:"fc-header-toolbar",model:t.header,titleId:g},i)),J(m1,{liquid:o,height:l,aspectRatio:d,labeledById:g},this.renderView(e),this.buildAppendContent()),t.footer&&J(_u,Object.assign({ref:this.footerRef,extraClassName:"fc-footer-toolbar",model:t.footer,titleId:""},i)))}componentDidMount(){let{props:e}=this;this.calendarInteractions=e.pluginHooks.calendarInteractions.map(r=>new r(e)),window.addEventListener("resize",this.handleWindowResize);let{propSetHandlers:t}=e.pluginHooks;for(let r in t)t[r](e[r],e)}componentDidUpdate(e){let{props:t}=this,{propSetHandlers:r}=t.pluginHooks;for(let i in r)t[i]!==e[i]&&r[i](t[i],t)}componentWillUnmount(){window.removeEventListener("resize",this.handleWindowResize),this.resizeRunner.clear();for(let e of this.calendarInteractions)e.destroy();this.props.emitter.trigger("_unmount")}buildAppendContent(){let{props:e}=this,t=e.pluginHooks.viewContainerAppends.map(r=>r(e));return J(Dt,{},...t)}renderView(e){let{pluginHooks:t}=e,{viewSpec:r}=e,i={dateProfile:e.dateProfile,businessHours:e.businessHours,eventStore:e.renderableEventStore,eventUiBases:e.eventUiBases,dateSelection:e.dateSelection,eventSelection:e.eventSelection,eventDrag:e.eventDrag,eventResize:e.eventResize,isHeightAuto:e.isHeightAuto,forPrint:e.forPrint},o=this.buildViewPropTransformers(t.viewPropsTransformers);for(let d of o)Object.assign(i,d.transform(i,e));let l=r.component;return J(l,Object.assign({},i))}}function A1(n,e,t,r,i,o){let l=t.build(i,void 0,!1),d=t.buildPrev(e,r,!1),f=t.buildNext(e,r,!1);return{title:o,activeButton:n.type,navUnit:n.singleUnit,isTodayEnabled:l.isValid&&!tr(e.currentRange,i),isPrevEnabled:d.isValid,isNextEnabled:f.isValid}}function L1(n){return n.map(e=>new e)}class w1 extends fm{constructor(e,t={}){super(),this.isRendering=!1,this.isRendered=!1,this.currentClassNames=[],this.customContentRenderId=0,this.handleAction=r=>{switch(r.type){case"SET_EVENT_DRAG":case"SET_EVENT_RESIZE":this.renderRunner.tryDrain()}},this.handleData=r=>{this.currentData=r,this.renderRunner.request(r.calendarOptions.rerenderDelay)},this.handleRenderRequest=()=>{if(this.isRendering){this.isRendered=!0;let{currentData:r}=this;cu(()=>{Ei(J(um,{options:r.calendarOptions,theme:r.theme,emitter:r.emitter},(i,o,l,d)=>(this.setClassNames(i),this.setHeight(o),J(Md.Provider,{value:this.customContentRenderId},J(S1,Object.assign({isHeightAuto:l,forPrint:d},r))))),this.el)})}else this.isRendered&&(this.isRendered=!1,Ei(null,this.el),this.setClassNames([]),this.setHeight(""))},Yh(e),this.el=e,this.renderRunner=new Qs(this.handleRenderRequest),new s1({optionOverrides:t,calendarApi:this,onAction:this.handleAction,onData:this.handleData})}render(){let e=this.isRendering;e?this.customContentRenderId+=1:this.isRendering=!0,this.renderRunner.request(),e&&this.updateSize()}destroy(){this.isRendering&&(this.isRendering=!1,this.renderRunner.request())}updateSize(){cu(()=>{super.updateSize()})}batchRendering(e){this.renderRunner.pause("batchRendering"),e(),this.renderRunner.resume("batchRendering")}pauseRendering(){this.renderRunner.pause("pauseRendering")}resumeRendering(){this.renderRunner.resume("pauseRendering",!0)}resetOptions(e,t){this.currentDataManager.resetOptions(e,t)}setClassNames(e){if(!nr(e,this.currentClassNames)){let{classList:t}=this.el;for(let r of this.currentClassNames)t.remove(r);for(let r of e)t.add(r);this.currentClassNames=e}}setHeight(e){Ld(this.el,"height",e)}}const E1={headerToolbar:!0,footerToolbar:!0,events:!0,eventSources:!0,resources:!0},Ea=typeof document!="undefined"?document.createDocumentFragment():null,C1=Rt.extend({render(n){return n("aside",{style:{display:"none"}},this.$slots.default||[])},mounted(){Ea&&Ea.appendChild(this.$el)},beforeDestroy(){Ea&&Ea.removeChild(this.$el)}}),x1=C1,Sr=typeof document!="undefined"?document.createDocumentFragment():null,T1=Rt.extend({props:{inPlaceOf:typeof Element!="undefined"?Element:Object,reportEl:Function,elTag:String,elClasses:Array,elStyle:Object,elAttrs:Object},render(n){return n(this.elTag,{class:this.elClasses,style:this.elStyle,attrs:this.elAttrs},this.$slots.default||[])},mounted(){Du(this.$el,this.inPlaceOf),this.inPlaceOf.style.display="none",this.reportEl(this.$el)},updated(){Sr&&this.inPlaceOf.parentNode!==Sr&&(Du(this.$el,this.inPlaceOf),this.reportEl(this.$el))},beforeDestroy(){Sr&&this.inPlaceOf.parentNode===Sr&&Sr.removeChild(this.inPlaceOf),this.reportEl(null)}}),O1=T1;function Du(n,e){var t;(t=e.parentNode)===null||t===void 0||t.insertBefore(n,e.nextSibling),Sr&&Sr.appendChild(e)}const _1=Rt.extend({props:{options:Object},data(){return{renderId:0,customRenderingMap:new Map}},methods:{getApi(){return this.calendar},buildOptions(n){return Object.assign(Object.assign({},n),{customRenderingMetaMap:R1(this.$scopedSlots),handleCustomRendering:this.handleCustomRendering,customRenderingReplacesEl:!0})}},render(n){const e=[];for(const t of this.customRenderingMap.values()){const r=typeof t.generatorMeta=="function"?t.generatorMeta(t.renderProps):t.generatorMeta;e.push(n("div",{key:t.id},[n(O1,{key:t.id,props:{inPlaceOf:t.containerEl,reportEl:t.reportNewContainerEl,elTag:t.elTag,elClasses:t.elClasses,elStyle:t.elStyle,elAttrs:t.elAttrs}},r)]))}return n("div",{attrs:{"data-fc-render-id":this.renderId}},[n(x1,e)])},mounted(){const n=new ly;this.handleCustomRendering=n.handle.bind(n);const e=this.buildOptions(this.options),t=new w1(this.$el,e);this.calendar=t,t.render(),n.subscribe(r=>{this.customRenderingMap=r,this.renderId++,this.needCustomRenderingResize=!0})},beforeUpdate(){this.getApi().resumeRendering()},updated(){this.needCustomRenderingResize&&(this.needCustomRenderingResize=!1,this.getApi().updateSize())},beforeDestroy(){this.getApi().destroy()},watch:D1()}),mf=_1;function D1(){let n={options:{deep:!0,handler(e){let t=this.getApi();t.pauseRendering();let r=this.buildOptions(e);t.resetOptions(r),this.renderId++}}};for(let e in E1)n[`options.${e}`]={deep:!0,handler(t){if(t!==void 0){let r=this.getApi();r.pauseRendering(),r.resetOptions({[e]:t},[e]),this.renderId++}}};return n}function R1(n){const e={};for(const t in n)e[M1(t)]=n[t];return e}function M1(n){return n.split("-").map((e,t)=>t?I1(e):e).join("")}function I1(n){return n.charAt(0).toUpperCase()+n.slice(1)}let Ru=!1;function k1(n){Ru||(Ru=!0,n.component("FullCalendar",mf))}let Ga;typeof globalThis!="undefined"?Ga=globalThis.Vue:Ga=window.Vue;Ga&&Ga.use({install:k1});class P1 extends _r{constructor(){super(...arguments),this.headerElRef=Fn()}renderSimpleLayout(e,t){let{props:r,context:i}=this,o=[],l=Lu(i.options);return e&&o.push({type:"header",key:"header",isSticky:l,chunk:{elRef:this.headerElRef,tableClassName:"fc-col-header",rowContent:e}}),o.push({type:"body",key:"body",liquid:!0,chunk:{content:t}}),J(uu,{elClasses:["fc-daygrid"],viewSpec:i.viewSpec},J(af,{liquid:!r.isHeightAuto&&!r.forPrint,collapsibleWidth:r.forPrint,cols:[],sections:o}))}renderHScrollLayout(e,t,r,i){let o=this.context.pluginHooks.scrollGridImpl;if(!o)throw new Error("No ScrollGrid implementation");let{props:l,context:d}=this,f=!l.forPrint&&Lu(d.options),g=!l.forPrint&&Vm(d.options),v=[];return e&&v.push({type:"header",key:"header",isSticky:f,chunks:[{key:"main",elRef:this.headerElRef,tableClassName:"fc-col-header",rowContent:e}]}),v.push({type:"body",key:"body",liquid:!0,chunks:[{key:"main",content:t}]}),g&&v.push({type:"footer",key:"footer",isSticky:!0,chunks:[{key:"main",content:Fm}]}),J(uu,{elClasses:["fc-daygrid"],viewSpec:d.viewSpec},J(o,{liquid:!l.isHeightAuto&&!l.forPrint,forPrint:l.forPrint,collapsibleWidth:l.forPrint,colGroups:[{cols:[{span:r,minWidth:i}]}],sections:v}))}}function Ca(n,e){let t=[];for(let r=0;r<e;r+=1)t[r]=[];for(let r of n)t[r.row].push(r);return t}function xa(n,e){let t=[];for(let r=0;r<e;r+=1)t[r]=[];for(let r of n)t[r.firstCol].push(r);return t}function Mu(n,e){let t=[];if(n){for(let r=0;r<e;r+=1)t[r]={affectedInstances:n.affectedInstances,isEvent:n.isEvent,segs:[]};for(let r of n.segs)t[r.row].segs.push(r)}else for(let r=0;r<e;r+=1)t[r]=null;return t}const yf=Ut({hour:"numeric",minute:"2-digit",omitZeroMinute:!0,meridiem:"narrow"});function bf(n){let{display:e}=n.eventRange.ui;return e==="list-item"||e==="auto"&&!n.eventRange.def.allDay&&n.firstCol===n.lastCol&&n.isStart&&n.isEnd}class Sf extends Ct{render(){let{props:e}=this;return J(Um,Object.assign({},e,{elClasses:["fc-daygrid-event","fc-daygrid-block-event","fc-h-event"],defaultTimeFormat:yf,defaultDisplayEventEnd:e.defaultDisplayEventEnd,disableResizing:!e.seg.eventRange.def.allDay}))}}class Af extends Ct{render(){let{props:e,context:t}=this,{options:r}=t,{seg:i}=e,o=r.eventTimeFormat||yf,l=Yd(i,o,t,!0,e.defaultDisplayEventEnd);return J(cl,Object.assign({},e,{elTag:"a",elClasses:["fc-daygrid-event","fc-daygrid-dot-event"],elAttrs:Zd(e.seg,t),defaultGenerator:N1,timeText:l,isResizing:!1,isDateSelecting:!1}))}}function N1(n){return J(Dt,null,J("div",{className:"fc-daygrid-event-dot",style:{borderColor:n.borderColor||n.backgroundColor}}),n.timeText&&J("div",{className:"fc-event-time"},n.timeText),J("div",{className:"fc-event-title"},n.event.title||J(Dt,null,"\xA0")))}class j1 extends Ct{constructor(){super(...arguments),this.compileSegs=ct($1)}render(){let{props:e}=this,{allSegs:t,invisibleSegs:r}=this.compileSegs(e.singlePlacements);return J(ty,{elClasses:["fc-daygrid-more-link"],dateProfile:e.dateProfile,todayRange:e.todayRange,allDayDate:e.allDayDate,moreCnt:e.moreCnt,allSegs:t,hiddenSegs:r,alignmentElRef:e.alignmentElRef,alignGridTop:e.alignGridTop,extraDateSpan:e.extraDateSpan,popoverContent:()=>{let i=(e.eventDrag?e.eventDrag.affectedInstances:null)||(e.eventResize?e.eventResize.affectedInstances:null)||{};return J(Dt,null,t.map(o=>{let l=o.eventRange.instance.instanceId;return J("div",{className:"fc-daygrid-event-harness",key:l,style:{visibility:i[l]?"hidden":""}},bf(o)?J(Af,Object.assign({seg:o,isDragging:!1,isSelected:l===e.eventSelection,defaultDisplayEventEnd:!1},yi(o,e.todayRange))):J(Sf,Object.assign({seg:o,isDragging:!1,isResizing:!1,isDateSelecting:!1,isSelected:l===e.eventSelection,defaultDisplayEventEnd:!1},yi(o,e.todayRange))))}))}})}}function $1(n){let e=[],t=[];for(let r of n)e.push(r.seg),r.isVisible||t.push(r.seg);return{allSegs:e,invisibleSegs:t}}const H1=Ut({week:"narrow"});class B1 extends _r{constructor(){super(...arguments),this.rootElRef=Fn(),this.state={dayNumberId:Ja()},this.handleRootEl=e=>{Vn(this.rootElRef,e),Vn(this.props.elRef,e)}}render(){let{context:e,props:t,state:r,rootElRef:i}=this,{options:o,dateEnv:l}=e,{date:d,dateProfile:f}=t;const g=t.showDayNumber&&V1(d,f.currentRange,l);return J(of,{elTag:"td",elRef:this.handleRootEl,elClasses:["fc-daygrid-day",...t.extraClassNames||[]],elAttrs:Object.assign(Object.assign(Object.assign({},t.extraDataAttrs),t.showDayNumber?{"aria-labelledby":r.dayNumberId}:{}),{role:"gridcell"}),defaultGenerator:F1,date:d,dateProfile:f,todayRange:t.todayRange,showDayNumber:t.showDayNumber,isMonthStart:g,extraRenderProps:t.extraRenderProps},(v,y)=>J("div",{ref:t.innerElRef,className:"fc-daygrid-day-frame fc-scrollgrid-sync-inner",style:{minHeight:t.minHeight}},t.showWeekNumber&&J(Jm,{elTag:"a",elClasses:["fc-daygrid-week-number"],elAttrs:Bs(e,d,"week"),date:d,defaultFormat:H1}),!y.isDisabled&&(t.showDayNumber||sf(o)||t.forceDayTop)?J("div",{className:"fc-daygrid-day-top"},J(v,{elTag:"a",elClasses:["fc-daygrid-day-number",g&&"fc-daygrid-month-start"],elAttrs:Object.assign(Object.assign({},Bs(e,d)),{id:r.dayNumberId})})):t.showDayNumber?J("div",{className:"fc-daygrid-day-top",style:{visibility:"hidden"}},J("a",{className:"fc-daygrid-day-number"},"\xA0")):void 0,J("div",{className:"fc-daygrid-day-events",ref:t.fgContentElRef},t.fgContent,J("div",{className:"fc-daygrid-day-bottom",style:{marginTop:t.moreMarginTop}},J(j1,{allDayDate:d,singlePlacements:t.singlePlacements,moreCnt:t.moreCnt,alignmentElRef:i,alignGridTop:!t.showDayNumber,extraDateSpan:t.extraDateSpan,dateProfile:t.dateProfile,eventSelection:t.eventSelection,eventDrag:t.eventDrag,eventResize:t.eventResize,todayRange:t.todayRange}))),J("div",{className:"fc-daygrid-day-bg"},t.bgContent)))}}function F1(n){return n.dayNumberText||J(Dt,null,"\xA0")}function V1(n,e,t){const{start:r,end:i}=e,o=rr(i,-1),l=t.getYear(r),d=t.getMonth(r),f=t.getYear(o),g=t.getMonth(o);return!(l===f&&d===g)&&Boolean(n.valueOf()===r.valueOf()||t.getDay(n)===1&&n.valueOf()<i.valueOf())}function z1(n,e,t,r,i,o,l){let d=new G1;d.allowReslicing=!0,d.strictOrder=r,e===!0||t===!0?(d.maxCoord=o,d.hiddenConsumes=!0):typeof e=="number"?d.maxStackCnt=e:typeof t=="number"&&(d.maxStackCnt=t,d.hiddenConsumes=!0);let f=[],g=[];for(let D=0;D<n.length;D+=1){let P=n[D],{instanceId:V}=P.eventRange.instance,x=i[V];x!=null?f.push({index:D,thickness:x,span:{start:P.firstCol,end:P.lastCol+1}}):g.push(P)}let v=d.addSegs(f),y=d.toRects(),{singleColPlacements:A,multiColPlacements:S,leftoverMargins:C}=U1(y,n,l),_=[],T=[];for(let D of g){S[D.firstCol].push({seg:D,isVisible:!1,isAbsolute:!0,absoluteTop:0,marginTop:0});for(let P=D.firstCol;P<=D.lastCol;P+=1)A[P].push({seg:Gr(D,P,P+1,l),isVisible:!1,isAbsolute:!1,absoluteTop:0,marginTop:0})}for(let D=0;D<l.length;D+=1)_.push(0);for(let D of v){let P=n[D.index],V=D.span;S[V.start].push({seg:Gr(P,V.start,V.end,l),isVisible:!1,isAbsolute:!0,absoluteTop:0,marginTop:0});for(let x=V.start;x<V.end;x+=1)_[x]+=1,A[x].push({seg:Gr(P,x,x+1,l),isVisible:!1,isAbsolute:!1,absoluteTop:0,marginTop:0})}for(let D=0;D<l.length;D+=1)T.push(C[D]);return{singleColPlacements:A,multiColPlacements:S,moreCnts:_,moreMarginTops:T}}function U1(n,e,t){let r=W1(n,t.length),i=[],o=[],l=[];for(let d=0;d<t.length;d+=1){let f=r[d],g=[],v=0,y=0;for(let S of f){let C=e[S.index];g.push({seg:Gr(C,d,d+1,t),isVisible:!0,isAbsolute:!1,absoluteTop:S.levelCoord,marginTop:S.levelCoord-v}),v=S.levelCoord+S.thickness}let A=[];v=0,y=0;for(let S of f){let C=e[S.index],_=S.span.end-S.span.start>1,T=S.span.start===d;y+=S.levelCoord-v,v=S.levelCoord+S.thickness,_?(y+=S.thickness,T&&A.push({seg:Gr(C,S.span.start,S.span.end,t),isVisible:!0,isAbsolute:!0,absoluteTop:S.levelCoord,marginTop:0})):T&&(A.push({seg:Gr(C,S.span.start,S.span.end,t),isVisible:!0,isAbsolute:!1,absoluteTop:S.levelCoord,marginTop:y}),y=0)}i.push(g),o.push(A),l.push(y)}return{singleColPlacements:i,multiColPlacements:o,leftoverMargins:l}}function W1(n,e){let t=[];for(let r=0;r<e;r+=1)t.push([]);for(let r of n)for(let i=r.span.start;i<r.span.end;i+=1)t[i].push(r);return t}function Gr(n,e,t,r){if(n.firstCol===e&&n.lastCol===t-1)return n;let i=n.eventRange,o=i.range,l=Qr(o,{start:r[e].date,end:Zt(r[t-1].date,1)});return Object.assign(Object.assign({},n),{firstCol:e,lastCol:t-1,eventRange:{def:i.def,ui:Object.assign(Object.assign({},i.ui),{durationEditable:!1}),instance:i.instance,range:l},isStart:n.isStart&&l.start.valueOf()===o.start.valueOf(),isEnd:n.isEnd&&l.end.valueOf()===o.end.valueOf()})}class G1 extends Am{constructor(){super(...arguments),this.hiddenConsumes=!1,this.forceHidden={}}addSegs(e){const t=super.addSegs(e),{entriesByLevel:r}=this,i=o=>!this.forceHidden[bi(o)];for(let o=0;o<r.length;o+=1)r[o]=r[o].filter(i);return t}handleInvalidInsertion(e,t,r){const{entriesByLevel:i,forceHidden:o}=this,{touchingEntry:l,touchingLevel:d,touchingLateral:f}=e;if(this.hiddenConsumes&&l){const g=bi(l);if(!o[g])if(this.allowReslicing){const v=Object.assign(Object.assign({},l),{span:ef(l.span,t.span)}),y=bi(v);o[y]=!0,i[d][f]=v,this.splitEntry(l,t,r)}else o[g]=!0,r.push(l)}return super.handleInvalidInsertion(e,t,r)}}class Lf extends _r{constructor(){super(...arguments),this.cellElRefs=new Ar,this.frameElRefs=new Ar,this.fgElRefs=new Ar,this.segHarnessRefs=new Ar,this.rootElRef=Fn(),this.state={framePositions:null,maxContentHeight:null,eventInstanceHeights:{}},this.handleResize=e=>{e&&this.updateSizing(!0)}}render(){let{props:e,state:t,context:r}=this,{options:i}=r,o=e.cells.length,l=xa(e.businessHourSegs,o),d=xa(e.bgEventSegs,o),f=xa(this.getHighlightSegs(),o),g=xa(this.getMirrorSegs(),o),{singleColPlacements:v,multiColPlacements:y,moreCnts:A,moreMarginTops:S}=z1(Qg(e.fgEventSegs,i.eventOrder),e.dayMaxEvents,e.dayMaxEventRows,i.eventOrderStrict,t.eventInstanceHeights,t.maxContentHeight,e.cells),C=e.eventDrag&&e.eventDrag.affectedInstances||e.eventResize&&e.eventResize.affectedInstances||{};return J("tr",{ref:this.rootElRef,role:"row"},e.renderIntro&&e.renderIntro(),e.cells.map((_,T)=>{let D=this.renderFgSegs(T,e.forPrint?v[T]:y[T],e.todayRange,C),P=this.renderFgSegs(T,Y1(g[T],y),e.todayRange,{},Boolean(e.eventDrag),Boolean(e.eventResize),!1);return J(B1,{key:_.key,elRef:this.cellElRefs.createRef(_.key),innerElRef:this.frameElRefs.createRef(_.key),dateProfile:e.dateProfile,date:_.date,showDayNumber:e.showDayNumbers,showWeekNumber:e.showWeekNumbers&&T===0,forceDayTop:e.showWeekNumbers,todayRange:e.todayRange,eventSelection:e.eventSelection,eventDrag:e.eventDrag,eventResize:e.eventResize,extraRenderProps:_.extraRenderProps,extraDataAttrs:_.extraDataAttrs,extraClassNames:_.extraClassNames,extraDateSpan:_.extraDateSpan,moreCnt:A[T],moreMarginTop:S[T],singlePlacements:v[T],fgContentElRef:this.fgElRefs.createRef(_.key),fgContent:J(Dt,null,J(Dt,null,D),J(Dt,null,P)),bgContent:J(Dt,null,this.renderFillSegs(f[T],"highlight"),this.renderFillSegs(l[T],"non-business"),this.renderFillSegs(d[T],"bg-event")),minHeight:e.cellMinHeight})}))}componentDidMount(){this.updateSizing(!0),this.context.addResizeHandler(this.handleResize)}componentDidUpdate(e,t){let r=this.props;this.updateSizing(!_n(e,r))}componentWillUnmount(){this.context.removeResizeHandler(this.handleResize)}getHighlightSegs(){let{props:e}=this;return e.eventDrag&&e.eventDrag.segs.length?e.eventDrag.segs:e.eventResize&&e.eventResize.segs.length?e.eventResize.segs:e.dateSelectionSegs}getMirrorSegs(){let{props:e}=this;return e.eventResize&&e.eventResize.segs.length?e.eventResize.segs:[]}renderFgSegs(e,t,r,i,o,l,d){let{context:f}=this,{eventSelection:g}=this.props,{framePositions:v}=this.state,y=this.props.cells.length===1,A=o||l||d,S=[];if(v)for(let C of t){let{seg:_}=C,{instanceId:T}=_.eventRange.instance,D=T+":"+e,P=C.isVisible&&!i[T],V=C.isAbsolute,x="",X="";V&&(f.isRtl?(X=0,x=v.lefts[_.lastCol]-v.lefts[_.firstCol]):(x=0,X=v.rights[_.firstCol]-v.rights[_.lastCol])),S.push(J("div",{className:"fc-daygrid-event-harness"+(V?" fc-daygrid-event-harness-abs":""),key:D,ref:A?null:this.segHarnessRefs.createRef(D),style:{visibility:P?"":"hidden",marginTop:V?"":C.marginTop,top:V?C.absoluteTop:"",left:x,right:X}},bf(_)?J(Af,Object.assign({seg:_,isDragging:o,isSelected:T===g,defaultDisplayEventEnd:y},yi(_,r))):J(Sf,Object.assign({seg:_,isDragging:o,isResizing:l,isDateSelecting:d,isSelected:T===g,defaultDisplayEventEnd:y},yi(_,r)))))}return S}renderFillSegs(e,t){let{isRtl:r}=this.context,{todayRange:i}=this.props,{framePositions:o}=this.state,l=[];if(o)for(let d of e){let f=r?{right:0,left:o.lefts[d.lastCol]-o.lefts[d.firstCol]}:{left:0,right:o.rights[d.firstCol]-o.rights[d.lastCol]};l.push(J("div",{key:tm(d.eventRange),className:"fc-daygrid-bg-harness",style:f},t==="bg-event"?J(Zm,Object.assign({seg:d},yi(d,i))):Km(t)))}return J(Dt,{},...l)}updateSizing(e){let{props:t,state:r,frameElRefs:i}=this;if(!t.forPrint&&t.clientWidth!==null){if(e){let f=t.cells.map(g=>i.currentMap[g.key]);if(f.length){let g=this.rootElRef.current,v=new Wa(g,f,!0,!1);(!r.framePositions||!r.framePositions.similarTo(v))&&this.setState({framePositions:new Wa(g,f,!0,!1)})}}const o=this.state.eventInstanceHeights,l=this.queryEventInstanceHeights(),d=t.dayMaxEvents===!0||t.dayMaxEventRows===!0;this.safeSetState({eventInstanceHeights:Object.assign(Object.assign({},o),l),maxContentHeight:d?this.computeMaxContentHeight():null})}}queryEventInstanceHeights(){let e=this.segHarnessRefs.currentMap,t={};for(let r in e){let i=Math.round(e[r].getBoundingClientRect().height),o=r.split(":")[0];t[o]=Math.max(t[o]||0,i)}return t}computeMaxContentHeight(){let e=this.props.cells[0].key,t=this.cellElRefs.currentMap[e],r=this.fgElRefs.currentMap[e];return t.getBoundingClientRect().bottom-r.getBoundingClientRect().top}getCellEls(){let e=this.cellElRefs.currentMap;return this.props.cells.map(t=>e[t.key])}}Lf.addStateEquality({eventInstanceHeights:_n});function Y1(n,e){if(!n.length)return[];let t=Z1(e);return n.map(r=>({seg:r,isVisible:!0,isAbsolute:!0,absoluteTop:t[r.eventRange.instance.instanceId],marginTop:0}))}function Z1(n){let e={};for(let t of n)for(let r of t)e[r.seg.eventRange.instance.instanceId]=r.absoluteTop;return e}class Q1 extends _r{constructor(){super(...arguments),this.splitBusinessHourSegs=ct(Ca),this.splitBgEventSegs=ct(Ca),this.splitFgEventSegs=ct(Ca),this.splitDateSelectionSegs=ct(Ca),this.splitEventDrag=ct(Mu),this.splitEventResize=ct(Mu),this.rowRefs=new Ar}render(){let{props:e,context:t}=this,r=e.cells.length,i=this.splitBusinessHourSegs(e.businessHourSegs,r),o=this.splitBgEventSegs(e.bgEventSegs,r),l=this.splitFgEventSegs(e.fgEventSegs,r),d=this.splitDateSelectionSegs(e.dateSelectionSegs,r),f=this.splitEventDrag(e.eventDrag,r),g=this.splitEventResize(e.eventResize,r),v=r>=7&&e.clientWidth?e.clientWidth/t.options.aspectRatio/6:null;return J(ll,{unit:"day"},(y,A)=>J(Dt,null,e.cells.map((S,C)=>J(Lf,{ref:this.rowRefs.createRef(C),key:S.length?S[0].date.toISOString():C,showDayNumbers:r>1,showWeekNumbers:e.showWeekNumbers,todayRange:A,dateProfile:e.dateProfile,cells:S,renderIntro:e.renderRowIntro,businessHourSegs:i[C],eventSelection:e.eventSelection,bgEventSegs:o[C].filter(K1),fgEventSegs:l[C],dateSelectionSegs:d[C],eventDrag:f[C],eventResize:g[C],dayMaxEvents:e.dayMaxEvents,dayMaxEventRows:e.dayMaxEventRows,clientWidth:e.clientWidth,clientHeight:e.clientHeight,cellMinHeight:v,forPrint:e.forPrint}))))}componentDidMount(){const e=this.rowRefs.currentMap[0].getCellEls()[0];this.rootEl=e?e.closest(".fc-daygrid-body"):null,this.rootEl&&this.context.registerInteractiveComponent(this,{el:this.rootEl,isHitComboAllowed:this.props.isHitComboAllowed})}componentWillUnmount(){this.rootEl&&(this.context.unregisterInteractiveComponent(this),this.rootEl=null)}prepareHits(){this.rowPositions=new Wa(this.rootEl,this.rowRefs.collect().map(e=>e.getCellEls()[0]),!1,!0),this.colPositions=new Wa(this.rootEl,this.rowRefs.currentMap[0].getCellEls(),!0,!1)}queryHit(e,t){let{colPositions:r,rowPositions:i}=this,o=r.leftToIndex(e),l=i.topToIndex(t);if(l!=null&&o!=null){let d=this.props.cells[l][o];return{dateProfile:this.props.dateProfile,dateSpan:Object.assign({range:this.getCellRange(l,o),allDay:!0},d.extraDateSpan),dayEl:this.getCellEl(l,o),rect:{left:r.lefts[o],right:r.rights[o],top:i.tops[l],bottom:i.bottoms[l]},layer:0}}return null}getCellEl(e,t){return this.rowRefs.currentMap[e].getCellEls()[t]}getCellRange(e,t){let r=this.props.cells[e][t].date,i=Zt(r,1);return{start:r,end:i}}}function K1(n){return n.eventRange.def.allDay}class J1 extends _r{constructor(){super(...arguments),this.elRef=Fn(),this.needsScrollReset=!1}render(){let{props:e}=this,{dayMaxEventRows:t,dayMaxEvents:r,expandRows:i}=e,o=r===!0||t===!0;o&&!i&&(o=!1,t=null,r=null);let l=["fc-daygrid-body",o?"fc-daygrid-body-balanced":"fc-daygrid-body-unbalanced",i?"":"fc-daygrid-body-natural"];return J("div",{ref:this.elRef,className:l.join(" "),style:{width:e.clientWidth,minWidth:e.tableMinWidth}},J("table",{role:"presentation",className:"fc-scrollgrid-sync-table",style:{width:e.clientWidth,minWidth:e.tableMinWidth,height:i?e.clientHeight:""}},e.colGroupNode,J("tbody",{role:"presentation"},J(Q1,{dateProfile:e.dateProfile,cells:e.cells,renderRowIntro:e.renderRowIntro,showWeekNumbers:e.showWeekNumbers,clientWidth:e.clientWidth,clientHeight:e.clientHeight,businessHourSegs:e.businessHourSegs,bgEventSegs:e.bgEventSegs,fgEventSegs:e.fgEventSegs,dateSelectionSegs:e.dateSelectionSegs,eventSelection:e.eventSelection,eventDrag:e.eventDrag,eventResize:e.eventResize,dayMaxEvents:r,dayMaxEventRows:t,forPrint:e.forPrint,isHitComboAllowed:e.isHitComboAllowed}))))}componentDidMount(){this.requestScrollReset()}componentDidUpdate(e){e.dateProfile!==this.props.dateProfile?this.requestScrollReset():this.flushScrollReset()}requestScrollReset(){this.needsScrollReset=!0,this.flushScrollReset()}flushScrollReset(){if(this.needsScrollReset&&this.props.clientWidth){const e=X1(this.elRef.current,this.props.dateProfile);if(e){const t=e.closest(".fc-daygrid-body"),r=t.closest(".fc-scroller"),i=e.getBoundingClientRect().top-t.getBoundingClientRect().top;r.scrollTop=i?i+1:0}this.needsScrollReset=!1}}}function X1(n,e){let t;return e.currentRangeUnit.match(/year|month/)&&(t=n.querySelector(`[data-date="${Dv(e.currentDate)}-01"]`)),t||(t=n.querySelector(`[data-date="${Ks(e.currentDate)}"]`)),t}class q1 extends Dm{constructor(){super(...arguments),this.forceDayIfListItem=!0}sliceRange(e,t){return t.sliceRange(e)}}class eb extends _r{constructor(){super(...arguments),this.slicer=new q1,this.tableRef=Fn()}render(){let{props:e,context:t}=this;return J(J1,Object.assign({ref:this.tableRef},this.slicer.sliceProps(e,e.dateProfile,e.nextDayThreshold,t,e.dayTableModel),{dateProfile:e.dateProfile,cells:e.dayTableModel.cells,colGroupNode:e.colGroupNode,tableMinWidth:e.tableMinWidth,renderRowIntro:e.renderRowIntro,dayMaxEvents:e.dayMaxEvents,dayMaxEventRows:e.dayMaxEventRows,showWeekNumbers:e.showWeekNumbers,expandRows:e.expandRows,headerAlignElRef:e.headerAlignElRef,clientWidth:e.clientWidth,clientHeight:e.clientHeight,forPrint:e.forPrint}))}}class tb extends P1{constructor(){super(...arguments),this.buildDayTableModel=ct(nb),this.headerRef=Fn(),this.tableRef=Fn()}render(){let{options:e,dateProfileGenerator:t}=this.context,{props:r}=this,i=this.buildDayTableModel(r.dateProfile,t),o=e.dayHeaders&&J(xm,{ref:this.headerRef,dateProfile:r.dateProfile,dates:i.headerDates,datesRepDistinctDays:i.rowCnt===1}),l=d=>J(eb,{ref:this.tableRef,dateProfile:r.dateProfile,dayTableModel:i,businessHours:r.businessHours,dateSelection:r.dateSelection,eventStore:r.eventStore,eventUiBases:r.eventUiBases,eventSelection:r.eventSelection,eventDrag:r.eventDrag,eventResize:r.eventResize,nextDayThreshold:e.nextDayThreshold,colGroupNode:d.tableColGroupNode,tableMinWidth:d.tableMinWidth,dayMaxEvents:e.dayMaxEvents,dayMaxEventRows:e.dayMaxEventRows,showWeekNumbers:e.weekNumbers,expandRows:!r.isHeightAuto,headerAlignElRef:this.headerElRef,clientWidth:d.clientWidth,clientHeight:d.clientHeight,forPrint:r.forPrint});return e.dayMinWidth?this.renderHScrollLayout(o,l,i.colCnt,e.dayMinWidth):this.renderSimpleLayout(o,l)}}function nb(n,e){let t=new Om(n.renderRange,e);return new _m(t,/year|month|week/.test(n.currentRangeUnit))}class rb extends Nd{buildRenderRange(e,t,r){let i=super.buildRenderRange(e,t,r),{props:o}=this;return ib({currentRange:i,snapToWeek:/^(year|month)$/.test(t),fixedWeekCount:o.fixedWeekCount,dateEnv:o.dateEnv})}}function ib(n){let{dateEnv:e,currentRange:t}=n,{start:r,end:i}=t,o;if(n.snapToWeek&&(r=e.startOfWeek(r),o=e.startOfWeek(i),o.valueOf()!==i.valueOf()&&(i=eu(o,1))),n.fixedWeekCount){let l=e.startOfWeek(e.startOfMonth(Zt(t.end,-1))),d=Math.ceil(yv(l,i));i=eu(i,6-d)}return{start:r,end:i}}var ab=':root{--fc-daygrid-event-dot-width:8px}.fc-daygrid-day-events:after,.fc-daygrid-day-events:before,.fc-daygrid-day-frame:after,.fc-daygrid-day-frame:before,.fc-daygrid-event-harness:after,.fc-daygrid-event-harness:before{clear:both;content:"";display:table}.fc .fc-daygrid-body{position:relative;z-index:1}.fc .fc-daygrid-day.fc-day-today{background-color:var(--fc-today-bg-color)}.fc .fc-daygrid-day-frame{min-height:100%;position:relative}.fc .fc-daygrid-day-top{display:flex;flex-direction:row-reverse}.fc .fc-day-other .fc-daygrid-day-top{opacity:.3}.fc .fc-daygrid-day-number{padding:4px;position:relative;z-index:4}.fc .fc-daygrid-month-start{font-size:1.1em;font-weight:700}.fc .fc-daygrid-day-events{margin-top:1px}.fc .fc-daygrid-body-balanced .fc-daygrid-day-events{left:0;position:absolute;right:0}.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{min-height:2em;position:relative}.fc .fc-daygrid-body-natural .fc-daygrid-day-events{margin-bottom:1em}.fc .fc-daygrid-event-harness{position:relative}.fc .fc-daygrid-event-harness-abs{left:0;position:absolute;right:0;top:0}.fc .fc-daygrid-bg-harness{bottom:0;position:absolute;top:0}.fc .fc-daygrid-day-bg .fc-non-business{z-index:1}.fc .fc-daygrid-day-bg .fc-bg-event{z-index:2}.fc .fc-daygrid-day-bg .fc-highlight{z-index:3}.fc .fc-daygrid-event{margin-top:1px;z-index:6}.fc .fc-daygrid-event.fc-event-mirror{z-index:7}.fc .fc-daygrid-day-bottom{font-size:.85em;margin:0 2px}.fc .fc-daygrid-day-bottom:after,.fc .fc-daygrid-day-bottom:before{clear:both;content:"";display:table}.fc .fc-daygrid-more-link{border-radius:3px;cursor:pointer;line-height:1;margin-top:1px;max-width:100%;overflow:hidden;padding:2px;position:relative;white-space:nowrap;z-index:4}.fc .fc-daygrid-more-link:hover{background-color:rgba(0,0,0,.1)}.fc .fc-daygrid-week-number{background-color:var(--fc-neutral-bg-color);color:var(--fc-neutral-text-color);min-width:1.5em;padding:2px;position:absolute;text-align:center;top:0;z-index:5}.fc .fc-more-popover .fc-popover-body{min-width:220px;padding:10px}.fc-direction-ltr .fc-daygrid-event.fc-event-start,.fc-direction-rtl .fc-daygrid-event.fc-event-end{margin-left:2px}.fc-direction-ltr .fc-daygrid-event.fc-event-end,.fc-direction-rtl .fc-daygrid-event.fc-event-start{margin-right:2px}.fc-direction-ltr .fc-daygrid-more-link{float:left}.fc-direction-ltr .fc-daygrid-week-number{border-radius:0 0 3px 0;left:0}.fc-direction-rtl .fc-daygrid-more-link{float:right}.fc-direction-rtl .fc-daygrid-week-number{border-radius:0 0 0 3px;right:0}.fc-liquid-hack .fc-daygrid-day-frame{position:static}.fc-daygrid-event{border-radius:3px;font-size:var(--fc-small-font-size);position:relative;white-space:nowrap}.fc-daygrid-block-event .fc-event-time{font-weight:700}.fc-daygrid-block-event .fc-event-time,.fc-daygrid-block-event .fc-event-title{padding:1px}.fc-daygrid-dot-event{align-items:center;display:flex;padding:2px 0}.fc-daygrid-dot-event .fc-event-title{flex-grow:1;flex-shrink:1;font-weight:700;min-width:0;overflow:hidden}.fc-daygrid-dot-event.fc-event-mirror,.fc-daygrid-dot-event:hover{background:rgba(0,0,0,.1)}.fc-daygrid-dot-event.fc-event-selected:before{bottom:-10px;top:-10px}.fc-daygrid-event-dot{border:calc(var(--fc-daygrid-event-dot-width)/2) solid var(--fc-event-border-color);border-radius:calc(var(--fc-daygrid-event-dot-width)/2);box-sizing:content-box;height:0;margin:0 4px;width:0}.fc-direction-ltr .fc-daygrid-event .fc-event-time{margin-right:3px}.fc-direction-rtl .fc-daygrid-event .fc-event-time{margin-left:3px}';bd(ab);var ob=Dr({name:"@fullcalendar/daygrid",initialView:"dayGridMonth",views:{dayGrid:{component:tb,dateProfileGeneratorClass:rb},dayGridDay:{type:"dayGrid",duration:{days:1}},dayGridWeek:{type:"dayGrid",duration:{weeks:1}},dayGridMonth:{type:"dayGrid",duration:{months:1},fixedWeekCount:!0},dayGridYear:{type:"dayGrid",duration:{years:1}}}}),nn="top",vn="bottom",gn="right",rn="left",dl="auto",Ii=[nn,vn,gn,rn],Kr="start",Ti="end",sb="clippingParents",wf="viewport",vi="popper",lb="reference",Iu=Ii.reduce(function(n,e){return n.concat([e+"-"+Kr,e+"-"+Ti])},[]),Ef=[].concat(Ii,[dl]).reduce(function(n,e){return n.concat([e,e+"-"+Kr,e+"-"+Ti])},[]),cb="beforeRead",ub="read",db="afterRead",fb="beforeMain",pb="main",hb="afterMain",vb="beforeWrite",gb="write",mb="afterWrite",yb=[cb,ub,db,fb,pb,hb,vb,gb,mb];function Dn(n){return n?(n.nodeName||"").toLowerCase():null}function cn(n){if(n==null)return window;if(n.toString()!=="[object Window]"){var e=n.ownerDocument;return e&&e.defaultView||window}return n}function Cr(n){var e=cn(n).Element;return n instanceof e||n instanceof Element}function hn(n){var e=cn(n).HTMLElement;return n instanceof e||n instanceof HTMLElement}function fl(n){if(typeof ShadowRoot=="undefined")return!1;var e=cn(n).ShadowRoot;return n instanceof e||n instanceof ShadowRoot}function bb(n){var e=n.state;Object.keys(e.elements).forEach(function(t){var r=e.styles[t]||{},i=e.attributes[t]||{},o=e.elements[t];!hn(o)||!Dn(o)||(Object.assign(o.style,r),Object.keys(i).forEach(function(l){var d=i[l];d===!1?o.removeAttribute(l):o.setAttribute(l,d===!0?"":d)}))})}function Sb(n){var e=n.state,t={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,t.popper),e.styles=t,e.elements.arrow&&Object.assign(e.elements.arrow.style,t.arrow),function(){Object.keys(e.elements).forEach(function(r){var i=e.elements[r],o=e.attributes[r]||{},l=Object.keys(e.styles.hasOwnProperty(r)?e.styles[r]:t[r]),d=l.reduce(function(f,g){return f[g]="",f},{});!hn(i)||!Dn(i)||(Object.assign(i.style,d),Object.keys(o).forEach(function(f){i.removeAttribute(f)}))})}}const Cf={name:"applyStyles",enabled:!0,phase:"write",fn:bb,effect:Sb,requires:["computeStyles"]};function On(n){return n.split("-")[0]}var wr=Math.max,Ya=Math.min,Jr=Math.round;function Vs(){var n=navigator.userAgentData;return n!=null&&n.brands&&Array.isArray(n.brands)?n.brands.map(function(e){return e.brand+"/"+e.version}).join(" "):navigator.userAgent}function xf(){return!/^((?!chrome|android).)*safari/i.test(Vs())}function Xr(n,e,t){e===void 0&&(e=!1),t===void 0&&(t=!1);var r=n.getBoundingClientRect(),i=1,o=1;e&&hn(n)&&(i=n.offsetWidth>0&&Jr(r.width)/n.offsetWidth||1,o=n.offsetHeight>0&&Jr(r.height)/n.offsetHeight||1);var l=Cr(n)?cn(n):window,d=l.visualViewport,f=!xf()&&t,g=(r.left+(f&&d?d.offsetLeft:0))/i,v=(r.top+(f&&d?d.offsetTop:0))/o,y=r.width/i,A=r.height/o;return{width:y,height:A,top:v,right:g+y,bottom:v+A,left:g,x:g,y:v}}function pl(n){var e=Xr(n),t=n.offsetWidth,r=n.offsetHeight;return Math.abs(e.width-t)<=1&&(t=e.width),Math.abs(e.height-r)<=1&&(r=e.height),{x:n.offsetLeft,y:n.offsetTop,width:t,height:r}}function Tf(n,e){var t=e.getRootNode&&e.getRootNode();if(n.contains(e))return!0;if(t&&fl(t)){var r=e;do{if(r&&n.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function zn(n){return cn(n).getComputedStyle(n)}function Ab(n){return["table","td","th"].indexOf(Dn(n))>=0}function ar(n){return((Cr(n)?n.ownerDocument:n.document)||window.document).documentElement}function Xa(n){return Dn(n)==="html"?n:n.assignedSlot||n.parentNode||(fl(n)?n.host:null)||ar(n)}function ku(n){return!hn(n)||zn(n).position==="fixed"?null:n.offsetParent}function Lb(n){var e=/firefox/i.test(Vs()),t=/Trident/i.test(Vs());if(t&&hn(n)){var r=zn(n);if(r.position==="fixed")return null}var i=Xa(n);for(fl(i)&&(i=i.host);hn(i)&&["html","body"].indexOf(Dn(i))<0;){var o=zn(i);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||e&&o.willChange==="filter"||e&&o.filter&&o.filter!=="none")return i;i=i.parentNode}return null}function ki(n){for(var e=cn(n),t=ku(n);t&&Ab(t)&&zn(t).position==="static";)t=ku(t);return t&&(Dn(t)==="html"||Dn(t)==="body"&&zn(t).position==="static")?e:t||Lb(n)||e}function hl(n){return["top","bottom"].indexOf(n)>=0?"x":"y"}function Si(n,e,t){return wr(n,Ya(e,t))}function wb(n,e,t){var r=Si(n,e,t);return r>t?t:r}function Of(){return{top:0,right:0,bottom:0,left:0}}function _f(n){return Object.assign({},Of(),n)}function Df(n,e){return e.reduce(function(t,r){return t[r]=n,t},{})}var Eb=function(e,t){return e=typeof e=="function"?e(Object.assign({},t.rects,{placement:t.placement})):e,_f(typeof e!="number"?e:Df(e,Ii))};function Cb(n){var e,t=n.state,r=n.name,i=n.options,o=t.elements.arrow,l=t.modifiersData.popperOffsets,d=On(t.placement),f=hl(d),g=[rn,gn].indexOf(d)>=0,v=g?"height":"width";if(!(!o||!l)){var y=Eb(i.padding,t),A=pl(o),S=f==="y"?nn:rn,C=f==="y"?vn:gn,_=t.rects.reference[v]+t.rects.reference[f]-l[f]-t.rects.popper[v],T=l[f]-t.rects.reference[f],D=ki(o),P=D?f==="y"?D.clientHeight||0:D.clientWidth||0:0,V=_/2-T/2,x=y[S],X=P-A[v]-y[C],H=P/2-A[v]/2+V,Y=Si(x,H,X),F=f;t.modifiersData[r]=(e={},e[F]=Y,e.centerOffset=Y-H,e)}}function xb(n){var e=n.state,t=n.options,r=t.element,i=r===void 0?"[data-popper-arrow]":r;i!=null&&(typeof i=="string"&&(i=e.elements.popper.querySelector(i),!i)||!Tf(e.elements.popper,i)||(e.elements.arrow=i))}const Tb={name:"arrow",enabled:!0,phase:"main",fn:Cb,effect:xb,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function qr(n){return n.split("-")[1]}var Ob={top:"auto",right:"auto",bottom:"auto",left:"auto"};function _b(n,e){var t=n.x,r=n.y,i=e.devicePixelRatio||1;return{x:Jr(t*i)/i||0,y:Jr(r*i)/i||0}}function Pu(n){var e,t=n.popper,r=n.popperRect,i=n.placement,o=n.variation,l=n.offsets,d=n.position,f=n.gpuAcceleration,g=n.adaptive,v=n.roundOffsets,y=n.isFixed,A=l.x,S=A===void 0?0:A,C=l.y,_=C===void 0?0:C,T=typeof v=="function"?v({x:S,y:_}):{x:S,y:_};S=T.x,_=T.y;var D=l.hasOwnProperty("x"),P=l.hasOwnProperty("y"),V=rn,x=nn,X=window;if(g){var H=ki(t),Y="clientHeight",F="clientWidth";if(H===cn(t)&&(H=ar(t),zn(H).position!=="static"&&d==="absolute"&&(Y="scrollHeight",F="scrollWidth")),H=H,i===nn||(i===rn||i===gn)&&o===Ti){x=vn;var ce=y&&H===X&&X.visualViewport?X.visualViewport.height:H[Y];_-=ce-r.height,_*=f?1:-1}if(i===rn||(i===nn||i===vn)&&o===Ti){V=gn;var ve=y&&H===X&&X.visualViewport?X.visualViewport.width:H[F];S-=ve-r.width,S*=f?1:-1}}var U=Object.assign({position:d},g&&Ob),pe=v===!0?_b({x:S,y:_},cn(t)):{x:S,y:_};if(S=pe.x,_=pe.y,f){var ge;return Object.assign({},U,(ge={},ge[x]=P?"0":"",ge[V]=D?"0":"",ge.transform=(X.devicePixelRatio||1)<=1?"translate("+S+"px, "+_+"px)":"translate3d("+S+"px, "+_+"px, 0)",ge))}return Object.assign({},U,(e={},e[x]=P?_+"px":"",e[V]=D?S+"px":"",e.transform="",e))}function Db(n){var e=n.state,t=n.options,r=t.gpuAcceleration,i=r===void 0?!0:r,o=t.adaptive,l=o===void 0?!0:o,d=t.roundOffsets,f=d===void 0?!0:d,g={placement:On(e.placement),variation:qr(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:i,isFixed:e.options.strategy==="fixed"};e.modifiersData.popperOffsets!=null&&(e.styles.popper=Object.assign({},e.styles.popper,Pu(Object.assign({},g,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:l,roundOffsets:f})))),e.modifiersData.arrow!=null&&(e.styles.arrow=Object.assign({},e.styles.arrow,Pu(Object.assign({},g,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:f})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})}const Rb={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Db,data:{}};var Ta={passive:!0};function Mb(n){var e=n.state,t=n.instance,r=n.options,i=r.scroll,o=i===void 0?!0:i,l=r.resize,d=l===void 0?!0:l,f=cn(e.elements.popper),g=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&g.forEach(function(v){v.addEventListener("scroll",t.update,Ta)}),d&&f.addEventListener("resize",t.update,Ta),function(){o&&g.forEach(function(v){v.removeEventListener("scroll",t.update,Ta)}),d&&f.removeEventListener("resize",t.update,Ta)}}const Ib={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Mb,data:{}};var kb={left:"right",right:"left",bottom:"top",top:"bottom"};function ka(n){return n.replace(/left|right|bottom|top/g,function(e){return kb[e]})}var Pb={start:"end",end:"start"};function Nu(n){return n.replace(/start|end/g,function(e){return Pb[e]})}function vl(n){var e=cn(n),t=e.pageXOffset,r=e.pageYOffset;return{scrollLeft:t,scrollTop:r}}function gl(n){return Xr(ar(n)).left+vl(n).scrollLeft}function Nb(n,e){var t=cn(n),r=ar(n),i=t.visualViewport,o=r.clientWidth,l=r.clientHeight,d=0,f=0;if(i){o=i.width,l=i.height;var g=xf();(g||!g&&e==="fixed")&&(d=i.offsetLeft,f=i.offsetTop)}return{width:o,height:l,x:d+gl(n),y:f}}function jb(n){var e,t=ar(n),r=vl(n),i=(e=n.ownerDocument)==null?void 0:e.body,o=wr(t.scrollWidth,t.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),l=wr(t.scrollHeight,t.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),d=-r.scrollLeft+gl(n),f=-r.scrollTop;return zn(i||t).direction==="rtl"&&(d+=wr(t.clientWidth,i?i.clientWidth:0)-o),{width:o,height:l,x:d,y:f}}function ml(n){var e=zn(n),t=e.overflow,r=e.overflowX,i=e.overflowY;return/auto|scroll|overlay|hidden/.test(t+i+r)}function Rf(n){return["html","body","#document"].indexOf(Dn(n))>=0?n.ownerDocument.body:hn(n)&&ml(n)?n:Rf(Xa(n))}function Ai(n,e){var t;e===void 0&&(e=[]);var r=Rf(n),i=r===((t=n.ownerDocument)==null?void 0:t.body),o=cn(r),l=i?[o].concat(o.visualViewport||[],ml(r)?r:[]):r,d=e.concat(l);return i?d:d.concat(Ai(Xa(l)))}function zs(n){return Object.assign({},n,{left:n.x,top:n.y,right:n.x+n.width,bottom:n.y+n.height})}function $b(n,e){var t=Xr(n,!1,e==="fixed");return t.top=t.top+n.clientTop,t.left=t.left+n.clientLeft,t.bottom=t.top+n.clientHeight,t.right=t.left+n.clientWidth,t.width=n.clientWidth,t.height=n.clientHeight,t.x=t.left,t.y=t.top,t}function ju(n,e,t){return e===wf?zs(Nb(n,t)):Cr(e)?$b(e,t):zs(jb(ar(n)))}function Hb(n){var e=Ai(Xa(n)),t=["absolute","fixed"].indexOf(zn(n).position)>=0,r=t&&hn(n)?ki(n):n;return Cr(r)?e.filter(function(i){return Cr(i)&&Tf(i,r)&&Dn(i)!=="body"}):[]}function Bb(n,e,t,r){var i=e==="clippingParents"?Hb(n):[].concat(e),o=[].concat(i,[t]),l=o[0],d=o.reduce(function(f,g){var v=ju(n,g,r);return f.top=wr(v.top,f.top),f.right=Ya(v.right,f.right),f.bottom=Ya(v.bottom,f.bottom),f.left=wr(v.left,f.left),f},ju(n,l,r));return d.width=d.right-d.left,d.height=d.bottom-d.top,d.x=d.left,d.y=d.top,d}function Mf(n){var e=n.reference,t=n.element,r=n.placement,i=r?On(r):null,o=r?qr(r):null,l=e.x+e.width/2-t.width/2,d=e.y+e.height/2-t.height/2,f;switch(i){case nn:f={x:l,y:e.y-t.height};break;case vn:f={x:l,y:e.y+e.height};break;case gn:f={x:e.x+e.width,y:d};break;case rn:f={x:e.x-t.width,y:d};break;default:f={x:e.x,y:e.y}}var g=i?hl(i):null;if(g!=null){var v=g==="y"?"height":"width";switch(o){case Kr:f[g]=f[g]-(e[v]/2-t[v]/2);break;case Ti:f[g]=f[g]+(e[v]/2-t[v]/2);break}}return f}function Oi(n,e){e===void 0&&(e={});var t=e,r=t.placement,i=r===void 0?n.placement:r,o=t.strategy,l=o===void 0?n.strategy:o,d=t.boundary,f=d===void 0?sb:d,g=t.rootBoundary,v=g===void 0?wf:g,y=t.elementContext,A=y===void 0?vi:y,S=t.altBoundary,C=S===void 0?!1:S,_=t.padding,T=_===void 0?0:_,D=_f(typeof T!="number"?T:Df(T,Ii)),P=A===vi?lb:vi,V=n.rects.popper,x=n.elements[C?P:A],X=Bb(Cr(x)?x:x.contextElement||ar(n.elements.popper),f,v,l),H=Xr(n.elements.reference),Y=Mf({reference:H,element:V,strategy:"absolute",placement:i}),F=zs(Object.assign({},V,Y)),ce=A===vi?F:H,ve={top:X.top-ce.top+D.top,bottom:ce.bottom-X.bottom+D.bottom,left:X.left-ce.left+D.left,right:ce.right-X.right+D.right},U=n.modifiersData.offset;if(A===vi&&U){var pe=U[i];Object.keys(ve).forEach(function(ge){var de=[gn,vn].indexOf(ge)>=0?1:-1,xe=[nn,vn].indexOf(ge)>=0?"y":"x";ve[ge]+=pe[xe]*de})}return ve}function Fb(n,e){e===void 0&&(e={});var t=e,r=t.placement,i=t.boundary,o=t.rootBoundary,l=t.padding,d=t.flipVariations,f=t.allowedAutoPlacements,g=f===void 0?Ef:f,v=qr(r),y=v?d?Iu:Iu.filter(function(C){return qr(C)===v}):Ii,A=y.filter(function(C){return g.indexOf(C)>=0});A.length===0&&(A=y);var S=A.reduce(function(C,_){return C[_]=Oi(n,{placement:_,boundary:i,rootBoundary:o,padding:l})[On(_)],C},{});return Object.keys(S).sort(function(C,_){return S[C]-S[_]})}function Vb(n){if(On(n)===dl)return[];var e=ka(n);return[Nu(n),e,Nu(e)]}function zb(n){var e=n.state,t=n.options,r=n.name;if(!e.modifiersData[r]._skip){for(var i=t.mainAxis,o=i===void 0?!0:i,l=t.altAxis,d=l===void 0?!0:l,f=t.fallbackPlacements,g=t.padding,v=t.boundary,y=t.rootBoundary,A=t.altBoundary,S=t.flipVariations,C=S===void 0?!0:S,_=t.allowedAutoPlacements,T=e.options.placement,D=On(T),P=D===T,V=f||(P||!C?[ka(T)]:Vb(T)),x=[T].concat(V).reduce(function(re,k){return re.concat(On(k)===dl?Fb(e,{placement:k,boundary:v,rootBoundary:y,padding:g,flipVariations:C,allowedAutoPlacements:_}):k)},[]),X=e.rects.reference,H=e.rects.popper,Y=new Map,F=!0,ce=x[0],ve=0;ve<x.length;ve++){var U=x[ve],pe=On(U),ge=qr(U)===Kr,de=[nn,vn].indexOf(pe)>=0,xe=de?"width":"height",Ae=Oi(e,{placement:U,boundary:v,rootBoundary:y,altBoundary:A,padding:g}),Te=de?ge?gn:rn:ge?vn:nn;X[xe]>H[xe]&&(Te=ka(Te));var Re=ka(Te),K=[];if(o&&K.push(Ae[pe]<=0),d&&K.push(Ae[Te]<=0,Ae[Re]<=0),K.every(function(re){return re})){ce=U,F=!1;break}Y.set(U,K)}if(F)for(var ne=C?3:1,oe=function(k){var le=x.find(function(Le){var Ie=Y.get(Le);if(Ie)return Ie.slice(0,k).every(function(Ee){return Ee})});if(le)return ce=le,"break"},he=ne;he>0;he--){var B=oe(he);if(B==="break")break}e.placement!==ce&&(e.modifiersData[r]._skip=!0,e.placement=ce,e.reset=!0)}}const Ub={name:"flip",enabled:!0,phase:"main",fn:zb,requiresIfExists:["offset"],data:{_skip:!1}};function $u(n,e,t){return t===void 0&&(t={x:0,y:0}),{top:n.top-e.height-t.y,right:n.right-e.width+t.x,bottom:n.bottom-e.height+t.y,left:n.left-e.width-t.x}}function Hu(n){return[nn,gn,vn,rn].some(function(e){return n[e]>=0})}function Wb(n){var e=n.state,t=n.name,r=e.rects.reference,i=e.rects.popper,o=e.modifiersData.preventOverflow,l=Oi(e,{elementContext:"reference"}),d=Oi(e,{altBoundary:!0}),f=$u(l,r),g=$u(d,i,o),v=Hu(f),y=Hu(g);e.modifiersData[t]={referenceClippingOffsets:f,popperEscapeOffsets:g,isReferenceHidden:v,hasPopperEscaped:y},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":v,"data-popper-escaped":y})}const Gb={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Wb};function Yb(n,e,t){var r=On(n),i=[rn,nn].indexOf(r)>=0?-1:1,o=typeof t=="function"?t(Object.assign({},e,{placement:n})):t,l=o[0],d=o[1];return l=l||0,d=(d||0)*i,[rn,gn].indexOf(r)>=0?{x:d,y:l}:{x:l,y:d}}function Zb(n){var e=n.state,t=n.options,r=n.name,i=t.offset,o=i===void 0?[0,0]:i,l=Ef.reduce(function(v,y){return v[y]=Yb(y,e.rects,o),v},{}),d=l[e.placement],f=d.x,g=d.y;e.modifiersData.popperOffsets!=null&&(e.modifiersData.popperOffsets.x+=f,e.modifiersData.popperOffsets.y+=g),e.modifiersData[r]=l}const Qb={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:Zb};function Kb(n){var e=n.state,t=n.name;e.modifiersData[t]=Mf({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})}const Jb={name:"popperOffsets",enabled:!0,phase:"read",fn:Kb,data:{}};function Xb(n){return n==="x"?"y":"x"}function qb(n){var e=n.state,t=n.options,r=n.name,i=t.mainAxis,o=i===void 0?!0:i,l=t.altAxis,d=l===void 0?!1:l,f=t.boundary,g=t.rootBoundary,v=t.altBoundary,y=t.padding,A=t.tether,S=A===void 0?!0:A,C=t.tetherOffset,_=C===void 0?0:C,T=Oi(e,{boundary:f,rootBoundary:g,padding:y,altBoundary:v}),D=On(e.placement),P=qr(e.placement),V=!P,x=hl(D),X=Xb(x),H=e.modifiersData.popperOffsets,Y=e.rects.reference,F=e.rects.popper,ce=typeof _=="function"?_(Object.assign({},e.rects,{placement:e.placement})):_,ve=typeof ce=="number"?{mainAxis:ce,altAxis:ce}:Object.assign({mainAxis:0,altAxis:0},ce),U=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,pe={x:0,y:0};if(!!H){if(o){var ge,de=x==="y"?nn:rn,xe=x==="y"?vn:gn,Ae=x==="y"?"height":"width",Te=H[x],Re=Te+T[de],K=Te-T[xe],ne=S?-F[Ae]/2:0,oe=P===Kr?Y[Ae]:F[Ae],he=P===Kr?-F[Ae]:-Y[Ae],B=e.elements.arrow,re=S&&B?pl(B):{width:0,height:0},k=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:Of(),le=k[de],Le=k[xe],Ie=Si(0,Y[Ae],re[Ae]),Ee=V?Y[Ae]/2-ne-Ie-le-ve.mainAxis:oe-Ie-le-ve.mainAxis,it=V?-Y[Ae]/2+ne+Ie+Le+ve.mainAxis:he+Ie+Le+ve.mainAxis,tt=e.elements.arrow&&ki(e.elements.arrow),Ne=tt?x==="y"?tt.clientTop||0:tt.clientLeft||0:0,je=(ge=U==null?void 0:U[x])!=null?ge:0,pt=Te+Ee-je-Ne,nt=Te+it-je,Nt=Si(S?Ya(Re,pt):Re,Te,S?wr(K,nt):K);H[x]=Nt,pe[x]=Nt-Te}if(d){var Qt,vt=x==="x"?nn:rn,Mt=x==="x"?vn:gn,xt=H[X],St=X==="y"?"height":"width",Gt=xt+T[vt],mt=xt-T[Mt],Bt=[nn,rn].indexOf(D)!==-1,Lt=(Qt=U==null?void 0:U[X])!=null?Qt:0,It=Bt?Gt:xt-Y[St]-F[St]-Lt+ve.altAxis,Tt=Bt?xt+Y[St]+F[St]-Lt-ve.altAxis:mt,Ke=S&&Bt?wb(It,xt,Tt):Si(S?It:Gt,xt,S?Tt:mt);H[X]=Ke,pe[X]=Ke-xt}e.modifiersData[r]=pe}}const e2={name:"preventOverflow",enabled:!0,phase:"main",fn:qb,requiresIfExists:["offset"]};function t2(n){return{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop}}function n2(n){return n===cn(n)||!hn(n)?vl(n):t2(n)}function r2(n){var e=n.getBoundingClientRect(),t=Jr(e.width)/n.offsetWidth||1,r=Jr(e.height)/n.offsetHeight||1;return t!==1||r!==1}function i2(n,e,t){t===void 0&&(t=!1);var r=hn(e),i=hn(e)&&r2(e),o=ar(e),l=Xr(n,i,t),d={scrollLeft:0,scrollTop:0},f={x:0,y:0};return(r||!r&&!t)&&((Dn(e)!=="body"||ml(o))&&(d=n2(e)),hn(e)?(f=Xr(e,!0),f.x+=e.clientLeft,f.y+=e.clientTop):o&&(f.x=gl(o))),{x:l.left+d.scrollLeft-f.x,y:l.top+d.scrollTop-f.y,width:l.width,height:l.height}}function a2(n){var e=new Map,t=new Set,r=[];n.forEach(function(o){e.set(o.name,o)});function i(o){t.add(o.name);var l=[].concat(o.requires||[],o.requiresIfExists||[]);l.forEach(function(d){if(!t.has(d)){var f=e.get(d);f&&i(f)}}),r.push(o)}return n.forEach(function(o){t.has(o.name)||i(o)}),r}function o2(n){var e=a2(n);return yb.reduce(function(t,r){return t.concat(e.filter(function(i){return i.phase===r}))},[])}function s2(n){var e;return function(){return e||(e=new Promise(function(t){Promise.resolve().then(function(){e=void 0,t(n())})})),e}}function l2(n){var e=n.reduce(function(t,r){var i=t[r.name];return t[r.name]=i?Object.assign({},i,r,{options:Object.assign({},i.options,r.options),data:Object.assign({},i.data,r.data)}):r,t},{});return Object.keys(e).map(function(t){return e[t]})}var Bu={placement:"bottom",modifiers:[],strategy:"absolute"};function Fu(){for(var n=arguments.length,e=new Array(n),t=0;t<n;t++)e[t]=arguments[t];return!e.some(function(r){return!(r&&typeof r.getBoundingClientRect=="function")})}function c2(n){n===void 0&&(n={});var e=n,t=e.defaultModifiers,r=t===void 0?[]:t,i=e.defaultOptions,o=i===void 0?Bu:i;return function(d,f,g){g===void 0&&(g=o);var v={placement:"bottom",orderedModifiers:[],options:Object.assign({},Bu,o),modifiersData:{},elements:{reference:d,popper:f},attributes:{},styles:{}},y=[],A=!1,S={state:v,setOptions:function(D){var P=typeof D=="function"?D(v.options):D;_(),v.options=Object.assign({},o,v.options,P),v.scrollParents={reference:Cr(d)?Ai(d):d.contextElement?Ai(d.contextElement):[],popper:Ai(f)};var V=o2(l2([].concat(r,v.options.modifiers)));return v.orderedModifiers=V.filter(function(x){return x.enabled}),C(),S.update()},forceUpdate:function(){if(!A){var D=v.elements,P=D.reference,V=D.popper;if(!!Fu(P,V)){v.rects={reference:i2(P,ki(V),v.options.strategy==="fixed"),popper:pl(V)},v.reset=!1,v.placement=v.options.placement,v.orderedModifiers.forEach(function(ve){return v.modifiersData[ve.name]=Object.assign({},ve.data)});for(var x=0;x<v.orderedModifiers.length;x++){if(v.reset===!0){v.reset=!1,x=-1;continue}var X=v.orderedModifiers[x],H=X.fn,Y=X.options,F=Y===void 0?{}:Y,ce=X.name;typeof H=="function"&&(v=H({state:v,options:F,name:ce,instance:S})||v)}}}},update:s2(function(){return new Promise(function(T){S.forceUpdate(),T(v)})}),destroy:function(){_(),A=!0}};if(!Fu(d,f))return S;S.setOptions(g).then(function(T){!A&&g.onFirstUpdate&&g.onFirstUpdate(T)});function C(){v.orderedModifiers.forEach(function(T){var D=T.name,P=T.options,V=P===void 0?{}:P,x=T.effect;if(typeof x=="function"){var X=x({state:v,name:D,instance:S,options:V}),H=function(){};y.push(X||H)}})}function _(){y.forEach(function(T){return T()}),y=[]}return S}}var u2=[Ib,Jb,Rb,Cf,Qb,Ub,e2,Tb,Gb],d2=c2({defaultModifiers:u2}),f2="tippy-box",If="tippy-content",p2="tippy-backdrop",kf="tippy-arrow",Pf="tippy-svg-arrow",yr={passive:!0,capture:!0},Nf=function(){return document.body};function Os(n,e,t){if(Array.isArray(n)){var r=n[e];return r==null?Array.isArray(t)?t[e]:t:r}return n}function yl(n,e){var t={}.toString.call(n);return t.indexOf("[object")===0&&t.indexOf(e+"]")>-1}function jf(n,e){return typeof n=="function"?n.apply(void 0,e):n}function Vu(n,e){if(e===0)return n;var t;return function(r){clearTimeout(t),t=setTimeout(function(){n(r)},e)}}function h2(n){return n.split(/\s+/).filter(Boolean)}function Ur(n){return[].concat(n)}function zu(n,e){n.indexOf(e)===-1&&n.push(e)}function v2(n){return n.filter(function(e,t){return n.indexOf(e)===t})}function g2(n){return n.split("-")[0]}function Za(n){return[].slice.call(n)}function Uu(n){return Object.keys(n).reduce(function(e,t){return n[t]!==void 0&&(e[t]=n[t]),e},{})}function Li(){return document.createElement("div")}function qa(n){return["Element","Fragment"].some(function(e){return yl(n,e)})}function m2(n){return yl(n,"NodeList")}function y2(n){return yl(n,"MouseEvent")}function b2(n){return!!(n&&n._tippy&&n._tippy.reference===n)}function S2(n){return qa(n)?[n]:m2(n)?Za(n):Array.isArray(n)?n:Za(document.querySelectorAll(n))}function _s(n,e){n.forEach(function(t){t&&(t.style.transitionDuration=e+"ms")})}function Wu(n,e){n.forEach(function(t){t&&t.setAttribute("data-state",e)})}function A2(n){var e,t=Ur(n),r=t[0];return r!=null&&(e=r.ownerDocument)!=null&&e.body?r.ownerDocument:document}function L2(n,e){var t=e.clientX,r=e.clientY;return n.every(function(i){var o=i.popperRect,l=i.popperState,d=i.props,f=d.interactiveBorder,g=g2(l.placement),v=l.modifiersData.offset;if(!v)return!0;var y=g==="bottom"?v.top.y:0,A=g==="top"?v.bottom.y:0,S=g==="right"?v.left.x:0,C=g==="left"?v.right.x:0,_=o.top-r+y>f,T=r-o.bottom-A>f,D=o.left-t+S>f,P=t-o.right-C>f;return _||T||D||P})}function Ds(n,e,t){var r=e+"EventListener";["transitionend","webkitTransitionEnd"].forEach(function(i){n[r](i,t)})}function Gu(n,e){for(var t=e;t;){var r;if(n.contains(t))return!0;t=t.getRootNode==null||(r=t.getRootNode())==null?void 0:r.host}return!1}var xn={isTouch:!1},Yu=0;function w2(){xn.isTouch||(xn.isTouch=!0,window.performance&&document.addEventListener("mousemove",$f))}function $f(){var n=performance.now();n-Yu<20&&(xn.isTouch=!1,document.removeEventListener("mousemove",$f)),Yu=n}function E2(){var n=document.activeElement;if(b2(n)){var e=n._tippy;n.blur&&!e.state.isVisible&&n.blur()}}function C2(){document.addEventListener("touchstart",w2,yr),window.addEventListener("blur",E2)}var x2=typeof window!="undefined"&&typeof document!="undefined",T2=x2?!!window.msCrypto:!1,O2={animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},_2={allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999},bn=Object.assign({appendTo:Nf,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},O2,_2),D2=Object.keys(bn),R2=function(e){var t=Object.keys(e);t.forEach(function(r){bn[r]=e[r]})};function Hf(n){var e=n.plugins||[],t=e.reduce(function(r,i){var o=i.name,l=i.defaultValue;if(o){var d;r[o]=n[o]!==void 0?n[o]:(d=bn[o])!=null?d:l}return r},{});return Object.assign({},n,t)}function M2(n,e){var t=e?Object.keys(Hf(Object.assign({},bn,{plugins:e}))):D2,r=t.reduce(function(i,o){var l=(n.getAttribute("data-tippy-"+o)||"").trim();if(!l)return i;if(o==="content")i[o]=l;else try{i[o]=JSON.parse(l)}catch(d){i[o]=l}return i},{});return r}function Zu(n,e){var t=Object.assign({},e,{content:jf(e.content,[n])},e.ignoreAttributes?{}:M2(n,e.plugins));return t.aria=Object.assign({},bn.aria,t.aria),t.aria={expanded:t.aria.expanded==="auto"?e.interactive:t.aria.expanded,content:t.aria.content==="auto"?e.interactive?null:"describedby":t.aria.content},t}var I2=function(){return"innerHTML"};function Us(n,e){n[I2()]=e}function Qu(n){var e=Li();return n===!0?e.className=kf:(e.className=Pf,qa(n)?e.appendChild(n):Us(e,n)),e}function Ku(n,e){qa(e.content)?(Us(n,""),n.appendChild(e.content)):typeof e.content!="function"&&(e.allowHTML?Us(n,e.content):n.textContent=e.content)}function Ws(n){var e=n.firstElementChild,t=Za(e.children);return{box:e,content:t.find(function(r){return r.classList.contains(If)}),arrow:t.find(function(r){return r.classList.contains(kf)||r.classList.contains(Pf)}),backdrop:t.find(function(r){return r.classList.contains(p2)})}}function Bf(n){var e=Li(),t=Li();t.className=f2,t.setAttribute("data-state","hidden"),t.setAttribute("tabindex","-1");var r=Li();r.className=If,r.setAttribute("data-state","hidden"),Ku(r,n.props),e.appendChild(t),t.appendChild(r),i(n.props,n.props);function i(o,l){var d=Ws(e),f=d.box,g=d.content,v=d.arrow;l.theme?f.setAttribute("data-theme",l.theme):f.removeAttribute("data-theme"),typeof l.animation=="string"?f.setAttribute("data-animation",l.animation):f.removeAttribute("data-animation"),l.inertia?f.setAttribute("data-inertia",""):f.removeAttribute("data-inertia"),f.style.maxWidth=typeof l.maxWidth=="number"?l.maxWidth+"px":l.maxWidth,l.role?f.setAttribute("role",l.role):f.removeAttribute("role"),(o.content!==l.content||o.allowHTML!==l.allowHTML)&&Ku(g,n.props),l.arrow?v?o.arrow!==l.arrow&&(f.removeChild(v),f.appendChild(Qu(l.arrow))):f.appendChild(Qu(l.arrow)):v&&f.removeChild(v)}return{popper:e,onUpdate:i}}Bf.$$tippy=!0;var k2=1,Oa=[],Rs=[];function P2(n,e){var t=Zu(n,Object.assign({},bn,Hf(Uu(e)))),r,i,o,l=!1,d=!1,f=!1,g=!1,v,y,A,S=[],C=Vu(pt,t.interactiveDebounce),_,T=k2++,D=null,P=v2(t.plugins),V={isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},x={id:T,reference:n,popper:Li(),popperInstance:D,props:t,state:V,plugins:P,clearDelayTimeouts:It,setProps:Tt,setContent:Ke,show:Ft,hide:yt,hideWithInteractivity:Vt,enable:Bt,disable:Lt,unmount:Kt,destroy:un};if(!t.render)return x;var X=t.render(x),H=X.popper,Y=X.onUpdate;H.setAttribute("data-tippy-root",""),H.id="tippy-"+x.id,x.popper=H,n._tippy=x,H._tippy=x;var F=P.map(function(q){return q.fn(x)}),ce=n.hasAttribute("aria-expanded");return tt(),ne(),Te(),Re("onCreate",[x]),t.showOnCreate&&Gt(),H.addEventListener("mouseenter",function(){x.props.interactive&&x.state.isVisible&&x.clearDelayTimeouts()}),H.addEventListener("mouseleave",function(){x.props.interactive&&x.props.trigger.indexOf("mouseenter")>=0&&de().addEventListener("mousemove",C)}),x;function ve(){var q=x.props.touch;return Array.isArray(q)?q:[q,0]}function U(){return ve()[0]==="hold"}function pe(){var q;return!!((q=x.props.render)!=null&&q.$$tippy)}function ge(){return _||n}function de(){var q=ge().parentNode;return q?A2(q):document}function xe(){return Ws(H)}function Ae(q){return x.state.isMounted&&!x.state.isVisible||xn.isTouch||v&&v.type==="focus"?0:Os(x.props.delay,q?0:1,bn.delay)}function Te(q){q===void 0&&(q=!1),H.style.pointerEvents=x.props.interactive&&!q?"":"none",H.style.zIndex=""+x.props.zIndex}function Re(q,De,fe){if(fe===void 0&&(fe=!0),F.forEach(function(ye){ye[q]&&ye[q].apply(ye,De)}),fe){var me;(me=x.props)[q].apply(me,De)}}function K(){var q=x.props.aria;if(!!q.content){var De="aria-"+q.content,fe=H.id,me=Ur(x.props.triggerTarget||n);me.forEach(function(ye){var ke=ye.getAttribute(De);if(x.state.isVisible)ye.setAttribute(De,ke?ke+" "+fe:fe);else{var $e=ke&&ke.replace(fe,"").trim();$e?ye.setAttribute(De,$e):ye.removeAttribute(De)}})}}function ne(){if(!(ce||!x.props.aria.expanded)){var q=Ur(x.props.triggerTarget||n);q.forEach(function(De){x.props.interactive?De.setAttribute("aria-expanded",x.state.isVisible&&De===ge()?"true":"false"):De.removeAttribute("aria-expanded")})}}function oe(){de().removeEventListener("mousemove",C),Oa=Oa.filter(function(q){return q!==C})}function he(q){if(!(xn.isTouch&&(f||q.type==="mousedown"))){var De=q.composedPath&&q.composedPath()[0]||q.target;if(!(x.props.interactive&&Gu(H,De))){if(Ur(x.props.triggerTarget||n).some(function(fe){return Gu(fe,De)})){if(xn.isTouch||x.state.isVisible&&x.props.trigger.indexOf("click")>=0)return}else Re("onClickOutside",[x,q]);x.props.hideOnClick===!0&&(x.clearDelayTimeouts(),x.hide(),d=!0,setTimeout(function(){d=!1}),x.state.isMounted||le())}}}function B(){f=!0}function re(){f=!1}function k(){var q=de();q.addEventListener("mousedown",he,!0),q.addEventListener("touchend",he,yr),q.addEventListener("touchstart",re,yr),q.addEventListener("touchmove",B,yr)}function le(){var q=de();q.removeEventListener("mousedown",he,!0),q.removeEventListener("touchend",he,yr),q.removeEventListener("touchstart",re,yr),q.removeEventListener("touchmove",B,yr)}function Le(q,De){Ee(q,function(){!x.state.isVisible&&H.parentNode&&H.parentNode.contains(H)&&De()})}function Ie(q,De){Ee(q,De)}function Ee(q,De){var fe=xe().box;function me(ye){ye.target===fe&&(Ds(fe,"remove",me),De())}if(q===0)return De();Ds(fe,"remove",y),Ds(fe,"add",me),y=me}function it(q,De,fe){fe===void 0&&(fe=!1);var me=Ur(x.props.triggerTarget||n);me.forEach(function(ye){ye.addEventListener(q,De,fe),S.push({node:ye,eventType:q,handler:De,options:fe})})}function tt(){U()&&(it("touchstart",je,{passive:!0}),it("touchend",nt,{passive:!0})),h2(x.props.trigger).forEach(function(q){if(q!=="manual")switch(it(q,je),q){case"mouseenter":it("mouseleave",nt);break;case"focus":it(T2?"focusout":"blur",Nt);break;case"focusin":it("focusout",Nt);break}})}function Ne(){S.forEach(function(q){var De=q.node,fe=q.eventType,me=q.handler,ye=q.options;De.removeEventListener(fe,me,ye)}),S=[]}function je(q){var De,fe=!1;if(!(!x.state.isEnabled||Qt(q)||d)){var me=((De=v)==null?void 0:De.type)==="focus";v=q,_=q.currentTarget,ne(),!x.state.isVisible&&y2(q)&&Oa.forEach(function(ye){return ye(q)}),q.type==="click"&&(x.props.trigger.indexOf("mouseenter")<0||l)&&x.props.hideOnClick!==!1&&x.state.isVisible?fe=!0:Gt(q),q.type==="click"&&(l=!fe),fe&&!me&&mt(q)}}function pt(q){var De=q.target,fe=ge().contains(De)||H.contains(De);if(!(q.type==="mousemove"&&fe)){var me=St().concat(H).map(function(ye){var ke,$e=ye._tippy,ut=(ke=$e.popperInstance)==null?void 0:ke.state;return ut?{popperRect:ye.getBoundingClientRect(),popperState:ut,props:t}:null}).filter(Boolean);L2(me,q)&&(oe(),mt(q))}}function nt(q){var De=Qt(q)||x.props.trigger.indexOf("click")>=0&&l;if(!De){if(x.props.interactive){x.hideWithInteractivity(q);return}mt(q)}}function Nt(q){x.props.trigger.indexOf("focusin")<0&&q.target!==ge()||x.props.interactive&&q.relatedTarget&&H.contains(q.relatedTarget)||mt(q)}function Qt(q){return xn.isTouch?U()!==q.type.indexOf("touch")>=0:!1}function vt(){Mt();var q=x.props,De=q.popperOptions,fe=q.placement,me=q.offset,ye=q.getReferenceClientRect,ke=q.moveTransition,$e=pe()?Ws(H).arrow:null,ut=ye?{getBoundingClientRect:ye,contextElement:ye.contextElement||ge()}:n,an={name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(Me){var rt=Me.state;if(pe()){var Xt=xe(),Ot=Xt.box;["placement","reference-hidden","escaped"].forEach(function(zt){zt==="placement"?Ot.setAttribute("data-placement",rt.placement):rt.attributes.popper["data-popper-"+zt]?Ot.setAttribute("data-"+zt,""):Ot.removeAttribute("data-"+zt)}),rt.attributes.popper={}}}},z=[{name:"offset",options:{offset:me}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!ke}},an];pe()&&$e&&z.push({name:"arrow",options:{element:$e,padding:3}}),z.push.apply(z,(De==null?void 0:De.modifiers)||[]),x.popperInstance=d2(ut,H,Object.assign({},De,{placement:fe,onFirstUpdate:A,modifiers:z}))}function Mt(){x.popperInstance&&(x.popperInstance.destroy(),x.popperInstance=null)}function xt(){var q=x.props.appendTo,De,fe=ge();x.props.interactive&&q===Nf||q==="parent"?De=fe.parentNode:De=jf(q,[fe]),De.contains(H)||De.appendChild(H),x.state.isMounted=!0,vt()}function St(){return Za(H.querySelectorAll("[data-tippy-root]"))}function Gt(q){x.clearDelayTimeouts(),q&&Re("onTrigger",[x,q]),k();var De=Ae(!0),fe=ve(),me=fe[0],ye=fe[1];xn.isTouch&&me==="hold"&&ye&&(De=ye),De?r=setTimeout(function(){x.show()},De):x.show()}function mt(q){if(x.clearDelayTimeouts(),Re("onUntrigger",[x,q]),!x.state.isVisible){le();return}if(!(x.props.trigger.indexOf("mouseenter")>=0&&x.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(q.type)>=0&&l)){var De=Ae(!1);De?i=setTimeout(function(){x.state.isVisible&&x.hide()},De):o=requestAnimationFrame(function(){x.hide()})}}function Bt(){x.state.isEnabled=!0}function Lt(){x.hide(),x.state.isEnabled=!1}function It(){clearTimeout(r),clearTimeout(i),cancelAnimationFrame(o)}function Tt(q){if(!x.state.isDestroyed){Re("onBeforeUpdate",[x,q]),Ne();var De=x.props,fe=Zu(n,Object.assign({},De,Uu(q),{ignoreAttributes:!0}));x.props=fe,tt(),De.interactiveDebounce!==fe.interactiveDebounce&&(oe(),C=Vu(pt,fe.interactiveDebounce)),De.triggerTarget&&!fe.triggerTarget?Ur(De.triggerTarget).forEach(function(me){me.removeAttribute("aria-expanded")}):fe.triggerTarget&&n.removeAttribute("aria-expanded"),ne(),Te(),Y&&Y(De,fe),x.popperInstance&&(vt(),St().forEach(function(me){requestAnimationFrame(me._tippy.popperInstance.forceUpdate)})),Re("onAfterUpdate",[x,q])}}function Ke(q){x.setProps({content:q})}function Ft(){var q=x.state.isVisible,De=x.state.isDestroyed,fe=!x.state.isEnabled,me=xn.isTouch&&!x.props.touch,ye=Os(x.props.duration,0,bn.duration);if(!(q||De||fe||me)&&!ge().hasAttribute("disabled")&&(Re("onShow",[x],!1),x.props.onShow(x)!==!1)){if(x.state.isVisible=!0,pe()&&(H.style.visibility="visible"),Te(),k(),x.state.isMounted||(H.style.transition="none"),pe()){var ke=xe(),$e=ke.box,ut=ke.content;_s([$e,ut],0)}A=function(){var z;if(!(!x.state.isVisible||g)){if(g=!0,H.offsetHeight,H.style.transition=x.props.moveTransition,pe()&&x.props.animation){var ue=xe(),Me=ue.box,rt=ue.content;_s([Me,rt],ye),Wu([Me,rt],"visible")}K(),ne(),zu(Rs,x),(z=x.popperInstance)==null||z.forceUpdate(),Re("onMount",[x]),x.props.animation&&pe()&&Ie(ye,function(){x.state.isShown=!0,Re("onShown",[x])})}},xt()}}function yt(){var q=!x.state.isVisible,De=x.state.isDestroyed,fe=!x.state.isEnabled,me=Os(x.props.duration,1,bn.duration);if(!(q||De||fe)&&(Re("onHide",[x],!1),x.props.onHide(x)!==!1)){if(x.state.isVisible=!1,x.state.isShown=!1,g=!1,l=!1,pe()&&(H.style.visibility="hidden"),oe(),le(),Te(!0),pe()){var ye=xe(),ke=ye.box,$e=ye.content;x.props.animation&&(_s([ke,$e],me),Wu([ke,$e],"hidden"))}K(),ne(),x.props.animation?pe()&&Le(me,x.unmount):x.unmount()}}function Vt(q){de().addEventListener("mousemove",C),zu(Oa,C),C(q)}function Kt(){x.state.isVisible&&x.hide(),x.state.isMounted&&(Mt(),St().forEach(function(q){q._tippy.unmount()}),H.parentNode&&H.parentNode.removeChild(H),Rs=Rs.filter(function(q){return q!==x}),x.state.isMounted=!1,Re("onHidden",[x]))}function un(){x.state.isDestroyed||(x.clearDelayTimeouts(),x.unmount(),Ne(),delete n._tippy,x.state.isDestroyed=!0,Re("onDestroy",[x]))}}function Pi(n,e){e===void 0&&(e={});var t=bn.plugins.concat(e.plugins||[]);C2();var r=Object.assign({},e,{plugins:t}),i=S2(n),o=i.reduce(function(l,d){var f=d&&P2(d,r);return f&&l.push(f),l},[]);return qa(n)?o[0]:o}Pi.defaultProps=bn;Pi.setDefaultProps=R2;Pi.currentInput=xn;Object.assign({},Cf,{effect:function(e){var t=e.state,r={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow)}});Pi.setDefaultProps({render:Bf});const N2={components:{FullCalendar:mf},props:["events"],data(){return{calendarOptions:{plugins:[ob],initialView:"dayGridMonth",contentHeight:"auto",locale:"cs",buttonText:{today:"dnes"},eventTimeFormat:{hour:"numeric",minute:"2-digit",meridiem:!1},moreLinkContent:n=>`+${n.num} dal\u0161\xED`,eventClick(n){if(n.event.url===""&&n.event.extendedProps.location===void 0&&n.event.extendedProps.url===void 0)return;n.jsEvent.preventDefault(),Pi(n.el,{content:` -- GitLab