@qld-gov-au/qgds-bootstrap5 1.0.21 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/.esbuild/helpers/listFilesHbs.js +54 -0
  2. package/.esbuild/helpers/logger.js +1 -0
  3. package/.esbuild/plugins/qgds-plugin-build-log.js +22 -14
  4. package/.esbuild/plugins/qgds-plugin-copy-assets.js +18 -19
  5. package/.esbuild/plugins/qgds-plugin-handlebar-partial-builder.js +2 -2
  6. package/.esbuild/plugins/qgds-plugin-version.js +44 -15
  7. package/dist/README.md +128 -0
  8. package/dist/assets/components/bs5/accordion/accordion.hbs +28 -0
  9. package/dist/assets/components/bs5/banner/banner.hbs +29 -0
  10. package/dist/assets/components/bs5/blockquote/blockquote.hbs +13 -0
  11. package/dist/assets/components/bs5/breadcrumbs/breadcrumbs.hbs +16 -0
  12. package/dist/assets/components/bs5/breadcumbsWrapper/breadcrumbsWrapper.hbs +11 -0
  13. package/dist/assets/components/bs5/breadcumbsWrapper/breadcrumbsWrapper.test.hbs +7 -0
  14. package/dist/assets/components/bs5/button/button.hbs +31 -0
  15. package/dist/assets/components/bs5/callout/callout.hbs +8 -0
  16. package/dist/assets/components/bs5/card/card.hbs +66 -0
  17. package/dist/assets/components/bs5/contentFooter/contentFooter.hbs +4 -0
  18. package/dist/assets/components/bs5/contentFooterWrapper/contentFooterWrapper.hbs +5 -0
  19. package/dist/assets/components/bs5/contentFooterWrapper/contentFooterWrapper.test.hbs +13 -0
  20. package/dist/assets/components/bs5/contentWrapper/contentWrapper.hbs +5 -0
  21. package/dist/assets/components/bs5/contentWrapper/contentWrapper.test.hbs +12 -0
  22. package/dist/assets/components/bs5/correctincorrect/correctincorrect.hbs +0 -0
  23. package/dist/assets/components/bs5/dateinput/dateinput.hbs +64 -0
  24. package/dist/assets/components/bs5/footer/footer.hbs +351 -0
  25. package/dist/assets/components/bs5/footer/footerForgov.hbs +267 -0
  26. package/dist/assets/components/bs5/formcheck/formcheck.hbs +23 -0
  27. package/dist/assets/components/bs5/fullPageWrapper/fullPage.hbs +16 -0
  28. package/dist/assets/components/bs5/fullPageWrapper/fullPage.test.hbs +4 -0
  29. package/dist/assets/components/bs5/globalAlert/globalAlert.hbs +24 -0
  30. package/dist/assets/components/bs5/head/head.hbs +11 -0
  31. package/dist/{components/handlebars.init.min.js → assets/components/bs5/header/header.hbs} +2 -1741
  32. package/dist/assets/components/bs5/inpageAlert/inpageAlert.hbs +6 -0
  33. package/dist/assets/components/bs5/inpagenav/inpagenav.hbs +15 -0
  34. package/dist/assets/components/bs5/mainContainerWrapper/mainContainerWrapper.hbs +28 -0
  35. package/dist/assets/components/bs5/mainContainerWrapper/mainContainerWrapper.test.hbs +6 -0
  36. package/dist/assets/components/bs5/metaDcTerms/metaDcTerms.hbs +19 -0
  37. package/dist/assets/components/bs5/metaOpenGraph/metaOpenGraph.hbs +18 -0
  38. package/dist/assets/components/bs5/modal/modal.hbs +38 -0
  39. package/dist/assets/components/bs5/navbar/navbar.hbs +251 -0
  40. package/dist/assets/components/bs5/pagination/pagination.hbs +43 -0
  41. package/dist/assets/components/bs5/quickexit/quickexit.hbs +40 -0
  42. package/dist/assets/components/bs5/searchInput/searchInput.hbs +47 -0
  43. package/dist/assets/components/bs5/select/select.hbs +34 -0
  44. package/dist/assets/components/bs5/sidenav/sidenav.hbs +66 -0
  45. package/dist/assets/components/bs5/sidenavWrapper/sidenavWrapper.hbs +4 -0
  46. package/dist/assets/components/bs5/sidenavWrapper/sidenavWrapper.test.hbs +15 -0
  47. package/dist/assets/components/bs5/spinner/spinner.hbs +8 -0
  48. package/dist/assets/components/bs5/table/table.hbs +49 -0
  49. package/dist/assets/components/bs5/tag/tag.hbs +10 -0
  50. package/dist/assets/components/bs5/textarea/textarea.hbs +32 -0
  51. package/dist/assets/components/bs5/textbox/textbox.hbs +32 -0
  52. package/dist/assets/components/bs5/typography/typography.hbs +1 -0
  53. package/dist/assets/components/bs5/video/video.hbs +52 -0
  54. package/dist/assets/css/qld.bootstrap.css +1 -1
  55. package/dist/assets/css/qld.bootstrap.css.map +2 -2
  56. package/dist/assets/js/bootstrap.js +6314 -0
  57. package/dist/assets/js/bootstrap.min.js +7 -11
  58. package/dist/assets/js/bootstrap.min.js.map +1 -7
  59. package/dist/assets/js/handlebars.init.cjs +6 -0
  60. package/dist/assets/js/handlebars.init.js +34 -0
  61. package/dist/assets/js/handlebars.init.min.js +6 -4
  62. package/dist/assets/js/handlebars.init.min.js.map +2 -2
  63. package/dist/assets/js/handlebars.partials.js +96 -0
  64. package/dist/assets/js/qld.bootstrap.min.js +5 -5
  65. package/dist/assets/js/qld.bootstrap.min.js.map +4 -4
  66. package/dist/assets/node/handlebars.init.min.js +709 -0
  67. package/dist/{components → assets/node}/handlebars.init.min.js.map +4 -4
  68. package/dist/components/bs5/head/head.hbs +1 -1
  69. package/dist/components/bs5/metaDcTerms/metaDcTerms.hbs +2 -0
  70. package/dist/components/handlebars.init.cjs +6 -0
  71. package/dist/components/handlebars.partials.js +40 -40
  72. package/dist/package.json +108 -0
  73. package/esbuild.js +33 -11
  74. package/package.json +23 -14
  75. package/pom.xml +10 -0
  76. package/src/components/bs5/inpagenav/inpagenav.scss +1 -0
  77. package/src/components/bs5/inpagenav/inpagenav.stories.js +1 -1
  78. package/src/components/bs5/metaDcTerms/metaDcTerms.hbs +2 -0
  79. package/src/components/bs5/navbar/navbar.functions.js +1 -1
  80. package/src/components/bs5/sidenav/sidenav.scss +28 -3
  81. package/src/components/bs5/typography/typography.stories.js +1 -1
  82. package/src/js/handlebars.init.cjs +6 -0
  83. package/src/js/handlebars.partials.js +40 -40
  84. package/src/js/qld.bootstrap.js +138 -0
  85. package/src/scss/qld-type.scss +1 -6
  86. package/.esbuild/helpers/listfiles.js +0 -16
  87. package/dist/assets/img/100x100.jpg +0 -0
  88. package/dist/assets/img/600x260.jpg +0 -0
  89. package/dist/assets/img/Heart-Pattern-Dark.png +0 -0
  90. package/dist/assets/img/Heart-Pattern.png +0 -0
  91. package/dist/assets/img/_coa_header-logo-qgov--stacked.svg +0 -171
  92. package/dist/assets/img/_coa_header-logo-qgov-masterbrand.svg +0 -56
  93. package/dist/assets/img/_coa_preheader-logo-qgov.svg +0 -56
  94. package/dist/assets/img/banner-background--mobile.png +0 -0
  95. package/dist/assets/img/banner-background-alt--desktop.jpg +0 -0
  96. package/dist/assets/img/banner-background-dark--desktop.jpg +0 -0
  97. package/dist/assets/img/banner-background-dark-alt--desktop.jpg +0 -0
  98. package/dist/assets/img/banner-background-default--desktop.jpg +0 -0
  99. package/dist/assets/img/banner-bg.png +0 -0
  100. package/dist/assets/img/banner-example-3-to-2.jpg +0 -0
  101. package/dist/assets/img/banner-texture-tile-dark.png +0 -0
  102. package/dist/assets/img/banner-texture-tile-light.png +0 -0
  103. package/dist/assets/img/banner.png +0 -0
  104. package/dist/assets/img/card--brand.png +0 -0
  105. package/dist/assets/img/card--components.png +0 -0
  106. package/dist/assets/img/card--content.png +0 -0
  107. package/dist/assets/img/colour-photo-example.jpg +0 -0
  108. package/dist/assets/img/demo-image-unsplash-motorbike.jpg +0 -0
  109. package/dist/assets/img/ds-example-image-1.jpg +0 -0
  110. package/dist/assets/img/ds-example-image-2.jpg +0 -0
  111. package/dist/assets/img/ds-example-image-3.jpg +0 -0
  112. package/dist/assets/img/endorsed.svg +0 -145
  113. package/dist/assets/img/header-search.svg +0 -3
  114. package/dist/assets/img/health-icon-sprite.svg +0 -156
  115. package/dist/assets/img/icon-exclamation.svg +0 -6
  116. package/dist/assets/img/icon-home.svg +0 -4
  117. package/dist/assets/img/icon-nav-chevron.svg +0 -3
  118. package/dist/assets/img/icon-right-arrow.svg +0 -4
  119. package/dist/assets/img/icon-search.svg +0 -6
  120. package/dist/assets/img/image-placeholder.png +0 -0
  121. package/dist/assets/img/layers-2x.png +0 -0
  122. package/dist/assets/img/layers.png +0 -0
  123. package/dist/assets/img/marker-icon.png +0 -0
  124. package/dist/assets/img/sample-header-pic.jpg +0 -0
  125. package/dist/assets/img/svg-icons.svg +0 -155
  126. package/dist/assets/img/video-play.svg +0 -3
  127. package/src/main.js +0 -138
@@ -1,11 +1,7 @@
1
- (()=>{var yr=Object.defineProperty,wr=Object.defineProperties;var Ar=Object.getOwnPropertyDescriptors;var en=Object.getOwnPropertySymbols;var Er=Object.prototype.hasOwnProperty,Cr=Object.prototype.propertyIsEnumerable;var tn=(n,i,r)=>i in n?yr(n,i,{enumerable:!0,configurable:!0,writable:!0,value:r}):n[i]=r,z=(n,i)=>{for(var r in i||(i={}))Er.call(i,r)&&tn(n,r,i[r]);if(en)for(var r of en(i))Cr.call(i,r)&&tn(n,r,i[r]);return n},Lt=(n,i)=>wr(n,Ar(i));var nn=(n,i)=>()=>(i||n((i={exports:{}}).exports,i),i.exports);var kn=nn(q=>{"use strict";Object.defineProperty(q,"__esModule",{value:!0});function G(n){if(n==null)return window;if(n.toString()!=="[object Window]"){var i=n.ownerDocument;return i&&i.defaultView||window}return n}function Re(n){var i=G(n).Element;return n instanceof i||n instanceof Element}function J(n){var i=G(n).HTMLElement;return n instanceof i||n instanceof HTMLElement}function ti(n){if(typeof ShadowRoot=="undefined")return!1;var i=G(n).ShadowRoot;return n instanceof i||n instanceof ShadowRoot}var He=Math.max,It=Math.min,Ze=Math.round;function Jt(){var n=navigator.userAgentData;return n!=null&&n.brands&&Array.isArray(n.brands)?n.brands.map(function(i){return i.brand+"/"+i.version}).join(" "):navigator.userAgent}function fn(){return!/^((?!chrome|android).)*safari/i.test(Jt())}function Je(n,i,r){i===void 0&&(i=!1),r===void 0&&(r=!1);var a=n.getBoundingClientRect(),l=1,d=1;i&&J(n)&&(l=n.offsetWidth>0&&Ze(a.width)/n.offsetWidth||1,d=n.offsetHeight>0&&Ze(a.height)/n.offsetHeight||1);var m=Re(n)?G(n):window,f=m.visualViewport,h=!fn()&&r,v=(a.left+(h&&f?f.offsetLeft:0))/l,g=(a.top+(h&&f?f.offsetTop:0))/d,A=a.width/l,D=a.height/d;return{width:A,height:D,top:g,right:v+A,bottom:g+D,left:v,x:v,y:g}}function ii(n){var i=G(n),r=i.pageXOffset,a=i.pageYOffset;return{scrollLeft:r,scrollTop:a}}function Tr(n){return{scrollLeft:n.scrollLeft,scrollTop:n.scrollTop}}function Or(n){return n===G(n)||!J(n)?ii(n):Tr(n)}function de(n){return n?(n.nodeName||"").toLowerCase():null}function Oe(n){return((Re(n)?n.ownerDocument:n.document)||window.document).documentElement}function ni(n){return Je(Oe(n)).left+ii(n).scrollLeft}function we(n){return G(n).getComputedStyle(n)}function si(n){var i=we(n),r=i.overflow,a=i.overflowX,l=i.overflowY;return/auto|scroll|overlay|hidden/.test(r+l+a)}function xr(n){var i=n.getBoundingClientRect(),r=Ze(i.width)/n.offsetWidth||1,a=Ze(i.height)/n.offsetHeight||1;return r!==1||a!==1}function kr(n,i,r){r===void 0&&(r=!1);var a=J(i),l=J(i)&&xr(i),d=Oe(i),m=Je(n,l,r),f={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(a||!a&&!r)&&((de(i)!=="body"||si(d))&&(f=Or(i)),J(i)?(h=Je(i,!0),h.x+=i.clientLeft,h.y+=i.clientTop):d&&(h.x=ni(d))),{x:m.left+f.scrollLeft-h.x,y:m.top+f.scrollTop-h.y,width:m.width,height:m.height}}function ri(n){var i=Je(n),r=n.offsetWidth,a=n.offsetHeight;return Math.abs(i.width-r)<=1&&(r=i.width),Math.abs(i.height-a)<=1&&(a=i.height),{x:n.offsetLeft,y:n.offsetTop,width:r,height:a}}function Nt(n){return de(n)==="html"?n:n.assignedSlot||n.parentNode||(ti(n)?n.host:null)||Oe(n)}function pn(n){return["html","body","#document"].indexOf(de(n))>=0?n.ownerDocument.body:J(n)&&si(n)?n:pn(Nt(n))}function ht(n,i){var r;i===void 0&&(i=[]);var a=pn(n),l=a===((r=n.ownerDocument)==null?void 0:r.body),d=G(a),m=l?[d].concat(d.visualViewport||[],si(a)?a:[]):a,f=i.concat(m);return l?f:f.concat(ht(Nt(m)))}function $r(n){return["table","td","th"].indexOf(de(n))>=0}function sn(n){return!J(n)||we(n).position==="fixed"?null:n.offsetParent}function Sr(n){var i=/firefox/i.test(Jt()),r=/Trident/i.test(Jt());if(r&&J(n)){var a=we(n);if(a.position==="fixed")return null}var l=Nt(n);for(ti(l)&&(l=l.host);J(l)&&["html","body"].indexOf(de(l))<0;){var d=we(l);if(d.transform!=="none"||d.perspective!=="none"||d.contain==="paint"||["transform","perspective"].indexOf(d.willChange)!==-1||i&&d.willChange==="filter"||i&&d.filter&&d.filter!=="none")return l;l=l.parentNode}return null}function pt(n){for(var i=G(n),r=sn(n);r&&$r(r)&&we(r).position==="static";)r=sn(r);return r&&(de(r)==="html"||de(r)==="body"&&we(r).position==="static")?i:r||Sr(n)||i}var Y="top",ee="bottom",te="right",K="left",oi="auto",gt=[Y,ee,te,K],et="start",ft="end",Lr="clippingParents",gn="viewport",ut="popper",Dr="reference",rn=gt.reduce(function(n,i){return n.concat([i+"-"+et,i+"-"+ft])},[]),mn=[].concat(gt,[oi]).reduce(function(n,i){return n.concat([i,i+"-"+et,i+"-"+ft])},[]),Pr="beforeRead",Ir="read",Nr="afterRead",jr="beforeMain",Mr="main",Fr="afterMain",Br="beforeWrite",Hr="write",Rr="afterWrite",Wr=[Pr,Ir,Nr,jr,Mr,Fr,Br,Hr,Rr];function zr(n){var i=new Map,r=new Set,a=[];n.forEach(function(d){i.set(d.name,d)});function l(d){r.add(d.name);var m=[].concat(d.requires||[],d.requiresIfExists||[]);m.forEach(function(f){if(!r.has(f)){var h=i.get(f);h&&l(h)}}),a.push(d)}return n.forEach(function(d){r.has(d.name)||l(d)}),a}function qr(n){var i=zr(n);return Wr.reduce(function(r,a){return r.concat(i.filter(function(l){return l.phase===a}))},[])}function Vr(n){var i;return function(){return i||(i=new Promise(function(r){Promise.resolve().then(function(){i=void 0,r(n())})})),i}}function Xr(n){var i=n.reduce(function(r,a){var l=r[a.name];return r[a.name]=l?Object.assign({},l,a,{options:Object.assign({},l.options,a.options),data:Object.assign({},l.data,a.data)}):a,r},{});return Object.keys(i).map(function(r){return i[r]})}function Yr(n,i){var r=G(n),a=Oe(n),l=r.visualViewport,d=a.clientWidth,m=a.clientHeight,f=0,h=0;if(l){d=l.width,m=l.height;var v=fn();(v||!v&&i==="fixed")&&(f=l.offsetLeft,h=l.offsetTop)}return{width:d,height:m,x:f+ni(n),y:h}}function Kr(n){var i,r=Oe(n),a=ii(n),l=(i=n.ownerDocument)==null?void 0:i.body,d=He(r.scrollWidth,r.clientWidth,l?l.scrollWidth:0,l?l.clientWidth:0),m=He(r.scrollHeight,r.clientHeight,l?l.scrollHeight:0,l?l.clientHeight:0),f=-a.scrollLeft+ni(n),h=-a.scrollTop;return we(l||r).direction==="rtl"&&(f+=He(r.clientWidth,l?l.clientWidth:0)-d),{width:d,height:m,x:f,y:h}}function _n(n,i){var r=i.getRootNode&&i.getRootNode();if(n.contains(i))return!0;if(r&&ti(r)){var a=i;do{if(a&&n.isSameNode(a))return!0;a=a.parentNode||a.host}while(a)}return!1}function ei(n){return Object.assign({},n,{left:n.x,top:n.y,right:n.x+n.width,bottom:n.y+n.height})}function Ur(n,i){var r=Je(n,!1,i==="fixed");return r.top=r.top+n.clientTop,r.left=r.left+n.clientLeft,r.bottom=r.top+n.clientHeight,r.right=r.left+n.clientWidth,r.width=n.clientWidth,r.height=n.clientHeight,r.x=r.left,r.y=r.top,r}function on(n,i,r){return i===gn?ei(Yr(n,r)):Re(i)?Ur(i,r):ei(Kr(Oe(n)))}function Qr(n){var i=ht(Nt(n)),r=["absolute","fixed"].indexOf(we(n).position)>=0,a=r&&J(n)?pt(n):n;return Re(a)?i.filter(function(l){return Re(l)&&_n(l,a)&&de(l)!=="body"}):[]}function Gr(n,i,r,a){var l=i==="clippingParents"?Qr(n):[].concat(i),d=[].concat(l,[r]),m=d[0],f=d.reduce(function(h,v){var g=on(n,v,a);return h.top=He(g.top,h.top),h.right=It(g.right,h.right),h.bottom=It(g.bottom,h.bottom),h.left=He(g.left,h.left),h},on(n,m,a));return f.width=f.right-f.left,f.height=f.bottom-f.top,f.x=f.left,f.y=f.top,f}function he(n){return n.split("-")[0]}function tt(n){return n.split("-")[1]}function ai(n){return["top","bottom"].indexOf(n)>=0?"x":"y"}function vn(n){var i=n.reference,r=n.element,a=n.placement,l=a?he(a):null,d=a?tt(a):null,m=i.x+i.width/2-r.width/2,f=i.y+i.height/2-r.height/2,h;switch(l){case Y:h={x:m,y:i.y-r.height};break;case ee:h={x:m,y:i.y+i.height};break;case te:h={x:i.x+i.width,y:f};break;case K:h={x:i.x-r.width,y:f};break;default:h={x:i.x,y:i.y}}var v=l?ai(l):null;if(v!=null){var g=v==="y"?"height":"width";switch(d){case et:h[v]=h[v]-(i[g]/2-r[g]/2);break;case ft:h[v]=h[v]+(i[g]/2-r[g]/2);break}}return h}function bn(){return{top:0,right:0,bottom:0,left:0}}function yn(n){return Object.assign({},bn(),n)}function wn(n,i){return i.reduce(function(r,a){return r[a]=n,r},{})}function it(n,i){i===void 0&&(i={});var r=i,a=r.placement,l=a===void 0?n.placement:a,d=r.strategy,m=d===void 0?n.strategy:d,f=r.boundary,h=f===void 0?Lr:f,v=r.rootBoundary,g=v===void 0?gn:v,A=r.elementContext,D=A===void 0?ut:A,y=r.altBoundary,S=y===void 0?!1:y,x=r.padding,C=x===void 0?0:x,E=yn(typeof C!="number"?C:wn(C,gt)),k=D===ut?Dr:ut,T=n.rects.popper,w=n.elements[S?k:D],$=Gr(Re(w)?w:w.contextElement||Oe(n.elements.popper),h,g,m),L=Je(n.elements.reference),P=vn({reference:L,element:T,strategy:"absolute",placement:l}),M=ei(Object.assign({},T,P)),N=D===ut?M:L,j={top:$.top-N.top+E.top,bottom:N.bottom-$.bottom+E.bottom,left:$.left-N.left+E.left,right:N.right-$.right+E.right},F=n.modifiersData.offset;if(D===ut&&F){var U=F[l];Object.keys(j).forEach(function(B){var le=[te,ee].indexOf(B)>=0?1:-1,ce=[Y,ee].indexOf(B)>=0?"y":"x";j[B]+=U[ce]*le})}return j}var an={placement:"bottom",modifiers:[],strategy:"absolute"};function ln(){for(var n=arguments.length,i=new Array(n),r=0;r<n;r++)i[r]=arguments[r];return!i.some(function(a){return!(a&&typeof a.getBoundingClientRect=="function")})}function li(n){n===void 0&&(n={});var i=n,r=i.defaultModifiers,a=r===void 0?[]:r,l=i.defaultOptions,d=l===void 0?an:l;return function(f,h,v){v===void 0&&(v=d);var g={placement:"bottom",orderedModifiers:[],options:Object.assign({},an,d),modifiersData:{},elements:{reference:f,popper:h},attributes:{},styles:{}},A=[],D=!1,y={state:g,setOptions:function(E){var k=typeof E=="function"?E(g.options):E;x(),g.options=Object.assign({},d,g.options,k),g.scrollParents={reference:Re(f)?ht(f):f.contextElement?ht(f.contextElement):[],popper:ht(h)};var T=qr(Xr([].concat(a,g.options.modifiers)));return g.orderedModifiers=T.filter(function(w){return w.enabled}),S(),y.update()},forceUpdate:function(){if(!D){var E=g.elements,k=E.reference,T=E.popper;if(ln(k,T)){g.rects={reference:kr(k,pt(T),g.options.strategy==="fixed"),popper:ri(T)},g.reset=!1,g.placement=g.options.placement,g.orderedModifiers.forEach(function(j){return g.modifiersData[j.name]=Object.assign({},j.data)});for(var w=0;w<g.orderedModifiers.length;w++){if(g.reset===!0){g.reset=!1,w=-1;continue}var $=g.orderedModifiers[w],L=$.fn,P=$.options,M=P===void 0?{}:P,N=$.name;typeof L=="function"&&(g=L({state:g,options:M,name:N,instance:y})||g)}}}},update:Vr(function(){return new Promise(function(C){y.forceUpdate(),C(g)})}),destroy:function(){x(),D=!0}};if(!ln(f,h))return y;y.setOptions(v).then(function(C){!D&&v.onFirstUpdate&&v.onFirstUpdate(C)});function S(){g.orderedModifiers.forEach(function(C){var E=C.name,k=C.options,T=k===void 0?{}:k,w=C.effect;if(typeof w=="function"){var $=w({state:g,name:E,instance:y,options:T}),L=function(){};A.push($||L)}})}function x(){A.forEach(function(C){return C()}),A=[]}return y}}var Dt={passive:!0};function Zr(n){var i=n.state,r=n.instance,a=n.options,l=a.scroll,d=l===void 0?!0:l,m=a.resize,f=m===void 0?!0:m,h=G(i.elements.popper),v=[].concat(i.scrollParents.reference,i.scrollParents.popper);return d&&v.forEach(function(g){g.addEventListener("scroll",r.update,Dt)}),f&&h.addEventListener("resize",r.update,Dt),function(){d&&v.forEach(function(g){g.removeEventListener("scroll",r.update,Dt)}),f&&h.removeEventListener("resize",r.update,Dt)}}var ci={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Zr,data:{}};function Jr(n){var i=n.state,r=n.name;i.modifiersData[r]=vn({reference:i.rects.reference,element:i.rects.popper,strategy:"absolute",placement:i.placement})}var ui={name:"popperOffsets",enabled:!0,phase:"read",fn:Jr,data:{}},eo={top:"auto",right:"auto",bottom:"auto",left:"auto"};function to(n,i){var r=n.x,a=n.y,l=i.devicePixelRatio||1;return{x:Ze(r*l)/l||0,y:Ze(a*l)/l||0}}function cn(n){var i,r=n.popper,a=n.popperRect,l=n.placement,d=n.variation,m=n.offsets,f=n.position,h=n.gpuAcceleration,v=n.adaptive,g=n.roundOffsets,A=n.isFixed,D=m.x,y=D===void 0?0:D,S=m.y,x=S===void 0?0:S,C=typeof g=="function"?g({x:y,y:x}):{x:y,y:x};y=C.x,x=C.y;var E=m.hasOwnProperty("x"),k=m.hasOwnProperty("y"),T=K,w=Y,$=window;if(v){var L=pt(r),P="clientHeight",M="clientWidth";if(L===G(r)&&(L=Oe(r),we(L).position!=="static"&&f==="absolute"&&(P="scrollHeight",M="scrollWidth")),L=L,l===Y||(l===K||l===te)&&d===ft){w=ee;var N=A&&L===$&&$.visualViewport?$.visualViewport.height:L[P];x-=N-a.height,x*=h?1:-1}if(l===K||(l===Y||l===ee)&&d===ft){T=te;var j=A&&L===$&&$.visualViewport?$.visualViewport.width:L[M];y-=j-a.width,y*=h?1:-1}}var F=Object.assign({position:f},v&&eo),U=g===!0?to({x:y,y:x},G(r)):{x:y,y:x};if(y=U.x,x=U.y,h){var B;return Object.assign({},F,(B={},B[w]=k?"0":"",B[T]=E?"0":"",B.transform=($.devicePixelRatio||1)<=1?"translate("+y+"px, "+x+"px)":"translate3d("+y+"px, "+x+"px, 0)",B))}return Object.assign({},F,(i={},i[w]=k?x+"px":"",i[T]=E?y+"px":"",i.transform="",i))}function io(n){var i=n.state,r=n.options,a=r.gpuAcceleration,l=a===void 0?!0:a,d=r.adaptive,m=d===void 0?!0:d,f=r.roundOffsets,h=f===void 0?!0:f,v={placement:he(i.placement),variation:tt(i.placement),popper:i.elements.popper,popperRect:i.rects.popper,gpuAcceleration:l,isFixed:i.options.strategy==="fixed"};i.modifiersData.popperOffsets!=null&&(i.styles.popper=Object.assign({},i.styles.popper,cn(Object.assign({},v,{offsets:i.modifiersData.popperOffsets,position:i.options.strategy,adaptive:m,roundOffsets:h})))),i.modifiersData.arrow!=null&&(i.styles.arrow=Object.assign({},i.styles.arrow,cn(Object.assign({},v,{offsets:i.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:h})))),i.attributes.popper=Object.assign({},i.attributes.popper,{"data-popper-placement":i.placement})}var hi={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:io,data:{}};function no(n){var i=n.state;Object.keys(i.elements).forEach(function(r){var a=i.styles[r]||{},l=i.attributes[r]||{},d=i.elements[r];!J(d)||!de(d)||(Object.assign(d.style,a),Object.keys(l).forEach(function(m){var f=l[m];f===!1?d.removeAttribute(m):d.setAttribute(m,f===!0?"":f)}))})}function so(n){var i=n.state,r={popper:{position:i.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(i.elements.popper.style,r.popper),i.styles=r,i.elements.arrow&&Object.assign(i.elements.arrow.style,r.arrow),function(){Object.keys(i.elements).forEach(function(a){var l=i.elements[a],d=i.attributes[a]||{},m=Object.keys(i.styles.hasOwnProperty(a)?i.styles[a]:r[a]),f=m.reduce(function(h,v){return h[v]="",h},{});!J(l)||!de(l)||(Object.assign(l.style,f),Object.keys(d).forEach(function(h){l.removeAttribute(h)}))})}}var di={name:"applyStyles",enabled:!0,phase:"write",fn:no,effect:so,requires:["computeStyles"]};function ro(n,i,r){var a=he(n),l=[K,Y].indexOf(a)>=0?-1:1,d=typeof r=="function"?r(Object.assign({},i,{placement:n})):r,m=d[0],f=d[1];return m=m||0,f=(f||0)*l,[K,te].indexOf(a)>=0?{x:f,y:m}:{x:m,y:f}}function oo(n){var i=n.state,r=n.options,a=n.name,l=r.offset,d=l===void 0?[0,0]:l,m=mn.reduce(function(g,A){return g[A]=ro(A,i.rects,d),g},{}),f=m[i.placement],h=f.x,v=f.y;i.modifiersData.popperOffsets!=null&&(i.modifiersData.popperOffsets.x+=h,i.modifiersData.popperOffsets.y+=v),i.modifiersData[a]=m}var An={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:oo},ao={left:"right",right:"left",bottom:"top",top:"bottom"};function Pt(n){return n.replace(/left|right|bottom|top/g,function(i){return ao[i]})}var lo={start:"end",end:"start"};function un(n){return n.replace(/start|end/g,function(i){return lo[i]})}function co(n,i){i===void 0&&(i={});var r=i,a=r.placement,l=r.boundary,d=r.rootBoundary,m=r.padding,f=r.flipVariations,h=r.allowedAutoPlacements,v=h===void 0?mn:h,g=tt(a),A=g?f?rn:rn.filter(function(S){return tt(S)===g}):gt,D=A.filter(function(S){return v.indexOf(S)>=0});D.length===0&&(D=A);var y=D.reduce(function(S,x){return S[x]=it(n,{placement:x,boundary:l,rootBoundary:d,padding:m})[he(x)],S},{});return Object.keys(y).sort(function(S,x){return y[S]-y[x]})}function uo(n){if(he(n)===oi)return[];var i=Pt(n);return[un(n),i,un(i)]}function ho(n){var i=n.state,r=n.options,a=n.name;if(!i.modifiersData[a]._skip){for(var l=r.mainAxis,d=l===void 0?!0:l,m=r.altAxis,f=m===void 0?!0:m,h=r.fallbackPlacements,v=r.padding,g=r.boundary,A=r.rootBoundary,D=r.altBoundary,y=r.flipVariations,S=y===void 0?!0:y,x=r.allowedAutoPlacements,C=i.options.placement,E=he(C),k=E===C,T=h||(k||!S?[Pt(C)]:uo(C)),w=[C].concat(T).reduce(function(ue,H){return ue.concat(he(H)===oi?co(i,{placement:H,boundary:g,rootBoundary:A,padding:v,flipVariations:S,allowedAutoPlacements:x}):H)},[]),$=i.rects.reference,L=i.rects.popper,P=new Map,M=!0,N=w[0],j=0;j<w.length;j++){var F=w[j],U=he(F),B=tt(F)===et,le=[Y,ee].indexOf(U)>=0,ce=le?"width":"height",R=it(i,{placement:F,boundary:g,rootBoundary:A,altBoundary:D,padding:v}),V=le?B?te:K:B?ee:Y;$[ce]>L[ce]&&(V=Pt(V));var Ae=Pt(V),fe=[];if(d&&fe.push(R[U]<=0),f&&fe.push(R[V]<=0,R[Ae]<=0),fe.every(function(ue){return ue})){N=F,M=!1;break}P.set(F,fe)}if(M)for(var xe=S?3:1,u=function(H){var ie=w.find(function(W){var ne=P.get(W);if(ne)return ne.slice(0,H).every(function(b){return b})});if(ie)return N=ie,"break"},pe=xe;pe>0;pe--){var ke=u(pe);if(ke==="break")break}i.placement!==N&&(i.modifiersData[a]._skip=!0,i.placement=N,i.reset=!0)}}var En={name:"flip",enabled:!0,phase:"main",fn:ho,requiresIfExists:["offset"],data:{_skip:!1}};function fo(n){return n==="x"?"y":"x"}function dt(n,i,r){return He(n,It(i,r))}function po(n,i,r){var a=dt(n,i,r);return a>r?r:a}function go(n){var i=n.state,r=n.options,a=n.name,l=r.mainAxis,d=l===void 0?!0:l,m=r.altAxis,f=m===void 0?!1:m,h=r.boundary,v=r.rootBoundary,g=r.altBoundary,A=r.padding,D=r.tether,y=D===void 0?!0:D,S=r.tetherOffset,x=S===void 0?0:S,C=it(i,{boundary:h,rootBoundary:v,padding:A,altBoundary:g}),E=he(i.placement),k=tt(i.placement),T=!k,w=ai(E),$=fo(w),L=i.modifiersData.popperOffsets,P=i.rects.reference,M=i.rects.popper,N=typeof x=="function"?x(Object.assign({},i.rects,{placement:i.placement})):x,j=typeof N=="number"?{mainAxis:N,altAxis:N}:Object.assign({mainAxis:0,altAxis:0},N),F=i.modifiersData.offset?i.modifiersData.offset[i.placement]:null,U={x:0,y:0};if(L){if(d){var B,le=w==="y"?Y:K,ce=w==="y"?ee:te,R=w==="y"?"height":"width",V=L[w],Ae=V+C[le],fe=V-C[ce],xe=y?-M[R]/2:0,u=k===et?P[R]:M[R],pe=k===et?-M[R]:-P[R],ke=i.elements.arrow,ue=y&&ke?ri(ke):{width:0,height:0},H=i.modifiersData["arrow#persistent"]?i.modifiersData["arrow#persistent"].padding:bn(),ie=H[le],W=H[ce],ne=dt(0,P[R],ue[R]),b=T?P[R]/2-xe-ne-ie-j.mainAxis:u-ne-ie-j.mainAxis,We=T?-P[R]/2+xe+ne+W+j.mainAxis:pe+ne+W+j.mainAxis,ze=i.elements.arrow&&pt(i.elements.arrow),jt=ze?w==="y"?ze.clientTop||0:ze.clientLeft||0:0,mt=(B=F==null?void 0:F[w])!=null?B:0,$e=V+b-mt-jt,_t=V+We-mt,Ee=dt(y?It(Ae,$e):Ae,V,y?He(fe,_t):fe);L[w]=Ee,U[w]=Ee-V}if(f){var ge,Mt=w==="x"?Y:K,Ft=w==="x"?ee:te,me=L[$],qe=$==="y"?"height":"width",vt=me+C[Mt],bt=me-C[Ft],nt=[Y,K].indexOf(E)!==-1,Se=(ge=F==null?void 0:F[$])!=null?ge:0,se=nt?vt:me-P[qe]-M[qe]-Se+j.altAxis,st=nt?me+P[qe]+M[qe]-Se-j.altAxis:bt,Ce=y&&nt?po(se,me,st):dt(y?se:vt,me,y?st:bt);L[$]=Ce,U[$]=Ce-me}i.modifiersData[a]=U}}var Cn={name:"preventOverflow",enabled:!0,phase:"main",fn:go,requiresIfExists:["offset"]},mo=function(i,r){return i=typeof i=="function"?i(Object.assign({},r.rects,{placement:r.placement})):i,yn(typeof i!="number"?i:wn(i,gt))};function _o(n){var i,r=n.state,a=n.name,l=n.options,d=r.elements.arrow,m=r.modifiersData.popperOffsets,f=he(r.placement),h=ai(f),v=[K,te].indexOf(f)>=0,g=v?"height":"width";if(!(!d||!m)){var A=mo(l.padding,r),D=ri(d),y=h==="y"?Y:K,S=h==="y"?ee:te,x=r.rects.reference[g]+r.rects.reference[h]-m[h]-r.rects.popper[g],C=m[h]-r.rects.reference[h],E=pt(d),k=E?h==="y"?E.clientHeight||0:E.clientWidth||0:0,T=x/2-C/2,w=A[y],$=k-D[g]-A[S],L=k/2-D[g]/2+T,P=dt(w,L,$),M=h;r.modifiersData[a]=(i={},i[M]=P,i.centerOffset=P-L,i)}}function vo(n){var i=n.state,r=n.options,a=r.element,l=a===void 0?"[data-popper-arrow]":a;l!=null&&(typeof l=="string"&&(l=i.elements.popper.querySelector(l),!l)||_n(i.elements.popper,l)&&(i.elements.arrow=l))}var Tn={name:"arrow",enabled:!0,phase:"main",fn:_o,effect:vo,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function hn(n,i,r){return r===void 0&&(r={x:0,y:0}),{top:n.top-i.height-r.y,right:n.right-i.width+r.x,bottom:n.bottom-i.height+r.y,left:n.left-i.width-r.x}}function dn(n){return[Y,te,ee,K].some(function(i){return n[i]>=0})}function bo(n){var i=n.state,r=n.name,a=i.rects.reference,l=i.rects.popper,d=i.modifiersData.preventOverflow,m=it(i,{elementContext:"reference"}),f=it(i,{altBoundary:!0}),h=hn(m,a),v=hn(f,l,d),g=dn(h),A=dn(v);i.modifiersData[r]={referenceClippingOffsets:h,popperEscapeOffsets:v,isReferenceHidden:g,hasPopperEscaped:A},i.attributes.popper=Object.assign({},i.attributes.popper,{"data-popper-reference-hidden":g,"data-popper-escaped":A})}var On={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:bo},yo=[ci,ui,hi,di],wo=li({defaultModifiers:yo}),xn=[ci,ui,hi,di,An,En,Cn,Tn,On],Ao=li({defaultModifiers:xn});q.applyStyles=di;q.arrow=Tn;q.computeStyles=hi;q.createPopper=Ao;q.createPopperLite=wo;q.defaultModifiers=xn;q.detectOverflow=it;q.eventListeners=ci;q.flip=En;q.hide=On;q.offset=An;q.popperGenerator=li;q.popperOffsets=ui;q.preventOverflow=Cn});var Eo=nn((fi,pi)=>{(function(n,i){typeof fi=="object"&&typeof pi!="undefined"?pi.exports=i(kn()):typeof define=="function"&&define.amd?define(["@popperjs/core"],i):(n=typeof globalThis!="undefined"?globalThis:n||self).bootstrap=i(n.Popper)})(fi,function(n){"use strict";function i(o){let e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(o){for(let t in o)if(t!=="default"){let s=Object.getOwnPropertyDescriptor(o,t);Object.defineProperty(e,t,s.get?s:{enumerable:!0,get:()=>o[t]})}}return e.default=o,Object.freeze(e)}let r=i(n),a=new Map,l={set(o,e,t){a.has(o)||a.set(o,new Map);let s=a.get(o);s.has(e)||s.size===0?s.set(e,t):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(o,e)=>a.has(o)&&a.get(o).get(e)||null,remove(o,e){if(!a.has(o))return;let t=a.get(o);t.delete(e),t.size===0&&a.delete(o)}},d="transitionend",m=o=>(o&&window.CSS&&window.CSS.escape&&(o=o.replace(/#([^\s"#']+)/g,(e,t)=>`#${CSS.escape(t)}`)),o),f=o=>{o.dispatchEvent(new Event(d))},h=o=>!(!o||typeof o!="object")&&(o.jquery!==void 0&&(o=o[0]),o.nodeType!==void 0),v=o=>h(o)?o.jquery?o[0]:o:typeof o=="string"&&o.length>0?document.querySelector(m(o)):null,g=o=>{if(!h(o)||o.getClientRects().length===0)return!1;let e=getComputedStyle(o).getPropertyValue("visibility")==="visible",t=o.closest("details:not([open])");if(!t)return e;if(t!==o){let s=o.closest("summary");if(s&&s.parentNode!==t||s===null)return!1}return e},A=o=>!o||o.nodeType!==Node.ELEMENT_NODE||!!o.classList.contains("disabled")||(o.disabled!==void 0?o.disabled:o.hasAttribute("disabled")&&o.getAttribute("disabled")!=="false"),D=o=>{if(!document.documentElement.attachShadow)return null;if(typeof o.getRootNode=="function"){let e=o.getRootNode();return e instanceof ShadowRoot?e:null}return o instanceof ShadowRoot?o:o.parentNode?D(o.parentNode):null},y=()=>{},S=o=>{o.offsetHeight},x=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,C=[],E=()=>document.documentElement.dir==="rtl",k=o=>{var e;e=()=>{let t=x();if(t){let s=o.NAME,c=t.fn[s];t.fn[s]=o.jQueryInterface,t.fn[s].Constructor=o,t.fn[s].noConflict=()=>(t.fn[s]=c,o.jQueryInterface)}},document.readyState==="loading"?(C.length||document.addEventListener("DOMContentLoaded",()=>{for(let t of C)t()}),C.push(e)):e()},T=(o,e=[],t=o)=>typeof o=="function"?o(...e):t,w=(o,e,t=!0)=>{if(!t)return void T(o);let s=(_=>{if(!_)return 0;let{transitionDuration:O,transitionDelay:I}=window.getComputedStyle(_),X=Number.parseFloat(O),Q=Number.parseFloat(I);return X||Q?(O=O.split(",")[0],I=I.split(",")[0],1e3*(Number.parseFloat(O)+Number.parseFloat(I))):0})(e)+5,c=!1,p=({target:_})=>{_===e&&(c=!0,e.removeEventListener(d,p),T(o))};e.addEventListener(d,p),setTimeout(()=>{c||f(e)},s)},$=(o,e,t,s)=>{let c=o.length,p=o.indexOf(e);return p===-1?!t&&s?o[c-1]:o[0]:(p+=t?1:-1,s&&(p=(p+c)%c),o[Math.max(0,Math.min(p,c-1))])},L=/[^.]*(?=\..*)\.|.*/,P=/\..*/,M=/::\d+$/,N={},j=1,F={mouseenter:"mouseover",mouseleave:"mouseout"},U=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function B(o,e){return e&&`${e}::${j++}`||o.uidEvent||j++}function le(o){let e=B(o);return o.uidEvent=e,N[e]=N[e]||{},N[e]}function ce(o,e,t=null){return Object.values(o).find(s=>s.callable===e&&s.delegationSelector===t)}function R(o,e,t){let s=typeof e=="string",c=s?t:e||t,p=xe(o);return U.has(p)||(p=o),[s,c,p]}function V(o,e,t,s,c){if(typeof e!="string"||!o)return;let[p,_,O]=R(e,t,s);e in F&&(_=(Fe=>function(ae){if(!ae.relatedTarget||ae.relatedTarget!==ae.delegateTarget&&!ae.delegateTarget.contains(ae.relatedTarget))return Fe.call(this,ae)})(_));let I=le(o),X=I[O]||(I[O]={}),Q=ce(X,_,p?t:null);if(Q)return void(Q.oneOff=Q.oneOff&&c);let oe=B(_,e.replace(L,"")),be=p?function(ye,Fe,ae){return function ct(St){let vr=ye.querySelectorAll(Fe);for(let{target:Be}=St;Be&&Be!==this;Be=Be.parentNode)for(let br of vr)if(br===Be)return pe(St,{delegateTarget:Be}),ct.oneOff&&u.off(ye,St.type,Fe,ae),ae.apply(Be,[St])}}(o,t,_):function(ye,Fe){return function ae(ct){return pe(ct,{delegateTarget:ye}),ae.oneOff&&u.off(ye,ct.type,Fe),Fe.apply(ye,[ct])}}(o,_);be.delegationSelector=p?t:null,be.callable=_,be.oneOff=c,be.uidEvent=oe,X[oe]=be,o.addEventListener(O,be,p)}function Ae(o,e,t,s,c){let p=ce(e[t],s,c);p&&(o.removeEventListener(t,p,!!c),delete e[t][p.uidEvent])}function fe(o,e,t,s){let c=e[t]||{};for(let[p,_]of Object.entries(c))p.includes(s)&&Ae(o,e,t,_.callable,_.delegationSelector)}function xe(o){return o=o.replace(P,""),F[o]||o}let u={on(o,e,t,s){V(o,e,t,s,!1)},one(o,e,t,s){V(o,e,t,s,!0)},off(o,e,t,s){if(typeof e!="string"||!o)return;let[c,p,_]=R(e,t,s),O=_!==e,I=le(o),X=I[_]||{},Q=e.startsWith(".");if(p===void 0){if(Q)for(let oe of Object.keys(I))fe(o,I,oe,e.slice(1));for(let[oe,be]of Object.entries(X)){let ye=oe.replace(M,"");O&&!e.includes(ye)||Ae(o,I,_,be.callable,be.delegationSelector)}}else{if(!Object.keys(X).length)return;Ae(o,I,_,p,c?t:null)}},trigger(o,e,t){if(typeof e!="string"||!o)return null;let s=x(),c=null,p=!0,_=!0,O=!1;e!==xe(e)&&s&&(c=s.Event(e,t),s(o).trigger(c),p=!c.isPropagationStopped(),_=!c.isImmediatePropagationStopped(),O=c.isDefaultPrevented());let I=pe(new Event(e,{bubbles:p,cancelable:!0}),t);return O&&I.preventDefault(),_&&o.dispatchEvent(I),I.defaultPrevented&&c&&c.preventDefault(),I}};function pe(o,e={}){for(let[t,s]of Object.entries(e))try{o[t]=s}catch(c){Object.defineProperty(o,t,{configurable:!0,get:()=>s})}return o}function ke(o){if(o==="true")return!0;if(o==="false")return!1;if(o===Number(o).toString())return Number(o);if(o===""||o==="null")return null;if(typeof o!="string")return o;try{return JSON.parse(decodeURIComponent(o))}catch(e){return o}}function ue(o){return o.replace(/[A-Z]/g,e=>`-${e.toLowerCase()}`)}let H={setDataAttribute(o,e,t){o.setAttribute(`data-bs-${ue(e)}`,t)},removeDataAttribute(o,e){o.removeAttribute(`data-bs-${ue(e)}`)},getDataAttributes(o){if(!o)return{};let e={},t=Object.keys(o.dataset).filter(s=>s.startsWith("bs")&&!s.startsWith("bsConfig"));for(let s of t){let c=s.replace(/^bs/,"");c=c.charAt(0).toLowerCase()+c.slice(1,c.length),e[c]=ke(o.dataset[s])}return e},getDataAttribute:(o,e)=>ke(o.getAttribute(`data-bs-${ue(e)}`))};class ie{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(e){return e=this._mergeConfigObj(e),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}_configAfterMerge(e){return e}_mergeConfigObj(e,t){let s=h(t)?H.getDataAttribute(t,"config"):{};return z(z(z(z({},this.constructor.Default),typeof s=="object"?s:{}),h(t)?H.getDataAttributes(t):{}),typeof e=="object"?e:{})}_typeCheckConfig(e,t=this.constructor.DefaultType){for(let[c,p]of Object.entries(t)){let _=e[c],O=h(_)?"element":(s=_)==null?`${s}`:Object.prototype.toString.call(s).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(p).test(O))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${c}" provided type "${O}" but expected type "${p}".`)}var s}}class W extends ie{constructor(e,t){super(),(e=v(e))&&(this._element=e,this._config=this._getConfig(t),l.set(this._element,this.constructor.DATA_KEY,this))}dispose(){l.remove(this._element,this.constructor.DATA_KEY),u.off(this._element,this.constructor.EVENT_KEY);for(let e of Object.getOwnPropertyNames(this))this[e]=null}_queueCallback(e,t,s=!0){w(e,t,s)}_getConfig(e){return e=this._mergeConfigObj(e,this._element),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}static getInstance(e){return l.get(v(e),this.DATA_KEY)}static getOrCreateInstance(e,t={}){return this.getInstance(e)||new this(e,typeof t=="object"?t:null)}static get VERSION(){return"5.3.3"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(e){return`${e}${this.EVENT_KEY}`}}let ne=o=>{let e=o.getAttribute("data-bs-target");if(!e||e==="#"){let t=o.getAttribute("href");if(!t||!t.includes("#")&&!t.startsWith("."))return null;t.includes("#")&&!t.startsWith("#")&&(t=`#${t.split("#")[1]}`),e=t&&t!=="#"?t.trim():null}return e?e.split(",").map(t=>m(t)).join(","):null},b={find:(o,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,o)),findOne:(o,e=document.documentElement)=>Element.prototype.querySelector.call(e,o),children:(o,e)=>[].concat(...o.children).filter(t=>t.matches(e)),parents(o,e){let t=[],s=o.parentNode.closest(e);for(;s;)t.push(s),s=s.parentNode.closest(e);return t},prev(o,e){let t=o.previousElementSibling;for(;t;){if(t.matches(e))return[t];t=t.previousElementSibling}return[]},next(o,e){let t=o.nextElementSibling;for(;t;){if(t.matches(e))return[t];t=t.nextElementSibling}return[]},focusableChildren(o){let e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map(t=>`${t}:not([tabindex^="-"])`).join(",");return this.find(e,o).filter(t=>!A(t)&&g(t))},getSelectorFromElement(o){let e=ne(o);return e&&b.findOne(e)?e:null},getElementFromSelector(o){let e=ne(o);return e?b.findOne(e):null},getMultipleElementsFromSelector(o){let e=ne(o);return e?b.find(e):[]}},We=(o,e="hide")=>{let t=`click.dismiss${o.EVENT_KEY}`,s=o.NAME;u.on(document,t,`[data-bs-dismiss="${s}"]`,function(c){if(["A","AREA"].includes(this.tagName)&&c.preventDefault(),A(this))return;let p=b.getElementFromSelector(this)||this.closest(`.${s}`);o.getOrCreateInstance(p)[e]()})},ze=".bs.alert",jt=`close${ze}`,mt=`closed${ze}`;class $e extends W{static get NAME(){return"alert"}close(){if(u.trigger(this._element,jt).defaultPrevented)return;this._element.classList.remove("show");let e=this._element.classList.contains("fade");this._queueCallback(()=>this._destroyElement(),this._element,e)}_destroyElement(){this._element.remove(),u.trigger(this._element,mt),this.dispose()}static jQueryInterface(e){return this.each(function(){let t=$e.getOrCreateInstance(this);if(typeof e=="string"){if(t[e]===void 0||e.startsWith("_")||e==="constructor")throw new TypeError(`No method named "${e}"`);t[e](this)}})}}We($e,"close"),k($e);let _t='[data-bs-toggle="button"]';class Ee extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(e){return this.each(function(){let t=Ee.getOrCreateInstance(this);e==="toggle"&&t[e]()})}}u.on(document,"click.bs.button.data-api",_t,o=>{o.preventDefault();let e=o.target.closest(_t);Ee.getOrCreateInstance(e).toggle()}),k(Ee);let ge=".bs.swipe",Mt=`touchstart${ge}`,Ft=`touchmove${ge}`,me=`touchend${ge}`,qe=`pointerdown${ge}`,vt=`pointerup${ge}`,bt={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class Se extends ie{constructor(e,t){super(),this._element=e,e&&Se.isSupported()&&(this._config=this._getConfig(t),this._deltaX=0,this._supportPointerEvents=!!window.PointerEvent,this._initEvents())}static get Default(){return bt}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){u.off(this._element,ge)}_start(e){this._supportPointerEvents?this._eventIsPointerPenTouch(e)&&(this._deltaX=e.clientX):this._deltaX=e.touches[0].clientX}_end(e){this._eventIsPointerPenTouch(e)&&(this._deltaX=e.clientX-this._deltaX),this._handleSwipe(),T(this._config.endCallback)}_move(e){this._deltaX=e.touches&&e.touches.length>1?0:e.touches[0].clientX-this._deltaX}_handleSwipe(){let e=Math.abs(this._deltaX);if(e<=40)return;let t=e/this._deltaX;this._deltaX=0,t&&T(t>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(u.on(this._element,qe,e=>this._start(e)),u.on(this._element,vt,e=>this._end(e)),this._element.classList.add("pointer-event")):(u.on(this._element,Mt,e=>this._start(e)),u.on(this._element,Ft,e=>this._move(e)),u.on(this._element,me,e=>this._end(e)))}_eventIsPointerPenTouch(e){return this._supportPointerEvents&&(e.pointerType==="pen"||e.pointerType==="touch")}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}let se=".bs.carousel",st=".data-api",Ce="next",Ve="prev",Xe="left",yt="right",$n=`slide${se}`,Bt=`slid${se}`,Sn=`keydown${se}`,Ln=`mouseenter${se}`,Dn=`mouseleave${se}`,Pn=`dragstart${se}`,In=`load${se}${st}`,Nn=`click${se}${st}`,gi="carousel",wt="active",mi=".active",_i=".carousel-item",jn=mi+_i,Mn={ArrowLeft:yt,ArrowRight:Xe},Fn={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Bn={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class Ye extends W{constructor(e,t){super(e,t),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=b.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===gi&&this.cycle()}static get Default(){return Fn}static get DefaultType(){return Bn}static get NAME(){return"carousel"}next(){this._slide(Ce)}nextWhenVisible(){!document.hidden&&g(this._element)&&this.next()}prev(){this._slide(Ve)}pause(){this._isSliding&&f(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval(()=>this.nextWhenVisible(),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?u.one(this._element,Bt,()=>this.cycle()):this.cycle())}to(e){let t=this._getItems();if(e>t.length-1||e<0)return;if(this._isSliding)return void u.one(this._element,Bt,()=>this.to(e));let s=this._getItemIndex(this._getActive());if(s===e)return;let c=e>s?Ce:Ve;this._slide(c,t[e])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(e){return e.defaultInterval=e.interval,e}_addEventListeners(){this._config.keyboard&&u.on(this._element,Sn,e=>this._keydown(e)),this._config.pause==="hover"&&(u.on(this._element,Ln,()=>this.pause()),u.on(this._element,Dn,()=>this._maybeEnableCycle())),this._config.touch&&Se.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(let t of b.find(".carousel-item img",this._element))u.on(t,Pn,s=>s.preventDefault());let e={leftCallback:()=>this._slide(this._directionToOrder(Xe)),rightCallback:()=>this._slide(this._directionToOrder(yt)),endCallback:()=>{this._config.pause==="hover"&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(()=>this._maybeEnableCycle(),500+this._config.interval))}};this._swipeHelper=new Se(this._element,e)}_keydown(e){if(/input|textarea/i.test(e.target.tagName))return;let t=Mn[e.key];t&&(e.preventDefault(),this._slide(this._directionToOrder(t)))}_getItemIndex(e){return this._getItems().indexOf(e)}_setActiveIndicatorElement(e){if(!this._indicatorsElement)return;let t=b.findOne(mi,this._indicatorsElement);t.classList.remove(wt),t.removeAttribute("aria-current");let s=b.findOne(`[data-bs-slide-to="${e}"]`,this._indicatorsElement);s&&(s.classList.add(wt),s.setAttribute("aria-current","true"))}_updateInterval(){let e=this._activeElement||this._getActive();if(!e)return;let t=Number.parseInt(e.getAttribute("data-bs-interval"),10);this._config.interval=t||this._config.defaultInterval}_slide(e,t=null){if(this._isSliding)return;let s=this._getActive(),c=e===Ce,p=t||$(this._getItems(),s,c,this._config.wrap);if(p===s)return;let _=this._getItemIndex(p),O=oe=>u.trigger(this._element,oe,{relatedTarget:p,direction:this._orderToDirection(e),from:this._getItemIndex(s),to:_});if(O($n).defaultPrevented||!s||!p)return;let I=!!this._interval;this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(_),this._activeElement=p;let X=c?"carousel-item-start":"carousel-item-end",Q=c?"carousel-item-next":"carousel-item-prev";p.classList.add(Q),S(p),s.classList.add(X),p.classList.add(X),this._queueCallback(()=>{p.classList.remove(X,Q),p.classList.add(wt),s.classList.remove(wt,Q,X),this._isSliding=!1,O(Bt)},s,this._isAnimated()),I&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return b.findOne(jn,this._element)}_getItems(){return b.find(_i,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(e){return E()?e===Xe?Ve:Ce:e===Xe?Ce:Ve}_orderToDirection(e){return E()?e===Ve?Xe:yt:e===Ve?yt:Xe}static jQueryInterface(e){return this.each(function(){let t=Ye.getOrCreateInstance(this,e);if(typeof e!="number"){if(typeof e=="string"){if(t[e]===void 0||e.startsWith("_")||e==="constructor")throw new TypeError(`No method named "${e}"`);t[e]()}}else t.to(e)})}}u.on(document,Nn,"[data-bs-slide], [data-bs-slide-to]",function(o){let e=b.getElementFromSelector(this);if(!e||!e.classList.contains(gi))return;o.preventDefault();let t=Ye.getOrCreateInstance(e),s=this.getAttribute("data-bs-slide-to");return s?(t.to(s),void t._maybeEnableCycle()):H.getDataAttribute(this,"slide")==="next"?(t.next(),void t._maybeEnableCycle()):(t.prev(),void t._maybeEnableCycle())}),u.on(window,In,()=>{let o=b.find('[data-bs-ride="carousel"]');for(let e of o)Ye.getOrCreateInstance(e)}),k(Ye);let rt=".bs.collapse",Hn=`show${rt}`,Rn=`shown${rt}`,Wn=`hide${rt}`,zn=`hidden${rt}`,qn=`click${rt}.data-api`,Ht="show",Ke="collapse",At="collapsing",Vn=`:scope .${Ke} .${Ke}`,Rt='[data-bs-toggle="collapse"]',Xn={parent:null,toggle:!0},Yn={parent:"(null|element)",toggle:"boolean"};class Ue extends W{constructor(e,t){super(e,t),this._isTransitioning=!1,this._triggerArray=[];let s=b.find(Rt);for(let c of s){let p=b.getSelectorFromElement(c),_=b.find(p).filter(O=>O===this._element);p!==null&&_.length&&this._triggerArray.push(c)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Xn}static get DefaultType(){return Yn}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let e=[];if(this._config.parent&&(e=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter(c=>c!==this._element).map(c=>Ue.getOrCreateInstance(c,{toggle:!1}))),e.length&&e[0]._isTransitioning||u.trigger(this._element,Hn).defaultPrevented)return;for(let c of e)c.hide();let t=this._getDimension();this._element.classList.remove(Ke),this._element.classList.add(At),this._element.style[t]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;let s=`scroll${t[0].toUpperCase()+t.slice(1)}`;this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove(At),this._element.classList.add(Ke,Ht),this._element.style[t]="",u.trigger(this._element,Rn)},this._element,!0),this._element.style[t]=`${this._element[s]}px`}hide(){if(this._isTransitioning||!this._isShown()||u.trigger(this._element,Wn).defaultPrevented)return;let e=this._getDimension();this._element.style[e]=`${this._element.getBoundingClientRect()[e]}px`,S(this._element),this._element.classList.add(At),this._element.classList.remove(Ke,Ht);for(let t of this._triggerArray){let s=b.getElementFromSelector(t);s&&!this._isShown(s)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[e]="",this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove(At),this._element.classList.add(Ke),u.trigger(this._element,zn)},this._element,!0)}_isShown(e=this._element){return e.classList.contains(Ht)}_configAfterMerge(e){return e.toggle=!!e.toggle,e.parent=v(e.parent),e}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;let e=this._getFirstLevelChildren(Rt);for(let t of e){let s=b.getElementFromSelector(t);s&&this._addAriaAndCollapsedClass([t],this._isShown(s))}}_getFirstLevelChildren(e){let t=b.find(Vn,this._config.parent);return b.find(e,this._config.parent).filter(s=>!t.includes(s))}_addAriaAndCollapsedClass(e,t){if(e.length)for(let s of e)s.classList.toggle("collapsed",!t),s.setAttribute("aria-expanded",t)}static jQueryInterface(e){let t={};return typeof e=="string"&&/show|hide/.test(e)&&(t.toggle=!1),this.each(function(){let s=Ue.getOrCreateInstance(this,t);if(typeof e=="string"){if(s[e]===void 0)throw new TypeError(`No method named "${e}"`);s[e]()}})}}u.on(document,qn,Rt,function(o){(o.target.tagName==="A"||o.delegateTarget&&o.delegateTarget.tagName==="A")&&o.preventDefault();for(let e of b.getMultipleElementsFromSelector(this))Ue.getOrCreateInstance(e,{toggle:!1}).toggle()}),k(Ue);let vi="dropdown",Le=".bs.dropdown",Wt=".data-api",Kn="ArrowUp",bi="ArrowDown",Un=`hide${Le}`,Qn=`hidden${Le}`,Gn=`show${Le}`,Zn=`shown${Le}`,yi=`click${Le}${Wt}`,wi=`keydown${Le}${Wt}`,Jn=`keyup${Le}${Wt}`,Qe="show",De='[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)',es=`${De}.${Qe}`,Et=".dropdown-menu",ts=E()?"top-end":"top-start",is=E()?"top-start":"top-end",ns=E()?"bottom-end":"bottom-start",ss=E()?"bottom-start":"bottom-end",rs=E()?"left-start":"right-start",os=E()?"right-start":"left-start",as={autoClose:!0,boundary:"clippingParents",display:"dynamic",offset:[0,2],popperConfig:null,reference:"toggle"},ls={autoClose:"(boolean|string)",boundary:"(string|element)",display:"string",offset:"(array|string|function)",popperConfig:"(null|object|function)",reference:"(string|element|object)"};class re extends W{constructor(e,t){super(e,t),this._popper=null,this._parent=this._element.parentNode,this._menu=b.next(this._element,Et)[0]||b.prev(this._element,Et)[0]||b.findOne(Et,this._parent),this._inNavbar=this._detectNavbar()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return vi}toggle(){return this._isShown()?this.hide():this.show()}show(){if(A(this._element)||this._isShown())return;let e={relatedTarget:this._element};if(!u.trigger(this._element,Gn,e).defaultPrevented){if(this._createPopper(),"ontouchstart"in document.documentElement&&!this._parent.closest(".navbar-nav"))for(let t of[].concat(...document.body.children))u.on(t,"mouseover",y);this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Qe),this._element.classList.add(Qe),u.trigger(this._element,Zn,e)}}hide(){if(A(this._element)||!this._isShown())return;let e={relatedTarget:this._element};this._completeHide(e)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(e){if(!u.trigger(this._element,Un,e).defaultPrevented){if("ontouchstart"in document.documentElement)for(let t of[].concat(...document.body.children))u.off(t,"mouseover",y);this._popper&&this._popper.destroy(),this._menu.classList.remove(Qe),this._element.classList.remove(Qe),this._element.setAttribute("aria-expanded","false"),H.removeDataAttribute(this._menu,"popper"),u.trigger(this._element,Qn,e)}}_getConfig(e){if(typeof(e=super._getConfig(e)).reference=="object"&&!h(e.reference)&&typeof e.reference.getBoundingClientRect!="function")throw new TypeError(`${vi.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return e}_createPopper(){if(r===void 0)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;this._config.reference==="parent"?e=this._parent:h(this._config.reference)?e=v(this._config.reference):typeof this._config.reference=="object"&&(e=this._config.reference);let t=this._getPopperConfig();this._popper=r.createPopper(e,this._menu,t)}_isShown(){return this._menu.classList.contains(Qe)}_getPlacement(){let e=this._parent;if(e.classList.contains("dropend"))return rs;if(e.classList.contains("dropstart"))return os;if(e.classList.contains("dropup-center"))return"top";if(e.classList.contains("dropdown-center"))return"bottom";let t=getComputedStyle(this._menu).getPropertyValue("--bs-position").trim()==="end";return e.classList.contains("dropup")?t?is:ts:t?ss:ns}_detectNavbar(){return this._element.closest(".navbar")!==null}_getOffset(){let{offset:e}=this._config;return typeof e=="string"?e.split(",").map(t=>Number.parseInt(t,10)):typeof e=="function"?t=>e(t,this._element):e}_getPopperConfig(){let e={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||this._config.display==="static")&&(H.setDataAttribute(this._menu,"popper","static"),e.modifiers=[{name:"applyStyles",enabled:!1}]),z(z({},e),T(this._config.popperConfig,[e]))}_selectMenuItem({key:e,target:t}){let s=b.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(c=>g(c));s.length&&$(s,t,e===bi,!s.includes(t)).focus()}static jQueryInterface(e){return this.each(function(){let t=re.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0)throw new TypeError(`No method named "${e}"`);t[e]()}})}static clearMenus(e){if(e.button===2||e.type==="keyup"&&e.key!=="Tab")return;let t=b.find(es);for(let s of t){let c=re.getInstance(s);if(!c||c._config.autoClose===!1)continue;let p=e.composedPath(),_=p.includes(c._menu);if(p.includes(c._element)||c._config.autoClose==="inside"&&!_||c._config.autoClose==="outside"&&_||c._menu.contains(e.target)&&(e.type==="keyup"&&e.key==="Tab"||/input|select|option|textarea|form/i.test(e.target.tagName)))continue;let O={relatedTarget:c._element};e.type==="click"&&(O.clickEvent=e),c._completeHide(O)}}static dataApiKeydownHandler(e){let t=/input|textarea/i.test(e.target.tagName),s=e.key==="Escape",c=[Kn,bi].includes(e.key);if(!c&&!s||t&&!s)return;e.preventDefault();let p=this.matches(De)?this:b.prev(this,De)[0]||b.next(this,De)[0]||b.findOne(De,e.delegateTarget.parentNode),_=re.getOrCreateInstance(p);if(c)return e.stopPropagation(),_.show(),void _._selectMenuItem(e);_._isShown()&&(e.stopPropagation(),_.hide(),p.focus())}}u.on(document,wi,De,re.dataApiKeydownHandler),u.on(document,wi,Et,re.dataApiKeydownHandler),u.on(document,yi,re.clearMenus),u.on(document,Jn,re.clearMenus),u.on(document,yi,De,function(o){o.preventDefault(),re.getOrCreateInstance(this).toggle()}),k(re);let Ai="backdrop",Ei="show",Ci=`mousedown.bs.${Ai}`,cs={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},us={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ti extends ie{constructor(e){super(),this._config=this._getConfig(e),this._isAppended=!1,this._element=null}static get Default(){return cs}static get DefaultType(){return us}static get NAME(){return Ai}show(e){if(!this._config.isVisible)return void T(e);this._append();let t=this._getElement();this._config.isAnimated&&S(t),t.classList.add(Ei),this._emulateAnimation(()=>{T(e)})}hide(e){this._config.isVisible?(this._getElement().classList.remove(Ei),this._emulateAnimation(()=>{this.dispose(),T(e)})):T(e)}dispose(){this._isAppended&&(u.off(this._element,Ci),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){let e=document.createElement("div");e.className=this._config.className,this._config.isAnimated&&e.classList.add("fade"),this._element=e}return this._element}_configAfterMerge(e){return e.rootElement=v(e.rootElement),e}_append(){if(this._isAppended)return;let e=this._getElement();this._config.rootElement.append(e),u.on(e,Ci,()=>{T(this._config.clickCallback)}),this._isAppended=!0}_emulateAnimation(e){w(e,this._getElement(),this._config.isAnimated)}}let Ct=".bs.focustrap",hs=`focusin${Ct}`,ds=`keydown.tab${Ct}`,Oi="backward",fs={autofocus:!0,trapElement:null},ps={autofocus:"boolean",trapElement:"element"};class xi extends ie{constructor(e){super(),this._config=this._getConfig(e),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return fs}static get DefaultType(){return ps}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),u.off(document,Ct),u.on(document,hs,e=>this._handleFocusin(e)),u.on(document,ds,e=>this._handleKeydown(e)),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,u.off(document,Ct))}_handleFocusin(e){let{trapElement:t}=this._config;if(e.target===document||e.target===t||t.contains(e.target))return;let s=b.focusableChildren(t);s.length===0?t.focus():this._lastTabNavDirection===Oi?s[s.length-1].focus():s[0].focus()}_handleKeydown(e){e.key==="Tab"&&(this._lastTabNavDirection=e.shiftKey?Oi:"forward")}}let ki=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",$i=".sticky-top",Tt="padding-right",Si="margin-right";class zt{constructor(){this._element=document.body}getWidth(){let e=document.documentElement.clientWidth;return Math.abs(window.innerWidth-e)}hide(){let e=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,Tt,t=>t+e),this._setElementAttributes(ki,Tt,t=>t+e),this._setElementAttributes($i,Si,t=>t-e)}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,Tt),this._resetElementAttributes(ki,Tt),this._resetElementAttributes($i,Si)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(e,t,s){let c=this.getWidth();this._applyManipulationCallback(e,p=>{if(p!==this._element&&window.innerWidth>p.clientWidth+c)return;this._saveInitialAttribute(p,t);let _=window.getComputedStyle(p).getPropertyValue(t);p.style.setProperty(t,`${s(Number.parseFloat(_))}px`)})}_saveInitialAttribute(e,t){let s=e.style.getPropertyValue(t);s&&H.setDataAttribute(e,t,s)}_resetElementAttributes(e,t){this._applyManipulationCallback(e,s=>{let c=H.getDataAttribute(s,t);c!==null?(H.removeDataAttribute(s,t),s.style.setProperty(t,c)):s.style.removeProperty(t)})}_applyManipulationCallback(e,t){if(h(e))t(e);else for(let s of b.find(e,this._element))t(s)}}let Z=".bs.modal",gs=`hide${Z}`,ms=`hidePrevented${Z}`,Li=`hidden${Z}`,Di=`show${Z}`,_s=`shown${Z}`,vs=`resize${Z}`,bs=`click.dismiss${Z}`,ys=`mousedown.dismiss${Z}`,ws=`keydown.dismiss${Z}`,As=`click${Z}.data-api`,Pi="modal-open",Ii="show",qt="modal-static",Es={backdrop:!0,focus:!0,keyboard:!0},Cs={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class Pe extends W{constructor(e,t){super(e,t),this._dialog=b.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new zt,this._addEventListeners()}static get Default(){return Es}static get DefaultType(){return Cs}static get NAME(){return"modal"}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||this._isTransitioning||u.trigger(this._element,Di,{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(Pi),this._adjustDialog(),this._backdrop.show(()=>this._showElement(e)))}hide(){this._isShown&&!this._isTransitioning&&(u.trigger(this._element,gs).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(Ii),this._queueCallback(()=>this._hideModal(),this._element,this._isAnimated())))}dispose(){u.off(window,Z),u.off(this._dialog,Z),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ti({isVisible:!!this._config.backdrop,isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new xi({trapElement:this._element})}_showElement(e){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;let t=b.findOne(".modal-body",this._dialog);t&&(t.scrollTop=0),S(this._element),this._element.classList.add(Ii),this._queueCallback(()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,u.trigger(this._element,_s,{relatedTarget:e})},this._dialog,this._isAnimated())}_addEventListeners(){u.on(this._element,ws,e=>{e.key==="Escape"&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())}),u.on(window,vs,()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()}),u.on(this._element,ys,e=>{u.one(this._element,bs,t=>{this._element===e.target&&this._element===t.target&&(this._config.backdrop!=="static"?this._config.backdrop&&this.hide():this._triggerBackdropTransition())})})}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide(()=>{document.body.classList.remove(Pi),this._resetAdjustments(),this._scrollBar.reset(),u.trigger(this._element,Li)})}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(u.trigger(this._element,ms).defaultPrevented)return;let e=this._element.scrollHeight>document.documentElement.clientHeight,t=this._element.style.overflowY;t==="hidden"||this._element.classList.contains(qt)||(e||(this._element.style.overflowY="hidden"),this._element.classList.add(qt),this._queueCallback(()=>{this._element.classList.remove(qt),this._queueCallback(()=>{this._element.style.overflowY=t},this._dialog)},this._dialog),this._element.focus())}_adjustDialog(){let e=this._element.scrollHeight>document.documentElement.clientHeight,t=this._scrollBar.getWidth(),s=t>0;if(s&&!e){let c=E()?"paddingLeft":"paddingRight";this._element.style[c]=`${t}px`}if(!s&&e){let c=E()?"paddingRight":"paddingLeft";this._element.style[c]=`${t}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(e,t){return this.each(function(){let s=Pe.getOrCreateInstance(this,e);if(typeof e=="string"){if(s[e]===void 0)throw new TypeError(`No method named "${e}"`);s[e](t)}})}}u.on(document,As,'[data-bs-toggle="modal"]',function(o){let e=b.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&o.preventDefault(),u.one(e,Di,s=>{s.defaultPrevented||u.one(e,Li,()=>{g(this)&&this.focus()})});let t=b.findOne(".modal.show");t&&Pe.getInstance(t).hide(),Pe.getOrCreateInstance(e).toggle(this)}),We(Pe),k(Pe);let _e=".bs.offcanvas",Ni=".data-api",Ts=`load${_e}${Ni}`,ji="show",Mi="showing",Fi="hiding",Bi=".offcanvas.show",Os=`show${_e}`,xs=`shown${_e}`,ks=`hide${_e}`,Hi=`hidePrevented${_e}`,Ri=`hidden${_e}`,$s=`resize${_e}`,Ss=`click${_e}${Ni}`,Ls=`keydown.dismiss${_e}`,Ds={backdrop:!0,keyboard:!0,scroll:!1},Ps={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class ve extends W{constructor(e,t){super(e,t),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return Ds}static get DefaultType(){return Ps}static get NAME(){return"offcanvas"}toggle(e){return this._isShown?this.hide():this.show(e)}show(e){this._isShown||u.trigger(this._element,Os,{relatedTarget:e}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||new zt().hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Mi),this._queueCallback(()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(ji),this._element.classList.remove(Mi),u.trigger(this._element,xs,{relatedTarget:e})},this._element,!0))}hide(){this._isShown&&(u.trigger(this._element,ks).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add(Fi),this._backdrop.hide(),this._queueCallback(()=>{this._element.classList.remove(ji,Fi),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||new zt().reset(),u.trigger(this._element,Ri)},this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){let e=!!this._config.backdrop;return new Ti({className:"offcanvas-backdrop",isVisible:e,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:e?()=>{this._config.backdrop!=="static"?this.hide():u.trigger(this._element,Hi)}:null})}_initializeFocusTrap(){return new xi({trapElement:this._element})}_addEventListeners(){u.on(this._element,Ls,e=>{e.key==="Escape"&&(this._config.keyboard?this.hide():u.trigger(this._element,Hi))})}static jQueryInterface(e){return this.each(function(){let t=ve.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0||e.startsWith("_")||e==="constructor")throw new TypeError(`No method named "${e}"`);t[e](this)}})}}u.on(document,Ss,'[data-bs-toggle="offcanvas"]',function(o){let e=b.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&o.preventDefault(),A(this))return;u.one(e,Ri,()=>{g(this)&&this.focus()});let t=b.findOne(Bi);t&&t!==e&&ve.getInstance(t).hide(),ve.getOrCreateInstance(e).toggle(this)}),u.on(window,Ts,()=>{for(let o of b.find(Bi))ve.getOrCreateInstance(o).show()}),u.on(window,$s,()=>{for(let o of b.find("[aria-modal][class*=show][class*=offcanvas-]"))getComputedStyle(o).position!=="fixed"&&ve.getOrCreateInstance(o).hide()}),We(ve),k(ve);let Wi={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],dd:[],div:[],dl:[],dt:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Is=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Ns=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,js=(o,e)=>{let t=o.nodeName.toLowerCase();return e.includes(t)?!Is.has(t)||!!Ns.test(o.nodeValue):e.filter(s=>s instanceof RegExp).some(s=>s.test(t))},Ms={allowList:Wi,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"<div></div>"},Fs={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Bs={entry:"(string|element|function|null)",selector:"(string|element)"};class Hs extends ie{constructor(e){super(),this._config=this._getConfig(e)}static get Default(){return Ms}static get DefaultType(){return Fs}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map(e=>this._resolvePossibleFunction(e)).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(e){return this._checkContent(e),this._config.content=z(z({},this._config.content),e),this}toHtml(){let e=document.createElement("div");e.innerHTML=this._maybeSanitize(this._config.template);for(let[c,p]of Object.entries(this._config.content))this._setContent(e,p,c);let t=e.children[0],s=this._resolvePossibleFunction(this._config.extraClass);return s&&t.classList.add(...s.split(" ")),t}_typeCheckConfig(e){super._typeCheckConfig(e),this._checkContent(e.content)}_checkContent(e){for(let[t,s]of Object.entries(e))super._typeCheckConfig({selector:t,entry:s},Bs)}_setContent(e,t,s){let c=b.findOne(s,e);c&&((t=this._resolvePossibleFunction(t))?h(t)?this._putElementInTemplate(v(t),c):this._config.html?c.innerHTML=this._maybeSanitize(t):c.textContent=t:c.remove())}_maybeSanitize(e){return this._config.sanitize?function(t,s,c){if(!t.length)return t;if(c&&typeof c=="function")return c(t);let p=new window.DOMParser().parseFromString(t,"text/html"),_=[].concat(...p.body.querySelectorAll("*"));for(let O of _){let I=O.nodeName.toLowerCase();if(!Object.keys(s).includes(I)){O.remove();continue}let X=[].concat(...O.attributes),Q=[].concat(s["*"]||[],s[I]||[]);for(let oe of X)js(oe,Q)||O.removeAttribute(oe.nodeName)}return p.body.innerHTML}(e,this._config.allowList,this._config.sanitizeFn):e}_resolvePossibleFunction(e){return T(e,[this])}_putElementInTemplate(e,t){if(this._config.html)return t.innerHTML="",void t.append(e);t.textContent=e.textContent}}let Rs=new Set(["sanitize","allowList","sanitizeFn"]),Vt="fade",Ot="show",zi=".modal",qi="hide.bs.modal",ot="hover",Xt="focus",Ws={AUTO:"auto",TOP:"top",RIGHT:E()?"left":"right",BOTTOM:"bottom",LEFT:E()?"right":"left"},zs={allowList:Wi,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',title:"",trigger:"hover focus"},qs={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class Ie extends W{constructor(e,t){if(r===void 0)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(e,t),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return zs}static get DefaultType(){return qs}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),u.off(this._element.closest(zi),qi,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if(this._element.style.display==="none")throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;let e=u.trigger(this._element,this.constructor.eventName("show")),t=(D(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(e.defaultPrevented||!t)return;this._disposePopper();let s=this._getTipElement();this._element.setAttribute("aria-describedby",s.getAttribute("id"));let{container:c}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(c.append(s),u.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(s),s.classList.add(Ot),"ontouchstart"in document.documentElement)for(let p of[].concat(...document.body.children))u.on(p,"mouseover",y);this._queueCallback(()=>{u.trigger(this._element,this.constructor.eventName("shown")),this._isHovered===!1&&this._leave(),this._isHovered=!1},this.tip,this._isAnimated())}hide(){if(this._isShown()&&!u.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(Ot),"ontouchstart"in document.documentElement)for(let e of[].concat(...document.body.children))u.off(e,"mouseover",y);this._activeTrigger.click=!1,this._activeTrigger[Xt]=!1,this._activeTrigger[ot]=!1,this._isHovered=null,this._queueCallback(()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),u.trigger(this._element,this.constructor.eventName("hidden")))},this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return!!this._getTitle()}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(e){let t=this._getTemplateFactory(e).toHtml();if(!t)return null;t.classList.remove(Vt,Ot),t.classList.add(`bs-${this.constructor.NAME}-auto`);let s=(c=>{do c+=Math.floor(1e6*Math.random());while(document.getElementById(c));return c})(this.constructor.NAME).toString();return t.setAttribute("id",s),this._isAnimated()&&t.classList.add(Vt),t}setContent(e){this._newContent=e,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(e){return this._templateFactory?this._templateFactory.changeContent(e):this._templateFactory=new Hs(Lt(z({},this._config),{content:e,extraClass:this._resolvePossibleFunction(this._config.customClass)})),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(e){return this.constructor.getOrCreateInstance(e.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(Vt)}_isShown(){return this.tip&&this.tip.classList.contains(Ot)}_createPopper(e){let t=T(this._config.placement,[this,e,this._element]),s=Ws[t.toUpperCase()];return r.createPopper(this._element,e,this._getPopperConfig(s))}_getOffset(){let{offset:e}=this._config;return typeof e=="string"?e.split(",").map(t=>Number.parseInt(t,10)):typeof e=="function"?t=>e(t,this._element):e}_resolvePossibleFunction(e){return T(e,[this._element])}_getPopperConfig(e){let t={placement:e,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:s=>{this._getTipElement().setAttribute("data-popper-placement",s.state.placement)}}]};return z(z({},t),T(this._config.popperConfig,[t]))}_setListeners(){let e=this._config.trigger.split(" ");for(let t of e)if(t==="click")u.on(this._element,this.constructor.eventName("click"),this._config.selector,s=>{this._initializeOnDelegatedTarget(s).toggle()});else if(t!=="manual"){let s=t===ot?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),c=t===ot?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");u.on(this._element,s,this._config.selector,p=>{let _=this._initializeOnDelegatedTarget(p);_._activeTrigger[p.type==="focusin"?Xt:ot]=!0,_._enter()}),u.on(this._element,c,this._config.selector,p=>{let _=this._initializeOnDelegatedTarget(p);_._activeTrigger[p.type==="focusout"?Xt:ot]=_._element.contains(p.relatedTarget),_._leave()})}this._hideModalHandler=()=>{this._element&&this.hide()},u.on(this._element.closest(zi),qi,this._hideModalHandler)}_fixTitle(){let e=this._element.getAttribute("title");e&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",e),this._element.setAttribute("data-bs-original-title",e),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout(()=>{this._isHovered&&this.show()},this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout(()=>{this._isHovered||this.hide()},this._config.delay.hide))}_setTimeout(e,t){clearTimeout(this._timeout),this._timeout=setTimeout(e,t)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(e){let t=H.getDataAttributes(this._element);for(let s of Object.keys(t))Rs.has(s)&&delete t[s];return e=z(z({},t),typeof e=="object"&&e?e:{}),e=this._mergeConfigObj(e),e=this._configAfterMerge(e),this._typeCheckConfig(e),e}_configAfterMerge(e){return e.container=e.container===!1?document.body:v(e.container),typeof e.delay=="number"&&(e.delay={show:e.delay,hide:e.delay}),typeof e.title=="number"&&(e.title=e.title.toString()),typeof e.content=="number"&&(e.content=e.content.toString()),e}_getDelegateConfig(){let e={};for(let[t,s]of Object.entries(this._config))this.constructor.Default[t]!==s&&(e[t]=s);return e.selector=!1,e.trigger="manual",e}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(e){return this.each(function(){let t=Ie.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0)throw new TypeError(`No method named "${e}"`);t[e]()}})}}k(Ie);let Vs=Lt(z({},Ie.Default),{content:"",offset:[0,8],placement:"right",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>',trigger:"click"}),Xs=Lt(z({},Ie.DefaultType),{content:"(null|string|element|function)"});class xt extends Ie{static get Default(){return Vs}static get DefaultType(){return Xs}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(e){return this.each(function(){let t=xt.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0)throw new TypeError(`No method named "${e}"`);t[e]()}})}}k(xt);let Yt=".bs.scrollspy",Ys=`activate${Yt}`,Vi=`click${Yt}`,Ks=`load${Yt}.data-api`,Ge="active",Kt="[href]",Xi=".nav-link",Us=`${Xi}, .nav-item > ${Xi}, .list-group-item`,Qs={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},Gs={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class at extends W{constructor(e,t){super(e,t),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement=getComputedStyle(this._element).overflowY==="visible"?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return Qs}static get DefaultType(){return Gs}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(let e of this._observableSections.values())this._observer.observe(e)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(e){return e.target=v(e.target)||document.body,e.rootMargin=e.offset?`${e.offset}px 0px -30%`:e.rootMargin,typeof e.threshold=="string"&&(e.threshold=e.threshold.split(",").map(t=>Number.parseFloat(t))),e}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(u.off(this._config.target,Vi),u.on(this._config.target,Vi,Kt,e=>{let t=this._observableSections.get(e.target.hash);if(t){e.preventDefault();let s=this._rootElement||window,c=t.offsetTop-this._element.offsetTop;if(s.scrollTo)return void s.scrollTo({top:c,behavior:"smooth"});s.scrollTop=c}}))}_getNewObserver(){let e={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver(t=>this._observerCallback(t),e)}_observerCallback(e){let t=_=>this._targetLinks.get(`#${_.target.id}`),s=_=>{this._previousScrollData.visibleEntryTop=_.target.offsetTop,this._process(t(_))},c=(this._rootElement||document.documentElement).scrollTop,p=c>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=c;for(let _ of e){if(!_.isIntersecting){this._activeTarget=null,this._clearActiveClass(t(_));continue}let O=_.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(p&&O){if(s(_),!c)return}else p||O||s(_)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;let e=b.find(Kt,this._config.target);for(let t of e){if(!t.hash||A(t))continue;let s=b.findOne(decodeURI(t.hash),this._element);g(s)&&(this._targetLinks.set(decodeURI(t.hash),t),this._observableSections.set(t.hash,s))}}_process(e){this._activeTarget!==e&&(this._clearActiveClass(this._config.target),this._activeTarget=e,e.classList.add(Ge),this._activateParents(e),u.trigger(this._element,Ys,{relatedTarget:e}))}_activateParents(e){if(e.classList.contains("dropdown-item"))b.findOne(".dropdown-toggle",e.closest(".dropdown")).classList.add(Ge);else for(let t of b.parents(e,".nav, .list-group"))for(let s of b.prev(t,Us))s.classList.add(Ge)}_clearActiveClass(e){e.classList.remove(Ge);let t=b.find(`${Kt}.${Ge}`,e);for(let s of t)s.classList.remove(Ge)}static jQueryInterface(e){return this.each(function(){let t=at.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0||e.startsWith("_")||e==="constructor")throw new TypeError(`No method named "${e}"`);t[e]()}})}}u.on(window,Ks,()=>{for(let o of b.find('[data-bs-spy="scroll"]'))at.getOrCreateInstance(o)}),k(at);let Ne=".bs.tab",Zs=`hide${Ne}`,Js=`hidden${Ne}`,er=`show${Ne}`,tr=`shown${Ne}`,ir=`click${Ne}`,nr=`keydown${Ne}`,sr=`load${Ne}`,rr="ArrowLeft",Yi="ArrowRight",or="ArrowUp",Ki="ArrowDown",Ut="Home",Ui="End",je="active",Qi="fade",Qt="show",Gi=".dropdown-toggle",Gt=`:not(${Gi})`,Zi='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',Zt=`.nav-link${Gt}, .list-group-item${Gt}, [role="tab"]${Gt}, ${Zi}`,ar=`.${je}[data-bs-toggle="tab"], .${je}[data-bs-toggle="pill"], .${je}[data-bs-toggle="list"]`;class Me extends W{constructor(e){super(e),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),u.on(this._element,nr,t=>this._keydown(t)))}static get NAME(){return"tab"}show(){let e=this._element;if(this._elemIsActive(e))return;let t=this._getActiveElem(),s=t?u.trigger(t,Zs,{relatedTarget:e}):null;u.trigger(e,er,{relatedTarget:t}).defaultPrevented||s&&s.defaultPrevented||(this._deactivate(t,e),this._activate(e,t))}_activate(e,t){e&&(e.classList.add(je),this._activate(b.getElementFromSelector(e)),this._queueCallback(()=>{e.getAttribute("role")==="tab"?(e.removeAttribute("tabindex"),e.setAttribute("aria-selected",!0),this._toggleDropDown(e,!0),u.trigger(e,tr,{relatedTarget:t})):e.classList.add(Qt)},e,e.classList.contains(Qi)))}_deactivate(e,t){e&&(e.classList.remove(je),e.blur(),this._deactivate(b.getElementFromSelector(e)),this._queueCallback(()=>{e.getAttribute("role")==="tab"?(e.setAttribute("aria-selected",!1),e.setAttribute("tabindex","-1"),this._toggleDropDown(e,!1),u.trigger(e,Js,{relatedTarget:t})):e.classList.remove(Qt)},e,e.classList.contains(Qi)))}_keydown(e){if(![rr,Yi,or,Ki,Ut,Ui].includes(e.key))return;e.stopPropagation(),e.preventDefault();let t=this._getChildren().filter(c=>!A(c)),s;if([Ut,Ui].includes(e.key))s=t[e.key===Ut?0:t.length-1];else{let c=[Yi,Ki].includes(e.key);s=$(t,e.target,c,!0)}s&&(s.focus({preventScroll:!0}),Me.getOrCreateInstance(s).show())}_getChildren(){return b.find(Zt,this._parent)}_getActiveElem(){return this._getChildren().find(e=>this._elemIsActive(e))||null}_setInitialAttributes(e,t){this._setAttributeIfNotExists(e,"role","tablist");for(let s of t)this._setInitialAttributesOnChild(s)}_setInitialAttributesOnChild(e){e=this._getInnerElement(e);let t=this._elemIsActive(e),s=this._getOuterElement(e);e.setAttribute("aria-selected",t),s!==e&&this._setAttributeIfNotExists(s,"role","presentation"),t||e.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(e,"role","tab"),this._setInitialAttributesOnTargetPanel(e)}_setInitialAttributesOnTargetPanel(e){let t=b.getElementFromSelector(e);t&&(this._setAttributeIfNotExists(t,"role","tabpanel"),e.id&&this._setAttributeIfNotExists(t,"aria-labelledby",`${e.id}`))}_toggleDropDown(e,t){let s=this._getOuterElement(e);if(!s.classList.contains("dropdown"))return;let c=(p,_)=>{let O=b.findOne(p,s);O&&O.classList.toggle(_,t)};c(Gi,je),c(".dropdown-menu",Qt),s.setAttribute("aria-expanded",t)}_setAttributeIfNotExists(e,t,s){e.hasAttribute(t)||e.setAttribute(t,s)}_elemIsActive(e){return e.classList.contains(je)}_getInnerElement(e){return e.matches(Zt)?e:b.findOne(Zt,e)}_getOuterElement(e){return e.closest(".nav-item, .list-group-item")||e}static jQueryInterface(e){return this.each(function(){let t=Me.getOrCreateInstance(this);if(typeof e=="string"){if(t[e]===void 0||e.startsWith("_")||e==="constructor")throw new TypeError(`No method named "${e}"`);t[e]()}})}}u.on(document,ir,Zi,function(o){["A","AREA"].includes(this.tagName)&&o.preventDefault(),A(this)||Me.getOrCreateInstance(this).show()}),u.on(window,sr,()=>{for(let o of b.find(ar))Me.getOrCreateInstance(o)}),k(Me);let Te=".bs.toast",lr=`mouseover${Te}`,cr=`mouseout${Te}`,ur=`focusin${Te}`,hr=`focusout${Te}`,dr=`hide${Te}`,fr=`hidden${Te}`,pr=`show${Te}`,gr=`shown${Te}`,Ji="hide",kt="show",$t="showing",mr={animation:"boolean",autohide:"boolean",delay:"number"},_r={animation:!0,autohide:!0,delay:5e3};class lt extends W{constructor(e,t){super(e,t),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return _r}static get DefaultType(){return mr}static get NAME(){return"toast"}show(){u.trigger(this._element,pr).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Ji),S(this._element),this._element.classList.add(kt,$t),this._queueCallback(()=>{this._element.classList.remove($t),u.trigger(this._element,gr),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this.isShown()&&(u.trigger(this._element,dr).defaultPrevented||(this._element.classList.add($t),this._queueCallback(()=>{this._element.classList.add(Ji),this._element.classList.remove($t,kt),u.trigger(this._element,fr)},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(kt),super.dispose()}isShown(){return this._element.classList.contains(kt)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay)))}_onInteraction(e,t){switch(e.type){case"mouseover":case"mouseout":this._hasMouseInteraction=t;break;case"focusin":case"focusout":this._hasKeyboardInteraction=t}if(t)return void this._clearTimeout();let s=e.relatedTarget;this._element===s||this._element.contains(s)||this._maybeScheduleHide()}_setListeners(){u.on(this._element,lr,e=>this._onInteraction(e,!0)),u.on(this._element,cr,e=>this._onInteraction(e,!1)),u.on(this._element,ur,e=>this._onInteraction(e,!0)),u.on(this._element,hr,e=>this._onInteraction(e,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(e){return this.each(function(){let t=lt.getOrCreateInstance(this,e);if(typeof e=="string"){if(t[e]===void 0)throw new TypeError(`No method named "${e}"`);t[e](this)}})}}return We(lt),k(lt),{Alert:$e,Button:Ee,Carousel:Ye,Collapse:Ue,Dropdown:re,Modal:Pe,Offcanvas:ve,Popover:xt,ScrollSpy:at,Tab:Me,Toast:lt,Tooltip:Ie}})});Eo();})();
2
- /*! Bundled license information:
3
-
4
- bootstrap/dist/js/bootstrap.min.js:
5
- (*!
6
- * Bootstrap v5.3.3 (https://getbootstrap.com/)
7
- * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
8
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
9
- *)
10
- */
11
- //# sourceMappingURL=bootstrap.min.js.map
1
+ /*!
2
+ * Bootstrap v5.3.3 (https://getbootstrap.com/)
3
+ * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
+ */
6
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function j(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function M(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${M(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${M(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=j(t.dataset[n])}return e},getDataAttribute:(t,e)=>j(t.getAttribute(`data-bs-${M(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.3"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e?e.split(",").map((t=>n(t))).join(","):null},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",jt="collapsing",Mt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(jt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(jt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(jt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(jt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(Mt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function je(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const Me={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:je(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:je(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C<v.length;C++){var O=v[C],x=be(O),k=Fe(O)===Xt,L=[zt,Rt].indexOf(x)>=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},j=p?3:1;j>0&&"break"!==P(j);j--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],j=f?-T[$]/2:0,M=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-j-q-z-O.mainAxis:M-q-z-O.mainAxis,K=v?-E[$]/2+j+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return!e.some((function(t){return!(t&&"function"==typeof t.getBoundingClientRect)}))}function mi(t){void 0===t&&(t={});var e=t,i=e.defaultModifiers,n=void 0===i?[]:i,s=e.defaultOptions,o=void 0===s?fi:s;return function(t,e,i){void 0===i&&(i=o);var s,r,a={placement:"bottom",orderedModifiers:[],options:Object.assign({},fi,o),modifiersData:{},elements:{reference:t,popper:e},attributes:{},styles:{}},l=[],c=!1,h={state:a,setOptions:function(i){var s="function"==typeof i?i(a.options):i;d(),a.options=Object.assign({},o,a.options,s),a.scrollParents={reference:pe(t)?Je(t):t.contextElement?Je(t.contextElement):[],popper:Je(e)};var r,c,u=function(t){var e=ui(t);return de.reduce((function(t,i){return t.concat(e.filter((function(t){return t.phase===i})))}),[])}((r=[].concat(n,a.options.modifiers),c=r.reduce((function(t,e){var i=t[e.name];return t[e.name]=i?Object.assign({},i,e,{options:Object.assign({},i.options,e.options),data:Object.assign({},i.data,e.data)}):e,t}),{}),Object.keys(c).map((function(t){return c[t]}))));return a.orderedModifiers=u.filter((function(t){return t.enabled})),a.orderedModifiers.forEach((function(t){var e=t.name,i=t.options,n=void 0===i?{}:i,s=t.effect;if("function"==typeof s){var o=s({state:a,name:e,instance:h,options:n});l.push(o||function(){})}})),h.update()},forceUpdate:function(){if(!c){var t=a.elements,e=t.reference,i=t.popper;if(pi(e,i)){a.rects={reference:di(e,$e(i),"fixed"===a.options.strategy),popper:Ce(i)},a.reset=!1,a.placement=a.options.placement,a.orderedModifiers.forEach((function(t){return a.modifiersData[t.name]=Object.assign({},t.data)}));for(var n=0;n<a.orderedModifiers.length;n++)if(!0!==a.reset){var s=a.orderedModifiers[n],o=s.fn,r=s.options,l=void 0===r?{}:r,d=s.name;"function"==typeof o&&(a=o({state:a,options:l,name:d,instance:h})||a)}else a.reset=!1,n=-1}}},update:(s=function(){return new Promise((function(t){h.forceUpdate(),t(a)}))},function(){return r||(r=new Promise((function(t){Promise.resolve().then((function(){r=void 0,t(s())}))}))),r}),destroy:function(){d(),c=!0}};if(!pi(t,e))return h;function d(){l.forEach((function(t){return t()})),l=[]}return h.setOptions(i).then((function(t){!c&&i.onFirstUpdate&&i.onFirstUpdate(t)})),h}}var gi=mi(),_i=mi({defaultModifiers:[Re,ci,Be,_e]}),bi=mi({defaultModifiers:[Re,ci,Be,_e,li,si,hi,Me,ai]});const vi=Object.freeze(Object.defineProperty({__proto__:null,afterMain:ae,afterRead:se,afterWrite:he,applyStyles:_e,arrow:Me,auto:Kt,basePlacements:Qt,beforeMain:oe,beforeRead:ie,beforeWrite:le,bottom:Rt,clippingParents:Ut,computeStyles:Be,createPopper:bi,createPopperBase:gi,createPopperLite:_i,detectOverflow:ii,end:Yt,eventListeners:Re,flip:si,hide:ai,left:Vt,main:re,modifierPhases:de,offset:li,placements:ee,popper:Jt,popperGenerator:mi,popperOffsets:ci,preventOverflow:hi,read:ne,reference:Zt,right:qt,start:Xt,top:zt,variationPlacements:te,viewport:Gt,write:ce},Symbol.toStringTag,{value:"Module"})),yi="dropdown",wi=".bs.dropdown",Ai=".data-api",Ei="ArrowUp",Ti="ArrowDown",Ci=`hide${wi}`,Oi=`hidden${wi}`,xi=`show${wi}`,ki=`shown${wi}`,Li=`click${wi}${Ai}`,Si=`keydown${wi}${Ai}`,Di=`keyup${wi}${Ai}`,$i="show",Ii='[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)',Ni=`${Ii}.${$i}`,Pi=".dropdown-menu",ji=p()?"top-end":"top-start",Mi=p()?"top-start":"top-end",Fi=p()?"bottom-end":"bottom-start",Hi=p()?"bottom-start":"bottom-end",Wi=p()?"left-start":"right-start",Bi=p()?"right-start":"left-start",zi={autoClose:!0,boundary:"clippingParents",display:"dynamic",offset:[0,2],popperConfig:null,reference:"toggle"},Ri={autoClose:"(boolean|string)",boundary:"(string|element)",display:"string",offset:"(array|string|function)",popperConfig:"(null|object|function)",reference:"(string|element|object)"};class qi extends W{constructor(t,e){super(t,e),this._popper=null,this._parent=this._element.parentNode,this._menu=z.next(this._element,Pi)[0]||z.prev(this._element,Pi)[0]||z.findOne(Pi,this._parent),this._inNavbar=this._detectNavbar()}static get Default(){return zi}static get DefaultType(){return Ri}static get NAME(){return yi}toggle(){return this._isShown()?this.hide():this.show()}show(){if(l(this._element)||this._isShown())return;const t={relatedTarget:this._element};if(!N.trigger(this._element,xi,t).defaultPrevented){if(this._createPopper(),"ontouchstart"in document.documentElement&&!this._parent.closest(".navbar-nav"))for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add($i),this._element.classList.add($i),N.trigger(this._element,ki,t)}}hide(){if(l(this._element)||!this._isShown())return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){if(!N.trigger(this._element,Ci,t).defaultPrevented){if("ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._popper&&this._popper.destroy(),this._menu.classList.remove($i),this._element.classList.remove($i),this._element.setAttribute("aria-expanded","false"),F.removeDataAttribute(this._menu,"popper"),N.trigger(this._element,Oi,t)}}_getConfig(t){if("object"==typeof(t=super._getConfig(t)).reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${yi.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(){if(void 0===vi)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let t=this._element;"parent"===this._config.reference?t=this._parent:o(this._config.reference)?t=r(this._config.reference):"object"==typeof this._config.reference&&(t=this._config.reference);const e=this._getPopperConfig();this._popper=bi(t,this._menu,e)}_isShown(){return this._menu.classList.contains($i)}_getPlacement(){const t=this._parent;if(t.classList.contains("dropend"))return Wi;if(t.classList.contains("dropstart"))return Bi;if(t.classList.contains("dropup-center"))return"top";if(t.classList.contains("dropdown-center"))return"bottom";const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?Mi:ji:e?Hi:Fi}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,jn=`hide${xn}`,Mn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,jn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,Mn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,Mn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],dd:[],div:[],dl:[],dt:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"<div></div>"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",js="Home",Ms="End",Fs="active",Hs="fade",Ws="show",Bs=".dropdown-toggle",zs=`:not(${Bs})`,Rs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',qs=`.nav-link${zs}, .list-group-item${zs}, [role="tab"]${zs}, ${Rs}`,Vs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Ks extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,js,Ms].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([js,Ms].includes(t.key))i=e[t.key===js?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Ks.getOrCreateInstance(i).show())}_getChildren(){return z.find(qs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(Bs,Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(qs)?t:z.findOne(qs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Ks.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,Rs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Ks.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(Vs))Ks.getOrCreateInstance(t)})),m(Ks);const Qs=".bs.toast",Xs=`mouseover${Qs}`,Ys=`mouseout${Qs}`,Us=`focusin${Qs}`,Gs=`focusout${Qs}`,Js=`hide${Qs}`,Zs=`hidden${Qs}`,to=`show${Qs}`,eo=`shown${Qs}`,io="hide",no="show",so="showing",oo={animation:"boolean",autohide:"boolean",delay:"number"},ro={animation:!0,autohide:!0,delay:5e3};class ao extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return ro}static get DefaultType(){return oo}static get NAME(){return"toast"}show(){N.trigger(this._element,to).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(io),d(this._element),this._element.classList.add(no,so),this._queueCallback((()=>{this._element.classList.remove(so),N.trigger(this._element,eo),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Js).defaultPrevented||(this._element.classList.add(so),this._queueCallback((()=>{this._element.classList.add(io),this._element.classList.remove(so,no),N.trigger(this._element,Zs)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(no),super.dispose()}isShown(){return this._element.classList.contains(no)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Xs,(t=>this._onInteraction(t,!0))),N.on(this._element,Ys,(t=>this._onInteraction(t,!1))),N.on(this._element,Us,(t=>this._onInteraction(t,!0))),N.on(this._element,Gs,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ao.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ao),m(ao),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Ks,Toast:ao,Tooltip:cs}}));
7
+ //# sourceMappingURL=bootstrap.bundle.min.js.map